/* Homepage: the Cue story.
   Two rendering modes share one DOM:
   1. Static (default): the complete story reads top to bottom with the
      device shown once, mid-cue. This is what no-JS visitors and
      prefers-reduced-motion visitors get.
   2. Live (html.story-live, added by js/home.js only when motion is
      allowed): a 560vh scroll-driven sequence with a sticky, pinned
      device. Scroll position drives every transition, so scrolling
      backward reverses naturally. */

@keyframes wash-drift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1); }
  50%  { transform: translate3d(2%, 1.5%, 0) scale(1.04); }
  100% { transform: translate3d(-2%, -1%, 0) scale(1); }
}
@keyframes eq-pulse {
  0%   { transform: scaleY(0.4); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0.4); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
}

/* ── Story section ───────────────────────────────────── */
.story { position: relative; }
.story-live .story { height: 560vh; }

.story-pin { position: relative; overflow: hidden; }
.story-live .story-pin {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
}

.story-wash {
  position: absolute; inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(147,122,255,0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 78% 70%, rgba(255,156,125,0.08), transparent 65%);
  animation: wash-drift 24s var(--ease-in-out) infinite;
}
.story-dim {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: #0C0A15; opacity: 0;
}

.how-anchor { position: static; height: 0; }
.story-live .how-anchor { position: absolute; top: 100vh; }

.story-grid {
  position: relative;
  max-width: 1080px; margin: 0 auto;
  padding: 96px 20px 72px;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: clamp(28px, 5vw, 90px);
}
.story-live .story-grid {
  height: 100%;
  padding: 60px 20px 0;
}

/* Layers: static mode flattens the wrapper so hero and device share the
   first row, then each beat takes a full-width row of its own. */
.story-layers { display: contents; }
.story-live .story-layers {
  display: block;
  position: relative; z-index: 2;
  flex: 1 1 320px; min-width: 290px; max-width: 560px;
  height: clamp(290px, 44vh, 460px);
}

.layer { position: relative; }
.layer--hero { flex: 1 1 320px; min-width: 290px; max-width: 560px; order: 0; }
.story .device-col { order: 1; }
.layer--beat {
  flex: 1 1 100%; max-width: 620px;
  margin-left: auto; margin-right: auto;
  padding: clamp(36px, 6vw, 64px) 0;
  text-align: center;
}
.layer--beat:nth-of-type(2) { order: 2; }
.layer--beat:nth-of-type(3) { order: 3; }
.layer--beat:nth-of-type(4) { order: 4; }
.layer--beat:nth-of-type(5) { order: 5; }
.layer--beat:nth-of-type(6) { order: 6; }

.story-live .layer {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; pointer-events: none;
  margin: 0; padding: 0; max-width: none;
  text-align: left;
  will-change: opacity, transform;
}
.story-live .layer--hero { opacity: 1; pointer-events: auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  height: 28px; padding: 0 12px;
  border-radius: var(--radius-capsule);
  background: var(--cue-soft); color: var(--cue);
  font-size: var(--text-caption); font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  margin-bottom: 20px;
  align-self: flex-start;
}
.layer h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: var(--leading-tight); letter-spacing: var(--tracking-tight);
  font-weight: var(--weight-bold);
}
.accent-serif {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-variation-settings: var(--display-opsz);
}
.hero-gradient {
  background: linear-gradient(100deg, #937AFF 10%, #FF9C7D 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--cue);
}
.hero-sub {
  margin: 0 0 26px;
  font-size: clamp(16px, 1.8vw, 19px); line-height: var(--leading-body);
  color: var(--text-secondary); max-width: 42ch; text-wrap: pretty;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-actions .fine { font-size: var(--text-footnote); color: var(--text-tertiary); }

.layer--beat h2, .beat-title {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: var(--leading-tight); letter-spacing: var(--tracking-tight);
  font-weight: var(--weight-bold);
}
.beat-copy {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 19px); line-height: var(--leading-body);
  color: var(--text-secondary); max-width: 38ch; text-wrap: pretty;
}
.layer--beat .beat-copy { margin-left: auto; margin-right: auto; }
.story-live .beat-copy { margin-left: 0; margin-right: 0; }
.beat-copy + .beat-strong { margin-top: 12px; }
.beat-strong {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 19px); line-height: var(--leading-body);
  font-weight: var(--weight-semibold); max-width: 38ch; text-wrap: pretty;
}
.layer--beat .beat-strong { margin-left: auto; margin-right: auto; }
.story-live .beat-strong { margin-left: 0; margin-right: 0; }
.beat-serif {
  margin: 0;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-variation-settings: var(--display-opsz);
  font-size: clamp(34px, 5vw, 56px);
  line-height: var(--leading-tight); letter-spacing: -0.01em;
}
.beat-kicker {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: var(--leading-snug); letter-spacing: var(--tracking-tight);
  font-weight: var(--weight-semibold); color: var(--text-tertiary);
}
.beat-close {
  margin: 18px 0 0;
  font-family: var(--font-display); font-style: italic;
  font-variation-settings: var(--display-opsz);
  font-size: clamp(17px, 2vw, 21px); color: var(--text-secondary);
}

/* ── Device column ───────────────────────────────────── */
.device-col {
  position: relative; z-index: 2;
  flex: 0 0 auto;
  perspective: 1400px;
  display: flex; flex-direction: column; align-items: center;
}

.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 18px; }
.story-live .chips {
  position: absolute; inset: 0;
  display: block; margin: 0;
  pointer-events: none;
}
.chip-w { position: relative; }
.story-live .chip-w {
  position: absolute; left: 0; z-index: 5;
  opacity: 0;
  will-change: opacity, transform, filter;
}
.story-live #chip-1 { top: 16%; }
.story-live #chip-2 { top: 40%; }
.story-live #chip-3 { top: 63%; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  height: 40px; padding: 0 18px;
  border-radius: var(--radius-capsule);
  background: var(--surface-card);
  box-shadow: var(--shadow-raised);
  font-size: var(--text-subhead); font-weight: var(--weight-medium);
  color: var(--text-secondary); white-space: nowrap;
}

.phone-tilt {
  position: relative; z-index: 2;
  transform-style: preserve-3d;
  will-change: transform;
}
.phone-glow {
  position: absolute; inset: -8% -18%; z-index: 0;
  pointer-events: none; opacity: 0.5;
  background: radial-gradient(ellipse 60% 50% at 50% 45%, rgba(147,122,255,0.4), transparent 70%);
  filter: blur(30px);
}
.story-live .phone-glow { opacity: 0.12; will-change: opacity; }

/* Frame: titanium-style rail with a specular sweep, then a black bezel
   ring, then the display. Proportions track a current 6.1-inch iPhone:
   display aspect ratio 0.46, continuous-curve corners approximated with
   generous radii. */
.phone {
  position: relative;
  height: clamp(430px, 58vh, 640px);
  aspect-ratio: 0.46;
  border-radius: 46px;
  padding: 2.5px;
  background: linear-gradient(160deg, #4a4462 0%, #1a1726 26%, #0a0912 60%, #332e4c 100%);
  box-shadow:
    0 60px 120px rgba(0,0,0,0.55),
    0 24px 48px rgba(23,21,34,0.45),
    0 2px 6px rgba(0,0,0,0.4);
}
.pbtn { position: absolute; background: linear-gradient(90deg, #4a4462, #221e33); }
.pbtn--action { left: -2px;   top: 16.5%; width: 2.5px; height: 4.5%; border-radius: 2px 0 0 2px; }
.pbtn--volup  { left: -2.5px; top: 24.5%; width: 3px;   height: 8.5%; border-radius: 2px 0 0 2px; }
.pbtn--voldn  { left: -2.5px; top: 35%;   width: 3px;   height: 8.5%; border-radius: 2px 0 0 2px; }
.pbtn--side {
  right: -2.5px; top: 27%; width: 3px; height: 13%;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(90deg, #221e33, #4a4462);
}
.phone-bezel {
  position: relative; height: 100%;
  border-radius: 43.5px;
  background: #000; padding: 5px;
}
.phone-screen {
  position: relative; height: 100%;
  border-radius: 38px; overflow: hidden;
  background: #0F0D19;
  font-family: var(--font-ui);
}

/* Screens. Static default shows the cue moment (B). */
.scr { position: absolute; inset: 0; }
.scr-a { z-index: 10; opacity: 0; }
.scr-b { z-index: 12; opacity: 1; }
.scr-c { z-index: 14; opacity: 0; }
.story-live .scr { will-change: opacity; }
.story-live .scr-a { opacity: 1; }
.story-live .scr-b { opacity: 0; }
.story-live .scr-c { opacity: 0; }

/* Screen A: ambient today */
.scr-a__inner { padding: 64px 20px 0; height: 100%; display: flex; flex-direction: column; }
.scr-kicker {
  font-size: 12px; font-weight: 590; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(242,240,247,0.4);
}
.scr-a__title { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: #F2F0F7; margin-top: 4px; }
.scr-a__meta { font-size: 14px; color: rgba(242,240,247,0.5); margin-top: 2px; }
.scr-a__card { margin-top: 26px; background: rgba(242,240,247,0.05); border-radius: 18px; padding: 16px; }
.cue-tick-row { display: flex; align-items: center; gap: 8px; }
.cue-tick { display: inline-block; width: 2.5px; height: 13px; border-radius: 99px; background: #937AFF; }
.cue-tick-label {
  font-size: 11px; font-weight: 590; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(242,240,247,0.45);
}
.scr-a__quiet {
  font-family: var(--font-display); font-style: italic;
  font-variation-settings: var(--display-opsz);
  font-size: 14.5px; color: rgba(242,240,247,0.65); margin-top: 8px;
}
.scr-a__foot {
  margin-top: auto; padding-bottom: 26px; text-align: center;
  font-size: 12px; color: rgba(242,240,247,0.3);
}

/* Screen B: the cue */
.scr-b__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 120% 70% at 50% 30%, rgba(122,100,180,0.55), rgba(15,13,25,0.9) 75%),
    #0F0D19;
}
.scr-b__inner {
  position: relative; height: 100%;
  padding: 60px 22px 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.scr-b__art {
  width: 64%; aspect-ratio: 1; border-radius: 18px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.18), rgba(0,0,0,0.15)),
    #5A4E7A;
  box-shadow: 0 18px 44px rgba(0,0,0,0.5);
}
.scr-b__row { display: flex; align-items: center; gap: 7px; margin-top: 22px; }
.scr-b__row .cue-tick { height: 12px; }
.scr-b__row .cue-tick-label { font-size: 10.5px; letter-spacing: 0.07em; }
.scr-b__cueline {
  font-family: var(--font-display); font-style: italic;
  font-variation-settings: var(--display-opsz);
  font-size: 14px; line-height: 1.35; color: rgba(242,240,247,0.7);
  margin-top: 8px; max-width: 26ch;
}
.scr-b__song { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; color: #F2F0F7; margin-top: 10px; }
.scr-b__artist { font-size: 14px; color: rgba(242,240,247,0.55); margin-top: 2px; }
.scr-b__bottom { margin-top: auto; width: 100%; }
.scr-b__progress { margin-bottom: 16px; }
.scr-b__bar { width: 100%; height: 3.5px; border-radius: 99px; background: rgba(242,240,247,0.15); }
.scr-b__bar-fill { width: 34%; height: 100%; border-radius: 99px; background: rgba(242,240,247,0.75); }
.scr-b__times {
  display: flex; justify-content: space-between; margin-top: 5px;
  font-size: 10.5px; font-weight: 510; color: rgba(242,240,247,0.4);
}
.scr-b__ctl { display: flex; gap: 8px; }
.story-live .scr-b__ctl { opacity: 0; will-change: opacity, transform; }
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 40px; border-radius: 99px;
  background: rgba(242,240,247,0.1); color: #F2F0F7;
  font-size: 14px; font-weight: 590; flex: 1;
}
.pill--play { flex: 1.4; background: #937AFF; color: #14102A; }
.scr-b__saved {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 12px; min-height: 18px;
  font-family: var(--font-display); font-style: italic;
  font-size: 12.5px; color: rgba(242,240,247,0.6);
}
.story-live .scr-b__saved { opacity: 0; will-change: opacity; }

/* Screen C: the week */
.scr-c__inner { padding: 64px 20px 0; height: 100%; display: flex; flex-direction: column; }
.scr-c__title { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: #F2F0F7; margin-top: 4px; }
.scr-c__list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.scr-c__rowitem { display: flex; align-items: center; gap: 12px; }
.scr-c__art { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; }
.scr-c__art--violet { background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.16), rgba(0,0,0,0.12)), #5A4E7A; }
.scr-c__art--rust   { background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.16), rgba(0,0,0,0.12)), #8A5A4E; }
.scr-c__art--blue   { background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.16), rgba(0,0,0,0.12)), #4E6A8A; }
.scr-c__meta { min-width: 0; text-align: left; }
.scr-c__song {
  font-size: 14px; font-weight: 590; color: #F2F0F7;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.scr-c__why {
  font-family: var(--font-display); font-style: italic;
  font-size: 12.5px; color: rgba(242,240,247,0.5);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.scr-c__day { margin-left: auto; font-size: 12px; color: rgba(242,240,247,0.35); }
.scr-c__foot {
  margin-top: auto; padding-bottom: 26px; text-align: center;
  font-family: var(--font-display); font-style: italic;
  font-size: 13px; color: rgba(242,240,247,0.4);
}

/* Status bar, island, glare, home indicator */
.scr-status {
  position: absolute; top: 0; left: 0; right: 0; z-index: 35;
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 28px 0;
  font-size: 13px; font-weight: 590; color: rgba(242,240,247,0.9);
}
.scr-status__icons { display: inline-flex; gap: 5px; align-items: center; }
.island {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  z-index: 40; width: 88px; height: 25px; border-radius: 16px;
  background: #000;
  box-shadow: inset 0 0 2px rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.island__cam {
  position: absolute; right: 8px; width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 36% 32%, #1d2a3a 0%, #0a0d14 55%, #000 100%);
  box-shadow: inset 0 0 1.5px rgba(90,130,200,0.35);
}
.eq { display: flex; align-items: center; gap: 3px; opacity: 1; }
.story-live .eq { opacity: 0; will-change: opacity; }
.eq span {
  width: 2.5px; height: 10px; border-radius: 99px; background: #6FE0CC;
  animation: eq-pulse 1.1s var(--ease-in-out) infinite;
  transform-origin: center;
}
.eq span:nth-child(2) { animation-delay: 180ms; }
.eq span:nth-child(3) { animation-delay: 360ms; }
.screen-glare {
  position: absolute; inset: 0; z-index: 45; pointer-events: none;
  border-radius: 38px;
  background: linear-gradient(115deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.02) 16%, transparent 30%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.home-indicator {
  position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%);
  z-index: 45; width: 118px; height: 4.5px; border-radius: 99px;
  background: rgba(242,240,247,0.35);
}

.scroll-hint {
  display: none;
  position: absolute; bottom: 22px; left: 0; right: 0;
  align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; color: var(--text-tertiary);
  pointer-events: none;
}
.story-live .scroll-hint { display: flex; }

/* ── Narrow viewports (live story) ───────────────────── */
@media (max-width: 700px) {
  .story-live .story-grid {
    flex-direction: column; flex-wrap: nowrap;
    justify-content: flex-start;
    padding-top: 74px; gap: 10px;
  }
  .story-live .story-layers {
    flex: 0 0 auto; width: 100%; min-width: 0; max-width: 560px;
    height: min(33svh, 300px);
  }
  .story-live .layer { text-align: center; align-items: center; }
  .story-live .hero-badge { align-self: center; }
  .story-live .hero-actions { justify-content: center; }
  .story-live .layer h1 { font-size: clamp(30px, 9vw, 38px); margin-bottom: 12px; }
  .story-live .hero-sub { font-size: 15px; margin-bottom: 18px; }
  .story-live .layer--beat h2, .story-live .beat-title { font-size: clamp(25px, 7.5vw, 30px); margin-bottom: 10px; }
  .story-live .beat-copy, .story-live .beat-strong { font-size: 15px; }
  .story-live .beat-serif { font-size: clamp(28px, 8.5vw, 34px); }
  .story-live .beat-kicker { font-size: 17px; }
  .story-live .beat-close { font-size: 15px; margin-top: 12px; }
  .story-live .device-col { flex: 1 1 auto; align-self: center; min-height: 0; }
  .story-live .phone { height: min(50svh, 470px); }
  /* Scale the status bar and island down with the smaller device so the
     time never collides with the island. */
  .scr-status { padding: 12px 20px 0; font-size: 11px; }
  .scr-status__icons svg:first-child { width: 14px; height: 10px; }
  .scr-status__icons svg:last-child { width: 20px; height: 10px; }
  .island { width: 72px; height: 21px; top: 9px; border-radius: 13px; }
  .island__cam { width: 7.5px; height: 7.5px; right: 7px; }
  .scr-a__inner, .scr-c__inner { padding: 52px 16px 0; }
  .scr-b__inner { padding: 50px 18px 20px; }
  .chip { height: 34px; padding: 0 14px; font-size: 13px; gap: 7px; }
  .layer--beat { padding: 28px 0; }
}

/* Proportional device screen.
   The screen contents were designed against a 240px-wide display. cqw
   units scale every screen metric with the actual display width so the
   device stays credible at any size (a 46svh phone on an iPhone SE, a
   640px showpiece on desktop). The px rules above are the fallback for
   browsers without container queries. */
.phone-screen { container-type: inline-size; }
@supports (width: 1cqw) {
  .scr-status { padding: 6.2cqw 11cqw 0; font-size: 5.4cqw; }
  .scr-status__icons svg:first-child { width: 6.7cqw; height: 4.6cqw; }
  .scr-status__icons svg:last-child { width: 9.6cqw; height: 4.6cqw; }
  .island { width: 36.5cqw; height: 10.4cqw; top: 4.2cqw; border-radius: 6.7cqw; }
  .island__cam { width: 3.75cqw; height: 3.75cqw; right: 3.3cqw; }
  .home-indicator { width: 49cqw; height: 1.9cqw; bottom: 2.9cqw; }
  .cue-tick { width: 1.04cqw; height: 5.4cqw; }
  .cue-tick-label { font-size: 4.6cqw; }
  .scr-a__inner { padding: 26.7cqw 8.3cqw 0; }
  .scr-kicker { font-size: 5cqw; }
  .scr-a__title { font-size: 11.7cqw; }
  .scr-a__meta { font-size: 5.8cqw; }
  .scr-a__card { margin-top: 10.8cqw; padding: 6.7cqw; border-radius: 7.5cqw; }
  .scr-a__quiet { font-size: 6cqw; margin-top: 3.3cqw; }
  .scr-a__foot { font-size: 5cqw; padding-bottom: 10.8cqw; }
  .scr-b__inner { padding: 25cqw 9.2cqw 10cqw; }
  .scr-b__row { margin-top: 9.2cqw; }
  .scr-b__row .cue-tick { height: 5cqw; }
  .scr-b__row .cue-tick-label { font-size: 4.4cqw; }
  .scr-b__cueline { font-size: 5.8cqw; margin-top: 3.3cqw; }
  .scr-b__song { font-size: 8.3cqw; margin-top: 4.2cqw; }
  .scr-b__artist { font-size: 5.8cqw; }
  .scr-b__times { font-size: 4.4cqw; }
  .pill { height: 16.7cqw; font-size: 5.8cqw; border-radius: 99px; }
  .scr-b__saved { font-size: 5.2cqw; margin-top: 5cqw; min-height: 7.5cqw; }
  .scr-c__inner { padding: 26.7cqw 8.3cqw 0; }
  .scr-c__title { font-size: 11.7cqw; }
  .scr-c__list { margin-top: 9.2cqw; gap: 5.8cqw; }
  .scr-c__art { width: 17.5cqw; height: 17.5cqw; border-radius: 4.2cqw; }
  .scr-c__song { font-size: 5.8cqw; }
  .scr-c__why { font-size: 5.2cqw; }
  .scr-c__day { font-size: 5cqw; }
  .scr-c__foot { font-size: 5.4cqw; padding-bottom: 10.8cqw; }
}

/* Short phones: tighten the hero so the pinned scene never collides. */
@media (max-width: 700px) and (max-height: 780px) {
  .story-live .hero-badge { display: none; }
  .story-live .layer h1 { font-size: 27px; margin-bottom: 10px; }
  .story-live .hero-sub { font-size: 14px; margin-bottom: 14px; }
  .story-live .hero-actions .fine { display: none; }
  .story-live .btn--lg { height: 44px; padding: 0 22px; font-size: 15px; }
  .story-live .phone { height: min(46svh, 470px); }
}

/* ── Sections below the story ────────────────────────── */
.section { border-top: 1px solid var(--hairline); position: relative; background: var(--bg-canvas); z-index: 3; }
.section__inner { max-width: 1080px; margin: 0 auto; padding: clamp(72px, 10vw, 130px) 20px; }
.section-title {
  margin: 0 0 16px;
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: var(--leading-tight); letter-spacing: var(--tracking-tight);
  font-weight: var(--weight-bold);
}
.section-copy {
  margin: 0 0 14px;
  font-size: var(--text-body-size); line-height: var(--leading-body);
  color: var(--text-secondary); text-wrap: pretty;
}
.section-copy:last-child { margin-bottom: 0; }

.ctx__intro { max-width: 560px; margin-bottom: clamp(40px, 5vw, 60px); }
.ctx__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.ctx-card {
  background: var(--surface-card); border-radius: 20px; padding: 20px;
  box-shadow: var(--shadow-card);
}
.ctx-card h3 {
  font-size: var(--text-body-size); font-weight: var(--weight-semibold);
  margin: 12px 0 4px;
}
.ctx-card p {
  margin: 0;
  font-size: var(--text-footnote); color: var(--text-tertiary);
  line-height: var(--leading-snug);
}

.rhythm__inner {
  max-width: 1080px; margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 20px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(40px, 6vw, 90px); justify-content: center;
}
.rhythm__stack { flex: 0 1 380px; min-width: 280px; display: flex; flex-direction: column; gap: 12px; }
.cue-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface-card); border-radius: 16px;
  padding: 12px 14px; box-shadow: var(--shadow-card);
}
.cue-card:nth-child(1) { transform: rotate(0.9deg) translateX(-8px); }
.cue-card:nth-child(2) { transform: rotate(-1.2deg); }
.cue-card:nth-child(3) { transform: rotate(0.8deg) translateX(14px); }
.cue-card:nth-child(4) { transform: rotate(-0.6deg); }
.cue-card__art {
  width: 48px; height: 48px; border-radius: var(--radius-artwork-sm);
  flex-shrink: 0; box-shadow: var(--shadow-artwork);
}
.cue-card__art--slate  { background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.14), rgba(0,0,0,0.10)), #4E5A7A; }
.cue-card__art--rust   { background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.14), rgba(0,0,0,0.10)), #8A5A4E; }
.cue-card__art--blue   { background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.14), rgba(0,0,0,0.10)), #4E6A8A; }
.cue-card__art--violet { background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.14), rgba(0,0,0,0.10)), #6A4E8A; }
.cue-card__meta { min-width: 0; }
.cue-card__why {
  font-family: var(--font-display); font-style: italic;
  font-variation-settings: var(--display-opsz);
  font-size: 14px; color: var(--text-secondary);
}
.cue-card__song { font-size: var(--text-subhead); font-weight: var(--weight-semibold); }
.rhythm__copy { flex: 1 1 340px; min-width: 280px; max-width: 480px; }
.rhythm__strong {
  margin: 0;
  font-size: var(--text-body-size); line-height: var(--leading-body);
  color: var(--text-body); font-weight: var(--weight-semibold);
}
.works-with {
  display: flex; align-items: center; gap: 8px; margin-top: 24px;
  color: var(--text-tertiary); font-size: var(--text-footnote);
}

.privacy-blurb__inner {
  max-width: 720px; margin: 0 auto;
  padding: clamp(64px, 8vw, 100px) 20px;
  text-align: center;
}
.privacy-blurb__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--mint-soft); margin-bottom: 20px;
}
.privacy-blurb h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: var(--leading-tight); letter-spacing: var(--tracking-tight);
  font-weight: var(--weight-bold);
}
.privacy-blurb p {
  margin: 0 auto 14px;
  font-size: var(--text-body-size); line-height: var(--leading-body);
  color: var(--text-secondary); max-width: 52ch; text-wrap: pretty;
}
.privacy-blurb .link-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 22px; padding: 8px 0;
  color: var(--cue);
  font-size: var(--text-subhead); font-weight: var(--weight-medium);
}
.privacy-blurb .link-more:hover { color: var(--cue-strong); }

.cta { border-top: 1px solid var(--hairline); position: relative; overflow: hidden; }
.cta__wash {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(147,122,255,0.14), transparent 70%);
}
.cta__inner {
  position: relative;
  max-width: 720px; margin: 0 auto;
  padding: clamp(88px, 12vw, 150px) 20px;
  text-align: center;
}
.cta__logo { display: flex; justify-content: center; margin-bottom: 26px; }
.cta__logo img { width: 44px; height: 41px; }
.cta h2 {
  margin: 0 0 30px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: var(--leading-tight); letter-spacing: var(--tracking-tight);
  font-weight: var(--weight-bold);
}
.cta__actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta__actions .fine { font-size: var(--text-footnote); color: var(--text-tertiary); }
.cta__actions .placeholder-note { font-size: var(--text-caption); color: var(--ink-4); }
