/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --bg:        #070707;
  --bg-2:      #0f0f0f;
  --bg-3:      #161616;
  --surface:   #1c1c1c;
  --border:    rgba(204,255,0,0.12);
  --lime:      #CCFF00;
  --lime-dim:  rgba(204,255,0,0.5);
  --text:      #f0f0ec;
  --muted:     #888;
  --radius:    6px;
}

/* ─── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ──────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  line-height: 1.15;
  color: var(--text);
}
em { font-style: italic; color: var(--lime); }

/* ─── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  background: rgba(7,7,7,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--lime);
  color: #000;
  font-size: 11px;
  border-radius: 4px;
  flex-shrink: 0;
}
.logo-name, .footer-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ─── Sections base ───────────────────────────────────── */
section { padding: 100px 40px; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  max-width: 640px;
  margin-bottom: 64px;
}

/* ─── Manifesto ───────────────────────────────────────── */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
}
.manifesto-stat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 48px 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: sticky;
  top: 100px;
}
.stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--lime);
  display: block;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.manifesto-text { padding-top: 8px; }
.manifesto-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.manifesto-body--accent { color: var(--text); }
.manifesto-bg-art {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  opacity: 0.6;
}
.manifesto-bg-art svg { width: 100%; height: 100%; }

/* ─── How it works ────────────────────────────────────── */
.how { background: var(--bg); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  color: var(--lime);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}
.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.step-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.step-desc em { color: var(--text); font-style: normal; }

/* ─── Contrast table ──────────────────────────────────── */
.contrast { background: var(--bg-2); }
.contrast-inner { max-width: 1100px; margin: 0 auto; }
.contrast-table {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}
.ct-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  border-top: 1px solid var(--border);
}
.ct-row.ct-header {
  background: var(--bg-3);
  border-top: none;
}
.ct-row:first-child { border-top: none; }
.ct-cell {
  padding: 20px 28px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  border-left: 1px solid var(--border);
}
.ct-row.ct-header .ct-cell {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-left: 1px solid var(--border);
}
.ct-label { color: var(--text) !important; font-weight: 500; }
.ct-cell--us {
  background: rgba(204,255,0,0.04);
  color: var(--text) !important;
  border-left: 1px solid rgba(204,255,0,0.15);
}
.ct-row.ct-header .ct-cell--us {
  background: rgba(204,255,0,0.08);
  color: var(--lime) !important;
  border-left: 1px solid rgba(204,255,0,0.2);
}
.contrast-note {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
}

/* ─── Closing ─────────────────────────────────────────── */
.closing { background: var(--bg); }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-rule {
  width: 60px;
  height: 3px;
  background: var(--lime);
  margin-bottom: 56px;
  border-radius: 2px;
}
.closing-headline {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 680px;
  line-height: 1.15;
}
.closing-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.75;
}

/* ─── Footer ──────────────────────────────────────────── */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-meta { text-align: right; }
.footer-meta p { font-size: 13px; color: var(--muted); }
.footer-copy { margin-top: 4px; opacity: 0.4; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  section { padding: 80px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-stat { position: static; }
  .stat-num { font-size: 56px; }
  .how-step { grid-template-columns: 48px 1fr; gap: 24px; }
  .step-num { font-size: 32px; }
  .ct-row { grid-template-columns: 140px 1fr 1fr; }
  .ct-cell { padding: 16px 20px; font-size: 13px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .nav-tagline { display: none; }
  .manifesto-bg-art { display: none; }
}
@media (max-width: 600px) {
  .ct-row { grid-template-columns: 1fr; }
  .ct-cell { border-left: none; border-top: 1px solid var(--border); }
  .ct-row .ct-cell:first-child { border-top: none; padding-top: 14px; }
  .ct-row.ct-header { display: none; }
  .ct-row:first-child .ct-cell { border-top: none; }
}