:root {
  --bg: #0e0e0e;
  --bg-2: #141414;
  --accent: #ff5c2b;
  --accent-dim: rgba(255, 92, 43, 0.12);
  --text: #f2f2f2;
  --text-muted: #888;
  --text-dim: #555;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
  --pad-x: 48px;
}

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

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

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  padding: 80px var(--pad-x) 96px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.hero-overline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 540px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}
.hero-stat-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 72px var(--pad-x);
}
.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 40px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.manifesto-body em { color: var(--text); font-style: normal; font-weight: 500; }

/* ── PIPELINE ── */
.pipeline {
  padding: 96px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.pipeline-header {
  margin-bottom: 64px;
}
.pipeline-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.pipeline-sub {
  font-size: 18px;
  color: var(--text-muted);
}
.pipeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pipeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid #1e1e1e;
  align-items: start;
}
.pipeline-step:first-child { border-top: 1px solid #1e1e1e; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  color: rgba(255, 92, 43, 0.25);
  line-height: 1;
  padding-top: 4px;
}
.step-body { padding-top: 4px; }
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.step-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── WHO IT'S FOR ── */
.who {
  background: var(--bg-2);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 80px var(--pad-x);
}
.who-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.who-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text);
}
.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.who-list li {
  font-size: 16px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.who-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.niche-box {
  background: var(--accent-dim);
  border: 1px solid rgba(255, 92, 43, 0.2);
  border-radius: 12px;
  padding: 32px;
}
.niche-stat {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 16px;
}
.niche-example {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
}
.niche-vs {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.niche-note {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 100px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 32px;
  color: var(--text);
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 24px;
}
.closing-tagline {
  font-size: 18px;
  color: var(--text-muted);
  font-style: italic;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid #1e1e1e;
  padding: 32px var(--pad-x);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.footer-divider { color: var(--text-dim); }
.footer-copy { font-size: 14px; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  :root { --pad-x: 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { flex-direction: row; flex-wrap: wrap; }
  .hero-stat-block { min-width: 120px; }
  .who-inner { grid-template-columns: 1fr; gap: 48px; }
  .pipeline-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .step-number { font-size: 36px; }
  .closing { text-align: left; }
  .closing-headline { letter-spacing: -1px; }
}