@font-face {
  font-family: 'Elza Text';
  src: local('Elza Text'), local('ElzaText-Regular'), local('Elza');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Elza Text';
  src: local('Elza Text Medium'), local('ElzaText-Medium');
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: 'Elza Text';
  src: local('Elza Text Bold'), local('ElzaText-Bold');
  font-weight: 700; font-display: swap;
}

:root {
  --bg: #050505;
  --bg-2: #0c0c0c;
  --bg-3: #131313;
  --fg: #f4f1ea;
  --fg-dim: rgba(244, 241, 234, 0.55);
  --fg-faint: rgba(244, 241, 234, 0.12);
  --accent: #c7ff00;
  --hair: rgba(244, 241, 234, 0.14);
  --pad: clamp(20px, 3.5vw, 56px);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
/* overflow-x: clip does NOT create a scroll container, so position:fixed works correctly on Android.
   'hidden' creates a scroll container which breaks fixed positioning on mobile browsers.
   Apply to both html and body for older iOS Safari (<16) which ignores clip on html. */
html, body { overflow-x: clip; }
body {
  font-family: "Elza Text", "Inter", "Helvetica Neue", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- shared mono labels ---------- */
.mono, .label, .nav a, .kicker, .btn, .pill, .crop-label, .footer .meta, .schedule .row .time, .schedule .row .room, .stat .n, .stat .l, .faq .num, .ticket .price, .ticket .badge, .topbar .right, .meta-bar, .nav-meta {
  font-family: "Public Pixel", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ---------- TOP NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--hair);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px var(--pad);
}
.nav .logo img { height: clamp(48px, 6vh, 64px); width: auto; display: block; }
.nav ul {
  display: flex; gap: 28px;
  list-style: none; padding: 0; margin: 0;
  justify-content: center;
}
.nav a {
  font-size: 9px;
  color: var(--fg-dim);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 120ms, border-color 120ms;
}
.nav a:hover, .nav a.active { color: var(--fg); border-color: var(--fg); }
.nav .cta {
  grid-column: 3;
  justify-self: end;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--fg); color: var(--bg);
  padding: 11px 18px;
  font-family: "Public Pixel", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  transition: background 120ms;
}
.nav .cta:hover { background: var(--accent); color: #000; }

/* second strip — date/location ribbon */
.meta-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px var(--pad);
  border-bottom: 1px solid var(--hair);
  font-size: 8px;
  color: var(--fg-dim);
  background: #000;
  overflow: hidden;
}
.meta-bar .group { display: flex; gap: 24px; }
.meta-bar .group .dot { color: var(--accent); }

/* ---------- SECTION SUB TICKERS ---------- */
.s-head .sub {
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  position: relative;
  margin-top: 14px;
  padding: 0;
}
.sub-track {
  display: inline-flex;
  white-space: nowrap;
  animation: subTicker linear infinite;
}
.s-head .sub:hover .sub-track { animation-play-state: paused; }
@keyframes subTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* mobile ticker */
.meta-ticker { display: none; width: 100%; max-width: 100%; overflow: hidden; position: relative; }
.meta-ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: metaTicker 24s linear infinite;
  font-family: "Public Pixel", monospace;
  font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim);
  padding: 9px 0;
}
.meta-ticker-track .t-accent { color: var(--accent); }
@keyframes metaTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: var(--pad);
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: #000;
}
.hero-bg-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.45) grayscale(0.3);
}
.hero-bg .img {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  /* SVG star-field fades out once video loads */
  opacity: 0.25;
}
.hero-bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(140% 90% at 50% 50%, black 30%, transparent 90%);
}
.hero-bg .vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.9) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.hero h1 {
  font-family: "Elza Text", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero h1 .it {
  font-weight: 300; font-style: italic;
}
.hero h1 .hl {
  font-weight: 700; font-style: normal; color: var(--accent);
}
.hero .kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px;
  color: var(--fg-dim);
  margin-bottom: 28px;
}
.hero .kicker .vol {
  border: 1px solid var(--accent); color: var(--accent);
  padding: 4px 8px;
}
.hero .right-meta {
  display: grid; gap: 14px;
  min-width: 260px;
  text-align: right;
}
.hero .right-meta .row {
  border-top: 1px solid var(--hair);
  padding-top: 10px;
  display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: baseline;
}
.hero .right-meta .row .l {
  font-family: "Public Pixel", monospace;
  font-size: 8px; color: var(--fg-dim);
  letter-spacing: 0.14em; text-transform: uppercase;
  text-align: left;
}
.hero .right-meta .row .v {
  font-family: "Public Pixel", monospace;
  font-size: 10px; color: var(--fg);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-apply-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px;
  padding: 13px 22px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-family: "Public Pixel", monospace;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: background 120ms, color 120ms;
}
.hero-apply-cta:hover { background: var(--accent); color: #000; }

.hero .bottom-strip {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: end;
  padding-top: 32px;
  font-size: 9px;
  color: var(--fg-dim);
}
.hero .bottom-strip .scroll {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg);
}
.hero .bottom-strip .scroll::after {
  content: "↓"; display: inline-block;
  animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(4px); opacity: 0.6; } }

/* ---------- corner-bracket frame on hero ---------- */
.hero .bracket {
  position: absolute; width: 28px; height: 28px;
  border-color: var(--fg); border-style: solid; border-width: 0;
  z-index: 2;
}
.hero .bracket.tl { top: 18px; left: 18px; border-top-width: 1.5px; border-left-width: 1.5px; }
.hero .bracket.tr { top: 18px; right: 18px; border-top-width: 1.5px; border-right-width: 1.5px; }
.hero .bracket.bl { bottom: 18px; left: 18px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.hero .bracket.br { bottom: 18px; right: 18px; border-bottom-width: 1.5px; border-right-width: 1.5px; }
body.no-frames .hero .bracket { display: none; }

/* ---------- SECTION SHELL ---------- */
section.s {
  padding: clamp(80px, 10vh, 140px) var(--pad);
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.s-head {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 56px;
  align-items: start;
}
.s-head .id {
  font-family: "Public Pixel", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--accent);
  white-space: nowrap;
  font-feature-settings: "frac" 0, "liga" 0;
}
.s-head h2 {
  font-family: "Elza Text", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.s-head h2 .it { font-weight: 300; font-style: italic; }
.s-head .sub {
  font-family: "Public Pixel", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-top: 14px;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-grid .lede {
  font-family: "Elza Text", "Inter", sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.5;
  color: var(--fg);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.about-grid .lede em { font-style: italic; font-weight: 400; color: var(--fg-dim); }
.about-grid .body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 44ch;
}
.about-grid .body p + p { margin-top: 14px; }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair);
  margin-top: 80px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.stat {
  background: var(--bg);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.stat .n {
  font-family: "Elza Text", "Inter", sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg);
  text-transform: none;
}
.stat .l { font-size: 9px; color: var(--fg-dim); letter-spacing: 0.14em; }

/* About pillars reuse .stats markup but hold text, not numbers */
#aboutPillars { grid-template-columns: repeat(3, 1fr); }
#aboutPillars .n { font-size: clamp(18px, 2vw, 24px); letter-spacing: -0.02em; }
#aboutPillars .l { font-size: 11px; line-height: 1.4; margin-top: 4px; }
@media (max-width: 760px) { #aboutPillars { grid-template-columns: 1fr; } }

/* ---------- ARTISTS ---------- */
.artists-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.artist {
  background: var(--bg);
  padding: 18px;
  position: relative;
  aspect-ratio: 3 / 4;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: background 200ms;
  cursor: pointer;
  text-decoration: none;
}
.artist:hover { background: var(--bg-2); }
.artist .ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(244,241,234,0.04) 0 6px, transparent 6px 14px),
    linear-gradient(180deg, #181818 0%, #0d0d0d 100%);
  z-index: 0;
}
.artist .ph::after {
  content: attr(data-ph);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Public Pixel", monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: rgba(244,241,234,0.25);
}
.artist .photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 20%; background-repeat: no-repeat;
  transition: transform 400ms ease;
}
.artist:hover .photo { transform: scale(1.05); }
.artist .photo-grad {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.05) 0%, rgba(5,5,5,0.15) 55%, rgba(5,5,5,0.88) 100%);
}
.artist .top, .artist .bot {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: start;
}
.artist .crop-label {
  font-family: "Public Pixel", monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  color: var(--fg-dim);
}
.artist .num {
  font-family: "Public Pixel", monospace;
  font-size: 8px; color: var(--accent);
  letter-spacing: 0.14em;
}
.artist .bot { align-items: end; flex-wrap: wrap; gap: 8px 6px; }
.artist .name {
  font-family: "Elza Text", "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
}
.artist .handle {
  font-family: "Public Pixel", monospace;
  font-size: 8px;
  color: var(--fg-dim);
  letter-spacing: 0.14em;
  margin-top: 6px;
}
.artist .style {
  font-family: "Public Pixel", monospace;
  font-size: 8px;
  color: var(--accent);
  letter-spacing: 0.14em;
  border: 1px solid var(--accent);
  padding: 4px 6px;
  text-transform: uppercase;
}
.artist-cta {
  margin-top: 40px;
  display: flex; justify-content: center;
}

/* ---------- ARTISTS horizontal pin scroll (Lenis) ---------- */
.artists-hscroll {
  padding: 0 !important;
  min-height: 100vh;
  /* height is set by JS once the grid is populated */
}
.artists-hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(40px, 5vh, 64px) 0 clamp(20px, 3vh, 40px);
}
.artists-hscroll-sticky .s-head {
  padding: 0 var(--pad);
  margin-bottom: 20px;
}
.artists-hscroll-track {
  /* fixed height so cards keep a portrait ratio — not full sticky height */
  flex: 0 0 auto;
  height: clamp(320px, 56vh, 520px);
  margin: 8px 0;
  overflow: hidden;
  position: relative;
}
/* override grid layout for the horizontal strip */
.artists-hscroll .artists-grid {
  display: flex !important;
  grid-template-columns: unset;
  gap: 10px;
  background: transparent;
  border: none;
  width: max-content;
  height: 100%;
  will-change: transform;
}
.artists-hscroll .artist {
  /* width × height ≈ 3:5 portrait — photos feel natural, not stretched */
  width: clamp(180px, 17vw, 240px);
  height: 100%;
  aspect-ratio: unset;
  border: 1px solid var(--hair);
}
/* leading / trailing padding via transparent sentinel cards */
.artists-hscroll .artists-grid::before,
.artists-hscroll .artists-grid::after {
  content: '';
  display: block;
  width: var(--pad);
  flex-shrink: 0;
  background: var(--bg);
}
.artists-hscroll .artist-cta {
  margin-top: 12px;
  padding: 0 var(--pad);
  justify-content: flex-start;
}

/* mobile: native horizontal swipe instead of pin */
@media (max-width: 760px) {
  .artists-hscroll {
    height: auto !important;
    min-height: 0;
  }
  .artists-hscroll-sticky {
    position: relative;
    height: auto;
    overflow: visible;
    padding: clamp(40px, 5vh, 64px) 0 clamp(20px, 3vh, 40px);
  }
  .artists-hscroll-track {
    height: clamp(260px, 64vw, 360px);
    margin: 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .artists-hscroll-track::-webkit-scrollbar { display: none; }
  .artists-hscroll .artists-grid {
    height: 100%;
    gap: 8px;
  }
  .artists-hscroll .artist {
    width: 58vw;
    scroll-snap-align: start;
  }
  .artists-hscroll .artist-cta { justify-content: center; margin-top: 24px; }
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--fg);
  color: var(--fg);
  text-decoration: none;
  padding: 16px 24px;
  font-family: "Public Pixel", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  background: transparent;
  cursor: pointer;
  transition: all 150ms;
}
.btn:hover { background: var(--fg); color: var(--bg); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #000; }
.btn.primary:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ---------- TATTOO ZONE feature block ---------- */
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hair);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.feature > div { background: var(--bg); padding: 56px; }
.feature .img-side {
  aspect-ratio: 4/5;
  padding: 0;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(244,241,234,0.04) 0 8px, transparent 8px 16px),
    linear-gradient(180deg, #1a1414 0%, #0a0808 100%);
}
.feature .img-side::after {
  content: "PLACEHOLDER · TATTOO FLOOR";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Public Pixel", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(244,241,234,0.3);
}
.feature .img-side .corner {
  position: absolute; top: 16px; left: 16px;
  font-family: "Public Pixel", monospace;
  font-size: 8px;
  color: var(--accent);
  letter-spacing: 0.14em;
}
.feature .text-side {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 40px;
}
.feature h3 {
  font-family: "Elza Text", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.feature h3 .it { font-weight: 300; font-style: italic; }
.feature .lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 36ch;
}
.feature .checklist {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.feature .checklist li {
  display: grid; grid-template-columns: 20px 1fr; gap: 14px;
  font-family: "Public Pixel", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--fg);
  align-items: center;
}
.feature .checklist li::before {
  content: "✕";
  color: var(--accent);
  font-family: "Public Pixel", monospace;
  font-size: 10px;
}

/* ---------- SCHEDULE ---------- */
.schedule-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 0;
}
.schedule-tabs button {
  background: transparent; border: 0;
  color: var(--fg-dim);
  font-family: "Public Pixel", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 18px 22px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color 120ms, border-color 120ms;
}
.schedule-tabs button.active { color: var(--fg); border-color: var(--accent); }
.schedule-tabs button:hover { color: var(--fg); }
.schedule {
  display: grid; gap: 0;
}
.schedule .row {
  display: grid; grid-template-columns: 140px 1fr 200px 140px;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair);
  align-items: center;
  transition: background 150ms;
}
.schedule .row:hover { background: rgba(244, 241, 234, 0.02); }
.schedule .row .time { font-size: 11px; color: var(--accent); }
.schedule .row .title {
  font-family: "Elza Text", "Inter", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.schedule .row .title .by {
  color: var(--fg-dim); font-weight: 400; margin-left: 8px;
}
.schedule .row .room { font-size: 9px; color: var(--fg-dim); }
.schedule .row .type {
  font-family: "Public Pixel", monospace;
  font-size: 8px;
  color: var(--fg-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--hair);
  padding: 4px 8px;
  justify-self: end;
}
.schedule .row .type.live { color: var(--accent); border-color: var(--accent); }
.schedule-tab-content { display: none; }
.schedule-tab-content.active { display: block; }

/* ---------- TICKETS ---------- */
.tickets {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--hair);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.ticket {
  background: var(--bg);
  padding: 40px 32px 32px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
}
.ticket.featured { background: var(--bg-3); }
.ticket .badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 8px; color: var(--accent);
  letter-spacing: 0.14em;
  border: 1px solid var(--accent);
  padding: 4px 8px;
}
.ticket .tier {
  font-family: "Public Pixel", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.ticket .price {
  font-family: "Elza Text", "Inter", sans-serif;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: -0.03em;
  text-transform: none;
  line-height: 1;
}
.ticket .price .cur { font-size: 22px; color: var(--fg-dim); vertical-align: top; margin-right: 4px; }
.ticket .price .dur { font-size: 11px; color: var(--fg-dim); margin-left: 8px; letter-spacing: 0.14em; font-family: "Public Pixel", monospace; }
.ticket ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
  border-top: 1px solid var(--hair);
  padding-top: 20px;
  flex: 1;
}
.ticket ul li {
  font-size: 13px;
  color: var(--fg);
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
  align-items: baseline;
  line-height: 1.4;
}
.ticket ul li::before {
  content: "→"; color: var(--accent);
  font-family: "Public Pixel", monospace; font-size: 10px;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; }
.faq details {
  border-top: 1px solid var(--hair);
  padding: 22px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--hair); }
.faq summary {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 24px; align-items: center;
  cursor: pointer;
  list-style: none;
}
.faq summary::marker { display: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq .num {
  font-family: "Public Pixel", monospace;
  font-size: 9px; color: var(--accent);
  letter-spacing: 0.14em;
}
.faq .q {
  font-family: "Elza Text", "Inter", sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.faq .toggle {
  width: 24px; height: 24px;
  border: 1px solid var(--fg-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg);
  transition: transform 200ms, border-color 150ms;
}
.faq details[open] .toggle { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.faq .a {
  padding: 18px 0 0 104px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 70ch;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 80px var(--pad) 32px;
  background: #000;
  position: relative;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--hair);
}
.footer .brand img { height: 48px; margin-bottom: 24px; }
.footer .brand p {
  color: var(--fg-dim); font-size: 14px; line-height: 1.5;
  max-width: 32ch;
  margin: 0 0 24px;
}
.footer .signup {
  display: flex; align-items: center;
  border: 1px solid var(--fg);
  max-width: 340px;
}
.footer .signup input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: var(--fg);
  font-family: "Elza Text", "Inter", sans-serif;
  font-size: 13px; padding: 12px 14px;
}
.footer .signup input::placeholder { color: var(--fg-dim); }
.footer .signup button {
  background: var(--fg); color: var(--bg); border: 0;
  font-family: "Public Pixel", monospace;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 16px; cursor: pointer; font-weight: 700;
}
.footer .col h4 {
  font-family: "Public Pixel", monospace;
  font-size: 9px; letter-spacing: 0.14em;
  color: var(--fg-dim); text-transform: uppercase;
  margin: 0 0 16px;
}
.footer .col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer .col ul a {
  color: var(--fg); text-decoration: none; font-size: 14px;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
  transition: border-color 120ms;
}
.footer .col ul a:hover { border-color: var(--fg); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-family: "Public Pixel", monospace;
  font-size: 8px; letter-spacing: 0.14em;
  color: var(--fg-dim); text-transform: uppercase;
}
.footer-bot .right { display: flex; gap: 24px; }

/* huge marquee word at the bottom of footer for impact */
.marquee {
  overflow: hidden;
  padding: 60px 0 32px;
  border-top: 1px solid var(--hair);
  margin-top: 60px;
}
.marquee .word {
  font-family: "Elza Text", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  white-space: nowrap;
  color: var(--fg);
  text-align: center;
}
.marquee .word .it { font-weight: 300; font-style: italic; color: var(--accent); }

/* ---------- COCREATE ---------- */
.cocreate-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hair);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.cocreate-video {
  position: relative;
  aspect-ratio: 4/5;
  background: #0a0a0a;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cocreate-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cocreate-video .video-placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(244,241,234,0.03) 0 8px, transparent 8px 16px),
    linear-gradient(180deg, #111 0%, #060606 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
}
.cocreate-video .video-placeholder .play-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 20px;
}
.cocreate-video .video-placeholder span {
  font-family: "Public Pixel", monospace;
  font-size: 8px; letter-spacing: 0.2em;
  color: rgba(244,241,234,0.3);
  text-transform: uppercase;
}
.cocreate-text {
  background: var(--bg);
  padding: 56px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
}
.cocreate-text .award-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cocreate-text .award {
  font-family: "Public Pixel", monospace;
  font-size: 7px; letter-spacing: 0.14em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 8px;
  text-transform: uppercase;
}
.cocreate-text h3 {
  font-family: "Elza Text", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}
.cocreate-text h3 .it { font-weight: 300; font-style: italic; }
.cocreate-text .lede {
  font-size: 16px; line-height: 1.7;
  color: var(--fg-dim); max-width: 38ch;
}
.cocreate-text .detail-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  border-top: 1px solid var(--hair);
  padding-top: 24px;
}
.cocreate-text .detail-row .d {
  display: flex; flex-direction: column; gap: 4px;
}
.cocreate-text .detail-row .d .dl {
  font-family: "Public Pixel", monospace;
  font-size: 8px; color: var(--fg-dim);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.cocreate-text .detail-row .d .dv {
  font-family: "Elza Text", "Inter", sans-serif;
  font-size: 15px; color: var(--fg);
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--hair);
  z-index: 200;
  pointer-events: none;
}
.scroll-bar::after {
  content: "";
  position: absolute; top: 0; left: 0; bottom: 0;
  width: var(--scroll-pct, 0%);
  background: var(--accent);
  transition: width 60ms linear;
}

/* ---------- SECTION DOT NAV ---------- */
.section-nav {
  position: fixed; right: 18px; top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.section-nav.visible { opacity: 1; pointer-events: auto; }
.section-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-end;
}
.section-nav li {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  position: relative;
}
.section-nav .dot-label {
  font-family: "Public Pixel", monospace;
  font-size: 7px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-dim);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 150ms, transform 150ms, color 150ms;
  white-space: nowrap;
  user-select: none;
}
.section-nav li:hover .dot-label,
.section-nav li.active .dot-label {
  opacity: 1; transform: translateX(0);
}
.section-nav li.active .dot-label { color: var(--accent); }
.section-nav .dot {
  width: 6px; height: 6px;
  border: 1px solid rgba(244,241,234,0.35);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 200ms, border-color 200ms, transform 200ms;
}
.section-nav li.active .dot {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.5);
}
.section-nav li:hover .dot { border-color: var(--fg); }

/* ---------- HERO CTA BAND ---------- */
.cta-band {
  background: #000;
  border-bottom: 1px solid var(--hair);
  padding: 18px var(--pad);
}
.cta-band-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.cta-band .event-info { display: flex; flex-direction: column; gap: 7px; min-width: 0; overflow: hidden; }
.cta-band .event-date {
  font-family: "Public Pixel", monospace;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim);
  overflow: hidden; white-space: nowrap;
  max-width: 100%;
}
.cta-band .event-date-track {
  display: inline-flex; white-space: nowrap;
  animation: ctaTicker linear infinite;
}
.cta-band .event-date:hover .event-date-track { animation-play-state: paused; }
@keyframes ctaTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cta-band .tiers {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  font-family: "Public Pixel", monospace;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-dim);
}
.cta-band .tiers .tier-item { display: flex; flex-direction: column; gap: 3px; }
.cta-band .tiers .tier-name { font-size: 7px; color: var(--fg-dim); }
.cta-band .tiers .tier-price { font-size: 13px; color: var(--fg); letter-spacing: -0.01em; font-family: "Elza Text", sans-serif; font-weight: 700; }
.cta-band .tiers .tier-sep { width: 1px; height: 28px; background: var(--hair); }
.cta-band .actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* ---------- SCROLL ANIMATIONS ---------- */
.js-anim [data-anim] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--anim-delay, 0s);
}
.js-anim [data-anim="left"]  { transform: translateX(-32px); }
.js-anim [data-anim="right"] { transform: translateX(32px); }
.js-anim [data-anim="fade"]  { transform: none; }
.js-anim [data-anim].in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-anim [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- MOBILE SECTION PILL ---------- */
.mobile-pill {
  display: none;
  position: fixed; bottom: 24px;
  left: 0; right: 0;
  width: fit-content; width: max-content;
  margin: 0 auto;
  z-index: 200; pointer-events: none;
  background: rgba(10,10,10,0.96);
  border: 1px solid rgba(244,241,234,0.22);
  border-radius: 100px;
  padding: 10px 18px;
  align-items: center; gap: 9px;
  opacity: 0; transition: opacity 350ms ease;
  white-space: nowrap;
}
.mobile-pill.visible { opacity: 1; }
.mobile-pill .pill-dot {
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.mobile-pill .pill-text {
  font-family: "Public Pixel", monospace;
  font-size: 7px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg);
}
@media (max-width: 980px) { .mobile-pill { display: flex; } }

/* density */
body.dense section.s { padding-top: 60px; padding-bottom: 60px; }
body.dense .s-head { margin-bottom: 36px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero .right-meta { text-align: left; }
  .s-head { grid-template-columns: 1fr; gap: 16px; }
  .s-head h2 { font-size: clamp(28px, 6vw, 60px); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid .lede { font-size: clamp(18px, 3.5vw, 26px); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; }
  .feature > div { padding: 36px; }
  .cocreate-feature { grid-template-columns: 1fr; }
  .cocreate-text { padding: 36px 32px; gap: 28px; }
  .tickets { grid-template-columns: 1fr; }
  .ticket { padding: 36px 32px; }
  .schedule .row { grid-template-columns: 90px 1fr; gap: 16px; }
  .schedule .row .room, .schedule .row .type { display: none; }
  .schedule .row { padding: 20px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer .brand p { line-height: 1.7; font-size: 15px; }
  .nav ul { display: none; }
  .nav .cta { display: none; }
  .faq .a { padding-left: 0; padding-top: 16px; }
  .faq details { padding: 20px 0; }
  .meta-bar { padding: 0; }
  .meta-bar .group { display: none; }
  .meta-ticker { display: block; }
  .section-nav { display: none; }
  .cta-band .tiers .tier-sep { display: none; }
  .cta-band-inner { gap: 20px; }
  section.s { padding-top: clamp(56px, 8vh, 100px); padding-bottom: clamp(56px, 8vh, 100px); }
  .s-head { margin-bottom: 40px; }
}

@media (max-width: 520px) {
  :root { --pad: 20px; }
  .cta-band { padding: 20px var(--pad); }
  .cta-band .tiers { gap: 14px; }
  .cta-band .actions { width: 100%; flex-direction: column; gap: 8px; }
  .cta-band .actions .btn { width: 100%; justify-content: center; }
  .nav-inner { gap: 16px; }
  section.s { padding-top: 52px; padding-bottom: 52px; }
  .s-head { margin-bottom: 28px; }
  .s-head h2 { font-size: clamp(26px, 8vw, 44px); }
  .hero { min-height: 0; grid-template-rows: auto auto; padding: 56px var(--pad) 36px; }
  .hero-content { align-self: start; }
  .hero h1 { font-size: clamp(40px, 12vw, 72px); margin-bottom: 20px; line-height: 0.92; }
  .hero .kicker { font-size: 8px; gap: 8px; margin-bottom: 18px; }
  .hero .right-meta { display: none; }
  .hero .bottom-strip { padding-top: 20px; font-size: 8px; }
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .artist .name { font-size: 16px; }
  .artist .bot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 28px 18px; }
  .stat .n { font-size: clamp(30px, 9vw, 52px); }
  .stat .l { font-size: 8px; line-height: 1.5; }
  .tickets { gap: 0; }
  .ticket { padding: 32px 20px 28px; }
  .ticket .price { font-size: 44px; }
  .ticket ul li { font-size: 12px; line-height: 1.5; }
  .faq summary { grid-template-columns: 44px 1fr auto; gap: 10px; }
  .faq .q { font-size: 15px; line-height: 1.4; }
  .faq .a { font-size: 14px; line-height: 1.7; }
  .footer-top { gap: 36px; }
  .footer .col ul a { font-size: 13px; line-height: 1.8; }
  .footer-bot { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-bot .right { flex-direction: column; gap: 6px; }
  .feature > div { padding: 24px 20px; }
  .feature h3 { font-size: clamp(26px, 7.5vw, 44px); }
  .feature .lede { font-size: 15px; }
  .feature .checklist li { font-size: 8px; gap: 10px; }
  .cocreate-text { padding: 24px 20px; }
  .cocreate-text h3 { font-size: clamp(22px, 7vw, 40px); }
  .cocreate-text .lede { font-size: 14px; }
  .cocreate-text .detail-row { grid-template-columns: 1fr; gap: 14px; }
  .schedule .row .title { font-size: 14px; }
  .schedule .row .time { font-size: 10px; }
  .marquee .word { font-size: clamp(52px, 14vw, 120px); }
}

/* ---------- TCG & EAT STREET ---------- */
.tcg-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--hair);
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
}
.tcg-zone { background: var(--bg); padding: clamp(28px, 5vw, 64px); }
.zone-lbl {
  font-family: "Public Pixel", monospace; font-size: 9px;
  letter-spacing: 0.14em; color: var(--accent); margin-bottom: 22px;
}
.tcg-zone h3 {
  font-weight: 700; font-size: clamp(26px, 3.5vw, 48px);
  line-height: 0.95; letter-spacing: -0.03em; margin: 0 0 18px;
}
.tcg-zone h3 .it { font-weight: 300; font-style: italic; }
.tcg-zone .lede { font-size: 16px; line-height: 1.6; color: var(--fg-dim); margin-bottom: 20px; }
.tcg-body { font-size: 14px; line-height: 1.7; color: var(--fg-dim); }
.tcg-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tcg-checklist li {
  display: flex; align-items: center; gap: 12px;
  font-family: "Public Pixel", monospace; font-size: 8px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim);
}
.tcg-checklist li::before { content: "→"; color: var(--accent); flex-shrink: 0; }
.tcg-logo { margin-bottom: 20px; }
.tcg-logo img { height: 72px; max-width: 100%; object-fit: contain; object-position: left center; display: block; }
.tcg-logo-eat img { height: 44px; }
.tcg-promo { width: 100%; margin-bottom: 20px; border-radius: 6px; overflow: hidden; }
.tcg-promo img { width: 100%; display: block; }

/* ---------- COMPETITION & AWARDS ---------- */
.awards-lede {
  font-size: clamp(15px, 1.8vw, 19px); line-height: 1.65;
  color: var(--fg-dim); max-width: 62ch;
  margin: 0 0 clamp(32px, 5vh, 56px);
}
.awards-cats {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px; background: var(--hair);
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  margin-bottom: 28px;
}
.acat {
  background: var(--bg); padding: 22px 28px;
  display: flex; align-items: center; gap: 20px;
  transition: background 120ms;
}
.acat:hover { background: var(--bg-2); }
.acat-n {
  font-family: "Public Pixel", monospace; font-size: 9px;
  letter-spacing: 0.14em; color: var(--accent); flex-shrink: 0;
}
.acat-name { font-weight: 600; font-size: clamp(14px, 1.6vw, 18px); letter-spacing: -0.01em; }
.awards-note {
  font-family: "Public Pixel", monospace; font-size: 9px;
  letter-spacing: 0.12em; color: var(--fg-dim); text-transform: uppercase;
}

/* ---------- VENUE ---------- */
.venue-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-bottom: 32px; align-items: start;
}
.venue-facts { border-top: 1px solid var(--hair); }
.vf {
  display: flex; gap: 24px; padding: 18px 0;
  border-bottom: 1px solid var(--hair); align-items: baseline;
}
.vk {
  font-family: "Public Pixel", monospace; font-size: 8px;
  letter-spacing: 0.14em; color: var(--fg-dim); text-transform: uppercase;
  flex-shrink: 0; width: 96px;
}
.vv { font-size: 15px; line-height: 1.5; }
.venue-map-wrap {
  border: 1px solid var(--hair); aspect-ratio: 16/9;
  overflow: hidden; position: relative; background: var(--bg-3);
}
.venue-map-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.map-lbl { font-family: "Public Pixel", monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--accent); }
.map-sub { font-family: "Public Pixel", monospace; font-size: 8px; letter-spacing: 0.12em; color: var(--fg-dim); }
.map-link {
  font-family: "Public Pixel", monospace; font-size: 8px; letter-spacing: 0.1em;
  color: var(--fg); border: 1px solid var(--hair); padding: 8px 14px;
  text-decoration: none; margin-top: 6px; transition: border-color 120ms, color 120ms;
}
.map-link:hover { border-color: var(--accent); color: var(--accent); }
.venue-map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.venue-body { font-size: 15px; line-height: 1.7; color: var(--fg-dim); max-width: 60ch; }

/* ---------- SPONSORS ---------- */
.sponsors-grid {
  display: flex; flex-wrap: wrap; gap: 1px; background: var(--hair);
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  margin-bottom: 40px;
}
.sponsors-grid:empty { display: none; margin: 0; }
.sponsor-card {
  background: var(--bg); padding: 32px 40px;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; min-width: 200px; transition: background 150ms;
}
.sponsor-card:hover { background: var(--bg-2); }
.sponsor-tier {
  font-family: "Public Pixel", monospace; font-size: 8px;
  letter-spacing: 0.14em; color: var(--accent); text-transform: uppercase;
}
.sponsor-name { font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.sponsors-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.sponsors-cta p { font-size: 15px; color: var(--fg-dim); margin: 0; }

/* ---- Phase 3 responsive ---- */
@media (max-width: 760px) {
  .tcg-split { grid-template-columns: 1fr; }
  .venue-layout { grid-template-columns: 1fr; }
  .venue-map-wrap { aspect-ratio: 4/3; }
  .vk { width: 76px; }
  .awards-cats { grid-template-columns: 1fr; }
}

#tweaks-root { position: fixed; inset: 0; pointer-events: none; z-index: 99; }
#tweaks-root > * { pointer-events: auto; }

#eventbriteEmbed iframe {
  filter: invert(1) hue-rotate(180deg);
  border-radius: 4px;
}
