:root {
  --bg: #0e1118;
  --surface: #161b26;
  --surface-2: #1e2435;
  --fg: #f0ede8;
  --fg-muted: #8a8a8a;
  --accent: #e8923a;
  --accent-dim: rgba(232, 146, 58, 0.12);
  --border: rgba(255, 255, 255, 0.07);
  --radius: 4px;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

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

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 100px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 36px;
}
.hero-sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(240, 237, 232, 0.65);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-tag {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tag-line {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.hero-atmosphere {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(232, 146, 58, 0.18) 0%, rgba(232, 146, 58, 0.04) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 72px;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px 40px;
  margin-bottom: 56px;
}
.manifesto-point {}
.point-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}
.manifesto-point h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.manifesto-point p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.manifesto-punch {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* PROOF */
.proof {
  padding: 100px 48px;
  background: var(--bg);
}
.proof-inner { max-width: 900px; margin: 0 auto; }
.proof-header { margin-bottom: 72px; }
.proof-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  line-height: 1.1;
}
.proof-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 480px;
}
.proof-numbers {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.proof-stat { flex: 1; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
  font-weight: 400;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}
.proof-narrative {
  font-size: 0.95rem;
  color: rgba(240, 237, 232, 0.5);
  line-height: 1.6;
  font-style: italic;
}

/* OUTCOMES */
.outcomes {
  background: var(--surface);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.outcomes-inner { max-width: 900px; margin: 0 auto; }
.outcomes-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
.outcome-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.outcome-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1;
}
.outcome-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.outcome-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.closing-who {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
}

/* FOOTER */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: baseline; gap: 20px; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 80px 28px 80px; }
  .hero-headline { font-size: 3rem; }
  .hero-atmosphere { width: 300px; right: -80px; }
  .manifesto { padding: 72px 28px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 36px; }
  .proof { padding: 72px 28px; }
  .proof-numbers { flex-direction: column; gap: 32px; }
  .proof-divider { width: 40px; height: 1px; }
  .outcomes { padding: 72px 28px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 28px; }
  .footer { padding: 32px 28px; }
  .footer-inner { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 20px 60px; }
  .manifesto { padding: 56px 20px; }
  .proof { padding: 56px 20px; }
  .outcomes { padding: 56px 20px; }
  .closing { padding: 64px 20px; }
  .footer { padding: 28px 20px; }
}