*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --void: #0c0c0e;
  --gold: 45 100% 60%;

  --display: 'Bebas Neue', sans-serif;
  --mono: 'DM Mono', monospace;
  --serif: 'Instrument Serif', serif;

  --section-gap: clamp(3rem, 6vw, 4.5rem);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--void);
  color: #f5f2eb;
  font-family: var(--mono);
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 80px;
}

.space-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg {
  position: absolute;
  inset: 0;
}

.bg-base {
  background:
    radial-gradient(ellipse at 50% 30%, hsla(var(--gold) / 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, hsl(0 0% 9%) 0%, transparent 70%),
    var(--void);
}

.bg-motes::before,
.bg-motes::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  will-change: transform;
}

.bg-motes::before {
  color: hsla(var(--gold) / 0.42);
  box-shadow:
    9vw 14vh, 23vw 77vh, 42vw 31vh, 64vw 62vh, 81vw 19vh,
    13vw 51vh, 36vw 89vh, 58vw 9vh, 73vw 45vh, 89vw 70vh,
    49vw 73vh, 28vw 18vh;
  animation: mote-drift 70s ease-in-out infinite;
}

.bg-motes::after {
  color: hsla(var(--gold) / 0.26);
  box-shadow:
    17vw 33vh, 31vw 8vh, 55vw 48vh, 68vw 84vh, 5vw 67vh,
    44vw 58vh, 78vw 38vh, 92vw 88vh, 21vw 95vh, 61vw 24vh;
  animation: mote-drift 110s ease-in-out infinite reverse;
}

@keyframes mote-drift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(1.2vw, -3vh); }
  100% { transform: translate(0, 0); }
}

.page-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--section-gap);
  padding-inline: 2rem;
  z-index: 1;
}

.hero-section {
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(6rem, 12vh, 8rem);
}

.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 5vh, 3rem);
  text-align: center;
}

.countdown-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.55);
}

.countdown-clock {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.countdown-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.9rem, 12vw, 4.5rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: #f5f2eb;
  background: linear-gradient(180deg, hsl(var(--gold)) 0%, hsl(38 100% 50%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px hsla(var(--gold) / 0.35);
}

.countdown-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.5);
}

.countdown-sep {
  font-family: var(--display);
  font-size: clamp(2.9rem, 12vw, 4.5rem);
  line-height: 0.85;
  color: hsla(var(--gold) / 0.7);
  animation: cd-pulse 1s steps(1, end) infinite;
}

@keyframes cd-pulse {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.2; }
}

.hero-card {
  max-width: 620px;
  text-align: center;
}

.hero-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 1.08rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.8);
  margin-bottom: 0.15rem;
}

.hero-logo {
  display: block;
  width: min(360px, 78%);
  height: auto;
  margin: 0 auto 2.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.glass-card {
  position: relative;
  max-width: 620px;
  width: 100%;
  padding: 2.6rem 3.5rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 30px 80px -20px rgba(0, 0, 0, 0.5),
    0 0 60px -10px hsla(var(--gold) / 0.12);
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.7);
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.glass-card h1,
.glass-card h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.glass-card h1::after,
.glass-card h2::after,
.join-col h3::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, hsl(var(--gold)), hsl(38 100% 50%));
}

.glass-card em {
  font-style: normal;
  font-weight: 700;
}

.glass-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 242, 235, 0.85);
  margin-bottom: 2.25rem;
  max-width: 42ch;
}

/* Mission text fix: lets text fill the card instead of wrapping too early */
.mission-card {
  max-width: 760px;
}

.mission-card p {
  max-width: none;
  width: 100%;
}

.video-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.trailer-card {
  max-width: 700px;
  padding: 0.72rem;
}

.portrait-trailer-card {
  max-width: min(430px, calc(100vw - 4rem));
}

.landscape-trailer-card {
  max-width: 700px;
}

.video-frame {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

.landscape-video-frame {
  aspect-ratio: 16 / 9;
}

.portrait-video-frame {
  aspect-ratio: 9 / 16;
  border-radius: 22px;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame + .cta-row {
  margin-top: 2rem;
}

.why73 {
  max-width: 700px;
  text-align: center;
}

.why73 h2 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 9vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin-bottom: 0.9rem;
}

.why73-num {
  background: linear-gradient(180deg, hsl(var(--gold)), hsl(38 100% 50%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why73 p {
  max-width: 46ch;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(245, 242, 235, 0.8);
}

/* ARTIST CAROUSEL */
.carousel-card {
  max-width: 800px;
}

.artist-carousel-shell {
  position: relative;
  margin-top: 1.5rem;
}

.artist-carousel {
  margin-left: -4.5rem;
  margin-right: -4.5rem;
  padding: 0 4.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.artist-carousel::-webkit-scrollbar {
  display: none;
}

.artist-track {
  display: flex;
  gap: 1.25rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  width: max-content;
}

.artist-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.artist-card:hover {
  transform: translateY(-4px);
}

.artist-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px -15px rgba(0, 0, 0, 0.5);
}

.artist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.25s ease;
  filter: saturate(1.05) brightness(0.85);
}

.artist-card:hover .artist-thumb img {
  transform: scale(1.06);
  filter: saturate(1.15) brightness(1);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
  transition: background 0.2s ease;
}

.artist-card:hover .play-btn {
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55));
}

.artist-name {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #f5f2eb;
}

/* Carousel arrows below videos */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.carousel-arrow {
  position: static;
  width: 3rem;
  height: 3rem;
  transform: none;
  border: 1px solid hsla(var(--gold) / 0.55);
  border-radius: 999px;
  background:
    linear-gradient(135deg, hsla(var(--gold) / 0.94), hsla(38 100% 50% / 0.94));
  color: #1a1205;
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 20px -10px hsla(var(--gold) / 0.75),
    0 10px 24px -18px rgba(0, 0, 0, 0.75);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.carousel-arrow:hover {
  transform: scale(1.08);
  filter: brightness(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 24px -10px hsla(var(--gold) / 0.85),
    0 10px 24px -18px rgba(0, 0, 0, 0.75);
}

.carousel-arrow-left,
.carousel-arrow-right {
  left: auto;
  right: auto;
}

.rundown-card {
  max-width: 760px;
}

.venue-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.venue-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px -15px rgba(0, 0, 0, 0.5);
  filter: saturate(1.05) brightness(0.82);
}

.venue-note {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.5);
}

.rundown {
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.rundown-row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.rundown-row dt {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: hsl(var(--gold));
}

.rundown-row dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(245, 242, 235, 0.85);
}

.connect-card {
  max-width: 720px;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.connect-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
}

.qr-frame {
  background: #fff;
  padding: 14px;
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.05),
    0 14px 30px -15px rgba(0, 0, 0, 0.5);
}

.qr-frame img {
  display: block;
  width: 180px;
  height: 180px;
}

.qr-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.6);
}

.connect-text {
  flex: 1 1 260px;
  min-width: 0;
}

.connect-text p {
  margin-bottom: 2rem;
}

.connect-text strong {
  font-weight: 400;
  color: #fff;
}

.smile {
  font-family: var(--mono);
  font-size: 0.7em;
  vertical-align: 0.18em;
  margin-left: 0.15em;
}

.join-card {
  max-width: 800px;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.join-col {
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.join-col:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.4);
}

.join-col h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  font-weight: 400;
  color: #f5f2eb;
}

.join-col p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(245, 242, 235, 0.75);
  margin-bottom: 1.5rem;
  flex: 1;
  max-width: none;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  padding: 0.85rem 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5f2eb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.join-arrow {
  display: inline-block;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.join-col:hover .join-btn {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

.join-col:hover .join-arrow {
  transform: translateX(4px);
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  align-items: stretch;
}

.cta-row .btn-glass {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-glass {
  display: inline-block;
  padding: 1.2rem 2rem;
  font-family: var(--mono);
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5f2eb;
  text-decoration: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.btn-glass.btn-primary {
  background: linear-gradient(135deg, hsla(var(--gold) / 0.85), hsla(38 100% 50% / 0.85));
  color: #1a1205;
  border-color: hsla(var(--gold) / 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 14px 40px -10px hsla(var(--gold) / 0.6);
}

.btn-glass.btn-primary:hover {
  background: linear-gradient(135deg, hsla(var(--gold) / 1), hsla(38 100% 52% / 1));
}

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
}

.brand {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: #f5f2eb;
}

.glass-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-nav a {
  padding: 0.55rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(245, 242, 235, 0.75);
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.glass-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.glass-nav a.nav-cta {
  padding: 0.6rem 1.4rem;
  font-weight: 400;
  color: #1a1205;
  background: linear-gradient(135deg, hsl(var(--gold)), hsl(38 100% 50%));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 4px 18px -2px hsla(var(--gold) / 0.65);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.glass-nav a.nav-cta:hover {
  color: #1a1205;
  background: linear-gradient(135deg, hsl(48 100% 68%), hsl(40 100% 55%));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 6px 24px -2px hsla(var(--gold) / 0.85);
  transform: translateY(-1px);
}

.site-footer {
  text-align: center;
  padding: 1.5rem 1rem 0.5rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(245, 242, 235, 0.4);
}

.ticker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  overflow: hidden;
  background: hsla(0 0% 5% / 0.82);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border-top: 1px solid hsla(var(--gold) / 0.35);
  box-shadow: 0 -12px 30px -12px rgba(0, 0, 0, 0.65);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex: none;
  padding-block: 0.65rem;
}

.ticker-item {
  flex: none;
  padding-inline: 1.4rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(245, 242, 235, 0.85);
}

.ticker-sep {
  flex: none;
  color: hsl(var(--gold));
  font-size: 0.6rem;
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

.scroll-hint {
  position: absolute;
  bottom: 3.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.6);
  animation: bob 2.5s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* VIDEO LIGHTBOX MODAL */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.video-lightbox.is-open {
  display: flex;
}

.video-lightbox__panel {
  position: relative;
  width: min(1100px, 96vw);
  max-height: 90vh;
  padding: clamp(0.55rem, 1.5vw, 0.85rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 30px 90px rgba(0, 0, 0, 0.65),
    0 0 50px hsla(var(--gold) / 0.16);
}

.video-lightbox__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
}

.video-lightbox__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox__close {
  position: absolute;
  top: -0.95rem;
  right: -0.95rem;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid hsla(var(--gold) / 0.55);
  border-radius: 999px;
  background: linear-gradient(135deg, hsl(var(--gold)), hsl(38 100% 50%));
  color: #1a1205;
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 30px -10px hsla(var(--gold) / 0.85);
}

.video-lightbox__close:hover {
  transform: scale(1.05);
}

.video-lightbox__close:focus-visible,
.video-lightbox-trigger:focus-visible {
  outline: 2px solid hsl(var(--gold));
  outline-offset: 4px;
}

body.video-lightbox-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .countdown-sep,
  .scroll-hint,
  .bg-motes::before,
  .bg-motes::after,
  .ticker-track {
    animation: none;
  }

  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .artist-carousel {
    scroll-behavior: auto;
  }
}

@media (max-width: 720px) {
  .countdown-clock {
    gap: 0.35rem;
  }

  .countdown-sep {
    margin-inline: -0.1rem;
  }

  .topnav {
    padding: 0.85rem 1rem;
    gap: 0.6rem;
    justify-content: center;
  }

  .brand {
    display: none;
  }

  .glass-nav {
    gap: 0.25rem;
    padding: 0.35rem;
  }

  .glass-nav a {
    padding: 0.4rem 0.55rem;
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  .glass-card {
    padding: 2.4rem 2rem;
    border-radius: 24px;
  }

  .hero-kicker {
    font-size: 0.97rem;
  }

  .hero-logo {
    margin-bottom: 2rem;
  }

  .portrait-trailer-card {
    max-width: min(390px, calc(100vw - 3rem));
  }

  .artist-carousel {
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 0 2rem;
  }

  .artist-card {
    flex-basis: 240px;
  }

  .carousel-controls {
    display: none;
  }

  .join-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .join-col {
    padding: 1.75rem 1.5rem;
  }

  .connect-text {
    text-align: center;
  }

  .connect-text p {
    max-width: none;
  }

  .rundown-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.15rem 0;
  }

  .rundown-row dt {
    font-size: 1.3rem;
  }

  .cta-row {
    gap: 0.75rem;
  }

  .cta-row .btn-glass {
    padding: 1.1rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    line-height: 1.25;
  }

  .video-lightbox {
    padding: 1rem;
  }

  .video-lightbox__panel {
    width: 100%;
    border-radius: 20px;
  }

  .video-lightbox__frame {
    border-radius: 14px;
  }

  .video-lightbox__close {
    top: -0.7rem;
    right: -0.7rem;
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.55rem;
  }
}

@media (max-width: 720px) {
  .cta-row .btn-glass {
    background: rgba(18, 18, 18, 0.42);
    color: #f5f2eb;
  }

  .cta-row .btn-glass.btn-primary {
    background: linear-gradient(135deg, hsla(var(--gold) / 0.95), hsla(38 100% 50% / 0.95));
    color: #1a1205;
  }
}