:root {
  --black: #050505;
  --off-black: #0c0c0c;
  --white: #f5f5f5;
  --dim: rgba(245,245,245,0.38);
  --dimmer: rgba(245,245,245,0.14);
  --accent: #A6BFBE;
  --red: #e03030;
  --green: #A6BFBE;
  --border: rgba(245,245,245,0.07);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: crosshair;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 9999;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  padding: 28px 48px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, padding .35s ease, backdrop-filter .35s ease;
}
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.75) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity .35s ease;
}
nav.nav--scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(255,255,255,0.06);
  padding-top: 18px;
  padding-bottom: 18px;
}
nav.nav--scrolled::before { opacity: 0; }

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .22em;
  color: var(--white);
  position: relative;
  text-decoration: none;
}
.nav-right { display: flex; align-items: center; gap: 20px; position: relative; }
.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: .18em;
  color: var(--dim); padding: 0; transition: color .2s;
}
.lang-btn:hover { color: var(--white); }
.lang-btn--active { color: var(--white); }
.lang-sep { font-size: 10px; color: var(--border); user-select: none; }
.nav-cta {
  position: relative; padding: 10px 28px;
  border: 1px solid rgba(245,245,245,0.5);
  background: none;
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; text-decoration: none;
  cursor: pointer; -webkit-appearance: none; appearance: none;
  transition: background .25s, border-color .25s;
}
.nav-cta:hover { background: rgba(245,245,245,0.08); border-color: var(--white); }

#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.45) 50%, rgba(5,5,5,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; animation: fadeUp .9s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: .18em; color: #ffffff;
  text-transform: uppercase; margin-bottom: 20px;
  animation: fadeUp .9s .1s ease both;
}
.hero-eyebrow-part { white-space: nowrap; }
.hero-eyebrow-dot  { opacity: .5; }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 13vw, 160px);
  line-height: .88; letter-spacing: .04em; text-transform: uppercase;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.72) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: fadeUp .9s .2s ease both;
}
.hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 3.5vw, 38px); letter-spacing: .42em;
  color: #A6BFBE; margin-top: 12px;
  animation: fadeUp .9s .3s ease both;
}
.hero-btn {
  display: inline-block; margin-top: 48px; padding: 16px 52px;
  border: 1px solid var(--white); background: none; color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; text-decoration: none;
  cursor: pointer; -webkit-appearance: none; appearance: none;
  transition: background .25s, letter-spacing .25s;
  animation: fadeUp .9s .45s ease both;
}
.hero-btn:hover { background: rgba(245,245,245,0.1); letter-spacing: .34em; }
.hero-btn-arrow { display: inline-block; margin-left: 10px; animation: scrollBounce 1.4s ease-in-out infinite; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  40%       { transform: translateY(5px); opacity: 0.6; }
  70%       { transform: translateY(3px); opacity: 0.85; }
}

.hero-mute-btn {
  position: absolute; bottom: 32px; right: 32px; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(245,245,245,0.22); border-radius: 50%;
  background: rgba(8,8,8,0.45); backdrop-filter: blur(8px);
  color: #ffffff; cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  animation: fadeUp .6s .2s ease both;
}
.hero-mute-btn:hover { border-color: var(--white); color: var(--white); background: rgba(8,8,8,0.65); }

#artwork { width: 100%; line-height: 0; position: relative; }

.site-bg {
  position: fixed; inset: 0; z-index: -1;
  background-color: #050505;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.flyer-section {
  width: 100%; background-color: transparent;
  position: relative; overflow: hidden;
}
.flyer-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 35% 50%, rgba(166,191,190,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.flyer-section::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(to bottom, transparent, #050505);
  pointer-events: none; z-index: 2;
}
.flyer-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 48% 52%;
  min-height: 92vh; max-width: 1400px; margin: 0 auto;
}
.flyer-left {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 56px 28px;
  border-right: 1px solid rgba(166,191,190,0.18); gap: 0;
}
.flyer-eyebrow {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: .18em; color: #ffffff;
  text-transform: uppercase; margin: 0 0 28px;
}
.flyer-xo-wrap {
  position: relative; display: flex;
  align-items: center; justify-content: center; margin-bottom: 48px;
}
.flyer-glow {
  position: absolute; width: 75%; height: 75%; border-radius: 50%;
  background: radial-gradient(circle, rgba(166,191,190,0.32) 0%, rgba(166,191,190,0.08) 55%, transparent 75%);
  filter: blur(36px); pointer-events: none;
}
.flyer-xo-img {
  position: relative; width: clamp(280px, 38vw, 520px); height: auto; display: block;
  filter: drop-shadow(0 0 28px rgba(166,191,190,0.3)) drop-shadow(0 0 8px rgba(255,255,255,0.08));
  animation: floatXO 4s ease-in-out infinite;
}
@keyframes floatXO {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
.flyer-bottom-logos { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; max-width: 100%; }
.flyer-bottom-logo { height: 22px; width: auto; max-width: 140px; object-fit: contain; filter: brightness(0) invert(1); opacity: 1; display: block; flex-shrink: 0; }

.flyer-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px 44px 56px 40px; gap: 0;
}
.flyer-weeknd-logo {
  display: block; width: clamp(300px, 40vw, 520px); height: auto;
  object-fit: contain; filter: brightness(0) invert(1); margin: 0 0 10px;
}
.flyer-h2 {
  font-family: 'DM Sans', sans-serif; font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 300; letter-spacing: .22em; color: #A6BFBE;
  text-transform: uppercase; margin: 0;
}
.flyer-divider { width: 36px; height: 1px; background: var(--accent); opacity: .55; margin: 28px 0; }
.flyer-cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 28px; margin-bottom: 0; }
.flyer-city-item {
  font-family: 'DM Sans', sans-serif; font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 300; letter-spacing: .15em; color: var(--white);
  text-transform: uppercase; padding: 0 0 5px;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.12);
  background: none; cursor: pointer; text-align: left;
  transition: color .2s, border-bottom-color .2s;
}
.flyer-city-item:hover { color: #A6BFBE; border-bottom-color: rgba(166,191,190,0.5); }
.flyer-logos {
  display: flex; flex-direction: row; flex-wrap: nowrap;
  align-items: center; gap: 24px; margin-bottom: 28px;
}
.flyer-logo-link { display: inline-flex; align-items: center; opacity: 1; transition: opacity .2s; }
.flyer-logo-link:hover { opacity: 0.7; }
.flyer-logo {
  max-height: 32px; max-width: 110px; width: auto; height: auto;
  object-fit: contain; filter: brightness(0) invert(1);
  opacity: 1; flex-shrink: 0; transition: opacity .2s;
}
.flyer-logo:hover { opacity: 1; }
.flyer-host-link { color: #ffffff !important; text-decoration: none; transition: color .2s; }
.flyer-host-link:hover { color: rgba(255,255,255,0.75) !important; }
.flyer-host-label {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: .22em; color: rgba(166,191,190,0.85) !important; text-transform: uppercase;
  display: block; margin-bottom: 10px;
}
.flyer-hosted-by {
  font-family: 'DM Sans', sans-serif; font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 700; letter-spacing: .10em; color: #ffffff !important;
  text-transform: uppercase; display: block; margin: 0; margin-top: 48px; line-height: 1.35;
}

/* Laptop small (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .flyer-left  { padding: 32px 20px; }
  .flyer-right { padding: 36px 28px 36px 24px; }
  .flyer-xo-img      { width: 340px; }
  .flyer-weeknd-logo { width: 360px; }
  .flyer-h2          { font-size: 16px; }
  .flyer-city-item   { font-size: 13px; }
  .flyer-hosted-by   { font-size: 20px; }
  .flyer-logo        { max-height: 36px; max-width: 120px; }
  .flyer-bottom-logo { height: 26px; max-width: 130px; }
  .flyer-divider     { margin: 18px 0; }
  .flyer-cities-grid { gap: 5px 20px; }
  .flyer-logos       { gap: 16px; margin-bottom: 20px; }
}

/* Laptop large (1025px – 1300px) */
@media (min-width: 1025px) and (max-width: 1300px) {
  .flyer-left  { padding: 44px 28px; }
  .flyer-right { padding: 44px 40px 44px 36px; }
  .flyer-xo-img      { width: 400px; }
  .flyer-weeknd-logo { width: 420px; }
  .flyer-h2          { font-size: 18px; }
  .flyer-city-item   { font-size: 13px; }
  .flyer-hosted-by   { font-size: 22px; }
  .flyer-logo        { max-height: 38px; max-width: 130px; }
  .flyer-bottom-logo { height: 28px; max-width: 140px; }
}

/* Mobile flyer (≤768px) */
@media (max-width: 768px) {
  .flyer-inner { grid-template-columns: 1fr; min-height: 92vh; }
  .flyer-left {
    border-right: none; border-bottom: 1px solid rgba(166,191,190,0.18);
    padding: 56px 24px 44px; align-items: center; text-align: center;
  }
  .flyer-right { padding: 44px 24px 60px; text-align: center; align-items: center; }
  .flyer-weeknd-logo { margin-left: auto; margin-right: auto; }
  .flyer-cities-grid { grid-template-columns: 1fr 1fr; gap: 6px 16px; justify-items: center; }
  .flyer-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; justify-items: center; align-items: center; margin-bottom: 24px; }
  .flyer-bottom-logos { justify-content: center; gap: 20px; flex-wrap: nowrap; }
  .flyer-bottom-logo { height: 24px; max-width: 150px; }
  .flyer-bottom-logos .flyer-logo-link { width: auto; flex-shrink: 0; }
  .flyer-logo-link { display: flex; align-items: center; justify-content: center; width: 100%; }
  .flyer-logo { max-height: 30px; max-width: 100px; width: 100%; flex-shrink: 0; }
  .flyer-hosted-by { font-size: 18px; margin-top: 24px; text-align: center; color: #ffffff !important; }
  .flyer-host-label { margin-bottom: 16px; text-align: center; }
  .flyer-host-link { color: #ffffff !important; }
}

.section-header { text-align: center; padding: 100px 40px 60px; }
.section-eyebrow { font-size: 12px; font-weight: 500; letter-spacing: .18em; color: #A6BFBE; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 6vw, 72px); letter-spacing: .14em; color: var(--white); line-height: 1; }
.section-rule { width: 32px; height: 1px; background: var(--accent); margin: 24px auto 0; }

#tourdates { background: transparent; padding-bottom: 100px; }
.dates-wrap { max-width: 860px; margin: 0 auto; padding: 0 32px 12px; background: rgba(8,8,8,0.3); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 0; border: 1px solid rgba(255,255,255,0.07); }
.month-sep { display: flex; align-items: center; gap: 14px; padding: 28px 0 10px; }
.month-sep-label { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .22em; color: var(--accent); text-transform: uppercase; white-space: nowrap; }
.month-sep-line { flex: 1; height: 1px; background: var(--border); display: block; }
.tbc-sep { display: flex; align-items: center; gap: 16px; padding: 36px 0 14px; }
.tbc-sep-label { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .26em; color: rgba(245,245,245,0.35); text-transform: uppercase; white-space: nowrap; }
.tbc-sep-line { flex: 1; height: 1px; background: rgba(245,245,245,0.08); display: block; }
.date-row { display: grid; grid-template-columns: 68px 1fr auto; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); gap: 24px; transition: background .2s; }
.date-row:hover { background: rgba(245,245,245,0.03); }
.date-row--tbc { opacity: 1; }
.date-block { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
.date-block-day { font-family: 'Bebas Neue', sans-serif; font-size: 38px; line-height: 1; letter-spacing: .02em; color: #ffffff; }
.date-block-meta { font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 500; letter-spacing: .2em; color: var(--accent); text-transform: uppercase; }
.meta-abbr { display: inline; }
.meta-full  { display: none; }
.date-block--tbc .date-block-day { font-size: 28px; color: rgba(245,245,245,0.4); }
.date-block--tbc .date-block-meta { color: rgba(245,245,245,0.3); letter-spacing: .16em; }
.city-block { display: flex; flex-direction: column; gap: 5px; }
.city-main { display: flex; align-items: baseline; gap: 8px; }
.city-name { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 600; letter-spacing: .04em; color: #ffffff; }
.city-badge { font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .16em; color: var(--accent); border: 1px solid rgba(166,191,190,0.35); border-radius: 3px; padding: 2px 6px; text-transform: uppercase; }
.venue-link { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: .06em; color: rgba(245,245,245,0.55); text-decoration: none; border-bottom: 1px solid rgba(245,245,245,0.2); transition: color .2s, border-color .2s; width: fit-content; display: inline-block; }
.venue-link:hover { color: #ffffff; border-color: var(--accent); }
.date-row--tbc .city-name { color: rgba(245,245,245,0.8); }
.date-row--tbc .city-badge { opacity: 0.6; }
.btn-ticket--tbc { font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: #ffffff; border: 1px solid rgba(245,245,245,0.35); padding: 7px 14px; cursor: default; white-space: nowrap; }
.btn-ticket { display: inline-block; padding: 9px 22px; border: 1px solid rgba(245,245,245,0.4); color: var(--white); font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; white-space: nowrap; transition: border-color .2s, color .2s, background .2s; cursor: pointer; }
.btn-ticket:hover { border-color: var(--white); color: var(--white); background: rgba(245,245,245,0.05); }

#contact {
  background: transparent; padding: 100px 40px; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.contact-label { font-size: 12px; font-weight: 500; letter-spacing: .18em; color: #A6BFBE; text-transform: uppercase; margin-bottom: 20px; }
.contact-email { font-family: 'Bebas Neue', sans-serif; font-size: clamp(24px, 4vw, 48px); letter-spacing: .18em; }
.contact-email a { color: var(--white); text-decoration: none; transition: color .2s; }
.contact-email a:hover { color: var(--white); }

footer {
  background: transparent; padding: 36px 48px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  width: 100%; box-sizing: border-box;
}
.footer-logos { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; max-width: 100%; }
.footer-brand-logo { height: 24px; width: auto; max-width: 160px; object-fit: contain; filter: brightness(0) invert(1); opacity: 1; display: block; transition: opacity .2s; }
.footer-xo-logo { height: 28px; }
.footer-logo-link { display: inline-flex; align-items: center; }
.footer-brand-logo:hover { opacity: 0.75; }
.footer-row {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: nowrap;
}
.footer-sep { font-size: 10px; color: #ffffff; flex-shrink: 0; }
.footer-link { font-size: 10px; color: #ffffff; text-decoration: none; letter-spacing: .08em; white-space: nowrap; transition: color .2s; }
.footer-link:hover { color: var(--white); }
.footer-copy { font-size: 10px; color: #ffffff; letter-spacing: .06em; white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(32px); will-change: opacity, transform; transition: opacity .85s cubic-bezier(0.16,1,0.3,1), transform .85s cubic-bezier(0.16,1,0.3,1); }
.reveal--left  { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal--fade  { transform: none; }
.reveal--scale { transform: scale(0.96); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right, .reveal--fade, .reveal--scale { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.no-transition { transition: none !important; animation: none !important; }
.t-reset .t-inner { transition: none !important; transition-delay: 0s !important; }
.t-clip { display: block; overflow: hidden; padding-bottom: 0.06em; }
.t-inner { display: block; transform: translateY(105%); transition: transform 1s cubic-bezier(0.16,1,0.3,1); }
.t-clip.t-visible .t-inner { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .hero-line-inner, .hero-sub, .t-inner { animation: none !important; transform: none !important; transition: none !important; }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  nav { padding: 16px 20px; flex-wrap: nowrap; gap: 10px; }
  .nav-logo { font-size: 16px; letter-spacing: .18em; white-space: nowrap; }
  .nav-cta { padding: 8px 16px; font-size: 9px; white-space: nowrap; }

  .hero-eyebrow { font-size: 11px; letter-spacing: .12em; display: block; white-space: nowrap; }
  .hero-eyebrow-dot { display: inline; }
  .hero-sub { font-size: clamp(16px, 5vw, 24px); letter-spacing: .22em; }
  .hero-btn { margin-top: 32px; padding: 14px 36px; font-size: 10px; }

  .section-header { padding: 64px 20px 40px; }
  .section-eyebrow { font-size: 12px; letter-spacing: .14em; }
  .site-bg { background-size: cover; background-position: center center; }
  .flyer-section::after { height: 0; }
  .flyer-right { position: relative; z-index: 3; }
  .dates-wrap { padding: 0 16px 16px; border-radius: 10px; }
  .month-sep { padding: 24px 0 10px; gap: 12px; }
  .month-sep-label { font-size: 13px; letter-spacing: .18em; }
  .date-row { grid-template-columns: 60px 1fr auto; gap: 14px; padding: 18px 0; }
  .date-block { gap: 3px; }
  .date-block-day { font-size: 32px; }
  .date-block-meta { font-size: 8px; letter-spacing: .12em; line-height: 1.55; }
  .date-block--tbc .date-block-day { font-size: 24px; }
  .meta-abbr { display: inline; }
  .meta-full  { display: none; }
  .city-block { gap: 4px; }
  .city-main { gap: 7px; }
  .city-name { font-size: 15px; letter-spacing: .03em; }
  .city-badge { font-size: 8px; padding: 2px 5px; }
  .venue-link { font-size: 11px; letter-spacing: .05em; }
  .btn-ticket--tbc { padding: 10px 12px; font-size: 9px; letter-spacing: .1em; min-height: 38px; display: flex; align-items: center; justify-content: center; }

  #contact { padding: 64px 24px; }
  .contact-label { font-size: 12px; letter-spacing: .14em; }
  .contact-email { font-size: clamp(22px, 7vw, 40px); letter-spacing: .1em; }

  footer { padding: 28px 16px; gap: 10px; }
  .footer-brand-logo { height: 24px; max-width: 150px; }
  .footer-xo-logo { height: 26px; }
  .footer-logos { gap: 18px; }
  .footer-row { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .footer-link { font-size: 9px; }
  .footer-copy { font-size: 9px; }
}

/* ─── PARTNER LOGO BANNER ─── */
.logo-banner { width: 100%; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(10,10,10,0.4); padding: 22px 0; }
.logo-banner-track { display: flex; width: max-content; align-items: center; gap: 72px; will-change: transform; }
.logo-banner-item { display: inline-flex; align-items: center; flex-shrink: 0; opacity: 0.6; transition: opacity .25s; }
.logo-banner-item:hover { opacity: 1; }
.logo-banner-img { height: 26px; width: auto; object-fit: contain; filter: brightness(0) invert(1); display: block; }
.logo-banner-img--lg { height: 52px; }
.logo-banner-img--arc { filter: invert(1); mix-blend-mode: screen; height: 40px; }
@keyframes logoBanner { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-banner:hover .logo-banner-track { animation-play-state: paused; }

/* ─── HERO TITLE CLIP ANIMATION ─── */
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(72px,13vw,160px); letter-spacing: .04em; text-transform: uppercase; line-height: 1; }
.hero-line { overflow: hidden; line-height: .92; }
.hero-line-inner {
  display: block;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.72) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transform: translateY(110%);
  animation: titleSlide 1.1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-line:nth-child(1) .hero-line-inner { animation-delay: 0.12s; }
.hero-line:nth-child(2) .hero-line-inner { animation-delay: 0.28s; }
.hero-sub-clip { overflow: hidden; margin-top: 14px; }
.hero-sub { font-family: 'Bebas Neue', sans-serif; font-size: clamp(20px,3.5vw,38px); letter-spacing: .42em; color: #A6BFBE; transform: translateY(110%); animation: titleSlide 0.95s cubic-bezier(0.16,1,0.3,1) 0.44s forwards; }
.hero-anim-reset .hero-line-inner,
.hero-anim-reset .hero-sub { animation: none !important; transform: translateY(110%) !important; }
@keyframes titleSlide {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

/* ─── HERO HOSTED BY ─── */
.hero-hosted { position: absolute; bottom: 36px; left: 0; right: 0; z-index: 2; text-align: center; font-size: 9px; letter-spacing: .22em; color: #ffffff; text-transform: uppercase; animation: fadeUp .9s .6s ease both; }
.hero-hosted a { color: #ffffff; text-decoration: none; margin: 0 6px; transition: color .2s; }
.hero-hosted a:hover { color: var(--white); }

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: var(--accent); z-index: 999999; transition: width .1s linear; pointer-events: none; box-shadow: 0 0 6px rgba(166,191,190,0.5); }

/* ─── CUSTOM CURSOR DOT ─── */
.cursor-dot { position: fixed; top: 0; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); opacity: 0.7; pointer-events: none; z-index: 99998; transform: translate(-100px,-100px); transition: transform 0.06s linear, opacity .2s; mix-blend-mode: screen; }
@media (hover: none) { .cursor-dot { display: none; } }

/* ─── MARQUEE TICKER ─── */
.ticker-wrap { width: 100%; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(10,10,10,0.5); padding: 12px 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 36s linear infinite; }
.ticker-text { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: .28em; color: var(--accent); white-space: nowrap; opacity: 0.75; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

/* ─── HERO SCROLL HINT ─── */
.hero-scroll-hint { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0; animation: fadeUp .9s .8s ease both; }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(166,191,190,0.6)); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  80%  { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@media (max-width: 640px) { .hero-scroll-hint { bottom: 80px; } }

/* ─── DATE ROW HOVER ACCENT LINE ─── */
.date-row { position: relative; }
.date-row::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 0%; height: 1px; background: var(--accent); transition: width .35s ease; pointer-events: none; }
.date-row:hover::after { width: 100%; }

/* ─── CONTACT EMAIL HOVER UNDERLINE ─── */
.contact-email a { position: relative; }
.contact-email a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 1px; background: var(--accent); transition: width .35s ease; }
.contact-email a:hover::after { width: 100%; }

/* ─── SOLD OUT BUTTON ─── */
.btn-soldout { display: inline-block; padding: 9px 22px; border: 1px solid rgba(224,48,48,0.3); color: rgba(224,48,48,0.6); font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; pointer-events: none; }

/* ─────────────────────────────────────────────
   WAITLIST MODAL
───────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5,5,5,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: modal-fade-in .22s ease;
}
@keyframes modal-fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
  position: relative;
  background: #0c0c0c;
  border: 1px solid rgba(166,191,190,0.22);
  width: 100%; max-width: 520px;
  max-height: 92vh; overflow-y: auto;
  padding: 48px 40px 44px;
  animation: modal-slide-in .28s cubic-bezier(0.16,1,0.3,1);
}
@keyframes modal-slide-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none; cursor: pointer;
  color: rgba(245,245,245,0.45); font-size: 26px; line-height: 1;
  transition: color .18s; font-family: 'DM Sans', sans-serif;
}
.modal-close:hover { color: #f5f5f5; }
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 42px); letter-spacing: .08em;
  color: #f5f5f5; margin: 0 0 10px;
}
.modal-sub {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 300;
  color: rgba(245,245,245,0.88); letter-spacing: .04em; margin: 0 0 32px;
}
.waitlist-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(245,245,245,0.88); }
.form-label-opt { font-weight: 300; letter-spacing: .08em; text-transform: none; color: rgba(245,245,245,0.55); }
.form-input { background: #141414; border: 1px solid rgba(166,191,190,0.16); color: #f5f5f5; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; padding: 11px 14px; width: 100%; box-sizing: border-box; outline: none; transition: border-color .2s; -webkit-appearance: none; }
.form-input:focus { border-color: rgba(166,191,190,0.6); }
.form-input::placeholder { color: rgba(245,245,245,0.2); }
.form-input--error { border-color: rgba(220,80,80,0.7) !important; background: rgba(220,80,80,0.04); }
.form-input--error:focus { border-color: rgba(220,80,80,0.9) !important; }
.form-label--error { color: rgba(220,100,100,0.9); }
@keyframes cityInfoIn { from { opacity:0; transform:translateY(-6px); max-height:0; } to { opacity:1; transform:translateY(0); max-height:80px; } }
.city-info-banner { display:flex; align-items:flex-start; gap:8px; font-family:'DM Sans',sans-serif; font-size:11px; font-weight:400; letter-spacing:.04em; color:#A6BFBE; border-left:2px solid rgba(166,191,190,0.55); padding:7px 10px; overflow:hidden; animation:cityInfoIn .28s cubic-bezier(0.16,1,0.3,1) both; }
.city-info-banner svg { flex-shrink:0; margin-top:1px; opacity:.8; }
.field-error { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 400; color: rgba(220,100,100,0.85); letter-spacing: .04em; margin-top: -3px; display: block; }
.dob-row { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 8px; }
.form-select { appearance: none; -webkit-appearance: none; background: #141414 url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='rgba%28245%2C245%2C245%2C0.4%29' stroke-width='1.4' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") no-repeat right 12px center; border: 1px solid rgba(166,191,190,0.16); color: #f5f5f5; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; padding: 11px 32px 11px 14px; width: 100%; box-sizing: border-box; outline: none; cursor: pointer; transition: border-color .2s; }
.form-select:focus { border-color: rgba(166,191,190,0.6); }
.form-select option { background: #1a1a1a; color: #f5f5f5; }
.form-input-wrap { display: flex; align-items: center; background: #141414; border: 1px solid rgba(166,191,190,0.16); transition: border-color .2s; }
.form-input-wrap:focus-within { border-color: rgba(166,191,190,0.6); }
.form-prefix { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(245,245,245,0.35); padding: 0 0 0 14px; user-select: none; }
.form-input--prefix { border: none !important; background: none !important; padding-left: 4px; }
.combobox { position: relative; }
.combobox-input { padding-right: 36px !important; }
.combobox-input--readonly { cursor: pointer !important; user-select: none; }
.combobox-chevron { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: rgba(245,245,245,0.35); cursor: pointer; display: flex; align-items: center; user-select: none; transition: color .2s; }
.combobox-chevron:hover { color: #f5f5f5; }
.combobox-list { position: absolute; top: calc(100% + 3px); left: 0; right: 0; z-index: 200; background: #1a1a1a; border: 1px solid rgba(166,191,190,0.25); margin: 0; padding: 4px 0; list-style: none; max-height: 220px; overflow-y: auto; }
.combobox-list::-webkit-scrollbar { width: 4px; }
.combobox-list::-webkit-scrollbar-thumb { background: rgba(166,191,190,0.2); }
.combobox-item { padding: 9px 14px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 300; color: rgba(245,245,245,0.75); cursor: pointer; transition: background .12s, color .12s; }
.combobox-item:hover { background: rgba(166,191,190,0.08); color: #f5f5f5; }
.combobox-item--active { color: #A6BFBE; }
.form-error { font-family: 'DM Sans', sans-serif; font-size: 12px; color: #e07070; margin: 0; }
.form-submit { margin-top: 6px; background: transparent; border: 1px solid rgba(166,191,190,0.5); color: #A6BFBE; font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: .18em; padding: 14px 24px; cursor: pointer; transition: background .22s, color .22s, border-color .22s; width: 100%; }
.form-submit:hover { background: #A6BFBE; color: #050505; border-color: #A6BFBE; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-hint { font-family: 'DM Sans', sans-serif; font-size: 11.5px; font-weight: 400; color: #A6BFBE; letter-spacing: .08em; text-transform: uppercase; margin: -6px 0 0; padding: 8px 12px; border-left: 2px solid rgba(166,191,190,0.5); }
.modal-success { text-align: center; padding: 32px 0 16px; }
.modal-success-icon { font-size: 40px; color: #A6BFBE; margin-bottom: 20px; font-family: 'DM Sans', sans-serif; }
.footer-waitlist-wrap { display: flex; justify-content: center; margin: 4px 0 2px; }
.footer-waitlist-btn { background: none; border: 1px solid rgba(166,191,190,0.35); color: #A6BFBE; font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: .2em; padding: 9px 28px; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.footer-waitlist-btn:hover { background: #A6BFBE; color: #050505; border-color: #A6BFBE; }
/* ─── HERO ARROW ─── */
.hero-arrow { display: flex; flex-direction: column; align-items: center; margin-top: 32px; color: rgba(245,245,245,0.35); animation: heroArrowBounce 2s ease-in-out infinite; }
@keyframes heroArrowBounce { 0%, 100% { transform: translateY(0); opacity: 0.35; } 50% { transform: translateY(9px); opacity: 0.65; } }

/* ─── NOTIFY / WAITLIST ROW BUTTON ─── */
.btn-notify { display: flex; flex-direction: column; align-items: center; gap: 4px; background: transparent; border: 1px solid rgba(166,191,190,0.22); padding: 11px 22px; cursor: pointer; transition: background .22s, border-color .22s, box-shadow .22s; min-width: 118px; text-align: center; }
.btn-notify:hover { background: rgba(166,191,190,0.05); border-color: rgba(166,191,190,0.5); box-shadow: 0 0 14px rgba(166,191,190,0.07); }
.btn-notify__status { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .18em; color: rgba(245,245,245,0.82); text-transform: uppercase; line-height: 1; }
.btn-notify__label { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: .17em; color: #A6BFBE; white-space: nowrap; line-height: 1; }
.privacy-modal-content { max-width: 640px; }
.privacy-sections { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.privacy-section-heading { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #A6BFBE; margin: 0 0 6px; }
.privacy-section-body { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 300; line-height: 1.75; letter-spacing: .03em; color: rgba(245,245,245,0.82); margin: 0; }
.privacy-section-body a { color: #A6BFBE; text-decoration: underline; }
button.footer-link { background: none; border: none; cursor: pointer; padding: 0; }
.btn-tickets { display: inline-block; background: transparent; border: 1px solid #f5f5f5; padding: 11px 22px; min-width: 118px; text-align: center; font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: .2em; color: #f5f5f5; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: background .22s, color .22s, border-color .22s; white-space: nowrap; }
.btn-tickets:hover { background: rgba(245,245,245,0.08); border-color: #f5f5f5; }
@media (max-width: 640px) { .btn-tickets { padding: 9px 14px; min-width: 90px; font-size: 11px; } }

/* ─── WAITLIST CTA SECTION ─── */
#waitlist-cta { padding: 100px 24px 90px; text-align: center; border-top: 1px solid rgba(166,191,190,0.07); }
.wl-sec-inner { max-width: 580px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.wl-sec-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 6vw, 58px); letter-spacing: .12em; color: #f5f5f5; line-height: 1; }
.wl-sec-sub { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 300; letter-spacing: .06em; color: rgba(245,245,245,0.88); margin: 0; line-height: 1.7; }
.wl-sec-btn { background: transparent; border: 1px solid rgba(166,191,190,0.5); color: #A6BFBE; font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: .2em; padding: 15px 52px; cursor: pointer; transition: background .22s, color .22s, border-color .22s; margin-top: 10px; }
.wl-sec-btn:hover { background: #A6BFBE; color: #050505; border-color: #A6BFBE; }
@media (max-width: 640px) { #waitlist-cta { padding: 72px 24px 64px; } .wl-sec-btn { padding: 14px 40px; } }

@media (max-width: 600px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-content { padding: 36px 20px 32px; max-width: 100%; width: 100%; max-height: 92dvh; border-left: none; border-right: none; border-bottom: none; animation: modal-slide-up .3s cubic-bezier(0.16,1,0.3,1); }
  @keyframes modal-slide-up { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
  .modal-title { font-size: 28px; margin: 0 0 8px; }
  .modal-sub { font-size: 12px; margin: 0 0 24px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .waitlist-form { gap: 16px; }
  .form-input { font-size: 16px; padding: 13px 14px; }
  .combobox-input { font-size: 16px !important; }
  .combobox-list { max-height: 160px; }
  .form-submit { font-size: 15px; padding: 16px 24px; }
  .modal-close { top: 14px; right: 16px; font-size: 28px; }
  .modal-success {
    min-height: 55dvh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 0;
  }
}

/* ─── MUTE BUTTON ─── */
.mute-btn { position: absolute; bottom: 28px; right: 28px; z-index: 10; width: 42px; height: 42px; background: rgba(5,5,5,0.55); border: 1px solid rgba(166,191,190,0.35); color: rgba(245,245,245,0.7); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s, color .2s; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.mute-btn svg { width: 18px; height: 18px; }
.mute-btn:hover { background: rgba(166,191,190,0.18); border-color: rgba(166,191,190,0.7); color: #f5f5f5; }
.mute-btn--muted { color: rgba(245,245,245,0.4); }
@media (max-width: 600px) { .mute-btn { bottom: 18px; right: 18px; width: 36px; height: 36px; } .mute-btn svg { width: 15px; height: 15px; } }
