:root {
  --bg: #0C0C0F;
  --surface: #141418;
  --surface2: #1C1C22;
  --fg: #F0EEE8;
  --fg-muted: #7A786F;
  --fg-dim: #4A4844;
  --accent: #B4FF00;
  --accent-dim: rgba(180, 255, 0, 0.12);
  --red: #FF453A;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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: 24px 48px;
  border-bottom: 1px solid var(--surface2);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 15, 0.92);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px 80px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(180, 255, 0, 0.25);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline br { display: block; }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  padding: 0 40px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 4px;
  max-width: 140px;
  line-height: 1.3;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--surface2);
  margin-right: 40px;
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--surface2);
  border-bottom: 1px solid var(--surface2);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 48px;
}

.manifesto-label, .how-label, .outcomes-label, .closing-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.manifesto h2, .how h2, .closing h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 700px;
}

.manifesto p, .how p, .outcomes p, .closing p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 620px;
}

/* HOW */
.how {
  border-bottom: 1px solid var(--surface2);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 48px;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
}

.step {
  display: flex;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--surface2);
  background: var(--surface);
  margin: -1px 0 0 -1px;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.step-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* OUTCOMES */
.outcomes {
  background: var(--surface);
  border-bottom: 1px solid var(--surface2);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 48px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--surface2);
  margin: 40px 0 0;
}

.outcome-card {
  background: var(--surface);
  padding: 40px 36px;
}

.outcome-icon {
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}

.outcome-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.outcome-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.outcomes-callout {
  margin-top: 48px;
  padding: 24px 28px;
  border: 1px solid rgba(180, 255, 0, 0.15);
  background: rgba(180, 255, 0, 0.04);
  border-radius: 2px;
}

.outcomes-callout p {
  margin-bottom: 0;
  max-width: 680px;
  font-size: 0.9rem;
}

/* CLOSING */
.closing {
  border-bottom: 1px solid var(--surface2);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 48px;
}

.closing h2 {
  margin-bottom: 24px;
  max-width: 600px;
}

.closing p {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 0;
}

/* FOOTER */
footer {
  padding: 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-inner .wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.footer-inner p {
  font-size: 0.82rem;
  color: var(--fg-dim);
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav, .hero, .manifesto-inner, .how-inner, .outcomes-inner, .closing-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero { padding-top: 64px; padding-bottom: 64px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat-div { display: none; }
  .stat { padding: 0; }

  .how-steps { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }

  .manifesto-inner, .how-inner, .outcomes-inner, .closing-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}