/* LURU N°05 — The Music Edit, launch-night partnership proposal.
   Visual system derived from the Issue 5 cover: black card, holographic
   foil linework, contour ridges, octagonal frame, mono microtype. */

:root {
  --bg: #0a0812;
  --bg-warm: #0e0a16;
  --panel: rgba(244, 236, 221, 0.03);
  --line: rgba(244, 236, 221, 0.16);
  --line-soft: rgba(244, 236, 221, 0.08);
  --ink: #f2ecdc;
  --ink-soft: #c8bfd4;
  --ink-faint: #877b9c;
  --magenta: #f65fb8;
  --violet: #a583ff;
  --cyan: #86e2ff;
  --gold: #ffe6a1;
  --holo: linear-gradient(100deg, #ff9ad5, #b18cff 24%, #7fe0ff 48%, #a8f0c6 66%, #ffe49a 84%, #ff9ad5);
  --serif: "Playfair Display", Georgia, serif;
  --body-font: "Source Serif 4", Georgia, serif;
  --mono: "Space Mono", ui-monospace, monospace;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* faint contour field behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='240' viewBox='0 0 420 240'%3E%3Cg fill='none' stroke='%23f2ecdc' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M0 24 Q 52 10 105 26 T 210 22 T 315 28 T 420 24'/%3E%3Cpath d='M0 64 Q 60 48 118 66 T 228 60 T 330 68 T 420 64'/%3E%3Cpath d='M0 104 Q 48 90 100 106 T 205 100 T 312 108 T 420 104'/%3E%3Cpath d='M0 144 Q 56 128 112 146 T 220 140 T 322 148 T 420 144'/%3E%3Cpath d='M0 184 Q 50 170 104 186 T 212 180 T 316 188 T 420 184'/%3E%3Cpath d='M0 224 Q 58 208 116 226 T 224 220 T 326 228 T 420 224'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 420px 240px;
}

/* print-grain speckle, like the cover stock */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.93 0 0 0 0 0.86 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, footer, .topbar { position: relative; z-index: 2; }

::selection { background: var(--magenta); color: var(--bg); }

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ---------- page frame (drawn by JS to follow the viewport) ---------- */

#pageFrame {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  pointer-events: none;
}

/* ---------- type ---------- */

.mono {
  font-family: var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--magenta);
}

.kicker .no { color: var(--ink-faint); }

.holo-text {
  background: var(--holo);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; }

h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.7rem);
  line-height: 1.14;
  margin: 16px 0 18px;
  max-width: 24ch;
}

.lede {
  color: var(--ink-soft);
  max-width: 60ch;
  font-size: clamp(1rem, 1.25vw, 1.09rem);
}

.factline {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 2px;
  margin-top: 30px;
  max-width: 640px;
}

.factline b { color: var(--gold); font-weight: 700; }

.factline a { text-decoration: none; }
.factline a:hover b { color: var(--magenta); }

/* ---------- topbar ---------- */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px clamp(22px, 4vw, 46px);
  background: linear-gradient(rgba(10, 8, 18, 0.94), rgba(10, 8, 18, 0.72) 65%, transparent);
}

.topbar .brand { display: flex; align-items: center; gap: 12px; }

.topbar .wordmark { height: 16px; width: auto; color: var(--ink); display: block; }

.topbar .issue-chip {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 4px 8px;
  border: 1.5px solid var(--ink);
  white-space: nowrap;
}

.topbar .datechip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;    /* fallback: svh is iOS 15.4+ / Chrome 108+ */
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px clamp(22px, 5vw, 56px) 70px;
  overflow: hidden;
}

#heroRings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.hero h1 { margin: 20px 0 22px; }

.hero .h1-title {
  display: block;
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero .h1-line {
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--ink-soft);
}

.hero-script {
  font-family: var(--body-font);
  color: var(--ink-faint);
  font-size: 15px;
  letter-spacing: 0.35em;
  margin-bottom: 14px;
}

/* the record */

.disc-stage {
  position: relative;
  justify-self: center;
  width: min(74vw, 420px);
  aspect-ratio: 1;
}

.disc-stage::before {
  content: "";
  position: absolute;
  inset: -26%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(165, 131, 255, 0.16), rgba(246, 95, 184, 0.07) 45%, transparent 68%);
  pointer-events: none;
}

.disc-stage::after {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  pointer-events: none;
  opacity: var(--energy, 0);
  border: 1px solid rgba(134, 226, 255, 0.48);
  box-shadow:
    0 0 36px rgba(134, 226, 255, 0.32),
    inset 0 0 28px rgba(246, 95, 184, 0.18);
  transition: opacity 0.12s linear;
}

.disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  cursor: grab;
  touch-action: pan-y;
  background: radial-gradient(circle, #191223 0%, #120d1c 55%, #0d0a15 100%);
  box-shadow:
    0 0 0 1px rgba(242, 236, 220, 0.28),
    0 0 90px rgba(165, 131, 255, 0.16),
    0 26px 90px rgba(0, 0, 0, 0.6);
}

.disc:active { cursor: grabbing; }

.disc .foil,
.disc .streaks,
.disc .grooves,
.disc .light {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.disc .foil {
  background: conic-gradient(from 0deg,
    #ff9ad5, #b18cff 12%, #7fe0ff 25%, #a8f0c6 37%, #ffe49a 50%,
    #ff9ad5 62%, #7fe0ff 76%, #b18cff 88%, #ff9ad5);
  -webkit-mask: radial-gradient(circle, transparent 0 10.5%, #000 12% 82%, transparent 84%);
  mask: radial-gradient(circle, transparent 0 10.5%, #000 12% 82%, transparent 84%);
  opacity: 0.85;
  transform: rotate(var(--rot, 0deg));
  filter: saturate(1.1);
}

.disc .streaks {
  background: conic-gradient(from 40deg,
    transparent 0 8%, rgba(255, 255, 255, 0.32) 9%, transparent 10.5% 30%,
    rgba(255, 255, 255, 0.2) 31%, transparent 32.5% 58%,
    rgba(255, 255, 255, 0.28) 59%, transparent 60.5% 86%,
    rgba(255, 255, 255, 0.18) 87%, transparent 88.5%);
  -webkit-mask: radial-gradient(circle, transparent 0 12%, #000 14% 80%, transparent 83%);
  mask: radial-gradient(circle, transparent 0 12%, #000 14% 80%, transparent 83%);
  mix-blend-mode: screen;
  opacity: 0.5;
  transform: rotate(var(--rot, 0deg));
}

.disc .grooves {
  background: repeating-radial-gradient(circle,
    rgba(6, 4, 10, 0.5) 0 1px, transparent 1px 4px);
  -webkit-mask: radial-gradient(circle, transparent 0 11%, #000 12% 84%, transparent 85%);
  mask: radial-gradient(circle, transparent 0 11%, #000 12% 84%, transparent 85%);
}

.disc .light {
  background: radial-gradient(
    38% 38% at var(--lx, 32%) var(--ly, 26%),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.12) 45%,
    transparent 72%
  );
  mix-blend-mode: screen;
}

.disc .hole {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #08060e;
  box-shadow:
    0 0 0 2px rgba(242, 236, 220, 0.75),
    0 0 0 8px rgba(8, 6, 14, 0.9),
    0 0 22px rgba(255, 154, 213, 0.35);
  pointer-events: none;
  transition: box-shadow 0.6s ease;
}

.disc.pulse .hole {
  box-shadow:
    0 0 0 2px rgba(242, 236, 220, 1),
    0 0 0 8px rgba(8, 6, 14, 0.9),
    0 0 34px rgba(255, 154, 213, 0.8),
    0 0 70px rgba(127, 224, 255, 0.5);
  transition-duration: 0.1s;
}

.disc-caption {
  position: absolute;
  left: 50%;
  bottom: -44px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--ink-faint);
  text-decoration: none;
}

/* ---------- sections ---------- */

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(70px, 11vh, 130px) clamp(22px, 5vw, 56px);
}

.rule-top {
  position: relative;
  border-top: 1px solid var(--line-soft);
  background-image: radial-gradient(ellipse at 82% 0%, rgba(165, 131, 255, 0.035), transparent 38rem);
}

.rule-top:nth-of-type(3n) {
  background-image: radial-gradient(ellipse at 18% 0%, rgba(246, 95, 184, 0.032), transparent 38rem);
}

.rule-top::before {
  content: "";
  position: absolute;
  top: -1px;
  left: clamp(22px, 5vw, 56px);
  width: min(280px, 38vw);
  height: 1px;
  pointer-events: none;
  background: var(--holo);
  transform: scaleX(0.34);
  transform-origin: left;
  opacity: 0.75;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.rule-top:hover::before { transform: scaleX(1); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- stat tiles (deck style) ---------- */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stat {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--panel);
  padding: 18px 18px 15px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 1px;
  background: var(--holo);
  opacity: 0.4;
}

.stat:hover {
  transform: translateY(-2px);
  border-color: rgba(134, 226, 255, 0.28);
  background: rgba(165, 131, 255, 0.05);
}

.stat .s-num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.stat .s-lbl {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 7px;
  line-height: 1.6;
}

.stat a { text-decoration: none; }

/* ---------- tracklist ---------- */

.tracklist { margin-top: 40px; max-width: 820px; }

.side-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--ink-faint);
  padding: 22px 0 8px;
}

.track {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 18px 6px;
  border-top: 1px solid var(--line-soft);
  text-decoration: none;
  transition: background 0.25s;
}

.tracklist .track:last-child { border-bottom: 1px solid var(--line-soft); }

.track:hover, .track:focus-visible {
  background: linear-gradient(90deg, rgba(246, 95, 184, 0.07), rgba(134, 226, 255, 0.025) 58%, transparent);
  box-shadow: inset 2px 0 var(--magenta);
}

.track .t-time {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--magenta);
  font-weight: 700;
}

.track .t-name {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 600;
  line-height: 1.25;
}

.track .t-sub {
  display: block;
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--ink-faint);
  margin-top: 4px;
}

.track .t-len {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

/* ---------- octagon panels ---------- */

.oct {
  position: relative;
  clip-path: polygon(
    18px 0, calc(100% - 18px) 0, 100% 18px,
    100% calc(100% - 18px), calc(100% - 18px) 100%,
    18px 100%, 0 calc(100% - 18px), 0 18px
  );
  background: var(--panel);
}

.oct > .oct-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.oct > *:not(.oct-frame) { position: relative; }

/* ---------- act sections ---------- */

.act-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

/* photo filmstrip — photographs shown full, never cropped */

.filmstrip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;   /* swiping the strip must not trigger back-nav */
  padding: 34px 0 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filmstrip::-webkit-scrollbar { display: none; }

.filmstrip figure { flex: 0 0 auto; scroll-snap-align: start; max-width: 84vw; }

.filmstrip img,
.filmstrip video {
  height: clamp(280px, 42vh, 420px);
  width: auto;
  border: 1px solid var(--line-soft);
  display: block;
}

.filmstrip .film-video { cursor: pointer; }
.filmstrip .film-video video { background: #000; aspect-ratio: 9 / 16; }

.filmstrip figcaption,
.photo-credit {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 9px;
}

/* act-two bill: a compact editorial colophon rather than a sponsor-logo row */

.artist-lineup {
  margin-top: 30px;
  max-width: 900px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.artist-lineup .lineup-label {
  padding: 12px 2px 9px;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lineup-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lineup-links a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 14px 10px 2px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s, padding 0.2s;
}

.lineup-links a:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.lineup-links a span { color: var(--violet); font-size: 8px; }
.lineup-links a b { color: var(--cyan); font-size: 13px; }

.lineup-links a:hover,
.lineup-links a:focus-visible {
  padding-left: 10px;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(165, 131, 255, 0.09), transparent);
  outline: none;
}

/* watch strip — click-to-play embeds */

.watch-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.yt {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-soft);
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.yt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.3s, transform 0.5s ease;
}

.yt:hover img { opacity: 1; transform: scale(1.03); }

.yt .yt-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(242, 236, 220, 0.9);
  background: rgba(10, 8, 18, 0.55);
  display: grid;
  place-items: center;
  transition: background 0.25s, border-color 0.25s;
}

.yt:hover .yt-play { background: rgba(246, 95, 184, 0.35); border-color: #fff; }

.yt .yt-play::after {
  content: "";
  display: block;
  margin-left: 4px;
  border-left: 14px solid var(--ink);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.yt .yt-title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 12px 10px;
  background: linear-gradient(transparent, rgba(5, 3, 9, 0.85));
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- pages/stage strip ---------- */

.pages-stage {
  display: grid;
  grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  margin-top: 64px;
}

.pages-stage img { border: 1px solid var(--line-soft); }

.tracklist-tease {
  border: 1px solid var(--line-soft);
  background: #0c0915;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tracklist-tease .tt-head,
.tracklist-tease .tt-side,
.tracklist-tease .tt-name {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tracklist-tease .tt-head { font-size: 11px; color: var(--ink); text-align: center; margin-bottom: 6px; }

.tracklist-tease .tt-side { font-size: 8.5px; color: var(--ink-faint); margin-top: 8px; }

.tracklist-tease .tt-name {
  font-size: 10px;
  background: var(--holo);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tracklist-tease .tt-bar {
  display: block;
  height: 7px;
  background: rgba(242, 236, 220, 0.13);
}

.pages-stage h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 600;
  margin: 12px 0 10px;
}

/* official venue mark, used as provenance rather than partner branding */

.venue-lockup {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  max-width: 560px;
  margin-top: 34px;
  padding: 18px 22px;
  color: var(--ink-soft);
  background: linear-gradient(115deg, rgba(255, 230, 161, 0.055), rgba(165, 131, 255, 0.035));
  border: 1px solid var(--line-soft);
  text-decoration: none;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: border-color 0.25s, background 0.25s;
}

.venue-lockup img {
  width: 66px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 230, 161, 0.1));
}

.venue-lockup span {
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.venue-lockup b { display: block; margin-bottom: 4px; color: var(--gold); font-size: 10px; }
.venue-lockup i { margin-left: 6px; color: var(--cyan); font-style: normal; }

.venue-lockup:hover,
.venue-lockup:focus-visible {
  color: var(--ink);
  border-color: rgba(255, 230, 161, 0.35);
  background: linear-gradient(115deg, rgba(255, 230, 161, 0.09), rgba(165, 131, 255, 0.055));
  outline: none;
}

/* ---------- ticket ---------- */

.ticket-grid {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.spread-figure img { border: 1px solid var(--line-soft); }

.sealed-issue {
  position: relative;
  max-width: 330px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.sealed-issue svg { display: block; width: 100%; height: auto; }

.issue-sheen {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  mix-blend-mode: screen;
  background: linear-gradient(115deg,
    transparent 38%,
    rgba(255, 154, 213, 0.1) 45%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(127, 224, 255, 0.1) 55%,
    transparent 62%);
  animation: issue-sheen-drift 5.5s ease-in-out infinite;
}

@keyframes issue-sheen-drift {
  0%, 100% { transform: translateX(-24%); }
  50% { transform: translateX(24%); }
}

@media (prefers-reduced-motion: reduce) {
  .issue-sheen { animation: none; }
}

.spread-figure figcaption {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 10px;
}

.price-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; max-width: 460px; }

.price-card { border: 1px solid var(--line-soft); background: var(--panel); padding: 18px; }

.price-card .p-amt { font-family: var(--serif); font-size: 1.75rem; font-weight: 700; color: var(--gold); }

.price-card .p-lbl {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
  line-height: 1.7;
}

/* ---------- money ---------- */

.ask-line {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.4vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 12px 0 10px;
}

.alloc { margin-top: 42px; max-width: 860px; }

.alloc-row { padding: 20px 0 18px; border-top: 1px solid var(--line-soft); }

.alloc-row .a-top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }

.alloc-row .a-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }

.alloc-row .a-amt {
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  white-space: nowrap;
}

.alloc-row .a-bar { height: 7px; margin: 13px 0 11px; background: rgba(242, 236, 220, 0.07); }

.alloc-row .a-fill {
  height: 100%;
  width: 0;
  background: var(--holo);
  background-size: 300% 100%;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.alloc-row.in .a-fill { width: var(--w); }

.alloc-row .a-sub { color: var(--ink-faint); font-size: 0.9rem; max-width: 64ch; }

.alloc-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 16px 0;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.alloc-total .t-amt { color: var(--gold); }

.alloc-note {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  max-width: 640px;
  line-height: 1.9;
}

/* ---------- partnership terms ---------- */

.terms { margin-top: 40px; max-width: 900px; }

.term-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 230px) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 4px;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}

.terms .term-row:last-child { border-bottom: 1px solid var(--line-soft); }

.term-row .t-no {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--violet);
}

.term-row h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; line-height: 1.3; }

.term-row p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- brand playground ---------- */

.playground { margin-top: 74px; }

.brand-input {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 14px 16px;
  min-width: min(320px, 78vw);
  outline: none;
  margin-top: 18px;
  transition: border-color 0.2s;
}

.brand-input:focus { border-color: var(--magenta); }

/* outline:none above kills the keyboard focus ring, so put one back */
.brand-input:focus-visible { outline: 2px solid var(--magenta); outline-offset: 2px; }

.live-line {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 14px;
}

.live-line .m-brand { font-size: inherit; color: var(--ink); margin-left: 6px; }

.mocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.mock { border: 1px solid var(--line-soft); overflow: hidden; background: var(--bg-warm); }

.mock .m-label {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
}

.mock .m-body {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.mock .mini-cover { width: 92px; margin: 0 auto 16px; display: block; }

.mock .m-night {
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--ink-faint);
}

.mock .m-brand {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.16em;
  margin-top: 8px;
  word-break: break-word;
  color: var(--ink);
}

.mock-ticket .stub { width: 100%; padding: 24px 18px; }

.mock-ticket .barcode {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-top: 16px;
  height: 24px;
}

.mock-ticket .barcode i { width: 2px; background: rgba(242, 236, 220, 0.7); }
.mock-ticket .barcode i:nth-child(3n) { width: 4px; }
.mock-ticket .barcode i:nth-child(5n) { width: 1px; opacity: 0.6; }

.mock-screen .m-body {
  background:
    radial-gradient(120% 130% at 50% 120%, rgba(134, 226, 255, 0.14), transparent 60%),
    #060410;
}

/* ---------- invitation / contact ---------- */

.select-panel { padding: clamp(36px, 6vw, 72px); text-align: center; }

.select-panel h2 { margin-left: auto; margin-right: auto; }

.select-panel .lede { margin: 0 auto; }

.select-panel .select-lede { text-align: left; }

.practicals {
  max-width: 620px;
  margin: 34px auto 0;
  text-align: left;
}

.practicals .kicker { margin-bottom: 6px; }

.practicals p:not(.kicker) {
  font-size: 0.93rem;
  color: var(--ink-soft);
  padding: 9px 2px;
  border-top: 1px solid var(--line-soft);
}

.contact-email {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-top: 12px;
  user-select: all;
  -webkit-user-select: all;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.cta-mail {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--holo);
  background-size: 220% 100%;
  padding: 16px 26px;
  text-decoration: none;
  transition: background-position 0.6s;
}

.cta-mail:hover { background-position: 100% 0; }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line-soft);
  padding: 36px clamp(22px, 5vw, 56px) 52px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 36px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

footer a { color: var(--ink-soft); text-decoration: none; }
footer a:hover { color: var(--magenta); }

.footer-barcode { display: flex; align-items: flex-end; gap: 2px; height: 22px; }
.footer-barcode i { width: 2px; height: 100%; background: rgba(242, 236, 220, 0.5); }
.footer-barcode i:nth-child(3n) { width: 4px; }
.footer-barcode i:nth-child(7n) { height: 80%; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero { padding-top: 92px; padding-bottom: 110px; }
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .disc-stage { width: min(68vw, 320px); margin-top: 8px; margin-bottom: 30px; }
  .scroll-cue { display: none; }
  .act-grid, .ticket-grid { grid-template-columns: 1fr; }
  .mocks { grid-template-columns: 1fr; }
  .pages-stage { grid-template-columns: 1fr; }
  .pages-stage img { max-width: 190px; }
  .track { grid-template-columns: 70px minmax(0, 1fr); }
  .track .t-len { display: none; }
  .term-row { grid-template-columns: 40px minmax(0, 1fr); }
  .term-row p { grid-column: 2; }
}

@media (max-width: 520px) {
  .topbar .datechip { display: none; }
  .price-row { grid-template-columns: 1fr; }
  .lineup-links { grid-template-columns: 1fr; }
  .lineup-links a:nth-child(odd) { border-right: 0; }

  /* Each Monsoon Jam frame now fits inside the phone viewport while retaining
     its original aspect ratio. The horizontal strip remains swipeable. */
  .filmstrip { gap: 10px; scroll-snap-type: x mandatory; }
  .filmstrip figure { max-width: 84vw; }
  .filmstrip img,
  .filmstrip video {
    width: auto;
    height: auto;
    max-width: 84vw;
    max-height: 70svh;
  }
  .filmstrip .film-video video {
    width: min(84vw, 340px);
    aspect-ratio: 9 / 16;
    object-fit: cover;
  }

  .venue-lockup { grid-template-columns: 64px minmax(0, 1fr); padding: 16px; gap: 16px; }
  .venue-lockup img { width: 54px; height: 74px; }
}

/* ---------- reduced motion, last so it beats the rules above ---------- */

@media (prefers-reduced-motion: reduce) {
  .alloc-row .a-fill { transition: none; }
  .yt:hover img { transform: none; }
  .stat:hover { transform: none; }
  .rule-top::before { transition: none; }
}
