/* ============================================================
   THE SINGER — Landing Page Styles
   ============================================================ */

:root {
  --bg:         #09091a;
  --bg-2:       #0f0f24;
  --bg-card:    #13132a;
  --bg-card-2:  #1a1a38;
  --border:     rgba(108, 99, 255, 0.2);
  --border-2:   rgba(255, 255, 255, 0.06);
  --primary:    #6C63FF;
  --primary-2:  #8B85FF;
  --primary-glow: rgba(108, 99, 255, 0.35);
  --teal:       #4ECDC4;
  --orange:     #FF9F43;
  --yellow:     #FFD700;
  --red:        #FF6B6B;
  --blue:       #48BBFF;
  --green:      #51CF66;
  --text:       #F0F0FF;
  --text-muted: #8888AA;
  --text-dim:   #5555778;
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --shadow:     0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.6);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3 { line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--store {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid var(--border-2);
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 24px;
  gap: 0;
}
.btn--store svg { align-self: center; }
.btn--store .btn__sub { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; margin-top: -2px; }
.btn--store:hover:not(:disabled) { border-color: var(--primary); }
.btn--disabled { opacity: 0.5; cursor: not-allowed; }
.btn--disabled:hover { transform: none !important; }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub { color: var(--text-muted); max-width: 540px; margin: 0 auto; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(9, 9, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-2);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;
}
.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__cta { padding: 10px 24px; font-size: 0.9rem; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 24px 1.5rem;
  background: rgba(9, 9, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-2);
}
.nav__mobile a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
}
.nav__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero__bg-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(108, 99, 255, 0.1);
  border: 1px solid rgba(108, 99, 255, 0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary-2);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero__title { margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero__subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 480px; margin-bottom: 2.5rem; }
.hero__subtitle strong { color: var(--text); font-weight: 600; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero__fine { font-size: 0.82rem; color: var(--text-muted); }

/* Phone mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup {
  position: relative;
  width: 280px;
  z-index: 2;
}
.phone-mockup__frame {
  background: #1a1a30;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  padding: 16px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.phone-mockup__frame::before {
  content: '';
  display: block;
  width: 80px; height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  margin: 0 auto 14px;
}
.phone-mockup__glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 100px;
  background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
  filter: blur(20px);
}
.phone-screen { border-radius: 28px; overflow: hidden; }
.phone-screen__karaoke {
  background: linear-gradient(180deg, #0d0d22 0%, #12123a 100%);
  padding: 16px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.karaoke-header { display: flex; justify-content: space-between; align-items: center; }
.karaoke-song-info { display: flex; gap: 10px; align-items: center; }
.song-thumb {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  flex-shrink: 0;
}
.song-name { font-size: 0.78rem; font-weight: 600; line-height: 1.2; }
.song-artist { font-size: 0.68rem; color: var(--text-muted); }
.karaoke-score {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.animated-score {
  animation: score-pulse 2s ease-in-out infinite;
}
@keyframes score-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Lyrics */
.lyrics-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.lyric-line { font-size: 0.85rem; border-radius: 6px; padding: 4px 8px; }
.lyric-past { color: var(--text-muted); font-size: 0.78rem; }
.lyric-active {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(108,99,255,0.2);
  border: 1px solid rgba(108,99,255,0.3);
}
.lyric-next { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

/* Pitch indicator */
.pitch-indicator { padding: 8px 0; }
.pitch-bar {
  position: relative;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.pitch-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  margin-top: 0;
  top: calc(50% - 5px);
}
.animated-pitch {
  animation: pitch-move 3s ease-in-out infinite;
}
@keyframes pitch-move {
  0% { left: 30%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
  30% { left: 48%; background: var(--green); box-shadow: 0 0 10px var(--green); }
  60% { left: 52%; background: var(--green); box-shadow: 0 0 10px var(--green); }
  80% { left: 62%; background: var(--blue); box-shadow: 0 0 10px var(--blue); }
  100% { left: 30%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
}
.pitch-zones {
  position: absolute;
  top: 20px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--text-muted);
  padding: 0 4px;
}

/* Karaoke stats */
.karaoke-stats {
  display: flex;
  justify-content: space-around;
  padding: 12px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat { text-align: center; }
.stat-val { display: block; font-size: 1rem; font-weight: 700; }
.stat-label { font-size: 0.62rem; color: var(--text-muted); }
.green { color: var(--green); }
.orange { color: var(--orange); }
.purple { color: var(--primary-2); }

/* Floating badges */
.floating-badges {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  pointer-events: none;
}
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(19, 19, 42, 0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.float-badge strong { display: block; font-size: 0.8rem; font-weight: 600; }
.float-badge small { color: var(--text-muted); font-size: 0.68rem; }
.fb-icon { font-size: 1.4rem; }

.float-badge--1 { top: 8%; right: -40px; animation: float-1 4s ease-in-out infinite; }
.float-badge--2 { bottom: 30%; right: -60px; animation: float-2 4s ease-in-out infinite 1s; }
.float-badge--3 { top: 40%; left: -80px; animation: float-3 4s ease-in-out infinite 2s; }

@keyframes float-1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes float-3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.hero__scroll-hint {
  text-align: center;
  margin-top: 3rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce-arrow 2s infinite;
}
@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, rgba(108,99,255,0.08) 0%, rgba(78,205,196,0.05) 100%);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 2.5rem 0;
}
.stats-strip__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item span { font-size: 0.82rem; color: var(--text-muted); }

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108,99,255,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(108, 99, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(108, 99, 255, 0.15);
}
.feature-card--large {
  grid-column: span 2;
}
.feature-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-top: 0.5rem; }

.feature-card__icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.icon-purple { background: rgba(108,99,255,0.15); }
.icon-blue   { background: rgba(72,187,255,0.12); }
.icon-teal   { background: rgba(78,205,196,0.12); }
.icon-orange { background: rgba(255,159,67,0.12); }
.icon-yellow { background: rgba(255,215,0,0.12); }
.icon-red    { background: rgba(255,107,107,0.12); }

/* Feature demo inline */
.feature-demo { margin-top: 1.5rem; }
.demo-pitch-bar {
  position: relative;
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  margin-bottom: 28px;
}
.demo-pitch-dot {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
  animation: pitch-move 3s ease-in-out infinite;
}
.demo-labels {
  position: absolute;
  top: 18px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
}
.demo-labels .flat   { color: var(--orange); }
.demo-labels .ok     { color: var(--green); }
.demo-labels .sharp  { color: var(--blue); }

/* Leaderboard demo */
.leaderboard-demo { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 8px; }
.lb-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  font-size: 0.85rem;
}
.lb-row--gold   { border-left: 3px solid #FFD700; }
.lb-row--silver { border-left: 3px solid #A8A8A8; }
.lb-row--bronze { border-left: 3px solid #CD7F32; }
.lb-pos { font-size: 1rem; width: 24px; }
.lb-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-card-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--primary-2);
  flex-shrink: 0;
}
.lb-name { flex: 1; font-weight: 500; }
.lb-score { color: var(--yellow); font-weight: 700; font-size: 0.82rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-2);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.step__number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.step__content h3 { font-size: 1.1rem; }
.step__content p { color: var(--text-muted); font-size: 0.88rem; }
.step__icon { font-size: 3rem; margin-bottom: 0.25rem; }
.step__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  flex-shrink: 0;
  margin-top: 3rem;
  opacity: 0.4;
}

/* ============================================================
   VOICE TYPES
   ============================================================ */
.voice-types { padding: 100px 0; }
.vt-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.vt-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
}
.vt-card:hover, .vt-card--highlight {
  border-color: rgba(108,99,255,0.4);
  background: var(--bg-card-2);
}
.vt-range { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.5rem; font-weight: 500; }
.vt-name { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.vt-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.vt-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--fill);
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 2px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 2rem;
}
.toggle-label { font-size: 0.95rem; font-weight: 500; }
.toggle-btn {
  width: 52px; height: 28px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border-2);
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}
.toggle-btn.active { background: var(--primary); }
.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition);
}
.toggle-btn.active .toggle-knob { transform: translateX(24px); }
.toggle-save {
  display: inline-block;
  background: rgba(81, 207, 102, 0.15);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  border: 1px solid rgba(81, 207, 102, 0.3);
}

/* Pricing cards */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}
.pricing-card--pro {
  background: linear-gradient(160deg, #1a1a38 0%, #13132a 100%);
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(108, 99, 255, 0.2);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card__header { margin-bottom: 2rem; }
.plan-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.pro-badge {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
  font-weight: 800;
}
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.price-value { font-size: 2.2rem; font-weight: 800; }
.price-period { color: var(--text-muted); font-size: 0.9rem; }
.price-annual-note {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
}
.plan-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 0.88rem; display: flex; align-items: flex-start; gap: 6px; }
.feat-yes { color: var(--text); }
.feat-no  { color: var(--text-muted); }
.pro-feat { color: var(--primary-2); }
.plan-guarantee {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ============================================================
   ACHIEVEMENTS STRIP
   ============================================================ */
.achievements-strip { padding: 80px 0; overflow: hidden; }
.achievements-scroll { overflow: hidden; margin-top: 1rem; }
.ach-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scroll-track 30s linear infinite;
}
@keyframes scroll-track {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ach-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  font-size: 2rem;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.ach-card:hover { border-color: var(--primary); }
.ach-card span { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }

/* ============================================================
   LEVELS
   ============================================================ */
.levels { padding: 80px 0; background: var(--bg-2); }
.levels-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.level-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 1.5rem 1rem;
}
.level-orb {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--c, #555);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition);
  box-shadow: 0 0 20px color-mix(in srgb, var(--c, #555) 30%, transparent);
}
.level-node--top .level-orb {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  transform: scale(1.2);
}
.level-name { font-size: 0.82rem; font-weight: 600; color: var(--c, var(--text-muted)); }
.level-line {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  opacity: 0.3;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 100px 0; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 1px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-question:hover { color: var(--primary-2); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.cta-final__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-final h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-final p  { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }

.notify-form {
  display: flex;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto 1rem;
}
.notify-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.notify-input:focus { border-color: var(--primary); }
.notify-input::placeholder { color: var(--text-muted); }
.notify-fine {
  font-size: 0.82rem;
  color: var(--green);
  min-height: 24px;
  margin-bottom: 2rem;
}
.store-btns-final {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-2);
  padding-top: 3rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.75rem; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col strong { font-size: 0.85rem; color: var(--text); font-weight: 700; margin-bottom: 4px; }
.footer__col a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color var(--transition); }
.footer__col a:hover { color: var(--primary-2); }
.footer__bottom {
  border-top: 1px solid var(--border-2);
  padding: 1.25rem 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { order: -1; }
  .float-badge--1 { right: -10px; }
  .float-badge--2 { right: -20px; }
  .float-badge--3 { left: -20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large { grid-column: span 2; }
  .vt-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero__visual { display: none; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .steps { flex-direction: column; }
  .step__connector { width: 2px; height: 40px; margin: 0 auto; }
  .pricing-cards { grid-template-columns: 1fr; }
  .vt-grid { grid-template-columns: repeat(2, 1fr); }
  .levels-track { gap: 0; }
  .level-line { width: 30px; }
  .stats-strip__inner { gap: 1.5rem; }
  .notify-form { flex-direction: column; }
  .store-btns-final { flex-direction: column; align-items: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .vt-grid { grid-template-columns: repeat(3, 1fr); }
  .level-line { width: 20px; }
  .footer__links { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   LANG SELECTOR
   ============================================================ */
.lang-selector {
  position: relative;
  flex-shrink: 0;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn:hover { border-color: var(--primary); }
.lang-arrow { font-size: 0.65rem; color: var(--text-muted); margin-left: 1px; }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px;
  min-width: 148px;
  z-index: 200;
  box-shadow: var(--shadow);
}
.lang-dropdown.open { display: flex; flex-direction: column; gap: 2px; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: none;
  border: none;
  border-radius: 8px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
  text-align: left;
}
.lang-option:hover { background: rgba(108,99,255,0.12); }

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.social-proof {
  background: linear-gradient(135deg, rgba(108,99,255,0.08) 0%, rgba(78,205,196,0.05) 100%);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 2rem 0;
}
.social-proof__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.sp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}
.sp-item--dev { color: var(--text); }
.sp-stars {
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 2px;
}
.sp-platform {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.sp-sep {
  width: 1px;
  height: 32px;
  background: var(--border-2);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { padding: 100px 0; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108,99,255,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-card:hover {
  border-color: rgba(108, 99, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(108, 99, 255, 0.15);
}
.benefit-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-top: 0.5rem; }

.benefit-card__icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

/* Benefit demo (pitch bar inside first card) */
.benefit-demo { margin-top: 1.5rem; }
.demo-pitch-bar {
  position: relative;
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  margin-bottom: 28px;
}
.demo-pitch-dot {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
  animation: pitch-move 3s ease-in-out infinite;
}
.demo-labels {
  position: absolute;
  top: 18px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
}
.demo-labels .flat  { color: var(--orange); }
.demo-labels .ok    { color: var(--green); }
.demo-labels .sharp { color: var(--blue); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(108, 99, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.1);
}
.testimonial-stars {
  font-size: 1rem;
  color: var(--yellow);
  letter-spacing: 2px;
}
.testimonial-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-text::before { content: '"'; }
.testimonial-text::after  { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1rem;
  border-top: 1px solid var(--border-2);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-info { display: flex; flex-direction: column; gap: 2px; }
.testimonial-info strong { font-size: 0.9rem; font-weight: 600; }
.testimonial-info small { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   PRICING — context line
   ============================================================ */
.pricing-context {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* ============================================================
   CTA FINAL — notify sub-note
   ============================================================ */
.notify-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .social-proof__inner { gap: 1rem; }
  .sp-sep { display: none; }
  .lang-selector { order: 1; }
}
