:root {
  --bg: #0a0a0f;
  --bg-alt: #12121a;
  --fg: #e8e8ec;
  --fg-muted: #8b8b9e;
  --accent: #c084fc;
  --accent-glow: rgba(192, 132, 252, 0.3);
  --accent-bright: #e0b0ff;
  --neon-green: #4ade80;
  --border: rgba(255, 255, 255, 0.06);
  --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);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* 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;
  background: radial-gradient(ellipse at 50% 0%, rgba(192, 132, 252, 0.08) 0%, transparent 60%);
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid rgba(192, 132, 252, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 24px;
}

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

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

.hero-visual {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 120px;
  margin-top: 56px;
}

.eq-bar {
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(to top, var(--accent), var(--neon-green));
  animation: eq-pulse 1.2s ease-in-out infinite alternate;
  animation-delay: var(--delay);
  height: var(--h);
  opacity: 0.7;
}

@keyframes eq-pulse {
  0% { height: var(--h); opacity: 0.5; }
  100% { height: calc(var(--h) * 0.4 + 20%); opacity: 1; }
}

/* PROBLEM */
.problem {
  padding: 100px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  max-width: 800px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.problem-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
  line-height: 1.75;
}

.problem-text strong {
  color: var(--fg);
}

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

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

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

/* FEATURES */
.features {
  padding: 100px 24px;
}

.features-inner {
  max-width: 960px;
  margin: 0 auto;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 56px;
  text-align: center;
  line-height: 1.2;
}

.features h2 .accent {
  color: var(--accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(192, 132, 252, 0.2);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 132, 252, 0.1);
  border-radius: 12px;
  color: var(--accent);
}

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

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

/* HOW IT WORKS */
.how {
  padding: 100px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-inner {
  max-width: 700px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 56px;
  text-align: center;
}

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

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  min-width: 60px;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* CLOSING */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(192, 132, 252, 0.06) 0%, transparent 60%);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* 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-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
}

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

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

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

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

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-num {
    font-size: 1.6rem;
    min-width: auto;
  }

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

  .hero-visual {
    height: 80px;
    margin-top: 40px;
  }

  .eq-bar {
    width: 4px;
  }
}