/* ---------- Foundations ---------- */
:root {
  --black: #07050a;
  --black-soft: #0d0912;
  --white: #f8f6fb;
  --muted: #aaa2b4;
  --purple: #8b22ff;
  --purple-bright: #ad4dff;
  --purple-pale: #d7a8ff;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(20, 12, 29, 0.76);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow-purple: 0 0 60px rgba(139, 34, 255, 0.22);
  --transition: 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 30%, rgba(98, 25, 158, 0.08), transparent 34%),
    var(--black);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: #fff;
  background: var(--purple);
}

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

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

:focus-visible {
  outline: 2px solid var(--purple-pale);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--purple);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.compact-container {
  width: min(920px, calc(100% - 48px));
}

.section {
  position: relative;
  padding: 124px 0;
}

/* Skip paint/layout work for content that is far below the viewport. */
.licenses-section,
.exclusive-form-section,
.projection-section,
.trust-section,
.final-cta-section,
.video-section-last,
.legal-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.glass-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 30px 80px rgba(0, 0, 0, 0.36);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  backdrop-filter: blur(24px) saturate(130%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--purple-pale);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: var(--purple-bright);
  box-shadow: 0 0 10px var(--purple-bright);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  font-weight: 590;
  letter-spacing: -0.062em;
  line-height: 0.93;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

em {
  color: var(--purple-pale);
  font-style: normal;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child,
.split-heading > p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* ---------- Buttons ---------- */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 20px 14px 25px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 680;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.28), transparent 70%);
  transform: translateX(-120%);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover::before {
  transform: translateX(120%);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #8b22ff, #6812d0);
  box-shadow: 0 12px 34px rgba(124, 26, 224, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-primary:hover {
  box-shadow: 0 17px 44px rgba(139, 34, 255, 0.48), 0 0 18px rgba(173, 77, 255, 0.18);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.button-secondary:hover {
  border-color: rgba(192, 107, 255, 0.52);
  background: rgba(139, 34, 255, 0.09);
  box-shadow: 0 0 26px rgba(139, 34, 255, 0.16);
}

.button-arrow {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  transition: transform var(--transition);
}

.button:hover .button-arrow {
  transform: rotate(-8deg) scale(1.08);
}

.button-full {
  width: 100%;
  margin-top: auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(7, 5, 10, 0.5), rgba(7, 5, 10, 0.96)),
    radial-gradient(ellipse at 72% 48%, rgba(139, 34, 255, 0.19), transparent 33%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 32%;
  content: "";
  background: linear-gradient(transparent, var(--black));
}

.ambient {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.ambient-one {
  top: -18%;
  left: 12%;
  width: 44vw;
  height: 44vw;
  background: rgba(113, 15, 211, 0.32);
}

.ambient-two {
  right: -14%;
  bottom: 4%;
  width: 38vw;
  height: 38vw;
  background: rgba(174, 69, 255, 0.2);
}

.hero-shell {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding-top: 94px;
  padding-bottom: 58px;
}

.brand-mark {
  position: absolute;
  top: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-icon {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(217, 173, 255, 0.5);
  border-radius: 50% 38% 50% 42%;
  background: radial-gradient(circle at 35% 30%, #d8aaff, #7218d4 48%, #12081d 70%);
  box-shadow: 0 0 18px rgba(163, 61, 255, 0.48);
  transform: rotate(25deg);
}

.hero-instagram {
  position: absolute;
  top: 28px;
  right: max(24px, calc((100vw - 1180px) / 2));
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(139, 34, 255, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 24px rgba(139, 34, 255, 0.14);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.hero-instagram svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.hero-instagram .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.hero-instagram:hover {
  border-color: rgba(202, 130, 255, 0.6);
  background: linear-gradient(145deg, rgba(205, 103, 255, 0.22), rgba(103, 20, 185, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 32px rgba(159, 50, 255, 0.34);
  transform: translateY(-2px) scale(1.04);
}

.hero-card {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  padding: clamp(34px, 6vw, 76px);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-card::before {
  position: absolute;
  top: 0;
  left: 14%;
  width: 34%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(210, 151, 255, 0.8), transparent);
  box-shadow: 0 0 18px rgba(179, 77, 255, 0.7);
}

.hero-card::after {
  position: absolute;
  top: -100%;
  left: -15%;
  width: 36%;
  height: 250%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.035), transparent);
  transform: rotate(18deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-statement {
  max-width: 610px;
  margin-bottom: 16px;
  color: #ddd7e2;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  font-weight: 420;
  letter-spacing: -0.02em;
  line-height: 1.38;
}

.hero-subtitle {
  max-width: 580px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-pricing {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(190, 111, 255, 0.28);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(139, 34, 255, 0.12), rgba(5, 3, 8, 0.52));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4), 0 0 42px rgba(139, 34, 255, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.hero-pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 6px 13px;
}

.hero-pricing-header div {
  display: grid;
}

.hero-pricing-header span {
  color: var(--purple-pale);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-pricing-header strong {
  color: #746b7b;
  font-size: 0.65rem;
  font-weight: 550;
}

.hero-pricing-header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 13px var(--purple-bright);
}

.hero-price-row {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-price-row:hover {
  border-color: rgba(190, 111, 255, 0.4);
  background: rgba(139, 34, 255, 0.1);
}

.hero-price-row > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: #dfd8e4;
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-price-row small {
  color: #665e6d;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.hero-price-row b {
  padding: 4px 7px;
  border-radius: 100px;
  color: var(--purple-pale);
  background: rgba(139, 34, 255, 0.16);
  font-size: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-price-row > strong {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 570;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.hero-price-row > strong em {
  color: var(--purple-pale);
  font-size: 0.72rem;
  vertical-align: top;
}

.hero-price-featured {
  border-color: rgba(180, 84, 255, 0.48);
  background: linear-gradient(135deg, rgba(139, 34, 255, 0.2), rgba(255, 255, 255, 0.045));
  box-shadow: 0 0 25px rgba(139, 34, 255, 0.14);
}

.hero-price-row .hero-price-request {
  color: var(--purple-pale);
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: #8f8897;
  font-size: 0.72rem;
  font-weight: 520;
}

.trust-line i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 7px var(--purple-bright);
}

.custom-beat-cta {
  display: grid;
  max-width: 520px;
  min-height: 70px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(188, 105, 255, 0.26);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 34, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.custom-beat-top {
  max-width: none;
  margin: 0 0 18px;
}

.custom-beat-cta:hover {
  border-color: rgba(205, 133, 255, 0.56);
  background: linear-gradient(135deg, rgba(139, 34, 255, 0.17), rgba(255, 255, 255, 0.055));
  box-shadow: 0 0 28px rgba(139, 34, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.custom-beat-icon,
.custom-beat-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: var(--purple-pale);
  background: rgba(139, 34, 255, 0.13);
}

.custom-beat-copy {
  display: grid;
}

.custom-beat-copy small {
  color: #817887;
  font-size: 0.6rem;
  line-height: 1.35;
}

.custom-beat-copy strong {
  color: #f1ebf5;
  font-size: 0.82rem;
  font-weight: 650;
}

.custom-beat-arrow {
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 0.8rem;
}

.scroll-cue {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 18px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.scroll-cue i::after {
  position: absolute;
  top: 5px;
  left: 7px;
  width: 2px;
  height: 5px;
  border-radius: 3px;
  content: "";
  background: var(--purple-pale);
}

/* ---------- BeatStars player, first content on the page ---------- */
.player-section {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 28px 0 48px;
  background: linear-gradient(180deg, rgba(98, 22, 153, 0.08), transparent);
}

.player-card {
  position: relative;
  padding: clamp(24px, 5vw, 46px);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.player-card::before {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 360px;
  height: 170px;
  border-radius: 50%;
  content: "";
  background: rgba(139, 34, 255, 0.16);
  filter: blur(55px);
  transform: translateX(-50%);
}

.player-topline {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.player-label {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.player-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.player-status,
.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bdb5c4;
  font-size: 0.7rem;
  font-weight: 600;
}

.player-status i,
.availability i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bb68ff;
  box-shadow: 0 0 12px #a83cff;
}

.beatstars-slot {
  position: relative;
  height: 1024px;
  margin-bottom: 24px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.28);
}

.beatstars-slot iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 1024px;
  max-width: 100%;
  border: 0;
  border-radius: 16px;
}

.player-cta {
  width: 100%;
}

/* ---------- Video ---------- */
.video-section {
  overflow: hidden;
}

.video-section-last {
  padding-top: 36px;
  background: linear-gradient(180deg, transparent, rgba(105, 22, 165, 0.055));
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.7fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 5px;
}

.video-frame {
  padding: 10px;
  border-color: rgba(169, 69, 255, 0.34);
  border-radius: 32px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.46), 0 0 50px rgba(139, 34, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.video-ratio {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 23px;
  background: #0b0610;
}

.video-ratio iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 45%),
    radial-gradient(ellipse at 62% 54%, rgba(142, 33, 237, 0.55), transparent 16%),
    radial-gradient(ellipse at 58% 49%, #42116a, transparent 44%),
    linear-gradient(125deg, #08050b, #160822 54%, #050407);
}

.youtube-link-card {
  cursor: pointer;
  transition: filter var(--transition);
}

.youtube-link-card:hover {
  filter: brightness(1.14);
}

.youtube-link-card:hover .video-play {
  border-color: rgba(214, 159, 255, 0.72);
  background: rgba(139, 34, 255, 0.38);
  box-shadow: 0 0 64px rgba(153, 48, 242, 0.62), inset 0 0 20px rgba(255, 255, 255, 0.08);
  transform: scale(1.08);
}

.video-placeholder::before {
  position: absolute;
  right: 18%;
  width: 21%;
  height: 78%;
  border: 1px solid rgba(218, 171, 255, 0.22);
  border-radius: 50% 45% 35% 50%;
  content: "";
  box-shadow: -35px 10px 55px rgba(153, 53, 255, 0.22), inset 20px 0 30px rgba(198, 121, 255, 0.1);
  transform: rotate(11deg);
  filter: blur(1px);
}

.video-placeholder::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent 25%, rgba(255, 255, 255, 0.04) 49%, transparent 62%);
}

.video-noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.6' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.video-monogram {
  position: absolute;
  bottom: 8%;
  left: 5%;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.4rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.08em;
}

.video-play {
  position: relative;
  z-index: 2;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  padding-left: 5px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(20, 9, 30, 0.46);
  box-shadow: 0 0 48px rgba(142, 38, 231, 0.42), inset 0 0 20px rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.video-placeholder p {
  position: absolute;
  right: 5%;
  bottom: 7.5%;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* ---------- Legal notice ---------- */
.legal-section {
  padding: 0 0 100px;
}

.legal-card {
  max-width: 1080px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.legal-card summary {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 30px;
  cursor: pointer;
  list-style: none;
}

.legal-card summary::-webkit-details-marker {
  display: none;
}

.legal-card summary span {
  display: grid;
  gap: 2px;
}

.legal-card summary small {
  color: var(--purple-pale);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-card summary strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.legal-card summary i {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(139, 34, 255, 0.08);
}

.legal-card summary i::before,
.legal-card summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--purple-pale);
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.legal-card summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.legal-card[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.legal-content {
  padding: 0 30px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.legal-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
}

.legal-grid h3 {
  margin-bottom: 14px;
  color: #e4dce9;
  font-size: 0.92rem;
}

.legal-grid p {
  margin-bottom: 8px;
  color: #918897;
  font-size: 0.72rem;
  line-height: 1.65;
}

.legal-grid p:last-child {
  margin-bottom: 0;
}

.legal-grid p strong {
  color: #bdb4c3;
}

.legal-grid a {
  color: var(--purple-pale);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  margin: 24px 0 0;
  color: #635c68;
  font-size: 0.64rem;
  text-align: right;
}

/* ---------- Pricing ---------- */
.licenses-section {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, transparent, rgba(88, 22, 139, 0.055), transparent);
}

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

.pricing-card {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  border-color: rgba(189, 112, 255, 0.34);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), 0 0 35px rgba(139, 34, 255, 0.11);
  transform: translateY(-8px);
}

.pricing-card.featured {
  border-color: rgba(177, 75, 255, 0.58);
  background: linear-gradient(160deg, rgba(143, 33, 235, 0.2), rgba(255, 255, 255, 0.04) 48%, rgba(87, 16, 143, 0.08));
  box-shadow: 0 28px 80px rgba(44, 6, 73, 0.48), 0 0 42px rgba(139, 34, 255, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-10px);
}

.pricing-card.featured:hover {
  box-shadow: 0 36px 90px rgba(44, 6, 73, 0.56), 0 0 58px rgba(139, 34, 255, 0.36);
  transform: translateY(-15px);
}

.pricing-card.featured::after {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  content: "";
  background: rgba(158, 50, 255, 0.18);
  filter: blur(30px);
}

.popular-tag {
  position: absolute;
  top: 19px;
  right: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(219, 173, 255, 0.24);
  border-radius: 100px;
  color: #dab1ff;
  background: rgba(139, 34, 255, 0.15);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.card-index {
  margin-bottom: 46px;
  color: #6f6877;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.price {
  margin-bottom: 18px;
  font-size: 3.8rem;
  font-weight: 570;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price span {
  margin-right: 4px;
  color: var(--purple-pale);
  font-size: 1.55rem;
  vertical-align: top;
}

.price-request {
  margin-top: 15px;
  font-size: 2.4rem;
}

.card-copy {
  min-height: 78px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  color: #c9c2cf;
  font-size: 0.78rem;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.feature-list li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--purple-bright);
  box-shadow: 0 0 8px var(--purple-bright);
}

/* ---------- Exclusive request form ---------- */
.exclusive-form-section {
  padding-top: 0;
  overflow: hidden;
}

.exclusive-form-card {
  position: relative;
  display: grid;
  max-width: 1080px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  margin-inline: auto;
  padding: clamp(34px, 6vw, 72px);
  overflow: hidden;
  border-color: rgba(175, 79, 255, 0.32);
  border-radius: var(--radius-lg);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.46), 0 0 54px rgba(139, 34, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.exclusive-form-card::before {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  content: "";
  background: rgba(139, 34, 255, 0.15);
  filter: blur(70px);
}

.exclusive-form-copy,
.exclusive-form {
  position: relative;
  z-index: 1;
}

.exclusive-form-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.exclusive-form-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.exclusive-form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 30px;
  color: #8f8796;
  font-size: 0.72rem;
  line-height: 1.5;
}

.exclusive-form-note i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 10px var(--purple-bright);
}

.exclusive-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field:last-of-type,
.form-submit,
.form-privacy {
  grid-column: 1 / -1;
}

.form-field label {
  color: #cfc8d5;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  outline: none;
  color: var(--white);
  background: rgba(5, 3, 8, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font: inherit;
  font-size: 0.86rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field input {
  min-height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 150px;
  padding: 15px 16px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #675f6d;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(186, 96, 255, 0.72);
  background: rgba(13, 7, 19, 0.72);
  box-shadow: 0 0 0 4px rgba(139, 34, 255, 0.1), 0 0 24px rgba(139, 34, 255, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
  font-family: inherit;
}

.form-privacy {
  margin: -3px 0 0;
  color: #6e6674;
  font-size: 0.64rem;
  text-align: center;
}

.form-privacy a {
  color: var(--purple-pale);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ---------- Artist projection ---------- */
.projection-section {
  overflow: hidden;
}

.projection-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: rgba(116, 22, 201, 0.12);
  filter: blur(80px);
}

.projection-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.projection-lead {
  max-width: 690px;
  margin-bottom: 24px;
  color: #e5dfe9;
  font-size: clamp(1.3rem, 2.35vw, 2.05rem);
  letter-spacing: -0.027em;
  line-height: 1.42;
}

.projection-note {
  max-width: 650px;
  color: var(--muted);
  font-size: 0.94rem;
}

.vibe-cloud {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
}

.vibe-cloud > span {
  position: absolute;
  z-index: 2;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 100px;
  color: #d2cad8;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.vibe-cloud > span:nth-child(1) { top: 10%; left: 8%; }
.vibe-cloud > span:nth-child(2) { top: 5%; right: 5%; }
.vibe-cloud > span:nth-child(3) { top: 43%; left: -4%; }
.vibe-cloud > span:nth-child(4) { top: 39%; right: -2%; }
.vibe-cloud > span:nth-child(5) { bottom: 8%; left: 9%; }
.vibe-cloud > span:nth-child(6) { right: 10%; bottom: 12%; }

.vibe-core {
  position: relative;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(210, 155, 255, 0.32);
  border-radius: 42% 58% 56% 44% / 56% 40% 60% 44%;
  background: radial-gradient(circle at 42% 34%, #b656ff, #6713b2 28%, #1a0828 68%);
  box-shadow: 0 0 80px rgba(139, 34, 255, 0.35), inset 18px 8px 30px rgba(255, 255, 255, 0.1);
  animation: liquid 9s ease-in-out infinite;
}

.vibe-core::before,
.vibe-core::after {
  position: absolute;
  border: 1px solid rgba(180, 87, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.vibe-core::before { inset: -65px; }
.vibe-core::after { inset: -125px; }

.vibe-core i {
  position: absolute;
  top: 25%;
  left: 30%;
  width: 30%;
  height: 15%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(7px);
  transform: rotate(-30deg);
}

@keyframes liquid {
  0%, 100% { border-radius: 42% 58% 56% 44% / 56% 40% 60% 44%; transform: rotate(0); }
  33% { border-radius: 56% 44% 39% 61% / 43% 59% 41% 57%; transform: rotate(8deg) scale(1.03); }
  66% { border-radius: 37% 63% 51% 49% / 63% 37% 63% 37%; transform: rotate(-6deg) scale(0.97); }
}

/* ---------- Trust ---------- */
.trust-section {
  padding-top: 90px;
}

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

.trust-card {
  min-height: 180px;
  padding: 26px;
  border-radius: 20px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.trust-card:hover {
  border-color: rgba(191, 110, 255, 0.32);
  background: linear-gradient(135deg, rgba(139, 34, 255, 0.1), rgba(255, 255, 255, 0.035));
  transform: translateY(-6px);
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 37px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--purple-pale);
  background: rgba(139, 34, 255, 0.08);
  box-shadow: 0 0 18px rgba(139, 34, 255, 0.1);
}

.trust-card p {
  margin: 0;
  color: #d6d0da;
  font-size: 0.87rem;
  font-weight: 540;
  line-height: 1.4;
}

/* ---------- Final CTA & footer ---------- */
.final-cta-section {
  padding-bottom: 140px;
  overflow: hidden;
}

.final-orb {
  position: absolute;
  bottom: -30%;
  left: 50%;
  width: 65vw;
  height: 65vw;
  border-radius: 50%;
  background: rgba(128, 28, 213, 0.13);
  filter: blur(90px);
  transform: translateX(-50%);
}

.final-card {
  position: relative;
  padding: clamp(54px, 9vw, 110px) clamp(26px, 8vw, 90px);
  overflow: hidden;
  border-color: rgba(171, 71, 255, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 70px rgba(139, 34, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.final-card::before {
  position: absolute;
  top: -58%;
  left: 50%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  content: "";
  background: rgba(150, 43, 242, 0.19);
  filter: blur(65px);
  transform: translateX(-50%);
}

.final-card .eyebrow {
  position: relative;
  justify-content: center;
}

.final-card h2 {
  position: relative;
  margin-bottom: 34px;
  color: #aaa2b4;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.final-headline {
  position: relative;
  max-width: 810px;
  margin: 0 auto 20px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 570;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.final-subtitle {
  position: relative;
  max-width: 590px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 1rem;
}

.centered-buttons {
  position: relative;
  justify-content: center;
}

.availability {
  position: relative;
  justify-content: center;
  margin: 24px 0 0;
  color: #777080;
  font-size: 0.64rem;
}

.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050407;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 62px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.footer-grid p {
  max-width: 430px;
  margin: 0;
  color: #948b9b;
  font-size: 0.81rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 18px 28px;
}

.footer-links a {
  color: #9b94a1;
  font-size: 0.75rem;
  font-weight: 570;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #918997;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

/* ---------- Motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.pricing-grid .reveal:nth-child(2),
.trust-grid .reveal:nth-child(2) { transition-delay: 90ms; }
.pricing-grid .reveal:nth-child(3),
.trust-grid .reveal:nth-child(3) { transition-delay: 180ms; }
.pricing-grid .reveal:nth-child(4),
.trust-grid .reveal:nth-child(4) { transition-delay: 270ms; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

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

  .hero-pricing {
    margin-top: 40px;
  }

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

  .pricing-card:last-child {
    grid-column: auto;
    min-height: 510px;
  }

  .projection-grid {
    grid-template-columns: 1fr;
  }

  .vibe-cloud {
    width: min(600px, 100%);
    margin-inline: auto;
  }

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

  .exclusive-form-card {
    grid-template-columns: 1fr;
  }
}

/* Keep the complete conversion action visible on shorter desktop screens. */
@media (min-width: 1001px) and (max-height: 800px) {
  .brand-mark {
    top: 14px;
  }

  .hero-instagram {
    top: 12px;
  }

  .hero-shell {
    padding-top: 78px;
    padding-bottom: 24px;
  }

  .hero-card {
    min-height: 570px;
    padding: 42px 60px;
  }

  h1 {
    font-size: clamp(3rem, 4.7vw, 4.6rem);
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 720px) {
  .container,
  .compact-container {
    width: min(100% - 30px, 1180px);
  }

  .section {
    padding: 88px 0;
  }

  .hero-shell {
    justify-content: flex-start;
    padding-top: 88px;
    padding-bottom: 36px;
  }

  .brand-mark {
    top: 23px;
  }

  .hero-card {
    min-height: auto;
    padding: 30px 20px 26px;
    border-radius: 28px;
  }

  .brand-mark {
    left: 15px;
    right: 72px;
    max-width: calc(100% - 87px);
    gap: 9px;
    font-size: 0.58rem;
    letter-spacing: 0.11em;
  }

  .hero-instagram {
    top: 20px;
    right: 15px;
    width: 42px;
    height: 42px;
  }

  .brand-mark > span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.6rem);
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-pricing {
    gap: 8px;
    margin-top: 28px;
    padding: 12px;
    border-radius: 20px;
  }

  .hero-price-row {
    min-height: 60px;
    padding: 11px 12px;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-group .button {
    width: 100%;
  }

  .trust-line {
    align-items: flex-start;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .player-section {
    margin-top: 0;
    padding-top: 16px;
    padding-bottom: 50px;
  }

  .licenses-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .exclusive-form-section {
    padding-top: 0;
    padding-bottom: 88px;
  }

  .exclusive-form-card {
    gap: 34px;
    padding: 30px 22px;
    border-radius: 26px;
  }

  .exclusive-form {
    grid-template-columns: 1fr;
  }

  .form-field:last-of-type,
  .form-submit,
  .form-privacy {
    grid-column: auto;
  }

  .player-card {
    padding: 22px;
    border-radius: 26px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-bottom: 34px;
  }

  .video-frame {
    padding: 6px;
    border-radius: 21px;
  }

  .video-section-last {
    padding-top: 12px;
    padding-bottom: 88px;
  }

  .video-ratio {
    border-radius: 16px;
  }

  .video-play {
    width: 62px;
    height: 62px;
  }

  .legal-section {
    padding-bottom: 72px;
  }

  .legal-card summary {
    min-height: 82px;
    padding: 20px;
  }

  .legal-content {
    padding: 0 16px 22px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .legal-grid article {
    padding: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-card,
  .pricing-card:last-child {
    min-height: 480px;
    grid-column: auto;
  }

  .pricing-card.featured,
  .pricing-card.featured:hover {
    transform: none;
  }

  .projection-grid {
    gap: 40px;
  }

  .vibe-cloud {
    min-height: 370px;
  }

  .vibe-core {
    width: 150px;
    height: 150px;
  }

  .vibe-core::before { inset: -42px; }
  .vibe-core::after { inset: -86px; }

  .vibe-cloud > span:nth-child(3) { left: 0; }
  .vibe-cloud > span:nth-child(4) { right: 0; }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    display: flex;
    min-height: 100px;
    align-items: center;
    gap: 18px;
    padding: 20px;
  }

  .trust-icon {
    flex: 0 0 42px;
    margin: 0;
  }

  .final-cta-section {
    padding-bottom: 90px;
  }

  .final-card {
    border-radius: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-bottom: 42px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .hero-card {
    padding-inline: 18px;
  }

  .hero-price-row > span {
    gap: 7px;
    font-size: 0.7rem;
  }

  .hero-price-row b {
    display: none;
  }

  .hero-price-row > strong {
    font-size: 1.15rem;
  }

  .player-topline {
    flex-direction: column;
  }

  .player-status {
    position: absolute;
    top: 0;
    right: 0;
  }

  .player-name {
    padding-right: 80px;
  }

  .pricing-card {
    padding: 28px;
  }

  .vibe-cloud > span {
    padding: 9px 12px;
    font-size: 0.6rem;
  }
}

@media (max-width: 360px) {
  .container,
  .compact-container {
    width: calc(100% - 20px);
  }

  .brand-mark {
    right: 66px;
    left: 10px;
    max-width: calc(100% - 76px);
    font-size: 0.52rem;
  }


  .hero-instagram {
    right: 10px;
  }

  .hero-card {
    padding: 26px 16px 22px;
  }

  h1 {
    font-size: 2.4rem;
  }

  .hero-statement {
    font-size: 1rem;
  }

  .player-card,
  .pricing-card {
    padding: 20px;
  }

  .beatstars-slot {
    padding: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::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;
  }
}
