/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1e1e1e;
  --fg: #f5f0e8;
  --fg-dim: rgba(245, 240, 232, 0.55);
  --fg-muted: rgba(245, 240, 232, 0.3);
  --accent: #e85d04;
  --accent-warm: #f48c06;
  --border: rgba(245, 240, 232, 0.08);
  --border-accent: rgba(232, 93, 4, 0.3);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 100px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(232, 93, 4, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(232, 93, 4, 0.02) 0%, transparent 60%),
    var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.eyebrow-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-divider, .eyebrow-tag {
  font-size: 12px;
  color: var(--fg-dim);
}

.eyebrow-divider { opacity: 0.4; }

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-dim);
  max-width: 540px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  width: fit-content;
  overflow: hidden;
  background: var(--surface);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 36px;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

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

/* ===== PHASES ===== */
.phases {
  padding: 120px 80px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.phases-header {
  margin-bottom: 72px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.phase {
  background: var(--bg);
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s ease;
}

.phase:hover {
  background: var(--surface-2);
}

.phase-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.04em;
}

.phase-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.phase-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.phase-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-dim);
}

.phase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.phase-list li {
  font-size: 13px;
  color: var(--fg-dim);
  padding-left: 18px;
  position: relative;
}

.phase-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.7;
  font-size: 11px;
}

.phase-icon {
  margin-top: auto;
  padding-top: 20px;
  opacity: 0.6;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 120px 80px;
  border-top: 1px solid var(--border);
}

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

.outcomes .section-title {
  margin-bottom: 64px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.outcome {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcome-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
}

.metric-sub {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
}

.outcome-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-dim);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 80px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
}

.manifesto-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 28px;
}

.manifesto-attribution {
  font-size: 12px;
  color: var(--fg-muted);
  padding-left: 28px;
  margin-bottom: 48px;
}

.manifesto-callout {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 36px;
}

.manifesto-callout p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-dim);
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 80px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 700px;
}

.closing-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--fg);
}

.closing-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-dim);
  margin-bottom: 32px;
  max-width: 540px;
}

.closing-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 80px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .phases-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero, .phases, .outcomes, .manifesto, .closing, .footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero { padding-top: 100px; padding-bottom: 80px; }
  .hero-stats { flex-wrap: wrap; }
  .stat { padding: 16px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .closing { padding-top: 80px; padding-bottom: 80px; }
}