/* ============================================================
   FREEDOM CUP FEST — V2 — MAIN STAGE NIGHTLIFE
   Dark club aesthetic, red/white/blue spotlight system
   ============================================================ */

@font-face { font-family: 'Sharp Grotesk BI'; src: url('fonts/SharpGroteskBoldItalic15.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Sharp Grotesk'; src: url('fonts/SharpGroteskBook25.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Sharp Grotesk'; src: url('fonts/SharpGroteskSmBold25.otf') format('opentype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Ambit'; src: url('fonts/Ambit-Regular.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Ambit'; src: url('fonts/Ambit-Bold.otf') format('opentype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Anton'; src: url('fonts/Anton-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Antonio'; src: url('fonts/Antonio-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }

:root {
  --black: #0a0a0d;
  --panel: #15151c;
  --panel-2: #1d1d25;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.16);
  --white: #ffffff;
  --bone: #f4f1ea;
  --bone-dim: rgba(244,241,234,0.7);
  --red: #ff2436;
  --red-deep: #c11528;
  --blue: #2c4cff;
  --blue-deep: #1c30b8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--black);
  color: var(--bone);
  font-family: 'Ambit', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

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

/* ===== TYPE UTILS ===== */
.display-it {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.82;
}
.stadium {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.92;
}
.label {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.mono {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  letter-spacing: 0.02em;
  font-size: 12px;
  text-transform: uppercase;
}

/* ===== LAYOUT ===== */
.wrap { width: 100%; max-width: 1480px; margin: 0 auto; padding: 0 40px; }
section { position: relative; }

/* ===== NAV ===== */
.navN {
  position: sticky; top: 0; z-index: 90;
  background: rgba(10,10,13,0.94);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.navN-in {
  padding: 14px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.navN-mark {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.navN-mark .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red), 0 0 28px rgba(255,36,54,0.5);
  animation: pulseN 2s ease-in-out infinite;
}
@keyframes pulseN {
  0%, 100% { box-shadow: 0 0 14px var(--red), 0 0 28px rgba(255,36,54,0.5); }
  50% { box-shadow: 0 0 22px var(--red), 0 0 44px rgba(255,36,54,0.8); }
}
.navN-mark .host-divider {
  width: 1px; height: 16px; background: var(--line-2); margin: 0 4px;
}
.navN-mark .partake-mini {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.9;
  line-height: 1;
}
.navN-mark .partake-mini img { height: 10px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; display: block; }
.navN-mark .partake-mini img.elev { height: 9px; filter: brightness(0) invert(1); opacity: 0.95; display: block; }
.navN-mark .partake-mini .amp { display: none; }

.navN-links {
  display: flex; justify-content: center; gap: 26px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.navN-links a { color: var(--bone-dim); transition: color 0.15s; white-space: nowrap; }
.navN-links a:hover { color: var(--red); }

.navN-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 999px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.navN-cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 1px var(--red), 0 0 18px rgba(255,36,54,0.45);
}

/* ===== HERO ===== */
.heroN {
  padding: 24px 0 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.heroN::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 65%, rgba(255,36,54,0.25), transparent 70%),
    radial-gradient(40% 40% at 80% 30%, rgba(44,76,255,0.18), transparent 70%);
  pointer-events: none;
}

.heroN-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 40px 14px;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
}
.heroN-top .l { display: flex; gap: 14px; align-items: center; }
.heroN-top .l .live-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 12px var(--red); }
.heroN-top .c {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-family: 'Anton';
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.heroN-top .c .mo,
.heroN-top .c .yr {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--bone-dim);
  align-self: center;
}
.heroN-top .c .dy { color: var(--white); }
.heroN-top .c .dy.hl {
  color: var(--red);
  text-shadow: 0 0 14px rgba(255,36,54,0.55);
}
.heroN-top .c .dot { color: var(--red); opacity: 0.7; }
.heroN-top .c .red { color: var(--red); }
.heroN-top .r { text-align: right; opacity: 0.7; }

.heroN-stage {
  text-align: center;
  padding: 28px 40px 32px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.heroN-presents {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.heroN-presents::before, .heroN-presents::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--bone-dim);
}
.heroN-presents .pres-logo {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.heroN-presents .pres-logo.pres-elev {
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.heroN-presents .pres-amp {
  font-size: 14px;
  letter-spacing: 0;
  color: var(--bone-dim);
}

.heroN-title {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(80px, min(15vw, 26vh), 260px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  margin: 0;
  text-shadow:
    0 0 60px rgba(255,36,54,0.4);
}
.heroN-title .red {
  color: var(--red);
  text-shadow:
    0 0 30px rgba(255,36,54,0.7),
    0 0 60px rgba(255,36,54,0.4);
}
.heroN-title .blue {
  color: var(--blue);
  text-shadow:
    0 0 30px rgba(44,76,255,0.7),
    0 0 60px rgba(44,76,255,0.4);
}
.heroN-title .outline {
  -webkit-text-stroke: 3px var(--white);
  color: transparent;
  text-shadow: none;
}

.heroN-dateline {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 10px 22px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  font-family: 'Anton';
  font-size: 18px;
  letter-spacing: 0.06em;
}
.heroN-dateline .red { color: var(--red); }
.heroN-dateline .sep { width: 6px; height: 6px; background: var(--bone-dim); border-radius: 50%; }

.heroN-tagline {
  font-family: 'Sharp Grotesk', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bone-dim);
  max-width: 640px;
  margin: 0 auto;
}
.heroN-tagline em {
  font-style: normal;
  color: var(--white);
  font-weight: 600;
}

.heroN-ctas {
  margin-top: 0;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btnN {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--bone);
  transition: all 0.2s;
}
.btnN:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btnN.red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 0 24px rgba(255,36,54,0.5);
}
.btnN.red:hover { background: var(--white); color: var(--red); box-shadow: 0 0 24px rgba(255,255,255,0.5); }
.btnN.blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 0 24px rgba(44,76,255,0.5);
}
.btnN.blue:hover { background: var(--white); color: var(--blue); box-shadow: 0 0 24px rgba(255,255,255,0.5); }

.btnN.white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 0 0 1px var(--white), 0 0 24px rgba(255,255,255,0.35);
}
.btnN.white:hover { background: var(--black); color: var(--white); border-color: var(--white); box-shadow: 0 0 24px rgba(255,255,255,0.5); }
.btnN.white .arr { background: rgba(0,0,0,0.12); color: var(--black); }
.btnN.white:hover .arr { background: rgba(255,255,255,0.16); color: var(--white); }

/* ===== BRAND KIT BANNER (home page) ===== */
.bkBanner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding: 36px 40px;
  background:
    linear-gradient(135deg, rgba(44,76,255,0.10), rgba(255,36,54,0.10)),
    var(--panel);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.bkBanner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(var(--red), var(--blue));
  box-shadow: 0 0 18px rgba(44,76,255,0.4);
}
.bkBanner::after {
  content: 'BRAND KIT';
  position: absolute;
  right: -10px; bottom: -34px;
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(90px, 14vw, 200px);
  line-height: 0.8;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.bkBanner:hover {
  border-color: var(--line-2);
  background:
    linear-gradient(135deg, rgba(44,76,255,0.16), rgba(255,36,54,0.16)),
    var(--panel);
}
.bkBanner-l { position: relative; z-index: 2; max-width: 720px; }
.bkBanner-eye {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.bkBanner-eye .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
  animation: bob 2.4s ease-in-out infinite;
}
.bkBanner-t {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--white);
}
.bkBanner-t .red { color: var(--red); text-shadow: 0 0 20px rgba(255,36,54,0.5); }
.bkBanner-p {
  font-family: 'Ambit', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--bone-dim);
  margin-top: 12px;
  max-width: 560px;
}
.bkBanner-r { position: relative; z-index: 2; }
.bkBanner-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  border-radius: 999px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px var(--white), 0 0 24px rgba(255,255,255,0.35);
  transition: all 0.2s;
}
.bkBanner:hover .bkBanner-cta {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 0 28px rgba(255,36,54,0.6);
}
.bkBanner-cta .arr {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  font-size: 12px;
  transition: background 0.2s;
}
.bkBanner:hover .bkBanner-cta .arr { background: rgba(255,255,255,0.2); }

@media (max-width: 760px) {
  .bkBanner { grid-template-columns: 1fr; padding: 22px 20px; gap: 16px; }
  .bkBanner-t { font-size: 26px; }
  .bkBanner-p { font-size: 13px; }
  .bkBanner-cta {
    width: auto;
    align-self: flex-start;
    padding: 10px 16px;
    font-size: 10px;
    letter-spacing: 0.18em;
    gap: 8px;
  }
  .bkBanner-cta .arr { width: 18px; height: 18px; font-size: 10px; }
}

/* Outline accent variants — quieter than solid, but still color-cued */
.btnN.ghost-blue {
  background: transparent;
  color: var(--white);
  border-color: var(--blue);
}
.btnN.ghost-blue::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-right: -2px;
  box-shadow: 0 0 10px var(--blue);
}
.btnN.ghost-blue:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 24px rgba(44,76,255,0.5);
}
.btnN.ghost-blue:hover::before { background: var(--white); box-shadow: 0 0 10px var(--white); }
.btnN .arr {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  font-size: 12px;
}

.heroN-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: var(--black);
  position: relative;
  z-index: 2;
}
.heroN-stat {
  padding: 26px 28px 30px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.heroN-stat:last-child { border-right: none; }
.heroN-stat .lbl {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.heroN-stat .big {
  font-family: 'Anton';
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}
.heroN-stat .big .red { color: var(--red); }
.heroN-stat .big .blue { color: var(--blue); }
.heroN-stat .sub {
  font-family: 'Ambit', sans-serif;
  font-size: 12px;
  color: var(--bone-dim);
  line-height: 1.4;
}
.heroN-stat.countdown-cell .big {
  font-variant-numeric: tabular-nums;
  display: flex; gap: 14px;
  font-size: 36px;
}
.heroN-stat.countdown-cell .big div {
  display: flex; flex-direction: column;
  align-items: flex-start;
}
.heroN-stat.countdown-cell .big div small {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.22em;
  margin-top: 4px;
  color: var(--bone-dim);
}

/* ===== MARQUEE ===== */
.mqN {
  background: var(--red);
  color: var(--white);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red-deep);
}
.mqN.blue { background: var(--blue); border-color: var(--blue-deep); }
.mqN.dark { background: var(--black); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--bone); }
.mqN-track {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding: 0 19px;
  white-space: nowrap;
  animation: scrollN 38s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  contain: layout style paint;
}
.mqN-track > * { flex-shrink: 0; }
@keyframes scrollN {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.mqN-track span {
  font-family: 'Anton';
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mqN-track .dotty {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  opacity: 0.6;
}

/* ===== SECTION HEAD ===== */
.sh-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 50px;
}
.sh-num {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 96px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--red);
  text-shadow: 0 0 40px rgba(255,36,54,0.4);
}
.sh-eye {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.sh-eye::before { content: ''; width: 36px; height: 1px; background: var(--red); }

.sh-title {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(54px, 7vw, 110px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--white);
}
.sh-title .red { color: var(--red); }
.sh-title .blue { color: var(--blue); }
.sh-title .outline { -webkit-text-stroke: 2px var(--white); color: transparent; }

/* ===== EXPERIENCES — main stage cards ===== */
.expN { padding: 110px 0; }

.expN-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.expN-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px 24px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  overflow: hidden;
  transition: all 0.3s;
}
.expN-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 80% at 50% 100%, var(--glow,rgba(255,36,54,0.15)), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.expN-card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.expN-card:hover::before { opacity: 1; }
.expN-card .n {
  font-family: 'Anton';
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--bone-dim);
}
.expN-card .t {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  min-height: calc(30px * 0.92 * 2);
}
.expN-card .d {
  font-family: 'Ambit', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--bone-dim);
}
.expN-card .tag {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.expN-card .tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
}

.expN-card.feat-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  --glow: rgba(255,255,255,0.2);
}
.expN-card.feat-red .t { color: var(--white); }
.expN-card.feat-red .d { color: rgba(255,255,255,0.85); }
.expN-card.feat-red .tag { color: var(--white); }
.expN-card.feat-red .tag::before { background: var(--white); box-shadow: 0 0 12px var(--white); }
.expN-card.feat-red .n { color: rgba(255,255,255,0.7); }

.expN-card.feat-blue {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  --glow: rgba(255,255,255,0.2);
}
.expN-card.feat-blue .t { color: var(--white); }
.expN-card.feat-blue .d { color: rgba(255,255,255,0.85); }
.expN-card.feat-blue .tag { color: var(--white); }
.expN-card.feat-blue .tag::before { background: var(--white); box-shadow: 0 0 12px var(--white); }
.expN-card.feat-blue .n { color: rgba(255,255,255,0.7); }

/* ===== LINEUP — main stage poster ===== */
.lineupN {
  padding: 110px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.lineupN::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 50% at 25% 50%, rgba(255,36,54,0.16), transparent 60%),
    radial-gradient(40% 50% at 75% 50%, rgba(44,76,255,0.16), transparent 60%);
  pointer-events: none;
}

.lineupN-poster {
  text-align: center;
  padding: 40px 36px 0;
  position: relative;
  z-index: 2;
}
.lineupN-tag {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin: 24px 0 10px;
}
.lineupN-row {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.03em;
  padding: 6px 0;
}
.lineupN-row.headliner {
  font-size: clamp(80px, 12vw, 200px);
  color: var(--white);
  text-shadow: 0 0 40px rgba(255,255,255,0.2);
}
.lineupN-row.headliner .red { color: var(--red); text-shadow: 0 0 30px rgba(255,36,54,0.6); }
.lineupN-row.headliner .blue { color: var(--blue); text-shadow: 0 0 30px rgba(44,76,255,0.6); }
.lineupN-row.support {
  font-size: clamp(50px, 7vw, 110px);
  color: var(--white);
}
.lineupN-row.support .blue { color: var(--blue); text-shadow: 0 0 30px rgba(44,76,255,0.6); }
.lineupN-row.amp {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  color: var(--red);
  font-size: clamp(30px, 4vw, 56px);
  padding: 6px 0;
  letter-spacing: 0.04em;
}
.lineupN-row.djs {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 42px);
  color: var(--bone);
  letter-spacing: 0.04em;
  margin-top: 14px;
}
.lineupN-row.djs span { color: var(--red); margin: 0 8px; }
.lineupN-row.smaller {
  font-family: 'Sharp Grotesk', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--bone-dim);
  margin-top: 18px;
}

.lineupN-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 70px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.lineupN-day {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.lineupN-day:last-child { border-right: none; }
.lineupN-day .day-num {
  font-family: 'Anton';
  font-size: 72px;
  line-height: 1;
  color: var(--red);
  text-shadow: 0 0 30px rgba(255,36,54,0.4);
}
.lineupN-day .day-date {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 8px 0 18px;
  color: var(--bone-dim);
}
.lineupN-day .day-name {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 36px;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.lineupN-day .day-name .red { color: var(--red); }
.lineupN-day .day-list {
  font-family: 'Ambit', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--bone-dim);
}

/* ===== SPONSOR — VIP wristbands ===== */
.sponsorN {
  padding: 120px 0;
  position: relative;
}

.sponsorN-pre {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.sponsorN-lede {
  font-family: 'Sharp Grotesk', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--bone-dim);
  max-width: 600px;
}
.sponsorN-lede em {
  font-style: normal;
  color: var(--red);
  font-weight: 600;
}

.tiersN {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tierN {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.tierN::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--red);
  box-shadow: 0 0 20px var(--red);
}
.tierN:hover { border-color: var(--line-2); transform: translateX(4px); }
.tierN.title-tier::before { background: linear-gradient(180deg, var(--red), var(--blue)); width: 8px; box-shadow: 0 0 30px var(--red); }
.tierN.title-tier { background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%); border-color: var(--line-2); }
.tierN.presenting::before { background: var(--red); }
.tierN.premier::before { background: var(--blue); box-shadow: 0 0 20px var(--blue); }
.tierN.supporting::before { background: var(--white); box-shadow: 0 0 20px rgba(255,255,255,0.4); }
.tierN.zone::before { background: linear-gradient(180deg, var(--blue), var(--red)); }

.tierN-rank {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}
.tierN-main { display: flex; flex-direction: column; gap: 8px; }
.tierN-name {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 42px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.tierN-name .red { color: var(--red); }
.tierN-perks {
  font-family: 'Ambit', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--bone-dim);
  max-width: 720px;
}
.tierN-perks b { color: var(--white); font-weight: 700; }

.tierN-price {
  font-family: 'Anton';
  font-size: 48px;
  line-height: 1;
  color: var(--white);
  text-align: right;
  white-space: nowrap;
}
.tierN-price small {
  display: block;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--bone-dim);
}

.tierN-apply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
}
.tierN-apply:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.tierN.title-tier .tierN-apply { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: 0 0 0 1px var(--red), 0 0 20px rgba(255,36,54,0.4); }

/* ===== SPONSOR — Tier CARDS (side-by-side, bulleted) ===== */
.tierCards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1080px) {
  .tierCards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
  .tierCards { grid-template-columns: 1fr; gap: 10px; }
}

.tierCard {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.tierCard:hover { border-color: var(--line-2); transform: translateY(-3px); }

/* Color top accent bar — varies per tier */
.tierCard-bar {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--line-2);
}
.tierCard.silver  .tierCard-bar { background: linear-gradient(90deg, #d8d8e0, #8a8a93); }
.tierCard.gold    .tierCard-bar { background: linear-gradient(90deg, #f3c969, #b88a25); }
.tierCard.platinum .tierCard-bar { background: linear-gradient(90deg, #ffffff, #9ec9ff); box-shadow: 0 0 14px rgba(158,201,255,0.4); }
.tierCard.diamond .tierCard-bar { background: linear-gradient(90deg, var(--red), var(--blue)); box-shadow: 0 0 16px rgba(255,36,54,0.55); height: 5px; }

/* Featured tier — Diamond */
.tierCard.featured {
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border-color: var(--line-2);
}
.tierCard-flag {
  position: absolute;
  top: 16px; right: 16px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 5px 9px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--red), 0 0 14px rgba(255,36,54,0.5);
  z-index: 2;
}

/* Head block */
.tierCard-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tierCard-rank {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.tierCard-name {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 40px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.tierCard.diamond .tierCard-name { color: var(--white); }
.tierCard-sub {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-top: 4px;
  min-height: 2.4em;
  line-height: 1.2;
}

/* Price — column layout so num + lbl align identically across all cards */
.tierCard-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.tierCard-price .num {
  font-family: 'Anton';
  font-size: 52px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.01em;
}
.tierCard.diamond .tierCard-price .num { color: var(--white); }
.tierCard-price .lbl {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  white-space: nowrap;
}

/* "Everything in X, plus:" header */
.tierCard-inherits {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
  text-transform: none;
  margin: -6px 0 -6px;
}
.tierCard-inherits span {
  color: var(--white);
  font-weight: 700;
}

/* Bullets */
.tierCard-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tierCard-list li {
  position: relative;
  padding-left: 22px;
  font-family: 'Ambit', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: var(--bone);
  text-wrap: pretty;
}
.tierCard-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  background: var(--red);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(255,36,54,0.55);
}
.tierCard.silver   .tierCard-list li::before { background: #c8c8d0; box-shadow: 0 0 8px rgba(200,200,208,0.35); }
.tierCard.gold     .tierCard-list li::before { background: #e6b94d; box-shadow: 0 0 8px rgba(230,185,77,0.45); }
.tierCard.platinum .tierCard-list li::before { background: var(--blue); box-shadow: 0 0 8px rgba(44,76,255,0.55); }
.tierCard.diamond  .tierCard-list li::before { background: var(--red); box-shadow: 0 0 10px rgba(255,36,54,0.7); }

/* CTA */
.tierCard-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
  padding: 14px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  transition: all 0.2s;
}
.tierCard-cta span { font-size: 14px; letter-spacing: 0; }
.tierCard-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.tierCard.diamond .tierCard-cta { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: 0 0 0 1px var(--red), 0 0 18px rgba(255,36,54,0.45); }
.tierCard.diamond .tierCard-cta:hover { background: var(--white); color: var(--red); border-color: var(--white); box-shadow: 0 0 18px rgba(255,255,255,0.5); }

/* Disclaimer note under the tier cards */
.tierCards-note {
  margin: 28px 0 0;
  padding: 14px 18px;
  border: 1px dashed var(--line-2);
  font-family: 'Ambit', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--bone-dim);
  text-wrap: pretty;
}
.tierCards-note span {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-right: 6px;
}
.tierCards-note .nb {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
  color: inherit;
  margin: 0;
  white-space: nowrap;
}

/* ===== TIER CARDS — MOBILE COMPACT ROW LAYOUT =====
   Placed AFTER base .tierCard rules so it actually overrides on mobile.
   Color bar still appears (moved to left edge as a vertical ribbon). */
@media (max-width: 600px) {
  .tierCard {
    padding: 16px 18px 16px 22px;
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "head price"
      "inherits inherits"
      "list list"
      "cta cta";
    align-items: start;
  }
  .tierCard:hover { transform: none; }

  /* Color bar: top → left edge */
  .tierCard-bar {
    top: 0; bottom: 0; right: auto;
    width: 4px; height: auto;
  }
  .tierCard.diamond .tierCard-bar { width: 5px; height: auto; }

  /* Head — rank + name + sub stacked tight on left */
  .tierCard-head {
    grid-area: head;
    gap: 3px;
    margin: 0;
  }
  .tierCard-rank { font-size: 9px; letter-spacing: 0.22em; }
  .tierCard-name { font-size: 28px; line-height: 0.92; }
  .tierCard-head .tierCard-sub { font-size: 10px; letter-spacing: 0.14em; margin-top: 2px; }

  /* Price inline, right-aligned */
  .tierCard-price {
    grid-area: price;
    padding: 0;
    border: none;
    align-items: flex-end;
    text-align: right;
    gap: 2px;
  }
  .tierCard-price .num { font-size: 30px; line-height: 0.92; }
  .tierCard-price .lbl { font-size: 9px; letter-spacing: 0.16em; }

  .tierCard-inherits {
    grid-area: inherits;
    font-size: 10px;
    letter-spacing: 0.14em;
    padding: 10px 0 0;
    margin: 0;
    border-top: 1px solid var(--line);
  }

  .tierCard-list {
    grid-area: list;
    gap: 7px;
    padding: 0;
    margin: 0;
  }
  .tierCard-list li {
    font-size: 13px;
    line-height: 1.4;
    padding-left: 18px;
  }
  .tierCard-list li::before {
    width: 5px; height: 5px;
    top: 7px; left: 4px;
  }

  .tierCard-cta {
    grid-area: cta;
    justify-content: center;
    padding: 11px 16px;
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-top: 4px;
  }

  .tierCard-flag { top: 10px; right: 10px; font-size: 9px; padding: 4px 8px; letter-spacing: 0.16em; }
}

/* Divider between Flagship strip and tier cards */
.tierCards-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 44px 0 24px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.tierCards-divider::before,
.tierCards-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Flagship 5th-tier strip */
.tierFlagstrip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 22px;
  padding: 26px 32px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-deep) 100%);
  border: 1px solid var(--red);
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}
.tierFlagstrip:hover { transform: translateY(-2px); }
.tierFlagstrip::before {
  content: '$25K';
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 220px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.03em;
  pointer-events: none;
}
.tierFlagstrip-l, .tierFlagstrip-r { position: relative; z-index: 2; }
.tierFlagstrip-eye {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.tierFlagstrip-name {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.tierFlagstrip-name .outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
.tierFlagstrip-perk {
  font-family: 'Sharp Grotesk', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
  max-width: 640px;
  color: rgba(255,255,255,0.92);
}
.tierFlagstrip-r { text-align: right; }
.tierFlagstrip-price {
  font-family: 'Anton';
  font-size: 64px;
  line-height: 1;
  color: var(--white);
}
.tierFlagstrip-go {
  margin-top: 10px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.tierFlagstrip-go span { font-size: 14px; letter-spacing: 0; }
@media (max-width: 700px) {
  .tierFlagstrip { grid-template-columns: 1fr; padding: 22px; gap: 18px; }
  .tierFlagstrip-r { text-align: left; }
  .tierFlagstrip-go { justify-content: flex-start; }
  .tierFlagstrip::before { font-size: 140px; right: -20px; }
}

/* ===== FLAGSHIP ===== */
.flagN {
  padding: 120px 0;
  background: var(--red);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--red-deep);
  border-bottom: 1px solid var(--red-deep);
}
.flagN::before {
  content: '$20K';
  position: absolute;
  right: -30px; top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 420px;
  line-height: 1;
  color: rgba(255,255,255,0.07);
  pointer-events: none;
  letter-spacing: -0.03em;
}
.flagN-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.flagN-eyebrow {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.flagN-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--white); }
.flagN-title {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(60px, 8vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
}
.flagN-title .outline { -webkit-text-stroke: 3px var(--white); color: transparent; }
.flagN-body {
  font-family: 'Sharp Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  margin: 28px 0;
  max-width: 540px;
  color: rgba(255,255,255,0.85);
}
.flagN-price {
  display: flex;
  align-items: end;
  gap: 16px;
  margin: 30px 0;
}
.flagN-price .num {
  font-family: 'Anton';
  font-size: 110px;
  line-height: 0.85;
}
.flagN-price .lbl {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 12px;
  max-width: 200px;
  opacity: 0.85;
}
.flagN-includes {
  list-style: none;
  background: var(--black);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.flagN-includes li {
  font-family: 'Ambit', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 22px;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--bone);
}
.flagN-includes li:last-child { border-bottom: none; padding-bottom: 0; }
.flagN-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
}

/* ===== VENDORS — credentials ===== */
.vendorsN { padding: 110px 0; }

.vendorsN-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.credN {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 40px 36px 42px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.credN::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  box-shadow: 0 0 20px var(--red);
}
.credN.blue::before { background: var(--blue); box-shadow: 0 0 20px var(--blue); }

.credN .rank {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.credN .nm {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--white);
}
.credN .pr {
  display: flex; align-items: end; gap: 16px;
  border-top: 1px solid var(--line-2);
  padding-top: 18px;
}
.credN .pr .num {
  font-family: 'Anton';
  font-size: 76px;
  line-height: 0.85;
  color: var(--white);
}
.credN .pr .lbl {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 6px;
  color: var(--bone-dim);
}
.credN .best {
  font-family: 'Sharp Grotesk', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: var(--bone);
}
.credN ul.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.credN ul.bullets li {
  font-family: 'Ambit', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
  color: var(--bone-dim);
}
.credN ul.bullets li::before {
  content: '→';
  position: absolute; left: 0;
  font-weight: 700;
  color: var(--red);
}
.credN.blue ul.bullets li::before { color: var(--blue); }

.credN-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 26px;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: auto;
  box-shadow: 0 0 0 1px var(--red), 0 0 20px rgba(255,36,54,0.4);
  transition: all 0.2s;
}
.credN.blue .credN-cta { background: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 0 20px rgba(44,76,255,0.4); }
.credN-cta:hover { transform: translateY(-2px); }


/* ===== TICKETS ===== */
.ticketsN {
  padding: 120px 0;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.passesN {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) {
  .passesN { grid-template-columns: repeat(2, 1fr); }
}

/* Tables & Sections horizontal strip — its own beat below the 4 ticket cards */
.passN-tablestrip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 16px;
  padding: 30px 36px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-deep) 100%);
  border: 1px solid var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}
.passN-tablestrip:hover { transform: translateY(-2px); }
.passN-tablestrip::before {
  content: 'TABLES';
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 200px;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.03em;
  pointer-events: none;
}
.passN-tablestrip .ts-l, .passN-tablestrip .ts-r { position: relative; z-index: 2; }
.passN-tablestrip .ts-tag {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.passN-tablestrip .ts-nm {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.passN-tablestrip .ts-nm .outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
.passN-tablestrip .ts-perk {
  font-family: 'Sharp Grotesk', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
  max-width: 640px;
  color: rgba(255,255,255,0.92);
}
.passN-tablestrip .ts-perk em {
  font-style: normal;
  color: var(--white);
  font-weight: 600;
}
.passN-tablestrip .ts-r { text-align: right; }
.passN-tablestrip .ts-price {
  font-family: 'Anton';
  font-size: 56px;
  line-height: 1;
  color: var(--white);
}
.passN-tablestrip .ts-sub {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
  color: rgba(255,255,255,0.7);
}
.passN-tablestrip .ts-go {
  margin-top: 14px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.passN-tablestrip .ts-go span { font-size: 14px; letter-spacing: 0; }

@media (max-width: 700px) {
  .passN-tablestrip {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 18px;
  }
  .passN-tablestrip .ts-r { text-align: left; }
  .passN-tablestrip .ts-go { justify-content: flex-start; }
  .passN-tablestrip::before { font-size: 140px; right: -20px; }
}
.passN {
  background: var(--black);
  border: 1px solid var(--line);
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.passN:hover { border-color: var(--line-2); transform: translateY(-4px); }
.passN.feat {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 0 32px rgba(255,36,54,0.4);
}
.passN.feat .pass-tag { color: rgba(255,255,255,0.7); }
.passN.feat .pass-list li::before { background: var(--white); box-shadow: 0 0 8px var(--white); }
.passN.blue-feat { background: var(--blue); border-color: var(--blue); }
.passN.blue-feat .pass-tag { color: rgba(255,255,255,0.7); }

.pass-tag {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.pass-nm {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
}
.pass-pr {
  font-family: 'Anton';
  font-size: 42px;
  line-height: 1;
  color: var(--white);
}
.pass-pr small {
  display: block;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.7;
}
.pass-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}
.pass-list li {
  font-family: 'Ambit', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}
.pass-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
}
.pass-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: auto;
  transition: all 0.2s;
}
.passN.feat .pass-cta { background: var(--white); color: var(--red); border-color: var(--white); }
.passN.blue-feat .pass-cta { background: var(--white); color: var(--blue); border-color: var(--white); }
.pass-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.pass-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--white);
  color: var(--red);
  padding: 5px 10px 4px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.6);
  z-index: 2;
}

/* ===== VENUE ===== */
.venueN { padding: 110px 0; }

.venueN-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.venueN-card {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.venueN-card:last-child { border-right: none; }
.venueN-card.partake { background: var(--red); color: var(--white); }
.venueN-card.partake::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 50% 100%, rgba(255,255,255,0.12), transparent 70%);
  pointer-events: none;
}
.venueN-card.elevated { background: var(--panel); }
.venueN-card.elevated::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(44,76,255,0.18), transparent 30%);
  pointer-events: none;
}
.venueN-card.address { background: var(--blue); color: var(--white); }

.venueN-card .vc-head {
  display: flex;
  align-items: flex-end;
  height: 56px;
  position: relative;
  z-index: 2;
}
.venueN-card .vc-head .logo-big {
  height: 100%;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  object-position: left bottom;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.venueN-card .vc-head .logo-big.elev { max-width: 220px; }
.venueN-card .vc-wordmark {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
}
.venueN-card .vc-addr .vc-zip {
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.04em;
  margin-top: 6px;
  opacity: 0.75;
  font-style: normal;
}
.venueN-card .vc-addr {
  font-size: clamp(26px, 3vw, 38px);
}

.venueN-card .logo-big {
  width: 100%; max-width: 240px; height: auto;
  position: relative; z-index: 2;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.venueN-card .logo-big.elev { max-width: 220px; }

.venueN-card .vc-tag {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  position: relative; z-index: 2;
}
.venueN-card .vc-copy {
  font-family: 'Ambit', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  position: relative; z-index: 2;
}
.venueN-card .vc-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  position: relative; z-index: 2;
}
.venueN-card .vc-list li {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-left: 18px;
  position: relative;
}
.venueN-card .vc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 8px; height: 8px;
  background: currentColor;
  border-radius: 50%;
}
.venueN-card .vc-addr {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative; z-index: 2;
}
.venueN-card .vc-stats {
  display: flex;
  gap: 24px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  position: relative; z-index: 2;
}
.venueN-card .vc-stats > div {
  display: flex; flex-direction: column;
}
.venueN-card .vc-stats b {
  font-family: 'Anton';
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.venueN-card .vc-stats span {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}

/* ===== CONTACT ===== */
.contactN {
  padding: 110px 0;
}
.contactN-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}
.contactN-side { display: flex; flex-direction: column; gap: 24px; }
.contactN-side h2 { margin-bottom: 6px; }
.contactN-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contactN-block .lbl {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.contactN-block .val {
  font-family: 'Anton';
  font-size: 26px;
  color: var(--white);
}

.contactN-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.contactN-form .full { grid-column: 1 / -1; }
.contactN-form .field { display: flex; flex-direction: column; gap: 6px; }
.contactN-form label {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.contactN-form input, .contactN-form select, .contactN-form textarea {
  font-family: 'Ambit', sans-serif;
  font-size: 15px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  padding: 10px 4px;
  color: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.contactN-form input:focus, .contactN-form select:focus, .contactN-form textarea:focus {
  border-color: var(--red);
}
.contactN-form select option { background: var(--panel); color: var(--white); }
.contactN-form textarea { min-height: 110px; resize: vertical; }
.contactN-form button {
  background: var(--red);
  color: var(--white);
  padding: 18px 26px;
  border-radius: 999px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--red), 0 0 20px rgba(255,36,54,0.4);
  transition: all 0.2s;
}
.contactN-form button:hover { background: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 0 24px rgba(44,76,255,0.5); }

/* ===== CLOSER ===== */
.closerN {
  padding: 120px 0 100px;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.closerN::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 100%, rgba(255,36,54,0.3), transparent 70%),
    radial-gradient(40% 40% at 20% 30%, rgba(44,76,255,0.18), transparent 70%);
  pointer-events: none;
}
.closerN-inner { position: relative; z-index: 2; padding: 0 40px; }
.closerN-eyebrow {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 30px;
}
.closerN-title {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(80px, 11vw, 200px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--white);
}
.closerN-title .red {
  color: var(--red);
  text-shadow: 0 0 40px rgba(255,36,54,0.6);
}
.closerN-title .outline { -webkit-text-stroke: 3px var(--white); color: transparent; }
.closerN-title .nowrap { white-space: nowrap; }

.closerN-meta {
  display: flex; justify-content: center; gap: 50px;
  margin: 50px 0 40px;
  flex-wrap: wrap;
}
.closerN-meta div {
  font-family: 'Anton';
  font-size: 38px;
  color: var(--white);
}
.closerN-meta div span {
  display: block;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  margin-top: 4px;
  color: var(--bone-dim);
}

.closerN-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 34px;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px var(--red), 0 0 40px rgba(255,36,54,0.6);
  transition: all 0.2s;
}
.closerN-cta:hover { transform: translateY(-3px); }

.closerN-row {
  margin-top: 22px;
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap;
}
.closerN-row a {
  padding: 14px 22px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  transition: all 0.2s;
}
.closerN-row a:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ===== FOOTER ===== */
footer.footerN {
  background: var(--black);
  color: var(--bone-dim);
  padding: 26px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Sharp Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
footer.footerN .foot-mark {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
footer.footerN img.foot-logo { height: 18px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
footer.footerN img.foot-logo-elev { height: 18px; }
footer.footerN a { color: var(--bone-dim); }
footer.footerN a:hover { color: var(--red); }

/* ============================================================
   ANIMATIONS + INTERACTIVE EFFECTS
   ============================================================ */

/* Cursor-follow spotlight overlay — GPU-composited.
   Off on coarse-pointer (touch) devices to save battery + paint. */
.fx-spotlight {
  position: fixed;
  pointer-events: none;
  left: 0; top: 0;
  width: 600px; height: 600px;
  z-index: 50;
  opacity: 0;
  background: radial-gradient(circle at center,
    rgba(255,36,54,0.22) 0%,
    rgba(255,36,54,0.10) 22%,
    rgba(255,36,54,0.04) 42%,
    transparent 62%);
  mix-blend-mode: screen;
  transition: opacity 0.25s ease;
  will-change: transform;
  transform: translate3d(-9999px, -9999px, 0);
  contain: strict;
}
@media (hover: none), (pointer: coarse) {
  .fx-spotlight { display: none !important; }
}

/* Title halation — static for perf; was an animated pulse */
.heroN-title {
  text-shadow:
    0 0 50px rgba(255,36,54,0.35),
    0 0 100px rgba(255,36,54,0.18);
}

/* Subtle scanline overlay on hero */
.heroN::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 2px,
    rgba(255,255,255,0.018) 2px,
    rgba(255,255,255,0.018) 3px
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}
.heroN-stage, .heroN-stats, .heroN-top { position: relative; z-index: 3; }

/* ============================================================
   NYC SKYLINE (in hero)
   ============================================================ */
.heroN-skyline {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(140px, 16vw, 220px);
  margin-top: -80px;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
}
.heroN-skyline .sky-back  { filter: drop-shadow(0 0 8px rgba(44,76,255,0.18)); opacity: 0.85; }
.heroN-skyline .sky-front { filter: drop-shadow(0 -4px 24px rgba(255,36,54,0.18)); }
.heroN-skyline .sky-windows rect { animation: window-twinkle 4s ease-in-out infinite; will-change: opacity; }
.heroN-skyline .sky-windows rect.tw1 { animation-delay: 1.2s; }
.heroN-skyline .sky-windows rect.tw2 { animation-delay: 2.4s; }
@keyframes window-twinkle {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}
.heroN-skyline .beacon {
  filter: drop-shadow(0 0 4px #ff2436) drop-shadow(0 0 10px rgba(255,36,54,0.6));
  animation: beacon-pulse 1.6s ease-in-out infinite;
}
.heroN-skyline .beacon.b2 { animation-delay: 0.5s; }
.heroN-skyline .beacon.b3 { animation-delay: 1.0s; }
@keyframes beacon-pulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

/* The hero stats sit on a solid black panel, so the skyline naturally
   disappears below it — but for clarity, pull stats above via z-index */
.heroN-stats { z-index: 3; background: var(--black); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.8, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.8, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.8, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.8, 0.36, 1);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 280ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 350ms; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 420ms; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 490ms; }

/* Lineup glow boost when in view */
.lineupN-row.headliner {
  transition: text-shadow 0.6s ease;
}
.lineupN-poster.in .lineupN-row.headliner {
  text-shadow:
    0 0 40px rgba(255,255,255,0.3),
    0 0 80px rgba(255,36,54,0.25);
}
.lineupN-poster.in .lineupN-row.headliner .red {
  text-shadow:
    0 0 30px rgba(255,36,54,0.7),
    0 0 80px rgba(255,36,54,0.5);
}

/* Hover tilts */
.expN-card {
  transition: transform 0.35s cubic-bezier(0.22, 0.8, 0.36, 1), border-color 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.expN-card:hover {
  transform: translateY(-6px) scale(1.012);
}

/* Glitch on hover for marquee — subtle */
.mqN-track span {
  transition: text-shadow 0.2s, transform 0.2s;
}
.mqN-track span:hover {
  text-shadow: 2px 0 rgba(44,76,255,0.7), -2px 0 rgba(255,36,54,0.7);
}

/* Magnetic button effect (CSS only via translate var set from JS) */
.btnN, .closerN-cta, .navN-cta, .credN-cta, .tierN-apply, .pass-cta {
  transition: transform 0.25s cubic-bezier(0.22, 0.8, 0.36, 1), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

/* Tier row reveal — slide from left */
.tierN {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.8, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.8, 0.36, 1);
}
.tiersN.in .tierN { opacity: 1; transform: translateX(0); }
.tiersN.in .tierN:nth-child(1) { transition-delay: 0ms; }
.tiersN.in .tierN:nth-child(2) { transition-delay: 100ms; }
.tiersN.in .tierN:nth-child(3) { transition-delay: 200ms; }
.tiersN.in .tierN:nth-child(4) { transition-delay: 300ms; }
.tiersN.in .tierN:nth-child(5) { transition-delay: 400ms; }

/* Section-num counter style on view */
@keyframes count-pulse {
  0% { opacity: 0; transform: scale(0.8); }
  60% { opacity: 1; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}
.sh-num {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s, transform 0.5s cubic-bezier(0.22, 1.4, 0.36, 1);
}
.sh-row.in .sh-num { opacity: 1; transform: scale(1); }

/* Glow border breathing on featured cards */
@keyframes breathe-red {
  0%, 100% { box-shadow: 0 0 0 1px var(--red), 0 0 24px rgba(255,36,54,0.4); }
  50% { box-shadow: 0 0 0 1px var(--red), 0 0 44px rgba(255,36,54,0.7); }
}
/* Static featured shadows — removed continuous box-shadow breathing for perf */
.passN.feat { box-shadow: 0 0 0 1px var(--red), 0 0 32px rgba(255,36,54,0.5); }

@keyframes breathe-blue {
  0%, 100% { box-shadow: 0 0 0 1px var(--blue), 0 0 24px rgba(44,76,255,0.4); }
  50% { box-shadow: 0 0 0 1px var(--blue), 0 0 44px rgba(44,76,255,0.6); }
}

/* Heading underline reveal */
.sh-title {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s cubic-bezier(0.22, 0.8, 0.36, 1);
}
.sh-row.in .sh-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 100ms;
}
.sh-eye {
  opacity: 0;
  transition: opacity 0.5s 80ms;
}
.sh-row.in .sh-eye { opacity: 1; }

/* Beam light cones (decorative) */
.beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.beam {
  position: absolute;
  width: 600px;
  height: 200%;
  background: linear-gradient(180deg,
    rgba(255,36,54,0.0) 0%,
    rgba(255,36,54,0.08) 30%,
    rgba(255,36,54,0.0) 80%);
  /* beam-sway removed for perf — filter: blur(40px) animation was very expensive */
  display: none;
}
.beam.b1 { left: 20%; transform: rotate(-12deg); }
.beam.b2 { left: 60%; transform: rotate(8deg); background: linear-gradient(180deg, transparent, rgba(44,76,255,0.1), transparent); animation-delay: -6s; }
.beam.b3 { right: 10%; transform: rotate(15deg); animation-delay: -3s; }

@keyframes beam-sway {
  0%, 100% { transform: rotate(var(--rot, -12deg)) translateX(0); opacity: 0.5; }
  50% { transform: rotate(calc(var(--rot, -12deg) + 4deg)) translateX(40px); opacity: 0.9; }
}
.beam.b1 { --rot: -12deg; }
.beam.b2 { --rot: 8deg; }
.beam.b3 { --rot: 15deg; }

/* Hero CTAs subtle bob */
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.heroN-ctas .btnN.red { animation: bob 3s ease-in-out infinite; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fx-spotlight { display: none; }
  .reveal, .reveal-stagger > *, .tierN, .sh-num, .sh-title, .sh-eye {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== RESPONSIVE ===== */

/* ---------- Tablet / small laptop ≤1100px ---------- */
@media (max-width: 1100px) {
  .wrap { padding: 0 28px; }
  .expN-grid { grid-template-columns: 1fr 1fr; }
  .passesN { grid-template-columns: 1fr 1fr; }
  .tierN {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 28px 26px 34px;
  }
  .tierN-rank { writing-mode: horizontal-tb; transform: none; }
  .tierN-price { text-align: left; }
  .vendorsN-grid { grid-template-columns: 1fr 1fr; }
  .venueN-grid { grid-template-columns: 1fr 1fr; }
  .venueN-card { min-height: 420px; }
  .venueN-card:nth-child(3) { grid-column: 1 / -1; }
  .sh-num { font-size: 76px; }
  .sh-row { gap: 36px; }
  .sponsorN-pre { grid-template-columns: 1fr; gap: 24px; }
  .contactN-grid { gap: 50px; }
}

/* ---------- Tablet / large phone ≤860px ---------- */
@media (max-width: 860px) {
  .wrap { padding: 0 22px; }

  /* Hero */
  .heroN { padding: 20px 0 0; }
  .heroN-top {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 0 22px 20px;
    gap: 8px;
  }
  .heroN-top .c, .heroN-top .r { text-align: left; }
  .heroN-top .c { font-size: 20px; gap: 8px; }
  .heroN-top .c .mo, .heroN-top .c .yr { font-size: 10px; letter-spacing: 0.2em; }
  .heroN-stage { padding: 22px 18px 22px; }
  .heroN-presents { font-size: 10px; letter-spacing: 0.24em; margin-bottom: 12px; }
  .heroN-presents::before, .heroN-presents::after { width: 20px; }
  .heroN-title { font-size: clamp(64px, min(18vw, 14vh), 140px); letter-spacing: -0.04em; }
  .heroN-dateline {
    margin-top: 16px;
    gap: 12px;
    padding: 12px 18px;
    font-size: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .heroN-dateline .sep { width: 4px; height: 4px; }
  .heroN-tagline { font-size: 14px; margin-top: 14px; }
  .heroN-ctas { margin-top: 16px; gap: 10px; }
  .btnN { padding: 12px 18px; font-size: 11px; letter-spacing: 0.18em; }
  .heroN-stats { grid-template-columns: 1fr 1fr; }
  .heroN-stat { border-bottom: 1px solid var(--line); padding: 22px 22px 24px; }
  .heroN-stat:nth-child(2n) { border-right: none; }
  .heroN-stat .big { font-size: clamp(32px, 7vw, 48px); }
  .heroN-stat.countdown-cell .big { font-size: 28px; gap: 10px; }

  /* Section heads */
  .sh-row { grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
  .sh-num { font-size: 56px; line-height: 0.85; }
  .sh-title { font-size: clamp(38px, 8.5vw, 64px); }
  .sh-eye { font-size: 10px; letter-spacing: 0.2em; }
  .sh-eye::before { width: 24px; }

  /* Layout grids */
  .expN { padding: 70px 0; }
  .expN-grid, .passesN, .vendorsN-grid, .venueN-grid { grid-template-columns: 1fr; }
  .venueN-card:nth-child(3) { grid-column: auto; }
  .venueN-card { border-right: none; border-bottom: 1px solid var(--line); min-height: 360px; padding: 32px 24px; }
  .expN-card { min-height: 220px; padding: 22px 20px 24px; }
  .expN-card .t { font-size: 26px; }

  /* Lineup */
  .lineupN { padding: 70px 0; }
  .lineupN-poster { padding: 24px 22px 0; }
  .lineupN-row.headliner { font-size: clamp(48px, 14vw, 96px); }
  .lineupN-row.support { font-size: clamp(36px, 10vw, 70px); }
  .lineupN-row.amp { font-size: clamp(22px, 5vw, 36px); }
  .lineupN-row.djs { font-size: clamp(16px, 4vw, 24px); }
  .lineupN-row.djs span { margin: 0 4px; }
  .lineupN-row.smaller { font-size: 12px; letter-spacing: 0.18em; }
  .lineupN-tag { font-size: 10px; letter-spacing: 0.22em; }
  .lineupN-days { grid-template-columns: 1fr; margin-top: 40px; }
  .lineupN-day { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 22px; }
  .lineupN-day:last-child { border-bottom: none; }
  .lineupN-day .day-num { font-size: 56px; }
  .lineupN-day .day-name { font-size: 30px; }

  /* Sponsor */
  .sponsorN { padding: 70px 0; }
  .sponsorN-lede { font-size: 15px; }
  .tierN {
    padding: 22px 24px 22px 30px;
    gap: 12px;
  }
  .tierN-name { font-size: 32px; }
  .tierN-price { font-size: 38px; }
  .tierN-price small { font-size: 9px; letter-spacing: 0.18em; }
  .tierN-perks { font-size: 12px; }
  .tierN-apply { padding: 12px 18px; font-size: 10px; align-self: flex-start; }

  /* Flagship */
  .flagN { padding: 70px 0; }
  .flagN::before { font-size: 220px; right: -16px; }
  .flagN-grid { grid-template-columns: 1fr; gap: 36px; }
  .flagN-title { font-size: clamp(44px, 11vw, 78px); }
  .flagN-body { font-size: 14px; margin: 20px 0; }
  .flagN-price { gap: 12px; margin: 22px 0; flex-wrap: wrap; }
  .flagN-price .num { font-size: 64px; }
  .flagN-price .lbl { font-size: 10px; padding-bottom: 6px; max-width: 220px; }
  .flagN-includes { padding: 22px; }
  .flagN-includes li { font-size: 13px; }

  /* Vendors */
  .vendorsN { padding: 70px 0; }
  .credN { padding: 30px 26px 32px; gap: 16px; }
  .credN .nm { font-size: clamp(38px, 10vw, 60px); }
  .credN .pr .num { font-size: 56px; }
  .credN .pr .lbl { font-size: 10px; }
  .credN .best { font-size: 13px; }
  .credN ul.bullets li { font-size: 13px; }
  .credN-cta { padding: 14px 22px; font-size: 11px; }

  /* Tickets */
  .ticketsN { padding: 70px 0; }
  .passN { padding: 22px 20px 24px; }
  .pass-nm { font-size: 26px; }
  .pass-pr { font-size: 36px; }
  .pass-list li { font-size: 12px; }
  .pass-cta { padding: 11px 14px; font-size: 10px; }

  /* Venue */
  .venueN { padding: 70px 0; }
  .venueN-card .vc-addr { font-size: clamp(28px, 7vw, 40px); }
  .venueN-card .vc-stats b { font-size: 24px; }
  .venueN-card .vc-stats { gap: 16px; }
  .venueN-card .logo-big { max-width: 200px; }

  /* Contact */
  .contactN { padding: 70px 0; }
  .contactN-grid { grid-template-columns: 1fr; gap: 40px; }
  .contactN-form { grid-template-columns: 1fr; padding: 24px; gap: 14px; }
  .contactN-form .field { grid-column: 1 / -1; }
  .contactN-block .val { font-size: 22px; }

  /* Closer */
  .closerN { padding: 70px 0 60px; }
  .closerN-inner { padding: 0 22px; }
  .closerN-eyebrow { margin-bottom: 18px; font-size: 10px; letter-spacing: 0.24em; }
  .closerN-title { font-size: clamp(56px, 14vw, 110px); }
  .closerN-meta { gap: 24px; margin: 32px 0 28px; }
  .closerN-meta div { font-size: 28px; }
  .closerN-meta div span { font-size: 9px; }
  .closerN-cta { padding: 18px 26px; font-size: 12px; }
  .closerN-row { margin-top: 16px; gap: 8px; }
  .closerN-row a { padding: 11px 16px; font-size: 10px; }

  /* Nav */
  .navN-in { padding: 12px 18px; gap: 12px; grid-template-columns: 1fr auto; }
  .navN-links { display: none; }
  .navN-mark { font-size: 11px; letter-spacing: 0.12em; gap: 8px; }
  .navN-mark .partake-mini { display: none; }
  .navN-mark .host-divider { display: none; }
  .navN-cta { padding: 9px 14px; font-size: 10px; letter-spacing: 0.16em; }

  /* Marquees */
  .mqN { padding: 12px 0; }
  .mqN-track { gap: 26px; }
  .mqN-track span { font-size: 20px; }
  .mqN-track .dotty { width: 7px; height: 7px; }

  /* Footer */
  footer.footerN { padding: 22px; flex-direction: column; align-items: center; text-align: center; }
  footer.footerN .foot-mark { justify-content: center; row-gap: 10px; }
  /* Force © text to its own line so both logos stay together on line 2 */
  footer.footerN .foot-mark > span:first-child { flex-basis: 100%; text-align: center; }

  /* ===== CENTERING ON MOBILE ===== */
  /* Hosted at Partake + Elevated — one line on mobile */
  .hosted-br { display: none; }
  .venueN .sh-title { font-size: clamp(34px, 8vw, 56px); }
  /* Section heads */
  .sh-row { text-align: center; justify-items: center; }
  .sh-num { margin: 0 auto; }
  .sh-eye { justify-content: center; }
  .sh-eye::before { display: none; }
  .sh-title { text-align: center; }

  /* Hero block */
  .heroN-top { flex-direction: column; gap: 8px; text-align: center; align-items: center; }
  .heroN-top .l, .heroN-top .c, .heroN-top .r { text-align: center; justify-content: center; }
  .heroN-stage { text-align: center; align-items: center; display: flex; flex-direction: column; }
  .heroN-presents { justify-content: center; }
  .heroN-tagline { text-align: center; }
  .heroN-ctas { justify-content: center; }
  .heroN-stat { text-align: center; align-items: center; }
  .heroN-stat .sub { text-align: center; }

  /* Lineup days */
  .lineupN-day { text-align: center; align-items: center; }
  .lineupN-day .day-num,
  .lineupN-day .day-date,
  .lineupN-day .day-name,
  .lineupN-day .day-list { text-align: center; }

  /* Venue cards */
  .venueN-card { text-align: center; align-items: center; }
  .venueN-card .vc-head { justify-content: center; }
  .venueN-card .vc-head .logo-big { object-position: center bottom; }
  .venueN-card .vc-tag,
  .venueN-card .vc-addr,
  .venueN-card .vc-copy { text-align: center; }
  .venueN-card .vc-list { align-items: center; }
  .venueN-card .vc-list li { padding-left: 0; padding-right: 0; }
  .venueN-card .vc-list li::before { display: none; }
  .venueN-card .vc-stats { justify-content: center; width: 100%; }

  /* Exp + Vendors + Passes cards */
  .expN-card,
  .credN,
  .passN { text-align: center; align-items: center; }
  .expN-card .tag,
  .credN ul.bullets li,
  .pass-list li { text-align: center; }
  .credN ul.bullets,
  .pass-list { align-items: center; }
  .credN ul.bullets li,
  .pass-list li { padding-left: 0; padding-right: 0; }
  .credN ul.bullets li::before,
  .pass-list li::before { display: none; }
  .credN-cta,
  .pass-cta { align-self: center; }

  /* Tiers */
  .tierN { text-align: center; justify-items: center; }
  .tierN-main { align-items: center; }
  .tierN-perks { text-align: center; }
  .tierN-price { text-align: center; }
  .tierN-apply { align-self: center; }

  /* Flagship */
  .flagN-grid { text-align: center; }
  .flagN-grid > div:last-child { display: flex; flex-direction: column; align-items: center; }
  .flagN-eyebrow,
  .flagN-title,
  .flagN-body,
  .flagN-price { text-align: center; }
  .flagN-price { justify-content: center; }
  .flagN-includes { text-align: left; }

  /* Closer */
  .closerN-inner { text-align: center; }
  .closerN-meta { justify-content: center; }
  .closerN-row { justify-content: center; }

  /* Contact */
  .contactN-side { text-align: center; }
  .contactN-side .sh-eye { justify-content: center; }
  .contactN-block { text-align: center; align-items: center; }

}

/* ---------- Phone ≤520px ---------- */
@media (max-width: 520px) {
  .wrap { padding: 0 18px; }

  /* Version switcher — get out of the way */
  body > div[style*="position:fixed"][style*="top:80px"] {
    top: auto !important;
    bottom: 14px !important;
    right: 14px !important;
    transform: scale(0.88);
    transform-origin: bottom right;
  }

  /* Hero */
  .heroN-top { padding: 0 18px 16px; }
  .heroN-top .l, .heroN-top .r, .heroN-top .c { font-size: 10px; letter-spacing: 0.14em; }
  .heroN-top .c { font-size: 18px; gap: 7px; }
  .heroN-top .c .mo, .heroN-top .c .yr { font-size: 9px; letter-spacing: 0.18em; }
  .heroN-stage { padding: 18px 14px 20px; }
  .heroN-title { font-size: clamp(60px, min(22vw, 15vh), 110px); letter-spacing: -0.045em; }
  .heroN-tagline { font-size: 13px; margin-top: 12px; }
  .heroN-dateline { font-size: 13px; padding: 10px 14px; gap: 10px; }
  .heroN-stats { grid-template-columns: 1fr; }
  .heroN-stat { border-right: none; padding: 20px 18px; }
  .heroN-stat:last-child { border-bottom: none; }
  .heroN-stat.countdown-cell .big { font-size: 26px; gap: 12px; }

  /* Section heads */
  .sh-num { font-size: 42px; }
  .sh-title { font-size: clamp(34px, 11vw, 52px); }

  /* Lineup */
  .lineupN-row.headliner { font-size: clamp(40px, 16vw, 72px); }
  .lineupN-row.support { font-size: clamp(30px, 12vw, 56px); }
  .lineupN-row.smaller { font-size: 11px; }
  .lineupN-day { padding: 28px 18px; }
  .lineupN-day .day-num { font-size: 48px; }
  .lineupN-day .day-name { font-size: 26px; }
  .lineupN-day .day-list { font-size: 13px; }

  /* Sponsor */
  .tierN { padding: 20px 20px 20px 26px; }
  .tierN-name { font-size: 28px; }
  .tierN-price { font-size: 32px; }

  /* Flagship */
  .flagN::before { font-size: 160px; right: -12px; }
  .flagN-title { font-size: clamp(40px, 13vw, 60px); }
  .flagN-price .num { font-size: 52px; }
  .flagN-includes.compact { grid-template-columns: 1fr; padding: 18px; }
  .flagN-includes.compact li:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .flagN-includes.compact li:last-child { border-bottom: none; }

  /* Vendors */
  .credN .nm { font-size: clamp(34px, 11vw, 50px); }
  .credN .pr .num { font-size: 44px; }

  /* Tickets */
  .pass-nm { font-size: 22px; }
  .pass-pr { font-size: 30px; }

  /* Venue */
  .venueN-card { padding: 28px 22px; min-height: 320px; }
  .venueN-card .vc-addr { font-size: clamp(24px, 8vw, 34px); }
  .venueN-card .vc-stats b { font-size: 20px; }
  .venueN-card .vc-stats span { font-size: 9px; }

  /* Contact */
  .contactN-form { padding: 20px; }
  .contactN-block { padding: 14px 0; }
  .contactN-block .val { font-size: 18px; }

  /* Closer */
  .closerN-title { font-size: clamp(46px, 16vw, 80px); }
  .closerN-meta { gap: 18px; }
  .closerN-meta div { font-size: 22px; }

  /* Nav */
  .navN-mark { font-size: 10px; letter-spacing: 0.1em; }
  .navN-cta { padding: 8px 12px; font-size: 9px; letter-spacing: 0.14em; gap: 6px; }

  /* Marquees — quieter on tiny screens */
  .mqN-track span { font-size: 16px; }
  .mqN { padding: 10px 0; }
}

/* ============================================================
   ARTISTS — Meet the Acts
   ============================================================ */
.artistsN {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}
.artistsN-tier {
  margin-top: 56px;
}
.artistsN-tier:first-of-type { margin-top: 64px; }
.artistsN-tier-tag {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.artistsN-grid {
  display: grid;
  gap: 16px;
}
.artistsN-grid.headliners { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-left: auto; margin-right: auto; }
.artistsN-tier:has(> .artistsN-grid.headliners) { text-align: center; }
.artistsN-tier:has(> .artistsN-grid.headliners) .artistsN-tier-tag { max-width: 880px; margin-left: auto; margin-right: auto; }
.artistsN-grid.headliners.power-headliners {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.artistsN-tier:has(> .artistsN-grid.power-headliners) {
  text-align: center;
}
.artistsN-tier:has(> .artistsN-grid.power-headliners) .artistsN-tier-tag {
  margin-left: auto;
  margin-right: auto;
}
.artistsN-grid.support    { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-left: auto; margin-right: auto; }
.artistsN-grid.djs        { grid-template-columns: repeat(4, 1fr); }
.artistsN-tier:has(> .artistsN-grid.support) { text-align: center; }
.artistsN-tier:has(> .artistsN-grid.support) .artistsN-tier-tag { max-width: 880px; margin-left: auto; margin-right: auto; }

.artist-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 0.8, 0.36, 1), border-color 0.25s, box-shadow 0.25s;
}
.artist-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}

.artist-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0d0d12;
}
.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.05);
}
.artist-card.headliner .artist-photo { aspect-ratio: 4 / 5; }
.artist-card.support   .artist-photo { aspect-ratio: 4 / 5; }
.artist-card.dj        .artist-photo { aspect-ratio: 1 / 1; }

/* Placeholder pattern — clearly says "drop photo here" */
.artist-photo.placeholder {
  background:
    linear-gradient(180deg, rgba(255,36,54,0.10), rgba(44,76,255,0.06)),
    repeating-linear-gradient(
      135deg,
      #15151c 0,
      #15151c 14px,
      #1d1d26 14px,
      #1d1d26 28px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.artist-photo.placeholder::after {
  content: attr(data-artist);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 16px 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.artist-photo.placeholder .ph-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  border: 1px dashed rgba(255,255,255,0.3);
  z-index: 2;
}

.artist-meta {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--panel);
}
.artist-day {
  font-family: 'Sharp Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.artist-card.support .artist-day { color: var(--bone-dim); }
.artist-card.dj      .artist-day { color: var(--bone-dim); }

.artist-name {
  font-family: 'Sharp Grotesk BI', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.artist-card.dj .artist-name { font-size: 20px; }
.artist-card.support .artist-name { font-size: 26px; }
.artist-name .red { color: var(--red); }

/* Hover overlay on real photos */
.artist-card:not(.placeholder-only) .artist-photo:not(.placeholder)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .artistsN-grid.headliners { grid-template-columns: repeat(2, 1fr); }
  .artistsN-grid.djs { grid-template-columns: repeat(2, 1fr); }
  .artistsN { padding: 80px 0; }
}
@media (max-width: 720px) {
  .artistsN-grid.headliners,
  .artistsN-grid.support,
  .artistsN-grid.djs { grid-template-columns: repeat(2, 1fr); max-width: none; }
  /* Center the orphan 3rd headliner (Young M.A) on mobile */
  .artistsN-grid.headliners > .artist-card:nth-child(3):last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    justify-self: center;
  }
  .artist-name { font-size: 22px; }
  .artist-card.dj .artist-name { font-size: 16px; }
}
@media (max-width: 460px) {
  .artistsN-grid.headliners,
  .artistsN-grid.support,
  .artistsN-grid.djs { grid-template-columns: 1fr; }
}
.mqN-track span.fw {
  color: var(--white);
  text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* ============ POWER FRIDAY · POWER 105.1 ============ */
.lineupN-day.power-day .day-photo .badge {
  background: linear-gradient(90deg, #00b4ff 0%, #38d4ff 50%, #00b4ff 100%);
  color: #001722;
}
.lineupN-day.power-day .day-name .red {
  color: #00b4ff;
}

.artistsN-tier-tag.power-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: transparent;
  border: 0;
  padding: 0 0 14px;
}
.artistsN-tier-tag.power-tag .power-tag-logo {
  height: 88px;
  width: auto;
  border-radius: 6px;
  border: 0;
  display: block;
}

/* ===== PERFORMANCE — skip rendering heavy sections when offscreen ===== */
.expN, .lineupN, .artistsN, .gallN, .sponsorN, .flagN, .vendorsN, .venueN, .closerN, .contactN {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

/* Honor users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .mqN-track { animation: none !important; transform: none !important; }
}
