:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --accent: #ff5722;
  --accent-dim: rgba(255, 87, 34, 0.15);
  --text: #faf7f2;
  --text-muted: #8a8a8a;
  --border: #2a2a2a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  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 48px 80px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(255, 87, 34, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
}

.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.manifesto-content p {
  font-size: 22px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 300;
}

.manifesto-content p:last-child { margin-bottom: 0; }

/* HOW IT WORKS */
.howitworks {
  padding: 120px 48px;
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 56px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.step {}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
}

/* OUTCOMES */
.outcomes {
  background: var(--accent);
  padding: 80px 48px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.outcome {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(0,0,0,0.15);
}

.outcome:last-child { border-right: none; }

.outcome-stat {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 8px;
}

.outcome-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(15, 15, 15, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  max-width: 960px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 480px;
  font-weight: 300;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 60px; }
  .manifesto { padding: 64px 24px; }
  .howitworks { padding: 80px 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .outcomes { padding: 64px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.15); }
  .outcome:last-child { border-bottom: none; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; gap: 12px; }
  .hero::before { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 44px; }
  .manifesto-content p { font-size: 18px; }
  .outcome-stat { font-size: 48px; }
}