:root {
  --bg: #0f0f11;
  --bg-raised: #18181c;
  --fg: #f0ede6;
  --fg-muted: #8a8784;
  --accent: #d4ff00;
  --accent-dim: rgba(212, 255, 0, 0.12);
  --border: rgba(240, 237, 230, 0.08);
  --section-gap: 120px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero-eyebrow { margin-bottom: 32px; }
.pill {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(212, 255, 0, 0.2);
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 40px;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.3;
  max-width: 140px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 40px;
}

/* SECTION HEADER */
.section-header {
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* WHAT IT DOES */
.what-it-does {
  padding: var(--section-gap) 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.capability {
  background: var(--bg-raised);
  padding: 40px;
  border: 1px solid var(--border);
}
.cap-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.capability h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.capability p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-gap) 48px;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 32px;
  font-style: italic;
}
.manifesto p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* OUTCOMES */
.outcomes {
  padding: var(--section-gap) 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.outcome {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.outcome-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.outcome-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: var(--section-gap) 48px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.closing h2 {
  margin-bottom: 28px;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 80px 24px 60px; }
  .what-it-does, .outcomes, .closing { padding: 80px 24px; }
  .manifesto { padding: 80px 24px; }
  .capability-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding-right: 0; }
  .footer-inner { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 44px; }
}