:root {
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-accent: #1a1a2e;
  --text-primary: #f0f0f0;
  --text-secondary: #8a8a9a;
  --text-muted: #5a5a6a;
  --accent: #ff6b2b;
  --accent-glow: rgba(255, 107, 43, 0.15);
  --accent-soft: #ff8c55;
  --border: #222233;
  --radius: 12px;
}

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

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  letter-spacing: -1.5px;
}

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

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ---- STATS BAR ---- */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  background: var(--bg-card);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ---- HOW IT WORKS ---- */
.how-section {
  padding: 100px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 56px;
  letter-spacing: -0.5px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}

.step-number {
  width: 56px;
  height: 56px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

/* ---- VERTICALS ---- */
.verticals {
  padding: 80px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.verticals-inner {
  max-width: 900px;
  margin: 0 auto;
}

.vert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.vert-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.2s;
}

.vert-card:hover {
  border-color: var(--accent);
}

.vert-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.vert-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.vert-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.closing p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'DM Mono', monospace;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

  .hero {
    padding: 60px 20px 40px;
    min-height: 70vh;
  }

  .how-section {
    padding: 60px 20px;
  }

  .closing {
    padding: 80px 20px;
  }
}