/* Base tokens */
:root {
  --bg: #FDFAF6;
  --bg-alt: #F5EDE3;
  --fg: #1A1208;
  --fg-muted: #6B5B4A;
  --accent: #C97D3D;
  --accent-dark: #A5622E;
  --accent-light: #D4A574;
  --border: #E2D5C7;
  --card-bg: #FFFFFF;
  --red: #E05252;
  --amber: #E08A3C;
  --green: #5A9E6F;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Navigation */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; }
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  background: var(--fg);
  color: white;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 80px 40px 100px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.04em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}
.hero-arrow {
  margin-top: 40px;
}
.hero-scroll-hint {
  margin-top: 12px;
  font-size: 13px;
  color: var(--fg-muted);
}

/* Listing card mockup */
.listing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,18,8,0.10);
}
.listing-card-header {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.listing-dot { width: 12px; height: 12px; border-radius: 50%; }
.listing-dot.red { background: #E05252; }
.listing-dot.amber { background: #E08A3C; }
.listing-dot.green { background: #5A9E6F; }

.listing-score-section {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 20px 24px 8px;
}
.listing-score-label { font-size: 12px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.listing-score-number {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.listing-score-max { font-size: 16px; color: var(--fg-muted); }

.listing-issues { padding: 4px 24px 16px; }
.issue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--fg-muted);
}
.issue-item:last-child { border-bottom: none; }
.issue-severity { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.issue-severity.severe { background: var(--red); }
.issue-severity.warning { background: var(--amber); }
.issue-severity.ok { background: var(--green); }

.listing-card-footer {
  background: var(--bg-alt);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.listing-status-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.status-fill { height: 100%; background: var(--amber); border-radius: 2px; }
.listing-status-label { font-size: 12px; color: var(--fg-muted); white-space: nowrap; }

/* Problem section */
.problem { background: var(--bg-alt); }
.problem-inner { max-width: 1100px; margin: 0 auto; padding: 100px 40px; }
.problem-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.problem-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 640px;
}
.problem-body { max-width: 580px; }
.problem-body p { font-size: 17px; color: var(--fg-muted); margin-bottom: 18px; line-height: 1.7; }
.problem-body p em { font-style: italic; color: var(--fg); }
.problem-body p:last-of-type { margin-bottom: 0; }
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label { font-size: 14px; color: var(--fg-muted); margin-top: 4px; }

/* How it works */
.how-it-works { background: var(--bg); }
.how-inner { max-width: 1100px; margin: 0 auto; padding: 100px 40px; }
.how-eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 20px; }
.how-headline { font-size: clamp(30px, 4vw, 44px); font-weight: 600; margin-bottom: 60px; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  position: relative;
  padding-bottom: 48px;
}
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 72px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.step-number {
  width: 72px;
  height: 72px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}
.step-content { padding: 12px 0 0 32px; }
.step-content h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.step-content p { font-size: 16px; color: var(--fg-muted); line-height: 1.65; }

/* What you get */
.what-you-get { background: var(--bg-alt); }
.wyg-inner { max-width: 1100px; margin: 0 auto; padding: 100px 40px; }
.wyg-header { margin-bottom: 56px; }
.wyg-eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 16px; }
.wyg-headline { font-size: clamp(28px, 3.5vw, 40px); font-weight: 600; max-width: 600px; }
.fix-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fix-item { display: flex; gap: 16px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.fix-icon { flex-shrink: 0; width: 24px; margin-top: 2px; }
.fix-text h4 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--fg); }
.fix-text p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

/* Pricing */
.pricing { background: var(--bg); }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 100px 40px; text-align: center; }
.pricing-eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 16px; }
.pricing-headline { font-size: clamp(30px, 4vw, 44px); font-weight: 600; margin-bottom: 56px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; text-align: left; }
.pricing-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 32px; position: relative; }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 12px; font-weight: 600; padding: 4px 16px; border-radius: 20px; }
.pricing-tier { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 12px; }
.pricing-price { font-family: 'Fraunces', serif; font-size: 44px; font-weight: 700; color: var(--fg); letter-spacing: -0.03em; margin-bottom: 8px; }
.pricing-price .per-month { font-size: 20px; font-weight: 400; color: var(--fg-muted); }
.pricing-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.5; }
.pricing-features { list-style: none; }
.pricing-features li { font-size: 14px; color: var(--fg); padding: 6px 0; border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-monthly { display: flex; justify-content: center; }
.monthly-card { max-width: 380px; width: 100%; }
.pricing-cta {
  display: block;
  margin-top: 20px;
  padding: 12px 20px;
  background: var(--fg);
  color: white;
  text-align: center;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.pricing-cta:hover { background: var(--accent); }
.pricing-cta.secondary {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--border);
}
.pricing-cta.secondary:hover { background: var(--bg-alt); border-color: var(--fg); }

/* Closing */
.closing { background: var(--bg-alt); }
.closing-inner { max-width: 1100px; margin: 0 auto; padding: 100px 40px; text-align: center; }
.closing-quote { max-width: 620px; margin: 0 auto 56px; }
.closing-quote p { font-family: 'Fraunces', serif; font-size: 22px; font-style: italic; color: var(--fg); line-height: 1.5; margin-bottom: 20px; }
.closing-attr { font-size: 14px; color: var(--fg-muted); }
.closing-divider { width: 48px; height: 2px; background: var(--accent-light); margin: 0 auto 56px; }
.closing-vision h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 600; margin-bottom: 20px; }
.closing-vision p { font-size: 17px; color: var(--fg-muted); max-width: 540px; margin: 0 auto; line-height: 1.65; }

/* Footer */
.footer { border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 48px 40px; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 8px; }
.footer-note { font-size: 13px; color: var(--accent-light); }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 80px; }
  .hero-visual { order: -1; }
  .fix-items { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .problem-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .fix-items { grid-template-columns: 1fr; }
  .problem-stats { grid-template-columns: 1fr; gap: 16px; }
  .step { grid-template-columns: 56px 1fr; }
  .step-number { width: 56px; height: 56px; font-size: 22px; }
  .step:not(:last-child)::after { left: 27px; }
}