:root {
  --bg-primary: #0a0e27;
  --bg-secondary: #0f1435;
  --bg-card: #141a3d;
  --bg-card-hover: #1a2150;
  --text-primary: #e8eaf6;
  --text-secondary: #8b92b3;
  --text-muted: #5c6391;
  --accent: #00d4aa;
  --accent-dim: rgba(0, 212, 170, 0.15);
  --gold: #ffd700;
  --gold-dim: rgba(255, 215, 0, 0.15);
  --red-dim: rgba(255, 82, 82, 0.12);
  --red: #ff5252;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 20px;
  color: var(--accent);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s;
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
}

.stat-card.accent {
  border-color: rgba(0, 212, 170, 0.3);
  background: linear-gradient(135deg, var(--bg-card), rgba(0, 212, 170, 0.08));
}

.stat-card.gold {
  border-color: rgba(255, 215, 0, 0.25);
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 215, 0, 0.06));
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

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

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

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-inner > h2,
.metrics-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 56px;
  max-width: 560px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 212, 170, 0.15);
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* METRICS */
.metrics {
  padding: 100px 0;
}

.metrics-header {
  margin-bottom: 56px;
}

.comparison {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.comp-col {
  flex: 1;
  padding: 40px 36px;
}

.comp-col.old {
  background: var(--red-dim);
}

.comp-col.new {
  background: var(--accent-dim);
}

.comp-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.comp-col.old .comp-title {
  color: var(--red);
}

.comp-col.new .comp-title {
  color: var(--accent);
}

.comp-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-col li {
  font-size: 15px;
  color: var(--text-secondary);
}

.comp-val {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}

.comp-val.highlight {
  color: var(--accent);
}

.comp-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-primary);
}

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

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pipeline-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

.pipeline-card:hover {
  border-color: rgba(0, 212, 170, 0.2);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.pipeline-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.pipeline-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* OBJECTIONS */
.objections {
  padding: 100px 0;
}

.objection-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.objection {
  padding: 36px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.objection h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.objection p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
}

/* CLOSING */
.closing {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.closing-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}

.closing h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.closing p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

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

.footer-line {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 24px;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison {
    flex-direction: column;
  }

  .comp-vs {
    padding: 16px 0;
  }

  .comp-col {
    padding: 28px 24px;
  }

  .pipeline-grid {
    grid-template-columns: 1fr;
  }

  .nav-tagline {
    display: none;
  }

  .section-inner > h2,
  .metrics-header h2 {
    font-size: 28px;
  }

  .how-it-works,
  .metrics,
  .pipeline,
  .objections {
    padding: 64px 0;
  }

  .closing {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }

  .objection {
    padding: 24px 20px;
  }
}