:root {
  --bg: #0a0a0c;
  --bg-elevated: #111114;
  --bg-card: #16161a;
  --fg: #e8e6e3;
  --fg-muted: #8a8880;
  --fg-dim: #5a5850;
  --lime: #b8f23d;
  --lime-dim: rgba(184, 242, 61, 0.12);
  --lime-glow: rgba(184, 242, 61, 0.06);
  --orange: #ff6b35;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
  --section-pad: clamp(60px, 10vw, 120px);
}

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

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

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: var(--section-pad) 24px;
  padding-top: clamp(80px, 14vw, 160px);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--lime);
  background: var(--lime-dim);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--lime);
}

.lede {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-dim);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--fg-dim);
  opacity: 0.3;
}

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, var(--lime-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- PIPELINE ---- */
.pipeline {
  padding: var(--section-pad) 24px;
  background: var(--bg-elevated);
}

.pipeline-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pipeline h2,
.competitors h2,
.outputs h2,
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--fg-muted);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.pipeline-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.pipeline-step {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
}

.pipeline-step .step-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.pipeline-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pipeline-step p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
}

.pipeline-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.process-step {
  border-color: rgba(184, 242, 61, 0.15);
}

.output-step {
  border-color: rgba(184, 242, 61, 0.25);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(184,242,61,0.04) 100%);
}

/* ---- COMPETITORS ---- */
.competitors {
  padding: var(--section-pad) 24px;
}

.competitors-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.comp-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 24px;
}

.comp-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.comp-does {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comp-missing {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.5;
}

.highlight-card {
  border-color: var(--lime);
  background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(184,242,61,0.06) 100%);
}

.highlight-card .comp-name {
  color: var(--lime);
}

.highlight-card .comp-does {
  color: var(--lime);
  border-bottom-color: rgba(184,242,61,0.2);
}

.comp-has {
  color: var(--fg) !important;
  font-weight: 500;
}

/* ---- OUTPUTS ---- */
.outputs {
  padding: var(--section-pad) 24px;
  background: var(--bg-elevated);
}

.outputs-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.output-item {
  padding: 28px 24px;
  border-left: 3px solid var(--lime);
  background: var(--bg-card);
  border-radius: 0 12px 12px 0;
}

.output-format {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.output-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  padding: var(--section-pad) 24px;
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing-text {
  color: var(--fg-muted);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-vision {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: var(--lime);
  line-height: 1.4;
  padding: 40px;
  border: 1px solid rgba(184,242,61,0.2);
  border-radius: 20px;
  background: var(--lime-glow);
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

.footer-note {
  font-size: 13px;
  color: var(--fg-dim);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .pipeline-flow {
    flex-direction: column;
    align-items: center;
  }
  
  .pipeline-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
  
  .pipeline-step {
    max-width: 100%;
    width: 100%;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .comp-grid {
    grid-template-columns: 1fr;
  }
  
  .output-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}