/* =========================================================
   VERTICAL WORLD: Music ("The Sound That Travels")
   A violet-night streaming world. One track becomes a reusable
   SOUND thousands of creators post with, and streams follow.
   Scoped under [data-vertical="music"] so the tokens re-skin the
   shared header / footer / cards / compare / faq automatically,
   and the bespoke "sound" sections layer on top. Every visual is
   self-contained CSS (waveforms, EQ, spectrum, curve) — no images.
   ========================================================= */

[data-vertical="music"] {
  --bg:        #0E0A1B;   /* deep violet night */
  --bg-alt:    #150F29;
  --surface:   #1E1740;   /* raised panel */
  --surface-2: #261C4E;
  --ink:       #F4EFFF;   /* near white */
  --ink-soft:  #CBBFEC;
  --muted:     #9182BE;   /* labels only */
  --line:      #342A58;

  --accent:    #A96BFF;   /* electric violet (primary) */
  --accent-2:  #C79BFF;
  --hot:       #FF4D9D;   /* hot pink (trending / energy) */
  --hot-2:     #FF83BC;
  --gold:      #FFC24B;   /* plaque / chart gold */
  --green:     #A96BFF;   /* fold brand-green into violet */

  --sound-grad: linear-gradient(135deg, var(--accent), var(--hot) 78%);
  --font-display: 'Unbounded', 'Trebuchet MS', system-ui, sans-serif;
  color-scheme: dark;
  background: var(--bg);
}

/* ambient studio glow behind everything (soft, single layer) */
[data-vertical="music"] body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 40% at 82% -4%, rgba(169,107,255,0.16), transparent 60%),
    radial-gradient(50% 40% at 8% 8%, rgba(255,77,157,0.10), transparent 60%);
}

/* ===================== typography ===================== */
[data-vertical="music"] h1,
[data-vertical="music"] h2,
[data-vertical="music"] h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
[data-vertical="music"] h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.08; }
[data-vertical="music"] .lead { color: var(--ink-soft); font-family: var(--font-sans); }

/* eyebrow: high specificity + !important to beat the shared homepage-blue chrome */
html[data-vertical="music"] .eyebrow {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-2) !important;
  background: rgba(169,107,255,0.10) !important;
  border: 1px solid rgba(169,107,255,0.34) !important;
  border-radius: 999px; padding: 7px 14px;
}
html[data-vertical="music"] .eyebrow-dot::before { background: var(--hot) !important; box-shadow: 0 0 10px rgba(255,77,157,0.7) !important; }

[data-vertical="music"] .theme-toggle { display: none; }
[data-vertical="music"] .num, [data-vertical="music"] .sc-time { font-variant-numeric: tabular-nums; }

/* ===================== header / footer re-skin ===================== */
[data-vertical="music"] .site-header {
  background: rgba(14,10,27,0.82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
}
[data-vertical="music"] .site-header.is-scrolled { border-color: var(--line); border-image: linear-gradient(90deg, transparent, rgba(169,107,255,0.6), transparent) 1; }
[data-vertical="music"] .nav-links a, [data-vertical="music"] .has-menu > button { font-family: var(--font-sans); }
[data-vertical="music"] .brand span { font-family: var(--font-display); font-weight: 700; }
[data-vertical="music"] .btn--primary { background: var(--sound-grad); color: #17091F; font-weight: 600; border: 0; }
[data-vertical="music"] .btn--primary:hover { filter: brightness(1.08); }
[data-vertical="music"] .btn--ghost { border-color: rgba(169,107,255,0.4); color: var(--ink); }
[data-vertical="music"] .btn--ghost:hover { background: rgba(169,107,255,0.1); border-color: var(--accent); }

/* play-pill CTA (gradient, with a play chip) */
[data-vertical="music"] .play-pill {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.98rem;
  color: #17091F; background: var(--sound-grad) !important;
  padding: 13px 24px 13px 13px; border-radius: 999px;
  box-shadow: 0 14px 34px -14px rgba(169,107,255,0.7);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
[data-vertical="music"] .play-pill .pp-play {
  width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: rgba(23,9,31,0.22);
}
[data-vertical="music"] .play-pill .pp-play svg { width: 14px; height: 14px; }
[data-vertical="music"] .play-pill:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -14px rgba(255,77,157,0.7); filter: brightness(1.05); }

/* ===================== HERO ===================== */
.ms-hero { position: relative; padding: clamp(30px, 5vw, 62px) 0 clamp(46px, 7vw, 88px); overflow: hidden; }
.ms-hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.ms-breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; }
.ms-breadcrumb a { color: var(--muted); }
.ms-breadcrumb a:hover { color: var(--accent-2); }
.ms-hero-copy .eyebrow { margin-bottom: 22px; }

.ms-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 5.2vw, 4.3rem); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 24px;
}
.ms-title .ms-line { display: block; }
.ms-title .ms-hl {
  background: linear-gradient(100deg, var(--accent-2), var(--hot));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ms-reveal .ms-line { opacity: 0; transform: translateY(18px); animation: ms-rise .8s cubic-bezier(0.16,1,0.3,1) forwards; }
.ms-reveal .ms-line:nth-child(1) { animation-delay: .1s; }
.ms-reveal .ms-line:nth-child(2) { animation-delay: .24s; }
.ms-reveal .ms-line:nth-child(3) { animation-delay: .38s; }
@keyframes ms-rise { to { opacity: 1; transform: translateY(0); } }

.ms-lead { max-width: 46ch; font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--ink-soft); line-height: 1.6; margin: 0 0 30px; }
.ms-cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.ms-status-line { margin-top: 30px; display: inline-flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); }
.ms-status-line .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hot); box-shadow: 0 0 0 0 rgba(255,77,157,0.6); animation: ms-pulse 2s ease-in-out infinite; }
.ms-status-line strong { color: var(--ink); }
@keyframes ms-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,77,157,0.5); } 50% { box-shadow: 0 0 0 7px rgba(255,77,157,0); } }
.ms-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.ms-chip { font-size: 0.74rem; letter-spacing: 0.02em; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; background: rgba(255,255,255,0.02); }

/* ---- the trending-sound card ---- */
.ms-stage { position: relative; display: flex; justify-content: center; }
.sound-card {
  position: relative; width: min(400px, 100%); z-index: 2;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--line); border-radius: 22px;
  padding: 20px; box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8), 0 0 60px -30px rgba(169,107,255,0.4);
}
.sc-top { display: flex; gap: 16px; align-items: center; }
.sc-cover {
  position: relative; width: 92px; height: 92px; flex: none; border-radius: 14px; overflow: hidden;
  background: conic-gradient(from 210deg at 60% 40%, var(--hot), var(--accent), #3a2a7a, var(--hot));
}
.sc-cover-glow { position: absolute; inset: 0; background: radial-gradient(60% 50% at 30% 20%, rgba(255,255,255,0.35), transparent 60%); }
.sc-cover-eq { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; align-items: flex-end; justify-content: center; gap: 3px; height: 34px; }
.sc-cover-eq i { width: 5px; background: rgba(255,255,255,0.92); border-radius: 2px; transform-origin: bottom; animation: ms-eq 0.9s ease-in-out infinite; }
.sc-cover-eq i:nth-child(1){height:60%;animation-delay:0s}.sc-cover-eq i:nth-child(2){height:90%;animation-delay:.15s}.sc-cover-eq i:nth-child(3){height:45%;animation-delay:.3s}.sc-cover-eq i:nth-child(4){height:80%;animation-delay:.1s}.sc-cover-eq i:nth-child(5){height:55%;animation-delay:.25s}
@keyframes ms-eq { 0%,100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
.sc-id { min-width: 0; }
.sc-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-sans); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #17091F; background: var(--gold); padding: 3px 9px; border-radius: 999px; }
.sc-badge::before { content: "▲"; font-size: 0.6rem; }
.sc-track { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink); margin-top: 8px; }
.sc-sub { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

.sc-wave { display: flex; align-items: center; gap: 3px; height: 48px; margin: 18px 0 4px; }
.sc-wave i { flex: 1; min-width: 0; border-radius: 2px; background: var(--line); }
.sc-wave i:nth-child(1){height:30%}.sc-wave i:nth-child(2){height:55%}.sc-wave i:nth-child(3){height:42%}.sc-wave i:nth-child(4){height:78%}.sc-wave i:nth-child(5){height:60%}.sc-wave i:nth-child(6){height:90%}.sc-wave i:nth-child(7){height:48%}.sc-wave i:nth-child(8){height:70%}.sc-wave i:nth-child(9){height:35%}.sc-wave i:nth-child(10){height:82%}.sc-wave i:nth-child(11){height:52%}.sc-wave i:nth-child(12){height:66%}.sc-wave i:nth-child(13){height:40%}.sc-wave i:nth-child(14){height:88%}.sc-wave i:nth-child(15){height:58%}.sc-wave i:nth-child(16){height:72%}
.sc-wave i:nth-child(17){height:44%}.sc-wave i:nth-child(18){height:64%}.sc-wave i:nth-child(19){height:33%}.sc-wave i:nth-child(20){height:76%}.sc-wave i:nth-child(21){height:50%}.sc-wave i:nth-child(22){height:85%}.sc-wave i:nth-child(23){height:38%}.sc-wave i:nth-child(24){height:60%}.sc-wave i:nth-child(25){height:46%}.sc-wave i:nth-child(26){height:70%}.sc-wave i:nth-child(27){height:42%}.sc-wave i:nth-child(28){height:56%}
/* played portion colored by the sound gradient (first ~40%) */
.sc-wave i:nth-child(-n+11) { background: linear-gradient(180deg, var(--accent-2), var(--hot)); }

.sc-foot { display: flex; align-items: center; gap: 12px; }
.sc-play { width: 34px; height: 34px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--sound-grad); color: #17091F; }
.sc-play svg { width: 15px; height: 15px; }
.sc-scrub { flex: 1; height: 5px; border-radius: 999px; background: var(--line); overflow: hidden; }
.sc-scrub b { display: block; width: 38%; height: 100%; border-radius: 999px; background: var(--sound-grad); animation: sc-scrub 6s linear infinite; }
@keyframes sc-scrub { 0% { width: 6%; } 100% { width: 96%; } }
.sc-time { font-size: 0.76rem; color: var(--muted); font-variant-numeric: tabular-nums; }

.sc-uses { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.sc-uses-label { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.sc-tiles { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; margin-top: 10px; }
.sc-tiles i { aspect-ratio: 9 / 14; border-radius: 6px; border: 1px solid rgba(255,255,255,0.06); }
.sc-tiles i:nth-child(1){background:linear-gradient(160deg,#6a3cc0,#2a1c52)}
.sc-tiles i:nth-child(2){background:linear-gradient(160deg,#c23c86,#3a1c40)}
.sc-tiles i:nth-child(3){background:linear-gradient(160deg,#3c66c0,#1c2452)}
.sc-tiles i:nth-child(4){background:linear-gradient(160deg,#c08a3c,#40301c)}
.sc-tiles i:nth-child(5){background:linear-gradient(160deg,#3cc0a0,#1c4240)}
.sc-tiles i:nth-child(6){background:linear-gradient(160deg,#8a3cc0,#301c52)}

/* floating notes */
.ms-note { position: absolute; font-size: 0; z-index: 1; width: 20px; height: 20px; opacity: 0.5; }
.ms-note::before { content: "\266A"; font-size: 22px; color: var(--accent-2); }
.ms-note.note-1 { top: 8%; left: 2%; animation: ms-float 5s ease-in-out infinite; }
.ms-note.note-2 { bottom: 10%; right: 4%; color: var(--hot); animation: ms-float 6s ease-in-out infinite reverse; }
.ms-note.note-2::before { content: "\266B"; color: var(--hot-2); }
@keyframes ms-float { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-12px) rotate(4deg); } }

/* ===================== chart strip (stats) ===================== */
.ms-chartwrap { padding: clamp(30px, 5vw, 60px) 0; }
.ms-chart {
  position: relative; background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--line); border-radius: 18px; padding: 30px clamp(18px, 3vw, 40px) 26px;
  box-shadow: 0 30px 70px -44px rgba(0,0,0,0.8);
}
.ms-chart-title { text-align: center; font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin: 0 0 22px; }
.ms-chart-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.ms-chart-cell { text-align: center; padding: 6px 8px; border-left: 1px solid var(--line); }
.ms-chart-cell:first-child { border-left: 0; }
.ms-chart-cell .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1; background: linear-gradient(180deg, var(--ink), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ms-plaque { display: block; margin-top: 10px; font-size: 0.74rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }

/* ===================== How a sound travels ===================== */
.ms-sechead h2 { margin: 0; }
.travel { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: start; }
.travel-node {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px;
  box-shadow: 0 24px 54px -40px rgba(0,0,0,0.8);
}
.travel-art { height: 92px; border-radius: 12px; margin-bottom: 18px; position: relative; overflow: hidden; display: grid; place-items: center; background: radial-gradient(120% 120% at 50% 0%, rgba(169,107,255,0.12), transparent 70%), var(--bg-alt); border: 1px solid var(--line); }
.art-track .ta-eq { display: flex; align-items: flex-end; gap: 5px; height: 44px; }
.art-track .ta-eq i { width: 7px; border-radius: 3px; background: var(--sound-grad); transform-origin: bottom; animation: ms-eq 0.9s ease-in-out infinite; }
.art-track .ta-eq i:nth-child(1){height:40%}.art-track .ta-eq i:nth-child(2){height:80%;animation-delay:.15s}.art-track .ta-eq i:nth-child(3){height:55%;animation-delay:.3s}.art-track .ta-eq i:nth-child(4){height:95%;animation-delay:.1s}
.art-sound { }
.art-sound .ta-ring { position: absolute; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--accent); opacity: 0; animation: ta-ring 2.4s ease-out infinite; }
.art-sound .ta-ring.r2 { animation-delay: 1.2s; border-color: var(--hot); }
@keyframes ta-ring { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(2.4); opacity: 0; } }
.art-sound .ta-note { position: relative; z-index: 2; color: var(--accent-2); display: grid; place-items: center; }
.art-sound .ta-note svg { width: 30px; height: 30px; }
.art-spread { }
.art-spread .tsp { position: absolute; width: 9px; height: 13px; border-radius: 3px; }
.art-spread .tsp:nth-child(1){left:18%;top:26%;background:linear-gradient(160deg,#6a3cc0,#2a1c52)}
.art-spread .tsp:nth-child(2){left:40%;top:16%;background:linear-gradient(160deg,#c23c86,#3a1c40)}
.art-spread .tsp:nth-child(3){left:62%;top:30%;background:linear-gradient(160deg,#3c66c0,#1c2452)}
.art-spread .tsp:nth-child(4){left:28%;top:56%;background:linear-gradient(160deg,#c08a3c,#40301c)}
.art-spread .tsp:nth-child(5){left:52%;top:60%;background:linear-gradient(160deg,#3cc0a0,#1c4240)}
.art-spread .tsp:nth-child(6){left:74%;top:54%;background:linear-gradient(160deg,#8a3cc0,#301c52)}
.travel-step { font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hot-2); font-weight: 600; }
.travel-node h3 { font-size: 1.12rem; margin: 8px 0 8px; }
.travel-node p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; font-family: var(--font-sans); margin: 0; }
.travel-arrow { align-self: center; color: var(--accent); opacity: 0.7; }
.travel-arrow svg { width: 40px; height: 24px; }

/* ===================== Streams curve ===================== */
.scope { background: linear-gradient(180deg, var(--surface), var(--bg-alt)); border: 1px solid var(--line); border-radius: 18px; padding: clamp(20px, 3vw, 32px); box-shadow: 0 30px 70px -44px rgba(0,0,0,0.8); }
.scope-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.scope-head h3 { font-size: 1rem; margin: 0; }
.scope-axis { font-size: 0.74rem; color: var(--muted); }
.scope-wrap { height: clamp(180px, 30vw, 260px); }
.scope-svg { width: 100%; height: 100%; overflow: visible; }
.scope-grid line { stroke: var(--line); stroke-width: 1; }
.scope-paid, .scope-clips { fill: none; stroke-width: 3.5; stroke-linecap: round; stroke-dasharray: 900; stroke-dashoffset: 900; }
.scope-paid { stroke: var(--muted); stroke-dasharray: 5 7; stroke-width: 2.5; }
.scope-clips { stroke: url(#ms-line); }
.scope-clips { stroke: var(--accent); }
.scope.is-visible .scope-clips { animation: scope-draw 1.7s cubic-bezier(0.16,1,0.3,1) forwards; }
.scope.is-visible .scope-paid { animation: scope-draw 1.7s cubic-bezier(0.16,1,0.3,1) .15s forwards; }
@keyframes scope-draw { to { stroke-dashoffset: 0; } }
.scope-dot { opacity: 0; }
.scope-dot.clips { fill: var(--hot); }
.scope-dot.paid { fill: var(--muted); }
.scope.is-visible .scope-dot { animation: scope-dot .4s ease 1.5s forwards; }
@keyframes scope-dot { to { opacity: 1; } }
.scope-labels { display: flex; justify-content: space-between; margin-top: 12px; font-size: 0.74rem; color: var(--muted); }
.scope-legend { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 16px; font-size: 0.82rem; color: var(--ink-soft); }
.scope-legend span { display: inline-flex; align-items: center; gap: 8px; }
.scope-legend .swatch { width: 22px; height: 4px; border-radius: 999px; display: inline-block; }
.scope-legend .swatch.clips { background: var(--accent); }
.scope-legend .swatch.paid { background: var(--muted); }
.scope-note { margin-top: 18px; font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ===================== reused components, tuned ===================== */
[data-vertical="music"] .section--alt { background: var(--bg-alt); }
[data-vertical="music"] .card { background: var(--surface); border-color: var(--line); border-radius: 14px; }
[data-vertical="music"] .card h3 { font-family: var(--font-display); font-weight: 600; }
[data-vertical="music"] .card p { color: var(--ink-soft); }
[data-vertical="music"] .card:hover { border-color: rgba(169,107,255,0.45); box-shadow: 0 20px 44px -22px rgba(169,107,255,0.4); }
[data-vertical="music"] .card::before { background: var(--sound-grad) !important; }
[data-vertical="music"] .compare { background: linear-gradient(180deg, var(--surface), var(--bg-alt)); border-color: var(--line); border-radius: 16px; }
[data-vertical="music"] .compare-row { border-color: var(--line); }
[data-vertical="music"] .compare-row.head > div { background: var(--bg-alt); color: var(--muted); }
[data-vertical="music"] .compare-row .ours { background: rgba(169,107,255,0.10); color: var(--ink); box-shadow: inset 3px 0 0 0 var(--accent); }
[data-vertical="music"] .compare-row .ours[data-label="ClipUp"] { color: var(--accent-2); font-family: var(--font-display); font-weight: 600; }
[data-vertical="music"] .compare-row:not(.head):hover .ours { background: rgba(169,107,255,0.16); }
[data-vertical="music"] .check-card h3 { font-family: var(--font-display); font-weight: 600; }
[data-vertical="music"] .check-card p { color: var(--ink-soft); }
[data-vertical="music"] .check-mark { background: rgba(169,107,255,0.16); color: var(--accent-2); }
[data-vertical="music"] .check-mark--no { background: rgba(255,255,255,0.06); color: #c98cc0; }
[data-vertical="music"] .faq-item { background: var(--surface); border-color: var(--line); border-radius: 12px; }
[data-vertical="music"] .faq-item summary { color: var(--ink); font-family: var(--font-sans); font-weight: 600; }
[data-vertical="music"] .faq-item[open] { border-color: rgba(169,107,255,0.45); }
[data-vertical="music"] .faq-item[open] summary { color: var(--accent-2); }
[data-vertical="music"] .faq-item .answer { color: var(--ink-soft); }

.ms-fit-label { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.ms-fit-label.is-yes { color: var(--accent-2); }
.ms-fit-label.is-no { color: var(--muted); }

/* shell chrome pinned to this world */
[data-vertical="music"] img.logo { content: url("../assets/logo-dark.svg"); }
[data-vertical="music"] .footer-mark { color: rgba(244,239,255,0.05); font-family: var(--font-display); font-weight: 800; }
[data-vertical="music"] { scrollbar-color: var(--accent) transparent; }
[data-vertical="music"] .intro-curtain { background: var(--bg); }
[data-vertical="music"] .footer-social a:hover { background: rgba(169,107,255,0.12); border-color: var(--accent); }

/* ===================== CTA ===================== */
.ms-cta {
  position: relative; text-align: center; overflow: hidden;
  background: radial-gradient(90% 120% at 50% -10%, rgba(169,107,255,0.18), transparent 60%), linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--line); border-radius: 22px; padding: clamp(48px, 7vw, 84px) clamp(24px, 5vw, 56px);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.8);
}
.ms-cta-eq { display: inline-flex; align-items: flex-end; gap: 5px; height: 34px; margin-bottom: 22px; }
.ms-cta-eq i { width: 6px; border-radius: 3px; background: var(--sound-grad); transform-origin: bottom; animation: ms-eq 0.9s ease-in-out infinite; }
.ms-cta-eq i:nth-child(1){height:40%}.ms-cta-eq i:nth-child(2){height:75%;animation-delay:.1s}.ms-cta-eq i:nth-child(3){height:55%;animation-delay:.2s}.ms-cta-eq i:nth-child(4){height:95%;animation-delay:.05s}.ms-cta-eq i:nth-child(5){height:60%;animation-delay:.25s}.ms-cta-eq i:nth-child(6){height:80%;animation-delay:.15s}.ms-cta-eq i:nth-child(7){height:45%;animation-delay:.3s}
.ms-cta .eyebrow { margin-bottom: 18px; }
.ms-cta h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 auto; max-width: 18ch; }
.ms-cta p { color: var(--ink-soft); max-width: 48ch; margin: 16px auto 0; font-family: var(--font-sans); }
.ms-cta .play-pill { margin-top: 30px; }
.ms-cta-strap { display: block; margin-top: 20px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ===================== Campaigns as a playlist / tracklist ===================== */
.ms-tracklist {
  max-width: 760px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  box-shadow: 0 30px 70px -44px rgba(0,0,0,0.8);
}
.ms-track {
  display: grid; grid-template-columns: 42px 1fr auto; gap: 16px; align-items: center;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.ms-track:last-child { border-bottom: 0; }
.ms-track:hover { background: rgba(169,107,255,0.07); }
.ms-track-no { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--muted); font-variant-numeric: tabular-nums; text-align: center; }
.ms-track:hover .ms-track-no { color: var(--accent-2); }
.ms-track-main { min-width: 0; }
.ms-track-main h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; margin: 0; color: var(--ink); }
.ms-track-main p { font-size: 0.86rem; color: var(--ink-soft); margin: 3px 0 0; font-family: var(--font-sans); line-height: 1.45; }
.ms-track-play {
  width: 36px; height: 36px; border-radius: 50%; flex: none; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--muted);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.ms-track-play svg { width: 13px; height: 13px; margin-left: 1px; }
.ms-track:hover .ms-track-play { background: var(--sound-grad); color: #17091F; border-color: transparent; transform: scale(1.08); }
@media (max-width: 560px) {
  .ms-track { grid-template-columns: 30px 1fr auto; gap: 12px; padding: 15px 15px; }
  .ms-track-no { font-size: 0.82rem; }
  .ms-track-play { width: 32px; height: 32px; }
}

/* ===================== responsive ===================== */
@media (max-width: 960px) {
  .ms-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .ms-stage { order: 0; }
  .sound-card { width: min(380px, 100%); }
  .travel { grid-template-columns: 1fr; gap: 14px; }
  .travel-arrow { transform: rotate(90deg); margin: 0 auto; }
}
@media (max-width: 560px) {
  .ms-chart-rail { grid-template-columns: repeat(2, 1fr); gap: 18px 8px; }
  .ms-chart-cell:nth-child(3) { border-left: 0; }
  .ms-note { display: none; }
  .sc-tiles { grid-template-columns: repeat(6, 1fr); gap: 5px; }
  .ms-cta { border-radius: 18px; }
}

/* ===================== reduced motion ===================== */
@media (prefers-reduced-motion: reduce) {
  [data-vertical="music"] * { animation: none !important; transition: none !important; }
  .ms-reveal .ms-line { opacity: 1; transform: none; }
  .sc-cover-eq i, .art-track .ta-eq i, .ms-cta-eq i { transform: scaleY(0.8); }
  .sc-scrub b { width: 40%; }
  .scope-paid, .scope-clips { stroke-dashoffset: 0 !important; }
  .scope-dot { opacity: 1 !important; }
  .art-sound .ta-ring { display: none; }
}
