:root {
  --bg: #050507;
  --panel: rgba(10, 10, 14, 0.78);
  --panel-border: rgba(255, 60, 140, 0.18);
  --text: #f5eefe;
  --muted: #bdb1cb;
  --pink: #ff2d8d;
  --red: #ff3340;
  --cyan: #17d8ff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 45, 141, 0.08), transparent 35%),
    linear-gradient(180deg, #09080d 0%, #030305 100%);
  color: var(--text);
}

img,
iframe {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  min-height: 100vh;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  min-width: 9.4rem;
  height: 3.2rem;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(160deg, rgba(10, 10, 18, 0.98), rgba(20, 12, 32, 0.94)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.14), rgba(23, 216, 255, 0.16));
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(255, 45, 141, 0.08);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 22px, 0) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.back-to-top::before {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 5px
    );
  opacity: 0.78;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translate3d(0, -3px, 0) scale(1);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(23, 216, 255, 0.14);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(23, 216, 255, 0.42);
  outline-offset: 3px;
}

.back-to-top-icon,
.back-to-top-label {
  position: relative;
  z-index: 1;
}

.back-to-top-icon {
  width: 1.05rem;
  height: 1.05rem;
  color: #f8f4ff;
}

.back-to-top-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.back-to-top-label {
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 24px;
  background: linear-gradient(180deg, rgba(4, 3, 10, 0.12), rgba(4, 3, 10, 0.76));
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: -3%;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 80, 180, 0.24), transparent 26%),
    radial-gradient(circle at 50% 78%, rgba(23, 216, 255, 0.12), transparent 24%),
    url("./assets/hero-bg.webp") center 18% / cover no-repeat;
  transform: scale(1.04);
  transform-origin: center;
  filter: saturate(1.08) contrast(1.05);
  animation: heroFloat 18s ease-in-out infinite alternate;
}

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

.hero-media::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 45, 141, 0.2), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(23, 216, 255, 0.16), transparent 18%),
    radial-gradient(circle at 62% 58%, rgba(255, 255, 255, 0.08), transparent 12%);
  mix-blend-mode: screen;
  opacity: 0.95;
  animation: heroPulse 8s ease-in-out infinite;
}

.hero-media::after {
  inset: -12% -8%;
  background:
    conic-gradient(
      from 90deg,
      rgba(255, 45, 141, 0) 0deg,
      rgba(255, 45, 141, 0.16) 35deg,
      rgba(23, 216, 255, 0.1) 115deg,
      rgba(255, 45, 141, 0) 200deg,
      rgba(23, 216, 255, 0.14) 310deg,
      rgba(255, 45, 141, 0) 360deg
    );
  filter: blur(42px);
  mix-blend-mode: screen;
  opacity: 0.45;
  animation: heroSweep 11s linear infinite;
}

.topbar {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.nav-links a,
.hero-secondary-link {
  color: var(--text);
  text-decoration: none;
}

.mobile-only {
  display: none;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
}

.nav-links a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    color 0.22s ease,
    opacity 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 45, 141, 0), rgba(255, 45, 141, 0.8), rgba(23, 216, 255, 0.78), rgba(23, 216, 255, 0));
  opacity: 0;
  transform: scaleX(0.62);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 0.92;
  transform: scaleX(1);
}

.language-toggle {
  margin-left: auto;
  min-width: 4.8rem;
  height: 2.5rem;
  padding: 0 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(160deg, rgba(12, 10, 22, 0.98), rgba(20, 12, 32, 0.94)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.14), rgba(23, 216, 255, 0.16));
  color: var(--text);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(255, 45, 141, 0.14);
}

.language-toggle:focus-visible {
  outline: 2px solid rgba(23, 216, 255, 0.42);
  outline-offset: 3px;
}

.language-flag {
  font-size: 1rem;
  line-height: 1;
}

.language-toggle-label {
  line-height: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 4, 12, 0.38), rgba(6, 4, 12, 0.08) 35%, rgba(6, 4, 12, 0.42)),
    radial-gradient(circle at center, rgba(255, 65, 176, 0.06) 0%, rgba(0, 0, 0, 0.12) 52%, rgba(0, 0, 0, 0.64) 100%);
  z-index: 1;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  z-index: 2;
}

.hero::before {
  top: -10%;
  left: -8%;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 141, 0.2) 0%, rgba(255, 45, 141, 0) 70%);
  filter: blur(24px);
  animation: pulseOrb 10s ease-in-out infinite;
}

.hero::after {
  right: -14%;
  bottom: -18%;
  width: 58vw;
  height: 26vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 216, 255, 0.16) 0%, rgba(23, 216, 255, 0) 68%);
  filter: blur(20px);
  animation: driftGlow 16s ease-in-out infinite alternate;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
}

.hero-ambient::before {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-smoke-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.95;
}

.ambient-orb,
.ambient-cut,
.ambient-haze,
.ambient-beam,
.ambient-spark,
.ambient-grid,
.ambient-noise {
  position: absolute;
}

.ambient-cut {
  left: 50%;
  width: 165vw;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.86)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 12px
    );
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  opacity: 0.84;
  filter: blur(1px);
  transform: translateX(-50%) rotate(-18deg);
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  z-index: 5;
}

.ambient-cut-top {
  top: -5.5rem;
  height: 15rem;
  clip-path: polygon(0 0, 100% 0, 100% 56%, 0 100%);
  animation: none;
}

.ambient-cut-bottom {
  bottom: -8rem;
  height: 16rem;
  clip-path: polygon(0 44%, 100% 0, 100% 100%, 0 100%);
  transform: translateX(-50%) rotate(-16deg);
  animation: cutSlideBottom 18s ease-in-out infinite alternate;
}

.ambient-orb,
.ambient-haze,
.ambient-beam,
.ambient-spark,
.ambient-grid,
.ambient-noise,
.hero-smoke-canvas {
  z-index: 1;
}

.ambient-orb {
  border-radius: 50%;
  filter: blur(12px);
  mix-blend-mode: screen;
  opacity: 0.65;
}

.ambient-orb-left {
  top: 14%;
  left: -10%;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(255, 45, 141, 0.34) 0%, rgba(255, 45, 141, 0) 72%);
  animation: floatOrb 14s ease-in-out infinite;
}

.ambient-orb-right {
  right: -8%;
  bottom: 8%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(23, 216, 255, 0.24) 0%, rgba(23, 216, 255, 0) 70%);
  animation: floatOrb 18s ease-in-out infinite reverse;
}

.ambient-haze {
  width: 46rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(34px);
  mix-blend-mode: screen;
  opacity: 0.34;
}

.ambient-haze-left {
  left: -8%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255, 45, 141, 0.4) 0%, rgba(255, 45, 141, 0.08) 42%, rgba(255, 45, 141, 0) 72%);
  animation: hazeDriftLeft 18s ease-in-out infinite alternate;
}

.ambient-haze-right {
  right: -10%;
  top: 18%;
  background: radial-gradient(circle, rgba(23, 216, 255, 0.34) 0%, rgba(23, 216, 255, 0.08) 44%, rgba(23, 216, 255, 0) 74%);
  animation: hazeDriftRight 22s ease-in-out infinite alternate;
}

.ambient-beam {
  width: 42vw;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(23, 216, 255, 0.68), rgba(255, 255, 255, 0));
  box-shadow: 0 0 18px rgba(23, 216, 255, 0.35);
  opacity: 0.34;
  transform-origin: center;
}

.ambient-beam-one {
  top: 26%;
  left: -8%;
  transform: rotate(-10deg);
  animation: beamSweepOne 10s ease-in-out infinite alternate;
}

.ambient-beam-two {
  right: -10%;
  bottom: 24%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 45, 141, 0.72), rgba(255, 255, 255, 0));
  box-shadow: 0 0 18px rgba(255, 45, 141, 0.35);
  transform: rotate(-13deg);
  animation: beamSweepTwo 12s ease-in-out infinite alternate;
}

.ambient-spark {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 16px currentColor;
  opacity: 0.68;
}

.ambient-spark-one {
  top: 20%;
  left: 22%;
  color: #17d8ff;
  animation: sparkFloatOne 7s ease-in-out infinite;
}

.ambient-spark-two {
  top: 34%;
  right: 24%;
  color: #ff2d8d;
  animation: sparkFloatTwo 9s ease-in-out infinite;
}

.ambient-spark-three {
  bottom: 26%;
  left: 58%;
  color: #ffffff;
  animation: sparkFloatThree 8s ease-in-out infinite;
}

.ambient-grid {
  left: -10%;
  right: -10%;
  bottom: -8%;
  height: 28%;
  background:
    linear-gradient(rgba(23, 216, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 216, 255, 0.18) 1px, transparent 1px);
  background-size: 100% 36px, 36px 100%;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.96), transparent 80%);
  transform: perspective(480px) rotateX(72deg);
  transform-origin: bottom center;
  opacity: 0.38;
  animation: gridShift 12s linear infinite;
}

.ambient-noise {
  inset: 0;
  background:
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 6px
    );
  opacity: 0.18;
  mix-blend-mode: screen;
  animation: scanlines 9s linear infinite;
}

.hero-content {
  --hero-genre-font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  position: relative;
  z-index: 3;
  max-width: 1240px;
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 64px 16px 48px;
}

.latest-signal-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 24px 8px;
}

.latest-signal {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 20px;
  display: grid;
  gap: 18px;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(10, 10, 18, 0.92), rgba(18, 12, 30, 0.84)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.08), rgba(23, 216, 255, 0.08));
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 26px rgba(255, 45, 141, 0.08);
  backdrop-filter: blur(14px);
  overflow: hidden;
  isolation: isolate;
}

.latest-signal::before,
.latest-signal::after {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.latest-signal::before {
  inset: -1px;
  background: conic-gradient(
    from 0deg,
    rgba(255, 45, 141, 0.06) 0deg,
    rgba(255, 45, 141, 0.78) 70deg,
    rgba(23, 216, 255, 0.92) 150deg,
    rgba(255, 255, 255, 0.28) 210deg,
    rgba(255, 45, 141, 0.74) 285deg,
    rgba(255, 45, 141, 0.06) 360deg
  );
  filter: blur(0.2px);
  opacity: 0.92;
  animation: latestSignalBorderSpin 9s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1.5px;
}

.latest-signal::after {
  inset: 1px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 45, 141, 0.16), transparent 26%),
    radial-gradient(circle at 82% 28%, rgba(23, 216, 255, 0.14), transparent 24%),
    radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0.9;
  mix-blend-mode: screen;
}

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

.latest-signal-copy {
  display: grid;
  gap: 8px;
  text-align: center;
}

.latest-signal-kicker {
  color: #ffd6ec;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.latest-signal-title {
  margin: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff4fb;
}

.latest-signal-player {
  width: min(100%, 760px);
}

.latest-signal-embed {
  width: 100%;
  height: 80px;
  border: 0;
  border-radius: 16px;
  background: #121212;
}

.latest-signal-cta {
  min-width: 0;
  width: auto;
  min-height: 2.85rem;
  padding: 0.72rem 1.05rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  align-self: center;
}

.hero-support {
  position: relative;
  width: fit-content;
  max-width: min(90vw, 460px);
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-support::before,
.hero-support::after {
  display: none;
}

.hero-support-core {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.2rem;
  padding: 0.48rem 0.85rem 0.52rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(8, 8, 14, 0.78), rgba(16, 12, 26, 0.72)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.1), rgba(23, 216, 255, 0.08));
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 18px rgba(255, 45, 141, 0.06);
  backdrop-filter: blur(10px);
}

.hero-support-core::before,
.hero-support-core::after {
  display: none;
}

.hero-support-pulse {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 0.42rem;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #17d8ff 42%, #ff4da1 100%);
  box-shadow:
    0 0 8px rgba(255, 45, 141, 0.22),
    0 0 12px rgba(23, 216, 255, 0.16);
}

.hero-support-pulse::before {
  position: absolute;
  inset: -0.2rem;
  border: 1px solid rgba(23, 216, 255, 0.18);
  border-radius: 50%;
  content: "";
  opacity: 0.7;
}

.hero-support-text {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(247, 242, 255, 0.82);
  font-family: Orbitron, Inter, sans-serif;
  font-size: calc(var(--hero-genre-font-size) - 9px);
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  text-shadow:
    0 0 8px rgba(255, 45, 141, 0.08),
    0 0 12px rgba(23, 216, 255, 0.04);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #ffd5ef;
  font-size: 0.82rem;
}

.glitch-title {
  position: relative;
  margin: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(255, 45, 141, 0.24),
    0 0 22px rgba(23, 216, 255, 0.14),
    0 0 42px rgba(255, 45, 141, 0.12);
  animation: glitchSkew 2.4s steps(1, end) infinite;
}

.glitch-title span {
  position: relative;
  display: inline-block;
  animation: titleDrift 2.8s steps(1, end) infinite;
}

.glitch-title::before,
.glitch-title::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  pointer-events: none;
}

.glitch-title::before {
  color: rgba(23, 216, 255, 0.85);
  text-shadow:
    -3px 0 rgba(23, 216, 255, 0.82),
    0 0 14px rgba(23, 216, 255, 0.32);
  transform: translate(-0.035em, 0);
  clip-path: polygon(0 6%, 100% 0, 100% 42%, 0 36%);
  animation: glitchLayerTop 1.35s steps(2, end) infinite;
}

.glitch-title::after {
  color: rgba(255, 45, 141, 0.88);
  text-shadow:
    3px 0 rgba(255, 45, 141, 0.82),
    0 0 14px rgba(255, 45, 141, 0.3);
  transform: translate(0.04em, 0);
  clip-path: polygon(0 58%, 100% 52%, 100% 100%, 0 100%);
  animation: glitchLayerBottom 1.6s steps(2, end) infinite;
}

.glitch-title span::before,
.glitch-title span::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  pointer-events: none;
}

.glitch-title span::before {
  color: rgba(255, 255, 255, 0.82);
  clip-path: polygon(0 28%, 100% 24%, 100% 36%, 0 40%);
  transform: translate(-0.02em, 0);
  opacity: 0;
  animation: glitchSliceMid 1.1s steps(2, end) infinite;
}

.glitch-title span::after {
  color: rgba(0, 0, 0, 0.88);
  clip-path: polygon(0 44%, 100% 40%, 100% 64%, 0 68%);
  transform: translate(0.03em, 0);
  opacity: 0;
  mix-blend-mode: multiply;
  animation: glitchShadowCut 1.25s steps(2, end) infinite;
}

.subtitle {
  max-width: min(92vw, 920px);
  margin: 24px auto 0;
  color: #f7f2ff;
}

.glitch-strip {
  position: relative;
  padding: 12px 22px;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

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

.glitch-strip::before {
  background:
    linear-gradient(90deg, rgba(255, 45, 141, 0.18), transparent 18%, transparent 82%, rgba(23, 216, 255, 0.18)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 4px
    );
  opacity: 0.55;
}

.glitch-strip::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 14%, transparent 86%, rgba(0, 0, 0, 0.22));
}

.glitch-strip span {
  position: relative;
  display: inline-block;
  font-family: Orbitron, Inter, sans-serif;
  font-size: var(--hero-genre-font-size);
  line-height: 1.2;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: stripDrift 2.4s steps(1, end) infinite;
}

.glitch-strip span::before,
.glitch-strip span::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  pointer-events: none;
}

.glitch-strip span::before {
  color: rgba(23, 216, 255, 0.84);
  text-shadow: -2px 0 rgba(23, 216, 255, 0.72);
  clip-path: polygon(0 0, 100% 0, 100% 42%, 0 46%);
  opacity: 0;
  animation: stripGlitchTop 1.5s steps(2, end) infinite;
}

.glitch-strip span::after {
  color: rgba(255, 45, 141, 0.88);
  text-shadow: 2px 0 rgba(255, 45, 141, 0.76);
  clip-path: polygon(0 56%, 100% 52%, 100% 100%, 0 100%);
  opacity: 0;
  animation: stripGlitchBottom 1.2s steps(2, end) infinite;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-actions {
  width: min(100%, 440px);
  margin-top: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  box-shadow: var(--shadow);
}

.cta-button-primary {
  width: 100%;
  min-width: 0;
  min-height: 3.75rem;
  padding: 16px 22px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.cta-button svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.cta-button span {
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.cta-button.spotify {
  background: linear-gradient(135deg, #1db954, #179443);
}

.hero-secondary-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  min-height: 2.9rem;
  padding: 0;
  border-radius: 16px;
  color: var(--muted);
  background: rgba(9, 9, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.hero-secondary-link:hover,
.hero-secondary-link:focus-visible {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(14, 12, 24, 0.86);
  transform: translateY(-2px);
}

.hero-secondary-link svg {
  width: 1.18rem;
  height: 1.18rem;
}

.hero-secondary-link:focus-visible {
  outline: 2px solid rgba(23, 216, 255, 0.38);
  outline-offset: 3px;
}

.listen-section,
.singles-section,
.about-section,
.youtube-section,
.tiktok-section,
.instagram-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 24px 72px;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2,
.about-card h2,
.stream-card h3,
.platform-card h3 {
  margin: 0 0 10px;
  font-family: Orbitron, Inter, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-header p,
.about-card p,
.stream-card p,
.platform-card p,
.platform-link small {
  color: var(--muted);
}

.listen-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.singles-header {
  display: block;
}

.stream-card,
.platform-card,
.single-card,
.about-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.stream-card,
.platform-card {
  padding: 22px;
}

.stream-card {
  display: flex;
  flex-direction: column;
}

.embed-wrapper {
  flex: 1;
  margin-top: 16px;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#spotifyEmbed {
  width: 100%;
  height: 100%;
  min-height: 432px;
  border: 0;
  background: #121212;
}

.platform-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.platform-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, rgba(255, 45, 141, 0.17), rgba(23, 216, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.platform-link::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 28%,
    rgba(255, 255, 255, 0.16) 46%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-140%);
  transition: transform 0.48s ease;
  pointer-events: none;
}

.platform-link::after {
  position: absolute;
  inset: auto 14px 0 14px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 45, 141, 0), rgba(255, 45, 141, 0.7), rgba(23, 216, 255, 0.78), rgba(23, 216, 255, 0));
  opacity: 0.35;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
  transform: scaleX(0.72);
}

.platform-link span {
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.platform-link small {
  position: relative;
  z-index: 1;
}

.platform-link:hover,
.platform-link:focus-visible {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 45, 141, 0.24), rgba(23, 216, 255, 0.18));
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 24px rgba(255, 45, 141, 0.14);
}

.platform-link:hover::before,
.platform-link:focus-visible::before {
  transform: translateX(140%);
}

.platform-link:hover::after,
.platform-link:focus-visible::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.platform-link:focus-visible {
  outline: 2px solid rgba(23, 216, 255, 0.45);
  outline-offset: 3px;
}

.singles-carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.singles-nav {
  min-width: 6.2rem;
  height: 3.35rem;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(160deg, rgba(12, 10, 22, 0.98), rgba(20, 12, 32, 0.94)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.14), rgba(23, 216, 255, 0.16));
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    opacity 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.singles-nav:hover,
.singles-nav:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(160deg, rgba(16, 12, 28, 0.99), rgba(22, 14, 36, 0.96)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.2), rgba(23, 216, 255, 0.24));
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(23, 216, 255, 0.14);
}

.singles-nav:focus-visible {
  outline: 2px solid rgba(23, 216, 255, 0.4);
  outline-offset: 3px;
}

.singles-nav:disabled {
  opacity: 0.34;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.singles-nav-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  flex: 0 0 1.15rem;
}

.singles-nav-icon svg {
  width: 100%;
  height: 100%;
}

.singles-nav-label {
  line-height: 1;
}

.singles-carousel {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 28px;
  touch-action: pan-x pan-y;
}

.singles-carousel::-webkit-scrollbar {
  display: none;
}

.singles-carousel:focus-visible {
  outline: 2px solid rgba(23, 216, 255, 0.36);
  outline-offset: 4px;
}

.singles-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  align-items: stretch;
  padding: 4px 0;
}

.single-card {
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(8, 8, 14, 0.9), rgba(17, 12, 26, 0.82)),
    radial-gradient(circle at top right, rgba(255, 45, 141, 0.12), transparent 30%);
  scroll-snap-align: start;
}

.single-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 45, 141, 0.06), transparent 22%, transparent 78%, rgba(23, 216, 255, 0.08)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 5px
    );
  opacity: 0.56;
  pointer-events: none;
}

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

.single-artwork {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.single-card h3 {
  margin: 0;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.single-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 14px;
}

.singles-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 18px;
}

.singles-pagination {
  margin: 0;
  color: var(--muted);
}

.singles-pagination {
  min-width: 3.25rem;
  text-align: right;
  font-family: Orbitron, Inter, sans-serif;
  letter-spacing: 0.08em;
}

.single-badge {
  margin: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: #fff4fb;
  background: linear-gradient(135deg, rgba(255, 45, 141, 0.22), rgba(23, 216, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    0 0 20px rgba(255, 45, 141, 0.1);
}

.single-badge.is-placeholder {
  visibility: hidden;
}

.single-actions {
  width: 100%;
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.single-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #1db954, #179443);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.26),
    0 0 22px rgba(29, 185, 84, 0.16);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease;
}

.single-primary-link:hover,
.single-primary-link:focus-visible {
  transform: translate3d(0, -3px, 0);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(29, 185, 84, 0.24);
}

.single-primary-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.28);
  outline-offset: 3px;
}

.single-primary-link.is-disabled {
  cursor: default;
  opacity: 0.42;
  filter: grayscale(0.2);
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

.single-primary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.single-primary-icon svg {
  width: 100%;
  height: 100%;
}

.single-secondary-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.single-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  min-height: 3rem;
  flex: 0 0 3rem;
  position: relative;
  padding: 0;
  border-radius: 16px;
  text-decoration: none;
  color: #f7f2ff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(11, 10, 24, 0.94), rgba(27, 14, 48, 0.92)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.28), rgba(23, 216, 255, 0.18));
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.single-link::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 32%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 64%,
    transparent 100%
  );
  transform: translateX(-145%);
  transition: transform 0.5s ease;
}

.single-link::after {
  position: absolute;
  inset: auto 10px 0 10px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 45, 141, 0), rgba(255, 45, 141, 0.9), rgba(23, 216, 255, 0.95), rgba(23, 216, 255, 0));
  opacity: 0.42;
  transform: scaleX(0.72);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.single-link:hover,
.single-link:focus-visible {
  transform: translate3d(0, -3px, 0);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.24),
    0 0 22px rgba(255, 45, 141, 0.14);
}

.single-link:hover::before,
.single-link:focus-visible::before {
  transform: translateX(145%);
}

.single-link:hover::after,
.single-link:focus-visible::after {
  opacity: 0.95;
  transform: scaleX(1);
}

.single-link-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
}

.single-link svg {
  width: 100%;
  height: 100%;
}

.single-card.is-featured {
  background:
    linear-gradient(160deg, rgba(10, 8, 18, 0.96), rgba(20, 12, 30, 0.88)),
    radial-gradient(circle at top right, rgba(255, 45, 141, 0.16), transparent 34%);
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(255, 45, 141, 0.1);
}

.single-card.is-featured::after {
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  content: "";
  background: conic-gradient(
    from 0deg,
    rgba(255, 45, 141, 0.04),
    rgba(255, 45, 141, 0.92),
    rgba(23, 216, 255, 0.95),
    rgba(255, 45, 141, 0.7),
    rgba(255, 45, 141, 0.04)
  );
  pointer-events: none;
  opacity: 0.95;
  animation: featuredBorderSpin 4.5s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.single-link-spotify {
  background:
    linear-gradient(135deg, rgba(10, 12, 26, 0.95), rgba(18, 30, 40, 0.92)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.22), rgba(23, 216, 255, 0.26));
}

.single-link-itunes {
  background:
    linear-gradient(135deg, rgba(16, 11, 28, 0.95), rgba(38, 14, 42, 0.92)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.3), rgba(168, 87, 255, 0.22));
}

.single-link-youtube {
  background:
    linear-gradient(135deg, rgba(17, 10, 22, 0.95), rgba(44, 14, 34, 0.92)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.34), rgba(255, 96, 129, 0.18));
}

.single-link-deezer {
  background:
    linear-gradient(135deg, rgba(10, 10, 26, 0.95), rgba(22, 14, 50, 0.92)),
    linear-gradient(90deg, rgba(133, 70, 255, 0.28), rgba(23, 216, 255, 0.18));
}

.single-link.is-disabled {
  cursor: default;
  opacity: 0.42;
  filter: grayscale(0.2);
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

.single-link.is-disabled::before,
.single-link.is-disabled::after {
  display: none;
}

.about-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(8, 8, 14, 0.9), rgba(17, 12, 26, 0.84)),
    radial-gradient(circle at top right, rgba(255, 45, 141, 0.12), transparent 28%);
}

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

.about-card::before {
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 45, 141, 0.06), transparent 22%, transparent 78%, rgba(23, 216, 255, 0.08)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 5px
    );
  opacity: 0.56;
}

.about-card::after {
  inset: auto -6% -18% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 216, 255, 0.16) 0%, rgba(23, 216, 255, 0) 68%);
  filter: blur(10px);
}

.about-header,
.about-layout,
.about-closing {
  position: relative;
  z-index: 1;
}

.about-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
  align-items: center;
  text-align: center;
}

.about-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #ffd6ec;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-card h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.about-lead {
  margin: 0;
  font-family: Orbitron, Inter, sans-serif;
  padding-left: 0;
  font-size: clamp(1.425rem, calc(2vw - 2px), 1.875rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff1fa;
  text-align: center;
}

.about-copy > p {
  margin: 0;
  position: relative;
  padding-left: 18px;
  color: rgba(240, 228, 245, 0.72);
  line-height: 1.82;
  letter-spacing: 0.012em;
  text-wrap: pretty;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    color 0.5s ease;
}

.about-lead::before {
  display: none;
}

.about-copy > p::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(23, 216, 255, 0.72), rgba(255, 45, 141, 0.4), rgba(255, 45, 141, 0));
  opacity: 0.45;
}

.about-copy > p:not(.about-lead) {
  font-size: 1.02rem;
  font-style: italic;
  min-height: 3.8em;
  opacity: 0.18;
  filter: blur(1.4px);
}

.about-copy.story-active > p:not(.about-lead).is-current {
  opacity: 1;
  color: #fff5fb;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.about-copy.story-active > p:not(.about-lead).is-past {
  opacity: 0.92;
  color: rgba(244, 236, 249, 0.92);
  filter: blur(0);
}

.about-copy.story-active > p:not(.about-lead).is-idle {
  opacity: 0.08;
  color: rgba(214, 203, 223, 0.42);
  filter: blur(1.6px);
}

.about-copy.story-active > p:not(.about-lead).is-current::after {
  display: inline-block;
  width: 0.55ch;
  margin-left: 0.16em;
  color: #17d8ff;
  content: "_";
  animation: typeCaret 0.85s steps(1) infinite;
}

.about-aside {
  display: grid;
  gap: 16px;
}

.about-quote,
.about-signal {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.about-signal {
  text-align: center;
}

.about-quote {
  background:
    linear-gradient(135deg, rgba(255, 45, 141, 0.12), rgba(0, 0, 0, 0.2)),
    rgba(0, 0, 0, 0.22);
}

.quote-mark {
  display: block;
  margin-bottom: 8px;
  color: #17d8ff;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.about-quote p {
  margin: 0;
  color: #fff4fb;
  font-size: 1.08rem;
}

.signal-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffb9dd;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.signal-bars {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 7px;
  min-height: 58px;
  margin-bottom: 14px;
}

.signal-bars span {
  width: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #17d8ff, #ff2d8d);
  box-shadow: 0 0 16px rgba(255, 45, 141, 0.18);
  animation: signalPulse 2.8s ease-in-out infinite;
}

.signal-bars span:nth-child(1) {
  height: 22px;
}

.signal-bars span:nth-child(2) {
  height: 38px;
  animation-delay: 0.15s;
}

.signal-bars span:nth-child(3) {
  height: 54px;
  animation-delay: 0.3s;
}

.signal-bars span:nth-child(4) {
  height: 30px;
  animation-delay: 0.45s;
}

.signal-bars span:nth-child(5) {
  height: 46px;
  animation-delay: 0.6s;
}

.about-tags {
  margin: 14px 0 0;
  color: #bfefff;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sound-profile-tags {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.sound-profile-tags span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 18, 0.96) 0%,
      rgba(255, 45, 141, 0.24) 22%,
      rgba(23, 216, 255, 0.24) 50%,
      rgba(255, 45, 141, 0.24) 78%,
      rgba(8, 10, 18, 0.96) 100%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 10px
    );
  background-size: 220% 100%, auto;
  color: #f5f0fb;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: soundProfileShift 6.5s linear infinite;
}

.sound-profile-tags span:nth-child(2) {
  animation-delay: 0.5s;
}

.sound-profile-tags span:nth-child(3) {
  animation-delay: 1s;
}

.sound-profile-tags span:nth-child(4) {
  animation-delay: 1.5s;
}

.sound-profile-tags span:nth-child(5) {
  animation-delay: 2s;
}

.about-signal-social {
  text-align: center;
}

.about-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  min-height: 3.2rem;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  color: #f7f2ff;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  background:
    linear-gradient(135deg, rgba(10, 10, 18, 0.95), rgba(22, 14, 30, 0.92)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.16), rgba(23, 216, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.about-social-link:hover,
.about-social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.24),
    0 0 20px rgba(255, 45, 141, 0.08);
  background:
    linear-gradient(135deg, rgba(12, 12, 22, 0.97), rgba(24, 16, 34, 0.94)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.2), rgba(23, 216, 255, 0.18));
}

.about-social-link:focus-visible {
  outline: 2px solid rgba(23, 216, 255, 0.35);
  outline-offset: 3px;
}

.about-social-link svg {
  width: 1.12rem;
  height: 1.12rem;
  flex: 0 0 auto;
}

.about-closing {
  max-width: 46rem;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
  color: #ffd5ef;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

.tiktok-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(8, 8, 14, 0.9), rgba(13, 10, 24, 0.86)),
    radial-gradient(circle at top left, rgba(23, 216, 255, 0.1), transparent 26%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.youtube-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(8, 8, 14, 0.92), rgba(13, 10, 24, 0.88)),
    radial-gradient(circle at top right, rgba(255, 45, 141, 0.12), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.instagram-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(8, 8, 14, 0.92), rgba(20, 10, 19, 0.88)),
    radial-gradient(circle at top left, rgba(255, 132, 39, 0.16), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.tiktok-card::before,
.tiktok-card::after,
.youtube-card::before,
.youtube-card::after,
.instagram-card::before,
.instagram-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.tiktok-card::before,
.youtube-card::before,
.instagram-card::before {
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 45, 141, 0.05), transparent 24%, transparent 76%, rgba(23, 216, 255, 0.08)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 5px
    );
  opacity: 0.58;
}

.tiktok-card::after,
.youtube-card::after {
  inset: auto auto -24% -5%;
  width: 19rem;
  height: 19rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 141, 0.14) 0%, rgba(255, 45, 141, 0) 70%);
  filter: blur(12px);
}

.instagram-card::after {
  inset: auto auto -24% -5%;
  width: 19rem;
  height: 19rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 132, 39, 0.16) 0%, rgba(255, 132, 39, 0) 70%);
  filter: blur(12px);
}

.tiktok-header,
.tiktok-embed-shell,
.youtube-header,
.youtube-grid,
.instagram-header,
.instagram-grid {
  position: relative;
  z-index: 1;
}

.tiktok-header,
.youtube-header,
.instagram-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  margin-bottom: 26px;
}

.tiktok-kicker,
.youtube-kicker,
.instagram-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #ffd6ec;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.tiktok-card h2,
.youtube-card h2,
.instagram-card h2 {
  margin: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tiktok-header p,
.youtube-header p,
.instagram-header p {
  max-width: 42rem;
  margin: 0;
  color: rgba(240, 228, 245, 0.74);
  line-height: 1.7;
}

.youtube-header a,
.instagram-header a {
  color: #bff2ff;
  text-decoration: none;
}

.youtube-header a:hover,
.youtube-header a:focus-visible,
.instagram-header a:hover,
.instagram-header a:focus-visible {
  text-decoration: underline;
}

.tiktok-embed-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 325px), 1fr));
  gap: 18px;
  align-items: start;
  justify-items: center;
  padding: 18px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(10, 10, 18, 0.95), rgba(19, 12, 28, 0.9)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.16), rgba(23, 216, 255, 0.12));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 14px 32px rgba(0, 0, 0, 0.24);
}

.tiktok-embed-shell .tiktok-embed {
  width: min(100%, 605px) !important;
  max-width: 605px;
  min-width: 0 !important;
  margin: 0;
  justify-self: center;
}

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

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

.youtube-short-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(10, 10, 18, 0.95), rgba(19, 12, 28, 0.9)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.16), rgba(23, 216, 255, 0.12));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 14px 32px rgba(0, 0, 0, 0.24);
}

.instagram-post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(10, 10, 18, 0.95), rgba(20, 12, 24, 0.9)),
    linear-gradient(90deg, rgba(255, 126, 33, 0.18), rgba(255, 45, 141, 0.12));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 14px 32px rgba(0, 0, 0, 0.24);
}

.youtube-short-media {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #090911;
}

.youtube-short-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.instagram-embed-wrap {
  padding: 0 14px 18px;
}

.instagram-embed-wrap .instagram-media {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.youtube-short-body {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
}

.instagram-post-body {
  display: grid;
  gap: 10px;
  padding: 18px 18px 14px;
}

.youtube-short-body h3 {
  margin: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.instagram-post-body h3 {
  margin: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.youtube-short-body p {
  margin: 0;
  color: rgba(240, 228, 245, 0.68);
  font-size: 0.92rem;
}

.instagram-post-body p {
  margin: 0;
  color: rgba(240, 228, 245, 0.68);
  font-size: 0.92rem;
}

.youtube-short-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.72rem 1rem;
  border-radius: 14px;
  color: #fff4fb;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  background:
    linear-gradient(135deg, rgba(66, 12, 34, 0.96), rgba(108, 20, 40, 0.92)),
    linear-gradient(90deg, rgba(255, 45, 141, 0.32), rgba(255, 116, 116, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.youtube-short-body a:hover,
.youtube-short-body a:focus-visible {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(255, 45, 141, 0.12);
}

.youtube-short-body a:focus-visible {
  outline: 2px solid rgba(23, 216, 255, 0.36);
  outline-offset: 3px;
}

code {
  font-family: "SFMono-Regular", Consolas, monospace;
  color: #ffd4e9;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, -4%, 0) scale(1.08);
  }
}

@keyframes heroFloat {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.08) translate3d(-0.8%, -1.4%, 0);
  }
  100% {
    transform: scale(1.05) translate3d(0.8%, 1%, 0);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    transform: scaleY(0.82);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes hazeDriftLeft {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.24;
  }
  100% {
    transform: translate3d(6%, -5%, 0) scale(1.12);
    opacity: 0.42;
  }
}

@keyframes hazeDriftRight {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.22;
  }
  100% {
    transform: translate3d(-7%, 4%, 0) scale(1.1);
    opacity: 0.38;
  }
}

@keyframes soundProfileShift {
  0% {
    background-position: 0% 50%, 0 0;
  }
  100% {
    background-position: 100% 50%, 0 0;
  }
}

@keyframes typeCaret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes smokeBillowLeft {
  0% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 0.58;
  }
  50% {
    transform: translate3d(4%, -8%, 0) scale(1.06);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(7%, -14%, 0) scale(1.12);
    opacity: 0.74;
  }
}

@keyframes smokeBillowRight {
  0% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 0.56;
  }
  50% {
    transform: translate3d(-4%, -8%, 0) scale(1.06);
    opacity: 0.88;
  }
  100% {
    transform: translate3d(-7%, -14%, 0) scale(1.12);
    opacity: 0.72;
  }
}

@keyframes beamSweepOne {
  0% {
    transform: rotate(-10deg) translate3d(0, 0, 0) scaleX(0.92);
    opacity: 0.18;
  }
  100% {
    transform: rotate(-8deg) translate3d(14%, -10%, 0) scaleX(1.08);
    opacity: 0.42;
  }
}

@keyframes beamSweepTwo {
  0% {
    transform: rotate(-13deg) translate3d(0, 0, 0) scaleX(0.94);
    opacity: 0.14;
  }
  100% {
    transform: rotate(-15deg) translate3d(-12%, 8%, 0) scaleX(1.06);
    opacity: 0.4;
  }
}

@keyframes sparkFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: translate3d(1.6rem, -1rem, 0) scale(1.15);
    opacity: 0.95;
  }
}

@keyframes sparkFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.72);
    opacity: 0.28;
  }
  50% {
    transform: translate3d(-1.4rem, 1rem, 0) scale(1.08);
    opacity: 0.88;
  }
}

@keyframes sparkFloatThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.76);
    opacity: 0.24;
  }
  50% {
    transform: translate3d(1rem, -1.2rem, 0) scale(1.1);
    opacity: 0.82;
  }
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes heroSweep {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.08);
  }
}

@keyframes gridShift {
  0% {
    transform: perspective(480px) rotateX(72deg) translateY(0);
  }
  100% {
    transform: perspective(480px) rotateX(72deg) translateY(36px);
  }
}

@keyframes titleDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  12% {
    transform: translate3d(0.01em, -0.015em, 0);
  }
  13% {
    transform: translate3d(-0.04em, 0.025em, 0);
  }
  14% {
    transform: translate3d(0.03em, -0.02em, 0);
  }
  33% {
    transform: translate3d(0, 0, 0);
  }
  58% {
    transform: translate3d(-0.015em, 0.01em, 0);
  }
  59% {
    transform: translate3d(0.05em, -0.025em, 0);
  }
  60% {
    transform: translate3d(-0.02em, 0.02em, 0);
  }
  61% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes glitchLayerTop {
  0%,
  68%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
  69% {
    transform: translate(-0.08em, -0.04em);
    opacity: 0.95;
  }
  72% {
    transform: translate(0.045em, 0.025em);
    opacity: 0.9;
  }
  75% {
    transform: translate(-0.055em, -0.01em);
    opacity: 0;
  }
}

@keyframes glitchLayerBottom {
  0%,
  54%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
  55% {
    transform: translate(0.085em, 0.04em);
    opacity: 0.96;
  }
  58% {
    transform: translate(-0.06em, -0.03em);
    opacity: 0.88;
  }
  61% {
    transform: translate(0.03em, 0.015em);
    opacity: 0;
  }
}

@keyframes glitchSkew {
  0%,
  72%,
  100% {
    transform: skewX(0deg);
  }
  73% {
    transform: skewX(4deg);
  }
  74% {
    transform: skewX(-6deg);
  }
  75% {
    transform: skewX(2deg);
  }
  76% {
    transform: skewX(0deg);
  }
}

@keyframes glitchSliceMid {
  0%,
  46%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
  47% {
    transform: translate(-0.04em, 0.01em);
    opacity: 0.92;
  }
  49% {
    transform: translate(0.06em, -0.015em);
    opacity: 0.86;
  }
  51% {
    transform: translate(-0.02em, 0.01em);
    opacity: 0;
  }
}

@keyframes glitchShadowCut {
  0%,
  34%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
  35% {
    transform: translate(0.07em, 0.02em);
    opacity: 0.7;
  }
  38% {
    transform: translate(-0.05em, -0.015em);
    opacity: 0.58;
  }
  40% {
    transform: translate(0.02em, 0.01em);
    opacity: 0;
  }
}

@keyframes stripDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  24% {
    transform: translate3d(0.015em, -0.01em, 0);
  }
  25% {
    transform: translate3d(-0.04em, 0.02em, 0);
  }
  26% {
    transform: translate3d(0.02em, -0.015em, 0);
  }
  27% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes stripGlitchTop {
  0%,
  64%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
  65% {
    transform: translate(-0.055em, -0.01em);
    opacity: 0.9;
  }
  68% {
    transform: translate(0.03em, 0.01em);
    opacity: 0.8;
  }
  70% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

@keyframes stripGlitchBottom {
  0%,
  42%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
  43% {
    transform: translate(0.06em, 0.02em);
    opacity: 0.92;
  }
  46% {
    transform: translate(-0.035em, -0.01em);
    opacity: 0.84;
  }
  48% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

@keyframes cutSlideTop {
  0% {
    transform: translateX(-50%) rotate(-18deg) translateY(0);
  }
  100% {
    transform: translateX(-50%) rotate(-18deg) translateY(1.4rem);
  }
}

@keyframes cutSlideBottom {
  0% {
    transform: translateX(-50%) rotate(-16deg) translateY(0);
  }
  100% {
    transform: translateX(-50%) rotate(-16deg) translateY(-1.2rem);
  }
}

@keyframes desktopCutTop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 0.6vw, 0);
  }
}

@keyframes desktopCutBottom {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-2vw, -1vw, 0);
  }
}

@keyframes scanlines {
  0% {
    transform: translateY(-4%);
  }
  100% {
    transform: translateY(4%);
  }
}

@keyframes pulseOrb {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.65;
  }
}

@keyframes driftGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-4%, -6%, 0) scale(1.12);
  }
}

@keyframes featuredBorderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes latestSignalBorderSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.01);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@media (max-width: 920px) {
  .listen-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .ambient-cut-top {
    top: -6em;
    height: 12rem;
  }

  .ambient-cut-bottom {
    bottom: -5.5rem;
    height: 9rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 921px) {
  .hero-ambient::before {
    top: -5rem;
    left: -18vw;
    width: 38vw;
    height: 18vw;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.86));
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 1;
  }

  .ambient-cut {
    width: auto;
    left: auto;
    right: auto;
    filter: blur(0);
    opacity: 0.88;
    transform: none;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
  }

  .ambient-cut-top {
    top: -6rem;
    left: -22vw;
    width: 114vw;
    height: 28vw;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    animation: desktopCutTop 16s ease-in-out infinite alternate;
  }

  .ambient-cut-bottom {
    right: -7vw;
    bottom: -2rem;
    width: 84vw;
    height: 18vw;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    animation: desktopCutBottom 18s ease-in-out infinite alternate;
  }
}

@media (max-width: 640px) {
  .mobile-only {
    display: inline-flex;
  }

  .desktop-only {
    display: none;
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
    min-width: 0;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    gap: 0;
  }

  .back-to-top-label {
    display: none;
  }

  .hero {
    padding: 18px;
  }

  .hero-smoke-canvas {
    opacity: 0.78;
    mask-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 0.22) 28%,
      rgba(0, 0, 0, 0) 36%,
      rgba(0, 0, 0, 0) 64%,
      rgba(0, 0, 0, 0.22) 72%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 1) 100%
    );
    -webkit-mask-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 0.22) 28%,
      rgba(0, 0, 0, 0) 36%,
      rgba(0, 0, 0, 0) 64%,
      rgba(0, 0, 0, 0.22) 72%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .hero-media {
    background-position: center 12%;
  }

  .hero-media::after,
  .ambient-grid,
  .ambient-noise {
    display: none;
  }

  .ambient-cut {
    filter: none;
    opacity: 0.9;
    box-shadow: none;
  }

  .ambient-cut-top {
    top: -6.5rem;
    height: 14rem;
    animation-duration: 18s;
  }

  .ambient-cut-bottom {
    bottom: -6.5rem;
    height: 14rem;
    animation-duration: 20s;
  }

  .hero-content {
    --hero-genre-font-size: 0.84rem;
    padding-top: 88px;
    padding-bottom: 36px;
  }

  .latest-signal {
    padding: 16px;
    gap: 14px;
  }

  .latest-signal-title {
    font-size: clamp(1.15rem, 5vw, 1.55rem);
  }

  .latest-signal-player,
  .latest-signal-cta {
    width: 100%;
  }

  .latest-signal-player {
    width: 100%;
  }

  .subtitle {
    max-width: calc(100vw - 36px);
  }

  .hero-support {
    max-width: calc(100vw - 36px);
    margin-top: 8px;
  }

  .hero-support-core {
    gap: 0.48rem;
    min-height: 2rem;
    padding: 0.44rem 0.72rem 0.48rem;
  }

  .hero-support-pulse {
    width: 0.36rem;
    height: 0.36rem;
    flex-basis: 0.36rem;
  }

  .hero-support-pulse::before {
    inset: -0.16rem;
  }

  .hero-support-text {
    font-size: calc(var(--hero-genre-font-size) - 7px);
    letter-spacing: 0.08em;
  }

  .glitch-strip {
    padding: 10px 14px;
  }

  .glitch-strip span {
    font-size: 0.84rem;
    letter-spacing: 0.18em;
    white-space: normal;
  }

  .cta-button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    margin-top: 24px;
  }

  .hero-secondary-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-secondary-link {
    width: 100%;
    height: 2.7rem;
    min-height: 2.7rem;
  }

  .hero-secondary-link svg {
    width: 1rem;
    height: 1rem;
  }

  .nav-links {
    gap: 10px 12px;
    flex-wrap: wrap;
    max-width: calc(100% - 5.25rem);
  }

  .nav-links a {
    font-size: 0.92rem;
  }

  .language-toggle {
    min-width: 4.45rem;
    height: 2.35rem;
    padding: 0 0.72rem;
    gap: 0.36rem;
    flex: 0 0 auto;
  }

  .listen-section,
  .latest-signal-section,
  .singles-section,
  .about-section,
  .youtube-section,
  .tiktok-section,
  .instagram-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .singles-carousel-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .singles-nav {
    display: none;
  }

  .singles-meta {
    justify-content: flex-end;
  }

  .about-card {
    padding: 22px;
  }

  .tiktok-card {
    padding: 22px;
  }

  .youtube-card {
    padding: 22px;
  }

  .instagram-card {
    padding: 22px;
  }

  .tiktok-kicker {
    letter-spacing: 0.16em;
  }

  .youtube-kicker {
    letter-spacing: 0.16em;
  }

  .instagram-kicker {
    letter-spacing: 0.16em;
  }

  .tiktok-embed-shell {
    padding: 0;
    grid-template-columns: 1fr;
    justify-items: stretch;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .tiktok-embed-shell .tiktok-embed {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    justify-self: stretch;
  }

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

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

  .about-kicker {
    letter-spacing: 0.16em;
  }

  .about-quote p {
    font-size: 1rem;
  }

  .ambient-orb-left {
    width: 22rem;
    height: 22rem;
    left: -20%;
  }

  .ambient-orb-right {
    width: 18rem;
    height: 18rem;
    right: -18%;
  }

  .ambient-grid {
    height: 22%;
  }

}

@media (max-width: 1080px) {
  .singles-grid {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .youtube-grid,
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .singles-carousel-shell {
    position: relative;
    display: block;
  }

  .singles-nav {
    display: inline-flex;
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 999px;
    font-size: 0;
    transform: translateY(-50%);
    box-shadow:
      0 12px 26px rgba(0, 0, 0, 0.34),
      0 0 18px rgba(23, 216, 255, 0.08);
  }

  .singles-nav:hover,
  .singles-nav:focus-visible {
    transform: translateY(-50%) scale(1.03);
  }

  .singles-nav:disabled {
    transform: translateY(-50%);
  }

  .singles-nav-prev {
    left: 0.35rem;
  }

  .singles-nav-next {
    right: 0.35rem;
  }

  .singles-nav-label {
    display: none;
  }

  .singles-nav-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-basis: 1.25rem;
  }

  .singles-grid {
    grid-auto-columns: 100%;
    gap: 16px;
  }

  .single-card {
    padding: 24px 22px;
  }

  .single-artwork {
    width: min(100%, 16.5rem);
    margin: 0 auto 20px;
  }

  .single-card-body {
    gap: 16px;
  }

  .single-card h3 {
    min-height: 2.5em;
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .single-badge {
    padding: 0.44rem 0.82rem;
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .single-actions {
    justify-items: stretch;
    gap: 10px;
  }

  .single-primary-link {
    width: 100%;
    min-width: 0;
    min-height: 3.35rem;
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }

  .single-secondary-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .single-link {
    width: 3rem;
    height: 3rem;
    min-height: 3rem;
    flex: 0 0 3rem;
  }

  .single-link-icon {
    width: 1.05rem;
    height: 1.05rem;
  }

  .youtube-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .youtube-short-body {
    padding: 16px;
  }

  .instagram-post-body {
    padding: 16px 16px 12px;
  }

  .youtube-short-body h3 {
    font-size: 0.82rem;
  }

  .instagram-post-body h3 {
    font-size: 0.82rem;
  }

  .youtube-short-body p,
  .youtube-short-body a {
    font-size: 0.8rem;
  }

  .instagram-post-body p {
    font-size: 0.8rem;
  }

  .instagram-embed-wrap {
    padding: 0 10px 14px;
  }

  .singles-pagination {
    min-width: 0;
    text-align: right;
  }
}

html.browser-embedded .hero-media,
html.browser-embedded .hero-media::before,
html.browser-embedded .hero::before,
html.browser-embedded .hero::after,
html.browser-embedded .ambient-orb-left,
html.browser-embedded .ambient-orb-right,
html.browser-embedded .ambient-haze-left,
html.browser-embedded .ambient-haze-right,
html.browser-embedded .ambient-beam-one,
html.browser-embedded .ambient-beam-two,
html.browser-embedded .ambient-spark-one,
html.browser-embedded .ambient-spark-two,
html.browser-embedded .ambient-spark-three {
  animation-duration: 0.01ms;
  animation-iteration-count: 1;
}

html.browser-embedded .hero-media::after,
html.browser-embedded .ambient-grid,
html.browser-embedded .ambient-noise,
html.browser-embedded .ambient-beam-one,
html.browser-embedded .ambient-beam-two {
  display: none;
}

html.browser-embedded .hero-smoke-canvas {
  opacity: 0.6;
}

html.browser-embedded .ambient-cut {
  filter: none;
  box-shadow: none;
}

html.browser-embedded .ambient-cut-top,
html.browser-embedded .ambient-cut-bottom {
  animation: none;
}

html.browser-embedded .ambient-cut-top {
  top: -6.5rem;
  height: 14rem;
}

html.browser-embedded .ambient-cut-bottom {
  bottom: -6rem;
  height: 13rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero-media::before,
  .hero-media::after,
  .hero::before,
  .hero::after,
  .ambient-orb-left,
  .ambient-orb-right,
  .ambient-cut-top,
  .ambient-cut-bottom,
  .ambient-haze-left,
  .ambient-haze-right,
  .ambient-beam-one,
  .ambient-beam-two,
  .ambient-spark-one,
  .ambient-spark-two,
  .ambient-spark-three,
  .ambient-grid,
  .ambient-noise,
  .glitch-title,
  .glitch-title span,
  .glitch-title::before,
  .glitch-title::after,
  .glitch-strip span,
  .glitch-strip span::before,
  .glitch-strip span::after,
  .single-card.is-featured::after,
  .about-copy.story-active > p:not(.about-lead).is-current::after,
  .sound-profile-tags span {
    animation: none;
  }
}
