*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; cursor: none !important; }
html, body {
  cursor: none !important;
  caret-color: transparent !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
a, button, input, textarea, select, [contenteditable] {
  cursor: none !important;
  caret-color: transparent !important;
}

/* splash screen */
.splash {
  position: fixed; inset: 0;
  z-index: 9999;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.splash.dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-logo {
  width: clamp(150px, 36vw, 340px);
  height: auto;
  opacity: 0;
  cursor: none !important;
  filter: brightness(0.961);
  animation: splashFadeIn 1.2s .2s ease forwards, splashPulse 2.5s 1.4s ease-in-out infinite;
  transition: filter .3s ease;
}
.splash-logo:hover {
  animation-play-state: running, paused;
  filter: brightness(0.961) drop-shadow(0 0 12px rgba(0,212,255,.25));
}
@keyframes splashFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes splashPulse {
  0%, 100% { filter: brightness(0.961) drop-shadow(0 0 0px transparent); }
  50%      { filter: brightness(0.961) drop-shadow(0 0 12px rgba(0,212,255,.25)); }
}
/* suppress all site animations while splash is visible */
.splash-active h1,
.splash-active .player,
.splash-active .topbar-flyer,
.splash-active .ticker {
  animation: none !important;
}
.splash-active h1,
.splash-active .topbar,
.splash-active .player,
.splash-active .scroll-arrow,
.splash-active .ticker {
  opacity: 0 !important;
  transition: none !important;
}
/* hide overflow while splash is up */
html.splash-active { overflow: hidden; }

/* page load fade-in — content starts hidden, bg/vignette/grain stay visible */
html.page-loading:not(.skip-page-intro) main {
  opacity: 0 !important;
  transition: none !important;
  animation-play-state: paused !important;
}
html.page-loading:not(.skip-page-intro) main * {
  animation-play-state: paused !important;
}
html.page-ready:not(.skip-page-intro) main {
  transition: opacity .8s ease !important;
}

:root {
  --text: #e0eaf8;
  --ice: #00d4ff;
  --ice-b: #a78bfa;
  --page-gutter: clamp(1rem, 4vw, 3rem);
  --content-max: min(1000px, 92vw);
}

html {
  width: 100%; min-height: 100%;
  background-color: #030a14;
  overflow-x: hidden;
  scroll-snap-type: y proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,212,255,.35) rgba(255,255,255,.08);
}
html.page-subpage {
  scroll-snap-type: none;
}
html.page-subpage main {
  padding-top: 80px;
}
/* music page: pull ticker flush against topbar bottom / player top */
html.page-music main {
  padding-top: 72px;
  padding-bottom: var(--player-h, 56px);
}
html.page-music .releases-section {
  min-height: calc(100vh - 72px - var(--player-h, 56px) - var(--ticker-h, 3.8rem));
}
html.page-music main::after {
  display: none;
}
.info-section[hidden] { display: none; }
html.page-subpage .featured-wrap,
html.page-subpage .releases-section,
html.page-subpage .info-wrap,
html.page-subpage .dates-wrap,
html.page-subpage .portfolio-section {
  min-height: calc(100vh - 80px - var(--player-h, 56px));
  scroll-snap-align: none;
}
html::-webkit-scrollbar { width: 7px; }
html::-webkit-scrollbar-track { background: rgba(255,255,255,.08); }
html::-webkit-scrollbar-thumb {
  background: rgba(0,212,255,.35);
  border-radius: 99px;
}
html::-webkit-scrollbar-thumb:hover {
  background: rgba(0,212,255,.6);
}
body {
  min-height: 100%;
  background-color: #030a14;
  color: var(--text);
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
}
img,
picture,
video {
  max-width: 100%;
  height: auto;
}
.bg-fixed {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
  height: 100vh;
  background:
    linear-gradient(to bottom, rgba(4,6,15,.65) 0%, rgba(20,10,40,.45) 50%, rgba(4,6,15,.8) 100%),
    url('IMAGES/PFP-1500.jpg') center/cover no-repeat;
  pointer-events: none;
}
@media (max-width: 768px) {
  .bg-fixed {
    background:
      linear-gradient(to bottom, rgba(4,6,15,.65) 0%, rgba(20,10,40,.45) 50%, rgba(4,6,15,.8) 100%),
      url('IMAGES/PFP-900.jpg') center/cover no-repeat;
  }
}
/* scan lines */
body::after {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,.12) 3px, rgba(0,0,0,.12) 4px
  );
  pointer-events: none;
  z-index: 10;
}

/* vignette */
.vignette {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.78) 100%);
  pointer-events: none;
  z-index: 8;
}

/* film grain */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9;
  opacity: .055;
  filter: url('#noise');
  background: white;
}

/* custom cursor */
#cur {
  position: fixed; width: 6px; height: 6px;
  background: var(--ice); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  left: 0; top: 0; margin: -3px 0 0 -3px;
  will-change: transform;
  box-shadow: 0 0 8px var(--ice);
  transition: width .15s, height .15s, margin .15s;
}
#cur-ring {
  position: fixed; width: 28px; height: 28px;
  border: 1px solid rgba(0,212,255,.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  left: 0; top: 0; margin: -14px 0 0 -14px;
  will-change: transform;
  transition: width .2s, height .2s, margin .2s, border-color .2s;
}
body.link-hover #cur { width: 12px; height: 12px; margin: -6px 0 0 -6px; }
body.link-hover #cur-ring { width: 42px; height: 42px; margin: -21px 0 0 -21px; border-color: rgba(0,212,255,.7); }

/* layout */
/* topbar */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 72px; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(4,6,15,.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.topbar-logo {
  width: auto;
  height: 36px;
  display: block;
  filter: brightness(0) invert(1) opacity(0.96) sepia(0.03);
}
/* expanded menu: topbar title (settled state, inside topbar stacking context) */
.topbar-title {
  position: absolute;
  top: 50%; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.55rem, 1.1vw, .75rem);
  letter-spacing: .14em;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 0 14px rgba(0,212,255,.3);
  transition: opacity .12s ease;
}
.topbar-nav {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-left: auto;
}
.topbar-nav-hidden { display: none !important; }
html:not(.page-subpage) .topbar-nav.hero-nav-unit {
  margin: clamp(1.2rem, 3.5vh, 2.4rem) auto 0;
  align-self: center;
  width: min(94vw, max-content);
  max-width: 94vw;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: .55rem;
  column-gap: .85rem;
  position: relative;
  z-index: 6;
  transform: scale(1.4);
  transform-origin: center top;
  opacity: 0;
  animation: fadeUpHeroNav .9s .2s ease forwards;
}
html.skip-nav-intro:not(.page-subpage) .topbar-nav.hero-nav-unit {
  opacity: 1;
  animation: none;
}
html:not(.page-subpage) .topbar-nav.hero-nav-unit .topbar-nav-link {
  white-space: normal;
  line-height: 1.2;
}
.topbar-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: .15rem 0;
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.52rem, .95vw, .64rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(222, 245, 255, .88);
  text-decoration: none;
  background: transparent;
  background-image: none;
  border: none;
  overflow: visible;
  position: relative;
  transition: color .2s ease, text-shadow .2s ease;
}
.topbar-nav-link::before { content: none; }
.topbar-nav-link:hover,
.topbar-nav-link:focus-visible {
  color: rgba(0, 212, 255, 0.55);
  text-shadow: 0 0 6px rgba(0,212,255,.1);
  background-image: none;
}
.topbar-nav-link.is-active,
.topbar-nav-link[aria-current='page'] {
  color: var(--ice);
  text-shadow: 0 0 10px rgba(0,212,255,.45);
}

/* uniform subtle hover glow for clickable elements */
.bio-close:hover,
.bio-press-links a:hover,
.info-block-header:hover .bio-panel-label,
.featured-link:hover,
.portfolio-link:hover,
.past-shows-year-btn:hover,
a.date-row:hover,
a.date-row:hover .date-date,
a.date-row:hover .date-venue {
  color: rgba(0, 212, 255, 0.55);
  text-shadow: 0 0 6px rgba(0,212,255,.1);
  background-image: none;
}
a.date-row {
  text-decoration: none;
  color: inherit;
  background-image: none;
  width: auto;
  padding: 0;
  padding-top: .6rem;
  padding-bottom: .6rem;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  overflow: visible;
}
a.date-row::before { display: none; }

/* flyer handles the motion — lives outside topbar so it stays behind
   vignette (8), grain (9), and scan lines (10), matching the h1 treatment */
.topbar-flyer {
  position: fixed;
  top: 36px; left: 50%; /* 36px = topbar vertical centre */
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
  font-family: 'Michroma', sans-serif;
  font-size: clamp(1rem, 5vw, 4rem); /* matches h1 exactly */
  letter-spacing: .04em;             /* matches h1 exactly */
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 0 12px rgba(0,212,255,.2), 0 0 30px rgba(0,212,255,.08);
  /* transition handled by JS */
}

/* expanded menu: corner close button */
main {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center;
  padding: 72px var(--page-gutter) clamp(3rem, 5vw, 6rem);
  text-align: center;
  overflow-x: hidden;
  overflow-x: clip;
}
main::after {
  content: '';
  display: block;
  width: 100%;
  height: var(--info-scroll-spacer, 0px);
  flex: 0 0 auto;
}
.hero {
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  scroll-snap-align: center;
  width: 100%; position: relative;
  padding-bottom: var(--player-h, 56px);
}
html:not(.page-subpage) main {
  padding-bottom: 0;
}
html:not(.page-subpage) .hero {
  min-height: calc(100vh - 72px - var(--player-h, 56px));
  min-height: calc(100dvh - 72px - var(--player-h, 56px));
  padding-bottom: 0;
}
.info-section {
  display: block;
  position: relative;
  margin: clamp(2rem, 4vw, 4rem) auto;
  max-width: min(90vw, 1400px);
  min-width: min(320px, 92vw);
  transition: width .4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(0,212,255,.14);
  border-top: 1px solid rgba(0,212,255,.35);
  border-radius: 10px;
  background: rgba(4,6,15,.40);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
  /* TODO: re-enable internal scrolling once info section has enough content to require it
  max-height: 70vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,212,255,.3) transparent;
  */
}
.releases-section,
.info-wrap,
.dates-wrap,
.portfolio-section {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}
/* TODO: re-enable with above
.info-section::-webkit-scrollbar { width: 4px; }
.info-section::-webkit-scrollbar-track { background: transparent; }
.info-section::-webkit-scrollbar-thumb {
  background: rgba(0,212,255,.3);
  border-radius: 99px;
}
.info-section::-webkit-scrollbar-thumb:hover { background: rgba(0,212,255,.55); }
*/
.info-section.visible {
  opacity: 1;
  transform: translateY(0);
  transition: width .4s cubic-bezier(0.4, 0, 0.2, 1), opacity .9s ease, transform .9s ease;
}
.info-section::before,
.info-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.info-section::before {
  inset: -1px;
  border-radius: 10px;
  opacity: .55;
  background:
    linear-gradient(rgba(0,212,255,.7), rgba(0,212,255,.7)) left 14px top 0 / 18px 1px no-repeat,
    linear-gradient(rgba(0,212,255,.7), rgba(0,212,255,.7)) left 0 top 14px / 1px 18px no-repeat,
    linear-gradient(rgba(0,212,255,.7), rgba(0,212,255,.7)) right 14px top 0 / 18px 1px no-repeat,
    linear-gradient(rgba(0,212,255,.7), rgba(0,212,255,.7)) right 0 top 14px / 1px 18px no-repeat,
    linear-gradient(rgba(0,212,255,.7), rgba(0,212,255,.7)) left 14px bottom 0 / 18px 1px no-repeat,
    linear-gradient(rgba(0,212,255,.7), rgba(0,212,255,.7)) left 0 bottom 14px / 1px 18px no-repeat,
    linear-gradient(rgba(0,212,255,.7), rgba(0,212,255,.7)) right 14px bottom 0 / 18px 1px no-repeat,
    linear-gradient(rgba(0,212,255,.7), rgba(0,212,255,.7)) right 0 bottom 14px / 1px 18px no-repeat;
  transition: opacity .35s ease;
}
.info-section::after {
  inset: 12px 10px;
  opacity: .35;
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(0,212,255,.38) 0 6px, transparent 6px 20px) top center / calc(100% - 48px) 1px no-repeat,
    repeating-linear-gradient(90deg, rgba(0,212,255,.24) 0 4px, transparent 4px 16px) bottom center / calc(100% - 60px) 1px no-repeat,
    repeating-linear-gradient(0deg, rgba(0,212,255,.28) 0 6px, transparent 6px 22px) left center / 1px calc(100% - 46px) no-repeat,
    repeating-linear-gradient(0deg, rgba(0,212,255,.2) 0 4px, transparent 4px 18px) right center / 1px calc(100% - 58px) no-repeat;
  animation: tickDrift 12s linear infinite;
}
.info-section:hover::before { opacity: .85; }
@keyframes tickDrift {
  from { background-position: center top, center bottom, left center, right center; }
  to   { background-position: calc(50% + 22px) top, calc(50% - 18px) bottom, left calc(50% + 20px), right calc(50% - 14px); }
}
/* remove decorative data ticks */
.info-section::before,
.info-section::after,
.booking-signal-card::before,
.booking-signal-card::after {
  display: none;
}
.info-block { margin-bottom: 0; }
.info-block + .info-block { border-top: 1px solid rgba(0,212,255,.14); }
.info-block:first-child .bio-panel-label { margin-top: 0; }
.info-block-header {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 1.5rem 0;
}
.info-toggle {
  font-family: 'Michroma', sans-serif;
  font-size: 1.1rem; line-height: 1;
  color: var(--ice);
  text-shadow: 0 0 8px rgba(0,212,255,.4);
  position: absolute; right: -2rem;
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  transition: transform .32s ease;
  -webkit-user-select: none;
  user-select: none;
}
.info-block.open .info-toggle { transform: rotate(45deg); }
.info-block-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.info-block-content > * { padding-bottom: 1.5rem; }
.connect-block .info-block-content > *:last-child { padding-bottom: 2.4rem; }

/* aurora */
.aurora {
  position: absolute;
  width: min(700px, 90vw); height: 300px;
  background: radial-gradient(ellipse at 40% 50%, rgba(0,212,255,.18) 0%, rgba(124,58,237,.12) 50%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  will-change: transform, opacity;
  opacity: .7;
  transition: opacity .3s ease;
}

h1 {
  font-family: 'Michroma', sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 5vw, 4rem);
  letter-spacing: .04em; line-height: 1;
  white-space: nowrap;
  text-align: center;
  color: var(--text);
  margin-bottom: 0;
  opacity: 0;
  will-change: opacity, transform;
  text-shadow: none;
  animation: fadeUp .9s .2s ease forwards, glowFadeIn .9s 1.1s ease forwards;
}
.is-safari h1 {
  animation: fadeUp .9s .2s ease forwards, glowFadeIn-safari .9s 1.1s ease forwards;
}
@keyframes glowFadeIn {
  from { text-shadow: none; }
  to   { text-shadow: 0 0 12px rgba(0,212,255,.2), 0 0 30px rgba(0,212,255,.08); }
}
@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 12px rgba(0,212,255,.2), 0 0 30px rgba(0,212,255,.08); }
  50%       { text-shadow: 0 0 20px rgba(0,212,255,.45), 0 0 45px rgba(0,212,255,.15), 0 0 80px rgba(124,58,237,.1); }
}

/* chromatic aberration on h1 hover */
@keyframes chromaAberr {
  0%   { text-shadow: -6px 0 0 rgba(255,0,80,.75), 6px 0 0 rgba(0,212,255,.75); }
  30%  { text-shadow: -4px 0 0 rgba(255,0,80,.5),  4px 0 0 rgba(167,139,250,.5); }
  60%  { text-shadow: -2px 0 0 rgba(255,0,80,.3),  2px 0 0 rgba(0,212,255,.3); }
  100% { text-shadow: 0 0 12px rgba(0,212,255,.2), 0 0 30px rgba(0,212,255,.08); }
}
h1.chroma {
  opacity: 1 !important;
  animation: chromaAberr .5s ease forwards, glowPulse 4s ease-in-out infinite !important;
}

nav:not(.topbar-nav) {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  animation: fadeUp .9s .5s ease forwards;
}

a {
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  width: min(260px, 85vw);
  font-size: clamp(.65rem, 1.6vw, 1rem);
  font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; white-space: nowrap;
  color: var(--text); text-decoration: none;
  padding: .75rem 1.1rem;
  border: none;
  position: relative;
  overflow: hidden;
  contain: layout;
  background-color: transparent;
  background-image:
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55));
  background-size: 11px 2px, 2px 11px, 11px 2px, 2px 11px, 11px 2px, 2px 11px, 11px 2px, 2px 11px;
  background-position: 0 0, 0 0, 100% 0, 100% 0, 0 100%, 0 100%, 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  transition: color .25s;
}
a:hover {
  color: var(--ice);
  background-image:
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1));
}
a::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.12), transparent);
  transform: skewX(-15deg) translateX(-150%);
  pointer-events: none;
  will-change: transform;
}
a:hover::before { animation: btnSweep .55s ease forwards; }
@keyframes btnSweep {
  from { transform: skewX(-15deg) translateX(-150%); }
  to   { transform: skewX(-15deg) translateX(350%); }
}
a .arr { transition: transform .25s; }
a:hover .arr { transform: translateX(3px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpHeroNav {
  from { opacity: 0; transform: translateY(16px) scale(1.4); }
  to   { opacity: 1; transform: translateY(0) scale(1.4); }
}
@keyframes fadeUpFixed {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* player */
.player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  display: flex; flex-direction: column; align-items: stretch;
  padding: .85rem 2rem;
  background: rgba(4,6,15,.25);
  border-top: 1px solid rgba(0,212,255,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 100;
  opacity: 0;
  animation: fadeUp .9s .7s ease forwards;
}
html.skip-player-intro .player {
  opacity: 1;
  animation: none;
}
.player-inner {
  width: var(--player-content-w, 400px);
  margin: 0 auto;
  display: flex; flex-direction: row; align-items: center; gap: .65rem;
}
.player-track-clip {
  overflow: hidden;
  max-width: 14rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.player-track-name {
  display: inline-block;
  font-size: clamp(.5rem, 1.4vw, .65rem); letter-spacing: .2em; color: var(--ice);
  text-transform: uppercase; white-space: nowrap;
}
.player-track-name.scrolling {
  animation: trackScroll 11s ease-in-out infinite;
}
@keyframes trackScroll {
  0%   { transform: translateX(0); }
  15%  { transform: translateX(0); }
  65%  { transform: translateX(var(--scroll-dist, 0px)); }
  85%  { transform: translateX(var(--scroll-dist, 0px)); }
  100% { transform: translateX(0); }
}
.player-time-disp {
  font-size: clamp(.45rem, 1.2vw, .55rem); letter-spacing: .1em; color: rgba(200,230,255,.68);
  flex-shrink: 0; user-select: none;
}
.player-progress {
  flex: 1; height: 5px;
  background: rgba(0,212,255,.15);
  cursor: none;
}
.player-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--ice), var(--ice-b));
  box-shadow: 0 0 6px rgba(0,212,255,.5);
}
.player-controls {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.player-btn {
  background: none; border: none;
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.65rem, 1.8vw, .85rem); letter-spacing: 0;
  color: rgba(200,230,255,.74);
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; padding: 0 .6rem;
  cursor: none; transition: color .2s; user-select: none;
  -webkit-appearance: none; appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.player-btn:hover { color: var(--ice); }
.player-btn-prev { transform: scaleX(-1); }
.player-btn-play { color: var(--text); font-size: clamp(1rem, 2.8vw, 1.4rem); width: 2.2rem; height: 1.6rem; position: relative; }
.player-btn-play.playing { color: transparent; text-shadow: none; }
.player-btn-play.playing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 12px; height: 13px;
  background: linear-gradient(to right,
    var(--ice) 0, var(--ice) 4px,
    transparent 4px, transparent 8px,
    var(--ice) 8px, var(--ice) 12px
  );
  box-shadow: 0 0 8px rgba(0,212,255,.6);
}
.player-volume-row {
  display: flex; align-items: center; gap: .4rem;
  flex-shrink: 0;
}
.player-vol-slider {
  -webkit-appearance: none; appearance: none;
  width: 70px; height: 2px;
  background: rgba(0,212,255,.15);
  outline: none; border: none; cursor: none;
}
.player-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 6px rgba(0,212,255,.7);
  cursor: none;
  margin-top: -3px;
}
.player-vol-slider::-moz-range-thumb {
  width: 8px; height: 8px;
  border-radius: 50%; border: none;
  background: var(--ice);
  box-shadow: 0 0 6px rgba(0,212,255,.7);
  cursor: none;
}
.player-vol-slider::-webkit-slider-runnable-track { height: 2px; background: transparent; }
.player-vol-slider::-moz-range-track { height: 2px; background: rgba(0,212,255,.15); }
.player-vol-slider::-moz-range-progress { height: 2px; background: var(--ice); }

/* hide custom cursor only on real touch devices, not just narrow windows */
@media (hover: none) and (pointer: coarse) {
  #cur, #cur-ring { display: none; }

  /* ── mobile performance: remove expensive GPU effects ── */

  /* drop composited blur layers */
  .topbar {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: rgba(3,10,20,.95);
  }
  .player {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: rgba(3,10,20,.95);
  }

  /* remove film grain (SVG re-render is expensive on mobile) */
  .grain { display: none; }

  /* simplify aurora — blur filter is expensive */
  .aurora { filter: none; opacity: .35; }

  /* disable 3D tilt on touch */
  .release-card, .featured-artwork-wrap { transform: none !important; }
}

@media (max-width: 768px) {

  html { touch-action: pan-y; overscroll-behavior-x: none; max-width: 100vw; }
  .topbar { background: linear-gradient(to bottom, #030a14 0%, rgba(4,6,15,.45) 100%); }
  .topbar-nav { display: flex; margin-left: 0; gap: .55rem; }
  html:not(.page-subpage) .topbar-nav.hero-nav-unit {
    display: flex;
    width: min(100%, 520px);
    max-width: 100%;
    justify-content: center;
    align-self: center;
    text-align: center;
    position: relative;
    transform: none;
    animation: fadeUp .9s .2s ease forwards;
    margin: clamp(1.1rem, 2.8vh, 1.8rem) auto 0;
    gap: .6rem .75rem;
  }

  html:not(.page-subpage) .hero .topbar-nav.hero-nav-unit {
    width: min(100%, 520px);
    max-width: 100%;
    transform: none;
  }
  html.skip-nav-intro:not(.page-subpage) .topbar-nav.hero-nav-unit {
    animation: none;
  }
  html:not(.page-subpage) .topbar-nav.hero-nav-unit .topbar-nav-link {
    font-size: clamp(.56rem, 2.35vw, .68rem);
    letter-spacing: .14em;
    white-space: nowrap;
  }

  /* safety: some mobile UAs don't match coarse-pointer media query reliably */
  #cur, #cur-ring { display: none !important; }

  main {
    padding: 72px 1.25rem 4rem;
  }
  .hero {
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
    padding-bottom: var(--player-h, 48px);
  }
  .info-section {
    width: 100%;
    padding: 0 1.5rem;
  }

  h1 {
    font-size: clamp(1rem, 7vw, 4rem);
    letter-spacing: .02em;
    margin-bottom: clamp(1rem, 4vh, 2rem);
    width: 100%;
  }

  nav { gap: .65rem; }

  a {
    width: min(88vw, 300px);
    font-size: .72rem;
    padding: .65rem 1rem;
  }
  a:hover::before { animation: none; }

  /* info / bio type scale */
  .bio-panel-title { font-size: clamp(.82rem, 4.2vw, 1rem); }
  .bio-panel-label {
    font-size: clamp(.58rem, 2.8vw, .7rem);
    letter-spacing: .18em;
    white-space: normal;
    line-height: 1.5;
  }
  .bio-text {
    font-size: clamp(.64rem, 2.8vw, .76rem);
    line-height: 1.85;
    letter-spacing: .04em;
  }
  .bio-press-links a {
    font-size: clamp(.58rem, 2.7vw, .68rem);
    width: 100%;
    max-width: 100%;
    padding: .5rem .95rem;
  }
  .connect-links {
    flex-wrap: wrap;
    gap: .4rem;
    padding: 0 1rem;
  }
  .connect-links a {
    flex: 1 1 calc(33.333% - .3rem);
    min-width: 0;
    max-width: none;
    font-size: clamp(.4rem, 2vw, .55rem);
  }
  .info-toggle {
    font-size: clamp(.9rem, 4vw, 1.05rem);
    right: -1rem;
  }

  .aurora { width: 100vw; height: 180px; }

  /* player — full width, compact */
  .player { padding: .6rem 1.25rem; }
  .player-inner { width: 100%; }
  .player-volume-row { display: none; }
  .player-counter { display: none; }
  .player-track-clip { max-width: 40vw; }
  .player-track-name {
    font-size: .55rem;
    text-align: left;
  }
  .player-time-disp { font-size: .45rem; }
  #playerTimeTotal { display: none; }
  .tap-hint { display: none; }
  .player-progress {
    position: absolute;
    top: 0; left: 0; right: 0;
    width: 100%; height: 3px;
    flex: none;
  }
}

/* fallback: hide custom cursor on all touch-capable devices */
@media (hover: none), (pointer: coarse) {
  #cur, #cur-ring { display: none !important; opacity: 0 !important; }
}

@media (max-width: 500px) {
  .connect-links a {
    flex-basis: 100%;
  }
}

/* ── scroll arrow ─────────────────────────────────── */
.scroll-arrow {
  position: fixed;
  left: 50%; margin-left: -7px;
  width: 14px; height: 14px;
  border-right: 1.5px solid rgba(0,212,255,.45);
  border-bottom: 1.5px solid rgba(0,212,255,.45);
  opacity: 0;
  animation: arrowFadeUp .9s .9s ease forwards, arrowBob 2.2s 1.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 50;
}
@keyframes arrowFadeUp {
  from { opacity: 0; transform: rotate(45deg) translateY(16px); }
  to   { opacity: 1; transform: rotate(45deg) translateY(0); }
}
@keyframes arrowBob {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ── shuffle active state ─────────────────────────── */
.player-btn-shuffle.active { color: var(--ice); text-shadow: 0 0 8px rgba(0,212,255,.5); }

/* ── track counter ────────────────────────────────── */
.player-counter {
  font-size: .5rem; letter-spacing: .1em;
  color: rgba(200,230,255,.62);
  flex-shrink: 0; user-select: none; white-space: nowrap;
}
.bio-panel-title {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.85rem, 3vw, 1.3rem);
  letter-spacing: .12em;
  color: var(--ice);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 18px rgba(0,212,255,.35);
  white-space: nowrap;
}
.bio-panel-label {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.7rem, 1.8vw, .85rem);
  letter-spacing: .22em;
  color: rgba(0,212,255,.75);
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(0,212,255,.3);
}
.bio-text {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.82rem, 2.2vw, 1.1rem);
  line-height: 1.9;
  letter-spacing: .05em;
  color: rgba(220,240,255,.88);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.bio-press-links { display: flex; flex-direction: column; gap: .65rem; align-items: flex-start; }
.bio-press-links a::before {
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.04), transparent);
}
.bio-press-links a {
  width: auto; padding: .5rem 1.4rem;
  font-size: clamp(.72rem, 1.9vw, .9rem); letter-spacing: .13em;
  justify-content: flex-start;
  white-space: normal;
  line-height: 1.6;
  text-align: left;
}
.info-section .bio-press-links a {
  justify-content: flex-start;
  white-space: nowrap;
  background-position: 0 0, 0 0, calc(100% - 5px) 0, calc(100% - 5px) 0, 0 100%, 0 100%, calc(100% - 5px) 100%, calc(100% - 5px) 100%;
}
.connect-links {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 1.4rem);
  margin-top: .35rem;
  justify-content: center;
}
.connect-links:first-of-type { margin-top: 0; }
.info-section .connect-links a {
  flex: 0 0 auto;
  width: auto !important;
  min-width: 0;
  max-width: none;
  padding: .75rem 1.5rem;
  font-size: clamp(.55rem, 1.2vw, .72rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  justify-content: center;
  text-align: center;
}
/* ── label releases ──────────────────────────────── */
.label-releases {
  display: flex; flex-direction: column;
  gap: .4rem;
  width: 100%;
}
.label-group { display: flex; flex-direction: column; }
.label-btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  width: 100%;
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.72rem, 1.9vw, .9rem);
  font-weight: 400;
  letter-spacing: .13em; text-transform: uppercase; white-space: nowrap;
  color: var(--text);
  padding: .5rem 1.4rem;
  border: none;
  position: relative; overflow: hidden; contain: layout;
  background-color: transparent;
  background-image:
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55)),
    linear-gradient(rgba(0,212,255,.55), rgba(0,212,255,.55));
  background-size: 11px 2px, 2px 11px, 11px 2px, 2px 11px, 11px 2px, 2px 11px, 11px 2px, 2px 11px;
  background-position: 0 0, 0 0, 100% 0, 100% 0, 0 100%, 0 100%, 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  transition: color .25s;
  text-align: left;
  line-height: 1.55;
}
.label-btn:hover {
  color: var(--ice);
  background-image:
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1)),
    linear-gradient(rgba(0,212,255,1), rgba(0,212,255,1));
}
.label-btn::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.12), transparent);
  transform: skewX(-15deg) translateX(-150%);
  pointer-events: none;
  will-change: transform;
}
.label-btn:hover::before { animation: btnSweep .55s ease forwards; }
.label-btn::after {
  content: '+';
  font-size: 1.1rem; line-height: 1;
  color: var(--ice);
  text-shadow: 0 0 8px rgba(0,212,255,.4);
  transition: transform .32s ease;
  flex-shrink: 0;
}
.label-group.open .label-btn::after { transform: rotate(45deg); }
.label-songs {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1), opacity .2s ease;
  display: flex; flex-direction: column;
  gap: .3rem;
  padding: .6rem 0 .35rem .5rem;
}
.label-songs a {
  width: auto;
  padding: .4rem 1.2rem;
  font-size: clamp(.68rem, 1.75vw, .85rem);
  justify-content: flex-start;
  white-space: normal;
  line-height: 1.55;
  text-align: left;
}
@media (max-width: 768px) {
  .label-btn {
    font-size: clamp(.6rem, 2.9vw, .74rem);
    padding: .55rem 1rem;
  }
  .label-songs a {
    font-size: clamp(.58rem, 2.6vw, .7rem);
    padding: .4rem .95rem;
  }
}

/* ── tap-to-play hint ─────────────────────────────── */
.tap-hint {
  position: fixed;
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,212,255,.7);
  box-shadow: 0 0 10px rgba(0,212,255,.25);
  pointer-events: none; z-index: 101; opacity: 0;
}
.tap-hint.show { animation: tapPulse 1.8s ease-out infinite; }
@keyframes tapPulse {
  0%   { transform: scale(.8); opacity: .8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── audio visualizer ────────────────────────────── */
.visualizer {
  position: fixed;
  bottom: var(--player-h, 56px);
  left: 0; width: 100%; height: 60px;
  z-index: 99;
  pointer-events: none;
  opacity: .5;
}

/* ── section divider ──────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(500px, 80vw);
  margin: 0 auto;
  gap: 0;
  opacity: .45;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
}
.section-divider::before {
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.6));
}
.section-divider::after {
  background: linear-gradient(90deg, rgba(0,212,255,.6), transparent);
}
.section-divider span {
  width: 5px; height: 5px;
  background: rgba(0,212,255,.7);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0,212,255,.4);
}

/* ── full-viewport section spacing + scroll-snap ─── */
.featured-wrap,
.releases-section,
.info-wrap,
.dates-wrap,
.portfolio-section {
  min-height: calc(100vh - 72px - var(--player-h, 56px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
  width: 100%;
}
.featured-wrap {
  justify-content: flex-start;
  position: relative;
  padding-top: 0;
  scroll-snap-align: start;
  scroll-margin-top: 0;
  min-height: 100vh;
}
.featured-wrap > .ticker {
  flex-shrink: 0;
}
.featured-wrap .featured-release {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ── section label (reusable) ────────────────────── */
.section-label {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.5rem, 1.2vw, .65rem);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(0,212,255,.5);
  margin-bottom: 2.5rem;
  white-space: nowrap;
}

/* ── ticker / marquee ────────────────────────────── */
.ticker {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(0,212,255,.14);
  border-bottom: 1px solid rgba(0,212,255,.14);
  position: relative;
  opacity: 0;
}
.ticker::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100vw;
  top: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(1,16,31,.1), rgba(4,8,24,.1));
  box-shadow: inset 0 0 12px rgba(0,212,255,.08), 0 0 20px rgba(0,212,255,.15);
  z-index: 0;
  pointer-events: none;
}
.ticker.visible { animation: fadeUp .9s ease forwards; }
.ticker-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  white-space: nowrap;
  animation: tickerScroll 22s linear infinite;
  will-change: transform;
  text-shadow: 0 0 12px rgba(0,212,255,.45);
  position: relative;
  z-index: 1;
}
.ticker-reverse .ticker-track {
  animation: tickerScrollReverse 30s linear infinite;
}
.ticker:not(.in-view) .ticker-track { animation-play-state: paused; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes tickerScrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.ticker-text {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.55rem, 1vw, .75rem);
  letter-spacing: .38em;
  color: rgba(241, 251, 255, .5);
  text-transform: uppercase;
  padding: 0 .15rem;
  text-shadow:
    0 0 14px rgba(0,212,255,.45),
    0 0 30px rgba(0,212,255,.2);
}

/* Render-heavy sections are skipped until close to viewport. */
.releases-section,
.dates-section,
.portfolio-section {
  content-visibility: auto;
  contain-intrinsic-block-size: 720px;
  contain-intrinsic-size: 1px 720px;
}
.ticker-sep {
  color: rgba(0,212,255,.6);
  font-size: clamp(.5rem, 1.1vw, .7rem);
}

/* ── featured release ────────────────────────────── */
.featured-release {
  width: 100%;
  max-width: min(900px, 92vw);
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1rem, 3vw, 2rem);
  opacity: 0;
}
.featured-release.visible { animation: fadeUp .9s ease forwards; }
.featured-inner {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.featured-artwork-wrap {
  width: clamp(140px, 35vw, 340px);
  flex: 0 0 clamp(140px, 35vw, 340px);
  display: block;
  line-height: 0;
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
  aspect-ratio: 1 / 1;
}
.featured-artwork-wrap picture {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
}
.featured-art-img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  display: block;
  border: 1px solid rgba(0,212,255,.14);
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, rgba(0,212,255,.08) 0%, transparent 50%),
              linear-gradient(to bottom, rgba(3,10,20,.9), rgba(3,10,20,.7));
}
.release-art {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}
.release-art-sidewinder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}
.featured-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1 1 0;
  min-width: min(18rem, 100%);
}
.featured-title {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.9rem, 2.5vw, 1.6rem);
  letter-spacing: .08em;
  color: var(--text);
  white-space: normal;
  line-height: 1.35;
  text-wrap: pretty;
  text-wrap: balance;
  text-shadow: 0 0 14px rgba(0,212,255,.2);
}
.featured-meta {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.5rem, 1.2vw, .65rem);
  letter-spacing: .2em;
  color: rgba(200,230,255,.62);
  white-space: nowrap;
}
.featured-link {
  width: min(9rem, 50vw);
  padding: .5rem 1.4rem;
  font-size: clamp(.55rem, 1.4vw, .75rem);
  letter-spacing: .2em;
  justify-content: center;
  margin-top: .5rem;
}

/* ── placeholder artwork (CSS gradient covers) ───── */
.placeholder-art {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.placeholder-art::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,212,255,.12) 0%, transparent 50%),
    linear-gradient(225deg, rgba(167,139,250,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(0,212,255,.08) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(3,10,20,.9), rgba(3,10,20,.7));
}
.placeholder-art::after {
  content: attr(data-label);
  position: absolute;
  bottom: 10%; left: 50%;
  transform: translateX(-50%);
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.4rem, .8vw, .55rem);
  letter-spacing: .3em;
  color: rgba(0,212,255,.2);
  white-space: nowrap;
}

/* ── discography grid ────────────────────────────── */
.releases-section {
  max-width: var(--content-max);
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 3vw, 2rem) clamp(2.5rem, 5vw, 5rem);
  opacity: 0;
  align-items: stretch;
}
.releases-section.visible { animation: fadeUp .9s ease forwards; }
.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(160px, 40vw), 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}
.release-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: auto;
  padding: 0;
  background-image: none;
  overflow: visible;
  contain: none;
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
}
.release-card::before { display: none; }
.release-card:hover { background-image: none; }
.release-art-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: none;
}
.release-art-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.release-card-title {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.5rem, 1.2vw, .65rem);
  letter-spacing: .12em;
  color: var(--text);
  margin-top: .75rem;
  white-space: normal;
  line-height: 1.4;
  transition: color .3s;
}
.release-card:hover .release-card-title { color: rgba(0, 212, 255, 0.55); text-shadow: 0 0 6px rgba(0,212,255,.1); }
.release-card-meta {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.45rem, 1vw, .55rem);
  letter-spacing: .12em;
  color: rgba(200,230,255,.68);
  margin-top: .3rem;
  white-space: normal;
  line-height: 1.35;
}

/* ── image glitch hover ──────────────────────────── */
.glitch-wrap {
  position: relative;
  overflow: hidden;
}
.glitch-wrap::before,
.glitch-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
  mix-blend-mode: screen;
}
.glitch-wrap::before {
  background: rgba(255,0,80,.15);
}
.glitch-wrap::after {
  background: rgba(0,212,255,.15);
}
.glitch-wrap:hover::before {
  opacity: 1;
  animation: glitchR .3s steps(3) forwards;
}
.glitch-wrap:hover::after {
  opacity: 1;
  animation: glitchB .3s steps(3) forwards;
}
@keyframes glitchR {
  0%   { transform: translate(-4px, 1px); clip-path: inset(10% 0 60% 0); }
  33%  { transform: translate(3px, -1px); clip-path: inset(50% 0 20% 0); }
  66%  { transform: translate(-2px, 0);   clip-path: inset(30% 0 40% 0); }
  100% { transform: translate(0); clip-path: inset(0); opacity: 0; }
}
@keyframes glitchB {
  0%   { transform: translate(4px, -1px); clip-path: inset(60% 0 10% 0); }
  33%  { transform: translate(-3px, 1px); clip-path: inset(20% 0 50% 0); }
  66%  { transform: translate(2px, 0);    clip-path: inset(40% 0 30% 0); }
  100% { transform: translate(0); clip-path: inset(0); opacity: 0; }
}

/* brief scan-line burst on art hover */
.glitch-wrap .placeholder-art::before {
  transition: opacity .15s;
}
.glitch-wrap:hover .placeholder-art::before {
  animation: scanBurst .25s ease-out;
}
@keyframes scanBurst {
  0%   { opacity: 1; background-blend-mode: overlay;
         background-image: repeating-linear-gradient(to bottom, transparent 0px, transparent 2px, rgba(0,212,255,.15) 2px, rgba(0,212,255,.15) 3px); }
  100% { opacity: 1; background-image: none; }
}

/* ── upcoming dates ──────────────────────────────── */
.dates-section {
  width: 100%;
  max-width: min(600px, 92vw);
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 3vw, 2rem) clamp(3rem, 5vw, 6rem);
  opacity: 0;
}
#datesSection { padding-bottom: clamp(1rem, 2.4vw, 1.6rem); }
.dates-section.visible { animation: fadeUp .9s ease forwards; }
.dates-empty {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.55rem, 1.3vw, .7rem);
  letter-spacing: .25em;
  color: rgba(200,230,255,.2);
  white-space: normal;
  line-height: 1.45;
}
.dates-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  max-width: min(500px, 100%);
  margin: 0 auto;
}
.date-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(.1rem, .5vw, .28rem);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(0,212,255,.08);
}
.date-date {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.6rem, 2.2vw, 1rem);
  letter-spacing: .15em;
  color: var(--ice);
  white-space: nowrap;
  text-align: right;
  text-shadow: 0 0 10px rgba(0,212,255,.25);
}
.date-venue {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.6rem, 2.2vw, 1rem);
  letter-spacing: .1em;
  color: var(--text);
  white-space: normal;
  text-wrap: balance;
}
/* ── past shows ──────────────────────────────────── */
.past-shows-section {
  padding-top: clamp(1rem, 2.4vw, 1.6rem);
  border-top: 1px solid rgba(0,212,255,.18);
}
.past-shows-inner {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  max-width: min(500px, 100%);
  margin: 0 auto;
}
.past-shows-year {
  display: flex;
  flex-direction: column;
}
.past-shows-year-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.65rem, 1.8vw, .9rem);
  font-weight: 400;
  letter-spacing: .2em;
  color: var(--ice);
  padding: .75rem 0;
  border: none;
  background: none;
  position: relative;
  text-shadow: 0 0 10px rgba(0,212,255,.25);
  transition: color .25s;
  white-space: normal;
  line-height: 1.4;
  border-bottom: 1px solid rgba(0,212,255,.22);
}

/* match dates section headings/empty state visibility to past-show year buttons */
#datesSection .section-label,
#pastShowsSection .section-label,
#featuredRelease .section-label,
#releasesSection .section-label,
#bookingSection .section-label,
#newsletterSection .section-label,
#datesSection .dates-empty {
  color: var(--ice);
  text-shadow: 0 0 10px rgba(0,212,255,.25);
}
#datesSection .dates-empty {
  color: var(--text);
  text-shadow: none;
}
.past-shows-year-btn::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: clamp(1rem, 2.5vw, 1.3rem); line-height: 1;
  color: var(--ice);
  text-shadow: 0 0 8px rgba(0,212,255,.4);
  transition: transform .32s ease;
}
.past-shows-year.open .past-shows-year-btn::after { transform: rotate(45deg); }
.past-shows-list {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1), opacity .2s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: .25rem;
}
.past-shows-year.open .past-shows-list {
  opacity: 1;
}
.past-shows-list .date-row {
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0,212,255,.14);
  padding: .5rem 0;
  gap: clamp(.6rem, 2vw, 1.2rem);
}
.past-shows-back-btn {
  align-self: flex-start;
  margin-top: .85rem;
  padding: .35rem 0;
  border: none;
  background: none;
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.5rem, 1.2vw, .62rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 0 10px rgba(0,212,255,.18);
  transition: color .25s ease;
}
.past-shows-back-btn:hover { color: rgba(0, 212, 255, 0.55); text-shadow: 0 0 6px rgba(0,212,255,.1); }
.past-shows-list .date-date {
  font-size: clamp(.55rem, 1.6vw, .8rem);
  color: rgba(0,212,255,.7);
  min-width: 3.5rem;
  text-align: left;
}
.past-shows-list .date-venue {
  font-size: clamp(.55rem, 1.6vw, .8rem);
  color: var(--text);
  text-align: left;
  white-space: normal;
}

/* ── portfolio phase 1 blocks ───────────────────── */
.portfolio-section {
  width: 100%;
  max-width: var(--content-max);
  padding: clamp(2rem, 4vw, 3.8rem) clamp(1rem, 3vw, 2rem);
  opacity: 0;
  text-align: center;
}
.portfolio-section.visible { animation: fadeUp .9s ease forwards; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.9rem, 2vw, 1.3rem);
}
.portfolio-card,
.quote-card {
  border: 1px solid rgba(0,212,255,.14);
  border-top: 1px solid rgba(0,212,255,.32);
  border-radius: 10px;
  background: rgba(4,6,15,.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(1rem, 2.1vw, 1.4rem);
}
.portfolio-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  text-align: center;
}
.portfolio-title {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.62rem, 1.25vw, .88rem);
  letter-spacing: .13em;
  color: rgba(228, 243, 255, .94);
  line-height: 1.6;
  text-wrap: pretty;
}
.portfolio-meta {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.46rem, .95vw, .58rem);
  letter-spacing: .15em;
  color: rgba(183, 214, 236, .84);
  line-height: 1.7;
}
.portfolio-link {
  margin-top: .7rem;
  width: auto;
  min-width: 10rem;
  padding: .52rem 1.2rem;
  text-decoration: none;
  justify-content: center;
  font-size: clamp(.5rem, 1.05vw, .65rem);
  letter-spacing: .2em;
}
.booking-section { max-width: min(1080px, 94vw); }
.booking-signal-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.4rem);
  border: 1px solid rgba(0,212,255,.22);
  border-top: 1px solid rgba(0,212,255,.48);
  border-radius: 12px;
  padding: clamp(1rem, 2.2vw, 1.45rem);
  background:
    linear-gradient(100deg, rgba(0,212,255,.14) 0%, rgba(0,212,255,.03) 25%, rgba(4,6,15,.35) 58%, rgba(4,6,15,.6) 100%),
    rgba(4,6,15,.48);
  box-shadow: inset 0 0 26px rgba(0,212,255,.07), 0 0 30px rgba(0,0,0,.3);
}
.booking-signal-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, rgba(0,212,255,.9), rgba(0,212,255,.2));
  box-shadow: 0 0 18px rgba(0,212,255,.45);
}
.booking-signal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent 0%, rgba(0,212,255,.08) 45%, transparent 100%);
  transform: translateX(-100%);
  animation: bookingSweep 5.5s linear infinite;
  pointer-events: none;
  clip-path: inset(0 round 12px);
}
@keyframes bookingSweep {
  0% { transform: translateX(-100%); opacity: 0; }
  8% { opacity: .35; }
  42% { opacity: .22; }
  60% { opacity: 0; }
  100% { transform: translateX(120%); opacity: 0; }
}
.booking-signal-card > * { min-width: 0; }
.booking-signal-head,
.booking-signal-meta {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.booking-signal-head {
  padding-right: clamp(.7rem, 1.3vw, 1rem);
  border-right: none;
}
.booking-signal-meta {
  padding-right: 0;
  border-right: none;
}
.booking-kicker {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.42rem, .84vw, .54rem);
  letter-spacing: .24em;
  color: rgba(0,212,255,.72);
  margin-bottom: .45rem;
}
.booking-cta {
  margin-top: 0;
  min-width: clamp(10.5rem, 13vw, 13rem);
  justify-self: center;
  align-self: center;
  box-shadow: none;
}
.booking-signal-card .portfolio-title { margin: 0; }
.booking-signal-head .portfolio-title { font-size: clamp(.58rem, 1.15vw, .8rem); }
.booking-signal-card .portfolio-meta { margin: 0; }
.booking-signal-meta .portfolio-meta { width: 100%; text-align: center; }
.booking-signal-card .portfolio-meta + .portfolio-meta { margin-top: .25rem; }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.8rem, 1.8vw, 1.2rem);
}
.quote-card {
  text-align: center;
}
.quote-line {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.54rem, 1.05vw, .68rem);
  letter-spacing: .12em;
  color: rgba(219, 237, 250, .9);
  line-height: 1.65;
}
.quote-source {
  display: inline-block;
  margin-top: .75rem;
  font-family: 'Michroma', sans-serif;
  font-size: clamp(.43rem, .86vw, .54rem);
  letter-spacing: .2em;
  color: rgba(0,212,255,.7);
  font-style: normal;
}

/* ── per-section background accents ──────────────── */
.featured-release,
.releases-section,
.dates-section {
  position: relative;
}
.featured-release::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.releases-section::before {
  content: '';
  position: absolute;
  top: 30%; left: 30%;
  width: 400px; height: 250px;
  background: radial-gradient(ellipse at center, rgba(0,212,255,.06) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

/* ── mobile adjustments for new sections ─────────── */
@media (max-width: 768px) {
  .featured-release {
    padding: 3rem 1rem;
    max-width: 100vw;
    content-visibility: visible;
    contain-intrinsic-block-size: auto;
    contain-intrinsic-size: auto;
  }
  .featured-inner {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .featured-artwork-wrap { width: min(70vw, 280px); }
  .featured-info {
    text-align: center;
    align-items: center;
    max-width: 90vw;
  }
  .featured-title {
    white-space: normal;
    text-align: center;
    font-size: clamp(.7rem, 4vw, 1.2rem);
    line-height: 1.5;
  }
  .featured-meta { font-size: .5rem; }
  .featured-link {
    justify-content: center;
    width: auto;
    min-width: 8rem;
    font-size: .55rem;
  }

  .releases-section { padding: 2.5rem 1rem 3rem; max-width: 100vw; }
  .release-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .release-card-title {
    font-size: .45rem;
    white-space: normal;
    line-height: 1.4;
  }
  .release-card-meta { font-size: .38rem; }

  .dates-section { padding: 2rem 1rem 4rem; max-width: 100vw; }
  #datesSection { padding-bottom: 1rem; }
  .past-shows-section { padding: 1rem 1rem 3rem; }
  .dates-list { max-width: 100%; }
  .past-shows-inner { max-width: 100%; }
  .date-row {
    flex-direction: column;
    gap: .3rem;
    text-align: center;
  }
  .date-date { font-size: .65rem; }
  .date-venue { font-size: .6rem; }
  .past-shows-list .date-row { flex-direction: row; text-align: left; }
  .past-shows-list .date-date {
    font-size: clamp(.52rem, 2.4vw, .62rem);
    min-width: 3rem;
  }
  .past-shows-list .date-venue {
    font-size: clamp(.52rem, 2.4vw, .64rem);
    line-height: 1.55;
    white-space: normal;
  }
  .past-shows-year-btn {
    font-size: clamp(.58rem, 2.8vw, .68rem);
    letter-spacing: .16em;
    white-space: normal;
    padding: .8rem 1.8rem .8rem 0;
    text-align: left;
    justify-content: flex-start;
  }
  .past-shows-year-btn::after { right: .1rem; }
  .past-shows-back-btn {
    font-size: clamp(.48rem, 2.4vw, .58rem);
    letter-spacing: .16em;
  }

  .ticker { padding: .8rem 0; }

  .visualizer { height: 40px; }

  .section-label { font-size: .45rem; margin-bottom: 1.5rem; }

  .portfolio-section { max-width: 100vw; padding: 2rem 1rem 2.8rem; }
  .booking-section { max-width: 100vw; }
  .booking-signal-card {
    grid-template-columns: 1fr;
    gap: .8rem;
  }
  .booking-signal-head,
  .booking-signal-meta {
    padding-right: 0;
    border-right: none;
  }
  .booking-signal-meta { display: flex; flex-direction: column; gap: .2rem; }
  .booking-cta { min-width: 9.2rem; justify-self: center; }
  .portfolio-grid { grid-template-columns: 1fr; gap: .8rem; }
  .quotes-grid { grid-template-columns: 1fr; gap: .8rem; }
  .portfolio-link { min-width: 8.3rem; }

  /* prevent any horizontal overflow */
  .info-section { max-width: 100%; overflow-x: hidden; }
  .bio-text { word-break: break-word; }
  .label-btn { white-space: normal; text-align: left; }
}

@media (max-width: 980px) and (min-width: 769px) {
  .topbar-nav { gap: .85rem; }
}

@media (max-width: 420px) {
  html:not(.page-subpage) .topbar-nav.hero-nav-unit {
    width: 100%;
    gap: .5rem .6rem;
  }
  html:not(.page-subpage) .topbar-nav.hero-nav-unit .topbar-nav-link {
    font-size: clamp(.54rem, 2.9vw, .63rem);
    letter-spacing: .11em;
  }
}

/* ── disable glitch on touch devices ─────────────── */
@media (hover: none) and (pointer: coarse) {
  .glitch-wrap::before,
  .glitch-wrap::after { display: none; }
  .visualizer { display: none; }
  .featured-release::before,
  .releases-section::before { filter: none; }
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  .grain,
  .visualizer,
  .info-section::after,
  .booking-signal-card::after {
    display: none !important;
  }
  .topbar,
  .info-section,
  .player,
  .portfolio-card,
  .quote-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .ticker-track,
  .scroll-arrow,
  h1,
  .topbar-flyer {
    animation: none !important;
  }
}

/* ── Safari normalisation ─────────────────────────────────────────────
   Safari renders text-shadow, box-shadow glow, drop-shadow and blur()
   ~1.5–2× more intensely than Chrome/Firefox. JS adds .is-safari to
   <html> before CSS loads. Every glow-producing declaration is halved
   below so the visual result matches other browsers.
   ──────────────────────────────────────────────────────────────────── */

/* --- h1 / topbar-flyer (CITYSPROBLEM title) --- */
.is-safari h1,
.is-safari .topbar-flyer {
  text-shadow: 0 0 8px rgba(0,212,255,.1), 0 0 20px rgba(0,212,255,.04) !important;
}
.is-safari h1 {
  animation: fadeUp .9s .2s ease forwards, glowFadeIn-safari .9s 1.1s ease forwards;
}
.is-safari h1.chroma {
  animation: chromaAberr-safari .5s ease forwards, glowPulse-safari 4s ease-in-out infinite !important;
}
@keyframes glowFadeIn-safari {
  from { text-shadow: none; }
  to   { text-shadow: 0 0 8px rgba(0,212,255,.1), 0 0 20px rgba(0,212,255,.04); }
}
@keyframes glowPulse-safari {
  0%, 100% { text-shadow: 0 0 8px rgba(0,212,255,.1), 0 0 20px rgba(0,212,255,.04); }
  50%       { text-shadow: 0 0 14px rgba(0,212,255,.25), 0 0 30px rgba(0,212,255,.08), 0 0 55px rgba(124,58,237,.05); }
}
@keyframes chromaAberr-safari {
  0%   { text-shadow: -6px 0 0 rgba(255,0,80,.5), 6px 0 0 rgba(0,212,255,.5); }
  30%  { text-shadow: -4px 0 0 rgba(255,0,80,.3),  4px 0 0 rgba(167,139,250,.3); }
  60%  { text-shadow: -2px 0 0 rgba(255,0,80,.15),  2px 0 0 rgba(0,212,255,.15); }
  100% { text-shadow: 0 0 8px rgba(0,212,255,.1), 0 0 20px rgba(0,212,255,.04); }
}

/* --- topbar nav links --- */
.is-safari .topbar-title {
  text-shadow: 0 0 10px rgba(0,212,255,.15);
}
.is-safari .topbar-nav-link:hover,
.is-safari .topbar-nav-link:focus-visible {
  text-shadow: 0 0 4px rgba(0,212,255,.06);
}
.is-safari .topbar-nav-link.is-active,
.is-safari .topbar-nav-link[aria-current='page'] {
  text-shadow: 0 0 6px rgba(0,212,255,.22);
}

/* --- uniform hover glow group --- */
.is-safari .bio-close:hover,
.is-safari .bio-press-links a:hover,
.is-safari .info-block-header:hover .bio-panel-label,
.is-safari .featured-link:hover,
.is-safari .portfolio-link:hover,
.is-safari .past-shows-year-btn:hover,
.is-safari a.date-row:hover,
.is-safari a.date-row:hover .date-date,
.is-safari a.date-row:hover .date-venue {
  text-shadow: 0 0 4px rgba(0,212,255,.06);
}

/* --- info section accordion toggles --- */
.is-safari .info-toggle {
  text-shadow: 0 0 5px rgba(0,212,255,.2);
}

/* --- bio panel --- */
.is-safari .bio-panel-title {
  text-shadow: 0 0 12px rgba(0,212,255,.18);
}
.is-safari .bio-panel-label {
  text-shadow: 0 0 8px rgba(0,212,255,.15);
}

/* --- label releases accordion toggle --- */
.is-safari .label-btn::after {
  text-shadow: 0 0 5px rgba(0,212,255,.2);
}

/* --- ticker / marquee --- */
.is-safari .ticker-track {
  text-shadow: 0 0 8px rgba(0,212,255,.22);
}
.is-safari .ticker-text {
  text-shadow: 0 0 10px rgba(0,212,255,.22), 0 0 22px rgba(0,212,255,.1);
}
.is-safari .ticker::before {
  box-shadow: inset 0 0 8px rgba(0,212,255,.04), 0 0 14px rgba(0,212,255,.08);
}

/* --- featured release --- */
.is-safari .featured-title {
  text-shadow: 0 0 10px rgba(0,212,255,.1);
}

/* --- release cards hover --- */
.is-safari .release-card:hover .release-card-title {
  text-shadow: 0 0 4px rgba(0,212,255,.06);
}

/* --- dates --- */
.is-safari .date-date {
  text-shadow: 0 0 6px rgba(0,212,255,.12);
}

/* --- past shows --- */
.is-safari .past-shows-year-btn {
  text-shadow: 0 0 6px rgba(0,212,255,.12);
}
.is-safari .past-shows-year-btn::after {
  text-shadow: 0 0 5px rgba(0,212,255,.2);
}
.is-safari .past-shows-back-btn {
  text-shadow: 0 0 6px rgba(0,212,255,.09);
}
.is-safari .past-shows-back-btn:hover {
  text-shadow: 0 0 4px rgba(0,212,255,.06);
}

/* --- section labels --- */
.is-safari #datesSection .section-label,
.is-safari #pastShowsSection .section-label,
.is-safari #featuredRelease .section-label,
.is-safari #releasesSection .section-label,
.is-safari #bookingSection .section-label,
.is-safari #newsletterSection .section-label {
  text-shadow: 0 0 6px rgba(0,212,255,.12);
}

/* --- shuffle active --- */
.is-safari .player-btn-shuffle.active {
  text-shadow: 0 0 5px rgba(0,212,255,.25);
}

/* --- player glow elements --- */
.is-safari .player-fill {
  box-shadow: 0 0 4px rgba(0,212,255,.25);
}
.is-safari .player-btn-play.playing::before {
  box-shadow: 0 0 5px rgba(0,212,255,.3);
}

/* --- custom cursor --- */
.is-safari #cur {
  box-shadow: 0 0 5px var(--ice);
}

/* --- volume slider thumb --- */
.is-safari .player-vol-slider::-webkit-slider-thumb {
  box-shadow: 0 0 4px rgba(0,212,255,.35);
}

/* --- tap hint --- */
.is-safari .tap-hint {
  box-shadow: 0 0 6px rgba(0,212,255,.12);
}

/* --- section divider diamond --- */
.is-safari .section-divider span {
  box-shadow: 0 0 4px rgba(0,212,255,.2);
}

/* --- booking card --- */
.is-safari .booking-signal-card {
  box-shadow: inset 0 0 18px rgba(0,212,255,.035), 0 0 20px rgba(0,0,0,.2);
}
.is-safari .booking-signal-card::before {
  box-shadow: 0 0 12px rgba(0,212,255,.22);
}

/* --- splash logo pulse --- */
.is-safari .splash-logo {
  animation: splashFadeIn 1.2s .2s ease forwards, splashPulse-safari 2.5s 1.4s ease-in-out infinite;
}
.is-safari .splash-logo:hover {
  filter: brightness(0.961) drop-shadow(0 0 8px rgba(0,212,255,.12));
}
@keyframes splashPulse-safari {
  0%, 100% { filter: brightness(0.961) drop-shadow(0 0 0px transparent); }
  50%      { filter: brightness(0.961) drop-shadow(0 0 8px rgba(0,212,255,.12)); }
}

/* --- background blurs (aurora, section accents) --- */
.is-safari .aurora {
  filter: blur(48px);
  opacity: .5;
}
.is-safari .featured-release::before {
  filter: blur(60px);
  opacity: .6;
}
.is-safari .releases-section::before {
  filter: blur(50px);
  opacity: .6;
}
