:root {
  --black: #070604;
  --ink: #11100d;
  --panel: #17130d;
  --panel-soft: rgba(255, 248, 226, 0.07);
  --gold: #d6a642;
  --gold-bright: #ffd66b;
  --gold-deep: #8a5c17;
  --ivory: #fff8e7;
  --muted: #d7c9aa;
  --line: rgba(255, 214, 107, 0.22);
  --wine: #4a1022;
  --teal: #1e6d65;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --max-width: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 15% 12%, rgba(214, 166, 66, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 22%, rgba(74, 16, 34, 0.26), transparent 26rem),
    linear-gradient(135deg, #050403 0%, #100d09 48%, #050403 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold-bright);
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 214, 107, 0.12);
  background: rgba(7, 6, 4, 0.76);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.36);
}

.nav-shell {
  width: min(calc(100% - 32px), var(--max-width));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  font-size: 1rem;
  color: var(--gold-bright);
}

.brand-link img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 214, 107, 0.26);
  box-shadow: 0 0 24px rgba(214, 166, 66, 0.26);
}

.brand-link span {
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--ivory);
  background: rgba(255, 214, 107, 0.09);
  transform: translateY(-1px);
  outline: none;
}

.nav-menu .nav-action {
  margin-left: 6px;
  color: #140f06;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 28px rgba(214, 166, 66, 0.26);
}

.nav-menu .nav-action:hover,
.nav-menu .nav-action:focus-visible {
  color: #100b03;
  background: linear-gradient(135deg, #fff0a8, var(--gold));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 214, 107, 0.24);
  border-radius: 6px;
  background: rgba(255, 248, 226, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(92svh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 214, 107, 0.12);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 214, 107, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 214, 107, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -38% -10%;
  height: 48%;
  z-index: -2;
  background:
    radial-gradient(ellipse at center, rgba(214, 166, 66, 0.2), transparent 68%),
    linear-gradient(90deg, transparent, rgba(255, 214, 107, 0.14), transparent);
  transform: perspective(500px) rotateX(60deg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.stage-light {
  position: absolute;
  top: -20%;
  width: 32%;
  height: 82%;
  opacity: 0.28;
  background: linear-gradient(to bottom, rgba(255, 214, 107, 0.58), rgba(255, 214, 107, 0));
  filter: blur(20px);
  transform-origin: top center;
  animation: sweep 8s ease-in-out infinite alternate;
}

.stage-light-one {
  left: 4%;
  transform: rotate(18deg);
}

.stage-light-two {
  left: 36%;
  background: linear-gradient(to bottom, rgba(255, 248, 226, 0.34), rgba(255, 248, 226, 0));
  animation-delay: -2s;
}

.stage-light-three {
  right: 2%;
  transform: rotate(-20deg);
  background: linear-gradient(to bottom, rgba(30, 109, 101, 0.36), rgba(30, 109, 101, 0));
  animation-delay: -4s;
}

@keyframes sweep {
  from {
    transform: rotate(13deg) translateX(-3%);
  }
  to {
    transform: rotate(-13deg) translateX(3%);
  }
}

.sound-lines {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 78rem;
  max-width: 120vw;
  height: 22rem;
  transform: translate(-50%, -50%);
  opacity: 0.28;
}

.sound-lines span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 214, 107, 0.22);
  border-radius: 50%;
  animation: pulseWave 6s ease-in-out infinite;
}

.sound-lines span:nth-child(2) {
  inset: 2.4rem;
  animation-delay: -1s;
}

.sound-lines span:nth-child(3) {
  inset: 4.8rem;
  animation-delay: -2s;
}

.sound-lines span:nth-child(4) {
  inset: 7.2rem;
  animation-delay: -3s;
}

@keyframes pulseWave {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.16;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.5;
  }
}

.hero-inner {
  width: min(calc(100% - 32px), var(--max-width));
  min-height: calc(92svh - var(--header-height));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 52px;
  padding: 56px 0 68px;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 4rem;
  line-height: 0.98;
  max-width: 12ch;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.7rem;
  line-height: 1.05;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.22;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #140f06;
  background: linear-gradient(135deg, #fff1a6 0%, var(--gold-bright) 28%, var(--gold) 70%, #a96c19 100%);
  box-shadow: 0 18px 42px rgba(214, 166, 66, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 52px rgba(214, 166, 66, 0.42);
}

.button-secondary {
  color: var(--ivory);
  border-color: rgba(255, 214, 107, 0.36);
  background: rgba(255, 248, 226, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 214, 107, 0.7);
  background: rgba(255, 214, 107, 0.12);
}

.hero-stage {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.brand-orbit {
  position: relative;
  width: min(100%, 450px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.brand-orbit::before,
.brand-orbit::after {
  content: "";
  position: absolute;
  inset: -5%;
  border: 1px solid rgba(255, 214, 107, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(214, 166, 66, 0.12), 0 0 70px rgba(214, 166, 66, 0.18);
  animation: orbit 12s linear infinite;
}

.brand-orbit::after {
  inset: 8%;
  border-color: rgba(255, 248, 226, 0.12);
  animation-duration: 16s;
  animation-direction: reverse;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

.brand-orbit img {
  position: relative;
  z-index: 1;
  width: 78%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 214, 107, 0.28);
  box-shadow: var(--shadow), 0 0 78px rgba(214, 166, 66, 0.34);
}

.studio-console {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 3%;
  height: 124px;
  padding: 22px;
  border: 1px solid rgba(255, 214, 107, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 226, 0.08), rgba(255, 248, 226, 0.03)),
    linear-gradient(180deg, rgba(18, 14, 8, 0.86), rgba(7, 6, 4, 0.96));
  box-shadow: var(--shadow);
  transform: perspective(700px) rotateX(58deg);
  transform-origin: bottom center;
}

.console-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.console-row span {
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 214, 107, 0.2), rgba(255, 214, 107, 0.9), rgba(255, 214, 107, 0.18));
}

.equalizer {
  height: 54px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.equalizer i {
  width: 11px;
  height: 24px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 18px rgba(255, 214, 107, 0.42);
  animation: eq 1.15s ease-in-out infinite alternate;
}

.equalizer i:nth-child(2) {
  animation-delay: -0.25s;
}

.equalizer i:nth-child(3) {
  animation-delay: -0.55s;
}

.equalizer i:nth-child(4) {
  animation-delay: -0.1s;
}

.equalizer i:nth-child(5) {
  animation-delay: -0.45s;
}

.equalizer i:nth-child(6) {
  animation-delay: -0.75s;
}

.equalizer i:nth-child(7) {
  animation-delay: -0.35s;
}

@keyframes eq {
  from {
    height: 18px;
  }
  to {
    height: 52px;
  }
}

.studio-mic {
  position: absolute;
  top: 7%;
  right: 8%;
  width: 46px;
  height: 120px;
  transform: rotate(-14deg);
  filter: drop-shadow(0 0 22px rgba(255, 214, 107, 0.34));
}

.studio-mic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 30px;
  height: 54px;
  border: 2px solid rgba(255, 214, 107, 0.76);
  border-radius: 16px;
  background:
    repeating-linear-gradient(to bottom, rgba(255, 214, 107, 0.35), rgba(255, 214, 107, 0.35) 3px, transparent 3px, transparent 7px),
    rgba(255, 248, 226, 0.06);
}

.studio-mic::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 56px;
  width: 4px;
  height: 54px;
  border-radius: 4px;
  background: var(--gold-bright);
}

.studio-mic span {
  position: absolute;
  left: 6px;
  bottom: 2px;
  width: 34px;
  height: 5px;
  border-radius: 5px;
  background: var(--gold-bright);
}

.section-band,
.section-panel,
.final-cta {
  position: relative;
  overflow: hidden;
}

.section-band {
  background:
    radial-gradient(circle at 8% 16%, rgba(214, 166, 66, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(255, 248, 226, 0.02), rgba(255, 248, 226, 0.04));
}

.section-panel {
  background:
    radial-gradient(circle at 92% 10%, rgba(74, 16, 34, 0.22), transparent 22rem),
    linear-gradient(180deg, rgba(7, 6, 4, 0.86), rgba(16, 13, 9, 0.94));
}

.section-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 92px 0;
}

.section-copy {
  min-width: 0;
  max-width: 720px;
}

.section-copy p,
.section-heading p,
.final-cta p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  min-width: 0;
  max-width: 760px;
  margin-bottom: 36px;
}

.intro-grid,
.why-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 54px;
}

.signal-board {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(255, 214, 107, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 214, 107, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 214, 107, 0.07) 1px, transparent 1px),
    rgba(255, 248, 226, 0.05);
  background-size: 32px 32px;
  box-shadow: var(--shadow);
}

.signal-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 214, 107, 0.18), transparent 38%);
}

.signal-track {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--teal), var(--gold-bright), transparent);
  box-shadow: 0 0 26px rgba(255, 214, 107, 0.48);
  animation: scan 4s ease-in-out infinite;
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(-36px);
  }
  50% {
    transform: translateY(36px);
  }
}

.signal-bars {
  position: absolute;
  inset: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.signal-bars span {
  width: 10px;
  height: 60px;
  border-radius: 10px;
  background: rgba(255, 214, 107, 0.72);
  animation: eq 1.4s ease-in-out infinite alternate;
}

.signal-bars span:nth-child(2n) {
  background: rgba(255, 248, 226, 0.72);
  animation-delay: -0.5s;
}

.signal-bars span:nth-child(3n) {
  background: rgba(30, 109, 101, 0.78);
  animation-delay: -0.9s;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card,
.step-card,
.testimonial-card {
  border: 1px solid rgba(255, 214, 107, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 248, 226, 0.08), rgba(255, 248, 226, 0.035)),
    rgba(9, 7, 4, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.price-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 107, 0.84), transparent);
}

.price-card:hover {
  border-color: rgba(255, 214, 107, 0.44);
  transform: translateY(-4px);
}

.price-card,
.testimonial-card,
.step-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.price-card-featured {
  border-color: rgba(255, 214, 107, 0.44);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 214, 107, 0.2), transparent 18rem),
    linear-gradient(145deg, rgba(255, 248, 226, 0.1), rgba(255, 248, 226, 0.045)),
    rgba(9, 7, 4, 0.9);
  box-shadow: 0 24px 78px rgba(214, 166, 66, 0.16), var(--shadow);
}

.popular-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: #140f06;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.price-card-head {
  min-height: 124px;
}

.price-card h3 {
  margin-bottom: 16px;
}

.price {
  margin-bottom: 0;
  color: var(--gold-bright);
  font-size: 2.6rem;
  font-weight: 950;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.card-label {
  margin: 10px 0 10px;
  color: var(--ivory);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  transform: rotate(-45deg);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag-list li,
.platform-strip span {
  padding: 7px 9px;
  color: var(--muted);
  border: 1px solid rgba(255, 214, 107, 0.18);
  border-radius: 6px;
  background: rgba(255, 248, 226, 0.045);
  font-size: 0.86rem;
  font-weight: 800;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 24px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: auto 0 24px;
  border: 1px solid rgba(255, 214, 107, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 166, 66, 0.15), rgba(74, 16, 34, 0.28)),
    radial-gradient(circle at center, rgba(255, 214, 107, 0.18), transparent 48%);
}

.video-frame span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--gold-bright);
  transform: translate(-38%, -50%);
  filter: drop-shadow(0 0 18px rgba(255, 214, 107, 0.54));
}

.button-card {
  margin-top: auto;
  color: var(--ivory);
  border-color: rgba(255, 214, 107, 0.3);
  background: rgba(255, 248, 226, 0.06);
}

.button-card:hover,
.button-card:focus-visible {
  border-color: rgba(255, 214, 107, 0.68);
  background: rgba(255, 214, 107, 0.12);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.type-grid span,
.benefit-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 214, 107, 0.16);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 248, 226, 0.045);
  font-weight: 800;
}

.type-grid span:hover,
.benefit-grid span:hover {
  color: var(--ivory);
  border-color: rgba(255, 214, 107, 0.42);
  background: rgba(255, 214, 107, 0.08);
}

.type-closing {
  margin: 26px 0 0;
  color: var(--gold-bright);
  font-size: 1.15rem;
  font-weight: 900;
}

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

.step-card {
  min-height: 224px;
  padding: 24px;
}

.step-card:hover,
.testimonial-card:hover {
  border-color: rgba(255, 214, 107, 0.42);
  transform: translateY(-3px);
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--gold-bright);
  border: 1px solid rgba(255, 214, 107, 0.22);
  border-radius: 8px;
  background: rgba(255, 214, 107, 0.08);
}

.step-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-number {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-weight: 900;
}

.step-card h3 {
  margin-bottom: 0;
}

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

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

.testimonial-card {
  min-height: 278px;
  padding: 25px;
}

.stars {
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-weight: 950;
}

.testimonial-card p {
  color: var(--muted);
}

.testimonial-card h3 {
  margin: 22px 0 0;
  color: var(--ivory);
}

.spotify-showcase {
  isolation: isolate;
  background:
    radial-gradient(circle at 10% 10%, rgba(29, 185, 84, 0.18), transparent 20rem),
    radial-gradient(circle at 90% 12%, rgba(255, 214, 107, 0.14), transparent 20rem),
    linear-gradient(135deg, rgba(7, 6, 4, 0.98), rgba(11, 18, 12, 0.96) 40%, rgba(7, 6, 4, 0.98));
}

.spotify-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(29, 185, 84, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 185, 84, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
}

.spotify-inner {
  position: relative;
}

.spotify-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.spotify-particles span {
  position: absolute;
  width: 14px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.9), rgba(29, 185, 84, 0));
  filter: blur(1px);
  animation: floatParty 10s linear infinite;
}

.spotify-particles span:nth-child(1) { top: 18%; left: 8%; animation-delay: -1s; }
.spotify-particles span:nth-child(2) { top: 60%; left: 16%; animation-delay: -4s; }
.spotify-particles span:nth-child(3) { top: 22%; right: 18%; animation-delay: -2s; }
.spotify-particles span:nth-child(4) { top: 68%; right: 10%; animation-delay: -7s; }
.spotify-particles span:nth-child(5) { top: 44%; left: 50%; animation-delay: -3s; }
.spotify-particles span:nth-child(6) { top: 12%; left: 72%; animation-delay: -6s; }

@keyframes floatParty {
  0% {
    transform: translate3d(0, 24px, 0) scale(0.8);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(0, -34px, 0) scale(1.25);
    opacity: 0;
  }
}

.spotify-eyebrow {
  color: #1db954;
}

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

.spotify-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(29, 185, 84, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(29, 185, 84, 0.18), transparent 12rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 9, 0.88);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(29, 185, 84, 0.06) inset;
}

.spotify-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -28% -10%;
  height: 56%;
  background: radial-gradient(circle at center, rgba(29, 185, 84, 0.24), transparent 58%);
  pointer-events: none;
}

.spotify-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 185, 84, 0.42);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4), 0 0 38px rgba(29, 185, 84, 0.12);
}

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

.spotify-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: #dfffe9;
  border-radius: 999px;
  background: rgba(29, 185, 84, 0.14);
  border: 1px solid rgba(29, 185, 84, 0.22);
  font-size: 0.8rem;
  font-weight: 900;
}

.spotify-badge svg {
  width: 18px;
  height: 18px;
  fill: #1db954;
  flex: 0 0 auto;
}

.sound-wave {
  min-width: 52px;
  height: 30px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
}

.sound-wave i {
  width: 5px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #9ff4ba, #1db954);
  box-shadow: 0 0 18px rgba(29, 185, 84, 0.38);
  animation: spotifyEq 1.2s ease-in-out infinite alternate;
}

.sound-wave i:nth-child(2) { animation-delay: -0.25s; }
.sound-wave i:nth-child(3) { animation-delay: -0.55s; }
.sound-wave i:nth-child(4) { animation-delay: -0.15s; }
.sound-wave i:nth-child(5) { animation-delay: -0.4s; }

@keyframes spotifyEq {
  from { height: 10px; }
  to { height: 28px; }
}

.spotify-card h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
}

.spotify-card p {
  margin-bottom: 22px;
  color: #d5e3d9;
}

.spotify-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: #04110a;
  border-radius: 999px;
  background: linear-gradient(135deg, #7af2a3, #1db954);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(29, 185, 84, 0.28);
}

.spotify-link:hover,
.spotify-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(29, 185, 84, 0.38);
  outline: none;
}

.spotify-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-grid {
  align-items: start;
}

.accordion {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255, 214, 107, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 226, 0.045);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  color: var(--ivory);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.faq-question i {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
}

.faq-question i::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(74, 16, 34, 0.34), rgba(7, 6, 4, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(255, 214, 107, 0.22), transparent 26rem);
}

.final-cta-inner {
  max-width: 820px;
  text-align: center;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 214, 107, 0.14);
  background: #050403;
}

.footer-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 214, 107, 0.22);
}

.footer-brand h2 {
  margin: 0 0 4px;
  font-size: 1.45rem;
}

.footer-brand p,
.footer-text,
.copyright {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  color: var(--muted);
  border: 1px solid rgba(255, 214, 107, 0.14);
  border-radius: 6px;
  background: rgba(255, 248, 226, 0.035);
  font-weight: 800;
}

.footer-links a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ivory);
  border-color: rgba(255, 214, 107, 0.4);
  outline: none;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 8px;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #08140d;
  background: linear-gradient(135deg, #9ef7b6, #2dd36f);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(45, 211, 111, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(45, 211, 111, 0.38);
  outline: none;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(255, 214, 107, 0.16);
    border-radius: 8px;
    background: rgba(7, 6, 4, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-menu .nav-action {
    margin-left: 0;
    justify-content: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  h1 {
    max-width: 13ch;
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-stage {
    min-height: 380px;
  }

  .brand-orbit {
    width: min(82vw, 390px);
  }

  .intro-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pricing-grid,
  .testimonial-grid,
  .spotify-grid {
    grid-template-columns: 1fr;
  }

  .price-card-head {
    min-height: auto;
  }

  .type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-inner,
  .footer-inner,
  .hero-inner {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .brand-link span {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: calc(88svh - var(--header-height));
  }

  .hero-inner {
    min-height: calc(88svh - var(--header-height));
    gap: 12px;
    padding: 28px 0 28px;
  }

  h1 {
    max-width: 12ch;
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero-subtitle,
  .section-copy p,
  .section-heading p,
  .final-cta p {
    font-size: 1rem;
  }

  .hero-actions,
  .final-cta .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-stage {
    min-height: 170px;
  }

  .brand-orbit {
    width: min(58vw, 220px);
  }

  .studio-console {
    height: 58px;
    padding: 10px;
  }

  .studio-mic {
    right: 3%;
    transform: scale(0.56) rotate(-14deg);
  }

  .section-inner {
    padding: 66px 0;
  }

  .signal-board {
    min-height: 210px;
  }

  .price-card,
  .step-card,
  .testimonial-card {
    padding: 20px;
  }

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

  .type-grid span,
  .benefit-grid span {
    min-height: 52px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-links {
    display: grid;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
