:root {
  --bg: #0d0d0d;
  --surface: #161616;
  --fg: #f5f0e8;
  --fg-muted: rgba(245, 240, 232, 0.55);
  --accent: #e8960f;
  --accent-dim: rgba(232, 150, 15, 0.15);
  --border: rgba(245, 240, 232, 0.1);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8vw 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,150,15,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 40px;
  max-width: 800px;
}

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

.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,150,15,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 8vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-label,
.process-label,
.outcomes-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 48px;
  max-width: 820px;
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}

.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin-left: 35px;
}

.manifesto-body p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
}

.manifesto-body p:last-child {
  grid-column: 1 / -1;
  color: var(--fg);
}

/* ── PROCESS ── */
.process {
  padding: 120px 8vw;
}

.process-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 72px;
  max-width: 600px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.process-step {
  background: var(--surface);
  padding: 40px 32px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 100px 8vw 120px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.outcome-card {
  background: var(--bg);
  padding: 48px 40px;
}

.outcome-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.outcome-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

/* ── CLOSING ── */
.closing {
  padding: 140px 8vw;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 8vw;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}

.footer-divider {
  color: var(--accent);
}

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

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .manifesto-body { grid-template-columns: 1fr; }
  .manifesto-body p:last-child { grid-column: 1; }
  .manifesto-quote { margin-left: 0; padding-left: 20px; }
  .manifesto-body { margin-left: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero { padding: 60px 6vw 80px; }
  .manifesto { padding: 80px 6vw; }
  .process { padding: 80px 6vw; }
  .process-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 80px 6vw; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 6vw; }
  .footer { flex-direction: column; gap: 16px; text-align: center; }
}