:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-accent: #1a1a2e;
  --fg: #e8e8f0;
  --fg-muted: #8888a0;
  --accent: #ff3366;
  --accent-2: #ff6b35;
  --gradient: linear-gradient(135deg, #ff3366, #ff6b35, #ffaa00);
  --gradient-text: linear-gradient(135deg, #ff3366, #ff6b35);
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
  --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;
  -webkit-font-smoothing: antialiased;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,51,102,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  padding: 8px 20px;
  border: 1px solid rgba(255,51,102,0.3);
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  max-width: 560px;
  font-size: 1.15rem;
  color: var(--fg-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.format-pill {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
  transition: border-color 0.2s;
}

.format-pill:hover {
  border-color: rgba(255,51,102,0.4);
  color: var(--fg);
}

/* ---- STATS ---- */
.stats {
  padding: 60px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ---- HOW (PIPELINE) ---- */
.how {
  padding: 100px 24px;
  text-align: center;
}

.how h2, .niches h2, .closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 60px;
}

.pipeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.pipeline-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: left;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pipeline-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 1.5rem;
  color: var(--fg-muted);
  margin-top: 40px;
}

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

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

.pipeline-step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- NICHES ---- */
.niches {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-accent) 50%, var(--bg) 100%);
}

.niche-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.niche-card {
  text-align: left;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.2s;
}

.niche-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,51,102,0.3);
}

.niche-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: rgba(255,51,102,0.08);
  border-radius: 10px;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.niche-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

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

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.closing-text {
  color: var(--fg-muted);
  font-size: 1.15rem;
  margin-top: 24px;
  line-height: 1.7;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

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

.footer-divider {
  color: var(--fg-muted);
  opacity: 0.3;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-card:nth-child(2)::after {
    display: none;
  }
  .stat-card:nth-child(1)::after,
  .stat-card:nth-child(3)::after {
    height: 1px;
    width: 60%;
    top: auto;
    bottom: 0;
    right: auto;
    left: 20%;
  }
  .pipeline {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .pipeline-arrow {
    transform: rotate(90deg);
    margin-top: 0;
    padding: 4px 0;
  }
  .pipeline-step {
    max-width: 100%;
    width: 100%;
  }
  .niche-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 20px 40px;
    min-height: 80vh;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card::after {
    display: none !important;
  }
}