:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-elevated: #1a1a26;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --accent: #7c5cfc;
  --accent-glow: rgba(124, 92, 252, 0.15);
  --accent-bright: #9b7fff;
  --green: #34d399;
  --red: #f87171;
  --border: rgba(255,255,255,0.06);
  --radius: 14px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ========== HERO ========== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124, 92, 252, 0.12) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  max-width: 800px;
  margin-bottom: 28px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 50%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-bright);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

/* ========== HOW IT WORKS ========== */
.how {
  padding: 120px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.how h2, .features h2, .comparison h2, .closing h2 {
  font-size: clamp(32px, 5vw, 48px);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--fg-muted);
  font-size: 18px;
  margin-bottom: 64px;
}

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

.step {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.step:hover {
  border-color: rgba(124, 92, 252, 0.3);
}

.step-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

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

/* ========== FEATURES ========== */
.features {
  padding: 120px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 92, 252, 0.25);
}

.feature-card.card-lg {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(124, 92, 252, 0.06) 0%, transparent 60%),
    var(--bg-card);
}

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

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ========== COMPARISON ========== */
.comparison {
  padding: 120px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.compare-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.compare-row:last-child { border-bottom: none; }

.compare-header {
  background: var(--bg-elevated);
}

.compare-header .compare-old,
.compare-header .compare-new {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-label,
.compare-old,
.compare-new {
  padding: 16px 20px;
  font-size: 15px;
}

.compare-label {
  font-weight: 500;
  color: var(--fg);
  background: var(--bg-card);
}

.compare-old {
  color: var(--fg-muted);
  background: var(--bg-card);
}

.compare-new {
  color: var(--green);
  background: rgba(52, 211, 153, 0.04);
  font-weight: 500;
}

/* ========== CLOSING ========== */
.closing {
  padding: 140px 24px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.closing-tagline {
  color: var(--accent-bright) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px !important;
}

/* ========== FOOTER ========== */
footer {
  padding: 60px 24px;
  border-top: 1px solid var(--border);
}

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

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

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

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; min-height: 80vh; }
  .lede { font-size: 16px; }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px 32px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

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

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

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-header { display: none; }

  .compare-label {
    font-weight: 600;
    border-bottom: none;
    padding-bottom: 4px;
  }

  .compare-old {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 14px;
  }

  .compare-old::before {
    content: 'Hiring SDRs: ';
    color: var(--fg-muted);
  }

  .compare-new::before {
    content: 'Pipelaunch: ';
    color: var(--green);
  }

  .compare-new {
    padding-top: 4px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .how, .features, .comparison { padding: 80px 20px; }
  .closing { padding: 100px 20px; }
}