:root {
  --bg: #0c0c0e;
  --surface: #141416;
  --surface-2: #1c1c20;
  --amber: #f5a623;
  --amber-dim: rgba(245,166,35,0.12);
  --amber-border: rgba(245,166,35,0.25);
  --text-primary: #f0ede6;
  --text-secondary: #8a8680;
  --text-dim: #54524e;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--surface-2);
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--amber);
  letter-spacing: -0.03em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 96px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--surface-2);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  background: var(--surface);
}
.stat {
  padding: 24px 36px;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  max-width: 120px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--surface-2);
}

/* What section */
.what {
  padding: 80px 48px;
  border-top: 1px solid var(--surface-2);
  max-width: 1100px;
  margin: 0 auto;
}
.what-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 40px;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--surface-2);
  border: 1px solid var(--surface-2);
  border-radius: 16px;
  overflow: hidden;
}
.what-card {
  padding: 40px;
  background: var(--surface);
}
.what-icon {
  color: var(--amber);
  font-size: 10px;
  margin-bottom: 16px;
}
.what-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.what-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* KPI Section */
.kpi-section {
  padding: 80px 48px;
  border-top: 1px solid var(--surface-2);
  max-width: 1100px;
  margin: 0 auto;
}
.kpi-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 40px;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--surface-2);
  border: 1px solid var(--surface-2);
  border-radius: 12px;
  overflow: hidden;
}
.kpi-block {
  padding: 32px 28px;
  background: var(--surface);
}
.kpi-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.kpi-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* How Section */
.how {
  padding: 80px 48px;
  border-top: 1px solid var(--surface-2);
  max-width: 1100px;
  margin: 0 auto;
}
.how-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 56px;
}
.how-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding: 0 32px 0 0;
  border-left: 1px solid var(--surface-2);
  padding-left: 28px;
}
.step:first-child {
  border-left: none;
  padding-left: 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.step-body h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Manifesto */
.manifesto {
  padding: 96px 48px;
  border-top: 1px solid var(--surface-2);
  background: var(--surface);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-style: italic;
}
.manifesto-attribution {
  font-size: 12px;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Closing */
.closing {
  padding: 96px 48px;
  border-top: 1px solid var(--surface-2);
  max-width: 1100px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.65;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--surface-2);
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--amber);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 11px;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .what-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  .how-timeline { grid-template-columns: 1fr; gap: 32px; }
  .step { border-left: none; border-top: 1px solid var(--surface-2); padding: 0; padding-top: 24px; }
  .step:first-child { border-top: none; padding-top: 0; }
  .what, .kpi-section, .how, .closing { padding: 56px 24px; }
  .manifesto { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}