/* ============================================================
   DMATICS x GISEC 2026, standalone page styles
   Built for Aban. Temporary, remove after the show.

   Deliberately self contained rather than extending main.css:
   this page has its own layout language and gets deleted whole
   after 18 September. Tokens below are copied from main.css so
   the brand still matches exactly.
   ============================================================ */

:root {
  --void: #131316;
  --carbon: #1a1a1f;
  --graphite: #222228;
  --line: #4b4b53;
  --line-soft: #3a3a40;
  --steel: #ccccd6;
  --steel-dim: #5c5c66;
  --white: #f2f2f5;
  --signal: #e5484d;
  --font-display: "Archivo", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --max-w: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-booting { overflow: hidden; }

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

/* Any author `display` beats the UA stylesheet's [hidden] rule, and this
   page hides things with `hidden` in three places (page states, day
   panels, the Konami overlay). Without this the overlay shows on load
   and the wrong page state renders. Keep it. */
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--signal); color: #fff; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.h-sec {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  margin-bottom: 18px;
}

.sec { padding: clamp(64px, 9vw, 120px) 0; border-top: 1px solid var(--line-soft); }
.sec-lead { color: var(--steel); max-width: 62ch; margin-bottom: 32px; }

.lnk {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--signal);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}
.lnk:hover { border-color: var(--signal); }
.lnk[aria-disabled="true"] { color: var(--steel-dim); cursor: not-allowed; }

/* ---------- Boot sequence ---------- */

.boot {
  position: fixed; inset: 0; z-index: 200;
  background: #000;
  display: grid; place-items: center;
  transition: opacity 0.5s var(--ease);
}
.boot.is-done { opacity: 0; pointer-events: none; }
.boot-inner { font-family: var(--font-mono); font-size: 0.9rem; letter-spacing: 0.18em; }
.boot-line {
  color: var(--steel);
  opacity: 0;
  animation: bootIn 0.3s var(--ease) forwards;
}
.boot-line:nth-child(2) { animation-delay: 0.35s; }
.boot-line:nth-child(3) { animation-delay: 0.7s; }
.boot-grant { color: var(--signal); }
@keyframes bootIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Signal meter ---------- */

.meter {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 120; background: transparent;
}
.meter-fill {
  display: block; height: 100%;
  width: calc(var(--progress, 0) * 100%);
  background: var(--signal);
  box-shadow: 0 0 12px rgba(229, 72, 77, 0.6);
}
.meter.is-complete .meter-fill { background: #4ade80; box-shadow: 0 0 12px rgba(74, 222, 128, 0.6); }

/* ---------- Ticker ---------- */

.ticker {
  position: sticky; top: 0; z-index: 110;
  background: #000;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--steel);
  padding: 9px 0;
}
.ticker-track { display: flex; width: max-content; animation: tick 44s linear infinite; }
.ticker-set { display: inline-flex; align-items: center; white-space: nowrap; }
.ticker-set b { color: var(--signal); font-weight: 600; }
.ticker-set i { display: inline-block; width: 6px; height: 6px; margin: 0 22px; background: var(--line); border-radius: 50%; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Sticky badge ---------- */

.sticky-badge {
  position: fixed; right: 24px; bottom: 24px; z-index: 115;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  background: rgba(16, 16, 20, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.sticky-badge.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.sticky-badge b { color: var(--signal); }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(229, 72, 77, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(229, 72, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 72, 77, 0); }
}

/* ---------- Sound toggle ---------- */

.sound {
  position: fixed; left: 24px; bottom: 24px; z-index: 115;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(16, 16, 20, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.sound-bars { display: flex; align-items: flex-end; gap: 3px; height: 14px; }
.sound-bars i { width: 3px; height: 5px; background: var(--steel-dim); transition: height 0.2s var(--ease), background 0.2s; }
.sound.is-on .sound-bars i { background: var(--signal); }
.sound.is-on .sound-bars i:nth-child(1) { height: 8px; }
.sound.is-on .sound-bars i:nth-child(2) { height: 14px; }
.sound.is-on .sound-bars i:nth-child(3) { height: 10px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: clamp(72px, 10vw, 130px) 0;
  overflow: hidden;
}
.mesh { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.62;
  /* Fallback frame shows immediately, before any sequence frame loads and
     as the only image under reduced motion. */
  background: #0a0a0c url("hero/hero-fallback.webp") center / cover no-repeat;
}
/* Keeps the headline readable over the footage without dimming the whole
   frame flat. */
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,12,0.92) 0%, rgba(10,10,12,0.72) 42%, rgba(10,10,12,0.25) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(229, 72, 77, 0.10), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; }

.gsec-logo {
  display: inline-block;
  margin-bottom: 34px;
  transition: opacity 0.25s var(--ease);
}
.gsec-logo img { height: clamp(52px, 5.2vw, 78px); width: auto; }
.gsec-logo:hover { opacity: 0.75; }

.kicker {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 26px;
}
.kicker i { color: var(--signal); font-style: normal; margin: 0 6px; }

.hero-h { margin-bottom: 26px; }
.hero-h-line { display: block; font-size: clamp(1.5rem, 3.4vw, 2.6rem); color: var(--steel); }
.booth-no {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 19vw, 15rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--white);
  text-shadow: 0 0 60px rgba(229, 72, 77, 0.25);
}
.hero-h-sub { color: var(--signal); }

.hero-copy { color: var(--steel); max-width: 56ch; margin-bottom: 32px; font-size: 1.05rem; }

/* ---------- Countdown ---------- */

.countdown { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.cd-cell {
  min-width: 78px; padding: 12px 14px;
  background: var(--carbon);
  border: 1px solid var(--line-soft);
  text-align: center;
}
.cd-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.9rem;
  font-variant-numeric: tabular-nums;
}
.cd-lab {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--steel-dim);
}
.cd-note {
  flex-basis: 100%;
  font-family: var(--font-mono);
  font-size: 0.72rem; color: var(--steel-dim);
  letter-spacing: 0.06em;
}
.countdown.is-open .cd-cell { opacity: 0.4; }

.live-flag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; margin-bottom: 30px;
  border: 1px solid var(--signal);
  background: rgba(229, 72, 77, 0.08);
  font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.1em;
}

/* ---------- CTAs ---------- */

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px;
  font-family: var(--font-mono);
  font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--signal); color: var(--signal); }

/* Pending state, shown while a link is still unsupplied. */
.is-pending { opacity: 0.45; cursor: not-allowed; pointer-events: none; position: relative; }
.is-pending::after {
  content: "link pending";
  position: absolute; left: 0; right: 0; bottom: -20px;
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--steel-dim); text-align: center;
}

/* Ticket style pass button */
.ticket {
  position: relative;
  display: inline-flex; align-items: stretch;
  background: var(--white); color: #101014;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  transform-style: preserve-3d;
  overflow: hidden;
}
.ticket::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: -60%;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.85), transparent);
  transition: left 0.6s var(--ease);
}
.ticket:hover { transform: translateY(-3px) rotate(-0.6deg); box-shadow: 0 14px 40px rgba(0,0,0,0.5); }
.ticket:hover::before { left: 120%; }
.ticket-main { padding: 13px 22px; display: flex; flex-direction: column; justify-content: center; }
.ticket-lab {
  font-family: var(--font-mono); font-size: 0.56rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: #6b6b75;
}
.ticket-txt { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.ticket-stub {
  display: flex; align-items: center; padding: 0 14px;
  border-left: 2px dashed #b9b9c2;
}
.barcode {
  display: block; width: 26px; height: 30px;
  background: repeating-linear-gradient(90deg, #101014 0 2px, transparent 2px 4px, #101014 4px 5px, transparent 5px 8px);
}
.ticket.is-torn { animation: tear 0.4s var(--ease) forwards; }
@keyframes tear {
  50% { transform: translateY(-2px) rotate(-2deg) scale(0.985); }
  100% { transform: none; }
}

/* ---------- Cards ---------- */

.cards-3, .cards-2 { display: flex; flex-wrap: wrap; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.cards-3 > * { flex: 1 1 300px; }
.cards-2 > * { flex: 1 1 380px; }

.vcard, .wcard { background: var(--carbon); padding: 34px 30px; transition: background 0.3s var(--ease); }
.vcard:hover, .wcard:hover { background: var(--graphite); }
.vcard h3, .wcard h3 { font-size: 1.15rem; margin-bottom: 10px; }
.vcard p, .wcard p { color: var(--steel); font-size: 0.95rem; margin-bottom: 16px; }
.vcard-n {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.2em; color: var(--signal); margin-bottom: 16px;
}
.cards-2 { margin-bottom: 26px; }

/* ---------- Arcade band ----------
   The only place on this page where the cabinet palette appears.
   Framed as a screen you are looking at, so it reads as a device
   rather than a change of brand. */

.arcade {
  position: relative;
  background: #08080a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.arcade .wrap { position: relative; z-index: 2; }
.scanlines {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(0,0,0,0.28) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
}
.arcade-sub {
  font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.12em; color: var(--steel-dim); margin-bottom: 40px;
}

.cabs { display: flex; flex-wrap: wrap; gap: 20px; }
.cab { flex: 1 1 280px; }
.cab-screen {
  position: relative;
  padding: 30px 26px 26px;
  border: 2px solid var(--cab);
  border-radius: 14px / 20px;   /* slight screen curvature */
  background:
    radial-gradient(ellipse at 50% 40%, color-mix(in srgb, var(--cab) 14%, transparent), transparent 70%),
    #0b0b0e;
  box-shadow: inset 0 0 40px color-mix(in srgb, var(--cab) 18%, transparent);
  overflow: hidden;
  min-height: 230px;
  animation: attract 4s ease-in-out infinite;
}
.cab-phish  { --cab: #fb7185; }
.cab-alert  { --cab: #a3e635; }
.cab-breach { --cab: #a78bfa; }

@keyframes attract {
  0%, 100% { box-shadow: inset 0 0 40px color-mix(in srgb, var(--cab) 14%, transparent); }
  50%      { box-shadow: inset 0 0 62px color-mix(in srgb, var(--cab) 30%, transparent); }
}
.cab:nth-child(2) .cab-screen { animation-delay: 1.3s; }
.cab:nth-child(3) .cab-screen { animation-delay: 2.6s; }

.cab-num {
  position: absolute; top: 10px; right: 18px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 3.4rem; line-height: 1;
  color: color-mix(in srgb, var(--cab) 20%, transparent);
  pointer-events: none;
}
.cab-eyebrow {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cab); opacity: 0.75; margin-bottom: 6px;
}
.cab-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; color: var(--cab);
  text-shadow: 0 0 18px color-mix(in srgb, var(--cab) 45%, transparent);
  margin-bottom: 8px;
}
.cab-tag { color: var(--steel); font-size: 0.92rem; margin-bottom: 18px; }
.cab-score {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel-dim);
}
.cab-score span { color: var(--cab); }

.stamp {
  position: absolute; inset: 0; z-index: 4;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; letter-spacing: 0.06em;
  color: var(--signal);
  border: 4px solid var(--signal);
  background: rgba(8, 8, 10, 0.82);
  opacity: 0; transform: scale(1.6) rotate(-9deg);
  pointer-events: none;
}
.cab.is-stamped .stamp { animation: stampIn 1.4s var(--ease) forwards; }
@keyframes stampIn {
  0%   { opacity: 0; transform: scale(1.6) rotate(-9deg); }
  18%  { opacity: 1; transform: scale(1) rotate(-9deg); }
  78%  { opacity: 1; transform: scale(1) rotate(-9deg); }
  100% { opacity: 0; transform: scale(1) rotate(-9deg); }
}

.cab-btn {
  display: block; width: 100%; margin-top: 12px;
  padding: 13px;
  background: transparent;
  border: 1px solid var(--cab);
  color: var(--cab);
  font-family: var(--font-mono); font-size: 0.76rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.cab-btn:hover { background: var(--cab); color: #08080a; }

.insert-coin {
  margin-top: 34px; text-align: center;
  font-family: var(--font-mono); font-size: 0.74rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--steel-dim);
  animation: blink 1.4s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Dell band ---------- */

.dell-band { background: #000; }
.dell-inner { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; }
.dell-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; max-width: 100%; }
/* Clear space equal to the height of the D, per the brief. Replace the
   slot below with the approved asset, do not restyle or recolour it. */
/* Transparent Dell lockup, sits directly on the black. The padding is
   the brief's clear space rule: the D is roughly 74% of the artwork
   height, so 0.74em of padding at this width keeps clear space equal to
   the height of the D on all sides. */
.dell-slot { width: 300px; max-width: 100%; height: auto; padding: 28px 0; }
.dell-x { color: var(--steel-dim); font-size: 1.3rem; }
.dell-dm { height: 30px; width: auto; }
.dell-line { color: var(--steel); max-width: 48ch; font-size: 0.98rem; }

/* ---------- Day tabs, boarding pass styling ---------- */

.tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.tab {
  position: relative;
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 26px 14px 20px;
  background: var(--carbon);
  border: 1px solid var(--line-soft);
  color: var(--steel);
  cursor: pointer; text-align: left;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.tab::after {
  content: ""; position: absolute; right: 12px; top: 0; bottom: 0;
  border-left: 2px dashed var(--line-soft);
}
.tab:hover { border-color: var(--line); color: var(--white); }
.tab.is-active { background: var(--graphite); border-color: var(--signal); color: var(--white); }
.tab.is-active::after { border-color: var(--signal); }
.tab-d { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.tab-date { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--steel-dim); }

.panel { border: 1px solid var(--line-soft); background: var(--carbon); padding: 30px; }
.sched { list-style: none; }
.sched li {
  display: flex; gap: 20px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
  color: var(--steel);
}
.sched li:last-child { border-bottom: 0; }
.sched .t {
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--signal); min-width: 58px; letter-spacing: 0.06em;
}

/* ---------- Floor map ---------- */

.map-grid { display: flex; flex-wrap: wrap; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.map-box, .map-info { background: var(--carbon); padding: 34px 30px; flex: 1 1 360px; }
.map-placeholder {
  position: relative;
  min-height: 260px;
  display: grid; place-items: center;
  border: 1px dashed var(--line);
  color: var(--steel-dim);
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em;
}
.map-pin {
  position: absolute; top: 38%; left: 58%;
  padding: 7px 13px;
  background: var(--signal); color: #fff;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em;
}
.pin-pulse {
  position: absolute; inset: 0;
  border: 2px solid var(--signal);
  animation: pinPulse 2s ease-out infinite;
}
@keyframes pinPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.1); opacity: 0; }
}
.map-info h3 { font-size: 1.2rem; margin-bottom: 14px; }
.map-warn {
  padding: 14px 16px; margin-bottom: 20px;
  border-left: 2px solid var(--signal);
  background: rgba(229, 72, 77, 0.07);
  color: var(--steel); font-size: 0.92rem;
}
.map-list { list-style: none; }
.map-list li { padding: 11px 0; border-bottom: 1px solid var(--line-soft); color: var(--steel); font-size: 0.93rem; }
.map-list li:last-child { border-bottom: 0; }
.map-list b {
  display: block; font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel-dim);
}

/* ---------- Final ---------- */

.final { background: var(--carbon); text-align: center; }
.final .sec-lead { margin-left: auto; margin-right: auto; }
.final .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */

.foot { padding: 54px 0; border-top: 1px solid var(--line-soft); text-align: center; color: var(--steel); font-size: 0.9rem; }
.foot-logo { height: 26px; width: auto; margin: 0 auto 20px; }
.foot p { margin-bottom: 6px; }
.foot i { color: var(--steel-dim); font-style: normal; }
.foot a:hover { color: var(--signal); }
.foot-cert {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--steel-dim); margin: 18px 0;
}

/* ---------- Konami overlay ---------- */

.konami {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.konami-box {
  text-align: center; padding: 40px;
  border: 2px solid var(--signal);
  background: #08080a;
  animation: glitch 0.28s steps(2) 6;
}
.konami-h {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2rem; color: var(--signal); margin-bottom: 12px;
}
.konami-box p { color: var(--steel); }
.konami-dismiss {
  margin-top: 18px;
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel-dim);
}
@keyframes glitch {
  0%   { transform: translate(0, 0); filter: none; }
  25%  { transform: translate(-3px, 1px); filter: hue-rotate(40deg); }
  50%  { transform: translate(2px, -2px); }
  75%  { transform: translate(-1px, 2px); filter: hue-rotate(-30deg); }
  100% { transform: none; }
}

/* ---------- Custom cursor ---------- */

.reticle {
  position: fixed; top: 0; left: 0; z-index: 400;
  width: 26px; height: 26px;
  border: 1px solid var(--steel-dim);
  border-radius: 50%;
  pointer-events: none;
  transition: width 0.2s var(--ease), height 0.2s var(--ease), border-color 0.2s var(--ease);
}
/* Crosshair arms, drawn from the centre outward. */
.reticle::before, .reticle::after {
  content: ""; position: absolute;
  background: var(--steel-dim);
  transition: background 0.2s var(--ease);
}
.reticle::before { left: 50%; top: -6px; width: 1px; height: 6px; transform: translateX(-50%); }
.reticle::after  { left: 50%; bottom: -6px; width: 1px; height: 6px; transform: translateX(-50%); }
.reticle.is-hot::before, .reticle.is-hot::after { background: var(--signal); }
.reticle.is-hot { width: 38px; height: 38px; border-color: var(--signal); }
body.has-reticle, body.has-reticle a, body.has-reticle button { cursor: none; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .wrap { padding: 0 20px; }
  .dell-inner { flex-direction: column; align-items: flex-start; }
  .sticky-badge { right: 14px; bottom: 14px; }
  .sound { left: 14px; bottom: 14px; }
  .tab { flex: 1 1 100%; }
}

@media (max-width: 520px) {
  .cd-cell { min-width: 64px; padding: 10px; }
  .cd-num { font-size: 1.5rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .ticket { justify-content: space-between; }
}

/* ---------- Reduced motion ----------
   First class, not a patch. No boot screen, no attract loop, no
   blinking, no pulses, no scrubbed sequences. Everything below
   resolves to its finished state immediately. */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .boot { display: none; }
  .ticker-track,
  .cab-screen,
  .insert-coin,
  .dot,
  .pin-pulse,
  .konami-box,
  .boot-line { animation: none !important; }
  .ticker-track { transform: none; }
  .insert-coin { opacity: 1; }
  .pin-pulse { display: none; }
  .ticket, .vcard, .wcard, .tab, .btn, .cab-btn, .reticle { transition: none !important; }
  .ticket:hover { transform: none; }
  .boot-line { opacity: 1; }
}


/* ---------- Generated stills ---------- */

.arcade-shot {
  margin: 0 0 40px;
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.arcade-shot img { width: 100%; height: auto; display: block; }

.final-shot {
  max-width: 640px;
  margin: 0 auto 40px;
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.final-shot img,
.final-shot video { width: 100%; height: auto; display: block; }

.dell-line b { color: var(--white); font-weight: 600; }

/* The map section is now two written panels rather than a floor plan, so
   both columns share the same treatment. */
.map-grid .map-info { flex: 1 1 340px; }


/* ---------- Badge generator ---------- */

.badge-sec { background: var(--carbon); }

.badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.badge-form { flex: 1 1 300px; max-width: 420px; }
.badge-preview {
  flex: 0 1 440px;
  margin: 0;
  border: 1px solid var(--line-soft);
  background: var(--void);
  min-height: 200px;
}
.badge-preview img { width: 100%; height: auto; display: block; }

.badge-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-dim);
  margin-bottom: 8px;
}
.badge-label span { text-transform: none; letter-spacing: 0.04em; }

.badge-input {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 22px;
  background: var(--void);
  border: 1px solid var(--line-soft);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s var(--ease);
}
.badge-input:focus { outline: none; border-color: var(--signal); }
.badge-input::placeholder { color: var(--steel-dim); }

.badge-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.btn-solid {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
}
.btn-solid:hover { background: #cf3f44; border-color: #cf3f44; }

.badge-hint {
  margin-top: 14px;
  min-height: 1.4em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--steel);
}

@media (max-width: 760px) {
  .badge-preview { flex: 1 1 100%; order: -1; }
}


/* ---------- Badge style picker ---------- */

.badge-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.bstyle {
  padding: 9px 16px;
  background: var(--void);
  border: 1px solid var(--line-soft);
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.bstyle:hover { border-color: var(--line); color: var(--white); }
.bstyle.is-active {
  border-color: var(--signal);
  color: var(--signal);
  background: rgba(229, 72, 77, 0.08);
}


/* ---------- Floor map ----------
   Tall section, sticky viewport inside it. The section height is the
   scroll runway the camera flies along. */

.floor-sec {
  position: relative;
  height: 320vh;
  padding: 0;
  background: var(--void);
}
.floor-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.floor-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.floor-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13,13,16,0.85) 0%, transparent 26%, transparent 52%, rgba(13,13,16,0.92) 100%);
}
.floor-h { margin-bottom: 24px; }

.floor-steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  counter-reset: fs;
}
.floor-steps li {
  flex: 1 1 260px;
  background: rgba(20, 20, 25, 0.86);
  backdrop-filter: blur(6px);
  padding: 20px 22px;
  opacity: 0.35;
  border-top: 2px solid transparent;
  transition: opacity 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.floor-steps li.is-on {
  opacity: 1;
  border-top-color: var(--signal);
  background: rgba(28, 28, 34, 0.92);
}
.floor-steps b {
  counter-increment: fs;
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.floor-steps b::before {
  content: "0" counter(fs) "  ";
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--signal);
}
.floor-steps span {
  display: block;
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .floor-sec { height: 300vh; }
  .floor-overlay { padding-bottom: 4vh; }
  .floor-steps li { padding: 14px 16px; flex: 1 1 100%; }
  .floor-steps span { font-size: 0.82rem; }
}

/* Reduced motion: no runway, no camera flight. The section collapses to
   a single screen showing the final close-up. */
@media (prefers-reduced-motion: reduce) {
  .floor-sec { height: auto; }
  .floor-sticky { position: relative; height: 78vh; }
  .floor-steps li { opacity: 1; }
}


/* ---------- Day markers ----------
   Static date cards, not tabs: all three days run identically, so
   switchable tabs would imply differences that do not exist. */

.daycards { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.daycard {
  position: relative;
  flex: 1 1 180px;
  display: flex; flex-direction: column; gap: 2px;
  padding: 16px 26px 16px 20px;
  background: var(--carbon);
  border: 1px solid var(--line-soft);
}
.daycard::after {
  content: ""; position: absolute; right: 12px; top: 0; bottom: 0;
  border-left: 2px dashed var(--line-soft);
}
.daycard.is-today { border-color: var(--signal); background: var(--graphite); }
.daycard.is-today::after { border-color: var(--signal); }
.dc-d { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.dc-date { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--steel-dim); }
.dc-now {
  display: none;
  margin-top: 6px;
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--signal);
}
.daycard.is-today .dc-now { display: block; }

.sched-note {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--steel); font-size: 0.92rem;
}
