:root {
  --bg: #F7F4EF;
  --bg-warm: #EDE9E2;
  --fg: #1C1917;
  --fg-muted: #6B6460;
  --accent: #B83232;
  --teal: #1A5F7A;
  --border: #D6D1C8;
}

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

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

/* ── Navbar ── */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ── Hero ── */
.hero {
  padding: 80px 40px 72px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 640px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.stat {
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── Manifesto ── */
.manifesto {
  padding: 72px 40px;
  background: var(--fg);
  color: var(--bg);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 6px;
}
.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.manifesto-body p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(247, 244, 239, 0.75);
}

/* ── Outcomes ── */
.outcomes {
  padding: 80px 40px;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.outcomes-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 48px;
  max-width: 580px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.outcome-card {
  background: var(--bg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.outcome-icon {
  color: var(--accent);
  width: 24px;
  height: 24px;
}
.outcome-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
}
.outcome-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* ── How It Works ── */
.howitworks {
  padding: 72px 40px;
  background: var(--bg-warm);
}
.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.howitworks-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.howitworks-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 48px;
  max-width: 520px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.step {
  padding: 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step:last-child { border-right: none; }
.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.step-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* ── Closing ── */
.closing {
  padding: 96px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* ── Footer ── */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .hero { padding: 56px 20px 48px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 20px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .closing { padding: 64px 20px; }
  .footer { padding: 32px 20px; }
}