/* ==========================================================================
   VOLTAGE — neon maximalism on near-black
   ========================================================================== */
:root {
  --bg: #07070A;
  --bg2: #0C0C12;
  --ink: #EAEAF2;
  --dim: #9B9BB0;
  --cyan: #00F0FF;
  --mag: #FF2D95;
  --laser: #B6FF00;
  --uv: #7B2BFF;
  --line: rgba(234, 234, 242, 0.12);
  --disp: "Archivo", "Archivo Black", sans-serif;
  --body: "Space Grotesk", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.83, 0, 0.17, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover: none), (pointer: coarse) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--mag); color: var(--bg); }

a, button { cursor: none; }
@media (hover: none), (pointer: coarse) { a, button { cursor: pointer; } }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: fixed; top: -100px; left: 16px; z-index: 300;
  background: var(--cyan); color: var(--bg); padding: 10px 18px;
  font-weight: 700; letter-spacing: 0.08em; transition: top 0.2s;
}
.skip:focus-visible { top: 12px; }

/* ---- scroll progress ---- */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  z-index: 260; pointer-events: none;
  background: linear-gradient(90deg, var(--cyan), var(--uv) 50%, var(--mag));
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
  transform: scaleX(0); transform-origin: left;
}

/* ---- film grain ---- */
.noise {
  position: fixed; inset: -50%; z-index: 200; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 0.6s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ---- custom cursor ---- */
.cursor {
  position: fixed; z-index: 250; pointer-events: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--cyan);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s;
  left: -40px; top: -40px;
}
.cursor.is-hot { width: 44px; height: 44px; background: var(--mag); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(16px, 4vw, 48px);
  background: linear-gradient(rgba(7, 7, 10, 0.85), rgba(7, 7, 10, 0));
  backdrop-filter: blur(2px);
  transition: background 0.4s;
}
.nav.is-scrolled {
  background: rgba(7, 7, 10, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--disp);
  font-variation-settings: "wght" 900, "wdth" 110;
  font-size: 22px; letter-spacing: 0.04em;
}
.nav-logo .bolt { color: var(--laser); -webkit-text-fill-color: var(--laser); }
.nav nav { display: flex; gap: clamp(14px, 3vw, 36px); }
.nav nav a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em;
  color: var(--dim); position: relative; padding: 4px 0;
  transition: color 0.25s;
}
.nav nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--cyan);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-snap);
  box-shadow: 0 0 8px var(--cyan);
}
.nav nav a:hover { color: var(--ink); }
.nav nav a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 760px) {
  .nav nav { display: none; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--body); font-weight: 700; font-size: 14px;
  letter-spacing: 0.18em; text-align: center;
  padding: 15px 32px;
  border: 1px solid var(--cyan);
  position: relative; overflow: hidden;
  transition: color 0.3s, box-shadow 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--cyan);
  transform: translateY(101%);
  transition: transform 0.35s var(--ease-snap);
}
.btn:hover { color: var(--bg); box-shadow: 0 0 32px rgba(0, 240, 255, 0.45); transform: translateY(-2px); }
.btn:hover::before { transform: translateY(0); }
.btn-solid { background: var(--cyan); color: var(--bg); box-shadow: 0 0 24px rgba(0, 240, 255, 0.35); }
.btn-solid::before { background: var(--mag); }
.btn-solid:hover { border-color: var(--mag); box-shadow: 0 0 36px rgba(255, 45, 149, 0.5); }
.btn-ghost { color: var(--cyan); background: transparent; }
.nav-cta { padding: 10px 20px; font-size: 12px; }

/* ==========================================================================
   CHROMATIC ABERRATION TYPE
   ========================================================================== */
.chroma {
  position: relative; display: inline-block;
  font-family: var(--disp);
}
.chroma::before, .chroma::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.chroma::before { color: var(--cyan); z-index: -1; }
.chroma::after { color: var(--mag); z-index: -2; }
.chroma:hover::before, .glitch-on::before { opacity: 0.85; transform: translate(-3px, -2px); animation: glitch-a 0.72s steps(2) infinite; }
.chroma:hover::after, .glitch-on::after { opacity: 0.85; transform: translate(3px, 2px); animation: glitch-b 0.72s steps(2) infinite; }
@keyframes glitch-a {
  0% { clip-path: inset(0 0 62% 0); transform: translate(-3px, -2px); }
  25% { clip-path: inset(38% 0 22% 0); transform: translate(-5px, 1px); }
  50% { clip-path: inset(74% 0 3% 0); transform: translate(-2px, -3px); }
  75% { clip-path: inset(12% 0 56% 0); transform: translate(-6px, 2px); }
  100% { clip-path: inset(48% 0 30% 0); transform: translate(-3px, -1px); }
}
@keyframes glitch-b {
  0% { clip-path: inset(58% 0 8% 0); transform: translate(3px, 2px); }
  25% { clip-path: inset(4% 0 70% 0); transform: translate(6px, -1px); }
  50% { clip-path: inset(30% 0 44% 0); transform: translate(2px, 3px); }
  75% { clip-path: inset(66% 0 12% 0); transform: translate(5px, -2px); }
  100% { clip-path: inset(20% 0 60% 0); transform: translate(3px, 1px); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center;
  overflow: hidden;
  isolation: isolate;
}
#viz { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.hero-fallback {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 50% 62%, rgba(123, 43, 255, 0.28), transparent 70%),
    radial-gradient(40% 35% at 30% 70%, rgba(0, 240, 255, 0.16), transparent 70%),
    radial-gradient(40% 35% at 70% 70%, rgba(255, 45, 149, 0.16), transparent 70%),
    var(--bg);
}
.hero-inner { text-align: center; padding: 120px 20px 80px; position: relative; }
.hero-sup {
  font-size: clamp(10px, 1.4vw, 13px); font-weight: 500;
  letter-spacing: 0.34em; color: var(--dim); margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(64px, 15.5vw, 240px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  font-variation-settings: "wght" 900, "wdth" 120;
  text-shadow:
    0 0 40px rgba(0, 240, 255, 0.35),
    0 0 90px rgba(123, 43, 255, 0.35);
  animation: title-pulse 1.875s var(--ease-out) infinite;
}
@keyframes title-pulse {
  0%, 100% { text-shadow: 0 0 40px rgba(0, 240, 255, 0.3), 0 0 90px rgba(123, 43, 255, 0.3); }
  12% { text-shadow: 0 0 60px rgba(0, 240, 255, 0.6), 0 0 130px rgba(255, 45, 149, 0.45); }
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(13px, 2vw, 18px); font-weight: 600;
  letter-spacing: 0.3em; color: var(--ink);
  text-shadow: 0 1px 10px rgba(7, 7, 10, 0.9), 0 0 22px rgba(7, 7, 10, 0.7);
}
.hero-dates {
  margin-top: 26px;
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--disp);
}
.date-chip {
  font-variation-settings: "wght" 800, "wdth" 105;
  font-size: clamp(22px, 3.4vw, 38px);
  color: var(--laser);
  text-shadow: 0 0 24px rgba(182, 255, 0, 0.55);
  animation: chip-beat 1.875s ease-in-out infinite; /* 4 beats @128BPM, same grid as the viz */
}
@keyframes chip-beat {
  0%, 100% { text-shadow: 0 0 18px rgba(182, 255, 0, 0.4); }
  6% { text-shadow: 0 0 34px rgba(182, 255, 0, 0.85); }
}
.date-sep { color: var(--dim); font-size: clamp(18px, 2.6vw, 30px); }
.date-year {
  font-family: var(--body); font-weight: 500; letter-spacing: 0.3em;
  color: var(--dim); font-size: clamp(13px, 1.8vw, 17px);
}
.hero-cta { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 560px) {
  .hero-cta { flex-direction: column; align-items: stretch; padding: 0 12px; }
  .hero-inner { width: 100%; }
}
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px; overflow: hidden;
}
.hero-scroll span {
  position: absolute; left: 0; top: 0; width: 1px; height: 100%;
  background: linear-gradient(var(--cyan), transparent);
  animation: drip 1.8s var(--ease-snap) infinite;
}
@keyframes drip {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

/* ---- staggered reveals ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ==========================================================================
   TICKER
   ========================================================================== */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg2);
  overflow: hidden; white-space: nowrap;
  padding: 14px 0;
  position: relative; z-index: 2;
}
.ticker-track { display: inline-flex; will-change: transform; animation: tick 36s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-seq {
  display: inline-flex; align-items: center;
  font-family: var(--body); font-weight: 500; font-size: 14px;
  letter-spacing: 0.14em; color: var(--dim);
  padding-right: 8px;
}
.ticker-seq b { font-weight: 700; margin: 0 10px 0 8px; }
.ticker-seq i { font-style: normal; margin: 0 18px; color: var(--laser); text-shadow: 0 0 10px rgba(182, 255, 0, 0.7); }
.tc { color: var(--cyan); text-shadow: 0 0 12px rgba(0, 240, 255, 0.5); }
.tm { color: var(--mag); text-shadow: 0 0 12px rgba(255, 45, 149, 0.5); }
.tl { color: var(--laser); text-shadow: 0 0 12px rgba(182, 255, 0, 0.5); }
.tv { color: var(--uv); text-shadow: 0 0 12px rgba(123, 43, 255, 0.7); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   SECTIONS SHARED
   ========================================================================== */
section { position: relative; }
.section-head { padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 64px) clamp(36px, 5vh, 60px); }
.kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 0.34em;
  color: var(--dim); margin-bottom: 18px; display: flex; align-items: center; gap: 14px;
}
.kicker span { color: var(--laser); font-family: var(--disp); font-variation-settings: "wght" 800; }
.kicker::after { content: ""; height: 1px; width: 72px; background: linear-gradient(90deg, var(--laser), transparent); }
.section-head h2 {
  font-family: var(--disp);
  font-variation-settings: "wght" 900, "wdth" 115;
  font-size: clamp(38px, 7.4vw, 104px);
  line-height: 0.95; letter-spacing: -0.01em;
}

/* ==========================================================================
   LINEUP
   ========================================================================== */
.lineup { padding-bottom: clamp(70px, 10vh, 130px); }
.night { border-top: 1px solid var(--line); padding: clamp(26px, 4vh, 44px) clamp(20px, 5vw, 64px); }
.night-label {
  display: flex; gap: 20px; align-items: baseline; margin-bottom: 18px;
  font-size: 13px; letter-spacing: 0.28em; font-weight: 600;
}
.night-no { font-family: var(--disp); font-variation-settings: "wght" 800; font-size: 15px; }
.night-date { color: var(--dim); }
.artists { display: flex; flex-direction: column; }
.artist { overflow: visible; }
.a-name {
  display: inline-block;
  font-family: var(--disp);
  font-variation-settings: "wght" 500, "wdth" 82;
  font-size: clamp(30px, 5.4vw, 74px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition:
    font-variation-settings 0.45s var(--ease-out),
    letter-spacing 0.45s var(--ease-out),
    color 0.3s,
    transform 0.45s var(--ease-out);
  transform-origin: left center;
}
.artist .a-name:hover, .artist .a-name:focus-visible {
  font-variation-settings: "wght" 900, "wdth" 125;
  letter-spacing: 0.03em;
  color: #fff;
  transform: skewX(-6deg);
}
.headliner .a-name {
  font-size: clamp(52px, 11vw, 158px);
  font-variation-settings: "wght" 850, "wdth" 118;
  animation: watt-pulse 1.875s ease-in-out infinite;
}
.headliner .a-name:hover, .headliner .a-name:focus-visible {
  animation-play-state: paused;
  font-variation-settings: "wght" 900, "wdth" 125;
  transform: skewX(-4deg) scaleY(1.04);
}
@keyframes watt-pulse {
  0%, 100% { font-variation-settings: "wght" 750, "wdth" 112; }
  50% { font-variation-settings: "wght" 900, "wdth" 120; }
}
.a-tag {
  display: block; margin: 4px 0 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.3em; color: var(--laser);
  text-shadow: 0 0 14px rgba(182, 255, 0, 0.45);
}
.night[data-night="01"] .headliner .a-name { -webkit-text-stroke: 0; text-shadow: 0 0 48px rgba(0, 240, 255, 0.35); }
.night[data-night="02"] .headliner .a-name { text-shadow: 0 0 48px rgba(255, 45, 149, 0.4); }
.night[data-night="03"] .headliner .a-name { text-shadow: 0 0 48px rgba(123, 43, 255, 0.55); }
.night[data-night="01"] .a-name:hover, .night[data-night="01"] .a-name:focus-visible { color: var(--cyan); text-shadow: 0 0 40px rgba(0, 240, 255, 0.55); }
.night[data-night="02"] .a-name:hover, .night[data-night="02"] .a-name:focus-visible { color: var(--mag); text-shadow: 0 0 40px rgba(255, 45, 149, 0.55); }
.night[data-night="03"] .a-name:hover, .night[data-night="03"] .a-name:focus-visible { color: #A879FF; text-shadow: 0 0 40px rgba(123, 43, 255, 0.75); }

/* ==========================================================================
   SURGE BAND (parallax image)
   ========================================================================== */
.surge {
  position: relative; height: clamp(380px, 68vh, 640px);
  overflow: hidden; display: grid; place-items: center;
  isolation: isolate;
}
.surge-img {
  position: absolute; inset: -12% 0; height: 124%; width: 100%;
  object-fit: cover; z-index: -2;
  will-change: transform;
}
.surge-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(rgba(7, 7, 10, 0.85), rgba(7, 7, 10, 0.2) 30%, rgba(7, 7, 10, 0.2) 70%, rgba(7, 7, 10, 0.9)),
    radial-gradient(70% 60% at 50% 50%, transparent 40%, rgba(7, 7, 10, 0.5));
}
.surge::before {
  content: ""; position: absolute; left: 0; right: 0; top: -10%;
  height: 2px; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.8), rgba(255, 45, 149, 0.8), transparent);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.7);
  animation: scanline 5.6s linear infinite;
  opacity: 0.55;
}
@keyframes scanline {
  0% { top: -4%; }
  100% { top: 104%; }
}
.surge-title {
  font-size: clamp(30px, 7vw, 104px);
  font-variation-settings: "wght" 900, "wdth" 122;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0 clamp(16px, 4vw, 48px);
  text-shadow: 0 0 34px rgba(0, 240, 255, 0.5), 0 4px 30px rgba(7, 7, 10, 0.8);
}

/* ==========================================================================
   SCHEDULE
   ========================================================================== */
.schedule { background: var(--bg2); padding-bottom: clamp(80px, 12vh, 140px); }
.night-tabs {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding: 0 clamp(20px, 5vw, 64px) 34px;
}
.tab {
  font-family: var(--body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.2em; color: var(--dim);
  background: transparent; border: 1px solid var(--line);
  padding: 12px 22px;
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.tab:hover { color: var(--ink); border-color: rgba(0, 240, 255, 0.5); }
.tab.is-on {
  color: var(--bg); background: var(--cyan); border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.4);
}
.grid-wrap { padding: 0 clamp(20px, 5vw, 64px); }
.sched-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 26px);
}
.sched-grid.is-on { display: grid; animation: grid-in 0.55s var(--ease-out); }
@keyframes grid-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.stage-col {
  --neon: var(--cyan);
  border: 1px solid color-mix(in srgb, var(--neon) 55%, transparent);
  box-shadow:
    0 0 20px color-mix(in srgb, var(--neon) 16%, transparent),
    inset 0 0 30px color-mix(in srgb, var(--neon) 7%, transparent);
  background: rgba(7, 7, 10, 0.6);
  padding: clamp(18px, 2.4vw, 30px);
  transition: box-shadow 0.4s, transform 0.4s var(--ease-out);
}
.stage-col:hover {
  box-shadow:
    0 0 44px color-mix(in srgb, var(--neon) 30%, transparent),
    inset 0 0 40px color-mix(in srgb, var(--neon) 10%, transparent);
  transform: translateY(-4px);
}
.c-cyan { --neon: var(--cyan); }
.c-mag { --neon: var(--mag); }
.c-uv { --neon: var(--uv); }
.stage-name {
  font-family: var(--disp); font-variation-settings: "wght" 850, "wdth" 112;
  font-size: clamp(20px, 2.4vw, 28px); letter-spacing: 0.02em;
  color: var(--neon);
  text-shadow: 0 0 18px color-mix(in srgb, var(--neon) 60%, transparent);
}
.stage-sub { font-size: 11px; letter-spacing: 0.26em; color: var(--dim); margin: 6px 0 18px; font-weight: 600; }
.slot {
  display: flex; gap: 14px; align-items: baseline;
  padding: 12px 2px;
  border-top: 1px dashed rgba(234, 234, 242, 0.14);
  font-size: 15px;
  transition: background 0.25s, padding-left 0.25s var(--ease-out);
}
.slot:hover { background: color-mix(in srgb, var(--neon) 7%, transparent); padding-left: 10px; }
.slot time {
  font-family: var(--disp); font-variation-settings: "wght" 700;
  font-size: 13px; color: var(--neon); min-width: 46px;
  letter-spacing: 0.06em;
}
.slot span { font-weight: 500; letter-spacing: 0.06em; }
.slot.is-head span { font-weight: 700; color: #fff; letter-spacing: 0.1em; }
.slot.is-head { border-top: 1px solid var(--neon); background: color-mix(in srgb, var(--neon) 9%, transparent); }
.slot.is-dawn time { color: var(--laser); }
@media (max-width: 860px) {
  .sched-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   EXPERIENCE
   ========================================================================== */
.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 30px);
  padding: 0 clamp(20px, 5vw, 64px) clamp(80px, 12vh, 140px);
}
.exp-card {
  border: 1px solid var(--line);
  background: var(--bg2);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.4s, box-shadow 0.4s;
  will-change: transform;
}
.exp-card:hover { border-color: rgba(0, 240, 255, 0.45); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 240, 255, 0.12); }
.exp-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(280px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(234, 234, 242, 0.09), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.exp-card { position: relative; }
.exp-card:hover::after { opacity: 1; }
.exp-media { aspect-ratio: 4 / 3; overflow: hidden; }
.exp-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.8s var(--ease-out), filter 0.6s;
  filter: saturate(1.05);
  will-change: transform;
}
.exp-card:hover .exp-media img { transform: scale(1.16); filter: saturate(1.3); }
.exp-body { padding: clamp(18px, 2.4vw, 28px); }
.exp-body h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-variation-settings: "wght" 850, "wdth" 112;
  margin-bottom: 10px;
}
.exp-body p { color: var(--dim); font-size: 15px; margin-bottom: 16px; }
.exp-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
}
@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ==========================================================================
   TICKETS
   ========================================================================== */
.tickets {
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(123, 43, 255, 0.12), transparent 70%),
    var(--bg);
}
.tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 30px);
  padding: 0 clamp(20px, 5vw, 64px);
  align-items: stretch;
}
.tier {
  --neon: var(--cyan);
  position: relative;
  border: 1px solid color-mix(in srgb, var(--neon) 60%, transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--neon) 14%, transparent), inset 0 0 40px color-mix(in srgb, var(--neon) 6%, transparent);
  padding: clamp(26px, 3vw, 40px);
  display: flex; flex-direction: column;
  background: rgba(12, 12, 18, 0.7);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}
.tier:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 60px color-mix(in srgb, var(--neon) 32%, transparent), inset 0 0 50px color-mix(in srgb, var(--neon) 9%, transparent);
}
.t-cyan { --neon: var(--cyan); }
.t-mag { --neon: var(--mag); }
.t-uv { --neon: var(--uv); }
.tier-flag {
  position: absolute; top: 18px; right: -8px;
  background: var(--mag); color: var(--bg);
  font-size: 10px; font-weight: 700; letter-spacing: 0.26em;
  padding: 7px 14px;
  box-shadow: 0 0 24px rgba(255, 45, 149, 0.6);
}
.tier h3 {
  font-family: var(--disp); font-variation-settings: "wght" 900, "wdth" 120;
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--neon);
  text-shadow: 0 0 22px color-mix(in srgb, var(--neon) 55%, transparent);
}
.tier-price { font-family: var(--disp); font-variation-settings: "wght" 800; font-size: clamp(44px, 5vw, 64px); line-height: 1; margin: 14px 0 4px; }
.tier-price sup { font-size: 0.45em; color: var(--dim); margin-right: 2px; }
.tier-note { font-size: 11px; letter-spacing: 0.3em; color: var(--dim); font-weight: 600; margin-bottom: 22px; }
.tier ul { flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.tier li { font-size: 15px; color: var(--ink); padding-left: 22px; position: relative; }
.tier li::before {
  content: "⚡"; position: absolute; left: 0; top: 0;
  color: var(--neon); font-size: 12px;
}
.tier .btn { border-color: var(--neon); color: var(--neon); }
.tier .btn::before { background: var(--neon); }
.tier .btn:hover { color: var(--bg); box-shadow: 0 0 32px color-mix(in srgb, var(--neon) 45%, transparent); }
.tier .btn-solid { background: var(--neon); color: var(--bg); }
.tix-fine {
  text-align: center; color: var(--dim); font-size: 13px; letter-spacing: 0.12em;
  padding: 40px 20px clamp(80px, 12vh, 140px);
}
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { border-top: 1px solid var(--line); background: var(--bg2); }
.foot-top {
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: space-between; align-items: flex-start;
  padding: clamp(40px, 7vh, 80px) clamp(20px, 5vw, 64px);
}
.foot-mark { font-size: clamp(34px, 5vw, 56px); font-variation-settings: "wght" 900, "wdth" 120; }
.foot-loc { font-size: 13px; letter-spacing: 0.18em; color: var(--dim); line-height: 1.9; }
.foot-nav { display: flex; flex-direction: column; gap: 10px; }
.foot-nav a { font-size: 13px; font-weight: 600; letter-spacing: 0.24em; color: var(--dim); transition: color 0.25s, padding-left 0.25s; }
.foot-nav a:hover { color: var(--cyan); padding-left: 6px; }
.foot-base {
  border-top: 1px solid var(--line);
  padding: 22px clamp(20px, 5vw, 64px);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 12px; color: var(--dim); letter-spacing: 0.08em;
}
.credit a { color: var(--cyan); border-bottom: 1px solid rgba(0, 240, 255, 0.4); transition: color 0.25s, border-color 0.25s; }
.credit a:hover { color: var(--mag); border-color: var(--mag); }

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .noise { animation: none; }
  .ticker-track { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .cursor { display: none; }
  .hero-scroll { display: none; }
}
