:root {
  --bg: #0A0A0C;
  --fg: #F5F5F3;
  --fg-dim: rgba(245,245,243,0.55);
  --accent: #CAFF00;
  --accent-dim: rgba(202,255,0,0.15);
  --surface: #111114;
  --surface-2: #1A1A1E;
  --border: rgba(245,245,243,0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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 {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-logo .accent { color: var(--accent); }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-dim);
  font-weight: 300;
  letter-spacing: 0.01em;
}
.nav-cta {
  margin-left: auto;
  background: var(--accent);
  color: #0A0A0C;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 100px 48px 96px;
  max-width: 900px;
}
.manifesto-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 40px;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 36px;
}
.manifesto-sub {
  font-size: 20px;
  color: var(--fg-dim);
  line-height: 1.5;
  max-width: 580px;
  margin-bottom: 72px;
  font-weight: 300;
}
.manifesto-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.manifesto-stat {
  padding: 0 40px 0 0;
}
.manifesto-stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  font-weight: 500;
}
.manifesto-stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  margin: 0 40px 0 0;
}

/* ---- HOW ---- */
.how {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.how-header {
  margin-bottom: 64px;
}
.how-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.how-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 480px;
  line-height: 1.15;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.how-step {
  padding: 40px 36px 40px 0;
  border-right: 1px solid var(--border);
}
.how-step:last-child { border-right: none; padding-right: 0; }
.how-step:first-child { padding-left: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.step-heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.65;
  font-weight: 300;
}

/* ---- WHY ---- */
.why {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.why-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 28px;
}
.why-body {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}
.why-cards-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.why-card {
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.why-card:not(:last-child) { margin-bottom: 8px; }
.why-card-icon {
  font-size: 8px;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.6;
  font-weight: 300;
}

/* ---- CLOSING ---- */
.closing {
  padding: 96px 48px 120px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--fg);
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-dim);
  font-weight: 300;
  line-height: 1.6;
}

/* ---- FOOTER ---- */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-brand .accent { color: var(--accent); }
.footer-copy {
  font-size: 12px;
  color: var(--fg-dim);
  font-weight: 300;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav, .manifesto, .how, .why, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding-top: 20px; padding-bottom: 20px; }
  .manifesto { padding-top: 60px; padding-bottom: 60px; }
  .manifesto-headline { font-size: 40px; }
  .manifesto-stat-row { flex-wrap: wrap; gap: 24px; }
  .manifesto-stat-divider { display: none; }
  .manifesto-stat { padding: 0; }
  .how-steps { grid-template-columns: 1fr; gap: 0; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .how-step:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding-top: 64px; padding-bottom: 80px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .manifesto-headline { font-size: 36px; }
  .stat-num { font-size: 40px; }
}
