:root {
  --black: #050505;
  --charcoal: #111111;
  --paper: #f6efe2;
  --white: #fffdf6;
  --red: #e21f26;
  --acid: #d7ff2f;
  --blue: #36b7ff;
  --violet: #8c66ff;
  --muted: rgba(246, 239, 226, 0.68);
  --dark-muted: rgba(5, 5, 5, 0.62);
  --line: rgba(246, 239, 226, 0.18);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(246, 239, 226, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 226, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(226, 31, 38, 0.17), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(54, 183, 255, 0.14), transparent 28%),
    radial-gradient(circle at 72% 86%, rgba(215, 255, 47, 0.12), transparent 26%);
  content: "";
}

.motion-ready main,
.motion-ready .site-header,
.motion-ready .site-footer {
  transition:
    opacity 420ms ease,
    filter 420ms ease,
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motion-ready.is-loading main,
.motion-ready.is-loading .site-header,
.motion-ready.is-loading .site-footer {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px) scale(0.992);
}

.motion-ready.is-leaving main,
.motion-ready.is-leaving .site-header,
.motion-ready.is-leaving .site-footer {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(-8px) scale(0.986);
}

.signal-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(246, 239, 226, 0.08) 0,
      rgba(246, 239, 226, 0.08) 1px,
      transparent 1px,
      transparent 7px
    ),
    linear-gradient(135deg, #050505 0%, #090909 46%, #1b0506 100%);
  transition:
    opacity 620ms ease,
    visibility 620ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.signal-loader::before {
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(226, 31, 38, 0.56) 48%, transparent 54%),
    linear-gradient(180deg, transparent 0 38%, rgba(215, 255, 47, 0.24) 48%, transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.9;
  transform: translateX(-120%) skewX(-16deg);
  animation: loader-scan 980ms cubic-bezier(0.7, 0, 0.2, 1) both;
}

.signal-loader::after {
  background:
    linear-gradient(rgba(246, 239, 226, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 226, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
  opacity: 0.72;
}

.site-loaded .signal-loader {
  visibility: hidden;
  opacity: 0;
  transform: scale(1.035);
}

.loader-mark {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 24px;
  width: min(72vw, 620px);
}

.loader-mark .nrq-logo-mark {
  width: min(72vw, 620px);
  animation: mark-lock 840ms steps(3, end) both;
}

.loader-mark i {
  display: block;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, var(--acid), var(--red), transparent);
  box-shadow: 0 0 30px rgba(215, 255, 47, 0.38);
  transform-origin: left center;
  animation: tuner-line 920ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 82px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(246, 239, 226, 0.14);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 158px;
  min-width: 158px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: #f4f1eb;
}

.brand-lockup img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-lockup span {
  max-width: 78px;
  color: rgba(246, 239, 226, 0.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.main-nav,
.header-actions,
.hero-actions,
.broadcast-dock,
.live-id,
.now-track,
.manifesto-marquee,
.section-label,
.panel-top,
.events-head,
.segmented-control,
.site-footer {
  display: flex;
  align-items: center;
}

.main-nav {
  justify-content: center;
  gap: 34px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(246, 239, 226, 0.74);
}

.main-nav a:hover {
  color: var(--acid);
}

.header-actions {
  justify-content: flex-end;
  gap: 12px;
}

.icon-button,
.listen-pill,
.play-control,
.playlist-panel article > a {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 239, 226, 0.18);
  background: rgba(246, 239, 226, 0.06);
  color: var(--paper);
}

.social-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(246, 239, 226, 0.14);
  border-radius: 999px;
  background: rgba(246, 239, 226, 0.055);
}

.social-strip a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-strip img {
  width: 21px;
  height: 21px;
  filter: invert(1) grayscale(1) brightness(1.45);
  opacity: 0.78;
  transition:
    filter 180ms ease,
    opacity 180ms ease;
}

.social-strip a:hover {
  background: var(--acid);
  transform: translateY(-2px);
}

.social-strip a:hover img {
  filter: invert(0) grayscale(1) brightness(0.1);
  opacity: 1;
}

.listen-pill,
.solid-action,
.outline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
}

.listen-pill {
  padding: 0 20px;
  background: var(--acid);
  color: var(--black);
}

.call-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(226, 31, 38, 0.72);
  border-radius: 999px;
  background: rgba(226, 31, 38, 0.14);
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.call-pill svg {
  width: 17px;
  height: 17px;
  color: var(--acid);
}

.call-pill:hover,
.call-pill.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 7px rgba(226, 31, 38, 0.14);
  transform: translateY(-2px);
}

.call-pill:hover svg,
.call-pill.is-active svg {
  color: var(--white);
}

.solid-action {
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  padding: 0 24px;
  box-shadow: 0 16px 36px rgba(226, 31, 38, 0.28);
}

.outline-action {
  border: 1px solid rgba(246, 239, 226, 0.34);
  background: rgba(246, 239, 226, 0.08);
  color: var(--paper);
  padding: 0 22px;
}

.icon-button svg,
.listen-pill svg,
.solid-action svg,
.outline-action svg,
.play-control svg,
.playlist-panel article > a svg {
  width: 18px;
  height: 18px;
}

.main-nav a,
.icon-button,
.listen-pill,
.solid-action,
.outline-action,
.play-control,
.stack-card,
.manifesto-grid a,
.song-row,
.club-card,
.event-card,
.field-card,
.value-card,
.show-card,
.site-footer a {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.icon-button:hover,
.listen-pill:hover,
.solid-action:hover,
.outline-action:hover,
.play-control:hover,
.site-footer a:hover {
  transform: translateY(-2px);
}

.listen-pill:hover,
.play-control:hover {
  box-shadow: 0 0 0 8px rgba(215, 255, 47, 0.13);
}

.solid-action:hover {
  box-shadow: 0 20px 46px rgba(226, 31, 38, 0.42);
}

.outline-action:hover,
.icon-button:hover {
  border-color: rgba(215, 255, 47, 0.7);
  color: var(--acid);
}

.call-page {
  min-height: 100svh;
}

.call-stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 118px 42px 34px;
  isolation: isolate;
}

.call-backdrop,
.call-noise,
.call-stage::before,
.call-stage::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.call-backdrop {
  z-index: -4;
}

.call-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: brightness(0.78) contrast(1.08) saturate(0.82);
}

.call-stage::before {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.82) 45%, rgba(5, 5, 5, 0.46) 76%, rgba(5, 5, 5, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.94));
  content: "";
}

.call-stage::after {
  z-index: -2;
  background:
    linear-gradient(rgba(246, 239, 226, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 226, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(90deg, black, rgba(0, 0, 0, 0.48));
}

.call-noise {
  z-index: -1;
  opacity: 0.34;
  background: repeating-linear-gradient(
    -7deg,
    transparent 0,
    transparent 16px,
    rgba(226, 31, 38, 0.11) 17px,
    transparent 18px
  );
}

.call-stage-inner {
  display: grid;
  grid-template-rows: auto minmax(420px, 1fr) auto;
  width: min(1280px, 100%);
  min-height: calc(100svh - 152px);
  margin: 0 auto;
}

.call-status-line {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(246, 239, 226, 0.24);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.call-status-line strong {
  color: var(--acid);
}

.call-status-line > span:last-child {
  margin-left: auto;
  color: rgba(246, 239, 226, 0.62);
}

.call-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(226, 31, 38, 0.16);
  animation: call-live-pulse 1.7s ease-in-out infinite;
}

.call-stage[data-call-status="offline"] .call-live-dot {
  background: rgba(246, 239, 226, 0.46);
  box-shadow: 0 0 0 7px rgba(246, 239, 226, 0.08);
  animation: none;
}

.call-stage[data-call-status="full"] .call-live-dot {
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(226, 31, 38, 0.13);
  animation: none;
}

.call-stage[data-call-status="full"] .call-status-line strong {
  color: var(--white);
}

.call-stage[data-call-status="offline"] .call-status-line strong {
  color: rgba(246, 239, 226, 0.72);
}

.call-stage[data-call-status="loading"] .call-live-dot,
.call-stage[data-call-status="error"] .call-live-dot {
  background: rgba(246, 239, 226, 0.4);
  box-shadow: 0 0 0 7px rgba(246, 239, 226, 0.07);
  animation: none;
}

.call-stage[data-call-status="active"] .call-live-dot {
  background: var(--acid);
  box-shadow: 0 0 0 7px rgba(215, 255, 47, 0.13);
}

.call-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  padding: 42px 0 36px;
}

.call-copy {
  max-width: 790px;
}

.call-copy h1 {
  max-width: 790px;
  margin: 8px 0 20px;
  color: var(--white);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(4.9rem, 9vw, 9.6rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.call-copy > p:not(.kicker) {
  max-width: 620px;
  margin: 0;
  color: rgba(246, 239, 226, 0.8);
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  line-height: 1.45;
}

.call-caller-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 26px;
}

.call-copy [hidden] {
  display: none !important;
}

.call-caller-form label {
  display: grid;
  gap: 8px;
}

.call-caller-form label > span {
  color: rgba(246, 239, 226, 0.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.call-caller-form small {
  color: rgba(246, 239, 226, 0.42);
  font-size: 0.58rem;
}

.call-caller-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(246, 239, 226, 0.22);
  border-radius: 4px;
  outline: 0;
  background: rgba(5, 5, 5, 0.74);
  color: var(--white);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.call-caller-form input::placeholder {
  color: rgba(246, 239, 226, 0.36);
}

.call-caller-form input:focus {
  border-color: var(--acid);
  background: rgba(5, 5, 5, 0.92);
  box-shadow: 0 0 0 3px rgba(215, 255, 47, 0.12);
}

.call-listening-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 590px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 239, 226, 0.18);
  color: rgba(246, 239, 226, 0.6);
  font-size: 0.84rem;
  line-height: 1.5;
}

.call-listening-note svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--acid);
}

.call-control-zone {
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 0;
  min-height: 390px;
}

.call-control-zone [hidden] {
  display: none !important;
}

.call-ready-actions {
  display: grid;
  justify-items: center;
  width: 100%;
}

.call-primary {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 13px;
  width: clamp(196px, 19vw, 246px);
  aspect-ratio: 1;
  padding: 24px;
  border: 0;
  border-radius: 50%;
  background: var(--acid);
  color: var(--black);
  box-shadow:
    0 0 0 12px rgba(215, 255, 47, 0.1),
    0 26px 80px rgba(0, 0, 0, 0.52);
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease,
    opacity 180ms ease;
}

.call-primary::before,
.call-primary::after {
  position: absolute;
  inset: -22px;
  border: 1px solid rgba(215, 255, 47, 0.36);
  border-radius: 50%;
  content: "";
  animation: call-ring 2.4s ease-out infinite;
}

.call-primary::after {
  animation-delay: 1.2s;
}

.call-primary:hover {
  transform: scale(1.035) rotate(-1deg);
  box-shadow:
    0 0 0 15px rgba(215, 255, 47, 0.14),
    0 30px 90px rgba(0, 0, 0, 0.58);
}

.call-primary:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 8px;
}

.call-primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.call-primary-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 2px solid rgba(5, 5, 5, 0.72);
  border-radius: 50%;
}

.call-primary-icon svg {
  width: 30px;
  height: 30px;
}

.call-primary strong {
  max-width: 150px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.94rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.call-primary [data-lucide="loader-circle"] {
  animation: call-spin 900ms linear infinite;
}

.call-message-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 18px;
  border: 1px solid rgba(246, 239, 226, 0.28);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.68);
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.call-message-action:hover {
  border-color: var(--red);
  background: rgba(226, 31, 38, 0.17);
  color: var(--acid);
  transform: translateY(-2px);
}

.call-message-action svg {
  width: 17px;
  height: 17px;
}

.call-helper {
  max-width: 270px;
  margin: 28px 0 0;
  color: rgba(246, 239, 226, 0.62);
  font-size: 0.8rem;
  line-height: 1.45;
  text-align: center;
}

.call-session,
.call-review,
.call-success {
  width: min(100%, 390px);
}

.call-on-air,
.call-recording-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.call-on-air i,
.call-recording-indicator i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(226, 31, 38, 0.15);
  animation: call-live-pulse 1.25s ease-in-out infinite;
}

.call-recording-indicator {
  color: var(--acid);
}

.call-session-readout {
  display: grid;
  justify-items: center;
  gap: 15px;
  padding: 28px 0;
  border-top: 1px solid rgba(246, 239, 226, 0.2);
  border-bottom: 1px solid rgba(246, 239, 226, 0.2);
}

.call-session-readout strong {
  color: var(--white);
  font-size: 1.2rem;
}

.call-session-readout strong:empty {
  display: none;
}

.call-session-readout time {
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 2rem;
  font-weight: 700;
}

.call-session-readout time[hidden],
.call-connection-progress[hidden],
.call-levels[hidden] {
  display: none !important;
}

.call-connection-progress {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 28px;
}

.call-connection-progress i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(215, 255, 47, 0.28);
  box-shadow: 0 0 0 rgba(215, 255, 47, 0);
  animation: call-connection-pulse 1.15s ease-in-out infinite;
}

.call-connection-progress i:nth-child(2) {
  animation-delay: 150ms;
}

.call-connection-progress i:nth-child(3) {
  animation-delay: 300ms;
}

.call-levels {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 28px;
}

.call-levels i {
  width: 6px;
  height: 9px;
  background: var(--red);
  animation: call-level 760ms ease-in-out infinite alternate;
}

.call-levels i:nth-child(2),
.call-levels i:nth-child(5) {
  animation-delay: 120ms;
}

.call-levels i:nth-child(3) {
  animation-delay: 260ms;
}

.call-levels i:nth-child(4) {
  animation-delay: 380ms;
}

@keyframes call-connection-pulse {
  0%,
  68%,
  100% {
    background: rgba(215, 255, 47, 0.25);
    box-shadow: 0 0 0 rgba(215, 255, 47, 0);
    transform: scale(0.72);
  }
  34% {
    background: var(--acid);
    box-shadow: 0 0 16px rgba(215, 255, 47, 0.42);
    transform: scale(1);
  }
}

.call-session-actions,
.call-review-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.call-prompt-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  margin-top: 20px;
  border: 1px solid rgba(215, 255, 47, 0.68);
  border-radius: 12px;
  background: var(--acid);
  color: #050505;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(215, 255, 47, 0.16);
}

.call-prompt-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(215, 255, 47, 0.22);
}

.call-prompt-action svg {
  width: 20px;
  height: 20px;
}

.call-session-actions button,
.call-review-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid rgba(246, 239, 226, 0.24);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  font-weight: 700;
}

.call-session-actions button svg,
.call-review-actions button svg {
  width: 17px;
  height: 17px;
}

.call-session-actions .is-end,
.call-review-actions .is-send {
  border-color: var(--red);
  background: var(--red);
}

.call-session-actions button[aria-pressed="true"] {
  border-color: var(--acid);
  color: var(--acid);
}

.call-session-note {
  max-width: 300px;
  margin: 16px auto 0;
  color: rgba(246, 239, 226, 0.55);
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: center;
}

.airwall-remote-audio {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.call-review audio {
  width: 100%;
  min-height: 48px;
}

.call-success {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 24px 0;
  border-top: 1px solid rgba(215, 255, 47, 0.4);
  border-bottom: 1px solid rgba(215, 255, 47, 0.4);
}

.call-success > svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--black);
}

.call-success strong,
.call-success span {
  display: block;
}

.call-success strong {
  color: var(--white);
  font-size: 1.15rem;
}

.call-success span {
  margin-top: 4px;
  color: rgba(246, 239, 226, 0.64);
  font-size: 0.82rem;
}

.call-error {
  max-width: 360px;
  margin: 22px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  background: rgba(226, 31, 38, 0.12);
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.45;
}

.call-release {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 239, 226, 0.24);
}

.call-release strong {
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.call-release p {
  max-width: 990px;
  margin: 0;
  color: rgba(246, 239, 226, 0.52);
  font-size: 0.69rem;
  line-height: 1.48;
}

.call-footer {
  background: #050505;
}

@keyframes call-live-pulse {
  0%, 100% { box-shadow: 0 0 0 7px rgba(226, 31, 38, 0.12); }
  50% { box-shadow: 0 0 0 11px rgba(226, 31, 38, 0.22); }
}

@keyframes call-ring {
  0% { opacity: 0.72; transform: scale(0.94); }
  70%, 100% { opacity: 0; transform: scale(1.16); }
}

@keyframes call-spin {
  to { transform: rotate(360deg); }
}

@keyframes call-level {
  from { height: 8px; }
  to { height: 28px; }
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  padding: 126px 42px 48px;
  isolation: isolate;
}

.hero-media,
.poster-ink {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  filter: grayscale(0.12) contrast(1.18) saturate(1.2);
  transform: scale(1.08);
  transition: opacity 2600ms ease;
  will-change: opacity;
}

.hero-media img.is-active {
  opacity: 1;
}

.hero-media img[data-hero-scene="festival-sign"] {
  object-position: center center;
  filter: contrast(1.12) saturate(1.08) brightness(1.02);
}

.hero-media img[data-hero-scene="defazio"] {
  object-position: 54% center;
  filter: contrast(1.14) saturate(1.04) brightness(1.06);
}

.hero-media img[data-hero-scene="cuthbert"],
.hero-media img[data-hero-scene="wow-live"] {
  object-position: center 48%;
  filter: contrast(1.12) saturate(1.12) brightness(1.04);
}

.hero-media img[data-hero-scene="emx-night"],
.hero-media img[data-hero-scene="mcdonald-framed"],
.hero-media img[data-hero-scene="mcdonald-wide"],
.hero-media img[data-hero-scene="mcdonald-street"],
.hero-media img[data-hero-scene="emx-punk"],
.hero-media img[data-hero-scene="emx-commute"],
.hero-media img[data-hero-scene="station-mural"] {
  object-position: center center;
  filter: contrast(1.12) saturate(1.08) brightness(1.1);
}

.hero-media img[data-hero-scene="hayward"] {
  top: 2%;
  right: clamp(72px, 8vw, 130px);
  bottom: auto;
  left: auto;
  width: auto;
  height: 96%;
  object-fit: contain;
  object-position: right center;
  filter: contrast(1.1) saturate(1.08) brightness(1.04);
  transform: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.hero-media img[data-hero-scene="wow-band"] {
  top: 4%;
  right: clamp(82px, 8vw, 132px);
  bottom: auto;
  left: auto;
  width: auto;
  height: 92%;
  object-fit: contain;
  object-position: right center;
  filter: grayscale(0.7) contrast(1.12) brightness(1.08);
  transform: none;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 8%, #000 20%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 8%, #000 20%, #000 100%);
}

.hero-media img[data-hero-scene="picnic"] {
  object-position: center center;
  filter: grayscale(0.04) contrast(1.14) saturate(1.14) brightness(0.96);
}

.hero-media img[data-hero-scene="theatre"] {
  object-position: 36% 58%;
  filter: grayscale(0.06) contrast(1.23) saturate(1.24) brightness(1.02);
  transform: translateX(6.25%) scale(1.08);
}

.hero-media img[data-hero-scene="theatre-live"] {
  object-position: center center;
  filter: grayscale(0.04) contrast(1.24) saturate(1.18) brightness(1.02);
  transform: none;
}

.hero-media img[data-hero-scene="metro-band"] {
  top: 10%;
  right: clamp(104px, 10vw, 168px);
  bottom: auto;
  left: auto;
  width: auto;
  height: 74%;
  object-fit: contain;
  object-position: center top;
  filter: grayscale(1) contrast(1.16) brightness(1.32);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 5%, #000 12%, #000 100%);
  transform: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 5%, #000 12%, #000 100%);
}

.hero-media img[data-hero-scene="cafe"] {
  top: 4%;
  right: clamp(128px, 11vw, 172px);
  bottom: auto;
  left: auto;
  width: auto;
  height: 92%;
  object-fit: contain;
  object-position: right center;
  filter: grayscale(0.02) contrast(1.16) saturate(1.1) brightness(0.98);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.34) 9%, #000 24%, #000 100%);
  transform: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.34) 9%, #000 24%, #000 100%);
}

.hero-media img[data-hero-scene="damen"] {
  object-position: center center;
  filter: grayscale(0.02) contrast(1.16) saturate(1.18) brightness(1.36);
  transform: none;
}

.hero-media img[data-hero-scene="festival"] {
  object-position: center 54%;
  filter: grayscale(0.04) contrast(1.12) saturate(1.08) brightness(0.96);
}

.hero-media img[data-hero-scene="bean"] {
  top: -5%;
  right: clamp(88px, 12vw, 176px);
  bottom: -5%;
  left: auto;
  width: auto;
  height: 110%;
  object-fit: contain;
  object-position: right center;
  filter: grayscale(0.02) contrast(1.12) saturate(1.1) brightness(0.98);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 9%, #000 20%, #000 100%);
  transform: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 9%, #000 20%, #000 100%);
}

.hero-media img[data-hero-scene="nightclub"] {
  object-position: center center;
  filter: grayscale(0.02) contrast(1.18) saturate(1.16) brightness(0.94);
}

.hero-media img[data-hero-scene="cta-train"] {
  object-position: 54% center;
  filter: grayscale(0.02) contrast(1.12) saturate(1.1) brightness(1.12);
  transform: none;
}

.poster-ink {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.7) 47%, rgba(5, 5, 5, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.22) 58%, rgba(5, 5, 5, 0.62) 100%);
}

.hero[data-hero-scene="bean"] .poster-ink {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.96) 34%, rgba(5, 5, 5, 0.52) 58%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.12) 58%, rgba(5, 5, 5, 0.5) 100%);
}

.hero[data-hero-scene="cafe"] .poster-ink {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.95) 38%, rgba(5, 5, 5, 0.5) 64%, rgba(5, 5, 5, 0.14) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.16) 58%, rgba(5, 5, 5, 0.5) 100%);
}

.hero[data-hero-scene="damen"] .poster-ink {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.58) 38%, rgba(5, 5, 5, 0.14) 66%, rgba(5, 5, 5, 0.02) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.02) 58%, rgba(5, 5, 5, 0.18) 100%);
}

.hero[data-hero-scene="cta-train"] .poster-ink {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.62) 43%, rgba(5, 5, 5, 0.12) 72%, rgba(5, 5, 5, 0.04) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.08) 58%, rgba(5, 5, 5, 0.28) 100%);
}

.hero[data-hero-scene="metro-band"] .poster-ink {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.58) 43%, rgba(5, 5, 5, 0.18) 72%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.1) 58%, rgba(5, 5, 5, 0.26) 100%);
}

.poster-ink::after {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    repeating-linear-gradient(0deg, rgba(246, 239, 226, 0.12) 0 1px, transparent 1px 7px),
    linear-gradient(120deg, transparent 0 58%, rgba(226, 31, 38, 0.72) 58% 66%, transparent 66%);
  mix-blend-mode: screen;
  content: "";
}

.frequency-ruler {
  position: absolute;
  top: 118px;
  right: 30px;
  bottom: 140px;
  z-index: 2;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  align-items: center;
  width: 88px;
  border-left: 1px solid rgba(246, 239, 226, 0.26);
  color: rgba(246, 239, 226, 0.52);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.frequency-ruler span,
.frequency-ruler strong,
.frequency-skip {
  position: relative;
  padding-left: 16px;
}

.frequency-ruler span::before,
.frequency-ruler strong::before,
.frequency-skip::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 1px;
  background: currentColor;
  content: "";
}

.frequency-ruler strong {
  color: var(--acid);
  font-size: 0.86rem;
}

.frequency-skip {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--acid);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: left;
  cursor: default;
}

.frequency-skip:focus {
  outline: 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 840px;
}

.kicker,
.section-label,
.panel-top a,
.event-body span,
.value-list span,
.shows-grid span,
.date-chip span,
.manifesto-grid span,
.live-id span,
.now-track span,
.club-form span,
.club-form legend {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 18px;
  color: var(--acid);
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
}

.nrq-logo-mark {
  display: block;
  width: min(54vw, 500px);
  padding: clamp(12px, 1.8vw, 20px);
  border-radius: 5px;
  background: #f4f1eb;
  box-shadow: 12px 18px 34px rgba(0, 0, 0, 0.34);
}

.nrq-logo-mark img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.hero-logo {
  width: min(54vw, 500px);
  filter: drop-shadow(12px 18px 34px rgba(0, 0, 0, 0.42));
}

.brand-line {
  margin: 16px 0 0;
  color: var(--red);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.35rem, 6vw, 6.2rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-statement {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(246, 239, 226, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  font-weight: 500;
  line-height: 1.42;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.motion-ready.site-loaded .site-header {
  animation: header-drop 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-ready.site-loaded .hero-media {
  animation: hero-image-in 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-ready.site-loaded .poster-ink::after {
  animation: poster-strike 1120ms cubic-bezier(0.7, 0, 0.2, 1) both;
}

.motion-ready.site-loaded .frequency-ruler {
  animation: frequency-rise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 520ms both;
}

.motion-ready.site-loaded .hero-copy .kicker {
  animation: hero-rise 660ms cubic-bezier(0.2, 0.8, 0.2, 1) 300ms both;
}

.motion-ready.site-loaded .hero-logo {
  animation: hero-lock 720ms steps(4, end) 420ms both;
}

.motion-ready.site-loaded .brand-line {
  animation: hero-rise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 560ms both;
}

.motion-ready.site-loaded .hero-statement {
  animation: hero-rise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 690ms both;
}

.motion-ready.site-loaded .hero-actions {
  animation: hero-rise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 820ms both;
}

.image-stack {
  position: absolute;
  right: 122px;
  bottom: 40px;
  z-index: 4;
  display: grid;
  grid-template-columns: 150px 190px;
  grid-template-rows: 116px 148px;
  gap: 12px;
  transform: rotate(-2deg);
}

.stack-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 226, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stack-card span,
.stack-card strong {
  position: relative;
  z-index: 2;
}

.stack-card span {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stack-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  line-height: 1.04;
}

.card-red,
.card-acid {
  padding: 16px;
}

.card-red {
  background: var(--red);
  color: var(--white);
}

.card-photo {
  grid-row: span 2;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.12) saturate(1.08);
}

.card-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(5, 5, 5, 0.88));
  content: "";
}

.card-photo span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: var(--white);
}

.lounge-button-card::after {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.82));
}

.lounge-button-card img,
.event-card img.lounge-poster-art {
  object-position: center center;
  filter: contrast(1.08) saturate(1.05) brightness(0.98);
}

.lounge-button-card img {
  object-position: center center;
}

.card-acid {
  background: var(--acid);
  color: var(--black);
}

.motion-ready.site-loaded .image-stack .stack-card {
  animation: stack-pop 760ms cubic-bezier(0.18, 0.9, 0.18, 1.18) both;
}

.motion-ready.site-loaded .image-stack .stack-card:nth-child(1) {
  animation-delay: 880ms;
}

.motion-ready.site-loaded .image-stack .stack-card:nth-child(2) {
  animation-delay: 980ms;
}

.motion-ready.site-loaded .image-stack .stack-card:nth-child(3) {
  animation-delay: 1080ms;
}

.stack-card:hover,
.manifesto-grid a:hover,
.song-row:hover,
.club-card:hover,
.event-card:hover,
.field-card:hover,
.value-card:hover,
.show-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.card-photo img,
.event-card img,
.history-feature img,
.show-card img {
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-photo:hover img,
.event-card:hover img,
.history-feature:hover img,
.show-card:hover img {
  transform: scale(1.045);
}

.broadcast-dock {
  position: sticky;
  top: 82px;
  z-index: 55;
  gap: 26px;
  min-height: 96px;
  padding: 14px 42px;
  border-top: 1px solid rgba(246, 239, 226, 0.16);
  border-bottom: 1px solid rgba(246, 239, 226, 0.16);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(18px);
}

.live-id {
  min-width: 210px;
  gap: 14px;
}

.pulse-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 9px rgba(226, 31, 38, 0.16);
}

.live-id span,
.now-track span {
  display: block;
  margin-bottom: 4px;
  color: rgba(246, 239, 226, 0.55);
  font-size: 0.68rem;
}

.live-id strong,
.now-track strong {
  display: block;
  color: var(--white);
  line-height: 1;
}

.now-track {
  min-width: 250px;
  gap: 14px;
}

.now-track img {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  object-fit: cover;
}

.now-track img.is-station-art,
.playlist-panel img.is-station-art,
.player-now-card img.is-station-art {
  box-sizing: border-box;
  padding: 5px;
  background: #f4f1eb;
  object-fit: contain;
}

.player-now-card img.is-station-art {
  padding: clamp(18px, 4vw, 46px);
}

.now-track p {
  margin: 4px 0 0;
  color: rgba(246, 239, 226, 0.7);
}

.wave-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(9px, 1fr));
  align-items: center;
  gap: 5px;
  height: 52px;
  flex: 1;
  overflow: hidden;
  isolation: isolate;
}

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

.wave-wrap::before {
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(246, 239, 226, 0.44), transparent);
  opacity: 0.55;
  transform: translateY(-50%);
}

.wave-wrap::after {
  background:
    repeating-linear-gradient(90deg, transparent 0 19px, rgba(226, 31, 38, 0.42) 19px 21px),
    linear-gradient(90deg, transparent 0 18%, rgba(215, 255, 47, 0.18) 38%, rgba(54, 183, 255, 0.12) 56%, transparent 78%);
  mix-blend-mode: screen;
  opacity: 0;
}

.wave-wrap span {
  position: relative;
  z-index: 1;
  display: block;
  height: 10px;
  border-radius: 1px;
  background:
    linear-gradient(180deg, var(--paper) 0 8%, var(--acid) 8% 48%, var(--red) 48% 100%);
  clip-path: polygon(0 16%, 18% 0, 30% 12%, 43% 0, 58% 14%, 72% 0, 100% 20%, 100% 82%, 82% 100%, 66% 84%, 49% 100%, 32% 86%, 17% 100%, 0 78%);
  opacity: 0.9;
  box-shadow:
    0 0 16px rgba(226, 31, 38, 0.32),
    0 0 22px rgba(215, 255, 47, 0.2);
  transform-origin: center;
}

.wave-wrap span:nth-child(2) { height: 30px; }
.wave-wrap span:nth-child(3) { height: 16px; }
.wave-wrap span:nth-child(4) { height: 46px; }
.wave-wrap span:nth-child(5) { height: 24px; }
.wave-wrap span:nth-child(6) { height: 40px; }
.wave-wrap span:nth-child(7) { height: 14px; }
.wave-wrap span:nth-child(8) { height: 48px; }
.wave-wrap span:nth-child(9) { height: 20px; }
.wave-wrap span:nth-child(10) { height: 34px; }
.wave-wrap span:nth-child(11) { height: 18px; }
.wave-wrap span:nth-child(12) { height: 42px; }

.broadcast-dock.is-stream-active .wave-wrap span {
  animation: signal-teeth 720ms steps(2, end) infinite alternate;
}

.broadcast-dock.is-stream-active .wave-wrap::after {
  animation: signal-scratch 1200ms steps(3, end) infinite;
}

.broadcast-dock.is-stream-active .wave-wrap span:nth-child(2n) {
  animation-duration: 480ms;
}

.broadcast-dock.is-stream-active .wave-wrap span:nth-child(3n) {
  animation-duration: 860ms;
  animation-delay: 90ms;
}

.broadcast-dock.is-connecting .wave-wrap,
.broadcast-dock.is-buffering .wave-wrap {
  opacity: 0.72;
}

.broadcast-dock.is-connecting .wave-wrap span,
.broadcast-dock.is-buffering .wave-wrap span {
  filter: grayscale(0.25);
}

.broadcast-dock.is-connecting .wave-wrap::after,
.broadcast-dock.is-buffering .wave-wrap::after {
  opacity: 0.38;
  animation: buffer-scan 1050ms steps(3, end) infinite;
}

.play-control.is-loading svg,
.native-stream-button.is-loading svg {
  animation: player-loader-spin 900ms linear infinite;
}

@keyframes signal-teeth {
  0% {
    filter: contrast(1.3) saturate(1.2);
    transform: translateY(2px) scaleY(0.5) skewX(-7deg);
  }
  52% {
    filter: contrast(1.8) saturate(1.45);
    transform: translateY(-2px) scaleY(1.16) skewX(4deg);
  }
  100% {
    filter: contrast(1.45) saturate(1.35);
    transform: translateY(0) scaleY(0.88) skewX(-2deg);
  }
}

@keyframes signal-scratch {
  0% {
    opacity: 0.18;
    transform: translateX(-18px);
  }
  36% {
    opacity: 0.55;
    transform: translateX(18px);
  }
  100% {
    opacity: 0.24;
    transform: translateX(0);
  }
}

@keyframes player-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes buffer-scan {
  0% {
    opacity: 0;
    transform: translateX(-110%) skewX(-12deg);
  }
  22% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: translateX(110%) skewX(-12deg);
  }
}

@keyframes loader-scan {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-16deg);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120%) skewX(-16deg);
  }
}

@keyframes mark-lock {
  0% {
    opacity: 0;
    filter: blur(16px);
    transform: scale(0.9) skewX(-7deg);
  }
  35% {
    opacity: 1;
    filter: blur(2px);
    transform: translateX(8px) scale(1.03);
  }
  58% {
    transform: translateX(-5px) scale(0.99);
    text-shadow:
      -9px 0 0 rgba(226, 31, 38, 0.74),
      6px 0 0 rgba(54, 183, 255, 0.5);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1);
  }
}

@keyframes tuner-line {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  72% {
    opacity: 1;
    transform: scaleX(1.08);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes header-drop {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-image-in {
  from {
    filter: grayscale(0.4) contrast(1.45) saturate(0.9) blur(12px);
    transform: scale(1.16);
  }
  to {
    filter: grayscale(0.12) contrast(1.18) saturate(1.2) blur(0);
    transform: scale(1.06);
  }
}

@keyframes poster-strike {
  0% {
    opacity: 0;
    transform: translateX(-18%) skewX(-12deg);
  }
  42% {
    opacity: 0.72;
  }
  100% {
    opacity: 0.34;
    transform: translateX(0) skewX(0);
  }
}

@keyframes frequency-rise {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-lock {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translateY(24px) scale(0.96);
  }
  38% {
    opacity: 1;
    filter: blur(2px);
    transform: translateX(7px) scale(1.01);
  }
  62% {
    transform: translateX(-5px) scale(1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1);
  }
}

@keyframes stack-pop {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(26px, 32px, 0) rotate(4deg) scale(0.88);
  }
  72% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(-3px, -5px, 0) rotate(-1deg) scale(1.025);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

.play-control {
  width: 58px;
  height: 58px;
  border: 0;
  background: var(--acid);
  color: var(--black);
}

.manifesto {
  overflow: hidden;
  background: var(--paper);
  color: var(--black);
}

.community-thread {
  position: relative;
  overflow: hidden;
  padding: 86px 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.7)),
    url("./hero-image-options/02-nrq-defazio-bridge-banner.jpg") center/cover;
}

.community-thread::after {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(rgba(246, 239, 226, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 226, 0.11) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
}

.community-thread > * {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.community-thread h2 {
  margin: 0;
  color: var(--white);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 8.6rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.community-thread p:last-child {
  max-width: 820px;
  margin-top: 26px;
  color: rgba(246, 239, 226, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.48;
}

.manifesto-marquee {
  gap: 40px;
  width: max-content;
  padding: 18px 0;
  color: var(--red);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.85;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.manifesto-marquee span {
  padding-right: 40px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-42%); }
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(5, 5, 5, 0.14);
}

.manifesto-grid a {
  min-height: 156px;
  padding: 24px;
  border-right: 1px solid rgba(5, 5, 5, 0.14);
}

.manifesto-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 0.72rem;
}

.manifesto-grid strong {
  display: block;
  max-width: 260px;
  font-size: 1.18rem;
  line-height: 1.16;
}

.section {
  padding: 92px 42px;
}

.reveal-ready {
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, 44px, 0);
  transition:
    opacity 760ms ease,
    filter 820ms ease,
    transform 860ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, filter, transform;
}

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

.section-label {
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: rgba(246, 239, 226, 0.62);
  font-size: 0.72rem;
}

.music-section .section-label {
  margin-bottom: 30px;
}

.music-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
}

.history-feature {
  position: relative;
  display: grid;
  min-height: 610px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.history-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.history-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.94) 80%);
  content: "";
}

.history-feature div {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 36px;
}

.history-feature h2,
.club-copy h2,
.events-head h2,
.value-copy h2 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.55rem, 5.4vw, 5.5rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.history-feature p:not(.kicker),
.club-copy p,
.value-copy p,
.shows-grid p {
  color: rgba(246, 239, 226, 0.74);
  font-size: 1.05rem;
  line-height: 1.55;
}

.playlist-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 239, 226, 0.065);
}

.panel-top {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.panel-top h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.4rem;
}

.panel-top a {
  color: var(--acid);
  font-size: 0.72rem;
}

.playlist-panel article {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.34);
}

.playlist-panel img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.song-info {
  min-width: 0;
}

.playlist-panel article span,
.song-info span {
  display: block;
  color: rgba(246, 239, 226, 0.55);
  font-size: 0.72rem;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  text-transform: uppercase;
}

.playlist-panel strong,
.song-info strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.playlist-panel p,
.song-info p {
  margin: 2px 0 0;
  color: rgba(246, 239, 226, 0.68);
  overflow-wrap: anywhere;
}

.song-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.service-link {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(246, 239, 226, 0.18);
  border-radius: 999px;
  background: rgba(246, 239, 226, 0.08);
  color: var(--paper);
}

.playlist-panel .service-link img,
.history-modal-list .service-link img,
.player-music-links .service-link img {
  width: 19px;
  height: 19px;
  border-radius: 0;
  object-fit: contain;
}

.spotify-link {
  background: rgba(30, 215, 96, 0.12);
  border-color: rgba(30, 215, 96, 0.36);
  color: #1ed760;
}

.apple-link {
  background: rgba(250, 36, 60, 0.12);
  border-color: rgba(250, 36, 60, 0.36);
  color: #ff5b71;
}

.service-link:hover {
  border-color: rgba(215, 255, 47, 0.7);
  background: var(--acid);
  color: var(--black);
}

.history-modal-open {
  overflow: hidden;
}

.history-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.history-modal[hidden] {
  display: none;
}

.history-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.history-modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
}

.history-modal-shell {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(920px, 96vw);
  max-height: min(82vh, 860px);
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(246, 239, 226, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.96), rgba(5, 5, 5, 0.98)),
    repeating-linear-gradient(0deg, rgba(246, 239, 226, 0.08) 0 1px, transparent 1px 8px);
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.62);
  transform: translateY(18px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.history-modal-shell:focus {
  outline: none;
}

.history-modal.is-open .history-modal-shell {
  transform: translateY(0) scale(1);
}

.history-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 239, 226, 0.2);
  border-radius: 999px;
  background: rgba(246, 239, 226, 0.08);
  color: var(--paper);
}

.history-modal-head {
  max-width: 650px;
  padding-right: 54px;
}

.history-modal-head span,
.history-empty {
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.history-modal-head h2 {
  margin: 8px 0 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.history-modal-head p {
  margin: 14px 0 0;
  color: rgba(246, 239, 226, 0.68);
}

.history-modal-list {
  display: grid;
  gap: 8px;
  max-height: min(56vh, 560px);
  overflow: auto;
  padding-right: 6px;
  scrollbar-gutter: stable;
}

.history-modal-list .song-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 12px 14px;
  border: 1px solid rgba(246, 239, 226, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(246, 239, 226, 0.07), rgba(246, 239, 226, 0.025)),
    rgba(5, 5, 5, 0.42);
}

.history-modal-list .song-row:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(215, 255, 47, 0.24);
  background:
    linear-gradient(90deg, rgba(215, 255, 47, 0.08), rgba(246, 239, 226, 0.03)),
    rgba(5, 5, 5, 0.62);
}

.history-modal-list .song-row > img {
  width: 68px;
  height: 68px;
  border-radius: 6px;
  object-fit: cover;
}

.history-modal-list .song-info {
  display: grid;
  align-content: center;
  gap: 4px;
}

.history-modal-list .song-info span {
  color: var(--acid);
  font-size: 0.68rem;
}

.history-modal-list .song-info strong {
  margin: 0;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.08;
}

.history-modal-list .song-info p {
  margin: 0;
  color: rgba(246, 239, 226, 0.68);
  font-size: 0.94rem;
  line-height: 1.25;
}

.history-modal-list .song-actions {
  grid-column: auto;
  justify-content: end;
  flex-wrap: nowrap;
  min-width: 92px;
}

.history-modal-list .service-link {
  width: 42px;
  height: 42px;
}

.playlist-panel .song-row .service-link img,
.history-modal-list .song-row .service-link img {
  width: 19px;
  height: 19px;
  border-radius: 0;
  object-fit: contain;
}

.club-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 42px;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--red);
  color: var(--white);
}

.club-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

.club-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.4);
}

.club-copy,
.club-form {
  position: relative;
  z-index: 2;
}

.club-copy {
  max-width: 820px;
}

.club-copy .kicker {
  color: var(--acid);
}

.club-copy p {
  max-width: 720px;
  color: rgba(255, 253, 246, 0.86);
}

.club-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 246, 0.24);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.club-form label,
.club-form fieldset {
  display: grid;
  gap: 8px;
}

.club-form span,
.club-form legend {
  color: rgba(246, 239, 226, 0.68);
  font-size: 0.7rem;
}

.club-form input[type="email"],
.club-form input[type="text"] {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(246, 239, 226, 0.24);
  border-radius: 8px;
  background: rgba(246, 239, 226, 0.1);
  color: var(--paper);
  padding: 0 14px;
  outline: none;
}

.club-form input:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 4px rgba(215, 255, 47, 0.16);
}

.club-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.club-form fieldset label {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: rgba(246, 239, 226, 0.86);
  font-weight: 700;
}

.club-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--acid);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--acid);
  font-weight: 700;
}

.club-modal-open {
  overflow: hidden;
}

.club-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.club-modal[hidden] {
  display: none;
}

.club-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.club-modal-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(226, 31, 38, 0.42), transparent 30%),
    rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(14px);
}

.club-modal-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  width: min(980px, calc(100vw - 34px));
  max-height: calc(100vh - 34px);
  overflow: auto;
  border: 1px solid rgba(246, 239, 226, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(226, 31, 38, 0.24), transparent 46%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.9));
  box-shadow: var(--shadow);
  transform: translateY(24px) scale(0.98);
  transition: transform 180ms ease;
}

.club-modal.is-open .club-modal-shell {
  transform: translateY(0) scale(1);
}

.club-modal-shell::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(246, 239, 226, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 226, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
}

.club-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 239, 226, 0.22);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.7);
  color: var(--paper);
}

.club-modal-close svg {
  width: 18px;
  height: 18px;
}

.club-modal-copy,
.club-modal-form {
  position: relative;
  z-index: 2;
}

.club-modal-copy {
  padding: 44px 34px 38px 42px;
}

.club-modal-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.club-modal-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(246, 239, 226, 0.78);
  font-size: 1.04rem;
  line-height: 1.52;
}

.club-modal-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 58px;
  margin: 24px 0 18px;
}

.club-modal-signal span {
  width: 11%;
  height: 14px;
  border-radius: 1px;
  background:
    linear-gradient(180deg, var(--paper) 0 8%, var(--acid) 8% 48%, var(--red) 48% 100%);
  clip-path: polygon(0 16%, 18% 0, 30% 12%, 43% 0, 58% 14%, 72% 0, 100% 20%, 100% 82%, 82% 100%, 66% 84%, 49% 100%, 32% 86%, 17% 100%, 0 78%);
  box-shadow:
    0 0 16px rgba(226, 31, 38, 0.32),
    0 0 22px rgba(215, 255, 47, 0.2);
  transform-origin: center;
  animation: signal-teeth 720ms steps(2, end) infinite alternate;
}

.club-modal-signal span:nth-child(2n) {
  height: 34px;
  animation-delay: 120ms;
}

.club-modal-signal span:nth-child(3n) {
  height: 50px;
  animation-delay: 240ms;
}

.club-modal-perks {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(246, 239, 226, 0.16);
}

.club-modal-perks li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(246, 239, 226, 0.14);
}

.club-modal-perks span {
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.club-modal-perks strong {
  color: rgba(246, 239, 226, 0.88);
  line-height: 1.32;
}

.club-modal .club-form {
  align-self: stretch;
  margin: 0;
  padding: 78px 32px 34px;
  border: 0;
  border-left: 1px solid rgba(246, 239, 226, 0.18);
  border-radius: 0;
  background: rgba(5, 5, 5, 0.56);
  box-shadow: none;
}

.events-section {
  background: var(--black);
}

.events-head {
  justify-content: space-between;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto 28px;
}

.segmented-control {
  min-height: 48px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 239, 226, 0.06);
}

.segmented-control button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(246, 239, 226, 0.68);
  padding: 0 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.segmented-control button.active {
  background: var(--acid);
  color: var(--black);
}

.event-board {
  display: grid;
  grid-template-columns: 0.86fr 1.28fr 0.86fr;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.event-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 8px;
  background: var(--charcoal);
}

.event-card.is-hidden {
  display: none;
}

.event-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.08);
}

.event-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 5, 5, 0.92) 90%);
  content: "";
}

.date-chip,
.event-body {
  position: absolute;
  z-index: 2;
}

.date-chip {
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--black);
}

.date-chip strong {
  font-size: 1.85rem;
  line-height: 0.78;
}

.event-body {
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.event-body span {
  color: var(--blue);
  font-size: 0.72rem;
}

.event-body h3,
.value-list h3,
.shows-grid h3 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 1.62rem;
  line-height: 1.04;
}

.feature-event .event-body h3 {
  font-size: 2.35rem;
}

.event-body a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--acid);
  font-weight: 700;
}

.value-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  background: var(--paper);
  color: var(--black);
}

.value-poster img {
  width: min(520px, 100%);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(5, 5, 5, 0.22);
}

.value-copy .kicker {
  color: var(--red);
}

.value-copy h2 {
  color: var(--black);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.value-list article,
.shows-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: 8px;
}

.value-list article {
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.1);
}

.value-list span {
  color: var(--red);
  font-size: 0.72rem;
}

.value-list h3 {
  color: var(--black);
}

.value-list p {
  color: var(--dark-muted);
}

.shows-section {
  background: #16110d;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.shows-grid article {
  border: 1px solid var(--line);
  background: rgba(246, 239, 226, 0.055);
}

.shows-grid span {
  display: block;
  margin-bottom: 56px;
  color: var(--acid);
  font-size: 0.72rem;
}

.site-footer {
  justify-content: space-between;
  gap: 22px;
  padding: 30px 42px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 118px;
  height: auto;
  padding: 7px;
  border-radius: 4px;
  background: #f4f1eb;
}

.site-footer p {
  margin: 0;
  color: rgba(246, 239, 226, 0.68);
}

.site-footer a {
  color: var(--acid);
  font-weight: 700;
}

.field-section {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.72) 46%, rgba(5, 5, 5, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.36), rgba(22, 17, 13, 0.84)),
    url("./hero-image-options/05-nrq-wow-hall-live-show.jpg") center 42% / cover no-repeat;
}

.field-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto;
}

.field-copy h2,
.page-hero h1,
.interior-head h2 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
}

.field-copy h2,
.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  line-height: 0.86;
}

.field-copy p,
.page-hero p,
.interior-head p {
  color: rgba(246, 239, 226, 0.76);
  font-size: 1.08rem;
  line-height: 1.55;
}

.field-copy .outline-action {
  margin-top: 18px;
}

.field-board {
  display: grid;
  gap: 14px;
}

.field-board article,
.interior-card,
.show-card,
.drop-card,
.venue-card,
.feature-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 239, 226, 0.07);
  backdrop-filter: blur(16px);
}

.field-board article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
}

.field-board span,
.interior-card span,
.show-card span,
.drop-card span,
.venue-card span,
.feature-band span {
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.field-board strong {
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.04;
}

.field-board p {
  margin: 0;
  color: rgba(246, 239, 226, 0.68);
  line-height: 1.45;
}

.player-open {
  overflow: hidden;
}

.triton-player-host,
.ima-preroll-host {
  position: fixed;
  left: -10px;
  bottom: -10px;
  width: 2px;
  height: 2px;
  overflow: hidden;
  opacity: 0.001;
  pointer-events: none;
}

.triton-player-host,
.triton-player-host *,
.ima-preroll-host,
.ima-preroll-host * {
  max-width: 2px !important;
  max-height: 2px !important;
}

.player-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.player-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.player-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(226, 31, 38, 0.42), transparent 30%),
    radial-gradient(circle at 86% 82%, rgba(215, 255, 47, 0.16), transparent 28%),
    rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(14px);
}

.player-shell {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(1040px, calc(100vw - 34px));
  height: min(720px, calc(100vh - 34px));
  overflow: hidden;
  border: 1px solid rgba(246, 239, 226, 0.22);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.98);
  transition: transform 180ms ease;
}

.player-drawer.is-open .player-shell {
  transform: translateY(0) scale(1);
}

.player-shell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(246, 239, 226, 0.14);
  background: rgba(5, 5, 5, 0.96);
}

.player-shell-head span {
  display: block;
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.player-shell-head strong {
  display: block;
  margin-top: 2px;
}

.player-shell-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-shell-actions button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(246, 239, 226, 0.2);
  border-radius: 999px;
  background: rgba(246, 239, 226, 0.08);
  color: var(--paper);
}

.player-native-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: min(720px, calc(100vh - 34px));
  max-height: calc(100vh - 34px);
  overflow: hidden;
}

.player-stage {
  --player-art-size: clamp(240px, 28vw, 320px);
  position: relative;
  display: grid;
  grid-template-rows: max-content auto minmax(68px, 1fr);
  gap: 16px;
  min-height: 0;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(226, 31, 38, 0.2), transparent 38%),
    linear-gradient(rgba(246, 239, 226, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 226, 0.07) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
}

.player-now-card {
  display: grid;
  grid-template-columns: var(--player-art-size) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.player-now-card > img {
  width: var(--player-art-size);
  height: var(--player-art-size);
  margin-top: 30px;
  border: 1px solid rgba(246, 239, 226, 0.2);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.player-now-copy {
  min-width: 0;
}

.player-now-copy span {
  display: block;
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.player-now-copy strong {
  overflow-wrap: anywhere;
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: var(--artist-fit-size, clamp(3.2rem, 8vw, 8rem));
  line-height: 0.84;
  text-transform: uppercase;
}

.player-now-copy p {
  margin: 16px 0 0;
  color: rgba(246, 239, 226, 0.76);
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.player-music-links {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 22px;
}

.player-music-links .service-link {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  overflow: hidden;
}

.player-music-links .service-link img {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.native-stream-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(154px, 100%);
  min-height: 36px;
  margin: 0 0 0 auto;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--acid);
  color: var(--black);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(215, 255, 47, 0.16);
}

.native-stream-button svg {
  width: 16px;
  height: 16px;
}

.player-now-copy .native-stream-button span {
  display: inline;
  color: inherit;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: none;
}

.stream-status {
  margin: -8px 0 0;
  color: rgba(246, 239, 226, 0.72);
  font-weight: 700;
}

.stream-status.sr-only {
  margin: 0;
}

.nrq-signal-card {
  position: relative;
  z-index: 2;
  display: none;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  width: 100%;
  max-height: 74px;
  min-height: 0;
  margin: 20px 0 0;
  padding: 11px 14px 12px;
  border: 1px solid rgba(246, 239, 226, 0.12);
  border-left: 3px solid rgba(215, 255, 47, 0.92);
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(215, 255, 47, 0.09), transparent 34%),
    rgba(5, 5, 5, 0.58);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(5px);
  visibility: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nrq-signal-card.has-signal {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.nrq-signal-head {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 20px;
  padding-top: 1px;
}

.nrq-signal-head span {
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nrq-signal-head em {
  display: none;
}

.nrq-signal-card p {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  white-space: normal;
  -webkit-box-orient: vertical;
  opacity: 0;
  transform: translateX(22px);
}

.nrq-signal-card strong {
  display: none;
}

.nrq-signal-card p {
  flex: 1 1 auto;
  margin: 0;
  color: rgba(246, 239, 226, 0.88);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.24;
  -webkit-line-clamp: 2;
}

.nrq-signal-card.is-rolling p {
  animation: nrq-signal-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.nrq-signal-card.is-rolling p {
  animation-delay: 40ms;
}

.native-wave {
  position: relative;
  display: grid;
  grid-template-columns: repeat(9, minmax(16px, 1fr));
  align-items: center;
  gap: 8px;
  min-height: 68px;
  overflow: hidden;
  isolation: isolate;
}

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

.native-wave::before {
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(246, 239, 226, 0.5), transparent);
  opacity: 0.55;
  transform: translateY(-50%);
}

.native-wave::after {
  background:
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(226, 31, 38, 0.36) 22px 24px),
    linear-gradient(90deg, rgba(226, 31, 38, 0.16), transparent 26%, rgba(215, 255, 47, 0.16) 48%, transparent 78%);
  mix-blend-mode: screen;
  opacity: 0.22;
}

.native-wave span {
  position: relative;
  z-index: 1;
  display: block;
  height: 16px;
  border-radius: 1px;
  background:
    linear-gradient(180deg, var(--paper) 0 8%, var(--acid) 8% 48%, var(--red) 48% 100%);
  clip-path: polygon(0 12%, 16% 0, 31% 16%, 48% 0, 61% 13%, 76% 0, 100% 18%, 100% 86%, 84% 100%, 68% 84%, 51% 100%, 35% 82%, 18% 100%, 0 78%);
  box-shadow:
    0 0 18px rgba(226, 31, 38, 0.34),
    0 0 24px rgba(215, 255, 47, 0.18);
  transform-origin: center;
}

.broadcast-dock.is-stream-active ~ .player-drawer .native-wave span,
.player-drawer.is-stream-active .native-wave span {
  animation: signal-teeth 760ms steps(2, end) infinite alternate;
}

.broadcast-dock.is-stream-active ~ .player-drawer .native-wave::after,
.player-drawer.is-stream-active .native-wave::after {
  animation: signal-scratch 1300ms steps(3, end) infinite;
}

.player-drawer.is-connecting .native-wave,
.player-drawer.is-buffering .native-wave {
  opacity: 0.86;
}

.player-drawer.is-connecting .native-wave::before,
.player-drawer.is-buffering .native-wave::before {
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(215, 255, 47, 0.92), rgba(226, 31, 38, 0.62), transparent);
  opacity: 0.82;
  box-shadow:
    0 0 18px rgba(215, 255, 47, 0.28),
    0 0 26px rgba(226, 31, 38, 0.2);
}

.player-drawer.is-connecting .native-wave::after,
.player-drawer.is-buffering .native-wave::after {
  opacity: 0.5;
  animation: buffer-scan 1050ms steps(3, end) infinite;
}

.player-drawer.is-connecting .native-wave span,
.player-drawer.is-buffering .native-wave span {
  filter: grayscale(0.18) contrast(1.35);
  animation: signal-teeth 620ms steps(2, end) infinite alternate;
}

.native-wave span:nth-child(2n) {
  height: 42px;
  animation-delay: 120ms;
}

.native-wave span:nth-child(3n) {
  height: 64px;
  animation-delay: 240ms;
}

@keyframes nrq-signal-in {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 150px 42px 72px;
  background: var(--black);
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--page-bg, linear-gradient(135deg, rgba(226, 31, 38, 0.24), transparent 52%));
  content: "";
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.56)),
    repeating-linear-gradient(0deg, rgba(246, 239, 226, 0.12) 0 1px, transparent 1px 7px);
  content: "";
}

.page-hero-inner {
  max-width: 980px;
}

.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.interior-grid,
.drop-grid,
.venue-grid,
.shows-list {
  display: grid;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.interior-grid {
  grid-template-columns: repeat(3, 1fr);
}

.interior-card,
.show-card,
.drop-card,
.venue-card {
  min-height: 230px;
  padding: 24px;
}

.interior-card h3,
.show-card h3,
.drop-card h3,
.venue-card h3,
.feature-band h2 {
  margin: 12px 0 0;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.04;
}

.interior-card p,
.show-card p,
.drop-card p,
.venue-card p,
.feature-band p {
  color: rgba(246, 239, 226, 0.68);
  line-height: 1.5;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
  overflow: hidden;
}

.feature-band img {
  width: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.feature-band h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  text-transform: uppercase;
}

.drop-grid,
.venue-grid {
  grid-template-columns: repeat(2, 1fr);
}

.shows-list {
  grid-template-columns: repeat(4, 1fr);
}

.show-card {
  min-height: 260px;
}

.map-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.map-strip span {
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.map-strip span:last-child {
  border-right: 0;
}

@media (max-width: 1280px) {
  .social-strip {
    display: none;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    min-height: 84vh;
  }

  .image-stack {
    right: 28px;
    bottom: 34px;
    opacity: 0.74;
  }

  .frequency-ruler {
    display: none;
  }

  .music-layout,
  .club-section,
  .value-section,
  .field-layout,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .event-board,
  .value-list,
  .shows-grid,
  .interior-grid,
  .shows-list {
    grid-template-columns: 1fr 1fr;
  }

  .broadcast-dock {
    flex-wrap: wrap;
  }

  .wave-wrap {
    order: 5;
    flex-basis: 100%;
  }

  .club-modal-shell {
    grid-template-columns: 1fr;
  }

  .club-modal .club-form {
    padding: 0 34px 34px;
    border-top: 1px solid rgba(246, 239, 226, 0.18);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-lockup img {
    width: 86px;
  }

  .brand-lockup span,
  .icon-button,
  .listen-pill span {
    display: none;
  }

  .listen-pill {
    width: 46px;
    padding: 0;
  }

  .header-actions {
    gap: 8px;
  }

  .call-pill {
    min-height: 46px;
    padding: 0 12px;
    gap: 7px;
    font-size: 0.64rem;
  }

  .call-pill svg {
    width: 15px;
    height: 15px;
  }

  .call-stage {
    min-height: 100svh;
    padding: 88px 18px 24px;
  }

  .call-backdrop img {
    object-position: 68% center;
  }

  .call-stage::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.93) 48%, rgba(5, 5, 5, 0.98)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.44));
  }

  .call-stage-inner {
    grid-template-rows: auto auto auto;
    min-height: calc(100svh - 112px);
  }

  .call-status-line {
    gap: 9px;
    padding-bottom: 14px;
    font-size: 0.62rem;
  }

  .call-status-line > span:last-child {
    display: none;
  }

  .call-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px 0 34px;
  }

  .call-copy {
    order: 1;
    width: 100%;
  }

  .call-control-zone {
    order: 2;
    width: 100%;
    min-height: 0;
  }

  .call-ready-actions,
  .call-stage[data-call-status="active"] .call-control-zone {
    min-height: 0;
    margin-top: 0;
  }

  .call-ready-actions {
    display: grid;
    justify-items: center;
    padding-top: 2px;
  }

  .call-primary {
    position: relative;
    top: auto;
    left: auto;
    width: 158px;
    transform: none;
  }

  .call-primary:hover {
    transform: scale(1.035) rotate(-1deg);
  }

  .call-message-action {
    position: relative;
    top: auto;
    left: auto;
    width: max-content;
    max-width: calc(100vw - 36px);
    margin-top: 22px;
    transform: none;
  }

  .call-message-action:hover {
    transform: translateY(-2px);
  }

  .call-helper {
    position: relative;
    top: auto;
    left: auto;
    width: min(270px, calc(100vw - 44px));
    margin: 24px 0 0;
    transform: none;
  }

  .call-stage[data-call-status="offline"] .call-helper,
  .call-stage[data-call-status="full"] .call-helper,
  .call-stage[data-call-status="loading"] .call-helper,
  .call-stage[data-call-status="error"] .call-helper {
    top: auto;
  }

  .call-copy h1 {
    max-width: 100%;
    margin: 5px 0 10px;
    font-size: clamp(2.8rem, 14vw, 3.45rem);
    line-height: 0.84;
  }

  .call-copy > p:not(.kicker) {
    max-width: 350px;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .call-caller-form {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .call-caller-form label {
    gap: 6px;
  }

  .call-caller-form input {
    min-height: 46px;
  }

  .call-listening-note {
    gap: 9px;
    margin-top: 12px;
    padding-top: 10px;
    font-size: 0.72rem;
  }

  .call-primary-icon {
    width: 56px;
    height: 56px;
  }

  .call-release {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .call-release p {
    font-size: 0.64rem;
  }

  .hero {
    min-height: 82vh;
    padding: 102px 18px 28px;
  }

  .hero-logo,
  .hero-logo .nrq-logo-mark {
    width: min(82vw, 380px);
  }

  .brand-line {
    font-size: clamp(2rem, 10.8vw, 3.2rem);
    line-height: 0.9;
  }

  .hero-statement {
    max-width: 95%;
    margin-top: 22px;
  }

  .solid-action,
  .outline-action {
    width: 100%;
    min-height: 46px;
  }

  .image-stack {
    display: none;
  }

  .broadcast-dock {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 16px 18px;
  }

  .live-id,
  .now-track {
    min-width: 0;
  }

  .now-track {
    grid-column: 1 / -1;
    order: 3;
  }

  .wave-wrap {
    grid-column: 1 / -1;
    order: 4;
    height: 38px;
  }

  .play-control {
    width: 52px;
    height: 52px;
  }

  .manifesto-grid,
  .event-board,
  .value-list,
  .shows-grid,
  .interior-grid,
  .drop-grid,
  .venue-grid,
  .shows-list,
  .map-strip {
    grid-template-columns: 1fr;
  }

  .manifesto-grid a {
    min-height: 118px;
  }

  .section {
    padding: 68px 18px;
  }

  .community-thread {
    padding: 62px 18px;
  }

  .page-hero {
    min-height: 480px;
    padding: 112px 18px 54px;
  }

  .section-label,
  .events-head {
    display: grid;
    align-items: start;
  }

  .history-feature {
    min-height: 500px;
  }

  .history-feature div {
    padding: 24px;
  }

  .playlist-panel article {
    grid-template-columns: 62px 1fr;
    align-items: start;
    gap: 12px;
    min-height: auto;
    padding: 12px;
  }

  .playlist-panel img {
    width: 62px;
    height: 62px;
  }

  .song-actions {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }

  .history-modal-list .song-row {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    min-height: auto;
    padding: 10px;
  }

  .history-modal-list .song-row > img {
    width: 58px;
    height: 58px;
  }

  .history-modal-list .song-actions {
    grid-column: 2;
    justify-content: flex-start;
    min-width: 0;
    margin-top: 2px;
  }

  .service-link {
    width: 36px;
    height: 36px;
  }

  .club-section {
    gap: 26px;
  }

  .club-modal {
    padding: 10px;
  }

  .club-modal-shell {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .club-modal-copy {
    padding: 62px 18px 24px;
  }

  .club-modal-copy h2 {
    font-size: clamp(2.55rem, 13.5vw, 4.1rem);
  }

  .club-modal-copy p {
    font-size: 0.98rem;
  }

  .club-modal-perks li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .club-modal .club-form {
    padding: 22px 18px 24px;
  }

  .segmented-control {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 8px;
  }

  .segmented-control button {
    border-radius: 6px;
  }

  .event-card,
  .event-card img {
    min-height: 430px;
  }

  .feature-event .event-body h3 {
    font-size: 1.62rem;
  }

  .value-section {
    gap: 30px;
  }

  .site-footer {
    display: grid;
    padding: 28px 18px;
  }

  .field-layout {
    gap: 26px;
  }

  .field-copy h2,
  .page-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .player-shell {
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    max-height: calc(100vh - 20px);
  }

  .player-native-shell {
    height: calc(100vh - 20px);
    max-height: calc(100vh - 20px);
  }

  .player-shell-head {
    align-items: start;
  }

  .player-stage {
    grid-template-rows: auto minmax(74px, auto) minmax(74px, 1fr);
    padding: 18px;
    overflow: auto;
  }

  .nrq-signal-card {
    position: static;
    grid-template-columns: 1fr;
    gap: 7px;
    width: 100%;
    max-height: none;
    min-height: 0;
    margin-top: 14px;
    order: 3;
  }

  .nrq-signal-card p {
    -webkit-line-clamp: 3;
  }

  .player-now-card {
    --player-art-size: min(320px, calc(100vw - 56px));
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .player-now-card > img {
    width: var(--player-art-size);
    height: var(--player-art-size);
    margin-top: 0;
  }

  .player-now-copy strong {
    font-size: var(--artist-fit-size, clamp(2.7rem, 16vw, 4.7rem));
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .native-stream-button {
    width: min(154px, 100%);
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-right: 10px;
    padding-left: 10px;
  }

  .brand-lockup img {
    width: 72px;
  }

  .call-pill {
    min-height: 42px;
    padding: 0 9px;
    font-size: 0.58rem;
  }

  .listen-pill {
    width: 42px;
    min-height: 42px;
  }

  .call-session-actions,
  .call-review-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .call-session-actions button,
  .call-review-actions button {
    padding: 0 11px;
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .call-live-dot,
  .call-on-air i,
  .call-recording-indicator i,
  .call-primary::before,
  .call-primary::after,
  .call-levels i,
  .call-connection-progress i,
  .call-primary [data-lucide="loader-circle"] {
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .signal-loader {
    display: none !important;
  }

  .motion-ready.is-loading main,
  .motion-ready.is-loading .site-header,
  .motion-ready.is-loading .site-footer,
  .motion-ready.is-leaving main,
  .motion-ready.is-leaving .site-header,
  .motion-ready.is-leaving .site-footer,
  .reveal-ready,
  .reveal-ready.is-visible {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .nrq-signal-card strong,
  .nrq-signal-card p {
    white-space: normal;
    opacity: 1;
    transform: none;
  }
}

.history-playlist-save {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(246, 239, 226, 0.14);
}

.history-playlist-save > div {
  display: grid;
  gap: 4px;
}

.history-playlist-save > div span,
.playlist-picker-kicker {
  color: var(--acid);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.history-playlist-save > div strong {
  font-size: 1.02rem;
}

.history-playlist-save > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--acid);
  border-radius: 4px;
  background: var(--acid);
  color: var(--black);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.history-playlist-save > button:hover {
  background: var(--white);
  border-color: var(--white);
}

.history-playlist-save svg {
  width: 18px;
  height: 18px;
}

.history-playlist-save > button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.playlist-picker-open {
  overflow: hidden;
}

.playlist-picker {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.playlist-picker[hidden] {
  display: none;
}

.playlist-picker.is-open {
  opacity: 1;
  pointer-events: auto;
}

.playlist-picker-scrim {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(18px);
}

.playlist-picker-shell {
  position: relative;
  width: min(600px, calc(100vw - 40px));
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(246, 239, 226, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(25, 25, 25, 0.98), rgba(5, 5, 5, 0.99)),
    repeating-linear-gradient(90deg, rgba(246, 239, 226, 0.04) 0 1px, transparent 1px 16px);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.68);
  transform: translateY(14px) scale(0.985);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.playlist-picker.is-open .playlist-picker-shell {
  transform: translateY(0) scale(1);
}

.playlist-picker-shell:focus {
  outline: none;
}

.playlist-picker-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(246, 239, 226, 0.18);
  border-radius: 50%;
  background: rgba(246, 239, 226, 0.07);
  color: var(--paper);
}

.playlist-picker-shell h2 {
  max-width: 490px;
  margin: 12px 48px 0 0;
  color: var(--white);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.playlist-picker-copy {
  max-width: 490px;
  margin: 14px 0 0;
  color: rgba(246, 239, 226, 0.7);
  font-size: 0.98rem;
  line-height: 1.45;
}

.playlist-service-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.playlist-service-options[hidden],
.playlist-build-status[hidden] {
  display: none;
}

.playlist-service-option {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 0 16px;
  border: 1px solid rgba(246, 239, 226, 0.17);
  border-radius: 6px;
  background: rgba(246, 239, 226, 0.06);
  color: var(--white);
  text-align: left;
}

.playlist-service-option:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 255, 47, 0.52);
  background: rgba(215, 255, 47, 0.09);
}

.playlist-service-option img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.playlist-service-option span {
  font-size: 1.02rem;
  font-weight: 700;
}

.playlist-service-option svg {
  width: 18px;
  height: 18px;
  opacity: 0.58;
}

.playlist-build-status {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: center;
  min-height: 86px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(215, 255, 47, 0.28);
  border-radius: 6px;
  background: rgba(215, 255, 47, 0.07);
}

.playlist-build-status strong,
.playlist-build-status p {
  grid-column: 2;
  margin: 0;
}

.playlist-build-status strong {
  color: var(--white);
}

.playlist-build-status p {
  color: rgba(246, 239, 226, 0.66);
  font-size: 0.86rem;
}

.playlist-build-spinner {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(215, 255, 47, 0.2);
  border-top-color: var(--acid);
  border-radius: 50%;
  animation: playlist-spin 750ms linear infinite;
}

.playlist-build-status.is-error {
  border-color: rgba(237, 30, 41, 0.42);
  background: rgba(237, 30, 41, 0.1);
}

.playlist-build-status.is-error .playlist-build-spinner {
  border: 0;
  border-radius: 0;
  animation: none;
}

.playlist-build-status.is-error .playlist-build-spinner::before {
  content: "!";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
}

@keyframes playlist-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .history-modal {
    padding: 10px;
  }

  .history-modal-shell {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 20px 16px 16px;
  }

  .history-modal-head {
    padding-right: 46px;
  }

  .history-modal-head h2 {
    font-size: clamp(2.25rem, 13vw, 4rem);
  }

  .history-modal-head p {
    display: none;
  }

  .history-playlist-save {
    align-items: stretch;
  }

  .history-playlist-save > div {
    display: none;
  }

  .history-playlist-save > button {
    width: 100%;
  }

  .playlist-picker {
    align-items: end;
    padding: 10px;
  }

  .playlist-picker-shell {
    width: calc(100vw - 20px);
    padding: 28px 18px 20px;
  }

  .playlist-picker-shell h2 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .playlist-service-options {
    grid-template-columns: 1fr;
  }
}
