:root {
  --bg: #040d18;
  --fg: #e8edf5;
  --fg-muted: #7a8fa6;
  --accent: #00c8b4;
  --accent-dim: #00c8b420;
  --border: #0d2137;
  --card-bg: #071828;
  --font-display: 'Sora', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

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

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.hero-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
}

/* Pipeline */
.pipeline {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.pipeline-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pipeline-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.pipeline-img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.pipeline-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.pipeline-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 500;
  padding-top: 0.2rem;
  flex-shrink: 0;
}
.step strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.step p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Manifesto */
.manifesto {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
}
.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--fg);
  letter-spacing: -0.01em;
  font-style: italic;
  margin-bottom: 2.5rem;
}
.manifesto-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Outcomes */
.outcomes {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
}
.outcome {
  padding: 2rem;
  border-right: 1px solid var(--border);
}
.outcome:last-child { border-right: none; }
.outcome-metric {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}
.outcome-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
.footer-logo {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-family: var(--font-mono);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner,
  .pipeline-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pipeline-image-wrap { order: -1; }
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .outcome:nth-child(2) { border-right: none; }
  .outcome:nth-child(3) { border-top: 1px solid var(--border); }
  .outcome:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .pipeline { padding: 3rem 1.5rem; }
  .manifesto { padding: 3rem 1.5rem; }
  .outcomes { padding: 3rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .nav-tagline { display: none; }
}