:root {
  --bg: #0D0D0F;
  --surface: #141417;
  --surface-2: #1E1E23;
  --fg: #F0EDE8;
  --fg-muted: #8A8790;
  --fg-dim: #5A5860;
  --accent: #FFB800;
  --accent-dim: rgba(255,184,0,0.12);
  --accent-2: #FF6B35;
  --border: rgba(240,237,232,0.08);
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { 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: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── HERO ──────────────────────────────────── */
.hero {
  padding: 80px 48px 100px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-right { display: flex; flex-direction: column; gap: 20px; }
.stat-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
}
.stat-block.accent { background: var(--accent-dim); border-color: rgba(255,184,0,0.2); }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── SYSTEMS ───────────────────────────────── */
.systems { padding: 100px 48px; background: var(--surface); }
.systems-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 56px;
}
.system-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.system-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.2s;
}
.system-card:hover { border-color: rgba(255,184,0,0.3); }
.system-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}
.system-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 12px;
}
.system-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.system-stack {
  font-size: 0.72rem;
  color: var(--fg-dim);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

/* ── MANIFESTO ──────────────────────────────── */
.manifesto { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 20px;
}
.manifesto-headline {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ── OUTCOMES ──────────────────────────────── */
.outcomes { padding: 100px 48px; background: var(--surface); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.outcome {
  background: var(--bg);
  padding: 36px 28px;
  border: 1px solid var(--border);
}
.outcome-stat {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.outcome-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── CLOSING ───────────────────────────────── */
.closing { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.closing-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.closing-statement {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}
.closing-tagline {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

/* ── FOOTER ────────────────────────────────── */
.footer { padding: 40px 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--fg);
}
.footer-copy { font-size: 0.8rem; color: var(--fg-dim); }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .system-cards { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .manifesto, .systems, .outcomes, .closing { padding: 70px 24px; }
  .footer { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .hero-right { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
}