/* ═══════════════════════════════════════════════════════════
   Sonara Labs — Custom Styles
   Color scheme: Gold (#F5A623) → Cyan (#00D4FF) on Dark (#0a0a14)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --gold: #FFAA00;
  --gold-light: #FFCC33;
  --gold-dark: #E69500;
  --cyan: #00D4FF;
  --cyan-light: #22D3EE;
  --cyan-dark: #0891B2;
  --bg-primary: #0a0a14;
  --bg-secondary: #111827;
  --bg-card: #1a1a2e;
  --bg-card-hover: #1f2040;
  --text-primary: #F9FAFB;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --glow-gold: rgba(255, 170, 0, 0.5);
  --glow-cyan: rgba(0, 212, 255, 0.4);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

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

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

/* ── Gradient Border Card ───────────────────────────────── */
.gradient-border {
  position: relative;
  border-radius: 16px;
  background: var(--bg-card);
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  opacity: 0.3;
  z-index: -1;
  transition: opacity 0.3s;
}
.gradient-border:hover::before {
  opacity: 0.6;
}
.gradient-border:hover {
  background: var(--bg-card);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px var(--glow-gold);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow-gold);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--cyan);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--cyan);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 4px 24px var(--glow-cyan);
  transform: translateY(-2px);
}

/* ── Header ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  width: 108px;
  height: 108px;
  border-radius: 0;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-links .btn-primary,
.nav-links li .btn-primary,
a.btn-primary {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255, 170, 0, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Particles Canvas ───────────────────────────────────── */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ── Section Base ───────────────────────────────────────── */
.section {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  background: rgba(255, 170, 0, 0.1);
  color: var(--gold);
  border: 1px solid rgba(255, 170, 0, 0.2);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}
.section-center {
  text-align: center;
}
.section-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ── Divider ────────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
  max-width: 1280px;
  margin: 0 auto;
}

/* ── How It Works ───────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
}
.step-card:hover h3 {
  color: var(--text-primary);
}
.step-card:hover p {
  color: var(--text-primary);
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  color: #000;
}
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ── Features ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px;
  transition: transform 0.3s;
  background: rgba(10, 10, 25, 0.95);
}
.feature-card:hover {
  transform: translateY(-4px);
}
.feature-card:hover h3 {
  color: var(--text-primary);
}
.feature-card:hover p {
  color: var(--text-primary);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(255, 170, 0, 0.1);
  border: 1px solid rgba(255, 170, 0, 0.2);
}
.feature-card:nth-child(even) .feature-icon {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.2);
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
}

/* ── Audio Player / Samples ─────────────────────────────── */
.samples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sample-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  background: rgba(8, 8, 20, 0.9);
}
.sample-card:hover, .sample-card.active {
  background: rgba(12, 12, 30, 0.95);
}
.sample-card:hover .sample-title,
.sample-card:hover .sample-genre {
  color: var(--text-primary);
}
.sample-card.active {
  border-color: var(--gold);
}
.sample-card.active::before {
  opacity: 0.6;
}

.sample-play-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
  font-size: 1.1rem;
}
.sample-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px var(--glow-gold);
}
.sample-card.active .sample-play-btn {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
}

.sample-info {
  flex: 1;
  min-width: 0;
}
.sample-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sample-genre {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.sample-progress {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  margin-top: 10px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
.sample-card.active .sample-progress {
  opacity: 1;
}
.sample-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.sample-duration {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* ── Pricing ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  background: rgba(15, 15, 30, 0.95);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.price-card.featured {
  transform: scale(1.03);
  box-shadow: 0 0 30px var(--glow-gold);
}
.price-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.price-card .price-features {
  flex: 1;
}
.price-card .btn-primary,
.price-card .btn-secondary {
  margin-top: auto;
}
.price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.price-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-secondary);
}
.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.price-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: start;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  position: relative;
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.15), rgba(0, 212, 255, 0.15));
  border: 1px solid var(--border);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 170, 0, 0.1), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.1), transparent 50%);
}
.cta-banner > * {
  position: relative;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
  background: var(--bg-secondary);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 300px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--text-primary);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: var(--text-primary);
}

/* ── Coming Soon Badge ──────────────────────────────────── */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

/* ── Animations ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--glow-gold); }
  50% { box-shadow: 0 0 40px var(--glow-gold), 0 0 60px var(--glow-cyan); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* ── Responsive ─────────────────────────────────────────── */
/* ── Lunar Eclipse ──────────────────────────────────────── */
.hero-eclipse {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 40px;
}
.hero-eclipse .eclipse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 42%, rgba(255,170,0,0.08) 45%, rgba(255,170,0,0.25) 48%, rgba(255,204,51,0.5) 50%, rgba(0,212,255,0.3) 55%, transparent 65%);
  filter: blur(2px);
  animation: eclipse-pulse 4s ease-in-out infinite;
}
.hero-eclipse .eclipse-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 35%, rgba(255,170,0,0.06) 50%, rgba(0,212,255,0.04) 70%, transparent 80%);
  animation: eclipse-pulse 4s ease-in-out infinite reverse;
}
.hero-eclipse .logo-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: 2;
}
@keyframes eclipse-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ── Equalizer ─────────────────────────────────────────── */
.hero-equalizer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}
.eq-bar {
  width: 4px;
  background: linear-gradient(to top, var(--gold), var(--cyan));
  border-radius: 2px 2px 0 0;
  animation: eq-bounce var(--eq-speed, 2s) ease-in-out infinite;
  animation-delay: var(--eq-delay, 0s);
  opacity: 0.7;
}
@keyframes eq-bounce {
  0%, 100% { height: var(--eq-min, 4px); }
  50% { height: var(--eq-max, 30px); }
}

/* ── Price Card Equalizer ──────────────────────────────── */
.price-eq {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.price-card:hover .price-eq {
  opacity: 0.3;
}
.price-eq .eq-bar {
  width: 2px;
  animation-play-state: paused;
}
.price-card:hover .price-eq .eq-bar {
  animation-play-state: running;
}

/* ── Sample Card Equalizer Background ────────────────────────── */
.sample-eq {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s;
}
.sample-card:hover .sample-eq {
  opacity: 0.25;
}
.sample-card.active .sample-eq {
  opacity: 0.35;
}
.sample-eq .eq-bar {
  width: 2px;
  animation-play-state: paused;
}
.sample-card:hover .sample-eq .eq-bar,
.sample-card.active .sample-eq .eq-bar {
  animation-play-state: running;
}
.sample-play-btn,
.sample-info,
.sample-duration {
  position: relative;
  z-index: 1;
}

/* ── Waveform ──────────────────────────────────────────── */
.sample-waveform {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1px;
  height: 24px;
  margin-top: 8px;
}
.sample-card.active .sample-waveform {
  display: flex;
}
.sample-card.active .sample-progress {
  display: none;
}
.wf-bar {
  width: 2px;
  background: linear-gradient(to top, var(--gold), var(--cyan));
  border-radius: 1px;
  height: 4px;
  transition: height 0.1s ease;
}

/* ── Telegram Icon ─────────────────────────────────────── */
.tg-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .samples-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .hero-stats { gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 16px; }
  .cta-banner { padding: 40px 24px; }
  .hero { padding: 100px 16px 60px; min-height: auto; }
  .hero h1 { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 28px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
  .hero-equalizer { height: 50px; }
  .logo-img { width: 44px; height: 44px; }
  .logo-text { font-size: 1.15rem; }
  .price-amount { font-size: 2.2rem; }
  .section-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .price-card { padding: 28px 20px; }
  .cta-banner { padding: 32px 16px; }
  .cta-banner h2 { font-size: 1.3rem; }
}

/* ── Legal Pages ────────────────────────────────────────── */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-page p, .legal-page li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-page ul, .legal-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-page a {
  color: var(--cyan);
  text-decoration: none;
}
.legal-page a:hover {
  text-decoration: underline;
}

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
