/* ==========================================================================
   VUM
   The identity comes from the printed poster: cream ground, slate ink, one
   neon gradient (magenta → violet → cyan) and the line-fan motif.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  --magenta: #ec008c;
  --violet:  #8e5bd0;
  --cyan:    #00aeef;

  --neon: linear-gradient(100deg, var(--magenta), var(--violet) 52%, var(--cyan));

  --font: "Helvetica Neue", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, Arial, sans-serif;

  --shell: 1220px;
  --radius: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

:root, [data-theme="light"] {
  --bg:        #f4e8cf;
  --bg-tint:   #eddfc0;
  --surface:   #fdf8ee;
  --surface-2: #fffdf8;
  --ink:       #2d414e;
  --ink-soft:  rgba(45, 65, 78, .70);
  --ink-faint: rgba(45, 65, 78, .42);
  --line:      rgba(45, 65, 78, .15);
  --line-soft: rgba(45, 65, 78, .09);
  --shadow:    0 1px 2px rgba(45,65,78,.05), 0 12px 28px -18px rgba(45,65,78,.35);
  --shadow-lg: 0 2px 4px rgba(45,65,78,.06), 0 40px 70px -40px rgba(45,65,78,.5);
  --fan-opacity: .55;
  --header-bg: rgba(244, 232, 207, .82);
}

[data-theme="dark"] {
  --bg:        #1a2830;
  --bg-tint:   #22333d;
  --surface:   #23343e;
  --surface-2: #2b3f4a;
  --ink:       #f4e8cf;
  --ink-soft:  rgba(244, 232, 207, .72);
  --ink-faint: rgba(244, 232, 207, .45);
  --line:      rgba(244, 232, 207, .16);
  --line-soft: rgba(244, 232, 207, .09);
  --shadow:    0 1px 2px rgba(0,0,0,.3), 0 14px 30px -20px rgba(0,0,0,.8);
  --shadow-lg: 0 2px 6px rgba(0,0,0,.35), 0 40px 80px -40px rgba(0,0,0,.9);
  --fan-opacity: .5;
  --header-bg: rgba(26, 40, 48, .82);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}

img, svg { display: block; max-width: 100%; }
button, input, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 700; letter-spacing: -.03em; line-height: 1.04; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--violet); color: #fff; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  padding: 10px 16px; border-radius: 999px;
  background: var(--ink); color: var(--bg);
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

/* --- Layout primitives ---------------------------------------------------- */
.shell {
  width: min(var(--shell), 100% - 2 * clamp(20px, 5vw, 60px));
  margin-inline: auto;
}
.shell--narrow { width: min(760px, 100% - 2 * clamp(20px, 5vw, 60px)); }

.section { padding: clamp(72px, 11vw, 150px) 0; position: relative; }
.section--tint { background: var(--bg-tint); }
.section--dark {
  position: relative;
  --bg: #1a2830;
  --surface: #22333d;
  --ink: #f4e8cf;
  --ink-soft: rgba(244, 232, 207, .72);
  --ink-faint: rgba(244, 232, 207, .45);
  --line: rgba(244, 232, 207, .17);
  background: var(--bg);
  color: var(--ink);
}
.section--dark::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 2px;
  background: var(--neon); opacity: .9;
}

.section-head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 76px); }
.section-head--split {
  display: grid; gap: clamp(20px, 4vw, 60px); max-width: none;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.1fr .9fr; align-items: end; }
}

.eyebrow {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .24em;
  color: var(--ink-faint); font-weight: 600; margin-bottom: 20px;
}

.section-title { font-size: clamp(2rem, 4.4vw, 3.35rem); margin-bottom: 22px; }
.section-lede { font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: var(--ink-soft); max-width: 62ch; }



/* --- Buttons -------------------------------------------------------------- */
.btn {
  --btn-pad: 15px 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--btn-pad);
  border: 1px solid transparent; border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  cursor: pointer; position: relative; isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background-color .3s var(--ease), border-color .3s var(--ease);
}
.btn--sm { --btn-pad: 10px 18px; font-size: 14px; }

.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: var(--neon); opacity: 0; transition: opacity .35s var(--ease);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: #fff; }
.btn--primary:hover::before { opacity: 1; }
.btn--primary:active { transform: translateY(0); }

.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; isolation: isolate;
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--header-bg);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  transition: background-color .35s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.site-header__inner {
  display: flex; align-items: center; gap: 28px;
  height: 68px;
}
.site-header.is-scrolled .site-header__inner { height: 60px; }
.site-header__inner, .site-header.is-scrolled .site-header__inner { transition: height .35s var(--ease); }

.brand { color: var(--ink); flex: none; }
/* --- Wordmark -------------------------------------------------------------- */
/* Two cuts of one mark: the drawn version for large sizes, and the outer
   contours of the same letterforms wherever the hairlines would alias away. */
.wordmark { display: block; width: auto; transition: color .3s var(--ease); }
.brand .wordmark { height: 22px; }
.brand:hover .wordmark { color: var(--violet); }


.nav { display: none; margin-inline: auto; gap: 30px; }
@media (min-width: 940px) { .nav { display: flex; } }
.nav a {
  font-size: 14.5px; color: var(--ink-soft); position: relative; padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--neon); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
@media (min-width: 940px) { .site-header__actions { margin-left: 0; } }

.theme-toggle {
  display: none; align-items: center; gap: 9px;
  padding: 8px 14px 8px 10px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; cursor: pointer;
  font-size: 13px; color: var(--ink-soft);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
@media (min-width: 360px) { .theme-toggle { display: inline-flex; } }
@media (max-width: 639px) { .theme-toggle { padding: 9px; } .theme-toggle__label { display: none; } }
.theme-toggle:hover { border-color: var(--ink); color: var(--ink); }
.theme-toggle__dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--neon);
  box-shadow: inset 0 0 0 0 var(--bg); transition: box-shadow .4s var(--ease);
}
[data-theme="dark"] .theme-toggle__dot { box-shadow: inset -4px -1px 0 0 var(--bg); }
.theme-toggle__label { min-width: 34px; text-align: left; }

.site-header .btn--primary { display: none; }
@media (min-width: 720px) { .site-header .btn--primary { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line); background: transparent; cursor: pointer;
}
@media (min-width: 940px) { .menu-toggle { display: none; } }
.menu-toggle__bars { position: relative; width: 18px; height: 12px; }
.menu-toggle__bars i {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), top .3s var(--ease), bottom .3s var(--ease);
}
.menu-toggle__bars i:first-child { top: 2px; }
.menu-toggle__bars i:last-child { bottom: 2px; }
.menu-toggle[aria-expanded="true"] i:first-child { top: 5px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:last-child { bottom: 5px; transform: rotate(-45deg); }

.mobile-nav {
  display: grid; gap: 2px; padding: 12px clamp(20px, 5vw, 60px) 24px;
  border-top: 1px solid var(--line); background: var(--bg);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 13px 0; font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.mobile-nav__cta { color: var(--violet); }

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; padding: clamp(40px, 5vw, 68px) 0 clamp(56px, 7vw, 96px); overflow: hidden; }
.hero__bg {
  position: absolute; inset: -10% -5% auto; height: 130%;
  opacity: var(--fan-opacity); pointer-events: none;
  mask-image: linear-gradient(to bottom, #000 25%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, #000 25%, transparent 92%);
}
@media (max-width: 900px) {
  .hero__bg { inset: auto -8% -4% -8%; height: 62%; opacity: calc(var(--fan-opacity) * .7); }
}
.fan { width: 100%; height: 100%; }
/* The box is stretched hard, so let the strokes opt out of the scaling and stay
   an even hairline at any size. */
.fan path { vector-effect: non-scaling-stroke; stroke-width: 1.6px; }
@media (max-width: 900px) { .fan path { stroke-width: 1.3px; } }
@media (max-width: 560px) { .fan path { stroke-width: 1.1px; } }

.hero__inner {
  position: relative; display: grid; gap: clamp(44px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.02fr .98fr; gap: clamp(40px, 5vw, 80px); }
}

.hero__title {
  font-size: clamp(2.7rem, 5.6vw, 4.6rem);
  line-height: .95; letter-spacing: -.042em; margin-bottom: 24px;
}
.hero__title span { display: block; }

.hero__lede { font-size: clamp(1rem, 1.25vw, 1.14rem); color: var(--ink-soft); max-width: 52ch; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
@media (max-width: 479px) { .hero__actions .btn { flex: 1 1 100%; } }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 28px;
  padding-top: 22px; border-top: 1px solid var(--line);
  list-style: none; padding-left: 0;
  font-size: 13.5px; color: var(--ink-faint);
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--neon);
}

/* --- Hero demo: the race --------------------------------------------------- */
.race {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.race::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--neon); }
.race__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 16px; margin-bottom: 18px; }
.race__head .eyebrow { margin-bottom: 0; }
.race__hint { font-size: 13.5px; color: var(--ink-soft); flex: 1 1 14ch; min-height: 2.6em; }

.race__track {
  position: relative; display: grid; gap: 8px;
  padding: 12px 12px 12px 0; border-radius: var(--radius);
  background: var(--surface-2); border: 1px solid var(--line-soft);
  overflow: hidden;
}
.race__finish {
  position: absolute; top: 0; bottom: 0; right: 10px; width: 6px; border-radius: 3px;
  background: repeating-linear-gradient(to bottom, var(--ink) 0 5px, transparent 5px 10px);
  opacity: .3;
}

.lane {
  position: relative; height: 34px; border-radius: 8px;
  background: linear-gradient(to right,
    color-mix(in srgb, var(--ink) 6%, transparent), transparent 22%);
}
.lane::after {
  content: ""; position: absolute; left: 56px; right: 16px; top: 50%; height: 1px;
  background: repeating-linear-gradient(to right, var(--line) 0 10px, transparent 10px 22px);
}
.lane__tag {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint); z-index: 2;
}

.car {
  --p: 0%;
  position: absolute; top: 50%; left: 56px; z-index: 3;
  width: calc(100% - 104px); pointer-events: none;
  transform: translateY(-50%);
}
.car i {
  display: block; position: relative; width: 30px; height: 15px;
  border-radius: 4px 9px 9px 4px; background: currentColor;
  margin-left: var(--p);
  transition: margin-left .06s linear;
}
.car--you { color: var(--magenta); }
.car--r1  { color: color-mix(in srgb, var(--violet) 62%, var(--ink-faint)); }
.car--r2  { color: color-mix(in srgb, var(--cyan) 55%, var(--ink-faint)); }
.car i::after {
  content: ""; position: absolute; right: 100%; top: 4px; height: 7px; width: 0;
  border-radius: 4px; opacity: 0;
  background: linear-gradient(to left, currentColor, transparent);
  transition: width .25s var(--ease), opacity .25s var(--ease);
}
.car.is-moving i::after { width: 28px; opacity: .55; }

.race__overlay {
  position: absolute; inset: 0; z-index: 4;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--surface-2) 78%, transparent);
  font-size: clamp(1.4rem, 3.4vw, 2rem); font-weight: 700; letter-spacing: -.03em;
  color: var(--ink);
}
.race__overlay[hidden] { display: none; }
.race__overlay.is-lost { color: var(--ink-faint); }
.race__overlay.is-beat { animation: beat .42s var(--ease); }
@keyframes beat { from { transform: scale(.86); opacity: .3; } }

.pad {
  position: relative; display: flex; align-items: center; justify-content: center;
  gap: 12px; width: 100%; margin-top: 14px; padding: 22px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background:
    radial-gradient(120% 100% at 50% 0%, color-mix(in srgb, var(--violet) 10%, transparent), transparent 70%),
    var(--surface-2);
  cursor: pointer; overflow: hidden;
  font-size: 17px; font-weight: 700; letter-spacing: -.02em;
  transition: transform .1s var(--ease), border-color .25s var(--ease);
  touch-action: manipulation; -webkit-user-select: none; user-select: none;
}
.pad:hover { border-color: var(--ink-faint); }
.pad__label, .pad__key { position: relative; z-index: 2; }
@media (max-width: 700px), (pointer: coarse) { .pad__key { display: none; } }
.pad__key {
  font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint);
  padding: 4px 8px; border: 1px solid var(--line); border-radius: 6px;
}
.pad__glow {
  position: absolute; inset: 0; background: var(--neon);
  opacity: 0; transform: scale(.8); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.pad.is-hit { transform: scale(.985); border-color: transparent; }
.pad.is-hit .pad__glow { opacity: .9; transform: scale(1); transition-duration: .03s; }
.pad.is-hit .pad__label { color: #fff; }
.race:not(.is-live) .pad__glow { animation: pad-idle 3s var(--ease) infinite; }
@keyframes pad-idle {
  0%, 70%, 100% { opacity: 0; transform: scale(.8); }
  14%           { opacity: .14; transform: scale(1); }
}

.race__stats { display: flex; gap: 26px; margin-top: 16px; }
.stat { display: grid; gap: 1px; }
.stat__v { font-size: 22px; font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stat__k { font-size: 10.5px; text-transform: uppercase; letter-spacing: .16em; color: var(--ink-faint); }

/* --- Strands --------------------------------------------------------------- */
.strands { display: grid; gap: 34px; }
@media (min-width: 760px) { .strands { grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); } }

.strand { display: flex; flex-direction: column; padding-top: 26px; border-top: 2px solid var(--ink); }
.strand__label {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .2em;
  font-weight: 600; color: var(--violet); margin-bottom: 18px;
}
.strand__title { font-size: clamp(1.3rem, 2vw, 1.55rem); margin-bottom: 12px; }
.strand__body { color: var(--ink-soft); font-size: 15.5px; }
.strand__cta {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 600; color: var(--violet); align-self: flex-start;
}
.strand__cta span { transition: transform .3s var(--ease); }
.strand__cta:hover span { transform: translateX(4px); }

/* --- Controllers ----------------------------------------------------------- */
.rig { list-style: none; padding: 0; display: grid; }
.rig__item {
  display: grid; gap: 4px 28px; align-items: baseline;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.rig:last-child .rig__item:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 760px) { .rig__item { grid-template-columns: 250px minmax(0, 1fr) 70px; } }
.rig__item h3 { font-size: 1.08rem; }
.rig__item p { font-size: 14.5px; color: var(--ink-soft); max-width: 52ch; }
.rig__state {
  font-size: 10.5px; letter-spacing: .18em; font-weight: 600;
  text-transform: uppercase; color: var(--violet);
}
@media (min-width: 760px) { .rig__state { text-align: right; } }

.feature {
  --bg: #1a2830; --ink: #f4e8cf;
  --ink-soft: rgba(244, 232, 207, .72); --ink-faint: rgba(244, 232, 207, .45);
  background: var(--bg); color: var(--ink);
  padding: clamp(56px, 8vw, 110px) 0; position: relative;
}
.feature::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 2px;
  background: var(--neon); opacity: .9;
}
.soundmap { display: grid; gap: clamp(24px, 4vw, 56px); align-items: center; }
@media (min-width: 860px) { .soundmap { grid-template-columns: 1.15fr .85fr; } }
.soundmap__title { font-size: clamp(1.6rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.soundmap__copy p { color: var(--ink-soft); max-width: 56ch; }
.soundmap__copy p + p { margin-top: 12px; }
.soundmap__art { color: var(--ink); }
.soundmap__art svg { width: 100%; height: auto; }

/* --- Stations -------------------------------------------------------------- */
.stations { list-style: none; padding: 0; display: grid; }
.station {
  display: grid; gap: 6px 28px; align-items: baseline;
  padding: clamp(24px, 3.4vw, 36px) 0; border-top: 1px solid var(--line);
}
.stations .station:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 760px) { .station { grid-template-columns: 60px minmax(0, 1fr) 190px; } }

.station__n { font-size: 1rem; font-weight: 700; color: var(--violet); letter-spacing: .02em; }
.station__body h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); margin-bottom: 8px; }
.station__body p { color: var(--ink-soft); max-width: 58ch; }
.station__meta {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint);
}
@media (min-width: 760px) { .station__meta { text-align: right; } }

.quiet { margin-top: clamp(44px, 6vw, 72px); padding-left: clamp(20px, 3vw, 32px); position: relative; }
.quiet::before {
  content: ""; position: absolute; left: 0; top: .1em; bottom: .1em; width: 3px; border-radius: 3px;
  background: linear-gradient(to bottom, var(--magenta), var(--violet) 55%, var(--cyan));
}
.quiet__line {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem); line-height: 1.32; letter-spacing: -.028em;
  font-weight: 600; max-width: 34ch; text-wrap: balance;
}

/* --- Ticker --------------------------------------------------------------- */
.ticker {
  background: var(--ink); color: var(--bg); overflow: hidden;
  padding: 13px 0; white-space: nowrap;
}
.ticker__track {
  display: inline-flex; animation: ticker 34s linear infinite;
  font-size: 13px; text-transform: uppercase; letter-spacing: .3em; font-weight: 600;
}
.ticker__track span { padding-right: 1.4em; }
.ticker__track b { color: var(--magenta); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* A band of the motif between sections, purely to keep the page moving. */
.flow-band {
  height: clamp(110px, 14vw, 180px); overflow: hidden; position: relative;
  background: linear-gradient(to bottom, var(--bg-tint), var(--bg));
}
.flow-band .fan {
  /* Framed on the part of the motif where the strands are open, not on the
     edge where they converge into one line. */
  position: absolute; top: -50%; left: 0; right: 0; bottom: auto; height: 420%;
  opacity: var(--fan-opacity);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

/* --- Statement bands -------------------------------------------------------- */
.statement { padding: clamp(56px, 8vw, 110px) 0; background: var(--bg-tint); }
.statement__line {
  font-size: clamp(1.35rem, 3.2vw, 2.35rem); line-height: 1.3; letter-spacing: -.03em;
  font-weight: 600; text-wrap: balance; max-width: 26ch;
}

/* The one place the identity's colour carries a whole ground rather than a hairline. */
.statement--loud {
  background: linear-gradient(105deg, var(--magenta), var(--violet) 52%, var(--cyan));
  color: #fff; position: relative; overflow: hidden;
}
.statement--loud .eyebrow { color: rgba(255, 255, 255, .7); }
.statement--loud .statement__line {
  max-width: 26ch; font-weight: 700; letter-spacing: -.04em;
  font-size: clamp(1.7rem, 5.2vw, 3.6rem); line-height: 1.14;
}

/* --- Mini-games ------------------------------------------------------------ */
.split {
  margin-top: clamp(30px, 4vw, 48px);
  display: grid; gap: clamp(24px, 4vw, 48px); align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: .92fr 1.08fr; }
  .split--reverse .split__copy { order: 2; }
}
.split__title { font-size: clamp(1.3rem, 2.4vw, 1.75rem); margin-bottom: 14px; }
.split__copy p { color: var(--ink-soft); max-width: 50ch; }
.split__copy p + p { margin-top: 12px; }

.mini {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(18px, 2.6vw, 26px);
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.mini::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--neon); }
.mini__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; margin-bottom: 16px; }
.mini__head .eyebrow { margin-bottom: 0; }
.mini__hint { font-size: 13.5px; color: var(--ink-soft); flex: 1 1 14ch; min-height: 2.6em; }
.mini__bar { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 16px; }
.mini__stats { display: flex; gap: 24px; margin-left: auto; }
.mini__foot { margin-top: 14px; font-size: 13px; color: var(--ink-faint); font-variant-numeric: tabular-nums; }

.lanes {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  height: 210px; padding: 0; border-radius: var(--radius);
  background: var(--surface-2); border: 1px solid var(--line-soft); overflow: hidden;
}
.lanes__line {
  position: absolute; left: 0; right: 0; bottom: 38px; height: 2px; z-index: 2;
  background: var(--neon); opacity: .55;
}
.lanes__col {
  position: relative; border: 0; background: transparent; cursor: pointer;
  border-right: 1px dashed var(--line-soft);
  touch-action: manipulation; -webkit-user-select: none; user-select: none;
}
.lanes__col:last-child { border-right: 0; }
.lanes__col.is-hit { background: color-mix(in srgb, var(--violet) 12%, transparent); }
.lanes__key {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  color: var(--ink-faint); pointer-events: none;
}
.lanes.is-live .lanes__key { color: var(--ink-soft); }
@media (pointer: coarse) { .lanes__key { display: none; } }

.block {
  --t: 0;
  position: absolute; left: 50%; top: 0; z-index: 1;
  width: 66%; height: 16px; margin-left: -33%; border-radius: 5px;
  background: var(--magenta);
  transform: translateY(calc(var(--t) * (210px - 38px - 16px)));
}
.block.is-caught { background: var(--cyan); opacity: 0; transform: translateY(150px) scale(1.5); transition: all .2s var(--ease); }
.block.is-lost { background: var(--ink-faint); opacity: .35; }

.fastest__face {
  border-radius: var(--radius); background: var(--surface-2);
  border: 1px solid var(--line-soft); padding: 22px; text-align: center;
}
.fastest__count {
  font-size: clamp(3rem, 9vw, 4.6rem); font-weight: 700; line-height: 1;
  letter-spacing: -.05em; font-variant-numeric: tabular-nums;
}
.fastest__tier {
  margin-top: 6px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; color: var(--violet);
}
.fastest__clock {
  margin-top: 18px; height: 4px; border-radius: 4px;
  background: color-mix(in srgb, var(--ink) 10%, transparent); overflow: hidden;
}
.fastest__clock i { display: block; height: 100%; width: 0%; background: var(--neon); }
.mini--fastest .pad--sm { padding: 16px; margin-top: 12px; }

/* --- Page heads (games, products, hosting, events) -------------------------- */
.page-head { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 56px); }
.page-head__bg {
  position: absolute; inset: -20% -5% auto; height: 150%; opacity: var(--fan-opacity);
  pointer-events: none;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent 92%);
}
@media (max-width: 900px) { .page-head__bg { opacity: calc(var(--fan-opacity) * .7); } }
.page-head__inner { position: relative; }
.page-title { font-size: clamp(2.5rem, 6vw, 4.4rem); letter-spacing: -.042em; margin-bottom: 22px; }
.page-title--sm { font-size: clamp(1.9rem, 4.2vw, 3rem); }
.page-lede { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--ink-soft); max-width: 56ch; }
.page-fine { margin-top: 28px; font-size: 13.5px; color: var(--ink-faint); }
.page-head__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.section--top { padding-top: clamp(24px, 3vw, 40px); }

/* --- Featured game --------------------------------------------------------- */
.hero-game {
  display: grid; gap: clamp(24px, 4vw, 48px); align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: calc(var(--radius) + 8px);
  background: #1a2830; color: #f4e8cf;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
@media (min-width: 860px) { .hero-game { grid-template-columns: 1.05fr .95fr; } }
.hero-game::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--neon); }
.hero-game:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hero-game__kind {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; color: var(--cyan); margin-bottom: 16px;
}
.hero-game__name { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.04em; margin-bottom: 16px; }
.hero-game__blurb { font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(244,232,207,.75); max-width: 48ch; }
.hero-game__foot { display: grid; gap: 10px; margin-top: 26px; }
.hero-game__foot .game__players { color: rgba(244,232,207,.5); }
.hero-game__foot .chip { border-color: rgba(244,232,207,.25); color: rgba(244,232,207,.6); }
.hero-game__cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  font-size: 15px; font-weight: 700; color: #fff;
}
.hero-game__cta span { transition: transform .3s var(--ease); }
.hero-game:hover .hero-game__cta span { transform: translateX(5px); }
.hero-game__art { color: #f4e8cf; }
.hero-game__art svg { width: 100%; height: auto; }

/* --- Game catalogue --------------------------------------------------------- */
.games { list-style: none; padding: 0; display: grid; gap: 16px; }
@media (min-width: 720px) { .games { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .games { grid-template-columns: repeat(3, 1fr); } }

.game { display: flex; }
.game__link {
  display: flex; flex-direction: column; width: 100%;
  padding: clamp(22px, 2.6vw, 28px);
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.game__link:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--violet); }
.game__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.game__kind {
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  color: var(--violet);
}
.game__arrow { color: var(--ink-faint); transition: transform .3s var(--ease), color .3s var(--ease); }
.game__link:hover .game__arrow { transform: translate(3px, -3px); color: var(--violet); }
.game__name { font-size: 1.35rem; margin-bottom: 10px; }
.game__blurb { color: var(--ink-soft); font-size: 15px; }

.game__contains { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.game__contains span {
  font-size: 12px; color: var(--ink-soft);
  padding: 4px 9px; border-radius: 6px;
  background: color-mix(in srgb, var(--ink) 6%, transparent);
}
.game__foot {
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line-soft);
  display: grid; gap: 10px;
}
.game__players { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.game__inputs { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 11px; letter-spacing: .04em; color: var(--ink-faint);
  padding: 3px 8px; border: 1px solid var(--line); border-radius: 999px;
}
.games__note { margin-top: 34px; font-size: 14px; color: var(--ink-faint); max-width: 60ch; }

/* --- Products strip (home) -------------------------------------------------- */
.strip { list-style: none; padding: 0; display: grid; }
.strip__item { border-top: 1px solid var(--line); }
.strip:last-of-type .strip__item:last-child { border-bottom: 1px solid var(--line); }
.strip__item a {
  display: grid; gap: 4px 28px; align-items: baseline; padding: 22px 0;
  transition: padding .3s var(--ease);
}
@media (min-width: 760px) { .strip__item a { grid-template-columns: 250px minmax(0, 1fr) 30px; } }
.strip__item a:hover { padding-left: 10px; }
.strip__name { font-size: 1.25rem; font-weight: 700; letter-spacing: -.02em; }
.strip__detail { font-size: 14.5px; color: var(--ink-soft); max-width: 52ch; }
.strip__go { color: var(--violet); font-weight: 600; }
@media (min-width: 760px) { .strip__go { text-align: right; } }
.strip__more { margin-top: 26px; font-size: 14.5px; font-weight: 600; }
.strip__more a { color: var(--violet); }

/* --- Products page ---------------------------------------------------------- */
.rank-label {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .24em;
  font-weight: 600; color: var(--violet); margin-bottom: 22px;
}
.rank-label--quiet { color: var(--ink-faint); margin-top: clamp(48px, 7vw, 84px); }

.rank { display: grid; gap: 18px; }
@media (min-width: 820px) { .rank { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.product {
  display: flex; flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--violet); }
.product__head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 14px; }
.product__name { font-size: 1.5rem; }
.product__body { color: var(--ink-soft); font-size: 15.5px; }
.product__cta {
  margin-top: auto; padding-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 600; color: var(--violet);
}
.product__cta span { transition: transform .3s var(--ease); }
.product__cta:hover span { transform: translateX(4px); }

.soon { list-style: none; padding: 0; display: grid; }
.soon__item {
  display: grid; gap: 4px 28px; align-items: baseline;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.soon__item:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 760px) { .soon__item { grid-template-columns: 220px minmax(0, 1fr) auto; } }
.soon__name { font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink-soft); }
.soon__body { font-size: 14.5px; color: var(--ink-faint); max-width: 52ch; }
.soon__link { font-size: 13.5px; font-weight: 600; color: var(--violet); display: inline-flex; gap: 6px; }
.soon__tag { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }

.tag {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  padding: 4px 9px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-faint);
}
.tag--live { border-color: transparent; background: var(--violet); color: #fff; }

/* --- Hosting ---------------------------------------------------------------- */
.formats { list-style: none; padding: 0; display: grid; }
.format {
  display: grid; gap: 6px 28px; align-items: baseline;
  padding: clamp(22px, 3vw, 32px) 0; border-top: 1px solid var(--line);
}
.formats .format:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 760px) { .format { grid-template-columns: 56px minmax(0, 1fr) 170px; } }
.format__n { font-weight: 700; color: var(--violet); }
.format__body h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); margin-bottom: 8px; }
.format__body p { color: var(--ink-soft); max-width: 56ch; }
.format__meta { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
@media (min-width: 760px) { .format__meta { text-align: right; } }

.kit { display: grid; gap: clamp(28px, 5vw, 64px); }
@media (min-width: 800px) { .kit { grid-template-columns: 1fr 1fr; } }
.kit__list { list-style: none; padding: 0; display: grid; gap: 14px; }
.kit__list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; color: var(--ink-soft);
  padding-bottom: 14px; border-bottom: 1px solid var(--line-soft);
}
.kit__list li:last-child { border-bottom: 0; }
.kit__list li::before { flex: none; font-weight: 700; }
.kit__list--yes li::before { content: "+"; color: var(--violet); }
.kit__list--need li::before { content: "·"; color: var(--ink-faint); }

.enquiry { margin-top: clamp(24px, 4vw, 36px); }
.enquiry .btn { margin-top: 22px; }
.enquiry select {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface-2); color: var(--ink);
  font-size: 15px; appearance: none; cursor: pointer;
}
.enquiry select:focus { outline: none; border-color: var(--violet); }

/* --- Notices --------------------------------------------------------------- */
.notice {
  padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px;
  border: 1px solid var(--line); background: var(--surface);
  font-size: 14.5px; color: var(--ink-soft);
}
.notice--error { border-color: var(--magenta); color: var(--ink); }
.notice--success { border-color: var(--violet); color: var(--ink); }

/* --- Events listing --------------------------------------------------------- */
.event {
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  background: var(--surface); margin-bottom: 20px;
}
.event__head {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: flex-end; justify-content: space-between; margin-bottom: 14px;
}
.event__head .eyebrow { margin-bottom: 10px; }
.event__name { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.event__tagline { color: var(--ink-soft); margin-top: 8px; }
.event__where { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.event__body { color: var(--ink-soft); max-width: 62ch; margin-bottom: 22px; }

.tickets { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.ticket {
  display: grid; gap: 2px; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface-2); min-width: 130px;
}
.ticket__name { font-size: 14px; font-weight: 600; }
.ticket__price { font-size: 18px; font-weight: 700; letter-spacing: -.02em; color: var(--violet); }
.ticket__note { font-size: 12px; color: var(--ink-faint); }

.slots { list-style: none; padding: 0; display: grid; }
.slot {
  display: grid; gap: 6px 20px; align-items: center;
  padding: 18px 0; border-top: 1px solid var(--line);
}
.slot:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 780px) { .slot { grid-template-columns: 150px minmax(0,1fr) 160px auto; } }
.slot--closed { opacity: .55; }
.slot__when { display: grid; gap: 2px; }
.slot__day { font-weight: 700; letter-spacing: -.01em; }
.slot__time { font-size: 13px; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.slot__what h3 { font-size: 1.05rem; }
.slot__where { font-size: 13.5px; color: var(--ink-faint); margin-top: 3px; }
.slot__meta { display: flex; gap: 12px; align-items: baseline; }
@media (min-width: 780px) { .slot__meta { display: grid; gap: 2px; justify-items: end; } }
.slot__price { font-weight: 600; }
.slot__spots { font-size: 12.5px; color: var(--ink-faint); }
.slot__free { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--violet); }
.slot__spots--low { color: var(--magenta); }
.slot__spots--none { color: var(--ink-faint); }
.slot__cta { justify-self: start; }
@media (min-width: 780px) { .slot__cta { justify-self: end; } }
.is-disabled { pointer-events: none; opacity: .6; }

.empty {
  padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px); background: var(--surface);
}
.empty__title { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.empty p { color: var(--ink-soft); max-width: 56ch; }
.empty__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.past { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.past ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.past li { font-size: 14px; color: var(--ink-faint); }
.past li span { display: inline-block; min-width: 100px; color: var(--ink-soft); }

/* --- Next dates on the home page -------------------------------------------- */
.dates { list-style: none; padding: 0; display: grid; gap: 12px; margin-top: clamp(28px, 4vw, 40px); }
@media (min-width: 760px) { .dates { grid-template-columns: repeat(2, 1fr); } }
.date {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--surface);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.date:hover { transform: translateY(-3px); border-color: var(--violet); }
.date__when { display: grid; gap: 1px; flex: none; min-width: 76px; }
.date__d { font-weight: 700; letter-spacing: -.01em; }
.date__t { font-size: 12.5px; color: var(--ink-faint); }
.date__what { flex: 1; min-width: 0; }
.date__what h3 { font-size: 1rem; margin-bottom: 2px; }
.date__what p { font-size: 13px; color: var(--ink-faint); }
.date__go { font-size: 13.5px; font-weight: 600; color: var(--violet); flex: none; }
.dates__more { margin-top: 18px; font-size: 14.5px; font-weight: 600; }
.dates__more a { color: var(--violet); }

/* --- Booking progress ------------------------------------------------------- */
.progress {
  list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 10px;
  margin-bottom: clamp(24px, 3vw, 34px);
}
.progress__step {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-faint); padding-right: 10px;
}
.progress__step:not(:last-child)::after {
  content: ""; width: clamp(14px, 4vw, 34px); height: 1px; background: var(--line);
}
.progress__dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid var(--ink-faint); background: transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.progress__step.is-done { color: var(--ink-soft); }
.progress__step.is-done .progress__dot { background: var(--violet); border-color: transparent; }
.progress__step.is-now { color: var(--ink); }
.progress__step.is-now .progress__dot { background: var(--magenta); box-shadow: 0 0 0 4px color-mix(in srgb, var(--magenta) 18%, transparent); }

/* --- Booking form ----------------------------------------------------------- */
.booking { margin-top: clamp(28px, 4vw, 44px); display: grid; gap: 18px; }
.field-set {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: clamp(20px, 3vw, 28px); margin: 0;
}
.field-set__legend {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .2em;
  font-weight: 600; color: var(--ink-faint); padding: 0 8px; margin-left: -8px;
}
.field-set__hint { margin-top: 12px; font-size: 13.5px; color: var(--ink-faint); }

.options { display: grid; gap: 10px; margin-top: 6px; }
.option {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface-2);
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.option:hover { border-color: var(--ink-faint); }
.option:has(input:checked) { border-color: var(--violet); }
.option input { accent-color: var(--violet); width: 18px; height: 18px; flex: none; }
.option__body { display: grid; gap: 2px; flex: 1; }
.option__name { font-weight: 600; }
.option__note, .option__people { font-size: 13px; color: var(--ink-faint); }
.option__price { font-size: 18px; font-weight: 700; letter-spacing: -.02em; }

.stepper { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.stepper span { font-size: 14.5px; color: var(--ink-soft); }
.stepper input, .code-row input, .field-row input, .field-row textarea {
  padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface-2); color: var(--ink);
  font-size: 15px; width: 100%;
  transition: border-color .25s var(--ease);
}
.stepper input { width: 100px; font-variant-numeric: tabular-nums; }
.stepper input:focus, .code-row input:focus,
.field-row input:focus, .field-row textarea:focus { outline: none; border-color: var(--violet); }

.field-grid { display: grid; gap: 14px; margin-top: 6px; }
@media (min-width: 620px) { .field-grid { grid-template-columns: 1fr 1fr; } }
.field-row { display: grid; gap: 6px; }
.field-row--wide { grid-column: 1 / -1; }
.field-row > span { font-size: 13.5px; color: var(--ink-soft); }
.field-row > span i { color: var(--ink-faint); font-style: normal; }

.code-row { display: flex; gap: 10px; margin-top: 6px; }
.code-row input { text-transform: uppercase; }
.code-status { margin-top: 10px; font-size: 13.5px; min-height: 1.4em; color: var(--ink-faint); }
.code-status.is-ok { color: var(--violet); font-weight: 600; }
.code-status.is-error { color: var(--magenta); }

.summary {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: clamp(20px, 3vw, 28px);
}
.summary__row { display: flex; justify-content: space-between; gap: 20px; padding: 7px 0; font-size: 15px; color: var(--ink-soft); }
.summary__row--discount { color: var(--violet); font-weight: 600; }
.summary__row--total {
  margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 20px; font-weight: 700; letter-spacing: -.02em; color: var(--ink);
}
.summary__note { font-size: 13px; color: var(--ink-faint); margin-bottom: 18px; }
.summary .btn { width: 100%; }
.summary__fine { margin-top: 12px; font-size: 12.5px; color: var(--ink-faint); text-align: center; }

/* --- Payment ---------------------------------------------------------------- */
.receipt {
  margin-top: 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: clamp(20px, 3vw, 28px);
}
.receipt__row { display: flex; justify-content: space-between; gap: 20px; padding: 6px 0; font-size: 15px; }
.receipt__row--soft { color: var(--ink-faint); font-size: 13.5px; padding-top: 0; }
.receipt__row--discount { color: var(--violet); font-weight: 600; }
.receipt__row--total {
  margin-top: 10px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 19px; font-weight: 700; letter-spacing: -.02em;
}

.pay-options { display: grid; gap: 12px; margin-top: 24px; }
.pay-option {
  width: 100%; text-align: left; cursor: pointer; display: grid; gap: 5px;
  padding: 20px 24px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.pay-option:hover { transform: translateY(-2px); border-color: var(--violet); box-shadow: var(--shadow); }
.pay-option--primary { border-color: transparent; background-image: var(--neon); color: #fff; }
.pay-option--primary:hover { border-color: transparent; }
.pay-option__name { font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.pay-option__note { font-size: 13.5px; opacity: .8; }
.pay-hold { margin-top: 18px; font-size: 13px; color: var(--ink-faint); text-align: center; }

/* --- Booking stub ----------------------------------------------------------- */
.ticketstub {
  margin-top: 32px; border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  background: var(--surface); overflow: hidden; position: relative;
}
.ticketstub::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--neon); }
.ticketstub__top {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px;
  padding: clamp(22px, 3vw, 28px); border-bottom: 1px dashed var(--line);
}
.ticketstub__label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }
.ticketstub__ref { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 700; letter-spacing: .04em; margin-left: auto; }
.ticketstub__grid { display: grid; gap: 18px; padding: clamp(22px, 3vw, 28px); margin: 0; }
@media (min-width: 620px) { .ticketstub__grid { grid-template-columns: 1fr 1fr; } }
.ticketstub__grid dt { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 5px; }
.ticketstub__grid dd { margin: 0; font-size: 15px; font-weight: 600; }
.ticketstub__foot {
  padding: 0 clamp(22px, 3vw, 28px) clamp(22px, 3vw, 28px);
  font-size: 13.5px; color: var(--violet);
}

/* --- FAQ ------------------------------------------------------------------ */
.faq { display: grid; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font-size: clamp(1.05rem, 2vw, 1.28rem); font-weight: 600; letter-spacing: -.02em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i {
  flex: none; position: relative; width: 16px; height: 16px;
}
.faq__item summary i::before, .faq__item summary i::after {
  content: ""; position: absolute; inset: 50% 0 auto; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .35s var(--ease);
}
.faq__item summary i::after { transform: rotate(90deg); }
.faq__item[open] summary i::after { transform: rotate(0); }
.faq__answer { padding-bottom: 26px; }
.faq__answer p { color: var(--ink-soft); max-width: 66ch; }
.faq__item[open] .faq__answer { animation: panel-in .45s var(--ease) both; }

/* --- CTA ------------------------------------------------------------------ */
.cta {
  position: relative; overflow: hidden;
  padding: clamp(76px, 11vw, 140px) 0;
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
}
.cta__bg {
  position: absolute; inset: -20% -5%; opacity: var(--fan-opacity); pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 78%);
}
.cta__inner { position: relative; text-align: center; }
.cta__inner .eyebrow { margin-inline: auto; }
.cta__title { font-size: clamp(2.1rem, 5vw, 3.6rem); margin-bottom: 20px; text-wrap: balance; }
.cta__lede { color: var(--ink-soft); font-size: clamp(1rem, 1.5vw, 1.15rem); margin-inline: auto; max-width: 52ch; }

.signup { margin-top: 40px; }
.signup__row {
  display: grid; gap: 10px;
  padding: 10px; border-radius: calc(var(--radius) + 6px);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
}
@media (min-width: 720px) { .signup__row { grid-template-columns: 1fr auto auto; align-items: center; } }
.signup__row[hidden] { display: none; }

.field input, .field select {
  width: 100%; padding: 14px 18px; border-radius: var(--radius);
  border: 1px solid transparent; background: transparent; color: var(--ink);
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.field input::placeholder { color: var(--ink-faint); }
.field input:focus { outline: none; border-color: var(--violet); }
.field--select { position: relative; }
.field--select::after {
  content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px;
  border-right: 1.6px solid var(--ink-faint); border-bottom: 1.6px solid var(--ink-faint);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer;
  border-color: var(--line-soft); font-size: 15px; color: var(--ink-soft);
}
.field select:focus { outline: none; border-color: var(--violet); }
.signup .btn { width: 100%; }
@media (min-width: 720px) { .signup .btn { width: auto; } }

.signup__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.signup__note { margin-top: 16px; font-size: 13px; color: var(--ink-faint); }
.signup__status { margin-top: 10px; font-size: 14.5px; font-weight: 600; min-height: 1.5em; }
.signup__status.is-error { color: var(--magenta); }
.signup__status.is-ok { color: var(--violet); }

/* --- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--ink); color: var(--bg);
  padding: clamp(56px, 8vw, 92px) 0 34px;
  overflow: hidden;
}
.site-footer__mark { margin-bottom: clamp(36px, 6vw, 60px); opacity: .95; }
.site-footer__mark .wordmark { width: 100%; height: auto; color: var(--bg); }

.site-footer__grid { display: grid; gap: 34px; padding-bottom: 40px; }
@media (min-width: 760px) { .site-footer__grid { grid-template-columns: 1.6fr .7fr .7fr; gap: 40px; } }
.site-footer__line { font-size: 1.05rem; line-height: 1.5; opacity: .85; max-width: 34ch; }
.site-footer .eyebrow { color: currentColor; opacity: .45; margin-bottom: 14px; }
.site-footer nav, .site-footer__grid > div { display: grid; align-content: start; gap: 9px; }
.site-footer a { font-size: 14.5px; opacity: .8; transition: opacity .25s var(--ease); width: fit-content; }
.site-footer a:hover { opacity: 1; }

.site-footer__legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  padding-top: 24px; border-top: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  font-size: 12.5px; opacity: .55;
}

/* --- Reveal on scroll ----------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease) var(--d, 0ms), transform .8s var(--ease) var(--d, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
