.site-shell {
  position: relative;
  overflow-x: clip;
  color: var(--color-text);
  background: var(--color-bg);
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 12%, color-mix(in srgb, var(--color-accent) 20%, transparent), transparent 24%),
    radial-gradient(circle at 82% 10%, color-mix(in srgb, var(--color-surface) 11%, transparent), transparent 22%),
    radial-gradient(circle at 50% 102%, color-mix(in srgb, var(--color-accent) 14%, transparent), transparent 34%),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--color-bg) 96%, black) 0%,
      color-mix(in srgb, var(--color-bg) 84%, var(--color-accent) 16%) 42%,
      var(--color-bg) 100%
    );
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: -18% -10%;
  background:
    radial-gradient(circle at 18% 24%, color-mix(in srgb, var(--color-accent) 32%, transparent), transparent 22%),
    radial-gradient(circle at 72% 18%, color-mix(in srgb, var(--color-surface) 18%, transparent), transparent 18%),
    radial-gradient(circle at 58% 72%, color-mix(in srgb, var(--color-accent) 18%, transparent), transparent 22%),
    radial-gradient(circle at 42% 46%, rgba(255, 255, 255, 0.06), transparent 18%);
  filter: blur(76px);
  mix-blend-mode: screen;
  opacity: 0.62;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.08), transparent 58%);
  background-size: 56px 56px, 56px 56px, 100% 100%;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.94) 12%, rgba(0, 0, 0, 0.94) 88%, transparent);
  opacity: 0.12;
}

.site-weather {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.site-weather__particle {
  position: absolute;
  left: var(--particle-left, 50%);
  opacity: 0.6;
}

.site-weather--snow .site-weather__particle {
  top: -12vh;
  width: var(--particle-size, 8px);
  height: var(--particle-size, 8px);
  border-radius: 50%;
  background: color-mix(in srgb, var(--weather-tint, #ffffff) 90%, transparent);
  box-shadow:
    0 0 12px color-mix(in srgb, var(--weather-tint, #ffffff) 24%, transparent),
    0 0 2px rgba(255, 255, 255, 0.8);
  animation: decorSnowFall var(--particle-duration, 14s) linear infinite;
  animation-delay: var(--particle-delay, 0s);
}

.site-weather--rain .site-weather__particle {
  top: -24vh;
  width: var(--particle-width, 1.6px);
  height: var(--particle-height, 88px);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--weather-tint, #ffffff) 34%, transparent) 22%,
    color-mix(in srgb, var(--weather-tint, #ffffff) 88%, transparent) 100%
  );
  box-shadow: 0 0 10px color-mix(in srgb, var(--weather-tint, #ffffff) 14%, transparent);
  transform: rotate(10deg);
  animation: decorRainFall var(--particle-duration, 1.6s) linear infinite;
  animation-delay: var(--particle-delay, 0s);
}

.site-weather--bubbles .site-weather__particle {
  bottom: -14vh;
  width: var(--particle-size, 14px);
  height: var(--particle-size, 14px);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--weather-tint, #ffffff) 34%, transparent);
  background: radial-gradient(
    circle at 34% 34%,
    color-mix(in srgb, var(--weather-tint, #ffffff) 44%, transparent),
    color-mix(in srgb, var(--weather-tint, #ffffff) 8%, transparent) 58%,
    transparent 74%
  );
  box-shadow: 0 0 18px color-mix(in srgb, var(--weather-tint, #ffffff) 10%, transparent);
  animation: decorBubbleRise var(--particle-duration, 12s) linear infinite;
  animation-delay: var(--particle-delay, 0s);
}

.site-weather--embers .site-weather__particle {
  bottom: -12vh;
  width: var(--particle-size, 8px);
  height: var(--particle-size, 8px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--weather-tint, #ff9b45) 92%, white 8%) 0%,
    color-mix(in srgb, var(--weather-tint, #ff9b45) 78%, transparent) 42%,
    transparent 76%
  );
  box-shadow:
    0 0 14px color-mix(in srgb, var(--weather-tint, #ff9b45) 28%, transparent),
    0 0 28px color-mix(in srgb, var(--weather-tint, #ff9b45) 14%, transparent);
  animation: decorEmberRise var(--particle-duration, 9s) ease-out infinite;
  animation-delay: var(--particle-delay, 0s);
}

.site-weather--stars .site-weather__particle {
  top: var(--particle-top, 50%);
  width: var(--particle-size, 3px);
  height: var(--particle-size, 3px);
  border-radius: 50%;
  background: color-mix(in srgb, var(--weather-tint, #ffffff) 94%, transparent);
  box-shadow:
    0 0 10px color-mix(in srgb, var(--weather-tint, #ffffff) 24%, transparent),
    0 0 22px color-mix(in srgb, var(--weather-tint, #ffffff) 10%, transparent);
  animation: decorStarTwinkle var(--particle-duration, 4.4s) ease-in-out infinite;
  animation-delay: var(--particle-delay, 0s);
}

.site-weather--mist::before,
.site-weather--mist::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 28%, color-mix(in srgb, var(--weather-tint, #ffffff) 24%, transparent), transparent 52%),
    radial-gradient(circle at 74% 18%, color-mix(in srgb, var(--weather-tint, #ffffff) 16%, transparent), transparent 46%),
    radial-gradient(circle at 62% 74%, color-mix(in srgb, var(--weather-tint, #ffffff) 18%, transparent), transparent 54%);
  filter: blur(52px);
  opacity: 0.32;
}

.site-weather--mist::before {
  animation: decorMistDrift 18s ease-in-out infinite alternate;
}

.site-weather--mist::after {
  opacity: 0.22;
  animation: decorMistDrift 24s ease-in-out infinite alternate-reverse;
}

.site-weather--mist.site-weather--low::before,
.site-weather--mist.site-weather--low::after {
  opacity: 0.18;
}

.site-weather--mist.site-weather--medium::before {
  opacity: 0.28;
}

.site-weather--mist.site-weather--medium::after {
  opacity: 0.18;
}

.site-weather--mist.site-weather--high::before {
  opacity: 0.38;
}

.site-weather--mist.site-weather--high::after {
  opacity: 0.28;
}

@media (pointer: fine) {
  .site-shell.has-custom-cursor,
  .site-shell.has-custom-cursor a,
  .site-shell.has-custom-cursor button,
  .site-shell.has-custom-cursor [role="button"] {
    cursor: none;
  }

  .site-shell.has-custom-cursor input,
  .site-shell.has-custom-cursor textarea {
    cursor: text;
  }

  .site-shell.has-custom-cursor select,
  .site-shell.has-custom-cursor label {
    cursor: auto;
  }

  .site-cursor {
    --cursor-x: 50vw;
    --cursor-y: 50vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 90;
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms var(--ease-out);
  }

  .site-shell.is-cursor-visible .site-cursor {
    opacity: 1;
  }

  .site-shell.is-cursor-hidden .site-cursor {
    opacity: 0;
  }

  .site-cursor__ring,
  .site-cursor__badge {
    position: fixed;
    left: 0;
    top: 0;
    transform: translate3d(calc(var(--cursor-x) - 50%), calc(var(--cursor-y) - 50%), 0);
    will-change: transform, width, height, opacity, background-color, border-color, box-shadow, color;
  }

  .site-cursor__ring {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(242, 242, 242, 0.54);
    background: rgba(255, 255, 255, 0.02);
    box-shadow:
      0 0 0 1px rgba(8, 135, 248, 0.08),
      0 0 22px rgba(8, 135, 248, 0.08);
    transition:
      transform 240ms var(--ease-out),
      width 240ms var(--ease-out),
      height 240ms var(--ease-out),
      border-color 240ms var(--ease-out),
      background-color 240ms var(--ease-out),
      box-shadow 240ms var(--ease-out),
      opacity 180ms var(--ease-out);
  }

  .site-cursor__badge {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(8, 10, 14, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f7f8fb;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 10px 26px rgba(8, 135, 248, 0.14);
    transition:
      transform 180ms var(--ease-out),
      width 220ms var(--ease-out),
      height 220ms var(--ease-out),
      background-color 220ms var(--ease-out),
      border-color 220ms var(--ease-out),
      color 220ms var(--ease-out),
      box-shadow 220ms var(--ease-out),
      opacity 180ms var(--ease-out);
  }

  .site-cursor__badge--brand {
    grid-template-rows: repeat(2, auto);
    gap: 1px;
    padding: 6px 5px 5px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.36rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 0.9;
    text-transform: uppercase;
  }

  .site-cursor__badge--brand span:last-child {
    letter-spacing: 0.22em;
  }

  .site-cursor__badge--capsule {
    width: auto;
    min-width: 74px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.38rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
  }

  .site-cursor__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f7f8fb;
    box-shadow: 0 0 18px rgba(8, 135, 248, 0.18);
    transition:
      transform 140ms linear,
      width 220ms var(--ease-out),
      height 220ms var(--ease-out),
      background-color 220ms var(--ease-out),
      box-shadow 220ms var(--ease-out),
      opacity 180ms var(--ease-out);
  }

  .site-cursor__badge--media {
    opacity: 0;
    font-size: 0.42rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .site-shell[data-tone="light"] .site-cursor__ring {
    border-color: rgba(16, 16, 16, 0.46);
    background: rgba(16, 16, 16, 0.02);
    box-shadow:
      0 0 0 1px rgba(8, 135, 248, 0.06),
      0 0 18px rgba(8, 135, 248, 0.06);
  }

  .site-shell[data-tone="light"] .site-cursor__badge {
    background: color-mix(in srgb, var(--color-surface) 92%, white);
    border-color: color-mix(in srgb, var(--color-surface-strong) 8%, transparent);
    color: var(--color-surface-strong);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      0 10px 22px rgba(16, 16, 16, 0.08);
  }

  .site-shell[data-tone="light"] .site-cursor__dot {
    background: var(--color-surface-strong);
    box-shadow: 0 0 16px color-mix(in srgb, var(--color-accent) 12%, transparent);
  }

  .site-cursor[data-style="dot-ring"] .site-cursor__badge--brand,
  .site-cursor[data-style="dot-ring"] .site-cursor__badge--media {
    opacity: 0;
  }

  .site-cursor[data-style="monogram"] .site-cursor__dot {
    opacity: 0;
  }

  .site-cursor[data-style="radar"] .site-cursor__badge--brand,
  .site-cursor[data-style="radar"] .site-cursor__badge--capsule,
  .site-cursor[data-style="radar"] .site-cursor__badge--media {
    opacity: 0;
  }

  .site-cursor[data-style="radar"] .site-cursor__ring {
    width: 64px;
    height: 64px;
    overflow: visible;
    border-color: rgba(127, 202, 255, 0.6);
    background:
      radial-gradient(circle, rgba(8, 135, 248, 0.12), transparent 64%),
      rgba(8, 10, 14, 0.04);
    box-shadow:
      0 0 0 1px rgba(8, 135, 248, 0.18),
      0 0 28px rgba(8, 135, 248, 0.18);
    animation: cursorRadarPulse 2.9s ease-in-out infinite;
  }

  .site-cursor[data-style="radar"] .site-cursor__ring::before,
  .site-cursor[data-style="radar"] .site-cursor__ring::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: rgba(127, 202, 255, 0.34);
    transform: translate(-50%, -50%);
  }

  .site-cursor[data-style="radar"] .site-cursor__ring::before {
    width: 94px;
    height: 1px;
  }

  .site-cursor[data-style="radar"] .site-cursor__ring::after {
    width: 1px;
    height: 94px;
  }

  .site-cursor[data-style="radar"] .site-cursor__dot {
    width: 6px;
    height: 6px;
    background: #92d4ff;
    box-shadow: 0 0 18px rgba(8, 135, 248, 0.24);
  }

  .site-cursor[data-style="capsule"] .site-cursor__ring {
    width: 108px;
    height: 42px;
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(8, 10, 14, 0.08);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 12px 26px rgba(8, 10, 14, 0.2);
  }

  .site-cursor[data-style="capsule"] .site-cursor__badge--brand,
  .site-cursor[data-style="capsule"] .site-cursor__badge--media,
  .site-cursor[data-style="capsule"] .site-cursor__dot {
    opacity: 0;
  }

  .site-cursor[data-style="capsule"] .site-cursor__badge--capsule {
    opacity: 1;
  }

  .site-cursor[data-style="play"] .site-cursor__ring {
    width: 70px;
    height: 70px;
    border-color: rgba(255, 255, 255, 0.22);
    background:
      radial-gradient(circle, rgba(8, 135, 248, 0.08), transparent 66%),
      rgba(8, 10, 14, 0.04);
  }

  .site-cursor[data-style="play"] .site-cursor__badge--brand,
  .site-cursor[data-style="play"] .site-cursor__badge--capsule,
  .site-cursor[data-style="play"] .site-cursor__dot {
    opacity: 0;
  }

  .site-cursor[data-style="play"] .site-cursor__badge--media {
    opacity: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(8, 10, 14, 0.9);
  }

  .site-cursor[data-style="wave"] .site-cursor__badge--brand,
  .site-cursor[data-style="wave"] .site-cursor__badge--capsule {
    opacity: 0;
  }

  .site-cursor[data-style="wave"] .site-cursor__ring {
    width: 62px;
    height: 62px;
    overflow: visible;
    border-color: rgba(119, 204, 255, 0.58);
    background:
      radial-gradient(circle, rgba(8, 135, 248, 0.11), transparent 68%),
      rgba(8, 10, 14, 0.02);
    box-shadow:
      0 0 0 1px rgba(8, 135, 248, 0.14),
      0 0 26px rgba(8, 135, 248, 0.18);
    animation: cursorWavePulse 3.6s ease-in-out infinite;
  }

  .site-cursor[data-style="wave"] .site-cursor__ring::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    border: 1px solid rgba(119, 204, 255, 0.24);
    animation: cursorWaveHalo 3.6s ease-out infinite;
  }

  .site-cursor[data-style="wave"] .site-cursor__dot {
    width: 10px;
    height: 10px;
    background: #89d6ff;
    box-shadow: 0 0 26px rgba(8, 135, 248, 0.34);
  }

  .site-shell[data-cursor-state="action"] .site-cursor__ring {
    width: 68px;
    height: 68px;
    border-color: rgba(8, 135, 248, 0.46);
    background: rgba(8, 135, 248, 0.08);
    box-shadow:
      0 0 0 1px rgba(8, 135, 248, 0.16),
      0 0 34px rgba(8, 135, 248, 0.16);
  }

  .site-shell[data-cursor-state="action"] .site-cursor__dot {
    width: 10px;
    height: 10px;
    background: #7fc4ff;
    box-shadow: 0 0 22px rgba(8, 135, 248, 0.26);
  }

  .site-shell[data-cursor-state="action"] .site-cursor__badge {
    width: 44px;
    height: 44px;
    background: rgba(8, 18, 34, 0.92);
    border-color: rgba(8, 135, 248, 0.24);
    color: #8accff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 14px 28px rgba(8, 135, 248, 0.2);
  }

  .site-shell[data-cursor-state="action"] .site-cursor[data-style="dot-ring"] .site-cursor__badge--brand {
    opacity: 0;
  }

  .site-shell[data-cursor-state="media"] .site-cursor__ring {
    width: 82px;
    height: 82px;
    border-color: rgba(255, 255, 255, 0.66);
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.14),
      0 0 42px rgba(8, 135, 248, 0.16);
  }

  .site-shell[data-tone="light"][data-cursor-state="media"] .site-cursor__ring {
    border-color: rgba(16, 16, 16, 0.54);
    background: rgba(16, 16, 16, 0.04);
    box-shadow:
      0 0 0 1px rgba(16, 16, 16, 0.08),
      0 0 32px rgba(8, 135, 248, 0.12);
  }

  .site-shell[data-cursor-state="media"] .site-cursor__dot,
  .site-shell[data-cursor-state="media"] .site-cursor__badge--brand {
    opacity: 0;
  }

  .site-shell[data-cursor-state="media"] .site-cursor__badge--media {
    opacity: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(8, 10, 14, 0.88);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 12px 28px rgba(8, 135, 248, 0.18);
  }

  .site-shell[data-tone="light"][data-cursor-state="media"] .site-cursor__badge--media {
    background: rgba(244, 241, 235, 0.94);
    border-color: rgba(16, 16, 16, 0.12);
    color: #101010;
  }

  .site-shell[data-cursor-state="action"] .site-cursor[data-style="capsule"] .site-cursor__ring {
    width: 118px;
    height: 46px;
    border-color: rgba(8, 135, 248, 0.26);
  }

  .site-shell[data-cursor-state="action"] .site-cursor[data-style="capsule"] .site-cursor__badge--capsule {
    background: rgba(8, 18, 34, 0.92);
    border-color: rgba(8, 135, 248, 0.22);
    color: #8accff;
  }

  .site-shell[data-cursor-state="media"] .site-cursor[data-style="radar"] .site-cursor__dot {
    opacity: 1;
  }

  .site-shell[data-cursor-state="media"] .site-cursor[data-style="radar"] .site-cursor__badge--media {
    opacity: 0;
  }

  .site-shell[data-cursor-state="media"] .site-cursor[data-style="wave"] .site-cursor__badge--media {
    opacity: 1;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.76), rgba(8, 8, 10, 0.62));
  backdrop-filter: blur(22px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    background-color var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out);
}

.site-shell[data-tone="light"] .site-header {
  border-color: rgba(16, 16, 16, 0.08);
  background:
    linear-gradient(180deg, rgba(244, 241, 235, 0.9), rgba(244, 241, 235, 0.8));
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  transition:
    min-height var(--duration-base) var(--ease-out),
    gap var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.site-header__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
  transition:
    gap var(--duration-base) var(--ease-out),
    opacity var(--duration-base) var(--ease-out);
}

.brand-mark {
  display: inline-grid;
  gap: 4px;
  text-decoration: none;
}

.brand-mark__surface {
  display: inline-flex;
  align-items: center;
}

.brand-mark__surface img {
  width: auto;
  height: 34px;
  transition:
    filter var(--duration-base) var(--ease-out),
    height var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.site-shell[data-tone="dark"] .brand-mark__surface img {
  filter: invert(1);
}

.brand-mark__caption {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition:
    color var(--duration-base) var(--ease-out),
    opacity var(--duration-base) var(--ease-out),
    max-height var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.site-shell[data-tone="light"] .brand-mark__caption {
  color: rgba(16, 16, 16, 0.5);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px;
  transition:
    opacity var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out),
    max-height var(--duration-base) var(--ease-out);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px);
}

.site-shell[data-tone="light"] .language-switch {
  border-color: rgba(16, 16, 16, 0.1);
  background: rgba(16, 16, 16, 0.04);
}

.language-switch__button {
  min-width: 48px;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    background-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.site-shell[data-tone="light"] .language-switch__button {
  color: rgba(16, 16, 16, 0.68);
}

.language-switch__button:hover {
  transform: translateY(-1px);
  color: #ffffff;
}

.site-shell[data-tone="light"] .language-switch__button:hover {
  color: #101010;
}

.language-switch__button.is-active {
  color: #ffffff;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 72%, rgba(255, 255, 255, 0.16)), color-mix(in srgb, var(--color-accent) 58%, rgba(3, 10, 18, 0.18)));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 24px color-mix(in srgb, var(--color-accent) 26%, transparent);
}

.site-shell[data-tone="light"] .language-switch__button.is-active {
  color: #101010;
  background: color-mix(in srgb, var(--color-accent) 30%, rgba(16, 16, 16, 0.06));
}

/* Flag-SVG variant of the language switch (promo). Scoped to buttons that
   contain an <svg> via :has(), so text-only switches elsewhere stay untouched. */
.language-switch__button:has(svg) {
  min-width: 0;
  padding: 5px 8px;
}
.language-switch__button svg {
  height: 14px;
  width: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.language-switch__button:not(.is-active) svg {
  filter: grayscale(0.85) opacity(0.55);
}
.language-switch__button:not(.is-active):hover svg {
  filter: grayscale(0) opacity(0.9);
}

.page-utility-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: clamp(18px, 3vw, 30px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition:
    transform var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition:
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.site-shell[data-tone="light"] .site-nav a {
  color: rgba(16, 16, 16, 0.62);
}

.site-nav a.is-active,
.site-nav a:hover {
  transform: translateY(-1px);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.14);
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.site-shell[data-tone="light"] .site-nav a.is-active,
.site-shell[data-tone="light"] .site-nav a:hover {
  color: #101010;
  border-color: rgba(16, 16, 16, 0.1);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.08), rgba(16, 16, 16, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 28px rgba(16, 16, 16, 0.08);
}

.section-anchor {
  scroll-margin-top: 100px;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: clamp(36px, 5vw, 72px) 0 0;
  color: var(--color-text);
  overflow: clip;
  background:
    radial-gradient(circle at 76% 34%, rgba(8, 135, 248, 0.18), transparent 24%),
    radial-gradient(circle at 28% 78%, rgba(8, 135, 248, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
    linear-gradient(180deg, rgba(2, 8, 14, 0.88) 0%, rgba(4, 10, 18, 0.72) 34%, rgba(3, 8, 14, 0.88) 100%);
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stage::before {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 50% 44%, rgba(8, 135, 248, 0.16), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 28%, transparent 68%, rgba(8, 135, 248, 0.1));
  opacity: 0.9;
}

.hero-stage::after {
  z-index: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7) 0.7px, transparent 0.7px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0.7px, transparent 0.7px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.hero-stage__fluid-canvas-wrap {
  position: absolute;
  inset: -4% -6% 8%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform-origin: center center;
  mix-blend-mode: screen;
  filter: saturate(1.18) contrast(1.1);
  mask-image: radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.88) 52%, transparent 94%);
}

.hero-stage[data-fluid-state="enhanced"] .hero-stage__fluid-canvas-wrap {
  opacity: 0.9;
}

.hero-stage__fluid-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-stage__liquid-field {
  position: absolute;
  inset: 10% 0 8%;
  z-index: 1;
  pointer-events: none;
}

.hero-stage__liquid-field::before,
.hero-stage__liquid-field::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  mix-blend-mode: screen;
}

.hero-stage__liquid-field::before {
  inset: auto 4% 2% auto;
  width: min(52vw, 620px);
  height: min(52vw, 620px);
  background:
    radial-gradient(circle at 50% 52%, rgba(8, 135, 248, 0.24), transparent 52%),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.12), transparent 66%);
  opacity: 0.92;
  animation: liquidDrift 14s ease-in-out infinite alternate;
}

.hero-stage__liquid-field::after {
  inset: 8% auto auto 4%;
  width: min(36vw, 420px);
  height: min(36vw, 420px);
  background:
    radial-gradient(circle at 44% 38%, rgba(255, 255, 255, 0.16), transparent 48%),
    radial-gradient(circle at 52% 58%, rgba(8, 135, 248, 0.14), transparent 64%);
  opacity: 0.84;
  animation: liquidDriftReverse 11s ease-in-out infinite alternate;
}

.hero-stage__liquid-bubble {
  position: absolute;
  bottom: 4%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(242, 242, 242, 0.24);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.34), rgba(8, 135, 248, 0.08) 55%, transparent 72%);
  box-shadow: 0 0 32px rgba(8, 135, 248, 0.12);
  opacity: 0.46;
  animation: bubbleRise 11s linear infinite;
}

.hero-stage__liquid-bubble--1 {
  left: 58%;
  animation-delay: -2s;
}

.hero-stage__liquid-bubble--2 {
  left: 72%;
  width: 16px;
  height: 16px;
  animation-duration: 9.5s;
  animation-delay: -5s;
}

.hero-stage__liquid-bubble--3 {
  left: 82%;
  width: 30px;
  height: 30px;
  animation-duration: 13s;
  animation-delay: -8s;
}

.hero-stage__water-surface {
  position: absolute;
  inset: 30% -10% -2%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 16%, rgba(0, 0, 0, 0.88) 42%, #000 100%);
}

.hero-stage__water-surface::before,
.hero-stage__water-surface::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-stage__water-surface::before {
  background:
    linear-gradient(180deg, rgba(5, 16, 30, 0) 0%, rgba(5, 16, 30, 0.16) 16%, rgba(3, 10, 18, 0.82) 68%, rgba(2, 6, 10, 0.96) 100%),
    radial-gradient(circle at 50% 8%, rgba(142, 222, 255, 0.12), transparent 34%);
}

.hero-stage__water-surface::after {
  inset: auto -6% 28% -6%;
  height: 18%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  filter: blur(18px);
  opacity: 0.28;
  animation: heroWaterShimmer 10s ease-in-out infinite alternate;
}

.hero-stage__water-layer {
  position: absolute;
  left: -14%;
  right: -14%;
  bottom: -10%;
  background-repeat: repeat-x;
  transform-origin: center bottom;
}

.hero-stage__water-layer--back {
  height: 72%;
  opacity: 0.34;
  filter: blur(10px);
  background-image:
    radial-gradient(ellipse at 50% 100%, rgba(117, 208, 255, 0.22) 0%, rgba(117, 208, 255, 0.12) 32%, transparent 44%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 26%, transparent 38%);
  background-size: 440px 138px, 320px 92px;
  background-position: 0 100%, 170px calc(100% - 34px);
  animation: heroWaterFlowBack 38s linear infinite;
}

.hero-stage__water-layer--mid {
  height: 62%;
  opacity: 0.5;
  filter: blur(4px);
  background-image:
    radial-gradient(ellipse at 50% 100%, rgba(120, 212, 255, 0.26) 0%, rgba(120, 212, 255, 0.16) 28%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 22%, transparent 34%);
  background-size: 340px 112px, 250px 74px;
  background-position: 0 100%, 132px calc(100% - 24px);
  animation: heroWaterFlowMid 26s linear infinite;
}

.hero-stage__water-layer--front {
  height: 52%;
  opacity: 0.74;
  background-image:
    radial-gradient(ellipse at 50% 100%, rgba(178, 234, 255, 0.28) 0%, rgba(86, 183, 255, 0.2) 24%, rgba(26, 97, 148, 0.08) 34%, transparent 42%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.07) 18%, transparent 30%);
  background-size: 250px 94px, 190px 58px;
  background-position: 0 100%, 94px calc(100% - 16px);
  animation: heroWaterFlowFront 18s linear infinite;
}

.hero-stage__mesh,
.hero-stage__orb {
  position: absolute;
  pointer-events: none;
}

.hero-stage__mesh {
  inset: 9% 6% 18%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 84%);
  opacity: 0.34;
}

.hero-stage__orb {
  border-radius: 50%;
  filter: blur(48px);
}

.hero-stage__orb--left {
  width: 360px;
  height: 360px;
  top: 4%;
  left: -6%;
  background: radial-gradient(circle, rgba(8, 135, 248, 0.32), rgba(8, 135, 248, 0.08) 56%, transparent 72%);
}

.hero-stage__orb--right {
  width: 440px;
  height: 440px;
  right: -10%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(86, 183, 255, 0.18), rgba(255, 94, 0, 0.08) 52%, transparent 74%);
}

.hero-stage__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: min(78vh, 820px);
  align-items: center;
  justify-items: center;
}

.hero-stage__copy {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: clamp(18px, 2.45vw, 32px);
  max-width: 1024px;
  padding-block: clamp(42px, 6.8vw, 96px);
  padding-inline: clamp(18px, 2.2vw, 28px);
  justify-items: center;
  text-align: center;
}

.hero-stage__copy::before,
.hero-stage__copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: -1;
}

.hero-stage__copy::before {
  inset: -8% -10% -14%;
  background:
    radial-gradient(circle at 50% 34%, rgba(3, 10, 18, 0.92), rgba(3, 10, 18, 0.58) 42%, transparent 76%),
    radial-gradient(circle at 50% 36%, rgba(8, 135, 248, 0.14), transparent 58%);
  filter: blur(30px);
  opacity: 0.96;
}

.hero-stage__copy::after {
  top: 50%;
  left: 50%;
  width: min(72vw, 820px);
  height: min(72vw, 820px);
  transform: translate(-50%, -48%);
  background:
    radial-gradient(circle, rgba(8, 135, 248, 0.16), rgba(8, 135, 248, 0.06) 40%, transparent 68%);
  filter: blur(48px);
  opacity: 0.82;
}

.hero-stage__eyebrow {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: auto;
  padding: 0;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--section-eyebrow-color, var(--color-text-soft)) 72%, #f7fbff 28%);
}

.hero-stage__eyebrow::after {
  content: "";
  width: 92px;
  height: 1px;
  justify-self: center;
  background: linear-gradient(90deg, transparent, rgba(242, 242, 242, 0.74), transparent);
  box-shadow: 0 0 18px rgba(8, 135, 248, 0.22);
}

.hero-stage__brandlockup {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  min-height: clamp(56px, 9vw, 94px);
  padding-inline: clamp(16px, 3vw, 30px);
}

.hero-stage__brand-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(136px, 18vw, 208px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 32%, transparent 64%),
    radial-gradient(circle, color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 24%, transparent), transparent 66%);
  filter: blur(16px);
  opacity: 0.78;
  pointer-events: none;
  z-index: -2;
}

.hero-stage__brand-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(112px, 14vw, 164px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.hero-stage__brand-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.02),
    0 0 24px color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 10%, transparent);
}

.hero-stage__brand-rings span:last-child {
  inset: 12%;
  opacity: 0.56;
}

.hero-stage__brandmark {
  position: relative;
  z-index: 1;
  width: clamp(84px, 9vw, 118px);
  height: auto;
  opacity: 0.96;
  filter: invert(1) drop-shadow(0 0 18px rgba(255, 255, 255, 0.14));
}

.hero-stage__headline {
  position: relative;
  display: grid;
  margin: 0;
  font-family: var(--font-display);
  gap: 0;
  font-size: clamp(4.9rem, 13.8vw, 9.8rem);
  line-height: 0.81;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  color: var(--section-title-color, var(--color-text));
  text-shadow: 0 6px 34px rgba(0, 0, 0, 0.34);
}

.hero-stage__headline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.12em;
  width: min(52vw, 420px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 26%, transparent);
  opacity: 0.66;
}

.hero-stage__headline-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
}

.hero-stage__headline-line--accent {
  margin-top: -0.1em;
}

.hero-stage__headline-word {
  position: relative;
  display: block;
  text-wrap: balance;
  will-change: transform, opacity;
}

.hero-stage__headline-word-inner {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.hero-stage__headline-word.is-accent {
  color: color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 64%, #f7fbff 36%);
  -webkit-text-stroke: 0 transparent;
  text-shadow:
    0 0 22px color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 14%, transparent),
    0 10px 32px rgba(0, 0, 0, 0.26);
}

.hero-stage__lede {
  max-width: 40rem;
  margin: 0;
  color: color-mix(in srgb, var(--section-description-color, var(--color-text)) 80%, #f3f8ff 20%);
  font-size: clamp(1.06rem, 1.22vw, 1.18rem);
  font-weight: 520;
  line-height: 1.9;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.32);
  text-wrap: balance;
}

.hero-stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
  justify-content: center;
}

.hero-stage__actions .button {
  min-width: 208px;
  justify-content: center;
  box-shadow: 0 18px 44px rgba(2, 8, 14, 0.24);
}

.hero-stage__supporting-text {
  max-width: 37rem;
  margin: 2px auto 0;
  color: color-mix(in srgb, var(--section-description-color, var(--color-text)) 70%, #edf6ff 30%);
  font-size: clamp(0.92rem, 1vw, 0.98rem);
  line-height: 1.82;
  letter-spacing: 0.008em;
  text-wrap: balance;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.26);
}

.hero-stage__eyebrow,
.hero-stage__brandlockup,
.hero-stage__brand-aura,
.hero-stage__brand-rings,
.hero-stage__lede,
.hero-stage__actions,
.hero-stage__supporting-text,
.hero-stage__marquee,
.hero-stage__waterline,
.hero-stage__copy {
  will-change: transform, opacity;
}

.hero-stage__meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-stage__meta-strip span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--section-meta-color, color-mix(in srgb, var(--color-text) 56%, transparent)) 82%, #f6fbff 18%);
}

.site-shell .button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(14px);
}

.site-shell .button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.2), transparent 24%, transparent 70%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 68%);
  opacity: 0.78;
  pointer-events: none;
}

.site-shell .button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--color-accent) 62%, rgba(255, 255, 255, 0.14)),
    0 0 0 7px color-mix(in srgb, var(--color-accent) 16%, transparent);
}

.site-shell .button:hover {
  transform: translateY(-2px);
}

.site-shell .button:active {
  transform: translateY(0);
}

.site-shell .button--primary {
  border-color: color-mix(in srgb, var(--color-accent) 46%, rgba(255, 255, 255, 0.12));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--color-accent) 90%, #ffffff 10%), color-mix(in srgb, var(--color-accent) 72%, #04101b 28%));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -10px 18px rgba(3, 10, 18, 0.14),
    0 20px 44px color-mix(in srgb, var(--color-accent) 20%, transparent);
}

.site-shell .button--primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -12px 20px rgba(3, 10, 18, 0.16),
    0 22px 48px color-mix(in srgb, var(--color-accent) 28%, transparent);
}

.button--ghost {
  color: var(--color-text);
  border: 1px solid color-mix(in srgb, var(--color-text) 16%, transparent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    transparent;
}

.button--ghost:hover {
  border-color: color-mix(in srgb, var(--color-accent) 28%, rgba(255, 255, 255, 0.16));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 14%, rgba(255, 255, 255, 0.04)), rgba(255, 255, 255, 0.04)),
    transparent;
  box-shadow: 0 18px 34px rgba(2, 8, 14, 0.16);
}

.button--ghost-dark {
  color: var(--color-text);
  border: 1px solid color-mix(in srgb, var(--color-text) 16%, transparent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    transparent;
}

.button--ghost-dark:hover {
  border-color: color-mix(in srgb, var(--color-accent) 24%, rgba(255, 255, 255, 0.14));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 10%, rgba(255, 255, 255, 0.04)), rgba(255, 255, 255, 0.03)),
    transparent;
  box-shadow: 0 18px 34px rgba(2, 8, 14, 0.12);
}

.hero-stage__marquee {
  position: relative;
  z-index: 1;
  margin-top: clamp(28px, 6vw, 56px);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.84), rgba(8, 14, 22, 0.62)),
    radial-gradient(circle at 50% 50%, rgba(8, 135, 248, 0.08), transparent 72%);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(3, 9, 16, 0.28);
}

.hero-stage__waterline {
  position: relative;
  z-index: 1;
  height: 82px;
  margin-top: clamp(24px, 4vw, 42px);
  pointer-events: none;
}

.hero-stage__waterline::before,
.hero-stage__waterline::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-stage__waterline::before {
  width: min(82vw, 1080px);
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(8, 135, 248, 0.34), transparent 64%),
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.18), transparent 54%),
    linear-gradient(180deg, rgba(242, 242, 242, 0.22), transparent 74%);
  filter: blur(24px);
  opacity: 0.88;
  animation: liquidDrift 10s ease-in-out infinite alternate;
}

.hero-stage[data-fluid-state="enhanced"] .hero-stage__liquid-field {
  opacity: 0.68;
}

.hero-stage[data-fluid-state="enhanced"] .hero-stage__waterline::before {
  opacity: 0.98;
  filter: blur(28px);
}

.chapter__stage,
.social-line {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.hero-stage__waterline::after {
  bottom: 14px;
  width: min(76vw, 980px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(242, 242, 242, 0.72), transparent);
  box-shadow: 0 0 24px rgba(8, 135, 248, 0.34);
}

.hero-stage__marquee-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
  padding: 22px 16px 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.hero-stage__marquee:hover .hero-stage__marquee-track,
.hero-stage__marquee:focus-within .hero-stage__marquee-track {
  animation-play-state: paused;
}

.hero-stage__marquee-track::-webkit-scrollbar {
  display: none;
}

.hero-stage__marquee-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
  max-width: none;
  margin-inline: auto;
}

.hero-stage__marquee-track span,
.hero-stage__marquee-text {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--section-meta-color, color-mix(in srgb, var(--color-text) 48%, transparent));
}

.hero-stage__marquee-title {
  margin: 0;
  color: rgba(242, 242, 242, 0.96);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.hero-stage__marquee-pill {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  width: auto;
  min-height: 52px;
  padding: 0;
  opacity: 0.7;
  text-decoration: none;
  animation: heroBadgeFocus calc(var(--badge-count, 1) * 2.4s) linear infinite;
  animation-delay: calc(var(--badge-index, 0) * -2.4s);
  transition:
    filter var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) var(--ease-out);
}

.hero-stage__marquee-pill-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--hero-marquee-bg, var(--color-accent)) 82%, rgba(255, 255, 255, 0.18));
  background: var(--hero-marquee-bg, var(--color-accent));
  box-shadow: 0 10px 20px rgba(8, 10, 14, 0.18);
  transition:
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.hero-stage__marquee:hover .hero-stage__marquee-pill,
.hero-stage__marquee:focus-within .hero-stage__marquee-pill {
  animation-play-state: paused;
}

.hero-stage__marquee-pill:hover {
  transform: translateY(-2px) scale(1.03);
  opacity: 1;
}

.hero-stage__marquee-pill:hover .hero-stage__marquee-pill-badge,
.hero-stage__marquee-pill:focus-visible .hero-stage__marquee-pill-badge {
  border-color: color-mix(in srgb, var(--hero-marquee-bg, var(--color-accent)) 70%, white 30%);
  box-shadow:
    0 14px 28px rgba(8, 10, 14, 0.24),
    0 0 0 1px color-mix(in srgb, var(--hero-marquee-bg, var(--color-accent)) 38%, transparent);
  transform: scale(1.04);
}

.hero-stage__marquee-pill-icon {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--hero-marquee-fg, #ffffff);
}

.hero-stage__marquee-pill-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero-stage__marquee-pill[data-badge-platform="snapchat"] .hero-stage__marquee-pill-badge {
  border-color: rgba(16, 16, 16, 0.22);
  box-shadow:
    0 10px 20px rgba(8, 10, 14, 0.18),
    0 0 0 1px rgba(16, 16, 16, 0.08);
}

.hero-stage__marquee-pill[data-badge-platform="snapchat"] .hero-stage__marquee-pill-icon {
  color: #0f1115;
}

.section-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-backdrop__image,
.section-backdrop__veil {
  position: absolute;
  inset: 0;
}

.section-backdrop__image {
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.94;
  transform: scale(var(--backdrop-scale, 1.03));
  filter: saturate(1.02) contrast(1.02);
}

.section-backdrop__veil {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.68));
}

.section-backdrop--hero .section-backdrop__veil,
.section-backdrop--dark .section-backdrop__veil {
  background:
    radial-gradient(circle at 20% 18%, rgba(8, 135, 248, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.76));
}

.section-backdrop--light .section-backdrop__veil {
  background:
    radial-gradient(circle at 18% 20%, rgba(8, 135, 248, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(244, 241, 235, 0.3), rgba(244, 241, 235, 0.88));
}

.section-backdrop--accent .section-backdrop__veil {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 126, 0, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.28), rgba(10, 10, 10, 0.82));
}

.hero-stage > .container,
.chapter > .container {
  position: relative;
  z-index: 1;
}

.chapter {
  --section-progress: 0;
  --chapter-ambient-highlight: rgba(255, 255, 255, 0.12);
  --chapter-ambient-glow: rgba(8, 135, 248, 0.14);
  --chapter-ambient-wash: rgba(255, 255, 255, 0.04);
  --chapter-ambient-pos-primary: 84% 24%;
  --chapter-ambient-pos-secondary: 12% 82%;
  position: relative;
  isolation: isolate;
  padding: clamp(96px, 12vw, 156px) 0;
  overflow: clip;
}

.chapter--entry {
  padding-top: clamp(112px, 13vw, 170px);
}

.chapter__entry-veil {
  position: absolute;
  inset: -132px 0 auto;
  height: 280px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(8, 135, 248, 0.18), transparent 24%),
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(3, 8, 16, 0.86) 0%, rgba(3, 8, 16, 0.48) 38%, rgba(244, 241, 235, 0) 100%);
  filter: blur(18px);
  opacity: 0.94;
}

.chapter__entry-threshold {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  width: min(88vw, 1160px);
  height: 210px;
  transform: translate(-50%, -22%);
  pointer-events: none;
}

.chapter__entry-threshold-glow,
.chapter__entry-threshold-line,
.chapter__entry-threshold-orb {
  position: absolute;
  inset: 0;
}

.chapter__entry-threshold-glow {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 66%, rgba(8, 135, 248, 0.24), transparent 52%),
    radial-gradient(circle at 32% 48%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 70% 42%, rgba(255, 255, 255, 0.14), transparent 22%);
  filter: blur(22px);
  opacity: 0.92;
  animation: ripplePulse 8.6s ease-in-out infinite;
}

.chapter__entry-threshold-line {
  inset: 54% 3% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.74), transparent);
  box-shadow:
    0 0 22px rgba(8, 135, 248, 0.24),
    0 0 36px rgba(255, 255, 255, 0.08);
  transform-origin: center;
  opacity: 0.74;
}

.chapter__entry-threshold-orb {
  inset: auto auto 24% 50%;
  width: clamp(14px, 1.2vw, 18px);
  height: clamp(14px, 1.2vw, 18px);
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.24) 36%, transparent 68%);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.26),
    0 0 40px rgba(8, 135, 248, 0.28);
  opacity: 0.92;
  animation: ripplePulse 6.8s ease-in-out infinite;
}

.chapter::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: calc(0.28 + (var(--section-progress) * 0.22));
}

.chapter::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--chapter-ambient-pos-primary), var(--chapter-ambient-highlight), transparent 20%),
    radial-gradient(circle at var(--chapter-ambient-pos-secondary), var(--chapter-ambient-glow), transparent 28%),
    linear-gradient(180deg, var(--chapter-ambient-wash), transparent 32%);
  opacity: calc(0.12 + (var(--section-progress) * 0.08));
  transform: translate3d(0, calc((0.68 - var(--section-progress)) * 18px), 0);
  transition:
    opacity 180ms linear,
    transform 180ms linear;
}

#wave-center.chapter {
  --section-accent-color: #1f90ff;
  --chapter-ambient-highlight: rgba(255, 255, 255, 0.18);
  --chapter-ambient-glow: rgba(8, 135, 248, 0.18);
  --chapter-ambient-pos-primary: 82% 16%;
  --chapter-ambient-pos-secondary: 18% 78%;
}

#videos.chapter {
  --section-accent-color: #38b9ff;
  --chapter-ambient-highlight: rgba(255, 255, 255, 0.14);
  --chapter-ambient-glow: rgba(56, 185, 255, 0.18);
  --chapter-ambient-wash: rgba(255, 255, 255, 0.03);
  --chapter-ambient-pos-primary: 78% 20%;
  --chapter-ambient-pos-secondary: 16% 72%;
}

#fan-signal.chapter {
  --section-accent-color: #66beff;
  --chapter-ambient-highlight: rgba(255, 255, 255, 0.12);
  --chapter-ambient-glow: rgba(102, 190, 255, 0.16);
  --chapter-ambient-wash: rgba(255, 255, 255, 0.035);
  --chapter-ambient-pos-primary: 80% 18%;
  --chapter-ambient-pos-secondary: 14% 76%;
}

#drop-radar.chapter {
  --section-accent-color: #ff934e;
  --chapter-ambient-highlight: rgba(255, 239, 226, 0.14);
  --chapter-ambient-glow: rgba(255, 147, 78, 0.18);
  --chapter-ambient-wash: rgba(255, 255, 255, 0.03);
  --chapter-ambient-pos-primary: 80% 20%;
  --chapter-ambient-pos-secondary: 18% 74%;
}

#closing.chapter {
  --section-accent-color: #94bcff;
  --chapter-ambient-highlight: rgba(255, 255, 255, 0.14);
  --chapter-ambient-glow: rgba(148, 188, 255, 0.16);
  --chapter-ambient-pos-primary: 78% 14%;
  --chapter-ambient-pos-secondary: 18% 82%;
}

.chapter__word {
  position: absolute;
  right: clamp(12px, 5vw, 48px);
  top: 34px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 13rem);
  line-height: 0.8;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--section-title-color, currentColor) 26%, transparent);
  opacity: calc(0.06 + (var(--section-progress) * 0.18));
  transform: translate3d(0, calc((0.58 - var(--section-progress)) * 90px), 0)
    scale(calc(0.92 + (var(--section-progress) * 0.1)));
  text-shadow: 0 0 42px rgba(8, 135, 248, 0.08);
  transition:
    opacity 180ms linear,
    transform 180ms linear;
  user-select: none;
  pointer-events: none;
  text-transform: uppercase;
}

.chapter__word::after {
  content: "";
  position: absolute;
  left: 18%;
  right: -4%;
  bottom: -14px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 38%, transparent) 34%,
    transparent
  );
  opacity: calc(0.08 + (var(--section-progress) * 0.22));
  transform: scaleX(calc(0.76 + (var(--section-progress) * 0.24)));
  transform-origin: right center;
}

.chapter--entry .chapter__word {
  top: 22px;
  opacity: calc(0.08 + (var(--section-progress) * 0.18));
}

.chapter--entry .chapter__header {
  position: relative;
  z-index: 2;
  margin-top: clamp(24px, 4vw, 42px);
}

.chapter--entry .chapter__copy {
  position: relative;
}

.chapter--entry .chapter__copy::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: -22px;
  height: 148px;
  pointer-events: none;
  background:
    radial-gradient(circle at 40% 34%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 56% 26%, rgba(8, 135, 248, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 82%);
  filter: blur(18px);
  opacity: calc(0.18 + (var(--section-progress) * 0.22));
  z-index: -1;
}

.chapter__header {
  position: relative;
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  margin-bottom: clamp(38px, 5.4vw, 68px);
}

.chapter__rail {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 12px;
  align-content: start;
  padding-top: 6px;
  opacity: calc(0.62 + (var(--section-progress) * 0.3));
  transition:
    opacity 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.chapter--entry .chapter__rail {
  top: 118px;
}

.chapter__index {
  font-family: var(--font-display);
  font-size: 1.16rem;
  letter-spacing: 0.14em;
  transition:
    transform 240ms var(--ease-out),
    opacity 240ms var(--ease-out);
}

.chapter.is-current .chapter__index {
  transform: translateX(2px);
}

.chapter__line {
  position: relative;
  --chapter-line-axis-x: 50%;
  --chapter-line-axis-y: calc(var(--section-progress) * 100%);
  width: 2px;
  height: 88px;
  background: linear-gradient(180deg, currentColor, transparent);
  opacity: 0.4;
  overflow: hidden;
}

.chapter__line::after {
  content: "";
  position: absolute;
  left: var(--chapter-line-axis-x);
  top: var(--chapter-line-axis-y);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.22) 44%, transparent 70%);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.2),
    0 0 24px color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 26%, transparent);
  transform: translate(-50%, -50%);
  opacity: calc(0.34 + (var(--section-progress) * 0.64));
}

.chapter__line-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-accent), rgba(255, 255, 255, 0.9));
  box-shadow: 0 0 18px color-mix(in srgb, var(--color-accent) 34%, transparent);
  transform-origin: top;
  transform: scaleY(var(--section-progress));
  transition: transform 140ms linear;
}

.chapter__eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.58;
  color: color-mix(in srgb, var(--section-eyebrow-color, currentColor) 74%, #f3f8ff 26%);
  transition:
    opacity 240ms var(--ease-out),
    color 240ms var(--ease-out);
}

.chapter.is-current .chapter__eyebrow {
  opacity: 1;
  color: var(--section-eyebrow-color, var(--color-accent));
}

.chapter__copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 7.4vw, 5.9rem);
  line-height: 0.88;
  letter-spacing: 0.022em;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
  text-wrap: balance;
  transition:
    letter-spacing 240ms var(--ease-out),
    transform 240ms var(--ease-out),
    text-shadow 240ms var(--ease-out);
}

.chapter.is-current .chapter__copy h2 {
  letter-spacing: 0.02em;
  transform: translateX(2px);
  text-shadow: 0 0 28px color-mix(in srgb, var(--color-accent) 10%, transparent);
}

.chapter__title {
  position: relative;
  display: block;
  overflow: hidden;
}

.chapter__copy {
  position: relative;
  display: grid;
  gap: clamp(10px, 1.4vw, 16px);
}

.chapter__copy::before {
  content: "";
  position: absolute;
  left: -5%;
  top: -26px;
  width: min(560px, 72%);
  height: 154px;
  pointer-events: none;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.12), transparent 26%),
    radial-gradient(circle at 56% 26%, color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 16%, transparent), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 84%);
  filter: blur(18px);
  opacity: calc(0.08 + (var(--section-progress) * 0.12));
  z-index: -1;
}

.chapter__title-base {
  display: block;
  visibility: hidden;
}

.chapter__title-half {
  position: absolute;
  inset: 0;
  display: block;
  transition:
    opacity 940ms var(--ease-out),
    transform 940ms cubic-bezier(0.2, 0.9, 0.2, 1),
    filter 940ms var(--ease-out);
  will-change: transform, opacity, filter;
}

.chapter__title-half--upper {
  clip-path: inset(0 0 50% 0);
}

.chapter__title-half--lower {
  clip-path: inset(50% 0 0 0);
}

.chapter__title.reveal:not(.is-visible) .chapter__title-half--upper {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(-8px, 18px, 0);
}

.chapter__title.reveal:not(.is-visible) .chapter__title-half--lower {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(8px, -18px, 0);
}

.chapter__title.reveal.is-visible .chapter__title-half--upper,
.chapter__title.reveal.is-visible .chapter__title-half--lower {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.chapter__title.reveal.is-visible .chapter__title-half--lower {
  transition-delay: 120ms;
}

.chapter__copy p {
  max-width: 40rem;
  margin: 0;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.88;
  letter-spacing: 0.008em;
  color: color-mix(in srgb, var(--section-description-color, currentColor) 82%, #eef6ff 18%);
  opacity: 0.74;
  transition: opacity 240ms var(--ease-out);
}

.chapter--entry .chapter__copy p {
  max-width: 38rem;
}

.chapter--entry .chapter__copy h2 {
  text-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 22px color-mix(in srgb, var(--color-accent) 8%, transparent);
}

.chapter.is-current .chapter__copy p {
  opacity: 0.82;
}

.chapter__description {
  display: grid;
  gap: 0.18em;
}

.chapter__copy-line {
  display: block;
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 820ms var(--ease-out),
    transform 820ms cubic-bezier(0.2, 0.9, 0.2, 1),
    filter 820ms var(--ease-out);
  transition-delay: calc(var(--copy-line-index, 0) * 95ms);
}

.chapter__description.reveal.is-visible .chapter__copy-line {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.chapter__liquid-divider {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  width: min(86vw, 1240px);
  height: 188px;
  transform: translate(-50%, -48%);
  pointer-events: none;
}

.chapter--entry .chapter__liquid-divider {
  width: min(92vw, 1320px);
  top: 16px;
  transform: translate(-50%, -58%);
}

.chapter__liquid-divider::before,
.chapter__liquid-divider::after {
  content: "";
  position: absolute;
  inset: 0;
}

.chapter__liquid-divider::before {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 78%, rgba(8, 135, 248, 0.3), transparent 54%),
    radial-gradient(circle at 30% 58%, rgba(255, 255, 255, 0.22), transparent 42%),
    radial-gradient(circle at 70% 52%, rgba(255, 255, 255, 0.16), transparent 34%);
  filter: blur(20px);
  opacity: 0.96;
  animation: liquidDrift 11s ease-in-out infinite alternate;
}

.chapter__liquid-divider::after {
  inset: 34% 6% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(242, 242, 242, 0.58), transparent);
  box-shadow: 0 0 18px rgba(8, 135, 248, 0.22);
}

.chapter__liquid-bubble {
  position: absolute;
  bottom: 20%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(242, 242, 242, 0.22);
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.36), rgba(8, 135, 248, 0.08) 56%, transparent 72%);
  box-shadow: 0 0 26px rgba(8, 135, 248, 0.1);
  opacity: 0.42;
  animation: bubbleRise 10s linear infinite;
}

.chapter__liquid-bubble--1 {
  left: 16%;
  animation-delay: -3s;
}

.chapter__liquid-bubble--2 {
  left: 48%;
  width: 14px;
  height: 14px;
  animation-duration: 8.5s;
  animation-delay: -6s;
}

.chapter__liquid-bubble--3 {
  left: 78%;
  width: 24px;
  height: 24px;
  animation-duration: 12s;
  animation-delay: -1s;
}

.chapter__liquid-divider--wave::before {
  background:
    radial-gradient(circle at 42% 76%, rgba(8, 135, 248, 0.28), transparent 52%),
    radial-gradient(circle at 60% 60%, rgba(16, 16, 16, 0.12), transparent 42%),
    radial-gradient(circle at 28% 48%, rgba(255, 255, 255, 0.24), transparent 34%);
}

.chapter--entry .chapter__liquid-divider--wave::before {
  background:
    radial-gradient(circle at 50% 76%, rgba(8, 135, 248, 0.32), transparent 54%),
    radial-gradient(circle at 64% 58%, rgba(16, 16, 16, 0.1), transparent 44%),
    radial-gradient(circle at 26% 42%, rgba(255, 255, 255, 0.24), transparent 34%);
  opacity: 0.98;
}

.chapter__liquid-divider--wave .chapter__liquid-bubble {
  display: none;
}

.chapter__liquid-divider--video::before {
  background:
    radial-gradient(circle at 50% 76%, rgba(8, 135, 248, 0.34), transparent 54%),
    radial-gradient(circle at 24% 54%, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at 76% 48%, rgba(255, 255, 255, 0.18), transparent 30%);
}

.chapter__liquid-divider--drop::before {
  background:
    radial-gradient(circle at 50% 80%, rgba(8, 135, 248, 0.26), transparent 54%),
    radial-gradient(circle at 62% 52%, rgba(255, 130, 0, 0.18), transparent 28%),
    radial-gradient(circle at 24% 46%, rgba(255, 255, 255, 0.18), transparent 34%);
}

.chapter--light {
  color: var(--color-surface-strong);
  background:
    radial-gradient(circle at 18% 10%, color-mix(in srgb, var(--color-accent) 8%, transparent), transparent 22%),
    linear-gradient(180deg, color-mix(in srgb, var(--color-surface) 96%, white) 0%, var(--color-surface) 100%);
}

.chapter--dark,
.chapter--deep {
  color: var(--color-text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 16%),
    color-mix(in srgb, var(--color-bg) 94%, black);
}

.chapter--deep {
  background:
    radial-gradient(circle at 70% 20%, color-mix(in srgb, var(--color-accent) 12%, transparent), transparent 24%),
    linear-gradient(180deg, color-mix(in srgb, var(--color-bg) 92%, black) 0%, color-mix(in srgb, var(--color-bg) 80%, var(--color-accent) 20%) 100%);
}

.chapter--accent {
  color: var(--color-text);
  background:
    radial-gradient(circle at 78% 24%, color-mix(in srgb, var(--color-accent) 16%, transparent), transparent 18%),
    linear-gradient(180deg, color-mix(in srgb, var(--color-bg) 92%, black) 0%, color-mix(in srgb, var(--color-bg) 82%, var(--color-accent) 18%) 100%);
}

.wave-stage,
.stream-stage,
.signal-stage,
.collab-stage,
.about-stage,
.drop-stage {
  display: grid;
  gap: 24px;
}

.chapter__stage {
  position: relative;
  isolation: isolate;
  transform: translate3d(0, calc((0.62 - var(--section-progress)) * 26px), 0);
  transition:
    box-shadow 280ms var(--ease-out),
    border-color 280ms var(--ease-out),
    filter 280ms var(--ease-out),
    transform 180ms linear;
}

.chapter__stage::before {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 38%, rgba(255, 255, 255, 0.24)) 24%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 88%
  );
  opacity: calc(0.12 + (var(--section-progress) * 0.34));
  transform: scaleX(calc(0.82 + (var(--section-progress) * 0.18)));
  transform-origin: center;
}

.chapter__stage::after {
  content: "";
  position: absolute;
  inset: -8% 12% auto;
  height: 220px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 16%, transparent), transparent 58%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.08), transparent 34%);
  filter: blur(28px);
  opacity: calc(0.04 + (var(--section-progress) * 0.1));
  transition: opacity 220ms var(--ease-out);
}

.chapter__stage > * {
  position: relative;
  z-index: 1;
}

.chapter.is-current .chapter__stage {
  filter: saturate(1.06) brightness(1.01);
}

#wave-center .chapter__stage::after {
  inset: -10% 10% auto;
  height: 240px;
}

#videos .chapter__stage::after {
  inset: -10% 10% auto;
  height: 260px;
  opacity: calc(0.06 + (var(--section-progress) * 0.12));
}

#fan-signal .chapter__stage::after {
  inset: -8% 12% auto;
  height: 240px;
  opacity: calc(0.05 + (var(--section-progress) * 0.11));
}

#drop-radar .chapter__stage::after {
  inset: -9% 10% auto;
  height: 250px;
  opacity: calc(0.06 + (var(--section-progress) * 0.13));
}

#closing .chapter__stage::after {
  inset: -12% 14% auto;
  height: 220px;
  opacity: calc(0.05 + (var(--section-progress) * 0.1));
}

.wave-stage {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
  padding-top: clamp(10px, 2vw, 18px);
  width: min(100%, 1080px);
  margin-inline: auto;
}

.wave-stage::before {
  content: "";
  position: absolute;
  inset: -4% -4% auto;
  height: 240px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 30%, rgba(8, 135, 248, 0.12), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 74%);
  filter: blur(22px);
  opacity: 0.9;
}

.chapter--entry .wave-stage::before {
  inset: -9% -8% auto;
  height: 320px;
  background:
    radial-gradient(circle at 50% 24%, rgba(8, 135, 248, 0.14), transparent 48%),
    radial-gradient(circle at 28% 42%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 74%);
  filter: blur(28px);
}

.chapter--entry .wave-stage::after {
  content: "";
  position: absolute;
  inset: -3% -6% auto;
  height: 160px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 84%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 42%);
  filter: blur(16px);
  opacity: calc(0.24 + (var(--section-progress) * 0.2));
}

.wave-stage__statement,
.wave-stage__release {
  padding: 0;
  border-radius: 0;
}

.wave-stage__statement {
  position: relative;
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid color-mix(in srgb, var(--color-surface-strong) 12%, transparent);
  background: transparent;
  color: var(--color-surface-strong);
  display: grid;
  gap: 22px;
}

.chapter--entry .wave-stage__statement {
  gap: clamp(22px, 3.6vw, 28px);
  padding-top: clamp(26px, 3.2vw, 36px);
}

.chapter--entry .wave-stage__statement {
  transform: translate3d(0, calc((0.82 - var(--section-progress)) * 34px), 0)
    scale(calc(0.95 + (var(--section-progress) * 0.05)));
}

.wave-stage__signalline {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: min(100%, 920px);
  margin: 0 auto;
  pointer-events: none;
}

.wave-stage__signalline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(8, 135, 248, 0.94);
  box-shadow:
    0 0 0 6px rgba(8, 135, 248, 0.08),
    0 0 24px rgba(8, 135, 248, 0.34);
}

.wave-stage__signalline-track,
.wave-stage__signalline-glow {
  grid-column: 2;
  grid-row: 1;
  display: block;
  height: 1px;
}

.wave-stage__signalline-track {
  background: linear-gradient(90deg, rgba(8, 135, 248, 0.56), rgba(255, 255, 255, 0.32), transparent 88%);
}

.wave-stage__signalline-glow {
  width: 22%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.56), rgba(8, 135, 248, 0));
  filter: blur(1px);
  transform: translateX(-160%);
  animation: sheenSweep 7.8s ease-in-out infinite alternate;
  opacity: 0.72;
}

.wave-stage__stack {
  width: min(100%, 920px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
}

.chapter.is-current .wave-stage__statement {
  box-shadow: none;
}

.wave-stage__statement::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 135, 248, 0.4), rgba(255, 255, 255, 0.28), transparent 78%);
  pointer-events: none;
}

.chapter--entry .wave-stage__statement::before {
  background: linear-gradient(90deg, rgba(8, 135, 248, 0.58), rgba(255, 255, 255, 0.34), transparent 82%);
}

.wave-stage__statement--liquid,
.wave-stage__release--liquid,
.video-stage__hero--liquid,
.drop-stage--liquid {
  overflow: visible;
  transform: translate3d(0, calc((0.72 - var(--section-progress)) * 32px), 0)
    scale(calc(0.94 + (var(--section-progress) * 0.06)));
  transition:
    transform 180ms linear,
    box-shadow 240ms var(--ease-out),
    border-color 240ms var(--ease-out);
}

.wave-stage__statement--liquid::before,
.wave-stage__release--liquid::before,
.video-stage__hero--liquid::before,
.drop-stage--liquid::before {
  content: none;
}

.wave-stage__statement--liquid::after,
.wave-stage__release--liquid::after,
.video-stage__hero--liquid::after,
.drop-stage--liquid::after {
  content: none;
}

.wave-stage__label,
.drop-stage__eyebrow,
.video-stage__eyebrow,
.collab-stage__label,
.signal-stage__label {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 1;
  color: color-mix(in srgb, var(--section-meta-color, color-mix(in srgb, currentColor 60%, transparent)) 80%, #f4f9ff 20%);
}

.wave-stage__statement h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  max-width: 12ch;
  font-size: clamp(2.6rem, 4.7vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.wave-stage__body {
  margin: 0;
  max-width: 31rem;
  color: color-mix(in srgb, var(--section-description-color, color-mix(in srgb, currentColor 68%, transparent)) 84%, #eef6ff 16%);
  font-size: 1rem;
  line-height: 1.84;
  letter-spacing: 0.008em;
}

.wave-stage__listen-panel {
  position: relative;
  display: grid;
  gap: clamp(18px, 2.6vw, 24px);
  align-content: start;
  padding-top: clamp(10px, 1.6vw, 18px);
}

.wave-stage__listen-panel::before {
  content: "";
  position: absolute;
  inset: -2% -4% auto 22%;
  height: 168px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(8, 135, 248, 0.12), transparent 46%),
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.08), transparent 24%);
  filter: blur(20px);
  opacity: 0.58;
}

.wave-stage__listen-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.wave-stage__listen-title {
  margin: 0;
  font-family: var(--font-display);
  max-width: 9ch;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
}

.wave-stage__embed {
  position: relative;
  grid-column: 1 / -1;
  z-index: 1;
  width: min(100%, 760px);
  margin-left: auto;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, currentColor 10%, transparent);
  border-radius: 0;
  isolation: isolate;
}

.chapter--entry .wave-stage__embed {
  transform: translate3d(0, calc((0.8 - var(--section-progress)) * 18px), 0)
    scale(calc(0.985 + (var(--section-progress) * 0.015)));
  transform-origin: center top;
  transition:
    transform 180ms linear,
    filter 240ms var(--ease-out);
}

.wave-stage__embed::before,
.wave-stage__embed::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.wave-stage__embed::before {
  inset: 12px 1.5% -10px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 16%, rgba(29, 185, 84, 0.16), transparent 42%),
    radial-gradient(circle at 78% 18%, rgba(8, 135, 248, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(10, 14, 20, 0.08), transparent 72%);
  filter: blur(22px);
  opacity: 0.76;
}

.wave-stage__embed::after {
  top: 36px;
  left: 7%;
  z-index: 2;
  width: 20%;
  height: calc(100% - 44px);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 50%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0.34;
  transform: translateX(-190%) skewX(-14deg);
  animation: waveEmbedSweep 10.5s ease-in-out infinite;
}

.wave-stage__embed iframe {
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 32px 60px rgba(16, 16, 16, 0.18);
}

.chapter--entry .wave-stage__actions {
  opacity: calc(0.7 + (var(--section-progress) * 0.3));
  transform: translate3d(0, calc((0.82 - var(--section-progress)) * 14px), 0);
  transition:
    opacity 180ms linear,
    transform 180ms linear;
}

.wave-stage__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.wave-stage__social-pill {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 70px;
  min-width: min(100%, 232px);
  padding: 14px 18px;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--wave-pill-bg, #101010) 80%, #ffffff);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--wave-pill-bg, #101010) 88%, #ffffff) 0%,
    var(--wave-pill-bg, #101010) 100%
  );
  color: var(--wave-pill-fg, #ffffff);
  box-shadow:
    0 14px 28px color-mix(in srgb, var(--wave-pill-bg, #101010) 24%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--wave-pill-fg, #ffffff) 12%, transparent);
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    filter var(--duration-fast) var(--ease-out);
}

.wave-stage__social-pill::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 42%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--wave-pill-fg, #ffffff) 22%, transparent) 50%,
    transparent 100%
  );
  transform: translateX(-180%) rotate(14deg);
  transition: transform 600ms var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.wave-stage__social-pill > * {
  position: relative;
  z-index: 1;
}

.wave-stage__social-pill:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: color-mix(in srgb, var(--wave-pill-bg, #101010) 92%, #ffffff);
  box-shadow:
    0 22px 42px color-mix(in srgb, var(--wave-pill-bg, #101010) 34%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--wave-pill-fg, #ffffff) 18%, transparent);
  filter: saturate(1.04);
}

.wave-stage__social-pill:hover::after {
  transform: translateX(300%) rotate(14deg);
}

.wave-stage__social-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--wave-icon-text, #ffffff) 18%, transparent);
  background: color-mix(in srgb, var(--wave-icon-text, #ffffff) 16%, transparent);
  color: var(--wave-icon-text, #ffffff);
}

.wave-stage__social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.wave-stage__social-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.wave-stage__social-platform {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: inherit;
}

.wave-stage__social-cta {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  color: color-mix(in srgb, var(--wave-pill-fg, #ffffff) 76%, transparent);
}

.wave-stage__platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 440px;
}

.wave-stage__platform-pill {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--wave-pill-bg, #101010) 82%, #ffffff);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--wave-pill-bg, #101010) 88%, #ffffff) 0%,
    var(--wave-pill-bg, #101010) 100%
  );
  color: var(--wave-pill-fg, #ffffff);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow:
    0 14px 28px color-mix(in srgb, var(--wave-pill-bg, #101010) 22%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--wave-pill-fg, #ffffff) 12%, transparent);
  transition:
    transform var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    filter var(--duration-fast) var(--ease-out);
}

.wave-stage__platform-pill::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 42%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--wave-pill-fg, #ffffff) 24%, transparent) 50%,
    transparent 100%
  );
  transform: translateX(-180%) rotate(14deg);
  transition: transform 600ms var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.wave-stage__platform-pill > * {
  position: relative;
  z-index: 1;
}

.wave-stage__platform-pill:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: color-mix(in srgb, var(--wave-pill-bg, #101010) 92%, #ffffff);
  box-shadow:
    0 22px 40px color-mix(in srgb, var(--wave-pill-bg, #101010) 32%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--wave-pill-fg, #ffffff) 16%, transparent);
  filter: saturate(1.06);
}

.wave-stage__platform-pill:hover::after {
  transform: translateX(300%) rotate(14deg);
}

.wave-stage__platform-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--wave-icon-text, #ffffff) 18%, transparent);
  background: color-mix(in srgb, var(--wave-icon-text, #ffffff) 16%, transparent);
  color: var(--wave-icon-text, #ffffff);
}

.wave-stage__platform-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.wave-stage__platform-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  text-align: left;
}

.wave-stage__platform-name {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.04;
  color: inherit;
}

.wave-stage__platform-meta {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  color: color-mix(in srgb, var(--wave-pill-fg, #ffffff) 72%, transparent);
}

.wave-stage__actions {
  display: grid;
  gap: 12px;
  width: min(100%, 440px);
}

.wave-stage__cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  justify-content: flex-start;
  min-height: 62px;
  min-width: 0;
  padding: 0 24px;
  gap: 12px;
  letter-spacing: 0.14em;
  box-shadow: 0 16px 34px rgba(16, 16, 16, 0.12);
}

.wave-stage__cta::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -22%;
  width: 34%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
  transform: translateX(-220%) rotate(14deg);
  transition: transform 720ms var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.wave-stage__cta > * {
  position: relative;
  z-index: 1;
}

.wave-stage__cta:hover {
  transform: translateY(-2px) scale(1.01);
}

.wave-stage__cta:hover::after {
  transform: translateX(340%) rotate(14deg);
}

.wave-stage__cta-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex: 0 0 34px;
}

.wave-stage__cta-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.wave-stage__cta-label {
  white-space: normal;
  line-height: 1.04;
}

.wave-stage__cta-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

.wave-stage__cta-meta {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  color: color-mix(in srgb, currentColor 72%, rgba(255, 255, 255, 0.14));
}

.wave-stage__cta--listen {
  border-color: color-mix(in srgb, var(--wave-cta-bg, #1db954) 62%, #0f1115);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--wave-cta-bg, #1db954) 88%, #ffffff) 0%,
    var(--wave-cta-bg, #1db954) 100%
  );
  color: var(--wave-cta-fg, #05140c);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 22px 40px color-mix(in srgb, var(--wave-cta-bg, #1db954) 26%, transparent);
}

.wave-stage__cta--listen .wave-stage__cta-icon {
  background: color-mix(in srgb, var(--wave-cta-fg, #05140c) 9%, rgba(255, 255, 255, 0.18));
  border: 1px solid color-mix(in srgb, var(--wave-cta-fg, #05140c) 10%, transparent);
  color: var(--wave-cta-fg, #05140c);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1px color-mix(in srgb, var(--wave-cta-bg, #1db954) 18%, transparent),
    0 0 22px color-mix(in srgb, var(--wave-cta-bg, #1db954) 22%, transparent);
  animation: ctaIconPulse 5.4s ease-in-out infinite;
}

.wave-stage__cta--listen .wave-stage__cta-icon svg {
  width: 18px;
  height: 18px;
}

.wave-stage__cta--listen:hover {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--wave-cta-bg, #1db954) 82%, #ffffff) 0%,
    color-mix(in srgb, var(--wave-cta-bg, #1db954) 94%, #ffffff) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 26px 48px color-mix(in srgb, var(--wave-cta-bg, #1db954) 34%, transparent);
}

.wave-stage__cta--watch {
  color: var(--wave-cta-fg, var(--color-surface-strong));
  border-color: color-mix(in srgb, var(--wave-cta-bg, var(--color-surface-strong)) 14%, transparent);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--wave-cta-bg, var(--color-surface)) 92%, white) 0%,
    var(--wave-cta-bg, var(--color-surface)) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 16px 34px rgba(16, 16, 16, 0.08);
}

.wave-stage__cta--watch .wave-stage__cta-icon {
  background: color-mix(in srgb, var(--wave-cta-fg, var(--color-surface-strong)) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--wave-cta-fg, var(--color-surface-strong)) 8%, transparent);
  color: var(--wave-cta-fg, var(--color-surface-strong));
}

.wave-stage__actions .button--ghost.wave-stage__cta:hover {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--wave-cta-bg, rgba(255, 255, 255, 0.98)) 96%, #ffffff) 0%,
    color-mix(in srgb, var(--wave-cta-bg, rgba(241, 234, 224, 0.96)) 100%, #ffffff) 100%
  );
  border-color: color-mix(in srgb, var(--wave-cta-bg, #101010) 22%, transparent);
}

.wave-stage__release {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
  color: inherit;
  padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid color-mix(in srgb, var(--color-surface-strong) 12%, transparent);
  background: transparent;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  box-shadow: none;
}

.chapter.is-current .wave-stage__release {
  box-shadow: none;
}

.wave-stage__release::before {
  content: "";
  position: absolute;
  inset: 6% 18% 18% -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 26% 34%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 34% 50%, color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 22%, transparent), transparent 42%),
    radial-gradient(circle at 24% 52%, color-mix(in srgb, rgba(255, 255, 255, 0.2) 36%, transparent), transparent 56%);
  filter: blur(30px);
  opacity: 0.72;
}

.wave-stage__release::after {
  content: "";
  position: absolute;
  inset: 14% 22% 18% -6%;
  pointer-events: none;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 18%, transparent), transparent 62%),
    var(--wave-release-cover) center / cover no-repeat;
  filter: blur(36px) saturate(1.03);
  opacity: 0.14;
}

.wave-stage__release-art {
  position: relative;
  display: block;
  width: min(100%, 360px);
  aspect-ratio: 0.92 / 1.06;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 36px 86px rgba(16, 16, 16, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition:
    transform 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out);
}

.wave-stage__release-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 9, 15, 0.04), rgba(5, 9, 15, 0.66)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(0deg, rgba(5, 9, 15, 0.18), transparent 26%);
}

.wave-stage__release-art::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -20%;
  z-index: 1;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0;
  transform: translateX(-220%) rotate(12deg);
  transition:
    transform 780ms var(--ease-out),
    opacity 360ms var(--ease-out);
}

.wave-stage__release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition:
    transform 520ms var(--ease-out),
    filter 520ms var(--ease-out);
}

.wave-stage__release-art:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow:
    0 42px 90px rgba(16, 16, 16, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.wave-stage__release-art:hover::after {
  opacity: 1;
  transform: translateX(320%) rotate(12deg);
}

.wave-stage__release-art:hover img {
  transform: scale(1.07);
  filter: saturate(1.05);
}

.wave-stage__release-overlay {
  position: absolute;
  inset: 18px 18px auto;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.wave-stage__release-badge,
.wave-stage__release-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 8, 18, 0.36);
  backdrop-filter: blur(12px);
  color: rgba(248, 251, 255, 0.92);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wave-stage__release-count {
  color: color-mix(in srgb, var(--color-accent) 56%, #f8fbff 44%);
}

.wave-stage__release-copy {
  display: grid;
  gap: 14px;
  align-content: start;
  max-width: 360px;
  padding-top: 4px;
}

.wave-stage__release-meta span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--section-meta-color, rgba(16, 16, 16, 0.5)) 82%, var(--section-accent-color, var(--color-accent)) 18%);
}

.wave-stage__release-artists {
  margin: 2px 0 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--section-meta-color, rgba(16, 16, 16, 0.46)) 84%, var(--color-accent) 16%);
}

.wave-stage__release-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  max-width: 7ch;
  font-size: clamp(2.5rem, 4.6vw, 3.8rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.028em;
  text-wrap: balance;
}

.wave-stage__release-meta p {
  margin: 0;
  color: rgba(16, 16, 16, 0.66);
  line-height: 1.74;
}

.wave-stage__ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.wave-stage__ticker-item {
  display: inline-flex;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: transparent;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stream-stage {
  grid-template-columns: minmax(0, 1.02fr) minmax(260px, 0.78fr);
  align-items: start;
}

.stream-stage__embed {
  position: relative;
  z-index: 2;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stream-stage__embed iframe {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 18px;
  pointer-events: auto;
}

.stream-stage__links {
  display: grid;
  gap: 10px;
}

.platform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out);
}

.platform-row:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.06);
}

.platform-row__name {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.platform-row__label {
  font-size: 1rem;
}

.video-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: start;
  position: relative;
  width: min(100%, 1120px);
  margin-inline: auto;
}

.video-stage::before {
  content: "";
  position: absolute;
  inset: -4% -2% auto;
  height: 280px;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 18%, rgba(8, 135, 248, 0.22), transparent 40%),
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.1), transparent 26%),
    linear-gradient(90deg, transparent, rgba(8, 135, 248, 0.05), transparent 76%);
  filter: blur(34px);
  opacity: 0.94;
}

.video-stage__hero,
.video-stage__rail {
  position: relative;
  border-radius: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  transition:
    border-color 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
}

.video-stage__hero {
  display: grid;
  gap: 18px;
  --video-stage-active-image: none;
}

.video-stage--showcase::after {
  content: "";
  position: absolute;
  inset: 6% -8% 10% 42%;
  pointer-events: none;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 8%, transparent), transparent 54%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 30%);
  filter: blur(34px);
  opacity: 0.72;
}

.video-stage__narrative {
  position: relative;
  display: grid;
  gap: clamp(26px, 3vw, 34px);
  align-content: start;
  padding-top: clamp(10px, 1.4vw, 16px);
}

.video-stage__narrative::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(8, 135, 248, 0.18), transparent 84%);
  opacity: 0.52;
}

.video-stage__hero::before {
  content: "";
  position: absolute;
  inset: 8% 30% 20% -6%;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 26% 36%, rgba(8, 135, 248, 0.16), transparent 42%),
    var(--video-stage-active-image);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  filter: blur(48px) saturate(1.08);
  opacity: 0.28;
  transform: scale(1.02);
  transition:
    opacity 420ms var(--ease-out),
    transform 980ms var(--ease-out),
    filter 980ms var(--ease-out);
}

.video-stage__hero > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 1081px) {
  .video-stage__hero {
    position: sticky;
    top: clamp(108px, 12vh, 148px);
  }
}

.video-stage__hero-stack {
  display: grid;
  gap: 0;
}

.video-stage__player-shell {
  position: relative;
  overflow: hidden;
}

.video-stage__player-frame {
  position: relative;
  z-index: 1;
}

.video-stage__player-veil,
.video-stage__player-sweep {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 420ms var(--ease-out),
    transform 760ms var(--ease-out);
}

.video-stage__player-veil {
  background:
    linear-gradient(180deg, rgba(3, 6, 12, 0.04), rgba(3, 6, 12, 0.78)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 52%);
}

.video-stage__player-sweep {
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.26), transparent 68%);
  transform: translateX(-140%) skewX(-14deg);
}

.video-stage__hero[data-video-transition="true"]::before {
  opacity: 0.42;
  transform: scale(1.07);
  filter: blur(56px) saturate(1.14);
}

.video-stage__hero[data-video-transition="true"] .video-stage__player-veil {
  opacity: 1;
}

.video-stage__hero[data-video-transition="true"] .video-stage__player-sweep {
  opacity: 0.9;
  transform: translateX(220%) skewX(-14deg);
}

.video-stage__signal {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: min(100%, 920px);
  margin: 0 auto;
  pointer-events: none;
}

.video-stage__signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 0 6px rgba(8, 135, 248, 0.08),
    0 0 24px rgba(8, 135, 248, 0.24);
}

.video-stage__signal-track,
.video-stage__signal-glow {
  grid-column: 2;
  grid-row: 1;
  display: block;
  height: 1px;
}

.video-stage__signal-track {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(8, 135, 248, 0.28), transparent 88%);
}

.video-stage__signal-glow {
  width: 20%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.46), rgba(8, 135, 248, 0));
  filter: blur(1px);
  transform: translateX(-170%);
  animation: sheenSweep 8.4s ease-in-out infinite alternate;
  opacity: 0.66;
}

.chapter.is-current .video-stage__hero,
.chapter.is-current .video-stage__rail {
  border-color: transparent;
  box-shadow: none;
}

.video-stage__poster {
  position: relative;
  width: 100%;
  text-align: left;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
}

.video-stage__poster::before {
  content: "";
  position: absolute;
  inset: -18% auto -18% -42%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: rotate(10deg) translateX(-120%);
  opacity: 0;
  z-index: 1;
  transition:
    transform 920ms var(--ease-out),
    opacity 920ms var(--ease-out);
}

.video-stage__poster-meta {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.video-stage__poster-tag,
.video-stage__poster-count,
.video-stage__meta-count,
.video-stage__rail-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 8, 18, 0.42);
  color: rgba(248, 251, 255, 0.9);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.video-stage__poster-count,
.video-stage__meta-count,
.video-stage__rail-count {
  color: color-mix(in srgb, var(--color-accent) 56%, #f8fbff 44%);
}

.video-stage__poster img,
.video-stage__hero iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.04);
  transition:
    transform 820ms var(--ease-out),
    filter 820ms var(--ease-out);
}

.video-stage__player-shell iframe {
  display: block;
  background: #05070b;
}

.video-stage__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.02), rgba(10, 10, 10, 0.76)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(90deg, rgba(8, 135, 248, 0.08), transparent 26%);
}

.video-stage__poster:hover::before {
  opacity: 0.72;
  transform: rotate(10deg) translateX(360%);
}

.video-stage__poster:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.video-stage__play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition:
    transform var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.video-stage__play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ffffff;
}

.video-stage__play-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--section-meta-color, rgba(255, 255, 255, 0.76)) 78%, #f8fbff 22%);
  transition:
    transform var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.video-stage__poster:hover .video-stage__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.24),
    0 0 0 8px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.video-stage__poster:hover .video-stage__play-label {
  transform: translateY(-2px);
  color: rgba(255, 255, 255, 0.92);
}

.video-stage__meta {
  display: grid;
  gap: 12px;
  padding: 28px 0 0;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-stage__meta-topline,
.video-stage__rail-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
}

.video-stage__meta h3 {
  margin: 0;
  font-family: var(--font-display);
  max-width: 11ch;
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
}

.video-stage__meta p {
  margin: 0;
  color: color-mix(in srgb, var(--section-description-color, rgba(242, 242, 242, 0.7)) 84%, #eef6ff 16%);
  line-height: 1.82;
  letter-spacing: 0.008em;
  max-width: 30rem;
}

.video-stage__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding-top: 4px;
}

.video-stage__sound-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 8, 18, 0.34);
  color: color-mix(in srgb, var(--section-title-color, #ffffff) 88%, #e9f4ff 12%);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.video-stage__sound-toggle:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--color-accent) 32%, rgba(255, 255, 255, 0.14));
  background: rgba(8, 18, 34, 0.44);
  color: #ffffff;
}

.video-stage__sound-note {
  font-size: 0.78rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--section-meta-color, rgba(255, 255, 255, 0.72)) 82%, #eef5ff 18%);
}

.video-stage__rail {
  display: grid;
  gap: 12px;
  align-content: start;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.video-stage__rail-head {
  display: grid;
  gap: 8px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2px;
}

.video-stage__rail-head span {
  color: color-mix(in srgb, var(--section-description-color, rgba(242, 242, 242, 0.66)) 82%, #eef6ff 18%);
  font-size: 0.92rem;
  line-height: 1.6;
  letter-spacing: 0.008em;
}

.video-stage__interviews {
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-stage__interviews-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.video-stage__interviews-head h3 {
  margin: 0;
  font-family: var(--font-display);
  max-width: 14ch;
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
}

.video-stage__interviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.video-interview-card {
  position: relative;
  display: grid;
  gap: 0;
  padding-top: 18px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.video-interview-card::before {
  content: "";
  position: absolute;
  inset: auto -8% -16% 44%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 48, 108, 0.18), transparent 70%);
  filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.video-interview-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--color-accent) 24%, rgba(255, 255, 255, 0.1));
  box-shadow: none;
}

.video-interview-card:hover::before {
  opacity: 1;
}

.video-interview-card__embed {
  padding: 18px 18px 0;
}

.video-interview-card__embed--instagram {
  position: relative;
  pointer-events: none;
  user-select: none;
}

.video-interview-card__embed--instagram,
.video-interview-card__embed--instagram * {
  pointer-events: none !important;
}

.video-interview-card__embed--instagram blockquote.instagram-media {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.video-interview-card__embed-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-interview-card__media {
  display: block;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at top center, rgba(225, 48, 108, 0.28), transparent 54%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(7, 7, 7, 0.98));
}

.video-interview-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 880ms var(--ease-out);
}

.video-interview-card:hover .video-interview-card__media img {
  transform: scale(1.05);
}

.video-interview-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-interview-card__placeholder-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.video-interview-card__placeholder-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.video-interview-card__content {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
}

.video-interview-card__index {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--section-meta-color, rgba(255, 255, 255, 0.28));
}

.video-interview-card__body {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.video-interview-card__platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--section-meta-color, rgba(255, 255, 255, 0.76)) 80%, #f4f8ff 20%);
}

.video-interview-card__icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(225, 48, 108, 0.16);
  color: #ffffff;
}

.video-interview-card__icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.video-interview-card strong {
  display: block;
  color: var(--section-title-color, #ffffff);
  font-size: 1.04rem;
}

.video-interview-card p {
  margin: 0;
  color: color-mix(in srgb, var(--section-description-color, rgba(242, 242, 242, 0.68)) 86%, #eef6ff 14%);
  line-height: 1.5;
}

.video-interview-card__hint {
  font-size: 0.77rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--section-description-color, rgba(242, 242, 242, 0.68)) 74%, #f4f8ff 26%);
}

.video-interview-card__cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--section-title-color, #ffffff) 88%, #e1306c);
  white-space: nowrap;
  transition:
    transform var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.video-interview-card:hover .video-interview-card__cta {
  transform: translateX(2px);
  color: color-mix(in srgb, var(--section-title-color, #ffffff) 78%, #ff5f91);
}

.video-rail__item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 136px;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  text-align: left;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    transform var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.video-rail__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(8, 135, 248, 0.56), rgba(255, 255, 255, 0.06));
  opacity: 0;
  transform: scaleY(0.56);
  transform-origin: top;
  transition:
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.video-rail__copy {
  min-width: 0;
}

.video-rail__item::after {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.9rem;
  color: rgba(242, 242, 242, 0.26);
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.video-rail__item:first-child {
  border-top: 0;
}

.video-rail__item:hover {
  transform: translate3d(8px, -2px, 0);
  opacity: 1;
  border-color: color-mix(in srgb, var(--color-accent) 26%, rgba(255, 255, 255, 0.12));
  background: transparent;
  box-shadow: none;
}

.video-rail__item.is-active {
  transform: translate3d(10px, 0, 0);
  border-color: color-mix(in srgb, var(--color-accent) 34%, rgba(255, 255, 255, 0.14));
}

.video-rail__item.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.video-rail__item.is-active::after {
  opacity: 0.84;
  transform: translateX(0);
  color: color-mix(in srgb, var(--color-accent) 68%, #ffffff 32%);
}

.video-rail__item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.video-rail__item:hover::after {
  opacity: 0.74;
  transform: translateX(0);
  color: color-mix(in srgb, var(--color-accent) 62%, #ffffff 38%);
}

.video-rail__index {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--section-meta-color, rgba(255, 255, 255, 0.28));
  transition:
    color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.video-rail__item:hover .video-rail__index {
  color: color-mix(in srgb, var(--color-accent) 58%, #ffffff 42%);
  transform: translateX(2px);
}

.video-rail__item.is-active .video-rail__index {
  color: color-mix(in srgb, var(--color-accent) 74%, #ffffff 26%);
  transform: translateX(3px);
}

.video-rail__item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.28;
  letter-spacing: 0.015em;
  color: var(--section-title-color, #ffffff);
}

.video-rail__item p {
  margin: 0;
  color: color-mix(in srgb, var(--section-description-color, rgba(242, 242, 242, 0.64)) 82%, #eef5ff 18%);
  line-height: 1.7;
  letter-spacing: 0.008em;
}

.video-rail__item.is-active strong {
  color: color-mix(in srgb, var(--section-title-color, #ffffff) 84%, #f5fbff 16%);
}

.video-rail__thumb {
  position: relative;
  display: block;
  width: 136px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  justify-self: end;
}

.video-rail__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 9, 16, 0.02), rgba(5, 9, 16, 0.58)),
    linear-gradient(110deg, rgba(255, 255, 255, 0.14), transparent 38%);
  pointer-events: none;
}

.video-rail__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition:
    transform 720ms var(--ease-out),
    filter 720ms var(--ease-out);
}

.video-rail__item:hover .video-rail__thumb img {
  transform: scale(1.09);
  filter: saturate(1.08);
}

.video-rail__item.is-active .video-rail__thumb img {
  transform: scale(1.08);
  filter: saturate(1.12);
}

.signal-stage__context {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 18px;
  padding-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--section-meta-color, var(--color-text-soft));
}

.signal-stage__scanline {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: min(100%, 980px);
  margin: 0 0 18px;
  pointer-events: none;
}

.signal-stage__scanline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-accent) 66%, #ffffff 34%);
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--color-accent) 10%, transparent),
    0 0 26px color-mix(in srgb, var(--color-accent) 28%, transparent);
}

.signal-stage__scanline-track,
.signal-stage__scanline-glow {
  grid-column: 2;
  grid-row: 1;
  display: block;
  height: 1px;
}

.signal-stage__scanline-track {
  background: linear-gradient(90deg, color-mix(in srgb, var(--color-accent) 38%, rgba(16, 16, 16, 0.18)), rgba(16, 16, 16, 0.08) 62%, transparent);
}

.signal-stage__scanline-glow {
  width: 18%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--color-accent) 76%, #ffffff 24%), transparent);
  filter: blur(1px);
  transform: translateX(-180%);
  animation: sheenSweep 8.8s ease-in-out infinite alternate;
  opacity: 0.7;
}

.signal-stage--monumental {
  padding: clamp(18px, 3vw, 26px) 0 0;
  border-top: 1px solid rgba(16, 16, 16, 0.12);
  background: transparent;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.signal-stage--monumental::before {
  content: "";
  position: absolute;
  inset: -4% -2% auto;
  height: 300px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--color-accent) 18%, transparent), transparent 38%),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(90deg, transparent, color-mix(in srgb, var(--color-accent) 7%, transparent), transparent 76%);
  filter: blur(28px);
  opacity: 0.78;
}

.signal-stage__monument {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(20px, 4vw, 38px);
  align-items: stretch;
}

.signal-stage__hero-stat {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 0;
  border-top: 0;
}

.signal-stage__hero-core {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 6px 0 18px;
}

.signal-stage__hero-core::before {
  content: "";
  position: absolute;
  inset: auto -2% -8% 12%;
  height: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-accent) 28%, transparent), transparent 68%);
  filter: blur(24px);
  opacity: 0.68;
  pointer-events: none;
}

.signal-stage__hero-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--section-meta-color, color-mix(in srgb, currentColor 50%, transparent));
}

.signal-stage__hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5.4rem, 16vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
  text-shadow: 0 12px 38px rgba(8, 135, 248, 0.12);
  position: relative;
  z-index: 1;
}

.signal-stage__secondary-grid {
  display: grid;
  gap: 14px;
}

.signal-stage__secondary-card,
.signal-stage__meta-card {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  min-height: auto;
  border-radius: 0;
  border-top: 1px solid rgba(16, 16, 16, 0.12);
  background: transparent;
  box-shadow: none;
}

.signal-stage__secondary-rank {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
  color: color-mix(in srgb, var(--section-meta-color, rgba(16, 16, 16, 0.34)) 84%, var(--color-accent) 16%);
}

.signal-stage__secondary-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
}

.signal-stage__secondary-card span {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--section-meta-color, color-mix(in srgb, currentColor 56%, transparent));
}

.signal-stage__meta-card {
  align-content: start;
}

.signal-stage__meta-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--section-meta-color, color-mix(in srgb, currentColor 50%, transparent));
}

.signal-stage__meta-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
}

.signal-stage__meta-card p {
  margin: 0;
  color: var(--section-description-color, color-mix(in srgb, currentColor 66%, transparent));
  line-height: 1.65;
}

.signal-number__delta {
  display: inline-flex;
  margin-top: 2px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-number__delta.is-up {
  color: #0c7a46;
  background: rgba(12, 122, 70, 0.1);
}

.signal-number__delta.is-down {
  color: #a43a3a;
  background: rgba(164, 58, 58, 0.1);
}

.signal-number__delta.is-stable {
  color: var(--section-meta-color, color-mix(in srgb, currentColor 68%, transparent));
}

.signal-stage__cities {
  padding-top: 18px;
}

.signal-stage__cities-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  margin-bottom: 14px;
}

.signal-stage__cities-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, currentColor 10%, transparent);
  color: color-mix(in srgb, var(--color-accent) 48%, var(--section-title-color, currentColor) 52%);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-stage__city-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 18px;
}

.signal-stage__city-pill {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 0;
  border-top: 1px solid color-mix(in srgb, currentColor 10%, transparent);
  background: transparent;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.signal-stage__city-pill:hover {
  transform: translateX(6px);
  border-color: color-mix(in srgb, var(--color-accent) 24%, rgba(16, 16, 16, 0.12));
}

.signal-stage__city-pill small {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  color: color-mix(in srgb, var(--section-meta-color, rgba(16, 16, 16, 0.34)) 84%, var(--color-accent) 16%);
}

.signal-stage__city-pill strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
}

.signal-stage__city-pill.is-lead strong {
  color: color-mix(in srgb, var(--section-title-color, currentColor) 82%, var(--color-accent) 18%);
}

.social-stage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.social-line {
  display: inline-grid;
  justify-items: start;
  align-content: space-between;
  gap: 18px;
  min-height: 152px;
  padding: 18px 0 0;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.social-line:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--social-accent) 42%, rgba(255, 255, 255, 0.1));
  background: transparent;
  box-shadow: none;
}

.social-line__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--social-accent) 38%, rgba(255, 255, 255, 0.1));
  background: color-mix(in srgb, var(--social-accent) 14%, rgba(255, 255, 255, 0.02));
  color: var(--social-accent);
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.social-line__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-line__platform,
.social-line__cta {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-line__platform {
  color: color-mix(in srgb, rgba(242, 242, 242, 0.88) 86%, #f4f8ff 14%);
}

.social-line__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--social-accent) 28%, rgba(255, 255, 255, 0.08));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--social-accent) 16%, rgba(255, 255, 255, 0.04)), transparent),
    transparent;
  color: var(--social-accent);
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.social-line:hover .social-line__icon {
  transform: scale(1.06);
  box-shadow:
    0 12px 28px color-mix(in srgb, var(--social-accent) 20%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.social-line:hover .social-line__cta {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--social-accent) 42%, rgba(255, 255, 255, 0.12));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--social-accent) 20%, rgba(255, 255, 255, 0.05)), transparent),
    transparent;
  box-shadow: 0 16px 32px color-mix(in srgb, var(--social-accent) 14%, transparent);
}

.drop-stage {
  --drop-stage-cover-image: none;
  position: relative;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(24px, 3vw, 32px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
}

.drop-stage--showcase {
  gap: clamp(30px, 4.6vw, 58px);
}

.drop-stage--showcase::before {
  inset: -8% -5% auto;
  height: 340px;
  background:
    radial-gradient(circle at 76% 22%, rgba(8, 135, 248, 0.2), transparent 36%),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(90deg, transparent, rgba(8, 135, 248, 0.08), transparent 76%);
}

.drop-stage--showcase::after {
  inset: 2% 42% 8% -8%;
  filter: blur(40px) saturate(1.12);
  opacity: 0.26;
}

.drop-stage::before {
  content: "";
  position: absolute;
  inset: -5% -3% auto;
  height: 280px;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 24%, rgba(8, 135, 248, 0.16), transparent 38%),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.07), transparent 22%),
    linear-gradient(90deg, transparent, rgba(8, 135, 248, 0.06), transparent 76%);
  filter: blur(26px);
  opacity: 0.76;
}

.drop-stage::after {
  content: "";
  position: absolute;
  inset: 4% 44% 12% -6%;
  pointer-events: none;
  background-image:
    radial-gradient(circle at center, rgba(8, 135, 248, 0.14), transparent 52%),
    var(--drop-stage-cover-image);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  filter: blur(36px) saturate(1.06);
  opacity: 0.22;
  transform: scale(1.04);
}

.drop-stage > * {
  position: relative;
  z-index: 1;
}

.chapter.is-current .drop-stage {
  box-shadow: none;
}

.drop-stage__signal-line {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
  pointer-events: none;
}

.drop-stage__signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 0 6px rgba(255, 126, 0, 0.08),
    0 0 24px rgba(255, 126, 0, 0.24);
}

.drop-stage__signal-track,
.drop-stage__signal-glow {
  grid-column: 2;
  grid-row: 1;
  display: block;
  height: 1px;
}

.drop-stage__signal-track {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.52), rgba(255, 126, 0, 0.28), transparent 88%);
}

.drop-stage__signal-glow {
  width: 18%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 222, 188, 0.76), rgba(255, 126, 0, 0));
  filter: blur(1px);
  transform: translateX(-170%);
  animation: sheenSweep 8.6s ease-in-out infinite alternate;
  opacity: 0.72;
}

.drop-stage__cover {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.drop-stage__narrative {
  position: relative;
  display: grid;
  gap: clamp(22px, 2.8vw, 28px);
  align-content: start;
  padding-top: clamp(12px, 1.6vw, 18px);
}

.drop-stage__narrative::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 126, 0, 0.18), transparent 84%);
  opacity: 0.38;
}

@media (min-width: 1081px) {
  .drop-stage__cover {
    position: sticky;
    top: clamp(112px, 12vh, 152px);
  }
}

.drop-stage__cover-meta {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.drop-stage__cover-tag,
.drop-stage__cover-count,
.drop-stage__platform-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 8, 18, 0.42);
  color: rgba(248, 251, 255, 0.9);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.drop-stage__cover-count,
.drop-stage__platform-count {
  color: color-mix(in srgb, rgba(255, 214, 173, 0.92) 66%, #fff5ec 34%);
}

.drop-stage__cover::before {
  content: "";
  position: absolute;
  inset: -14% auto -14% -34%;
  width: 34%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: rotate(9deg) translateX(-160%);
  opacity: 0;
  transition:
    transform 1.1s var(--ease-out),
    opacity 1.1s var(--ease-out);
}

.drop-stage__cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 920ms var(--ease-out);
}

.drop-stage:hover .drop-stage__cover img {
  transform: scale(1.05);
}

.drop-stage:hover .drop-stage__cover::before {
  opacity: 0.68;
  transform: rotate(9deg) translateX(360%);
}

.drop-stage__cover-glow {
  position: absolute;
  inset: auto -6% -10% 12%;
  height: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 126, 0, 0.34), transparent 68%);
  filter: blur(32px);
  pointer-events: none;
  transition:
    transform 780ms var(--ease-out),
    opacity 780ms var(--ease-out);
}

.drop-stage:hover .drop-stage__cover-glow {
  transform: scale(1.08);
  opacity: 0.94;
}

.drop-stage__headerline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 4px;
}

.drop-stage__signal {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 126, 0, 0.12);
  color: color-mix(in srgb, rgba(255, 214, 173, 0.9) 88%, #fff6ee 12%);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(255, 126, 0, 0.12);
}

.drop-stage__content h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  max-width: 11ch;
  font-size: clamp(3.15rem, 6.2vw, 5.2rem);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
  letter-spacing: 0.028em;
}

.drop-stage__content {
  display: grid;
  align-content: start;
  gap: 0;
}

.drop-stage__artists {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--section-meta-color, rgba(242, 242, 242, 0.54)) 78%, #f5f8ff 22%);
}

.drop-stage__description {
  margin: 0 0 28px;
  max-width: 33rem;
  color: color-mix(in srgb, var(--section-description-color, rgba(242, 242, 242, 0.72)) 84%, #eef6ff 16%);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.008em;
  text-wrap: balance;
}

.drop-stage__platform-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  margin-bottom: 14px;
}

.drop-stage__platform-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--section-meta-color, rgba(242, 242, 242, 0.58)) 80%, #f5f8ff 20%);
}

.drop-stage__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.drop-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.drop-platform-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 135, 248, 0.28);
  background:
    linear-gradient(180deg, rgba(8, 135, 248, 0.16), rgba(8, 135, 248, 0.08)),
    transparent;
  box-shadow:
    0 16px 34px rgba(8, 10, 14, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.drop-platform-pill__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out);
}

.drop-platform-pill:hover .drop-platform-pill__icon {
  transform: scale(1.06);
  border-color: rgba(8, 135, 248, 0.22);
  background: rgba(8, 135, 248, 0.1);
}

.drop-platform-pill__icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.drop-platform-pill__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drop-stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-top: 8px;
}

.drop-stage__actions .button {
  min-width: 214px;
}

.drop-stage__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.drop-link-chip {
  display: inline-grid;
  gap: 4px;
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  transition:
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out);
}

.drop-link-chip:hover,
.drop-link-chip.is-active {
  transform: translateY(-2px);
  border-color: rgba(8, 135, 248, 0.28);
  background: rgba(8, 135, 248, 0.12);
}

.drop-link-chip span {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
}

.drop-link-chip small {
  color: var(--section-meta-color, rgba(242, 242, 242, 0.54));
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.promo-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.smart-links-library {
  display: grid;
  gap: 28px;
}

.smart-links-library__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.smart-links-library__item {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: transparent;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.smart-links-library__item:hover {
  transform: translateX(6px);
  border-color: rgba(8, 135, 248, 0.22);
}

.smart-links-library__art {
  display: block;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: none;
}

.smart-links-library__art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart-links-library__meta {
  display: grid;
  gap: 10px;
  align-content: start;
  padding-top: 10px;
}

.smart-links-library__meta strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.smart-links-library__meta p {
  margin: 0;
  color: rgba(242, 242, 242, 0.62);
  line-height: 1.72;
}

.smart-links-library__meta span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.52);
}

.smart-links-library__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 10px;
}

.promo-page__copy {
  display: grid;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-page__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.84;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

.promo-page__artists {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.52);
}

.promo-page__description {
  max-width: 34rem;
  margin: 0;
  color: rgba(242, 242, 242, 0.7);
  line-height: 1.82;
  text-wrap: pretty;
}

.promo-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.promo-page__actions--footer {
  margin-top: 20px;
}

.promo-page__cover {
  position: relative;
  align-self: end;
  padding-top: 22px;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  background: transparent;
}

.promo-page__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
}

.promo-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.promo-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-platform-pill {
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
  padding: 20px 0 22px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.promo-platform-pill:hover {
  transform: translateX(4px);
  border-color: rgba(8, 135, 248, 0.28);
  background: transparent;
  box-shadow: none;
}

.promo-platform-pill .drop-platform-pill__icon {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.promo-platform-pill:hover .drop-platform-pill__icon {
  transform: translateX(2px);
  border-color: transparent;
  background: transparent;
}

.promo-platform-pill__copy {
  display: grid;
  gap: 6px;
}

.promo-platform-pill__copy strong {
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.2;
  color: var(--color-paper);
}

.promo-platform-pill .drop-platform-pill__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(242, 242, 242, 0.48);
}

.epk-page__utility {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.epk-page__return {
  white-space: nowrap;
}

.epk-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  position: relative;
}

.epk-page__copy {
  display: grid;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-content: start;
}

.epk-page__kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--section-meta-color, color-mix(in srgb, var(--color-text) 50%, transparent));
}

.epk-page__title-stack {
  display: grid;
  gap: 6px;
  position: relative;
  padding-bottom: 12px;
}

.epk-page__title-stack::after {
  content: "";
  width: min(160px, 28%);
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--color-accent) 70%, #ffffff 30%), transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--color-accent) 18%, transparent);
}

.epk-page__title-main,
.epk-page__title-outline,
.epk-page__headline {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.epk-page__title-main {
  font-size: clamp(4rem, 9vw, 7.2rem);
  line-height: 0.8;
  letter-spacing: -0.025em;
  color: var(--section-title-color, var(--color-text));
  text-wrap: balance;
}

.epk-page__title-outline {
  font-size: clamp(3.4rem, 8vw, 6.1rem);
  line-height: 0.82;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--color-accent) 72%, #ffffff 28%);
  opacity: 0.74;
}

.epk-page__headline {
  max-width: 14ch;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--section-title-color, var(--color-text));
  text-wrap: balance;
}

.epk-page__lede {
  max-width: 36rem;
  color: color-mix(in srgb, var(--section-description-color, var(--color-text)) 74%, #f3f8ff 26%);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.epk-page__quote {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
  text-wrap: balance;
  opacity: 0.96;
}

.epk-page__visuals {
  display: grid;
  gap: 18px;
  position: relative;
}

.epk-page__visuals::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: clamp(180px, 24vw, 320px);
  height: clamp(180px, 24vw, 320px);
  background: radial-gradient(circle, color-mix(in srgb, var(--color-accent) 18%, transparent), transparent 70%);
  filter: blur(24px);
  opacity: 0.58;
  pointer-events: none;
}

.epk-page__cover {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.epk-page__cover--fallback {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, color-mix(in srgb, var(--color-accent) 24%, transparent), transparent 58%),
    linear-gradient(180deg, color-mix(in srgb, var(--color-text) 8%, transparent), color-mix(in srgb, var(--color-text) 3%, transparent));
}

.epk-page__cover-image,
.epk-page__cover-veil {
  position: absolute;
  inset: 0;
}

.epk-page__cover-image {
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(var(--epk-cover-scale, 1.03));
  filter: saturate(1.02) contrast(1.02);
}

.epk-page__cover-veil {
  background:
    radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--color-accent) 18%, transparent), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46)),
    linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.76) 100%);
}

.epk-page__cover-body {
  position: absolute;
  inset: auto 24px 24px;
  display: grid;
  gap: 10px;
  width: min(100%, 360px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1;
}

.epk-page__cover-body span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.62);
}

.epk-page__cover-body strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.84;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.epk-page__cover-body small {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.64);
}

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

.epk-page__mini-card {
  display: grid;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  align-content: start;
}

.epk-page__mini-media {
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 4 / 5;
  background: transparent;
}

.epk-page__mini-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 540ms var(--ease-out), filter 540ms var(--ease-out);
}

.epk-page__mini-card:hover .epk-page__mini-media img,
.epk-page__gallery-card:hover .epk-page__gallery-media img {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.epk-page__mini-copy {
  padding: 8px 0 0;
}

.epk-page__mini-copy span,
.epk-page__gallery-meta span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--section-meta-color, color-mix(in srgb, var(--color-text) 58%, transparent));
}

.epk-page__fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
  align-items: start;
}

.epk-page__story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 32px;
  margin-top: 40px;
}

.epk-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 32px;
  margin-top: 40px;
}

.epk-card {
  display: grid;
  gap: 20px;
  padding: 26px 0 0;
  border-radius: 0;
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
  background: transparent;
}

.section__heading--compact {
  gap: 10px;
}

.section__heading--compact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.section__heading--compact p:not(.eyebrow) {
  max-width: 48ch;
  color: color-mix(in srgb, var(--color-text) 68%, transparent);
  line-height: 1.78;
}

.epk-page__story-body {
  display: grid;
  gap: 16px;
}

.epk-page__story-body p,
.epk-page__highlight-card p {
  margin: 0;
  color: var(--section-description-color, color-mix(in srgb, var(--color-text) 72%, transparent));
  line-height: 1.84;
}

.epk-page__fact {
  display: grid;
  gap: 10px;
  align-content: end;
  min-height: 0;
  padding: 20px 0 0;
  border-radius: 0;
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
  background: transparent;
}

.epk-page__fact:nth-child(2) {
  margin-top: 12px;
}

.epk-page__fact:nth-child(3) {
  margin-top: 24px;
}

.epk-page__fact span,
.epk-page__story-callout span,
.epk-page__contact-line span,
.epk-page__highlight-card span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--section-meta-color, color-mix(in srgb, var(--color-text) 56%, transparent));
}

.epk-page__fact strong,
.epk-page__story-callout strong {
  font-family: var(--font-display);
  font-size: 1.34rem;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--section-title-color, var(--color-text));
}

.epk-page__story-callout {
  display: grid;
  gap: 12px;
  padding: 22px 0 0;
  border-radius: 0;
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--color-accent) 24%, transparent);
  background: transparent;
  text-decoration: none;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.epk-page__story-callout:hover {
  transform: translateX(4px);
  border-color: color-mix(in srgb, var(--color-accent) 40%, transparent);
  background: transparent;
}

.epk-page__highlight-grid {
  display: grid;
  gap: 16px;
}

.epk-page__highlight-card {
  display: grid;
  gap: 14px;
  padding: 20px 0 0;
  border-radius: 0;
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
  background: transparent;
}

.epk-page__highlight-card span {
  color: color-mix(in srgb, var(--color-accent) 72%, #ffffff 28%);
}

.epk-card--gallery {
  margin-top: 40px;
}

.epk-page__gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.epk-page__gallery-card {
  display: grid;
  gap: 12px;
  grid-column: span 4;
}

.epk-page__gallery-card:first-child {
  grid-column: span 7;
  margin-top: 16px;
}

.epk-page__gallery-card:nth-child(2) {
  grid-column: span 5;
}

.epk-page__gallery-media {
  overflow: hidden;
  min-height: 340px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
}

.epk-page__gallery-card:first-child .epk-page__gallery-media {
  min-height: 500px;
}

.epk-page__gallery-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms var(--ease-out), filter 620ms var(--ease-out);
}

.epk-page__gallery-meta {
  padding: 2px 0 0;
}

.epk-page__gallery-card:nth-child(3n) {
  margin-top: 22px;
}

.epk-page__links {
  padding-top: 0;
  border-top: 0;
}

.epk-page__contact-line {
  display: grid;
  gap: 12px;
  padding: 20px 0 0;
  border-radius: 0;
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
  background: transparent;
}

.epk-page__contact-line a {
  color: var(--section-title-color, var(--color-text));
  font-size: 1.04rem;
  font-weight: 600;
  word-break: break-word;
}

.promo-link {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out);
}

.promo-link:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 135, 248, 0.28);
  background: rgba(8, 135, 248, 0.08);
}

.promo-link span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.56);
}

.promo-link strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.collab-stage {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.collab-stage__lead {
  padding: 24px 0 0;
  border-top: 1px solid rgba(16, 16, 16, 0.14);
}

.collab-stage__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.collab-stage__chips span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  background: transparent;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collab-stage__mail {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
}

.collab-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px) 0 0;
  border-radius: 0;
  border-top: 1px solid rgba(16, 16, 16, 0.12);
  background: transparent;
  box-shadow: none;
}

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

.field label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.54);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--color-surface-strong) 8%, transparent);
  border-radius: 16px;
  background: color-mix(in srgb, var(--color-surface) 72%, white);
  color: var(--color-surface-strong);
  padding: 16px 18px;
}

.about-stage {
  grid-template-columns: minmax(0, 1.08fr) minmax(180px, 0.62fr);
  align-items: center;
  gap: clamp(22px, 4vw, 40px);
}

.about-stage__copy {
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stage__copy blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.about-stage__copy p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.about-stage__seal {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  max-width: 280px;
  margin-inline: auto;
  transition: transform 240ms var(--ease-out);
}

.about-stage__seal-ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
  box-shadow: 0 0 80px color-mix(in srgb, var(--color-accent) 12%, transparent);
}

.about-stage__seal img {
  position: relative;
  width: min(62%, 240px);
  filter: invert(1);
}

.chapter.is-current .about-stage__seal {
  transform: translateY(-4px);
}

.chapter--closing {
  padding-top: 12px;
}

.closing-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 42px);
  padding: 0;
  border: 0;
  background: transparent;
}

.closing-stage--single {
  grid-template-columns: minmax(0, 1fr);
}

.closing-stage__eyebrow {
  margin: 0 0 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--section-meta-color, rgba(242, 242, 242, 0.54)) 80%, #f4f8ff 20%);
}

.closing-stage__about {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.closing-stage__about h2,
.closing-stage__contact h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
}

.closing-stage__about h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.closing-stage__contact h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
}

.closing-stage__about p,
.closing-stage__contact p {
  margin: 0;
  color: color-mix(in srgb, var(--section-description-color, rgba(242, 242, 242, 0.68)) 84%, #eef6ff 16%);
  max-width: 36rem;
  line-height: 1.86;
  letter-spacing: 0.008em;
}

.closing-stage__quote {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
}

.closing-stage__epk {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.closing-stage__epk-head {
  display: grid;
  gap: 10px;
}

.closing-stage__epk-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
}

.closing-stage__epk-head p {
  margin: 0;
  color: var(--section-description-color, rgba(242, 242, 242, 0.68));
  line-height: 1.72;
}

.closing-stage__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.closing-stage__fact {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.closing-stage__fact-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--section-meta-color, rgba(242, 242, 242, 0.5));
}

.closing-stage__fact strong {
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1.06;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
}

.closing-stage__notes {
  display: grid;
  gap: 12px;
}

.closing-stage__notes-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--section-meta-color, rgba(242, 242, 242, 0.52));
}

.closing-stage__notes-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.closing-stage__notes-list li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--section-description-color, rgba(242, 242, 242, 0.74));
  line-height: 1.7;
}

.closing-stage__notes-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-accent) 80%, #ffffff 20%);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--color-accent) 14%, transparent);
}

.closing-stage__contact {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
}

.closing-stage__contact--solo {
  max-width: 920px;
  padding: clamp(10px, 2vw, 18px) 0 0;
  border-top: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.closing-stage__contact--solo::before {
  content: "";
  position: absolute;
  inset: -18% 40% auto -12%;
  height: 260px;
  pointer-events: none;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 28%, transparent), transparent 64%);
  filter: blur(22px);
  opacity: 0.84;
}

.closing-stage__contact--solo::after {
  content: "";
  position: absolute;
  inset: auto -12% -16% 52%;
  height: 180px;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 72%),
    radial-gradient(circle at 40% 40%, color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 14%, transparent), transparent 62%);
  filter: blur(28px);
  opacity: 0.58;
}

.closing-stage__signal-line,
.site-footer__signal-line {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  pointer-events: none;
}

.closing-stage__signal-line {
  margin-bottom: 18px;
}

.site-footer__signal-line {
  padding-top: 18px;
  margin-bottom: 12px;
}

.closing-stage__signal-dot,
.site-footer__signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--color-accent) 10%, transparent),
    0 0 24px color-mix(in srgb, var(--color-accent) 22%, transparent);
}

.closing-stage__signal-track,
.closing-stage__signal-glow,
.site-footer__signal-track,
.site-footer__signal-glow {
  grid-column: 2;
  grid-row: 1;
  display: block;
  height: 1px;
}

.closing-stage__signal-track,
.site-footer__signal-track {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.48), color-mix(in srgb, var(--color-accent) 28%, transparent), transparent 88%);
}

.closing-stage__signal-glow,
.site-footer__signal-glow {
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), color-mix(in srgb, var(--color-accent) 54%, transparent), transparent);
  filter: blur(1px);
  transform: translateX(-170%);
  animation: sheenSweep 8.2s ease-in-out infinite alternate;
  opacity: 0.72;
}

.closing-stage__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 30px;
}

.closing-stage__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--section-meta-color, rgba(242, 242, 242, 0.78));
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.closing-stage__chip:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--color-accent) 34%, rgba(255, 255, 255, 0.12));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 14%, rgba(255, 255, 255, 0.03)), rgba(255, 255, 255, 0.03)),
    transparent;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--color-accent) 12%, transparent);
}

.closing-stage__chip.is-active {
  color: var(--section-title-color, #ffffff);
  border-color: color-mix(in srgb, var(--color-accent) 48%, rgba(255, 255, 255, 0.14));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-accent) 22%, rgba(255, 255, 255, 0.04)), rgba(255, 255, 255, 0.04)),
    transparent;
  box-shadow:
    0 16px 34px color-mix(in srgb, var(--color-accent) 16%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.closing-stage__actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.closing-stage__actions--about {
  width: fit-content;
  margin-top: 22px;
}

.closing-stage__form {
  display: grid;
  gap: 18px;
  padding-top: 10px;
}

.closing-stage__form .field label {
  color: var(--section-meta-color, rgba(242, 242, 242, 0.58));
}

.closing-stage__form .field input,
.closing-stage__form .field textarea {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--section-title-color, #f2f2f2);
}

.closing-stage__form .field input:focus,
.closing-stage__form .field textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--color-accent) 44%, rgba(255, 255, 255, 0.16));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--color-accent) 42%, rgba(255, 255, 255, 0.12)),
    0 0 0 6px color-mix(in srgb, var(--color-accent) 12%, transparent);
}

.closing-stage__form .field input::placeholder,
.closing-stage__form .field textarea::placeholder {
  color: var(--section-meta-color, rgba(242, 242, 242, 0.4));
}

.closing-stage__path {
  display: grid;
  gap: 10px;
  padding: 18px 0 20px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
}

.closing-stage__path-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--section-meta-color, rgba(242, 242, 242, 0.52)) 80%, #f4f8ff 20%);
}

.closing-stage__path strong {
  font-family: var(--font-display);
  max-width: 14ch;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--section-title-color, currentColor);
}

.closing-stage__path p {
  margin: 0;
  color: color-mix(in srgb, var(--section-description-color, rgba(242, 242, 242, 0.72)) 84%, #eef6ff 16%);
  line-height: 1.76;
  letter-spacing: 0.008em;
}

.closing-stage__hint {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--section-meta-color, rgba(242, 242, 242, 0.56)) 80%, #f5f9ff 20%);
  max-width: 34rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #f2f2f2;
  background:
    radial-gradient(circle at 16% 18%, rgba(8, 135, 248, 0.1), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #06090d 0%, #040404 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0.72;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: auto -10% -24% 42%;
  height: 220px;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(8, 135, 248, 0.14), transparent 64%),
    radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.08), transparent 36%);
  filter: blur(34px);
  opacity: 0.66;
}

.site-footer__layout {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  padding: 34px 0 46px;
}

.site-footer__layout::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  opacity: 0.5;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer__brand strong,
.site-footer__brand span {
  display: block;
}

.site-footer__brand strong {
  margin-bottom: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer__brand span {
  color: color-mix(in srgb, rgba(242, 242, 242, 0.5) 80%, #f4f8ff 20%);
  max-width: 26rem;
  font-size: 0.92rem;
  line-height: 1.8;
  letter-spacing: 0.008em;
}

.site-footer__logo-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 18px 34px rgba(0, 0, 0, 0.16);
}

.site-footer__logo-wrap img {
  width: 34px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding-bottom: 6px;
}

.site-footer__links a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.5);
  transition:
    color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.site-footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--color-accent) 72%, #ffffff 28%), transparent);
  opacity: 0;
  transform: scaleX(0.42);
  transform-origin: center;
  transition:
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.site-footer__links a:hover {
  color: rgba(242, 242, 242, 0.9);
  transform: translateY(-1px);
}

.site-footer__links a:hover::after {
  opacity: 0.74;
  transform: scaleX(1);
}

@keyframes heroBadgeFocus {
  0%,
  11% {
    transform: translateY(-3px) scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 18px color-mix(in srgb, var(--hero-marquee-bg, var(--color-accent)) 32%, transparent));
  }

  15%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
    filter: none;
  }
}

@keyframes liquidDrift {
  from {
    transform: translate3d(-2%, 0, 0) scaleX(0.98);
  }

  to {
    transform: translate3d(2%, -4%, 0) scaleX(1.03);
  }
}

@keyframes liquidDriftReverse {
  from {
    transform: translate3d(3%, 2%, 0) scale(1.02);
  }

  to {
    transform: translate3d(-2%, -3%, 0) scale(0.97);
  }
}

@keyframes bubbleRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.78);
    opacity: 0;
  }

  20% {
    opacity: 0.42;
  }

  80% {
    opacity: 0.3;
  }

  100% {
    transform: translate3d(22px, -190px, 0) scale(1.18);
    opacity: 0;
  }
}

@keyframes heroWaterFlowBack {
  0% {
    background-position: 0 100%, 170px calc(100% - 34px);
  }

  100% {
    background-position: -1320px 100%, -640px calc(100% - 34px);
  }
}

@keyframes heroWaterFlowMid {
  0% {
    background-position: 0 100%, 132px calc(100% - 24px);
  }

  100% {
    background-position: -980px 100%, -520px calc(100% - 24px);
  }
}

@keyframes heroWaterFlowFront {
  0% {
    background-position: 0 100%, 94px calc(100% - 16px);
  }

  100% {
    background-position: -760px 100%, -410px calc(100% - 16px);
  }
}

@keyframes heroWaterShimmer {
  0% {
    transform: translate3d(-3%, 0, 0);
    opacity: 0.18;
  }

  100% {
    transform: translate3d(3%, 0, 0);
    opacity: 0.34;
  }
}

@keyframes spotifyCtaNudge {
  0%,
  72%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  76% {
    transform: translateX(-2px) rotate(-1.2deg);
  }

  80% {
    transform: translateX(3px) rotate(1.4deg);
  }

  84% {
    transform: translateX(-2px) rotate(-1deg);
  }

  88% {
    transform: translateX(2px) rotate(0.8deg);
  }

  92% {
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes ctaIconPulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 0 0 1px color-mix(in srgb, var(--wave-cta-bg, #1db954) 18%, transparent),
      0 0 18px color-mix(in srgb, var(--wave-cta-bg, #1db954) 14%, transparent);
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 0 0 1px color-mix(in srgb, var(--wave-cta-bg, #1db954) 26%, transparent),
      0 0 28px color-mix(in srgb, var(--wave-cta-bg, #1db954) 24%, transparent);
  }
}

@keyframes decorSnowFall {
  0% {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0;
  }

  12% {
    opacity: 0.78;
  }

  100% {
    transform: translate3d(var(--particle-drift, 14px), 120vh, 0) scale(1.08);
    opacity: 0;
  }
}

@keyframes decorRainFall {
  0% {
    transform: translate3d(0, 0, 0) rotate(10deg);
    opacity: 0;
  }

  10% {
    opacity: 0.72;
  }

  100% {
    transform: translate3d(var(--particle-drift, 8px), 132vh, 0) rotate(10deg);
    opacity: 0;
  }
}

@keyframes decorBubbleRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.78);
    opacity: 0;
  }

  16% {
    opacity: 0.56;
  }

  100% {
    transform: translate3d(var(--particle-drift, 20px), -124vh, 0) scale(1.16);
    opacity: 0;
  }
}

@keyframes decorEmberRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.72);
    opacity: 0;
  }

  18% {
    opacity: 0.82;
  }

  100% {
    transform: translate3d(var(--particle-drift, 22px), -122vh, 0) scale(1.3);
    opacity: 0;
  }
}

@keyframes decorStarTwinkle {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.18;
  }

  45% {
    transform: scale(1.1);
    opacity: 0.78;
  }

  70% {
    transform: scale(0.94);
    opacity: 0.36;
  }
}

@keyframes decorMistDrift {
  0% {
    transform: translate3d(-4%, -2%, 0) scale(1);
  }

  100% {
    transform: translate3d(4%, 3%, 0) scale(1.08);
  }
}

@keyframes cursorRadarPulse {
  0%,
  100% {
    transform: translate3d(calc(var(--cursor-x) - 50%), calc(var(--cursor-y) - 50%), 0) scale(0.94);
  }

  50% {
    transform: translate3d(calc(var(--cursor-x) - 50%), calc(var(--cursor-y) - 50%), 0) scale(1.04);
  }
}

@keyframes cursorWavePulse {
  0%,
  100% {
    transform: translate3d(calc(var(--cursor-x) - 50%), calc(var(--cursor-y) - 50%), 0) scale(0.96);
  }

  50% {
    transform: translate3d(calc(var(--cursor-x) - 50%), calc(var(--cursor-y) - 50%), 0) scale(1.05);
  }
}

@keyframes cursorWaveHalo {
  0% {
    transform: scale(0.86);
    opacity: 0.44;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes waveEmbedSweep {
  0%,
  18% {
    transform: translateX(-190%) skewX(-14deg);
    opacity: 0;
  }

  28%,
  56% {
    opacity: 0.55;
  }

  72%,
  100% {
    transform: translateX(420%) skewX(-14deg);
    opacity: 0;
  }
}

@keyframes ripplePulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.16;
  }

  50% {
    transform: scale(1.09);
    opacity: 0.34;
  }
}

@keyframes sheenSweep {
  from {
    transform: translate3d(-18%, 0, 0);
  }

  to {
    transform: translate3d(20%, 0, 0);
  }
}

@media (max-width: 1080px) {
  .hero-stage__layout,
  .wave-stage,
  .stream-stage,
  .video-stage,
  .drop-stage,
  .collab-stage,
  .about-stage,
  .closing-stage,
  .epk-page__hero,
  .promo-page__hero {
    grid-template-columns: 1fr;
  }

  .social-line {
    min-height: 138px;
  }

  .hero-stage__copy {
    max-width: min(100%, 760px);
    padding-inline: clamp(18px, 4vw, 28px);
  }

  .wave-stage {
    gap: 26px;
  }

  .wave-stage__stack {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wave-stage__release {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .wave-stage__release::before {
    inset: 6% 36% 10% -4%;
    filter: blur(28px);
    opacity: 0.76;
  }

  .wave-stage__release::after {
    inset: 14% 40% 18% 0;
    filter: blur(32px);
    opacity: 0.16;
  }

  .wave-stage__release-art {
    max-width: min(100%, 420px);
  }

  .wave-stage__listen-panel {
    gap: 20px;
    padding-top: 0;
  }

  .wave-stage__embed {
    width: min(100%, 680px);
    margin-left: 0;
  }

  .wave-stage__actions {
    gap: 12px;
  }

  .wave-stage__actions .button {
    min-width: 0;
    flex: 1 1 220px;
  }

  .drop-stage {
    padding-top: clamp(22px, 5vw, 28px);
  }

  .drop-stage__cover {
    max-width: 420px;
    margin-inline: auto;
  }

  .drop-stage__narrative {
    gap: 24px;
    padding-top: 4px;
  }

  .drop-stage__narrative::before {
    display: none;
  }

  .video-stage__rail {
    padding-top: 10px;
  }

  .video-stage__narrative {
    gap: 24px;
    padding-top: 4px;
  }

  .video-stage__narrative::before {
    display: none;
  }

  .video-rail__item {
    grid-template-columns: 52px minmax(0, 1fr) 128px;
  }

  .video-rail__thumb {
    width: 128px;
  }

  .video-stage__interviews-grid,
  .social-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-page__cover {
    width: min(100%, 420px);
    max-width: 420px;
    margin-inline: auto;
  }

  .hero-stage {
    padding-bottom: 36px;
    overflow: clip;
  }

  .hero-stage__copy::after {
    width: min(86vw, 760px);
    height: min(86vw, 760px);
  }

  .hero-stage__marquee-track {
    padding-inline: 20px;
  }

  .hero-stage__marquee-group {
    gap: 11px;
  }

  .chapter__liquid-divider {
    width: min(88vw, 920px);
    height: 110px;
    transform: translate(-50%, -32%);
  }

  .chapter__entry-threshold {
    width: min(90vw, 920px);
    height: 178px;
    transform: translate(-50%, -18%);
  }

  .hero-stage__liquid-field::before {
    width: min(42vw, 320px);
    height: min(42vw, 320px);
  }

  .closing-stage__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .epk-page__story-grid,
  .epk-page__grid {
    grid-template-columns: 1fr;
  }

  .epk-page__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .epk-page__gallery-card,
  .epk-page__gallery-card:first-child,
  .epk-page__gallery-card:nth-child(2) {
    grid-column: span 1;
  }

  .epk-page__gallery-card:first-child .epk-page__gallery-media {
    min-height: 380px;
  }
}

@media (max-width: 820px) {
  .chapter {
    padding: clamp(72px, 13vw, 104px) 0;
  }

  .chapter::before {
    opacity: calc(0.14 + (var(--section-progress) * 0.14));
  }

  .chapter::after {
    opacity: calc(0.06 + (var(--section-progress) * 0.08));
    filter: blur(56px);
  }

  .chapter--entry {
    padding-top: clamp(94px, 16vw, 132px);
  }

  .chapter__entry-veil {
    inset: -88px 0 auto;
    height: 190px;
    filter: blur(14px);
  }

  .chapter--entry .chapter__liquid-divider {
    top: 8px;
    transform: translate(-50%, -46%);
  }

  .hero-stage {
    background:
      radial-gradient(circle at 50% 24%, rgba(8, 135, 248, 0.22), transparent 28%),
      radial-gradient(circle at 78% 22%, rgba(86, 183, 255, 0.12), transparent 22%),
      linear-gradient(180deg, rgba(3, 8, 16, 0.96) 0%, rgba(4, 10, 18, 0.9) 42%, rgba(2, 6, 11, 0.98) 100%);
  }

  .hero-stage::before {
    background:
      radial-gradient(circle at 50% 18%, rgba(210, 242, 255, 0.14), transparent 16%),
      radial-gradient(circle at 50% 34%, rgba(8, 135, 248, 0.2), transparent 26%),
      linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 30%, transparent 70%, rgba(8, 135, 248, 0.08));
    opacity: 1;
  }

  .hero-stage__fluid-canvas-wrap {
    display: none;
  }

  .hero-stage__mesh {
    inset: 14% 8% 26%;
    background-size: 28px 28px;
    opacity: 0.12;
  }

  .hero-stage__orb {
    filter: blur(28px);
  }

  .hero-stage__orb--left {
    width: 220px;
    height: 220px;
    top: 8%;
    left: -10%;
    opacity: 0.72;
  }

  .hero-stage__orb--right {
    width: 280px;
    height: 280px;
    right: -16%;
    bottom: 20%;
    opacity: 0.6;
  }

  .site-header__inner,
  .site-footer__layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header__controls {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .language-switch--header {
    align-self: flex-start;
  }

  .site-header[data-mobile-condensed="true"] {
    background: rgba(8, 8, 10, 0.84);
  }

  .site-shell[data-tone="light"] .site-header[data-mobile-condensed="true"] {
    background: rgba(244, 241, 235, 0.94);
  }

  .site-header[data-mobile-condensed="true"] .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand switch"
      "nav nav";
    align-items: center;
    min-height: auto;
    gap: 6px 12px;
  }

  .site-header[data-mobile-condensed="true"] .brand-mark {
    grid-area: brand;
    gap: 0;
  }

  .site-header[data-mobile-condensed="true"] .brand-mark__surface img {
    height: 26px;
    transform: translateY(-1px);
  }

  .site-header[data-mobile-condensed="true"] .brand-mark__caption {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);
  }

  .site-header[data-mobile-condensed="true"] .site-header__controls {
    display: contents;
  }

  .site-header[data-mobile-condensed="true"] .site-nav {
    grid-area: nav;
    width: 100%;
    min-height: 42px;
    opacity: 1;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 0;
    pointer-events: auto;
    transform: none;
    align-items: center;
    gap: 4px;
    mask-image: linear-gradient(90deg, transparent 0, black 10px, black calc(100% - 10px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 10px, black calc(100% - 10px), transparent 100%);
  }

  .site-header[data-mobile-condensed="true"] .language-switch--header {
    grid-area: switch;
    justify-self: end;
    align-self: start;
  }

  .site-header[data-mobile-condensed="true"] .site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    opacity: 0.82;
  }

  .closing-stage__epk {
    padding: 20px;
  }

  .closing-stage__facts {
    grid-template-columns: 1fr;
  }

  .closing-stage__contact--solo {
    padding: 12px 0 0;
    border-radius: 0;
  }

  .epk-page__utility {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-page__copy {
    gap: 14px;
    padding-top: 18px;
  }

  .promo-page__title {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
    line-height: 0.9;
  }

  .promo-page__description {
    max-width: none;
    line-height: 1.72;
  }

  .promo-page__actions {
    gap: 10px;
  }

  .promo-page__cover {
    width: min(100%, 360px);
    max-width: 360px;
    padding-top: 18px;
  }

  .promo-platforms {
    gap: 0;
    padding-top: 18px;
  }

  .promo-platform-pill {
    padding: 16px 0;
  }

  .epk-page__title-main {
    font-size: clamp(3.4rem, 18vw, 5.6rem);
  }

  .epk-page__title-outline {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .epk-page__headline {
    font-size: clamp(1.18rem, 5vw, 1.7rem);
    max-width: none;
  }

  .epk-page__copy {
    gap: 14px;
    padding-top: 18px;
  }

  .epk-page__quote {
    max-width: none;
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .epk-page__fact-strip,
  .epk-page__mini-grid,
  .epk-page__gallery {
    grid-template-columns: 1fr;
  }

  .epk-page__fact:nth-child(2),
  .epk-page__fact:nth-child(3),
  .epk-page__gallery-card:first-child,
  .epk-page__gallery-card:nth-child(3n) {
    margin-top: 0;
  }

  .epk-page__gallery-card,
  .epk-page__gallery-card:first-child,
  .epk-page__gallery-card:nth-child(2) {
    grid-column: auto;
  }

  .epk-page__cover {
    min-height: 300px;
  }

  .epk-page__cover-body {
    inset: auto 18px 18px;
    padding-top: 14px;
    width: min(100%, 320px);
  }

  .epk-page__gallery-media,
  .epk-page__gallery-card:first-child .epk-page__gallery-media {
    min-height: 260px;
  }

  .epk-page__story-grid,
  .epk-page__grid {
    gap: 22px;
    margin-top: 28px;
  }

  .epk-card {
    gap: 16px;
    padding-top: 20px;
  }

  .epk-card--gallery {
    margin-top: 28px;
  }

  .epk-page__contact-line a {
    font-size: 1rem;
  }

  .hero-stage__headline {
    font-size: clamp(4rem, 23vw, 6.7rem);
    line-height: 0.84;
    letter-spacing: 0.018em;
  }

  .hero-stage__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.22em;
  }

  .hero-stage__water-surface {
    inset: 38% -18% -4%;
  }

  .hero-stage__water-layer--back {
    background-size: 340px 110px, 240px 74px;
  }

  .hero-stage__water-layer--mid {
    background-size: 280px 92px, 200px 62px;
  }

  .hero-stage__water-layer--front {
    background-size: 210px 76px, 156px 48px;
  }

  .hero-stage__copy {
    max-width: 100%;
    padding-block: clamp(28px, 8vw, 56px);
    padding-inline: 16px;
    gap: 18px;
    justify-items: center;
    text-align: center;
  }

  .hero-stage__copy::before {
    inset: -4% -4% -10%;
    background:
      radial-gradient(circle at 50% 34%, rgba(4, 10, 18, 0.96), rgba(4, 10, 18, 0.76) 44%, transparent 78%),
      radial-gradient(circle at 50% 36%, rgba(8, 135, 248, 0.12), transparent 56%);
    filter: blur(14px);
  }

  .hero-stage__copy::after {
    width: min(96vw, 540px);
    height: min(96vw, 540px);
    opacity: 0.52;
    filter: blur(28px);
  }

  .hero-stage__lede,
  .hero-stage__supporting-text {
    max-width: 32rem;
    text-shadow: none;
    color: color-mix(in srgb, var(--section-description-color, var(--color-text)) 88%, #f8fbff 12%);
  }

  .hero-stage__lede {
    font-size: clamp(0.98rem, 3.4vw, 1.05rem);
    line-height: 1.68;
  }

  .hero-stage__supporting-text {
    font-size: 0.9rem;
    line-height: 1.66;
  }

  .hero-stage__marquee-track {
    padding: 20px 18px 16px;
  }

  .hero-stage__marquee-title {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .hero-stage__marquee-group {
    gap: 10px;
  }

  .hero-stage__brandmark {
    width: clamp(76px, 18vw, 98px);
  }

  .hero-stage__brand-aura {
    width: clamp(120px, 30vw, 168px);
    filter: blur(14px);
  }

  .hero-stage__brand-rings {
    width: clamp(102px, 26vw, 146px);
  }

  .hero-stage__headline-word.is-accent {
    color: color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 72%, #f6fbff 28%);
    -webkit-text-stroke: 0 transparent;
    text-shadow: 0 0 12px color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 12%, transparent);
  }

  .hero-stage__brandlockup,
  .hero-stage__actions {
    justify-content: center;
  }

  .hero-stage__actions .button {
    min-width: 0;
  }

  .wave-stage__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

  .wave-stage__stack,
  .wave-stage__signalline {
    width: 100%;
  }

  .wave-stage__actions .button {
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    min-width: 0;
  }

  .wave-stage__cta {
    gap: 8px;
    min-height: 54px;
    box-shadow: 0 12px 26px rgba(16, 16, 16, 0.1);
  }

  .wave-stage__cta-label {
    white-space: normal;
    text-align: left;
    line-height: 1.14;
  }

  .wave-stage__statement {
    gap: 20px;
    padding-top: 20px;
  }

  .wave-stage__listen-title {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .wave-stage__platforms {
    gap: 10px;
    max-width: 100%;
  }

  .wave-stage__platform-pill {
    width: 100%;
  }

  .wave-stage__embed {
    padding-top: 18px;
  }

  .wave-stage__embed iframe {
    min-height: 320px;
    border-radius: 0;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 20px 40px rgba(16, 16, 16, 0.14);
  }

  .video-stage {
    gap: 22px;
  }

  .video-stage__signal {
    width: 100%;
  }

  .video-stage__signal-glow {
    width: 26%;
  }

  .video-stage__hero::before {
    inset: 10% 18% 24% -8%;
    filter: blur(32px) saturate(1.01);
    opacity: 0.16;
  }

  .video-stage__poster,
  .video-stage__poster img,
  .video-stage__hero iframe {
    border-radius: 0;
  }

  .video-stage__play {
    width: 64px;
    height: 64px;
  }

  .video-stage__play-icon {
    margin-left: 4px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .video-stage__play-label {
    left: 18px;
    bottom: 18px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .video-stage__controls {
    gap: 10px 12px;
  }

  .video-stage__meta {
    gap: 10px;
    padding-top: 18px;
    margin-top: 16px;
  }

  .video-stage__meta-topline,
  .video-stage__rail-headline,
  .signal-stage__cities-head,
  .drop-stage__headerline,
  .drop-stage__platform-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .video-stage__sound-toggle {
    min-height: 38px;
    padding-inline: 16px;
    font-size: 0.68rem;
  }

  .video-stage__sound-note {
    font-size: 0.74rem;
    line-height: 1.42;
  }

  .video-stage__rail {
    padding-top: 12px;
  }

  .video-stage__rail-head {
    padding-bottom: 14px;
  }

  .video-rail__item {
    grid-template-columns: 48px minmax(0, 1fr) 104px;
    padding: 18px 0;
    gap: 12px;
    border-radius: 0;
  }

  .video-rail__thumb {
    width: 104px;
  }

  .video-stage__poster-meta {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .video-stage__poster-tag,
  .video-stage__poster-count,
  .video-stage__meta-count,
  .video-stage__rail-count {
    min-height: 26px;
    padding-inline: 9px;
    font-size: 0.6rem;
  }

  .signal-stage__secondary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .signal-stage__secondary-card,
  .signal-stage__meta-card {
    gap: 8px;
    padding-top: 14px;
  }

  .signal-stage__scanline {
    width: 100%;
    margin-bottom: 16px;
  }

  .signal-stage__city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .signal-stage__city-pill {
    min-height: 48px;
    padding: 8px 0;
  }

  .drop-stage::after {
    inset: 10% 32% 16% -8%;
    filter: blur(30px) saturate(1.01);
    opacity: 0.16;
  }

  .drop-stage__signal-line {
    margin-bottom: 2px;
  }

  .closing-stage__signal-line,
  .site-footer__signal-line {
    gap: 10px;
  }

  .closing-stage__signal-dot,
  .site-footer__signal-dot {
    width: 8px;
    height: 8px;
  }

  .closing-stage__signal-glow,
  .site-footer__signal-glow {
    width: 26%;
  }

  .social-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .social-line {
    min-height: 112px;
    gap: 10px;
    padding: 14px 0 0;
    border-radius: 0;
  }

  .social-line__icon {
    width: 44px;
    height: 44px;
  }

  .social-line__platform,
  .social-line__cta {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .social-line__cta {
    min-height: 34px;
    padding: 0 12px;
  }

  .hero-stage__bulletins,
  .signal-stage__monument {
    grid-template-columns: 1fr;
  }

  .chapter__header {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: clamp(22px, 4.2vw, 34px);
  }

  .chapter__rail {
    position: static;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .chapter__word {
    right: 10px;
    top: 24px;
    font-size: clamp(3.1rem, 16vw, 7.6rem);
    opacity: calc(0.04 + (var(--section-progress) * 0.14));
  }

  .chapter__word::after {
    left: 34%;
    bottom: -8px;
  }

  .chapter__copy {
    gap: 12px;
  }

  .chapter__copy::before {
    width: min(440px, 78%);
    height: 128px;
    top: -18px;
    filter: blur(16px);
  }

  .chapter__copy p {
    font-size: 0.96rem;
    line-height: 1.76;
    opacity: 0.8;
  }

  .chapter__line {
    --chapter-line-axis-x: calc(var(--section-progress) * 100%);
    --chapter-line-axis-y: 50%;
    width: 100%;
    height: 1px;
  }

  .chapter__line-fill {
    transform-origin: left;
    transform: scaleX(var(--section-progress));
  }

  .video-stage__meta h3,
  .drop-stage__content h3,
  .wave-stage__statement h3,
  .about-stage__copy blockquote,
  .closing-stage__about h2,
  .closing-stage__about blockquote {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .video-stage__meta h3,
  .drop-stage__content h3,
  .wave-stage__statement h3,
  .closing-stage__contact h3 {
    max-width: 100%;
  }

  .chapter__copy p,
  .wave-stage__body,
  .video-stage__meta p,
  .drop-stage__description,
  .closing-stage__contact p {
    max-width: 100%;
  }

  .signal-stage__hero-stat strong {
    font-size: clamp(4.4rem, 18vw, 8rem);
  }

  .closing-stage {
    gap: 24px;
  }

  .closing-stage__chips {
    margin: 16px 0 20px;
    gap: 8px;
  }

  .closing-stage__chip {
    padding: 8px 12px;
    font-size: 0.68rem;
  }

  .closing-stage__path {
    gap: 8px;
    padding: 14px 0 16px;
  }

  .closing-stage__actions {
    width: 100%;
  }

  .closing-stage__actions .button {
    width: 100%;
    justify-content: center;
  }

  .closing-stage__hint {
    font-size: 0.74rem;
    line-height: 1.5;
  }

  .promo-page__title {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .promo-page__copy,
  .promo-page__hero {
    gap: 18px;
  }

  .promo-platforms {
    grid-template-columns: 1fr;
  }

  .video-stage__interviews-grid {
    grid-template-columns: 1fr;
  }

  .drop-stage__cover {
    max-width: min(100%, 420px);
  }

  .video-interview-card {
    gap: 0;
  }

  .video-interview-card__content {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .video-interview-card__cta {
    grid-column: 2;
  }

  .site-footer__brand span {
    font-size: 0.84rem;
    line-height: 1.58;
  }

  .smart-links-library__grid {
    grid-template-columns: 1fr;
  }

.smart-links-library__item {
    grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
    align-items: center;
  }

  .smart-links-library__art {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 560px) {
  .chapter--entry {
    padding-top: 86px;
  }

  .chapter__entry-veil {
    inset: -62px 0 auto;
    height: 132px;
    filter: blur(10px);
    opacity: 0.78;
  }

  .chapter__entry-threshold {
    height: 138px;
    width: min(92vw, 560px);
    transform: translate(-50%, -14%);
  }

  .chapter__entry-threshold-glow {
    filter: blur(14px);
    opacity: 0.7;
  }

  .chapter__entry-threshold-line {
    inset: 56% 0 auto;
    opacity: 0.6;
  }

  .chapter__entry-threshold-orb {
    width: 12px;
    height: 12px;
    bottom: 20%;
  }

  .chapter--entry .chapter__copy::before {
    left: -2%;
    right: -2%;
    top: -14px;
    height: 112px;
    filter: blur(12px);
  }

  .chapter--entry .chapter__word {
    top: 18px;
  }

  .chapter--entry .chapter__liquid-divider {
    top: 4px;
    transform: translate(-50%, -34%);
  }

  .chapter--entry .chapter__header {
    margin-top: 18px;
  }

  .chapter__word::after {
    left: 26%;
    right: -2%;
    bottom: -10px;
  }

  .wave-stage__signalline {
    gap: 10px;
  }

  .wave-stage__signalline-dot {
    width: 8px;
    height: 8px;
  }

  .wave-stage__signalline-glow {
    width: 28%;
  }

  .closing-stage__signal-glow,
  .site-footer__signal-glow {
    width: 30%;
  }

  .hero-stage {
    background:
      radial-gradient(circle at 50% 18%, rgba(178, 232, 255, 0.16), transparent 18%),
      radial-gradient(circle at 50% 36%, rgba(8, 135, 248, 0.18), transparent 28%),
      linear-gradient(180deg, rgba(3, 8, 16, 0.97) 0%, rgba(4, 10, 18, 0.94) 46%, rgba(2, 6, 11, 0.99) 100%);
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .hero-stage::after {
    opacity: 0.05;
  }

  .hero-stage__mesh,
  .hero-stage__water-surface,
  .hero-stage__water-layer {
    display: none;
  }

  .hero-stage__liquid-field {
    inset: 8% -8% auto;
    height: 44%;
    opacity: 0.72;
  }

  .hero-stage__liquid-field::before {
    inset: 12% -6% auto auto;
    width: 58vw;
    height: 58vw;
    filter: blur(18px);
    opacity: 0.72;
  }

  .hero-stage__liquid-field::after {
    inset: 2% auto auto -8%;
    width: 42vw;
    height: 42vw;
    filter: blur(16px);
    opacity: 0.66;
  }

  .hero-stage__orb {
    filter: blur(24px);
  }

  .hero-stage__layout {
    min-height: auto;
  }

  .hero-stage__copy {
    gap: 14px;
    padding-inline: 6px;
  }

  .hero-stage__brandlockup {
    min-height: 72px;
  }

  .hero-stage__brand-aura {
    width: 120px;
    filter: blur(12px);
    opacity: 0.64;
  }

  .hero-stage__brand-rings {
    width: 102px;
    opacity: 0.74;
  }

  .hero-stage__copy::before {
    display: none;
  }

  .hero-stage__copy::after {
    display: none;
  }

  .hero-stage__lede {
    max-width: 100%;
    font-size: clamp(0.98rem, 4.2vw, 1.04rem);
    line-height: 1.64;
  }

  .hero-stage__headline {
    font-size: clamp(3.25rem, 17vw, 4.8rem);
    line-height: 0.84;
    letter-spacing: 0.018em;
  }

  .hero-stage__headline::after {
    width: min(64vw, 240px);
    bottom: -0.08em;
    opacity: 0.52;
  }

  .hero-stage__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .hero-stage__headline-word.is-accent {
    color: color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 78%, #f7fbff 22%);
    -webkit-text-stroke: 0 transparent;
    text-shadow: 0 0 10px color-mix(in srgb, var(--section-accent-color, var(--color-accent)) 10%, transparent);
  }

  .hero-stage__supporting-text {
    max-width: 100%;
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .hero-stage__actions {
    gap: 8px;
  }

  .hero-stage__actions .button {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }

  .wave-stage__actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wave-stage__cta {
    min-height: 52px;
    padding: 0 12px;
    gap: 8px;
  }

  .wave-stage__cta-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .wave-stage__cta-icon svg {
    width: 14px;
    height: 14px;
  }

  .wave-stage__cta-label {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-align: left;
  }

  .wave-stage__statement {
    gap: 18px;
    padding-top: 18px;
  }

  .wave-stage__stack {
    gap: 18px;
  }

  .wave-stage__release {
    gap: 14px;
  }

  .wave-stage__release::before,
  .wave-stage__release::after {
    opacity: 0.12;
    filter: blur(24px);
  }

  .wave-stage__release-art {
    max-width: 100%;
    border-radius: 0;
    aspect-ratio: 1 / 1.06;
  }

  .wave-stage__release-overlay {
    inset: 14px 14px auto;
  }

  .wave-stage__release-badge,
  .wave-stage__release-count {
    min-height: 26px;
    padding: 0 9px;
    font-size: 0.58rem;
  }

  .wave-stage__release-meta span {
    margin-bottom: 8px;
  }

  .wave-stage__release-meta h3 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .wave-stage__listen-title {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .wave-stage__platforms {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wave-stage__platform-pill {
    width: 100%;
    min-width: 100%;
    padding: 12px 14px;
  }

  .wave-stage__embed {
    width: 100%;
    margin-left: 0;
  }

  .wave-stage__platform-name {
    font-size: 0.72rem;
  }

  .wave-stage__platform-meta {
    font-size: 0.6rem;
  }

  .video-stage {
    gap: 20px;
  }

  .video-stage__narrative {
    gap: 20px;
  }

  .video-stage__signal {
    gap: 10px;
  }

  .video-stage__signal-dot {
    width: 8px;
    height: 8px;
  }

  .video-stage__signal-glow {
    width: 30%;
  }

  .video-stage__hero::before {
    inset: 12% 8% 28% -10%;
    filter: blur(32px) saturate(1);
    opacity: 0.18;
  }

  .video-stage__meta {
    gap: 8px;
    padding-top: 16px;
    margin-top: 14px;
  }

  .video-stage__play {
    width: 54px;
    height: 54px;
  }

  .video-stage__play-label {
    left: 14px;
    bottom: 14px;
    font-size: 0.62rem;
  }

  .video-stage__controls {
    align-items: flex-start;
    gap: 8px;
  }

  .video-stage__sound-toggle {
    min-height: 36px;
    padding-inline: 14px;
    font-size: 0.64rem;
  }

  .video-stage__sound-note {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .video-rail__item {
    grid-template-columns: 32px minmax(0, 1fr) 76px;
    gap: 8px;
    padding: 14px 0;
    border-radius: 0;
  }

  .video-rail__thumb {
    width: 76px;
  }

  .video-rail__index {
    font-size: 1.28rem;
  }

  .signal-stage__secondary-grid,
  .social-stage {
    grid-template-columns: 1fr;
  }

  .signal-stage__scanline {
    gap: 10px;
    margin-bottom: 14px;
  }

  .signal-stage__scanline-dot {
    width: 8px;
    height: 8px;
  }

  .signal-stage__scanline-glow {
    width: 28%;
  }

  .signal-stage__cities-head {
    align-items: flex-start;
  }

  .signal-stage__city-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .signal-stage__city-pill {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 48px;
    gap: 8px;
    padding: 8px 0;
  }

  .social-line {
    min-height: 104px;
    gap: 10px;
    padding: 12px 0 0;
  }

  .drop-stage__cover {
    border-radius: 0;
  }

  .drop-stage__signal-line {
    gap: 10px;
    margin-bottom: 0;
  }

  .drop-stage__signal-dot {
    width: 8px;
    height: 8px;
  }

  .drop-stage__signal-glow {
    width: 26%;
  }

  .drop-stage::after {
    inset: 14% 16% 20% -12%;
    filter: blur(24px);
    opacity: 0.12;
  }

  .drop-stage__narrative {
    gap: 20px;
  }

  .drop-stage__cover-meta {
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .drop-stage__cover-tag,
  .drop-stage__cover-count,
  .drop-stage__platform-count {
    min-height: 26px;
    padding-inline: 9px;
    font-size: 0.6rem;
  }

  .drop-stage__content h3 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
    max-width: 100%;
  }

  .drop-stage__platform-head {
    align-items: flex-start;
  }

  .drop-stage__platforms {
    gap: 8px;
    margin-bottom: 18px;
  }

  .drop-stage__actions {
    gap: 8px;
  }

  .drop-stage__actions .button {
    width: 100%;
    min-height: 50px;
  }

  .closing-stage__chips {
    gap: 8px;
    margin: 14px 0 18px;
  }

  .closing-stage__form {
    gap: 12px;
  }

  .site-footer__layout {
    gap: 12px;
    padding: 24px 0 32px;
  }

  .site-footer__brand span {
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.56;
  }

  .site-footer__links {
    gap: 10px;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav a {
    min-height: 40px;
    padding: 0 8px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .site-header[data-mobile-condensed="true"] .site-header__inner {
    gap: 5px 10px;
  }

  .site-header[data-mobile-condensed="true"] .brand-mark__surface img {
    height: 24px;
  }

  .site-header[data-mobile-condensed="true"] .site-nav {
    min-height: 40px;
  }

  .site-header[data-mobile-condensed="true"] .site-nav a {
    min-height: 36px;
    padding: 0 7px;
    font-size: 0.56rem;
    letter-spacing: 0.05em;
  }

  .language-switch__button {
    min-width: 42px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-stage__marquee-track {
    padding: 16px 10px 12px;
    gap: 10px;
  }

  .hero-stage__marquee-group {
    gap: 8px;
  }

  .hero-stage__marquee-pill {
    min-height: 36px;
  }

  .hero-stage__marquee-pill-badge {
    width: 36px;
    height: 36px;
  }

  .hero-stage__marquee-title {
    font-size: 0.63rem;
    letter-spacing: 0.16em;
  }

  .hero-stage__marquee-pill-icon svg {
    width: 19px;
    height: 19px;
  }

  .chapter__liquid-divider {
    height: 84px;
    transform: translate(-50%, -24%);
  }

  .chapter__liquid-bubble,
  .hero-stage__liquid-bubble {
    opacity: 0.18;
  }

  .promo-page__actions .button {
    width: 100%;
  }

  .drop-stage {
    padding-top: 20px;
    border-radius: 0;
  }

  .drop-stage__cover {
    border-radius: 0;
  }

  .drop-stage__content h3 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .drop-stage__artists {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .drop-platform-pill,
  .promo-platform-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .drop-platform-pill {
    min-height: 44px;
    gap: 8px;
    padding: 0 14px;
  }

  .drop-platform-pill__icon {
    width: 30px;
    height: 30px;
  }

  .drop-platform-pill__label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .promo-page__hero {
    gap: 14px;
  }

  .promo-page__cover {
    width: 100%;
    max-width: 100%;
    padding-top: 14px;
    border-radius: 0;
  }

  .promo-page__cover img {
    aspect-ratio: 1 / 1.02;
  }

  .promo-page__copy {
    gap: 12px;
    padding-top: 16px;
  }

  .promo-page__title {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .promo-page__artists {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .promo-page__description {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .promo-platforms {
    padding-top: 14px;
  }

  .promo-platform-pill {
    gap: 12px;
    padding: 14px 0;
  }

  .promo-platform-pill .drop-platform-pill__icon {
    width: 34px;
    height: 34px;
  }

  .about-stage__seal {
    max-width: 320px;
    margin-inline: auto;
  }

  .wave-stage__embed iframe {
    min-height: 286px;
  }

  .closing-stage {
    gap: 20px;
    border-radius: 0;
  }

  .closing-stage__contact--solo {
    padding: 10px 0 0;
    border-radius: 0;
  }

  .closing-stage__actions .button {
    min-height: 50px;
  }

  .smart-links-library__item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
  }

  .smart-links-library__grid {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .smart-links-library__art {
    max-width: 180px;
  }

  .smart-links-library__meta {
    gap: 8px;
    padding-top: 0;
  }

  .epk-page__copy {
    gap: 12px;
    padding-top: 16px;
  }

  .epk-page__title-main {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .epk-page__title-outline {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .epk-page__headline {
    font-size: clamp(1.06rem, 5.8vw, 1.45rem);
  }

  .epk-page__quote {
    font-size: clamp(1.38rem, 8vw, 2rem);
    line-height: 1;
  }

  .epk-page__cover {
    min-height: 250px;
  }

  .epk-page__cover-body {
    inset: auto 14px 14px;
    gap: 6px;
    padding-top: 12px;
    width: min(100%, 260px);
  }

  .epk-page__cover-body strong {
    font-size: clamp(1.7rem, 10vw, 2.6rem);
  }

  .epk-page__story-grid,
  .epk-page__grid {
    gap: 18px;
    margin-top: 22px;
  }

  .epk-card,
  .epk-page__fact,
  .epk-page__highlight-card,
  .epk-page__story-callout,
  .epk-page__contact-line {
    gap: 10px;
    padding-top: 16px;
  }

  .epk-page__fact strong,
  .epk-page__story-callout strong {
    font-size: 1.12rem;
  }

  .epk-card--gallery {
    margin-top: 22px;
  }

  .epk-page__gallery {
    gap: 12px;
  }

  .epk-page__gallery-media,
  .epk-page__gallery-card:first-child .epk-page__gallery-media {
    min-height: 220px;
  }

  .site-footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
