:root {
  --bg: #0c1220;
  --bg-alt: #111827;
  --fg: #f5f0e8;
  --fg-muted: #9ca3af;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(255,255,255,0.08);
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* ─── NAV ─────────────────────────────────── */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.nav-link {
  text-decoration: none;
  color: var(--fg);
}
.nav-link:hover { color: var(--accent); }
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links .nav-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.nav-links .nav-link:hover { color: var(--accent); }
.nav-links .cta-link {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  font-weight: 500;
}
.nav-links .cta-link:hover { background: #e8900a; }
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── HERO ────────────────────────────────── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 3rem 6rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 4rem;
  font-weight: 400;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  max-width: 680px;
}
.hero-stat {
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
  background: var(--bg-alt);
}
.hero-stat:last-child { border-right: none; }
.stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* ─── SHARED SECTION ────────────────────────── */
section {
  padding: 6rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 620px;
}

/* ─── PROBLEM ────────────────────────────────── */
.problem {
  border-top: 1px solid var(--border);
  padding-top: 6rem;
}
.problem-header { margin-bottom: 4rem; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.problem-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  background: var(--bg-alt);
}
.problem-card:last-child { border-right: none; }
.problem-number {
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.problem-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.problem-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── HOW ──────────────────────────────────── */
.how {
  border-top: 1px solid var(--border);
}
.how-header { margin-bottom: 4rem; }
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.how-step:last-child { border-bottom: none; }
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--bg);
  border-right: 1px solid var(--border);
  padding: 2rem 1rem;
}
.step-content {
  padding: 2rem 2.5rem;
}
.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── OUTCOMES ────────────────────────────── */
.outcomes {
  border-top: 1px solid var(--border);
}
.outcomes-header { margin-bottom: 3rem; }
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.outcome {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 2rem;
  background: var(--bg-alt);
}
.outcome-icon {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.outcome p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── MANIFESTO ────────────────────────────── */
.manifesto {
  border-top: 1px solid var(--border);
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.manifesto-attribution {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

/* ─── CLOSING ──────────────────────────────── */
.closing {
  border-top: 1px solid var(--border);
  padding-bottom: 8rem;
}
.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 800px;
}
.closing p {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.closing-vision {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--accent);
  font-style: italic;
  margin-top: 2rem;
}
.landing-cta {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 2px;
  letter-spacing: -0.01em;
  transition: background 0.15s;
}
.landing-cta:hover { background: #e8900a; }

/* ─── FOOTER ────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width: 768px) {
  section, .hero, .manifesto { padding: 4rem 1.5rem; }
  .nav { padding: 1.25rem 1.5rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { border-right: none; border-bottom: 1px solid var(--border); }
  .problem-card:last-child { border-bottom: none; }
  .how-step { grid-template-columns: 60px 1fr; }
  .step-content { padding: 1.5rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
}