:root {
  --bg: #0D0D0D;
  --surface: #161616;
  --surface-2: #1E1E1E;
  --accent: #D4FF00;
  --accent-dim: #A8CC00;
  --fg: #F5F5F0;
  --fg-dim: #8A8A85;
  --fg-muted: #4A4A45;
  --border: #252525;
  --radius: 4px;
}

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

html {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body { min-height: 100vh; }

/* ── NAV ── */
.nav {
  padding: 28px 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.nav-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--accent);
}

/* ── HERO ── */
.hero {
  padding: 96px 48px 80px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  max-width: 1100px;
}

.hero-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  display: flex;
  flex-direction: column;
}

.hero-line { display: block; }

.hero-line.accent { color: var(--accent); }

.hero-right { padding-bottom: 8px; }

.hero-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-dim);
  margin-bottom: 28px;
  max-width: 440px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 99px;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 72px 48px;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 32px;
  align-items: start;
}

.manifesto-bar {
  width: 4px;
  height: 100%;
  min-height: 80px;
  background: var(--accent);
  border-radius: 2px;
}

.manifesto-text p {
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 16px;
}

.manifesto-text p:last-child { color: var(--fg-dim); font-weight: 400; font-size: 18px; }

/* ── PROCESS ── */
.process {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.process-header {
  max-width: 1100px;
  margin-bottom: 56px;
}

.process-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.process-header p {
  color: var(--fg-dim);
  font-size: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1100px;
}

.process-card {
  background: var(--surface);
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.process-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 20px;
}

.process-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-dim);
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 72px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.outcomes-inner {
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 0;
}

.outcomes-stat {
  flex: 1;
  text-align: center;
}

.outcomes-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.outcomes-label {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.4;
}

.outcomes-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* ── CLOSER ── */
.closer {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}

.closer-inner { max-width: 1100px; }

.closer-text h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.closer-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-dim);
  max-width: 540px;
}

/* ── FOOTER ── */
.footer {
  padding: 36px 48px;
}

.footer-inner {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--fg);
}

.footer-sub {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 24px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .manifesto { padding: 56px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-bar { display: none; }
  .process { padding: 56px 24px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .outcomes { padding: 56px 24px; }
  .outcomes-inner { flex-direction: column; gap: 32px; }
  .outcomes-divider { width: 80px; height: 1px; }
  .closer { padding: 64px 24px; }
  .footer { padding: 28px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}