@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --bg: #0c0a14;
  --bg-soft: #151222;
  --fg: #f0ece4;
  --fg-muted: #9e97b0;
  --accent: #c9a0ff;
  --accent-warm: #ffb088;
  --accent-glow: rgba(201, 160, 255, 0.15);
  --warm-glow: rgba(255, 176, 136, 0.1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --max-w: 1100px;
}

* { 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-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  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: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(201, 160, 255, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.15;
  max-width: 750px;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero .lede {
  position: relative;
  z-index: 1;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* Sound wave animation */
.soundwave {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  margin-bottom: 2rem;
}

.soundwave span {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to top, var(--accent-warm), var(--accent));
  animation: wave 1.4s ease-in-out infinite;
}

.soundwave span:nth-child(1) { height: 12px; animation-delay: 0s; }
.soundwave span:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.soundwave span:nth-child(3) { height: 36px; animation-delay: 0.2s; }
.soundwave span:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.soundwave span:nth-child(5) { height: 32px; animation-delay: 0.15s; }
.soundwave span:nth-child(6) { height: 16px; animation-delay: 0.25s; }
.soundwave span:nth-child(7) { height: 28px; animation-delay: 0.05s; }
.soundwave span:nth-child(8) { height: 10px; animation-delay: 0.35s; }
.soundwave span:nth-child(9) { height: 22px; animation-delay: 0.2s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---- HOW IT WORKS ---- */
.how-section {
  padding: 6rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.how-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 3.5rem;
  max-width: 600px;
}

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

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

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

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

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

/* ---- VOICES SECTION ---- */
.voices-section {
  padding: 6rem 2rem;
  position: relative;
}

.voices-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 160, 255, 0.15), transparent);
}

.voices-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.voices-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.voices-section .subtitle {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 550px;
  margin-bottom: 3rem;
}

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

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

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

.voice-card .icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.voice-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.voice-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- WHY SECTION ---- */
.why-section {
  padding: 6rem 2rem;
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 176, 136, 0.15), transparent);
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.why-text h2 em {
  font-style: italic;
  color: var(--accent-warm);
}

.why-text p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.why-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-block {
  padding: 1.5rem 2rem;
  border-radius: 12px;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
}

.stat-block .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-block .label {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 2rem;
  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(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: var(--fg);
}

.closing .closing-sub {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 450px;
  margin: 0 auto;
}

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

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .voice-grid {
    grid-template-columns: 1fr;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 90vh;
  }
  .how-section,
  .voices-section,
  .why-section {
    padding: 4rem 1.5rem;
  }
  .closing {
    padding: 5rem 1.5rem;
  }
}