@font-face {
  font-family: "Array";
  src: local("Array"), local("Array Regular");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #010001;
  --bg-soft: #0c0316;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --pink: #db1ff3;
  --pink-soft: rgba(219, 31, 243, 0.78);
  --pink-glow: rgba(219, 31, 243, 0.28);
  --purple: #5c1bc8;
  --text: #f8faff;
  --muted: rgba(248, 250, 255, 0.72);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Array", "Khand", sans-serif;
  --font-editorial: "Playfair Display", "Iowan Old Style", "Times New Roman", serif;
  --font-ui: "Khand", sans-serif;
  --font-meta: "Inter Tight", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  --screen-glow-primary: rgba(255, 0, 148, 0.2);
  --screen-glow-secondary: rgba(185, 64, 255, 0.17);
  --screen-glow-low: rgba(255, 0, 148, 0.1);
  --audio-pulse: 0;
  --audio-glow-opacity: 0.42;
  --audio-glow-scale: 1;
  --audio-stage-opacity: 0.8;
  --audio-stage-scale: 1;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  touch-action: pan-x pan-y;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  -webkit-text-size-adjust: 100%;
}

button {
  font: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a,
input,
[role="button"],
[data-action] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#app {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.screen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #000000;
}

.screen__experience {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(14px);
  transition:
    opacity 680ms ease,
    transform 900ms cubic-bezier(0.18, 0.88, 0.24, 1),
    filter 820ms ease;
}

.screen.is-revealed .screen__experience {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}

.screen.is-entering .screen__experience {
  transition-delay: 120ms;
}

.screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.screen__grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 0.5px, transparent 0.5px),
    radial-gradient(rgba(255, 255, 255, 0.03) 0.5px, transparent 0.5px);
  background-position: 0 0, 11px 11px;
  background-size: 16px 16px, 18px 18px;
  mix-blend-mode: soft-light;
  opacity: 0.1;
  pointer-events: none;
}

.intro-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  background: #030303;
  color: #f6edda;
  transition:
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.18, 0.88, 0.24, 1);
}

.screen.is-entering .intro-loader {
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
}

.intro-loader__preload,
.intro-loader__reveal {
  position: absolute;
  inset: 0;
}

.intro-loader__preload {
  display: grid;
  place-items: center;
  background: #030303;
  animation: introPreloadOut 680ms cubic-bezier(0.18, 0.88, 0.24, 1) 2440ms forwards;
}

.intro-loader__preload-core {
  display: grid;
  grid-template-columns: auto auto auto auto minmax(40px, auto);
  align-items: center;
  gap: clamp(12px, 3vw, 34px);
  transform: translateY(-2vh);
  animation: introPreloadPulse 720ms ease-in-out infinite;
}

.intro-loader__asterisk,
.intro-loader__paren {
  color: #f6edda;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  line-height: 0.72;
  text-shadow: 0 0 22px rgba(246, 237, 218, 0.16);
}

.intro-loader__asterisk {
  font-size: clamp(56px, 10vw, 112px);
}

.intro-loader__paren {
  font-size: clamp(96px, 16vw, 188px);
}

.intro-loader__image-window {
  position: relative;
  width: clamp(72px, 13vw, 124px);
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(246, 237, 218, 0.06);
  box-shadow:
    0 0 0 1px rgba(246, 237, 218, 0.16),
    0 18px 44px rgba(0, 0, 0, 0.42);
}

.intro-loader__loading-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: introImageCycle 2600ms linear infinite;
}

.intro-loader__loading-image:nth-child(2),
.intro-loader__percent span:nth-child(2) {
  animation-delay: 520ms;
}

.intro-loader__loading-image:nth-child(3),
.intro-loader__percent span:nth-child(3) {
  animation-delay: 1040ms;
}

.intro-loader__loading-image:nth-child(4),
.intro-loader__percent span:nth-child(4) {
  animation-delay: 1560ms;
}

.intro-loader__loading-image:nth-child(5),
.intro-loader__percent span:nth-child(5) {
  animation-delay: 2080ms;
}

.intro-loader__percent {
  position: relative;
  min-width: 48px;
  min-height: 24px;
  color: rgba(246, 237, 218, 0.82);
  font-family: var(--font-meta);
  font-size: clamp(14px, 1.7vw, 20px);
  font-weight: 600;
}

.intro-loader__percent span {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  animation: introPercentCycle 2600ms linear infinite;
}

.intro-loader__reveal {
  display: grid;
  visibility: hidden;
  opacity: 0;
  background: #030303;
  transform: translateY(18px) scale(0.985);
  filter: blur(10px);
  animation: introRevealIn 980ms cubic-bezier(0.18, 0.88, 0.24, 1) 2780ms forwards;
}

.intro-loader__hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 26px 20px 42px;
}

.intro-loader__brand {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(2px, 1vh, 10px);
}

.intro-loader__logo {
  width: min(94px, 28vw);
  height: auto;
  opacity: 0.78;
  filter:
    drop-shadow(0 0 18px rgba(246, 237, 218, 0.08))
    drop-shadow(0 0 28px rgba(246, 237, 218, 0.06));
}

.intro-loader__core {
  width: min(100%, 980px);
  display: grid;
  justify-items: center;
  align-self: center;
  gap: 22px;
  margin: 0 auto;
  text-align: center;
}

.intro-loader__copy {
  color: rgba(246, 237, 218, 0.64);
  font-family: var(--font-ui);
}

.intro-loader__title {
  margin: 0;
  color: #f6edda;
  font-family: var(--font-editorial);
  font-size: clamp(54px, 9vw, 132px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 0 26px rgba(246, 237, 218, 0.13);
}

.intro-loader__title span {
  display: block;
}

.intro-loader__copy {
  max-width: 520px;
  margin: 0;
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.22;
}

.intro-loader__cta {
  min-width: 0;
  width: fit-content;
  visibility: hidden;
  margin-top: clamp(6px, 1.4vh, 14px);
  padding: 11px 24px 9px;
  border: 1px solid rgba(246, 237, 218, 0.78);
  border-radius: 999px;
  background: #f6edda;
  color: #030303;
  font-family: var(--font-ui);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(246, 237, 218, 0.12);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  animation:
    introCtaIn 720ms cubic-bezier(0.18, 0.88, 0.24, 1) 3420ms forwards,
    introCtaPulse 1800ms ease-in-out 4300ms infinite;
}

.intro-loader__cta:hover {
  transform: translateY(-1px) scale(1.01);
  background: #fff8ec;
}

.intro-loader__ruler {
  position: absolute;
  top: 8px;
  bottom: 8px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: rgba(246, 237, 218, 0.12);
  font-family: var(--font-meta);
  font-size: 11px;
  font-weight: 600;
  pointer-events: none;
}

.intro-loader__ruler--left {
  left: clamp(18px, 3.4vw, 42px);
}

.intro-loader__ruler--right {
  right: clamp(18px, 3.4vw, 42px);
}

.intro-loader__ruler span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@keyframes introImageCycle {
  0%,
  18% {
    opacity: 1;
    transform: scale(1);
  }

  24%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes introPercentCycle {
  0%,
  18% {
    opacity: 1;
  }

  24%,
  100% {
    opacity: 0;
  }
}

@keyframes introPreloadPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: translateY(-2vh) scale(0.985);
  }

  50% {
    opacity: 1;
    transform: translateY(-2vh) scale(1);
  }
}

@keyframes introPreloadOut {
  from {
    opacity: 1;
    transform: scale(1);
    filter: none;
  }

  to {
    opacity: 0;
    transform: scale(1.04);
    filter: blur(10px);
  }
}

@keyframes introRevealIn {
  from {
    visibility: visible;
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(10px);
  }

  to {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
  }
}

@keyframes introCtaIn {
  from {
    visibility: visible;
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introCtaPulse {
  0%,
  100% {
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.38),
      0 0 28px rgba(246, 237, 218, 0.12);
  }

  50% {
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.44),
      0 0 46px rgba(246, 237, 218, 0.3),
      0 0 78px rgba(246, 237, 218, 0.12);
  }
}

.mobile-page,
.desktop-page {
  position: relative;
  z-index: 1;
}

.desktop-page {
  display: none;
  padding: 18px 24px 128px;
}

.cards-topbar {
  position: relative;
  z-index: 9;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: min(100%, 1380px);
  margin: 0 auto;
  color: #ffffff;
}

.cards-topbar--mobile {
  width: calc(100% - clamp(32px, 9vw, 56px));
}

.cards-topbar--desktop {
  margin-bottom: 16px;
}

.cards-topbar__back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 38px;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.cards-topbar__back:hover {
  color: #ffffff;
  transform: translateX(-2px);
}

.cards-topbar__back span {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    1px 0 0 rgba(255, 87, 87, 0.42),
    -1px 0 0 rgba(73, 110, 255, 0.42);
}

.cards-topbar__back-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}

.cards-topbar__logo {
  display: block;
  width: clamp(46px, 9vw, 68px);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.16));
}

.cards-topbar__spacer {
  justify-self: end;
  width: 62px;
  height: 1px;
}

.screen-logo {
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  width: min(100%, 1380px);
  margin: 0 auto 14px;
  pointer-events: none;
}

.screen-logo__image {
  display: block;
  width: clamp(46px, 8vw, 68px);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.16));
}

.gateway-page .screen-logo {
  align-self: start;
  margin-bottom: 0;
}

.desktop-page--cards {
  height: 100vh;
  height: 100svh;
  overflow-y: auto;
  scrollbar-width: none;
}

.desktop-page--cards::-webkit-scrollbar {
  display: none;
}

.gateway-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #ffffff;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 32px);
  padding: max(18px, env(safe-area-inset-top)) clamp(18px, 5vw, 56px) calc(18px + env(safe-area-inset-bottom));
}

.gateway-page--desktop {
  display: none;
}

.gateway-page__body {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: center;
  align-content: center;
  justify-items: center;
  gap: clamp(22px, 4vw, 42px);
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.gateway-page h1 {
  display: grid;
  gap: 0.08em;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-editorial);
  font-size: clamp(43px, 8vw, 92px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow:
    1px 0 0 rgba(255, 87, 87, 0.58),
    -1px 0 0 rgba(73, 110, 255, 0.58),
    0 0 34px rgba(219, 31, 243, 0.12);
}

.gateway-page h1 em {
  color: rgba(255, 255, 255, 0.74);
  font-style: italic;
}

.gateway-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 4vw, 36px);
  width: min(100%, 760px);
}

.gateway-choice {
  display: grid;
  justify-items: center;
  gap: clamp(12px, 2.2vw, 22px);
  min-width: 0;
  padding: clamp(18px, 4vw, 34px) clamp(14px, 3vw, 26px) clamp(24px, 4vw, 38px);
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition:
    transform 260ms cubic-bezier(0.18, 0.88, 0.24, 1),
    filter 260ms ease;
}

.gateway-choice:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 24px 54px rgba(219, 31, 243, 0.28));
}

.gateway-choice--compact {
  min-height: clamp(70px, 10vw, 92px);
  align-content: center;
  padding: clamp(18px, 3vw, 28px);
}

.gateway-choice--visual {
  align-content: center;
  min-height: clamp(230px, 32vw, 380px);
}

.gateway-choice__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, clamp(138px, 26vw, 280px));
  height: clamp(132px, 24vw, 260px);
}

.gateway-choice__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(219, 31, 243, 0.18));
  transition: filter 260ms ease;
}

.gateway-choice:hover .gateway-choice__image,
.gateway-choice:focus-visible .gateway-choice__image {
  filter:
    drop-shadow(0 0 42px rgba(219, 31, 243, 0.38))
    drop-shadow(0 20px 52px rgba(219, 31, 243, 0.22));
}

.gateway-choice__copy {
  display: grid;
  min-width: 0;
}

.gateway-choice__copy strong {
  overflow: hidden;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(219, 31, 243, 0.18);
}

.gateway-choice:hover .gateway-choice__copy strong,
.gateway-choice:focus-visible .gateway-choice__copy strong {
  text-shadow:
    0 0 28px rgba(219, 31, 243, 0.42),
    0 0 54px rgba(219, 31, 243, 0.2);
}

.gateway-page__footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 22px);
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(10px, 1.4vw, 15px) clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(8, 1, 14, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 44px rgba(0, 0, 0, 0.36),
    0 0 52px rgba(219, 31, 243, 0.2);
  font-family: var(--font-ui);
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gateway-page__footer-copy {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.28em;
  min-width: 0;
  text-shadow:
    1px 0 0 rgba(255, 87, 87, 0.5),
    -1px 0 0 rgba(73, 110, 255, 0.5),
    0 0 26px rgba(219, 31, 243, 0.34);
}

.gateway-page__footer-copy strong {
  color: #ffffff;
  font-weight: 700;
}

.gateway-page__footer-copy span {
  color: rgba(255, 255, 255, 0.86);
}

.gateway-apply {
  flex: 0 0 auto;
  min-height: clamp(52px, 5vw, 64px);
  padding: 2px clamp(28px, 4.2vw, 44px) 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(18, 7, 28, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(219, 31, 243, 0.22);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow:
    1px 0 0 rgba(255, 87, 87, 0.54),
    -1px 0 0 rgba(73, 110, 255, 0.54);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.gateway-apply:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(22, 8, 34, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 44px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(219, 31, 243, 0.28);
}

.desktop-quick-nav {
  display: block;
  width: min(100%, 1380px);
  margin: 0 auto 16px;
}

.desktop-quick-nav__track {
  display: flex;
  align-items: stretch;
  gap: 6px;
  width: 100%;
}

.desktop-quick-nav__item {
  position: relative;
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  height: 50px;
  opacity: 0.5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  transition:
    flex-grow 320ms cubic-bezier(0.18, 0.88, 0.24, 1),
    border-color 220ms ease,
    transform 260ms cubic-bezier(0.18, 0.88, 0.24, 1),
    box-shadow 300ms cubic-bezier(0.18, 0.88, 0.24, 1),
    opacity 240ms ease;
  will-change: transform, opacity, flex-grow;
}

.desktop-quick-nav__item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
}

.desktop-quick-nav__item.is-active {
  opacity: 1;
  flex-grow: 4.4;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 32px rgba(219, 31, 243, 0.12);
}

.desktop-quick-nav__item-bg,
.desktop-quick-nav__item-veil {
  position: absolute;
  inset: 0;
}

.desktop-quick-nav__item-bg {
  background-color: rgba(255, 255, 255, 0.08);
  background-image:
    linear-gradient(180deg, rgba(3, 2, 10, 0.08), rgba(3, 2, 10, 0.22)),
    var(--quick-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.desktop-quick-nav__item-veil {
  background:
    linear-gradient(180deg, rgba(8, 3, 15, 0.34), rgba(8, 3, 15, 0.62)),
    radial-gradient(circle at 50% 50%, rgba(219, 31, 243, 0.14), transparent 62%);
}

.desktop-quick-nav__item-label {
  position: absolute;
  right: 4px;
  bottom: 8px;
  left: 4px;
  z-index: 1;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    1px 0 0 rgba(255, 87, 87, 0.4),
    -1px 0 0 rgba(73, 110, 255, 0.4);
}

.desktop-quick-nav__item.is-active .desktop-quick-nav__item-label {
  right: 12px;
  bottom: 12px;
  left: 12px;
  font-size: 13px;
  text-align: left;
  letter-spacing: 0.08em;
}

.mobile-page {
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  row-gap: clamp(8px, 1.5svh, 16px);
  padding: max(14px, env(safe-area-inset-top)) 0 calc(10px + env(safe-area-inset-bottom));
}

.mobile-page--cards {
  overflow-y: auto;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  row-gap: clamp(14px, 2.2svh, 22px);
  padding-top: max(18px, env(safe-area-inset-top));
  scrollbar-width: none;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-page--cards::-webkit-scrollbar {
  display: none;
}

.mobile-page--insights {
  overflow-y: auto;
  grid-template-rows: auto auto minmax(0, 1fr);
  padding-right: clamp(14px, 4vw, 28px);
  padding-left: clamp(14px, 4vw, 28px);
  scrollbar-width: none;
}

.mobile-page--insights::-webkit-scrollbar {
  display: none;
}

.mobile-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2px 0 0;
}

.mobile-page--cards .mobile-stage {
  overflow: visible;
  padding: clamp(12px, 3svh, 36px) 0 clamp(8px, 1.4svh, 14px);
}

.mobile-stage__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(118vw, 620px);
  aspect-ratio: 1 / 1;
  opacity: var(--audio-stage-opacity);
  transform: translate(-50%, -50%) scale(var(--audio-stage-scale));
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--screen-glow-primary) 0%, var(--screen-glow-secondary) 42%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
  will-change: opacity, transform;
}

.screen:not(.is-audio-reactive) .mobile-stage__glow,
.screen:not(.is-audio-reactive) .desktop-stage__glow {
  animation: ambientGlowPulse 3.4s ease-in-out infinite;
}

.mobile-carousel__viewport {
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: clamp(5px, 1svh, 10px) 0;
  scroll-padding-inline: max(22px, 7vw);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.mobile-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.mobile-carousel__track {
  --mobile-card-width: min(84vw, calc((100svh - 350px) * 0.66), 440px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--mobile-card-width);
  align-items: center;
  gap: clamp(12px, 3.2vw, 24px);
  width: max-content;
  padding-inline: max(clamp(22px, 7vw, 54px), calc((100vw - var(--mobile-card-width)) / 2));
}

.mobile-page--cards .mobile-carousel__track {
  --mobile-card-width: min(72vw, 330px);
}

@supports not (height: 100svh) {
  .mobile-carousel__track {
    --mobile-card-width: min(84vw, calc((100vh - 350px) * 0.66), 440px);
  }

  .mobile-page--cards .mobile-carousel__track {
    --mobile-card-width: min(72vw, 330px);
  }
}

.mobile-story-card {
  position: relative;
  width: 100%;
  aspect-ratio: 0.66;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  opacity: 0.58;
  transform: scale(0.92) rotate(var(--mobile-card-tilt, 0deg));
  filter: saturate(0.82) brightness(0.7);
  contain: layout paint style;
  transition:
    transform 360ms cubic-bezier(0.18, 0.88, 0.24, 1),
    opacity 280ms ease,
    filter 280ms ease;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
}

.mobile-story-card.is-active {
  z-index: 2;
  opacity: 1;
  filter: none;
  transform: scale(1) rotate(0deg);
}

.mobile-story-card:nth-child(odd):not(.is-active) {
  --mobile-card-tilt: -2.6deg;
}

.mobile-story-card:nth-child(even):not(.is-active) {
  --mobile-card-tilt: 2.6deg;
}

.mobile-story-card .desktop-audio-card {
  height: 100%;
  border-radius: clamp(24px, 7vw, 34px);
}

.mobile-story-card.is-active .desktop-audio-card {
  box-shadow:
    0 36px 120px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 80px var(--card-glow);
}

.mobile-story-card .desktop-audio-card__top {
  top: clamp(14px, 3.8vw, 20px);
  right: clamp(14px, 3.8vw, 20px);
  bottom: auto;
  left: clamp(14px, 3.8vw, 20px);
}

.mobile-story-card .desktop-audio-card__corner {
  width: clamp(54px, 14vw, 66px);
  height: clamp(54px, 14vw, 66px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(240, 241, 248, 0.16);
}

.mobile-story-card .desktop-audio-card__corner-icon {
  width: clamp(24px, 6.4vw, 28px);
  height: clamp(24px, 6.4vw, 28px);
}

.desktop-audio-card__headline--mobile {
  right: clamp(18px, 4.8vw, 24px);
  bottom: clamp(74px, 17vw, 90px);
  left: clamp(18px, 4.8vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.desktop-audio-card__headline-copy {
  display: grid;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 74px);
}

.mobile-story-card .desktop-audio-card__headline strong {
  max-width: none;
  font-size: clamp(34px, 10vw, 54px);
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.mobile-story-card .desktop-audio-card__headline strong.title-size-sm {
  font-size: clamp(31px, 8.7vw, 48px);
}

.mobile-story-card .desktop-audio-card__headline strong.title-size-xs {
  font-size: clamp(27px, 7.6vw, 42px);
}

.desktop-audio-card__subtitle,
.desktop-audio-card__duration {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}

.desktop-audio-card__subtitle {
  position: relative;
  z-index: 0;
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow: visible;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-meta);
  font-size: clamp(16px, 4.4vw, 22px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.26);
  white-space: nowrap;
}

.desktop-ribbon-card .desktop-audio-card__headline {
  display: block;
}

.desktop-ribbon-card .desktop-audio-card__headline-copy {
  max-width: 100%;
}

.desktop-ribbon-card .desktop-audio-card__subtitle {
  width: auto;
  max-width: calc(100% - 72px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-ribbon-card .desktop-audio-card__duration {
  position: absolute;
  right: 0;
  bottom: 0;
}

.mobile-story-card .desktop-audio-card__headline-copy {
  flex: 0 1 auto;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.mobile-story-card .desktop-audio-card__subtitle {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.08;
  overflow-wrap: break-word;
  text-align: center;
  white-space: normal;
}

.desktop-audio-card__subtitle::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -7px -16px -8px -14px;
  border-radius: 999px;
  opacity: var(--audio-glow-opacity);
  background:
    radial-gradient(circle at 24% 50%, rgba(255, 78, 203, 0.72), transparent 58%),
    linear-gradient(90deg, rgba(255, 42, 183, 0.34), rgba(255, 42, 183, 0.04));
  filter: blur(14px);
  transform: scale(var(--audio-glow-scale));
  transform-origin: left center;
  will-change: opacity, transform;
}

.mobile-story-card .desktop-audio-card__subtitle::before {
  transform-origin: center;
}

.desktop-audio-card--scenario .desktop-audio-card__subtitle::before {
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 78, 203, 0.72), transparent 54%),
    radial-gradient(circle at 80% 50%, rgba(168, 83, 255, 0.56), transparent 60%),
    linear-gradient(90deg, rgba(255, 42, 183, 0.32), rgba(154, 77, 255, 0.2), rgba(154, 77, 255, 0.02));
}

.screen:not(.is-audio-reactive) .desktop-audio-card__subtitle::before {
  animation: nameGlowPulse 2.6s ease-in-out infinite;
}

.desktop-audio-card__duration {
  flex: 0 0 auto;
  font-family: var(--font-ui);
  font-size: clamp(18px, 4.8vw, 24px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.mobile-story-card .desktop-audio-card__duration {
  flex: none;
}

.mobile-story-card .desktop-audio-card__bottom {
  right: clamp(18px, 4.8vw, 24px);
  bottom: clamp(16px, 4.4vw, 22px);
  left: clamp(18px, 4.8vw, 24px);
  justify-content: center;
}

.mobile-story-card .desktop-audio-card__mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
}

.mobile-story-card .desktop-audio-card__utility {
  justify-content: center;
  width: auto;
  min-width: 0;
}

.mobile-story-card .desktop-audio-card__utility-button,
.mobile-story-card .desktop-audio-card__like {
  width: clamp(44px, 11vw, 52px);
  height: clamp(44px, 11vw, 52px);
}

.mobile-story-card .desktop-audio-card__utility-icon,
.mobile-story-card .desktop-audio-card__like-icon {
  width: 20px;
  height: 20px;
}

.mobile-story-card .desktop-audio-card__utility-button--label {
  width: clamp(184px, 54vw, 214px);
  max-width: 100%;
  min-width: 0;
  height: clamp(40px, 10.2vw, 48px);
  gap: clamp(7px, 1.8vw, 10px);
  padding: 0 clamp(14px, 4vw, 20px);
  border-radius: 999px;
}

.mobile-story-card .desktop-audio-card__utility-button--label .desktop-audio-card__utility-icon {
  flex: 0 0 auto;
  width: clamp(19px, 5vw, 22px);
  height: clamp(19px, 5vw, 22px);
}

.mobile-story-card .desktop-audio-card__utility-label {
  overflow: hidden;
  font-size: clamp(15px, 4.2vw, 18px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-story-card .desktop-audio-card__mobile-duration {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(48px, 12vw, 56px);
  padding: 0 clamp(12px, 3.4vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 0, 10, 0.34);
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-ui);
  font-size: clamp(16px, 4.4vw, 20px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

.mobile-story-card:not(.is-active) .desktop-audio-card__headline--mobile {
  bottom: 78px;
}

.mobile-story-card:not(.is-active) .desktop-audio-card__headline strong {
  font-size: clamp(28px, 4.8vw, 42px);
}

.mobile-story-card:not(.is-active) .desktop-audio-card__headline strong.title-size-sm {
  font-size: clamp(25px, 4.3vw, 38px);
}

.mobile-story-card:not(.is-active) .desktop-audio-card__headline strong.title-size-xs {
  font-size: clamp(22px, 3.9vw, 34px);
}

.mobile-story-card:not(.is-active) .desktop-audio-card__subtitle,
.mobile-story-card:not(.is-active) .desktop-audio-card__duration {
  font-size: 15px;
  opacity: 0.76;
}

.mobile-ribbon__nav {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.mobile-ribbon__nav-button {
  position: absolute;
  top: 48%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(42px, 10vw, 58px);
  height: clamp(42px, 10vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(248, 250, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 32px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
}

.mobile-ribbon__nav-button--prev {
  left: clamp(8px, 2.4vw, 22px);
}

.mobile-ribbon__nav-button--next {
  right: clamp(8px, 2.4vw, 22px);
}

.mobile-ribbon__nav-icon {
  width: clamp(18px, 4.8vw, 24px);
  height: clamp(18px, 4.8vw, 24px);
  stroke-width: 2.4;
}

.mobile-quick-nav {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 clamp(14px, 4vw, 28px);
  scroll-padding-inline: clamp(14px, 4vw, 28px);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.mobile-quick-nav::-webkit-scrollbar {
  display: none;
}

.mobile-quick-nav__track {
  display: flex;
  align-items: stretch;
  gap: clamp(7px, 2vw, 10px);
  width: max-content;
  min-width: 100%;
}

.mobile-quick-nav .desktop-quick-nav__item {
  flex: 0 0 clamp(48px, 12.5vw, 58px);
  width: clamp(48px, 12.5vw, 58px);
  height: clamp(48px, 12.5vw, 58px);
  border-radius: 14px;
  scroll-snap-align: center;
  opacity: 0.58;
}

.mobile-quick-nav .desktop-quick-nav__item.is-active {
  flex: 0 0 clamp(128px, 36vw, 176px);
  width: clamp(128px, 36vw, 176px);
  opacity: 1;
}

.mobile-quick-nav .desktop-quick-nav__item-label {
  right: 5px;
  bottom: 8px;
  left: 5px;
  font-size: 8px;
}

.mobile-quick-nav .desktop-quick-nav__item.is-active .desktop-quick-nav__item-label {
  right: 14px;
  bottom: 13px;
  left: 14px;
  font-size: clamp(11px, 3.2vw, 14px);
}

.mobile-player-shell {
  display: flex;
  justify-content: center;
  padding: 0 clamp(18px, 5vw, 42px) calc(4px + env(safe-area-inset-bottom));
  pointer-events: auto;
}

.mobile-player-shell .desktop-player {
  width: min(100%, 760px);
  padding: 0;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-player-shell .desktop-player:not(.is-open) {
  display: block;
}

.mobile-player-shell .desktop-player__dock {
  padding: 0;
}

.mobile-player-shell .desktop-player__copy {
  display: none;
}

.mobile-player-shell .desktop-player__copy strong {
  font-size: clamp(28px, 8.6vw, 42px);
}

.mobile-player-shell .desktop-player__copy span {
  font-size: clamp(18px, 5.2vw, 26px);
}

.mobile-player-shell .desktop-player__rail-shell {
  gap: clamp(10px, 3vw, 16px);
}

.mobile-player-shell .desktop-player__time {
  font-size: clamp(15px, 4.6vw, 22px);
  font-weight: 600;
}

.mobile-player-shell .desktop-player__rail {
  height: 14px;
}

.mobile-player-shell .desktop-player__controls {
  gap: clamp(32px, 11vw, 66px);
  margin-top: 14px;
}

.mobile-player-shell .desktop-player__control {
  width: clamp(38px, 10vw, 48px);
  height: clamp(38px, 10vw, 48px);
}

.mobile-player-shell .desktop-player__control-icon {
  width: clamp(27px, 7.2vw, 34px);
  height: clamp(27px, 7.2vw, 34px);
}

.mobile-player-shell .desktop-player__play-button {
  width: clamp(66px, 18vw, 86px);
  height: clamp(66px, 18vw, 86px);
  border-radius: 24px;
}

.mobile-player-shell .desktop-player__play-icon {
  width: clamp(30px, 8vw, 38px);
  height: clamp(30px, 8vw, 38px);
}

.mobile-player-shell .desktop-player__ticker {
  display: block;
  height: clamp(32px, 8.8vw, 38px);
  margin-top: 12px;
}

.mobile-player-shell .desktop-player__ticker-copy {
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: clamp(14px, 3.8vw, 18px);
}

.insight-panel--mobile {
  display: grid;
  gap: clamp(14px, 3svh, 22px);
  align-self: center;
  padding: clamp(14px, 4vw, 22px) 0 calc(16px + env(safe-area-inset-bottom));
}

.insight-panel--mobile .insight-panel__hero {
  grid-template-columns: minmax(92px, 28vw) minmax(0, 1fr);
  gap: clamp(14px, 4vw, 20px);
}

.insight-panel--mobile .insight-panel__poster {
  border-radius: clamp(22px, 6vw, 30px);
}

.insight-panel--mobile .insight-panel__copy h2 {
  font-size: clamp(32px, 10vw, 52px);
}

.insight-panel--mobile .insight-panel__copy p {
  font-size: clamp(15px, 4.3vw, 20px);
}

.insight-panel--mobile .insight-panel__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-panel--mobile .insight-metric {
  min-height: 108px;
  padding: 13px;
}

.insight-panel--mobile .insight-metric strong {
  margin: 13px 0 8px;
  font-size: clamp(23px, 7vw, 34px);
}

.insight-panel--mobile .insight-track {
  margin-top: 0;
}

.insight-panel--desktop,
.insight-panel--mobile {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.insight-feed {
  position: relative;
  overflow: hidden;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px);
  color: #f8f7f2;
  background: #030303;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.36);
}

.insight-feed::before {
  display: none;
}

.insight-feed-section,
.insight-feed-section__header,
.insight-feed__grid {
  position: relative;
  z-index: 1;
}

.insight-feed-section {
  display: grid;
  gap: clamp(56px, 10svh, 118px);
}

.insight-feed-section + .insight-feed-section {
  margin-top: clamp(110px, 20svh, 230px);
}

.insight-feed-section__header {
  display: grid;
  align-content: center;
  justify-items: center;
  min-width: 0;
  min-height: clamp(300px, 46svh, 520px);
  padding: clamp(62px, 10svh, 104px) clamp(8px, 3vw, 40px) clamp(42px, 7svh, 76px);
  text-align: center;
}

.insight-feed-section__header h2 {
  max-width: 11ch;
  margin: 0 auto;
  color: #f8f7f2;
  font-family: var(--font-editorial);
  font-size: clamp(58px, 9vw, 126px);
  font-style: normal;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: none;
  text-wrap: balance;
}

.insight-feed-section__header p {
  width: min(100%, 580px);
  margin: 18px auto 0;
  color: rgba(248, 247, 242, 0.62);
  font-family: var(--font-ui);
  font-size: clamp(17px, 1.8vw, 23px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}

.insight-feed__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(42px, 8svh, 92px);
  padding: 0 0 clamp(62px, 10svh, 120px);
}

.insight-feed-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  width: min(80%, 840px);
  min-height: clamp(360px, 58svh, 620px);
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #f8f7f2;
  background: transparent;
  box-shadow: none;
  animation: none;
}

.insight-feed-card::after {
  content: none;
}

.insight-feed-card:nth-child(odd) {
  margin-right: auto;
  text-align: left;
}

.insight-feed-card:nth-child(even) {
  margin-left: auto;
  text-align: right;
}

.insight-feed-card__text {
  position: relative;
  z-index: 5;
  display: grid;
  gap: clamp(24px, 3.2vw, 44px);
}

.insight-feed-card:nth-child(odd) .insight-feed-card__text {
  justify-items: start;
}

.insight-feed-card:nth-child(even) .insight-feed-card__text {
  justify-items: end;
}

.insight-feed-card__text strong {
  color: #f8f7f2;
  font-family: var(--font-editorial);
  font-size: clamp(86px, 15vw, 218px);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-shadow: none;
  text-wrap: balance;
}

.insight-feed-card__text span {
  max-width: min(100%, 640px);
  color: rgba(248, 247, 242, 0.62);
  font-family: var(--font-ui);
  font-size: clamp(19px, 2.8vw, 36px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-shadow: none;
  text-wrap: balance;
}

.insight-panel--mobile {
  align-self: start;
  padding: clamp(8px, 2svh, 16px) 0 calc(16px + env(safe-area-inset-bottom));
}

.insight-panel--mobile .insight-feed {
  padding: 14px;
}

.insight-panel--mobile .insight-feed-section {
  gap: clamp(46px, 10svh, 82px);
}

.insight-panel--mobile .insight-feed-section + .insight-feed-section {
  margin-top: clamp(96px, 18svh, 150px);
}

.insight-panel--mobile .insight-feed-section__header {
  min-height: clamp(280px, 44svh, 410px);
  padding: clamp(54px, 9svh, 82px) 4px clamp(34px, 6svh, 58px);
}

.insight-panel--mobile .insight-feed-section__header h2 {
  max-width: 10ch;
  font-size: clamp(48px, 14.5vw, 78px);
}

.insight-panel--mobile .insight-feed-section__header p {
  width: min(100%, 300px);
  font-size: clamp(17px, 5.2vw, 22px);
}

.insight-panel--mobile .insight-feed__grid {
  gap: clamp(36px, 8svh, 68px);
  padding: 0 0 clamp(50px, 10svh, 82px);
}

.insight-panel--mobile .insight-feed-card {
  width: 100%;
  min-height: clamp(330px, 56svh, 520px);
}

.insight-panel--mobile .insight-feed-card__text strong {
  font-size: clamp(76px, 25vw, 118px);
}

.insight-panel--mobile .insight-feed-card__text span {
  max-width: min(100%, 310px);
  font-size: clamp(20px, 6.5vw, 29px);
}

.desktop-page__line {
  position: absolute;
  top: 12px;
  left: 20px;
  right: 20px;
  height: 16px;
  border: 2px solid var(--pink);
  box-shadow:
    2px 0 0 rgba(255, 87, 87, 0.72),
    -2px 0 0 rgba(73, 110, 255, 0.72);
  pointer-events: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 24px 0;
}

.desktop-brand,
.desktop-nav__link,
.desktop-platforms__item,
.desktop-chip,
.desktop-filter,
.desktop-controls__button,
.likes-panel__collapsed-title,
.likes-panel__drawer-banner,
.likes-panel__collapsed-copy {
  font-family: var(--font-ui);
  font-weight: 500;
  text-transform: uppercase;
  text-shadow:
    1px 0 0 rgba(255, 87, 87, 0.72),
    -1px 0 0 rgba(73, 110, 255, 0.72);
}

.desktop-brand {
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.desktop-nav__link {
  border: 0;
  padding: 0;
  color: var(--pink);
  font-size: 16px;
  letter-spacing: 0.08em;
  background: transparent;
  cursor: pointer;
}

.desktop-copy {
  width: min(100%, 560px);
  margin: 0 auto;
  padding-top: 32px;
  text-align: center;
}

.desktop-copy__tagline {
  margin: 0 0 16px;
  color: rgba(255, 248, 255, 0.86);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-shadow:
    1px 0 0 rgba(255, 87, 87, 0.52),
    -1px 0 0 rgba(73, 110, 255, 0.52);
}

.desktop-copy__title,
.desktop-copy__artist {
  margin: 0;
  color: var(--pink);
  text-shadow:
    1px 0 0 rgba(255, 87, 87, 0.72),
    -1px 0 0 rgba(73, 110, 255, 0.72);
}

.desktop-copy__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 400;
  line-height: 0.96;
}

.desktop-copy__artist {
  font-family: var(--font-ui);
  margin-top: 12px;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-platforms {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.desktop-platforms__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
}

.desktop-platforms__icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
}

.desktop-stage {
  position: relative;
  height: min(46vw, 680px);
  margin-top: 0;
}

.desktop-stage__glow {
  position: absolute;
  inset: 4% 14% 10%;
  opacity: var(--audio-stage-opacity);
  background:
    radial-gradient(circle at 50% 38%, var(--screen-glow-primary), transparent 24%),
    radial-gradient(circle at 58% 52%, var(--screen-glow-secondary), transparent 30%),
    radial-gradient(circle at 50% 68%, var(--screen-glow-low), transparent 18%);
  filter: blur(68px);
  transform: scale(var(--audio-stage-scale));
  transform-origin: center;
  pointer-events: none;
  will-change: opacity, transform;
}

.desktop-ribbon {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.desktop-ribbon::before,
.desktop-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  z-index: 4;
  pointer-events: none;
}

.desktop-ribbon::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 0, 10, 0.28), transparent);
}

.desktop-ribbon::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 0, 10, 0.28), transparent);
}

.desktop-ribbon__nav {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: block;
  pointer-events: none;
}

.desktop-ribbon__nav-button {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.16), rgba(248, 250, 255, 0.08));
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(219, 31, 243, 0.18);
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.desktop-ribbon__nav-button--prev {
  left: calc(50% - min(16vw, 245px));
}

.desktop-ribbon__nav-button--next {
  left: calc(50% + min(16vw, 245px));
}

.desktop-ribbon__nav-button:hover {
  transform: translate(-50%, calc(-50% - 2px)) scale(1.03);
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.2), rgba(248, 250, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.24);
}

.desktop-ribbon__nav-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.desktop-ribbon-card {
  position: absolute;
  top: 48%;
  left: var(--card-left);
  width: min(18.5vw, 330px);
  aspect-ratio: 0.66;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: var(--card-opacity);
  z-index: var(--card-depth);
  transform: translate(-50%, -50%) rotate(var(--card-rotation)) scale(var(--card-scale));
  transition:
    transform 380ms cubic-bezier(0.18, 0.88, 0.24, 1),
    opacity 240ms ease,
    filter 240ms ease,
    box-shadow 320ms cubic-bezier(0.18, 0.88, 0.24, 1);
  will-change: transform, opacity, filter;
}

.desktop-ribbon-card:hover {
  transform: translate(-50%, -50%) rotate(var(--card-rotation)) scale(calc(var(--card-scale) + 0.02));
}

.desktop-audio-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(160deg, var(--card-surface) 0%, var(--card-surface-two) 62%, var(--card-bg) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 30px 88px var(--card-shadow),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    box-shadow 300ms cubic-bezier(0.18, 0.88, 0.24, 1),
    border-color 220ms ease,
    transform 300ms cubic-bezier(0.18, 0.88, 0.24, 1);
}

.desktop-audio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%);
  pointer-events: none;
}

.desktop-audio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.desktop-ribbon-card:not(.is-active) .desktop-audio-card {
  filter: saturate(var(--card-saturation)) brightness(var(--card-brightness)) blur(var(--card-blur));
}

.desktop-ribbon-card.is-active .desktop-audio-card {
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 82px var(--card-glow);
}

.desktop-ribbon-card.is-playing .desktop-audio-card {
  border-color: rgba(255, 255, 255, 0.32);
}

.desktop-ribbon-card.is-playing .desktop-audio-card,
.mobile-story-card.is-playing .desktop-audio-card {
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 96px var(--card-glow-strong);
}

.desktop-audio-card__media,
.desktop-audio-card__veil {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.desktop-audio-card__media {
  background-color: var(--card-surface-two);
  background-image:
    linear-gradient(180deg, rgba(3, 2, 10, 0.02) 0%, rgba(3, 2, 10, 0.24) 100%),
    var(--card-cover-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.desktop-audio-card__veil {
  background:
    linear-gradient(180deg, rgba(3, 2, 10, 0.06) 0%, rgba(3, 2, 10, 0.4) 64%, rgba(3, 2, 10, 0.62) 100%),
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.1), transparent 26%),
    radial-gradient(circle at 50% 50%, var(--card-type-glow), transparent 56%);
}

.desktop-audio-card__edge {
  display: none;
}

.desktop-audio-card__top,
.desktop-audio-card__headline,
.desktop-audio-card__bottom {
  position: relative;
  z-index: 1;
}

.desktop-audio-card__top {
  position: absolute;
  top: auto;
  right: 18px;
  bottom: 15px;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.desktop-audio-card__top.has-badge {
  left: 18px;
  justify-content: space-between;
  gap: 14px;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(248, 250, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.story-badge__icon {
  width: 13px;
  height: 13px;
  object-fit: contain;
  flex: 0 0 auto;
}

.story-badge span {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-badge--scenario .story-badge__icon {
  opacity: 0.92;
}

.story-badge--archetype .story-badge__icon {
  filter: saturate(1.1) brightness(1.05);
}

.desktop-audio-card__corner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(248, 250, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.desktop-audio-card__corner-icon {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.desktop-audio-card__headline {
  position: absolute;
  right: 18px;
  bottom: 84px;
  left: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.desktop-audio-card__headline strong {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(28px, 1.9vw, 36px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.desktop-audio-card__headline strong.title-size-sm {
  font-size: clamp(25px, 1.65vw, 32px);
}

.desktop-audio-card__headline strong.title-size-xs {
  font-size: clamp(22px, 1.42vw, 28px);
}

.desktop-audio-card__duration {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-audio-card__bottom {
  position: absolute;
  right: auto;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.desktop-audio-card__utility {
  display: inline-flex;
  gap: 10px;
}

.desktop-audio-card__utility-button,
.desktop-audio-card__like {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(248, 250, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.desktop-audio-card__utility-button {
  cursor: pointer;
}

.desktop-audio-card__utility-button--label {
  gap: clamp(10px, 2vw, 16px);
  width: auto;
  min-width: clamp(240px, 24vw, 360px);
  height: clamp(58px, 5.8vw, 76px);
  padding: 0 clamp(30px, 4.4vw, 52px);
  border-radius: 999px;
}

.desktop-audio-card__utility-label {
  color: currentColor;
  font-family: var(--font-ui);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.desktop-audio-card__utility-button.is-disabled {
  opacity: 0.48;
  pointer-events: none;
}

.desktop-audio-card__utility-icon,
.desktop-audio-card__like-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.desktop-audio-card__utility-button--label .desktop-audio-card__utility-icon {
  width: clamp(24px, 2.3vw, 32px);
  height: clamp(24px, 2.3vw, 32px);
}

.desktop-audio-card:focus-visible,
.gateway-apply:focus-visible,
.cards-topbar__back:focus-visible,
.desktop-quick-nav__item:focus-visible,
.desktop-audio-card__corner:focus-visible,
.desktop-audio-card__like:focus-visible,
.desktop-ribbon__nav-button:focus-visible,
.desktop-player__control:focus-visible,
.desktop-player__play-button:focus-visible,
.desktop-player__seek:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

.gateway-choice:focus-visible {
  outline: none;
  filter: drop-shadow(0 24px 54px rgba(219, 31, 243, 0.28));
}

.desktop-player-shell {
  position: absolute;
  right: 0;
  bottom: 92px;
  left: 0;
  display: flex;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
}

.desktop-player {
  --player-progress: 0%;
  position: relative;
  width: min(100%, 500px);
  padding: 0 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.18, 0.88, 0.24, 1);
}

.desktop-player.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.desktop-player__dock {
  position: relative;
  padding: 8px 12px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.desktop-player__copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 2px;
  margin-bottom: 10px;
  text-align: center;
}

.desktop-player__copy strong {
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.05;
}

.desktop-player__copy span {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-meta);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
}

.desktop-page--cards .desktop-player__copy {
  display: none;
}

.desktop-player__rail-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.desktop-player__time {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.desktop-player__rail {
  position: relative;
  height: 10px;
}

.desktop-player__line,
.desktop-player__progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.desktop-player__line {
  right: 0;
  background: rgba(255, 255, 255, 0.22);
}

.desktop-player__progress {
  width: var(--player-progress);
  background: rgba(255, 255, 255, 0.9);
}

.desktop-player__cursor {
  position: absolute;
  top: 50%;
  left: var(--player-progress);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
}

.desktop-player__seek {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.desktop-player__seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
}

.desktop-player__seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  background: transparent;
}

.desktop-player__seek::-moz-range-track {
  background: transparent;
}

.desktop-player__controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.desktop-player__ticker {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  height: 30px;
  margin: 12px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(5, 0, 10, 0.54), rgba(255, 255, 255, 0.06), rgba(5, 0, 10, 0.54)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.2);
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

.desktop-player__ticker-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: playerTicker 18s linear infinite;
  will-change: transform;
}

.desktop-player__ticker-copy {
  flex: 0 0 auto;
  min-width: 50%;
  padding: 6px 34px 5px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-meta);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.desktop-player__control,
.desktop-player__play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.desktop-player__control {
  width: 34px;
  height: 34px;
}

.desktop-player__control.is-active {
  color: var(--pink);
}

.desktop-player__control-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}

.desktop-player__play-button {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.14), rgba(248, 250, 255, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 22px rgba(0, 0, 0, 0.22);
}

.desktop-player__play-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.now-playing-badge {
  --now-playing-progress: 0%;
  position: fixed;
  top: 50%;
  right: max(18px, env(safe-area-inset-right));
  z-index: 4;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 9px;
  width: min(300px, calc(100vw - 36px));
  min-height: 72px;
  padding: 8px 10px 8px 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px 8px 8px 999px;
  color: #ffffff;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(6, 2, 12, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 70px rgba(0, 0, 0, 0.46),
    0 0 42px rgba(219, 31, 243, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 220ms cubic-bezier(0.18, 0.88, 0.24, 1);
}

.now-playing-badge:hover,
.now-playing-badge:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 78px rgba(0, 0, 0, 0.5),
    0 0 54px rgba(219, 31, 243, 0.24);
  outline: none;
  transform: translateY(-50%) translateX(-4px);
}

.now-playing-badge__art {
  position: relative;
  display: block;
  width: 70px;
  aspect-ratio: 1;
  margin-left: -18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28)),
    var(--now-playing-image);
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 16px 42px rgba(0, 0, 0, 0.42),
    0 0 28px color-mix(in srgb, var(--now-playing-accent), transparent 52%);
}

.now-playing-badge__art::after {
  content: "";
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: rgba(3, 1, 8, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.now-playing-badge__body {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.now-playing-badge__status,
.now-playing-badge__time {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-meta);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.now-playing-badge strong {
  overflow: hidden;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-playing-badge__artist {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-meta);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-playing-badge__rail {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.now-playing-badge__progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--now-playing-progress);
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), color-mix(in srgb, var(--now-playing-accent), #ffffff 22%));
}

.now-playing-badge__time {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.now-playing-badge__return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.now-playing-badge__return-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.now-playing-badge.is-playing .now-playing-badge__art {
  animation: playerPulse 1.18s ease-in-out infinite;
}

.desktop-page--insights {
  height: 100vh;
  height: 100svh;
  overflow-y: auto;
  min-height: 100vh;
  scrollbar-width: none;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

.desktop-page--insights::-webkit-scrollbar {
  display: none;
}

.desktop-page--insights .desktop-quick-nav {
  margin-bottom: clamp(24px, 3vw, 44px);
}

.insight-panel {
  position: relative;
  z-index: 3;
  width: min(100%, 1140px);
  margin: 0 auto;
}

.insight-panel--desktop {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 18% 20%, rgba(219, 31, 243, 0.12), transparent 30%),
    rgba(4, 0, 8, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 92px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.insight-panel__hero {
  display: grid;
  grid-template-columns: minmax(88px, 150px) minmax(0, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
  align-items: center;
  min-width: 0;
}

.insight-panel__poster {
  display: block;
  aspect-ratio: 0.66;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background-image:
    linear-gradient(180deg, rgba(3, 2, 10, 0.08), rgba(3, 2, 10, 0.44)),
    var(--insight-image);
  background-position: center;
  background-size: cover;
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.38),
    0 0 56px rgba(219, 31, 243, 0.16);
}

.insight-panel__copy {
  min-width: 0;
}

.insight-panel__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #ff84df;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    1px 0 0 rgba(255, 87, 87, 0.5),
    -1px 0 0 rgba(73, 110, 255, 0.5);
}

.insight-panel__copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.insight-panel__copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-meta);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.15;
}

.insight-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.insight-metric {
  display: grid;
  align-content: space-between;
  min-height: 126px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.insight-metric span,
.insight-metric small,
.insight-track__labels span {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-metric span {
  color: rgba(255, 255, 255, 0.56);
}

.insight-metric strong {
  display: block;
  min-width: 0;
  margin: 16px 0 10px;
  overflow: hidden;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 0.96;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.insight-metric small {
  overflow: hidden;
  color: rgba(255, 132, 223, 0.72);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.insight-track {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  margin-top: clamp(8px, 1.5vw, 18px);
}

.insight-track__line {
  position: relative;
  height: 42px;
}

.insight-track__line::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(219, 31, 243, 0.62)),
    rgba(255, 255, 255, 0.16);
  transform: translateY(-50%);
}

.insight-track__line span {
  position: absolute;
  top: 50%;
  left: calc(var(--point) * 33.333%);
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: #05000a;
  box-shadow:
    0 0 0 7px rgba(219, 31, 243, 0.08),
    0 0 28px rgba(219, 31, 243, 0.22);
  transform: translate(-50%, -50%);
}

.insight-track__line span:first-child {
  left: 0;
  transform: translate(0, -50%);
}

.insight-track__line span:last-child {
  right: 0;
  left: auto;
  transform: translate(0, -50%);
}

.insight-track__labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.insight-track__labels span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.66);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.insight-panel--desktop,
.insight-panel--mobile {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@keyframes playerTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes ambientGlowPulse {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 0.92;
  }
}

@keyframes nameGlowPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}

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

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.desktop-ribbon-card.is-playing .desktop-audio-card__corner,
.desktop-player.is-playing .desktop-player__play-button {
  animation: playerPulse 1.18s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .intro-loader__preload {
    display: none;
  }

  .intro-loader__reveal,
  .intro-loader__cta {
    visibility: visible;
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .desktop-player__ticker-track {
    animation: none;
    transform: none;
  }

  .desktop-player__ticker-copy[aria-hidden="true"] {
    display: none;
  }

}

@media (max-width: 1099px) {
  .now-playing-badge {
    top: calc(max(74px, env(safe-area-inset-top) + 58px));
    right: max(12px, env(safe-area-inset-right));
    bottom: auto;
    grid-template-columns: 50px minmax(0, 1fr) 30px;
    gap: 8px;
    width: min(282px, calc(100vw - 24px));
    min-height: 62px;
    padding: 7px 9px 7px 0;
    border-radius: 999px 8px 8px 999px;
    transform: none;
  }

  .now-playing-badge:hover,
  .now-playing-badge:focus-visible {
    transform: translateX(-2px);
  }

  .now-playing-badge__art {
    width: 60px;
    margin-left: -15px;
  }

  .now-playing-badge__status,
  .now-playing-badge__time {
    font-size: 8px;
  }

  .now-playing-badge strong {
    font-size: 16px;
  }

  .now-playing-badge__artist {
    font-size: 11px;
  }

  .now-playing-badge__return {
    width: 30px;
    height: 30px;
  }

  .now-playing-badge__return-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 520px) {
  .now-playing-badge {
    top: calc(max(68px, env(safe-area-inset-top) + 52px));
    right: max(12px, env(safe-area-inset-right));
    bottom: auto;
    grid-template-columns: 50px minmax(0, 1fr) 30px;
    gap: 8px;
    width: min(282px, calc(100vw - 24px));
    min-height: 62px;
    padding: 7px 9px 7px 0;
    border-radius: 999px 8px 8px 999px;
    transform: none;
  }

  .now-playing-badge:hover,
  .now-playing-badge:focus-visible {
    transform: translateX(-2px);
  }

  .now-playing-badge__art {
    width: 60px;
    margin-left: -15px;
  }

  .now-playing-badge__status,
  .now-playing-badge__time {
    font-size: 8px;
  }

  .now-playing-badge strong {
    font-size: 16px;
  }

  .now-playing-badge__artist {
    font-size: 11px;
  }

  .now-playing-badge__return {
    width: 30px;
    height: 30px;
  }

  .now-playing-badge__return-icon {
    width: 16px;
    height: 16px;
  }

  .gateway-page__footer {
    flex-direction: column;
    gap: 8px;
    width: min(100%, 420px);
    padding: 14px 16px;
    border-radius: 26px;
    font-size: clamp(20px, 6vw, 26px);
  }

  .gateway-page__footer-copy {
    row-gap: 0.08em;
    line-height: 0.96;
  }

  .gateway-apply {
    width: min(100%, 210px);
    min-height: 50px;
  }

  .intro-loader__preload-core {
    grid-template-columns: auto auto auto auto auto;
    gap: 7px;
  }

  .intro-loader__asterisk {
    font-size: clamp(42px, 13vw, 56px);
  }

  .intro-loader__paren {
    font-size: clamp(68px, 22vw, 96px);
  }

  .intro-loader__image-window {
    width: clamp(54px, 18vw, 72px);
  }

  .intro-loader__percent {
    min-width: 38px;
    font-size: 12px;
  }

  .intro-loader__ruler {
    display: none;
  }

  .intro-loader__core {
    gap: 18px;
  }

  .intro-loader__title {
    font-size: clamp(46px, 14vw, 64px);
  }
}

.desktop-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.desktop-controls__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  padding: 18px 18px 16px;
  color: var(--pink);
  border: 1px solid var(--pink-soft);
  background: rgba(1, 0, 1, 0.52);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 10px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.desktop-controls__button:hover,
.desktop-controls__button.is-active {
  background: rgba(255, 132, 223, 0.12);
  border-color: var(--pink);
  transform: translateY(-2px);
}

.desktop-controls__icon {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.desktop-footer {
  position: absolute;
  right: 320px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.desktop-chip,
.desktop-filter {
  border: 1px solid var(--pink-soft);
  background: rgba(10, 8, 10, 0.62);
  color: var(--pink);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 16px 34px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.desktop-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.desktop-filter {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.desktop-chip__icon,
.desktop-filter__icon {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.likes-panel {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 276px;
  height: 420px;
  z-index: 5;
  pointer-events: none;
}

.likes-panel__collapsed,
.likes-panel__drawer {
  pointer-events: auto;
}

.likes-panel__collapsed {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 214px;
  height: 116px;
  border: 1px solid rgba(219, 31, 243, 0.54);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(7, 1, 12, 0.92) 0 42%, rgba(219, 31, 243, 0.92) 42% 100%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(219, 31, 243, 0.18);
  transform: rotate(-3deg);
  cursor: pointer;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.likes-panel__collapsed::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.likes-panel__collapsed-title {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
}

.likes-panel__collapsed-copy {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #271622;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-shadow: none;
}

.likes-panel__drawer {
  position: absolute;
  right: 8px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 292px;
  height: 410px;
  overflow: hidden;
  border: 1px solid rgba(219, 31, 243, 0.64);
  background: linear-gradient(180deg, rgba(219, 31, 243, 0.96) 0%, #f8faff 100%);
  box-shadow:
    0 32px 82px rgba(0, 0, 0, 0.46),
    0 0 26px rgba(219, 31, 243, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-18px, 88px) rotate(-3deg) scale(0.84);
  transform-origin: bottom right;
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.likes-panel__drawer-top,
.likes-panel__drawer-bottom {
  background: #010001;
}

.likes-panel__drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px;
}

.likes-panel__drawer-banner {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  text-shadow: none;
}

.likes-panel__close {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 132, 223, 0.54);
  color: var(--pink);
  background: transparent;
  cursor: pointer;
}

.likes-panel__close-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.likes-panel__drawer-body {
  flex: 1;
  padding: 28px 22px;
  color: #25131f;
}

.likes-panel__empty {
  display: grid;
  gap: 12px;
}

.likes-panel__empty p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.1;
}

.likes-panel__empty span {
  font-size: 18px;
  line-height: 1.5;
}

.likes-panel__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.likes-panel__story {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  width: 100%;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(37, 19, 31, 0.14);
  border-radius: 18px;
  color: #25131f;
  text-align: left;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.likes-panel__thumb {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background-image: var(--cover-image);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.likes-panel__story-copy {
  display: grid;
  gap: 4px;
}

.likes-panel__story-copy strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.05;
}

.likes-panel__story-copy span {
  color: rgba(37, 19, 31, 0.72);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.likes-panel__drawer-bottom {
  padding: 20px 18px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0;
  text-align: center;
  text-shadow:
    1px 0 0 rgba(255, 87, 87, 0.72),
    -1px 0 0 rgba(73, 110, 255, 0.72);
}

.likes-panel.is-open .likes-panel__collapsed {
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, 24px) rotate(-7deg) scale(0.86);
}

.likes-panel.is-open .likes-panel__drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-4px, -66px) rotate(-3deg) scale(1);
}

@media (orientation: landscape) and (max-height: 520px) and (max-width: 1099px) {
  .now-playing-badge {
    top: 50%;
    right: max(10px, env(safe-area-inset-right));
    bottom: auto;
    width: min(278px, calc(50vw - 20px));
    transform: translateY(-50%);
  }

  .now-playing-badge:hover,
  .now-playing-badge:focus-visible {
    transform: translateY(-50%) translateX(-3px);
  }

  .mobile-page {
    --mobile-side-width: clamp(244px, 34vw, 320px);
    grid-template-columns: minmax(0, 1fr) var(--mobile-side-width);
    grid-template-rows: minmax(0, 1fr) auto;
    column-gap: clamp(10px, 2vw, 18px);
    row-gap: 8px;
    padding: max(8px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right))
      max(8px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  }

  .mobile-stage {
    grid-row: 1 / 3;
    align-self: stretch;
    padding: 0;
  }

  .mobile-carousel__viewport {
    padding: 0;
  }

  .mobile-carousel__track {
    --mobile-card-width: min(42vw, calc((100svh - 52px) * 0.66), 300px);
    gap: clamp(10px, 2vw, 16px);
    padding-inline: max(12px, calc((100vw - var(--mobile-side-width) - var(--mobile-card-width)) / 2));
  }

  .mobile-story-card .desktop-audio-card {
    border-radius: clamp(20px, 5svh, 28px);
  }

  .mobile-story-card .desktop-audio-card__top {
    top: clamp(10px, 3svh, 14px);
    right: clamp(10px, 3svh, 14px);
    left: clamp(10px, 3svh, 14px);
  }

  .mobile-story-card .desktop-audio-card__corner {
    width: clamp(42px, 11svh, 50px);
    height: clamp(42px, 11svh, 50px);
  }

  .desktop-audio-card__headline--mobile {
    right: clamp(12px, 3svh, 18px);
    bottom: clamp(62px, 16svh, 74px);
    left: clamp(12px, 3svh, 18px);
    gap: 5px;
  }

  .mobile-story-card .desktop-audio-card__headline strong {
    font-size: clamp(25px, 7.4svh, 34px);
  }

  .mobile-story-card .desktop-audio-card__headline strong.title-size-sm {
    font-size: clamp(23px, 6.6svh, 31px);
  }

  .mobile-story-card .desktop-audio-card__headline strong.title-size-xs {
    font-size: clamp(20px, 5.8svh, 28px);
  }

  .desktop-audio-card__subtitle {
    font-size: clamp(13px, 3.8svh, 16px);
  }

  .mobile-story-card .desktop-audio-card__duration {
    font-size: clamp(15px, 4svh, 18px);
  }

  .mobile-story-card .desktop-audio-card__bottom {
    right: clamp(12px, 3svh, 18px);
    bottom: clamp(12px, 3.4svh, 16px);
    left: clamp(12px, 3svh, 18px);
  }

  .mobile-story-card .desktop-audio-card__mobile-cta {
    gap: 8px;
  }

  .mobile-story-card .desktop-audio-card__utility-button,
  .mobile-story-card .desktop-audio-card__like {
    width: 40px;
    height: 40px;
  }

  .mobile-story-card .desktop-audio-card__utility-button--label {
    width: clamp(172px, 32vw, 198px);
    min-width: 0;
    height: 42px;
    padding: 0 16px;
  }

  .mobile-story-card .desktop-audio-card__utility-label {
    font-size: 15px;
  }

  .mobile-ribbon__nav-button {
    top: 50%;
    width: clamp(38px, 10svh, 48px);
    height: clamp(38px, 10svh, 48px);
  }

  .mobile-ribbon__nav-button--prev {
    left: clamp(4px, 1.2vw, 10px);
  }

  .mobile-ribbon__nav-button--next {
    right: clamp(4px, 1.2vw, 10px);
  }

  .mobile-quick-nav {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    padding: 0;
  }

  .mobile-player-shell {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    padding: 0;
  }

  .mobile-player-shell .desktop-player {
    width: 100%;
  }

  .mobile-player-shell .desktop-player__rail-shell {
    gap: 8px;
  }

  .mobile-player-shell .desktop-player__time {
    font-size: clamp(14px, 3.8svh, 16px);
  }

  .mobile-player-shell .desktop-player__controls {
    gap: clamp(18px, 5vw, 34px);
    margin-top: 8px;
  }

  .mobile-player-shell .desktop-player__control {
    width: clamp(34px, 9svh, 42px);
    height: clamp(34px, 9svh, 42px);
  }

  .mobile-player-shell .desktop-player__control-icon {
    width: clamp(24px, 6.4svh, 30px);
    height: clamp(24px, 6.4svh, 30px);
  }

  .mobile-player-shell .desktop-player__play-button {
    width: clamp(54px, 14svh, 64px);
    height: clamp(54px, 14svh, 64px);
    border-radius: 20px;
  }

  .mobile-player-shell .desktop-player__play-icon {
    width: clamp(27px, 7svh, 34px);
    height: clamp(27px, 7svh, 34px);
  }

  .mobile-player-shell .desktop-player__ticker {
    display: none;
  }
}

@media (min-width: 720px) {
  .intro-loader__hero {
    padding-right: 28px;
    padding-left: 28px;
  }

  .intro-loader__hero {
    padding-top: 34px;
    padding-bottom: 48px;
  }

  .mobile-page {
    padding-right: 0;
    padding-left: 0;
  }

  .mobile-stage {
    width: 100%;
  }

  .mobile-carousel__track {
    --mobile-card-width: min(62vw, calc((100svh - 380px) * 0.66), 520px);
    gap: clamp(22px, 4vw, 36px);
  }

  .mobile-page--cards .mobile-carousel__track {
    --mobile-card-width: min(72vw, 330px);
  }

  .mobile-quick-nav .desktop-quick-nav__item {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }

  .mobile-quick-nav .desktop-quick-nav__item.is-active {
    flex-basis: 186px;
    width: 186px;
  }
}

@media (orientation: landscape) and (max-height: 520px) and (max-width: 1099px) {
  .mobile-page {
    padding: max(8px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right))
      max(8px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  }

  .mobile-carousel__track {
    --mobile-card-width: min(42vw, calc((100svh - 52px) * 0.66), 300px);
    gap: clamp(10px, 2vw, 16px);
    padding-inline: max(12px, calc((100vw - var(--mobile-side-width) - var(--mobile-card-width)) / 2));
  }

  .mobile-page--cards .mobile-carousel__track {
    --mobile-card-width: min(42vw, 300px);
  }
}

@media (min-width: 1100px) {
  .mobile-page,
  .gateway-page--mobile {
    display: none;
  }

  .desktop-page,
  .gateway-page--desktop {
    display: block;
    min-height: 100vh;
  }

  .gateway-page--desktop {
    display: grid;
  }

  .desktop-page--cards {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    padding-bottom: max(22px, env(safe-area-inset-bottom));
  }

  .desktop-page--cards .desktop-stage {
    min-height: 0;
    height: auto;
  }

  .desktop-page--cards .desktop-player-shell {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 8;
    padding-top: 6px;
  }
}

/* Final infographics story layout */
.insight-feed {
  padding: clamp(18px, 3vw, 34px);
}

.insight-feed-section {
  gap: clamp(80px, 16svh, 180px);
}

.insight-feed-section + .insight-feed-section {
  margin-top: clamp(150px, 28svh, 340px);
}

.insight-feed-section__header {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: calc(100svh - clamp(96px, 12vw, 150px));
  padding: clamp(86px, 14svh, 150px) clamp(8px, 3vw, 40px);
  text-align: center;
}

.insight-feed-section__header h2 {
  max-width: 11ch;
  margin: 0 auto;
  color: #f8f7f2;
  font-family: var(--font-editorial);
  font-size: clamp(58px, 9vw, 126px);
  font-style: normal;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: none;
  text-wrap: balance;
}

.insight-feed-card__text strong {
  text-shadow: none;
}

.insight-feed-section:first-child .insight-feed-section__header {
  min-height: calc(100svh - 72px);
  gap: clamp(18px, 3vw, 30px);
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
}

.insight-feed-section:first-child .insight-feed-section__header h2 {
  order: 1;
}

.insight-feed-section:first-child .insight-feed-section__header::before {
  content: "People spend nearly a month of their lives masturbating by 50.";
  order: 2;
  width: min(100%, 720px);
  color: rgba(248, 247, 242, 0.62);
  font-family: var(--font-meta);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.insight-feed-section:first-child .insight-feed-section__header::after {
  content: "↓";
  order: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(46px, 6vw, 62px);
  height: clamp(46px, 6vw, 62px);
  margin-top: clamp(10px, 2svh, 24px);
  border: 1px solid rgba(248, 247, 242, 0.24);
  border-radius: 999px;
  color: #f8f7f2;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-ui);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  animation: joiInsightCueBounce 1500ms cubic-bezier(0.2, 0.8, 0.22, 1) infinite;
}

.insight-feed__grid {
  gap: clamp(34px, 8svh, 82px);
  padding: 0 0 clamp(72px, 12svh, 150px);
}

.insight-feed-card {
  display: grid;
  align-items: center;
  width: min(80%, 840px);
  min-height: clamp(540px, 86svh, 820px);
  animation: none;
}

.insight-panel--desktop {
  width: min(100%, 1280px);
}

.insight-panel--desktop .insight-feed {
  width: min(100%, 1240px);
  padding: clamp(28px, 4vw, 54px);
}

.insight-panel--desktop .insight-feed-section {
  align-content: center;
  min-height: 0;
  gap: clamp(56px, 8svh, 104px);
}

.insight-panel--desktop .insight-feed-section + .insight-feed-section {
  margin-top: clamp(36px, 7svh, 82px);
}

.insight-panel--desktop .insight-feed-section__header,
.insight-panel--desktop .insight-feed-section:first-child .insight-feed-section__header {
  min-height: 0;
  padding: 0;
  justify-items: center;
  text-align: center;
}

.insight-panel--desktop .insight-feed-section__header h2 {
  max-width: min(100%, 820px);
  margin: 0 auto;
  color: #ffffff;
  font-family: var(--font-editorial);
  font-size: clamp(56px, 7vw, 104px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.94;
  text-shadow:
    2px 1px 0 rgba(255, 87, 87, 0.72),
    -2px 1px 0 rgba(73, 110, 255, 0.68),
    0 0 26px rgba(255, 122, 216, 0.14);
}

.insight-panel--desktop .insight-feed-section__header p {
  width: min(100%, 760px);
  margin: clamp(12px, 1.5vw, 18px) auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-meta);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.08;
}

.insight-panel--desktop .insight-feed-section:first-child .insight-feed-section__header::before {
  width: min(100%, 760px);
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-meta);
  font-size: clamp(18px, 1.65vw, 28px);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}

.insight-panel--desktop .insight-feed-section:first-child .insight-feed-section__header::after {
  content: none;
}

.insight-panel--desktop .insight-feed__grid {
  --insight-grid-column-gap: clamp(34px, 4vw, 64px);
  --insight-grid-row-gap: clamp(58px, 8svh, 104px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--insight-grid-column-gap);
  row-gap: var(--insight-grid-row-gap);
  padding: 0 0 clamp(24px, 4svh, 52px);
}

.insight-panel--desktop .insight-feed__grid--count-5 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.insight-panel--desktop .insight-feed__grid--count-5 .insight-feed-card {
  grid-column: span 2;
}

.insight-panel--desktop .insight-feed__grid--count-5 .insight-feed-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.insight-panel--desktop .insight-feed__grid--count-5 .insight-feed-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.insight-panel--desktop .insight-feed__grid--count-7 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.insight-panel--desktop .insight-feed__grid--count-7 .insight-feed-card {
  grid-column: span 2;
}

.insight-panel--desktop .insight-feed__grid--count-7 .insight-feed-card:nth-child(5) {
  grid-column: 2 / span 2;
}

.insight-panel--desktop .insight-feed__grid--count-7 .insight-feed-card:nth-child(6) {
  grid-column: 4 / span 2;
}

.insight-panel--desktop .insight-feed__grid--count-7 .insight-feed-card:nth-child(7) {
  grid-column: 6 / span 2;
}

.insight-panel--desktop .insight-feed__grid--count-2 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.insight-panel--desktop .insight-feed__grid--count-2 .insight-feed-card:first-child {
  grid-column: 2;
}

.insight-panel--desktop .insight-feed__grid--count-2 .insight-feed-card:nth-child(2) {
  grid-column: 3;
}

.insight-panel--desktop .insight-feed-card {
  align-content: stretch;
  align-items: stretch;
  width: auto;
  min-height: clamp(214px, 24svh, 292px);
  margin: 0;
  padding: clamp(18px, 2vw, 28px);
  border: 0;
  border-radius: 8px;
  text-align: center;
  background: transparent;
  box-shadow: none;
}

.insight-panel--desktop .insight-feed-card:nth-child(odd),
.insight-panel--desktop .insight-feed-card:nth-child(even) {
  margin: 0;
  text-align: center;
}

.insight-panel--desktop .insight-feed-card__text,
.insight-panel--desktop .insight-feed-card:nth-child(odd) .insight-feed-card__text,
.insight-panel--desktop .insight-feed-card:nth-child(even) .insight-feed-card__text {
  width: 100%;
  min-height: 100%;
  grid-template-rows: clamp(72px, 7.2vw, 112px) minmax(68px, auto);
  align-content: center;
  justify-items: center;
  gap: clamp(22px, 2.6vw, 40px);
  text-align: center;
}

.insight-panel--desktop .insight-feed-card__text strong {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 0;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: clamp(50px, 5.6vw, 86px);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(219, 31, 243, 0.18);
}

.insight-panel--desktop .insight-feed-card__text span {
  align-self: start;
  max-width: none;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-meta);
  font-size: clamp(17px, 1.55vw, 24px);
  font-weight: 400;
  line-height: 1.14;
}

.insight-panel--mobile .insight-feed {
  padding: 14px;
}

.insight-panel--mobile .insight-feed-section {
  gap: clamp(64px, 14svh, 112px);
}

.insight-panel--mobile .insight-feed-section + .insight-feed-section {
  margin-top: clamp(132px, 28svh, 220px);
}

.insight-panel--mobile .insight-feed-section__header {
  min-height: calc(100svh - 74px);
  padding: clamp(68px, 12svh, 112px) 4px;
}

.insight-panel--mobile .insight-feed-section__header h2 {
  max-width: 10ch;
  font-size: clamp(48px, 14.5vw, 78px);
}

.insight-panel--mobile .insight-feed-section:first-child .insight-feed-section__header {
  min-height: calc(100svh - 74px);
}

.insight-panel--mobile .insight-feed-section:first-child .insight-feed-section__header::before {
  width: min(100%, 330px);
  font-size: clamp(22px, 6vw, 29px);
}

.insight-panel--mobile .insight-feed-section:first-child .insight-feed-section__header::after {
  width: 54px;
  height: 54px;
}

.insight-panel--mobile .insight-feed__grid {
  gap: clamp(28px, 7svh, 62px);
  padding: 0 0 clamp(58px, 12svh, 92px);
}

.insight-panel--mobile .insight-feed-card {
  width: 100%;
  min-height: clamp(560px, 84svh, 760px);
}

.insight-scroll-cue {
  position: fixed;
  left: 50%;
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 18px));
  z-index: 8;
  display: none;
  grid-template-rows: auto auto;
  justify-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
  opacity: 1;
  transform: translateX(-50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.desktop-page--insights .insight-scroll-cue {
  display: grid;
}

.insight-scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
}

.insight-scroll-cue span {
  font-family: var(--font-meta);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.56);
}

.insight-scroll-cue__icon {
  width: clamp(24px, 2.4vw, 34px);
  height: clamp(24px, 2.4vw, 34px);
  stroke-width: 2;
  animation: joiInsightScrollCueBounce 1900ms ease-in-out infinite;
}

@keyframes joiInsightCueBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(12px);
  }

  68% {
    transform: translateY(4px);
  }
}

@keyframes joiInsightScrollCueBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(5px);
  }

  70% {
    transform: translateY(2px);
  }
}

@keyframes joiInsightViewFade {
  0% {
    opacity: 0.72;
    transform: translateY(22px) scale(0.995);
    filter: none;
  }

  10%,
  84% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
  }

  100% {
    opacity: 0.72;
    transform: translateY(-22px) scale(0.995);
    filter: none;
  }
}

@supports (animation-timeline: view()) {
  .insight-feed-section:not(:first-child) .insight-feed-section__header,
  .insight-feed-card {
    animation: joiInsightViewFade linear both;
    animation-timeline: view(block);
    animation-range: entry 0% exit 100%;
  }

  .insight-panel--desktop .insight-feed-section:not(:first-child) .insight-feed-section__header,
  .insight-panel--desktop .insight-feed-card {
    animation: none;
    animation-timeline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .insight-feed-section:first-child .insight-feed-section__header::after,
  .insight-feed-section:not(:first-child) .insight-feed-section__header,
  .insight-feed-card,
  .insight-scroll-cue__icon {
    animation: none;
  }
}
