:root {
  --bg-deep: #0a0712;
  --bg-card: #140f1f;
  --bg-glow: #1a1028;
  --fg: #e8e0f0;
  --fg-muted: #9b8fb5;
  --accent: #c9a0ff;
  --accent-warm: #ff9ecf;
  --gold: #e8c97a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Ambient glow background */
.ambient {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 10%, rgba(201,160,255,0.08), transparent),
    radial-gradient(ellipse 500px 500px at 80% 60%, rgba(255,158,207,0.06), transparent),
    radial-gradient(ellipse 400px 300px at 50% 90%, rgba(232,201,122,0.04), transparent);
}

.content-wrap {
  position: relative;
  z-index: 1;
}

/* ── 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;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(201,160,255,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  background: rgba(201,160,255,0.05);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  max-width: 800px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--fg) 0%, var(--accent) 50%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lede {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201,160,255,0.08);
  border-bottom: 1px solid rgba(201,160,255,0.08);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.how-it-works h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 3.5rem;
  max-width: 600px;
}

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

.flow-step {
  background: var(--bg-card);
  border: 1px solid rgba(201,160,255,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s;
}

.flow-step:hover {
  border-color: rgba(201,160,255,0.2);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(201,160,255,0.15);
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
}

.flow-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--fg);
}

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

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

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,160,255,0.06);
  border-radius: 16px;
  padding: 2.2rem;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201,160,255,0.15);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

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

/* ── REVENUE MODEL ── */
.revenue {
  padding: 6rem 2rem;
  text-align: center;
}

.revenue-inner {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-glow));
  border: 1px solid rgba(232,201,122,0.12);
  border-radius: 24px;
  padding: 4rem 3rem;
}

.revenue h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

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

.revenue .highlight {
  color: var(--gold);
  font-weight: 600;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ── FOOTER ── */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201,160,255,0.06);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    flex-direction: column;
    gap: 2rem;
  }
  .hero {
    min-height: 80vh;
    padding: 4rem 1.5rem 3rem;
  }
  .revenue-inner {
    padding: 3rem 1.5rem;
  }
}
