:root {
  --bg: #F7F5F0;
  --bg-alt: #EDEAE3;
  --fg: #1C1B18;
  --fg-muted: #6B6760;
  --accent: #C8922A;
  --accent-light: #F5E9D3;
  --border: #DDD9D0;
}

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

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

/* Navigation */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-demo-btn {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-demo-btn:hover { background: #b07820; }

/* Hero */
.hero {
  padding: 80px 48px 64px;
  max-width: 820px;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 20px;
  color: var(--fg);
  font-weight: 400;
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 32px;
}
.hero-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* Stats */
.stats {
  background: var(--fg);
  color: #fff;
  padding: 56px 48px;
}
.stat-grid {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 160px;
  padding: 0 32px;
}
.stat:first-child { padding-left: 0; }
.stat-sep {
  width: 1px;
  height: 72px;
  background: rgba(255,255,255,0.15);
}
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.stat-unit {
  font-size: 32px;
  font-weight: 400;
}
.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-top: 10px;
  margin-bottom: 4px;
}
.stat-context {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.stats-footnote {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* Manifesto */
.manifesto {
  background: var(--bg-alt);
  padding: 96px 48px;
}
.manifesto-inner {
  max-width: 720px;
}
.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.manifesto-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 620px;
}

/* How */
.how {
  padding: 96px 48px;
}
.how-header {
  max-width: 560px;
  margin-bottom: 56px;
}
.how-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.how-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.how-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
}
.how-step {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-step:nth-child(even) {
  padding-left: 40px;
  border-right: none;
}
.how-step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.how-step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}
.how-step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Outcomes */
.outcomes {
  background: var(--bg-alt);
  padding: 80px 48px;
}
.outcomes-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.outcomes-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
}
.outcome {
  padding: 36px 36px 36px 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcome:nth-child(even) {
  padding-left: 36px;
  border-right: none;
}
.outcome-icon {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 16px;
}
.outcome-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.3;
}
.outcome-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  background: var(--fg);
  color: #fff;
  padding: 80px 48px;
}
.closing-inner {
  max-width: 680px;
}
.closing-quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 28px;
  display: block;
}
.closing-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
  margin-bottom: 24px;
}
.closing-attribution {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.closing-body {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 480px;
}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.footer-legal {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 640px) {
  .nav, .hero, .stats, .manifesto, .how, .outcomes, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .stat-grid { flex-direction: column; gap: 32px; }
  .stat-sep { display: none; }
  .stat { padding: 0; }
  .how-step, .how-step:nth-child(even) { padding: 28px 0; border-right: none; }
  .outcome, .outcome:nth-child(even) { padding: 28px 0; border-right: none; }
}