/* ── Variables ── */
:root {
  --bg: #080C10;
  --bg-secondary: #0D1219;
  --surface: #111820;
  --accent: #FF8000;
  --accent-dim: rgba(255, 128, 0, 0.08);
  --text: #F0EEE8;
  --text-muted: #8A8D94;
  --border: rgba(240, 238, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); }

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--bg);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 48px 72px;
  min-height: 560px;
  align-items: center;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  font-weight: 300;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Manifesto ── */
.manifesto {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 48px;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  max-width: 900px;
}
.manifesto-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.04em;
}
.manifesto-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

/* ── Approach ── */
.approach {
  padding: 80px 48px;
}
.approach-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 56px;
}
.approach-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.04em;
}
.approach-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.approach-item {
  background: var(--bg-secondary);
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.approach-icon { width: 28px; }
.approach-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.approach-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Outcomes ── */
.outcomes {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 48px;
}
.outcomes-inner {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 56px;
}
.outcomes-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: rgba(240,238,232,0.06);
  line-height: 1;
  letter-spacing: -0.04em;
}
.outcomes-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.outcome {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.outcome-metric {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.outcome-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ── Closing ── */
.closing {
  padding: 96px 48px 80px;
}
.closing-inner {
  max-width: 700px;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--text);
}
.closing-statement--secondary {
  color: var(--text-muted);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  margin-top: 16px;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-sub {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
    gap: 40px;
  }
  .hero-headline { font-size: 36px; }
  .hero-visual { order: -1; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 16px; }
  .manifesto-number { font-size: 48px; }
  .manifesto, .approach, .outcomes { padding: 56px 24px; }
  .approach-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .closing { padding: 56px 24px 48px; }
  .footer { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .stat-value { font-size: 26px; }
}