:root {
  --bg: #080B0F;
  --bg-surface: #0E1218;
  --bg-card: #12171F;
  --orange: #FF6B2B;
  --orange-dim: rgba(255, 107, 43, 0.15);
  --cyan: #00E5FF;
  --cyan-dim: rgba(0, 229, 255, 0.1);
  --red: #FF2D55;
  --text: #F0EEE8;
  --text-muted: #7A8694;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Chakra Petch', sans-serif;
  --font-body: 'Outfit', 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;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 15, 0.9);
  backdrop-filter: blur(20px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  color: var(--orange);
  font-size: 18px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--text);
}

.brand-accent { color: var(--orange); }

.nav-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-family: var(--font-display);
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 100px;
  overflow: hidden;
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hex-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 40px 40px;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.glow-orange {
  width: 600px;
  height: 600px;
  background: var(--orange);
  top: -200px;
  right: -100px;
}

.glow-cyan {
  width: 400px;
  height: 400px;
  background: var(--cyan);
  bottom: -100px;
  left: 20%;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.eyebrow-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255, 107, 43, 0.3);
  padding: 6px 14px;
  border-radius: 2px;
}

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

.headline-accent {
  color: var(--orange);
}

.hero-sub {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.meta-sep { color: var(--border); font-size: 18px; }

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

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

.manifesto-label, .pipeline-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.manifesto-body p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

.manifesto-body em {
  color: var(--orange);
  font-style: normal;
  font-weight: 500;
}

/* STATS */
.stats {
  padding: 80px 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.stat-card {
  background: var(--bg-surface);
  padding: 40px 32px;
  text-align: center;
}

.stat-card--accent {
  background: var(--orange-dim);
  border-left: none;
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card--accent .stat-number { color: var(--orange); }

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.stat-context {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* PIPELINE */
.pipeline {
  padding: 100px 48px;
  background: var(--bg);
}

.pipeline-inner { max-width: 860px; margin: 0 auto; }

.pipeline-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

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

.pipeline-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  padding-top: 2px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

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

/* CLOSING */
.closing {
  position: relative;
  padding: 120px 48px;
  text-align: center;
  overflow: hidden;
}

.closing-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,43,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

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

.footer-brand { display: flex; align-items: center; gap: 8px; }

.footer-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

/* CTA BUTTONS */
.play-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--bg);
  background: var(--orange);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 20px rgba(255, 107, 43, 0.3);
}

.play-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 30px rgba(255, 107, 43, 0.5);
}

.play-cta-sm {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--orange);
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.play-cta-sm:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; min-height: 80vh; }
  .hero-headline { font-size: 48px; }
  .hero-sub { font-size: 17px; }
  .manifesto, .pipeline { padding: 60px 24px; }
  .stats { padding: 60px 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 28px 20px; }
  .stat-number { font-size: 36px; }
  .pipeline-steps { grid-template-columns: 1fr; gap: 36px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 38px; }
  .hero-meta { gap: 8px; }
  .meta-sep { display: none; }
}