:root {
  --bg: #120a24;
  --bg-2: #1b1035;
  --purple: #43176b;
  --card: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #c9bde6;
  --accent: #ffb347;
  --accent-2: #ff7a59;
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(138, 43, 143, 0.35), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(67, 23, 107, 0.55), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow {
  max-width: 760px;
}

.center {
  text-align: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  color: #1b1035;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px rgba(255, 122, 89, 0.25);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 122, 89, 0.4);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 10, 36, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  vertical-align: middle;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
}

/* ---------- Hero ---------- */

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(255, 179, 71, 0.12);
  border: 1px solid rgba(255, 179, 71, 0.35);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.6rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.accent {
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 26px;
}

.micro {
  color: var(--muted);
  font-size: 0.85rem;
}

.micro.center {
  text-align: center;
  margin-top: 12px;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-points svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- Player card ---------- */

.player-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.player-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.player-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.player-tag {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.player-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #1b1035;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
  box-shadow: 0 10px 24px rgba(255, 122, 89, 0.35);
}

.play-btn:hover {
  transform: scale(1.06);
}

.play-btn svg {
  width: 24px;
  height: 24px;
}

.play-btn .icon-pause {
  display: none;
}

.play-btn.playing .icon-play {
  display: none;
}

.play-btn.playing .icon-pause {
  display: block;
}

.wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 54px;
}

.wave i {
  flex: 1;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
  transition: background 0.15s ease;
}

.wave.active i {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.player-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(201, 189, 230, 0.6);
}

.player-note code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.78rem;
}

/* ---------- Sections ---------- */

.section {
  padding: 76px 0;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 44px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 179, 71, 0.4);
}

/* ---------- Steps ---------- */

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

.step {
  padding: 30px;
  position: relative;
}

.step-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
}

.step-icon {
  width: 34px;
  height: 34px;
  color: var(--accent);
  margin-bottom: 18px;
}

.step h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 10px;
}

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

/* ---------- Occasions ---------- */

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.occasion {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 0.95rem;
}

.occasion svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.genres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.genre {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
}

/* ---------- Samples ---------- */

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

.sample {
  padding: 24px;
}

.sample-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.sample h3 {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.sample-tag {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

.sample .play-btn {
  width: 48px;
  height: 48px;
}

.sample .play-btn svg {
  width: 20px;
  height: 20px;
}

/* ---------- Pricing ---------- */

.pricing-card {
  max-width: 460px;
  margin: 0 auto;
  background: linear-gradient(170deg, rgba(255, 179, 71, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 179, 71, 0.35);
  border-radius: 26px;
  padding: 40px 34px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.price-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  color: #1b1035;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.price {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 26px;
}

.price-note {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 10px;
}

.includes {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.98rem;
  font-weight: 600;
}

.includes svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */

details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding-right: 52px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

details p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------- Final CTA + Footer ---------- */

.final {
  padding-bottom: 110px;
}

.final h2 {
  margin-bottom: 14px;
}

.final .btn {
  margin-top: 10px;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 0 34px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--text);
}

.copyright {
  color: rgba(201, 189, 230, 0.55);
  font-size: 0.82rem;
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(90px);
  opacity: 0;
  background: #2a1147;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 100;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---------- Mobile sticky buy bar ---------- */

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(18, 10, 36, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.mobile-bar.show {
  transform: translateY(0);
}

.mobile-bar-price {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.mobile-bar-price strong {
  color: #ffffff;
  font-size: 1.08rem;
  margin-left: 6px;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps,
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 56px 0 40px;
  }

  .section {
    padding: 56px 0;
  }

  .mobile-bar {
    display: flex;
  }

  footer {
    padding-bottom: 120px;
  }

  .toast {
    bottom: 96px;
  }
}
