@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --accent: #00e5ff;
  --accent-glow: rgba(0, 229, 255, 0.15);
  --warm: #ff6b35;
  --warm-glow: rgba(255, 107, 53, 0.15);
  --radius: 16px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--warm-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

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

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

.hero-desc {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ============ STATS BAR ============ */
.stats {
  background: var(--bg-elevated);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 48px 5vw;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ HOW IT WORKS ============ */
.how {
  padding: 100px 5vw;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--warm);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 56px;
  max-width: 600px;
}

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

.step {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s;
}

.step:hover {
  border-color: rgba(0, 229, 255, 0.2);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 229, 255, 0.12);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.step p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ============ NICHES ============ */
.niches {
  padding: 80px 5vw 100px;
  background: var(--bg-elevated);
}

.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.niche-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.niche-pill {
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  transition: all 0.3s;
}

.niche-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.niche-pill.hot {
  border-color: var(--warm);
  color: var(--warm);
}

/* ============ CLOSING ============ */
.closing {
  padding: 120px 5vw;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ============ FOOTER ============ */
footer {
  padding: 40px 5vw;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

footer p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

footer .brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
}

/* ============ HERO CTA BUTTONS ============ */
.hero-btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.hero-btn-primary:hover {
  background: #33ecff;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.hero-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero { padding: 100px 6vw 60px; min-height: 70vh; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .niche-grid { gap: 8px; }
  .niche-pill { padding: 10px 18px; font-size: 0.8rem; }
}