:root {
  --bg: #FAFAF8;
  --fg: #111111;
  --muted: #6B7280;
  --amber: #D97706;
  --amber-light: #FEF3C7;
  --green: #1B4332;
  --green-light: #D1FAE5;
  --surface: #FFFFFF;
  --border: #E5E7EB;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav { border-bottom: 1px solid var(--border); padding: 1.25rem 2rem; }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--fg); text-decoration: none; }
.nav-tagline { font-size: 0.875rem; color: var(--muted); }

/* Hero */
.hero { padding: 5rem 2rem 3rem; max-width: 1100px; margin: 0 auto; }
.hero-inner { max-width: 680px; }
.hero-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem; }
.hero-headline { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem; color: var(--fg); }
.hero-lede { font-size: 1.2rem; color: #374151; line-height: 1.7; max-width: 580px; }
.hero-lede em { font-style: normal; font-weight: 600; color: var(--fg); }

/* Stats */
.stats-row { background: var(--fg); color: #fff; padding: 2.5rem 2rem; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 0; }
.stat { flex: 1; text-align: center; padding: 0 1rem; }
.stat-value { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--amber); line-height: 1.1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.4; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* How */
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem; }
.section-headline { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; color: var(--fg); }
.how { padding: 5rem 2rem; background: var(--surface); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how .section-headline { margin-bottom: 3rem; max-width: 520px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.how-card { }
.how-icon { width: 52px; height: 52px; background: var(--amber-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--amber); margin-bottom: 1.25rem; }
.how-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--fg); }
.how-card p { font-size: 0.95rem; color: #4B5563; line-height: 1.65; }

/* Report Preview */
.report-section { padding: 5rem 2rem; background: var(--bg); }
.report-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.report-copy .section-headline { margin-bottom: 1.5rem; }
.report-body { font-size: 1rem; color: #4B5563; line-height: 1.7; margin-bottom: 1rem; }

/* Mock report card */
.report-mockup { }
.mockup-label { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.75rem; font-weight: 500; }
.mockup-report { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; box-shadow: 0 4px 24px rgba(0,0,0,0.06); font-size: 0.8rem; }
.mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.mock-title { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--fg); }
.mock-date { color: var(--muted); }
.mock-business { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--fg); }
.mock-scores { display: flex; gap: 1rem; margin-bottom: 1rem; }
.mock-score { flex: 1; background: var(--bg); border-radius: 8px; padding: 0.75rem; text-align: center; }
.mock-score-label { display: block; font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.mock-score-val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.mock-score-val.amber { color: var(--amber); }
.mock-score-val.green { color: var(--green); }
.mock-divider { height: 1px; background: var(--border); margin: 1rem 0; }
.mock-section-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.6rem; font-weight: 600; }
.mock-list { list-style: none; padding-left: 0; }
.mock-list li { padding: 0.35rem 0; border-bottom: 1px solid var(--border); color: #374151; }
.mock-list li:last-child { border-bottom: none; }
.mock-geo-items { display: flex; flex-direction: column; gap: 0.4rem; }
.mock-geo-item { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 0.6rem; background: var(--bg); border-radius: 6px; }
.mock-geo-engine { font-weight: 600; font-size: 0.75rem; color: var(--fg); }
.mock-geo-mention { font-size: 0.72rem; color: var(--muted); }

/* Testimonials */
.testimonials { padding: 5rem 2rem; background: var(--surface); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials .section-headline { margin-bottom: 3rem; max-width: 540px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; }
.testimonial-text { font-size: 0.95rem; color: var(--fg); line-height: 1.65; font-style: italic; margin-bottom: 1rem; }
.testimonial-attribution { font-size: 0.78rem; color: var(--muted); }

/* Pricing */
.pricing { padding: 5rem 2rem; background: var(--fg); color: #fff; }
.pricing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.pricing .section-label { color: var(--amber); }
.pricing .section-headline { color: #fff; margin-bottom: 2.5rem; }
.pricing-card { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 16px; padding: 2.5rem; max-width: 480px; margin: 0 auto; text-align: left; }
.pricing-name { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 0.75rem; font-weight: 600; }
.pricing-price { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 1.5rem; }
.pricing-period { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.pricing-features { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.pricing-features li { padding: 0.5rem 0; font-size: 0.9rem; color: rgba(255,255,255,0.8); border-bottom: 1px solid #2a2a2a; display: flex; align-items: center; gap: 0.6rem; }
.pricing-features li::before { content: '✓'; color: var(--amber); font-weight: 700; flex-shrink: 0; }
.pricing-note { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* Manifesto */
.manifesto { padding: 5rem 2rem; background: var(--amber-light); }
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto-text { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 400; font-style: italic; color: var(--fg); line-height: 1.6; }

/* Footer */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--fg); }
.footer-desc { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; max-width: 300px; }
.footer-legal { font-size: 0.78rem; color: var(--muted); }

/* Responsive */
@media (max-width: 900px) {
  .how-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .report-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats-inner { flex-direction: column; gap: 1.5rem; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.5rem 2rem; }
  .hero-headline { font-size: 2.2rem; }
  .stats-row { padding: 2rem 1.5rem; }
  .how, .report-section, .testimonials, .pricing, .manifesto { padding: 3.5rem 1.5rem; }
}