:root {
  --bg: #faf8f4;
  --fg: #1a1a1a;
  --accent: #c97b2a;
  --accent-light: #e89b3a;
  --muted: #6b6560;
  --surface: #f0ece4;
  --border: #ddd8cf;
  --font-body: 'Lora', Georgia, serif;
  --font-display: 'Playfair Display', 'Lora', serif;
}

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

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

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-light) !important; }

/* HERO */
.hero {
  padding: 96px 48px 80px;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-family: 'Inter', system-ui, sans-serif;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 48px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.15s;
}
.hero-cta:hover { background: var(--accent-light); }
.hero-cta-arrow { font-size: 16px; }

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.manifesto-inner { max-width: 800px; }
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-family: 'Inter', system-ui, sans-serif;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  font-family: 'Inter', system-ui, sans-serif;
}

/* HOW IT WORKS */
.howitworks { padding: 80px 48px; max-width: 1000px; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: 'Inter', system-ui, sans-serif;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 56px;
  line-height: 1.2;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.step {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
}
.step-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-family: 'Inter', system-ui, sans-serif;
}
.step-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

/* OUTCOMES */
.outcomes {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.outcomes-inner { max-width: 1000px; }
.outcome-headline {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
  margin-bottom: 48px;
  line-height: 1.3;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.outcome {
  background: var(--bg);
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.outcome:last-child { border-right: none; }
.outcome-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Inter', system-ui, sans-serif;
}
.outcome p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-family: 'Inter', system-ui, sans-serif;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-family: 'Inter', system-ui, sans-serif;
}
.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.15s;
}
.closing-cta:hover { background: var(--accent-light); }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Inter', system-ui, sans-serif;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 56px; }
  .hero-headline { letter-spacing: -0.5px; }
  .step-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome { border-right: none; border-bottom: 1px solid var(--border); }
  .outcome:last-child { border-bottom: none; }
  .manifesto, .howitworks, .outcomes, .closing { padding: 56px 24px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
  .nav-links { gap: 16px; }
}