:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e6e3;
  --fg-muted: #8a8a9a;
  --accent: #3b82f6;
  --accent-warm: #f59e0b;
  --accent-green: #10b981;
  --border: rgba(255,255,255,0.06);
  --glow: rgba(59,130,246,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Hero ── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

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

.hero .lede {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.4rem;
  display: block;
}

/* ── Process section ── */
.process {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 700px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  transition: border-color 0.3s;
}

.process-card:hover {
  border-color: rgba(59,130,246,0.2);
}

.process-card .step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  display: block;
}

.process-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.process-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Niches ── */
.niches {
  padding: 6rem 2rem;
  background: var(--bg-elevated);
}

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

.niche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.niche-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.niche-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.niche-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

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

.niche-card .metric {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
  background: rgba(16,185,129,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* ── Numbers ── */
.numbers {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.numbers-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.number-block {
  text-align: center;
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.number-block .big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent-warm);
  display: block;
  line-height: 1;
}

.number-block .desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
  display: block;
}

/* ── Closing ── */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

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

.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.closing p {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── Footer ── */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

footer .brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

/* ── Hero CTAs ── */
.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.9rem 2.25rem;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 0 30px rgba(59,130,246,0.3);
}

.hero-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-btn-secondary:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.15);
}

/* ── Closing CTAs ── */
.closing-ctas {
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; min-height: 80vh; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .process-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
  .numbers-row { grid-template-columns: repeat(2, 1fr); }
  .process, .niches, .numbers { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
  .numbers-row { grid-template-columns: 1fr; }
  .hero-stat .number { font-size: 2rem; }
}