/* ── Tokens ───────────────────────────────────────── */
:root {
  --ink:     #1a1a2e;
  --amber:   #f59e0b;
  --amber-d: #d97706;
  --bg:      #f9f7f4;
  --surface: #ffffff;
  --text:    #1a1a2e;
  --muted:   #6b7280;
  --border:  #e5e0d8;
  --amber-bg:#fffbeb;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Figtree', system-ui, sans-serif;
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--surface);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 7vw, 5rem);
}
.hero-inner { max-width: 1200px; margin: 0 auto; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: var(--surface);
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
  font-weight: 300;
}
.hero-lede {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: #c4c9d9;
  max-width: 600px;
  margin-bottom: 4rem;
  line-height: 1.65;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  background: #2a2d42;
  border: 1.5px solid #2a2d42;
}
.stat-block {
  background: var(--ink);
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-block.stat-accent .stat-number { color: var(--amber); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--surface);
}
.stat-label {
  font-size: 0.8rem;
  color: #9ba0b5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1.4;
}

/* ── Hero CTAs ─────────────────────────────────────── */
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--amber-d); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #c4c9d9;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3); }

/* ── Problem ─────────────────────────────────────── */
.problem { background: var(--bg); padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 5vw, 4rem); }
.problem-inner { max-width: 860px; margin: 0 auto; }
.problem-label,
.how-label,
.features-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-d);
  margin-bottom: 1.25rem;
}
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.problem-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.problem-body p {
  font-size: 1.05rem;
  color: #4a4a5a;
  line-height: 1.7;
}
.problem-quote {
  border-left: 3px solid var(--amber);
  padding-left: 1.75rem;
  margin-top: 2rem;
}
.problem-quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}
.problem-quote cite {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
  margin-top: 0.5rem;
  display: block;
}

/* ── How ─────────────────────────────────────────── */
.how { background: var(--surface); padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 5vw, 4rem); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-label { margin-bottom: 3rem; }
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 1.5rem; }
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}
.step-connector {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  margin-top: 1.5rem;
}

/* ── Features ────────────────────────────────────── */
.features { background: var(--bg); padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 5vw, 4rem); }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-label { margin-bottom: 1.25rem; }
.features-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 3.5rem;
  max-width: 600px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}
.feature-card {
  background: var(--surface);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--amber-bg); }
.feature-icon {
  color: var(--amber-d);
  width: 28px;
  height: 28px;
  margin-bottom: 0.25rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Outcomes ────────────────────────────────────── */
.outcomes { background: var(--amber); padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcome-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}
.outcome {
  flex: 1;
  min-width: 200px;
  padding: 0 3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.outcome-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.outcome-label {
  font-size: 0.8rem;
  color: rgba(26,26,46,0.65);
  line-height: 1.4;
  font-weight: 500;
}
.outcome-divider {
  width: 1px;
  background: rgba(26,26,46,0.15);
  align-self: stretch;
  margin: 0 2.5rem;
}

/* ── Manifesto ───────────────────────────────────── */
.manifesto { background: var(--ink); padding: clamp(5rem, 12vw, 8rem) clamp(1.5rem, 5vw, 4rem); }
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--surface);
  margin-bottom: 2.5rem;
}
.manifesto-body {
  font-size: 1rem;
  color: #9ba0b5;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ── Footer ──────────────────────────────────────── */
.footer { background: #111320; padding: 2.5rem clamp(1.5rem, 5vw, 4rem); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-logo { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--surface); display: block; }
.footer-tagline { font-size: 0.8rem; color: #6b7280; margin-top: 0.25rem; }
.footer-meta p { font-size: 0.75rem; color: #6b7280; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .how-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .step { padding: 0; }
  .outcome-divider { display: none; }
  .outcome { padding: 0 0 2rem 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}