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

:root {
  --midnight: #0B0E1A;
  --deep-navy: #111827;
  --surface: #1E2433;
  --amber: #F5A623;
  --amber-dim: rgba(245, 166, 35, 0.15);
  --cream: #F8F6F1;
  --muted: #8B95A8;
  --border: rgba(245, 166, 35, 0.1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--midnight);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(245, 166, 35, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(245, 166, 35, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.compass-ring {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.compass-svg {
  width: 100%;
  height: auto;
  animation: rotate-slow 60s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 48px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 48px 0 0;
}

/* ─── FEATURES ─────────────────────────────────────────── */
.features {
  padding: 120px 8vw;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.2;
}

.features-header {
  margin-bottom: 80px;
  max-width: 600px;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 20px;
}

.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.feature-block {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.feature-block:last-of-type { border-bottom: none; }

.feature-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.25;
  line-height: 1;
  padding-top: 8px;
}

.feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}

.feature-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  opacity: 0.6;
  padding: 4px 12px;
  border-radius: 2px;
}

/* Ops grid */
.ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ops-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--muted);
  border-radius: 4px;
}

.ops-cell--done {
  background: rgba(245, 166, 35, 0.08);
  border-color: rgba(245, 166, 35, 0.3);
  color: var(--amber);
  opacity: 0.8;
}

.ops-cell--active {
  background: rgba(245, 166, 35, 0.15);
  border-color: var(--amber);
  color: var(--amber);
}

/* Pipeline visual */
.pipeline-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.pipeline-stage {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pipeline-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  color: var(--muted);
  width: 60px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pipeline-bar {
  flex: 1;
  height: 6px;
  background: var(--deep-navy);
  border-radius: 3px;
  overflow: hidden;
}

.pipeline-fill {
  height: 100%;
  background: var(--muted);
  border-radius: 3px;
  transition: width 1s ease;
}

.pipeline-fill--amber { background: var(--amber); }

/* Growth chart */
.growth-chart {
  padding: 24px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-bottom: 12px;
}

.chart-bar {
  flex: 1;
  background: var(--muted);
  opacity: 0.3;
  border-radius: 3px 3px 0 0;
  min-height: 20px;
}

.chart-bar--highlight {
  background: var(--amber);
  opacity: 0.85;
}

.chart-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── MANIFESTO ─────────────────────────────────────────── */
.manifesto {
  padding: 140px 8vw;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
}

.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.manifesto-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 32px;
  font-style: italic;
  letter-spacing: -0.01em;
}

.manifesto-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.manifesto-divider {
  width: 48px;
  height: 2px;
  background: var(--amber);
  opacity: 0.4;
  margin: 0 auto 48px;
}

.manifesto-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  opacity: 0.7;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  padding: 40px 8vw;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
}

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

.footer-meta {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.5;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    padding: 60px 6vw 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual { display: none; }

  .hero-stats {
    gap: 0;
    flex-wrap: wrap;
  }

  .stat { padding-right: 32px; }
  .stat-divider { margin-right: 32px; }

  .features { padding: 80px 6vw; }

  .feature-block {
    grid-template-columns: 60px 1fr;
    gap: 24px;
  }

  .feature-graphic { display: none; }

  .manifesto { padding: 80px 6vw; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-brand { flex-direction: column; align-items: center; gap: 4px; }
}

@media (max-width: 480px) {
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 11px; }
  .feature-block { grid-template-columns: 40px 1fr; }
  .feature-num { font-size: 36px; }
}