/* BestBets.Today — The SuperBook Wall homepage mockup */

@font-face {
  font-family: "Mona Sans";
  src: url("fonts/mona-sans-var.woff2") format("woff2");
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mona Sans Mono";
  src: url("fonts/mona-sans-mono-var.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* the room */
  --room: #050507;
  --room-2: #0a0b10;
  --room-3: #12141c;
  --panel: #0b0d13;
  --line: rgba(236, 238, 245, 0.1);
  --line-2: rgba(236, 238, 245, 0.18);
  /* the board */
  --board-band: rgba(16, 39, 90, 0.42);
  --board-hover: rgba(33, 72, 170, 0.42);
  /* light, one job each */
  --amber: #ffb000;        /* house light: board figures and the lit action */
  --amber-hot: #ffc640;
  --amber-ink: #1f1400;
  --red: #ff3b30;          /* live, a line that moved, state change */
  --green: #37f07a;        /* money: pays, paid */
  --ice: #cfe0ff;          /* our models' read */
  /* Elite Reserve */
  --brass: #d7b073;
  --brass-hi: #f2d59a;
  --brass-ink: #2a1c08;
  --brass-tex: url("img/brass-brushed.webp") 0 0 / 512px 128px repeat;
  --brass-surface:
    linear-gradient(180deg, rgba(255, 246, 220, 0.42) 0%, rgba(255, 246, 220, 0.08) 38%, rgba(70, 44, 12, 0.12) 62%, rgba(70, 44, 12, 0.34) 100%),
    var(--brass-tex);
  /* paper */
  --thermal: #f3f4f0;
  --thermal-ink: #17181d;
  --thermal-2: #585b64;
  --paper-tex: url("img/paper-thermal.webp") 0 0 / 384px repeat;
  /* text on the room */
  --text: #eef0f6;
  --text-2: #a9aec0;
  --text-3: #8a90a4;
  --error: #ff8a80;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1320px;
  --gutter: clamp(16px, 4vw, 48px);
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  scrollbar-color: #2a2e3b var(--room);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--room);
  color: var(--text);
  font-family: "Mona Sans", system-ui, sans-serif;
  font-stretch: 100%;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  caret-color: var(--amber);
  overflow-x: clip;
}

::selection { background: var(--amber); color: var(--amber-ink); }
::-webkit-scrollbar { width: 12px; height: 10px; }
::-webkit-scrollbar-track { background: var(--room); }
::-webkit-scrollbar-thumb { background: #2a2e3b; border: 3px solid var(--room); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #7a5200; }

[hidden] { display: none !important; }
img, svg, canvas { display: block; }
a { color: inherit; text-underline-offset: 0.22em; text-decoration-thickness: 1px; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: -9999px; top: 12px; z-index: 100; background: var(--amber); color: var(--amber-ink); padding: 10px 14px; font-weight: 800; border-radius: 4px; }
.skip:focus { left: 16px; }
.nowrap { white-space: nowrap; }
.wrap { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.num { font-variant-numeric: tabular-nums lining-nums; }
.mono { font-family: "Mona Sans Mono", ui-monospace, monospace; font-variant-numeric: tabular-nums; }
.i { width: 1em; height: 1em; flex: none; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.display { font-stretch: 125%; font-weight: 900; text-transform: uppercase; line-height: 0.9; letter-spacing: -0.012em; }
.led { width: 100%; }
img.is-missing { visibility: hidden; }
.is-edge { color: var(--ice); }
.is-money { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  min-height: 48px; padding: 0 1.35em;
  border: 0; border-radius: 4px;
  background: none;
  font-stretch: 112%; font-weight: 800; font-size: 0.92rem; letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.2s, box-shadow 0.25s var(--ease), color 0.2s, filter 0.2s;
}
.btn .i { width: 1.2em; height: 1.2em; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 40px; padding: 0 1.05em; font-size: 0.8rem; }
.btn--lg { min-height: 56px; padding: 0 1.6em; font-size: 1rem; }
.btn--lit {
  background: var(--amber); color: var(--amber-ink);
  box-shadow: inset 0 1px 0 rgba(255, 244, 214, 0.65), inset 0 -2px 0 rgba(90, 50, 0, 0.28), 0 12px 24px -12px rgba(0, 0, 0, 0.85);
}
.btn--lit:hover { background: var(--amber-hot); }
.btn--line { color: var(--text); box-shadow: inset 0 0 0 1.5px rgba(238, 240, 246, 0.38); }
.btn--line:hover { box-shadow: inset 0 0 0 1.5px var(--text); background: rgba(238, 240, 246, 0.06); }
.btn--brass {
  color: var(--brass-ink);
  background: var(--brass-surface);
  box-shadow: inset 0 1px 0 rgba(255, 249, 230, 0.8), inset 0 -1px 0 rgba(60, 38, 10, 0.55), 0 12px 22px -14px rgba(0, 0, 0, 0.95);
  text-shadow: 0 1px 0 rgba(255, 240, 205, 0.5);
}
.btn--brass:hover { filter: brightness(1.08); }
.btn--brass-line { color: var(--brass-hi); box-shadow: inset 0 0 0 1.5px rgba(215, 176, 115, 0.6); }
.btn--brass-line:hover { box-shadow: inset 0 0 0 1.5px var(--brass-hi); background: rgba(215, 176, 115, 0.08); }
.btn[disabled] { cursor: not-allowed; opacity: 0.55; transform: none; }
.btn.is-loading .i { animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Brand + nav ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { width: 46px; height: 33px; border-radius: 5px; background: #000; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 4px 10px -4px rgba(0, 0, 0, 0.8); flex: none; }
.brand__mark circle { fill: var(--amber); }
.brand__mark circle.off { fill: rgba(255, 214, 150, 0.09); }
.brand__name { font-stretch: 125%; font-weight: 900; font-size: 1.06rem; text-transform: uppercase; letter-spacing: 0.01em; }
.brand__name span { font-weight: 600; color: var(--text-2); }

.nav { position: sticky; top: 0; z-index: 60; background: rgba(5, 5, 7, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 16px 30px -24px rgba(0, 0, 0, 0.95); }
.nav__in { display: flex; align-items: center; gap: 28px; height: var(--nav-h); }
.nav__menu { display: flex; align-items: center; flex: 1; }
.nav__links { display: flex; gap: 26px; margin-left: 16px; }
.nav__links a { position: relative; padding: 6px 0; color: var(--text-2); font-weight: 600; font-size: 0.93rem; text-decoration: none; transition: color 0.2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__menu-actions { display: none; }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav__signin { color: var(--text); font-weight: 600; font-size: 0.93rem; text-decoration: none; }
.nav__signin:hover { text-decoration: underline; }
.nav__wallet { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 0.9rem; color: var(--text-2); }
.nav__wallet .i { width: 18px; height: 18px; color: var(--brass); }
.nav__wallet b { color: var(--brass-hi); font-weight: 800; }
.nav__wallet.is-flash { animation: wallet-flash 1.2s var(--ease); }
@keyframes wallet-flash { 0% { color: var(--red); } 100% { color: var(--text-2); } }
.nav__toggle { display: none; width: 44px; height: 44px; place-items: center; background: transparent; border: 1px solid var(--line-2); border-radius: 4px; cursor: pointer; }
.nav__toggle .i { width: 22px; height: 22px; }

/* ---------- Section scaffolding ---------- */
.head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 50ch); align-items: end; gap: 20px 64px; margin-bottom: 44px; }
.head p { color: var(--text-2); text-wrap: pretty; }
.head--center { grid-template-columns: minmax(0, 1fr); justify-items: center; text-align: center; }
.head--center p { max-width: 52ch; }
.h2 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); text-wrap: balance; }
.note { margin-top: 26px; font-size: 0.84rem; color: #8d93a8; }
.tag-sample { display: inline-block; padding: 2px 7px; border-radius: 2px; box-shadow: inset 0 0 0 1px rgba(255, 176, 0, 0.45); color: var(--amber); font-family: "Mona Sans Mono", monospace; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.section { padding-block: clamp(84px, 10vw, 132px); border-top: 1px solid var(--line); }

/* LED housing: black glass in a thin bezel */
.housing {
  position: relative;
  padding: 10px 10px 12px;
  background: #000;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07), 0 1px 0 rgba(255, 255, 255, 0.04), 0 40px 70px -40px rgba(0, 0, 0, 1), 0 16px 30px -18px rgba(0, 0, 0, 0.9);
}
.housing__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 0 4px 10px;
  font-family: "Mona Sans Mono", ui-monospace, monospace; font-weight: 600; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2);
}
.housing__title { color: var(--text); }
.housing__clock { margin-left: auto; color: var(--amber); }
.led--head { margin-bottom: 2px; }

/* Hero LED rows */
.lrows { display: flex; flex-direction: column; }
.lrow:nth-child(even) > .lrow__btn { background: var(--board-band); }
.lrow__btn { position: relative; display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; transition: background-color 0.2s; }
.lrow__btn:hover { background: var(--board-hover) !important; }
.lrow__btn:focus-visible { outline: 2px solid var(--amber); outline-offset: -2px; z-index: 1; }

/* Sealed bar: the one "withheld" device, used everywhere */
.sealbar {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 30px; padding: 0 12px 0 10px; border-radius: 4px;
  background:
    repeating-linear-gradient(-45deg, rgba(215, 176, 115, 0.13) 0 6px, rgba(215, 176, 115, 0.04) 6px 12px),
    #121014;
  box-shadow: inset 0 0 0 1px rgba(215, 176, 115, 0.32);
  color: var(--brass-hi);
  font-family: "Mona Sans Mono", monospace; font-weight: 700; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
}
.sealbar .i { width: 14px; height: 14px; }

/* ---------- The wall (hero) ---------- */
.wall { position: relative; isolation: isolate; overflow: hidden; background: var(--room); }
.wall__screens {
  position: absolute; inset: 0; z-index: -2;
  display: grid; grid-template-columns: 1.25fr 1fr 1fr; grid-template-rows: 1fr 1fr; grid-auto-flow: dense; gap: 6px; padding: 6px;
  background: #000;
}
.screen { position: relative; overflow: hidden; border-radius: 3px; background: linear-gradient(160deg, #0d1a3d, #050914); }
.screen img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) contrast(1.1) brightness(0.84); transform: scale(1.03); }
.screen::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.28) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0 1px, transparent 1px 3px);
}
.screen figcaption {
  position: absolute; left: 10px; bottom: 8px; z-index: 1;
  padding: 2px 6px; border-radius: 2px; background: rgba(0, 0, 0, 0.6);
  font-family: "Mona Sans Mono", monospace; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber);
}
.screen--a { grid-row: span 2; }
.screen--a figcaption, .screen--b figcaption, .screen--d figcaption { display: none; }
.screen--f { display: none; }
.wall__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.97) 0%, rgba(5, 5, 7, 0.9) 34%, rgba(5, 5, 7, 0.46) 64%, rgba(5, 5, 7, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 5, 7, 0.35) 0%, rgba(5, 5, 7, 0) 24%, rgba(5, 5, 7, 0) 70%, rgba(5, 5, 7, 0.96) 100%);
}
.marquee { position: relative; background: #000; box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.04); padding: 5px 0; }
.wall__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 396px;
  grid-template-areas: "copy res" "board res";
  align-content: center;
  gap: 30px 60px;
  min-height: calc(100svh - var(--nav-h) - 42px);
  padding-block: clamp(26px, 4.2vh, 56px) clamp(34px, 5.5vh, 72px);
}
.wall__copy { grid-area: copy; }
.wall__title { display: flex; flex-direction: column; font-size: clamp(2.6rem, 5.3vw, 5rem); color: var(--text); }
.wall__title .ln { display: block; animation: sign-on 1.1s var(--ease) both; }
.wall__title .ln:nth-child(2) { animation-delay: 0.12s; }
.wall__title .ln:nth-child(3) { animation-delay: 0.24s; }
.wall__title em { font-style: normal; color: var(--amber); }
@keyframes sign-on {
  0% { opacity: 0.65; filter: brightness(1.2) blur(2px); transform: translateY(8px); }
  35% { opacity: 1; }
  100% { opacity: 1; filter: none; transform: none; }
}
.wall__lede { max-width: 52ch; margin-top: 22px; font-size: clamp(1.02rem, 1.3vw, 1.16rem); color: var(--text-2); text-wrap: pretty; }
.wall__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 28px; }
.wall__fine { margin-top: 14px; font-size: 0.84rem; color: var(--text-3); }
.wall__board { grid-area: board; }
.wall__res { grid-area: res; align-self: center; }

/* ---------- How it works ---------- */
.how { padding-block: clamp(84px, 10vw, 132px); background: var(--room); border-top: 1px solid var(--line); }
.how .h2 { max-width: 16ch; }
.flow { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 clamp(24px, 3.5vw, 56px); }
.flow::before {
  content: ""; position: absolute; left: 17px; right: 0; top: calc(156px + 24px + 16px); height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 176, 0, 0.55) 0 6px, transparent 6px 12px);
}
.flow__step { position: relative; }
.flow__art { height: 156px; display: flex; align-items: center; }
.flow__n {
  position: relative; z-index: 1;
  display: grid; place-items: center; width: 34px; height: 34px; margin: 24px 0 18px;
  border-radius: 50%; background: var(--room); box-shadow: inset 0 0 0 1.5px var(--amber);
  font-family: "Mona Sans Mono", monospace; font-weight: 800; font-size: 0.9rem; color: var(--amber);
}
.flow__title { font-stretch: 125%; font-weight: 900; font-size: 1.3rem; line-height: 1.05; text-transform: uppercase; }
.flow__step p { margin-top: 10px; max-width: 38ch; color: var(--text-2); }
.flow__foot { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--text-2); }
.flow__foot b { color: var(--text); }
.flow__foot a { color: var(--amber); font-weight: 700; }

.mini-row {
  width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) auto auto auto; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 8px; background: var(--panel); box-shadow: inset 0 0 0 1px var(--line), 0 24px 40px -26px rgba(0, 0, 0, 1);
}
.mini-row__game { display: flex; flex-direction: column; min-width: 0; }
.mini-row__game b { font-weight: 800; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-row__game small { font-family: "Mona Sans Mono", monospace; font-size: 0.72rem; color: var(--text-3); }
.mini-row__num { font-stretch: 125%; font-weight: 900; font-size: 1rem; }
.mini-prices { display: flex; align-items: flex-end; gap: 8px; }
.mp { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 6px; width: 76px; padding: 10px 10px 9px; border-radius: 6px; background: var(--panel); box-shadow: inset 0 0 0 1px var(--line); font-family: "Mona Sans Mono", monospace; font-size: 0.72rem; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.04em; }
.mp b { font-family: "Mona Sans", sans-serif; font-stretch: 125%; font-weight: 900; font-size: 1.6rem; line-height: 1; }
.mp--std { height: 78px; } .mp--std b { color: var(--amber); }
.mp--prem { height: 96px; } .mp--prem b { color: var(--ice); }
.mp--hc { height: 116px; } .mp--hc b { color: #fff; }
.mp--elite { height: 138px; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.18)), var(--brass-surface); color: var(--brass-ink); box-shadow: inset 0 1px 0 rgba(255, 248, 225, 0.6); }
.mp--elite b { color: var(--brass-ink); }
.mini-ticket { position: relative; display: flex; flex-direction: column; gap: 4px; width: 230px; padding: 14px 16px 44px; transform: rotate(-2deg); filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.7)); }
.mini-ticket__top { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--thermal-2); }
.mini-ticket__what { font-weight: 700; font-size: 0.86rem; }
.mini-ticket__res { display: flex; justify-content: space-between; align-items: baseline; padding-top: 6px; border-top: 1.5px dashed rgba(23, 24, 29, 0.25); font-weight: 700; font-size: 0.82rem; }
.mini-ticket__res b { font-family: "Mona Sans", sans-serif; font-stretch: 125%; font-weight: 900; font-size: 1.2rem; }
.mini-ticket__stamp { position: absolute; left: 14px; bottom: 11px; padding: 1px 7px; border: 2px solid var(--red); border-radius: 3px; color: var(--red); font-family: "Mona Sans", sans-serif; font-stretch: 125%; font-weight: 900; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; transform: rotate(8deg); mix-blend-mode: multiply; }

/* ---------- Thermal paper: one ticket for slips, receipts and tape ---------- */
.ticket-paper { background: var(--thermal) var(--paper-tex); color: var(--thermal-ink); }
.ticket {
  --tear: 76px;
  position: relative;
  background: var(--thermal) var(--paper-tex);
  color: var(--thermal-ink);
  padding: 16px 20px 26px;
  -webkit-mask:
    radial-gradient(circle 9px at 0 calc(100% - var(--tear)), #0000 96%, #000 100%),
    radial-gradient(circle 9px at 100% calc(100% - var(--tear)), #0000 96%, #000 100%),
    linear-gradient(#000 0 0) top / 100% calc(100% - 8px) no-repeat,
    conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) bottom / 12px 8px repeat-x;
  -webkit-mask-composite: source-in, source-in, source-over;
  mask:
    radial-gradient(circle 9px at 0 calc(100% - var(--tear)), #0000 96%, #000 100%),
    radial-gradient(circle 9px at 100% calc(100% - var(--tear)), #0000 96%, #000 100%),
    linear-gradient(#000 0 0) top / 100% calc(100% - 8px) no-repeat,
    conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) bottom / 12px 8px repeat-x;
  mask-composite: intersect, intersect, add;
}
.ticket::after { /* tear line between the ticket and its stub */
  content: ""; position: absolute; left: 14px; right: 14px; bottom: var(--tear); height: 0;
  border-top: 1.5px dashed rgba(23, 24, 29, 0.3);
}
.ticket__head { display: flex; justify-content: space-between; gap: 10px; padding-bottom: 10px; border-bottom: 1.5px solid var(--thermal-ink); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.ticket__title { margin-top: 14px; font-stretch: 125%; font-weight: 900; font-size: 1.45rem; line-height: 1; text-transform: uppercase; }
.ticket__sub { margin-top: 4px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--thermal-2); }
.ticket__lines { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.tl { display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto; align-items: center; gap: 8px; animation: print-line 0.4s steps(4) both; }
@keyframes print-line { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }
.tl__lg { padding: 1px 5px; border-radius: 2px; background: var(--thermal-ink); color: var(--thermal); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.06em; }
.tl__what { display: flex; align-items: baseline; gap: 6px; min-width: 0; font-size: 0.8rem; font-weight: 600; }
.tl__what span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tl__what::after { content: ""; flex: 1; min-width: 12px; border-bottom: 1.5px dotted rgba(23, 24, 29, 0.35); transform: translateY(-3px); }
.tl b { font-weight: 800; font-size: 0.86rem; }
.tl__x { display: grid; place-items: center; width: 26px; height: 26px; padding: 0; border: 0; border-radius: 3px; background: none; color: var(--thermal-2); cursor: pointer; }
.tl__x:hover { color: var(--thermal-ink); background: rgba(23, 24, 29, 0.08); }
.tl__x .i { width: 14px; height: 14px; }
.ticket__empty { margin-top: 14px; font-size: 0.8rem; line-height: 1.5; color: var(--thermal-2); }
.ticket__budget { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1.5px dashed rgba(23, 24, 29, 0.3); }
.coins { display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 5px; }
.coins i { aspect-ratio: 1; border-radius: 50%; box-shadow: inset 0 0 0 1.5px rgba(23, 24, 29, 0.28); transition: background-color 0.3s, box-shadow 0.3s; }
.coins i.is-used { background: var(--thermal-ink); box-shadow: none; }
.coins i.is-over { background: #c4261c; box-shadow: none; }
.ticket__budget p { font-size: 0.74rem; font-weight: 600; color: var(--thermal-2); }
.ticket__budget p.is-over { color: #b3241a; }
.ticket__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; font-size: 0.82rem; font-weight: 700; }
.ticket__total b { font-stretch: 125%; font-weight: 900; font-size: 1.4rem; }
.ticket__go { width: 100%; margin-top: 14px; white-space: normal; line-height: 1.2; text-align: center; padding-block: 10px; }
.ticket__go[disabled] { opacity: 1; background: rgba(23, 24, 29, 0.07); color: var(--thermal-2); box-shadow: inset 0 0 0 1px rgba(23, 24, 29, 0.2); }
.ticket__fine { margin-top: 10px; font-size: 0.72rem; line-height: 1.45; color: var(--thermal-2); }
.barcode { width: 100%; height: 34px; }
.barcode rect { fill: var(--thermal-ink); }
.ticket--slip .barcode { position: absolute; left: 20px; bottom: 24px; width: calc(100% - 40px); height: 32px; }
.ticket--slip { padding-bottom: calc(var(--tear) + 12px); }

/* ---------- Tonight's board ---------- */
.board { padding-block: clamp(84px, 10vw, 132px); background: var(--room); border-top: 1px solid var(--line); }

/* The guide: tonight as a TV schedule */
.guide { margin-bottom: 28px; border-radius: 10px; background: #07080c; box-shadow: inset 0 0 0 1px var(--line), 0 40px 60px -44px rgba(0, 0, 0, 1); overflow: hidden; }
.guide__bar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.guide__days { display: flex; gap: 6px; }
.day {
  min-height: 36px; padding: 0 14px; border: 0; border-radius: 4px; cursor: pointer;
  background: rgba(255, 255, 255, 0.04); box-shadow: inset 0 0 0 1px var(--line); color: var(--text-2);
  font-stretch: 112%; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.day b { margin-left: 6px; font-family: "Mona Sans Mono", monospace; font-weight: 700; color: var(--text-3); }
.day[aria-pressed="true"] { color: var(--amber); background: rgba(255, 176, 0, 0.08); box-shadow: inset 0 0 0 1px rgba(255, 176, 0, 0.55); }
.day[aria-pressed="true"] b { color: var(--amber); }
.guide__status { font-family: "Mona Sans Mono", monospace; font-size: 0.78rem; font-weight: 600; color: var(--text-2); }
.guide__status b { color: var(--red); font-weight: 800; }
.guide__key { margin-left: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; font-size: 0.78rem; color: var(--text-3); }
.guide__key > * { white-space: nowrap; }
.k { display: inline-block; width: 10px; height: 10px; margin-right: 6px; border-radius: 2px; vertical-align: -1px; }
.k--open { background: var(--amber); }
.k--seal { background: repeating-linear-gradient(-45deg, var(--brass) 0 2px, transparent 2px 4px); box-shadow: inset 0 0 0 1px var(--brass); }
.k--live { background: var(--red); border-radius: 50%; }
.guide__scroller { overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: thin; scrollbar-color: #2a2e3b transparent; }
.guide__scroller:focus-visible { outline-offset: -3px; }
.guide__canvas { position: relative; min-width: 100%; }
.g-hours { position: relative; height: 36px; border-bottom: 1px solid var(--line); }
.g-hour { position: absolute; top: 0; bottom: 0; padding: 10px 0 0 8px; border-left: 1px solid var(--line); font-family: "Mona Sans Mono", monospace; font-size: 0.74rem; font-weight: 700; color: var(--text-3); white-space: nowrap; }
.g-lanes { position: relative; }
.g-grid { position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(90deg, rgba(236, 238, 245, 0.06) 0 1px, transparent 1px var(--hour)); background-position: var(--gx) 0; }
.g-lane { position: relative; height: 78px; border-bottom: 1px solid var(--line); }
.g-lane:last-child { border-bottom: 0; }
.g-lg {
  position: sticky; left: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: center; gap: 2px;
  width: 84px; height: 100%; padding-left: 14px;
  background: linear-gradient(90deg, #07080c 80%, rgba(7, 8, 12, 0));
  font-stretch: 125%; font-weight: 900; font-size: 0.95rem; text-transform: uppercase;
}
.g-lg small { font-family: "Mona Sans Mono", monospace; font-stretch: 100%; font-weight: 600; font-size: 0.68rem; color: var(--text-3); text-transform: none; }
.gb {
  position: absolute; z-index: 2; top: 9px; bottom: 9px;
  display: flex; flex-direction: column; justify-content: center; gap: 3px;
  padding: 0 12px 0 calc(12px + var(--pad, 0px)); border: 0; border-radius: 6px; cursor: pointer; text-align: left; overflow: hidden;
  background:
    radial-gradient(140% 160% at 0% 0%, color-mix(in srgb, var(--c1) 34%, transparent), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    #11141d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 2px 0 var(--tc, var(--amber));
  transition: box-shadow 0.2s, transform 0.25s var(--ease);
}
.gb:hover, .gb.is-hot { box-shadow: inset 0 0 0 1px rgba(255, 176, 0, 0.7), inset 0 2px 0 var(--tc, var(--amber)); transform: translateY(-1px); }
.gb__teams { font-stretch: 112%; font-weight: 800; font-size: 0.9rem; white-space: nowrap; }
.gb__teams small { margin-left: 8px; font-family: "Mona Sans Mono", monospace; font-stretch: 100%; font-weight: 600; font-size: 0.7rem; color: var(--text-3); }
.gb__sub { display: flex; align-items: center; gap: 6px; font-family: "Mona Sans Mono", monospace; font-size: 0.72rem; font-weight: 600; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gb__sub .i { width: 12px; height: 12px; color: var(--brass-hi); }
.gb__sub b { color: var(--amber); font-weight: 800; }
.gb--sealed .gb__sub { color: var(--brass-hi); }
.gb__live { position: absolute; left: 0; bottom: 0; height: 3px; width: calc(var(--p, 0) * 100%); background: var(--red); }
.gb--live .gb__teams::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--red); vertical-align: 2px; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.g-now { position: absolute; top: 0; bottom: 0; z-index: 1; width: 2px; margin-left: -1px; background: var(--red); pointer-events: none; }
.g-now.is-flip span { right: auto; left: 5px; }
.g-now span { position: absolute; top: 8px; right: 5px; padding: 2px 6px; border-radius: 2px; background: var(--red); color: #1a0200; font-family: "Mona Sans Mono", monospace; font-size: 0.7rem; font-weight: 800; white-space: nowrap; }
.g-empty { padding: 28px 18px; color: var(--text-3); font-size: 0.9rem; }

/* Controls */
.board__controls { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; margin-bottom: 14px; }
.chips, .sorter { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.sorter > span { margin-right: 4px; font-family: "Mona Sans Mono", monospace; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.chip, .sort {
  min-height: 38px; padding: 0 14px; border: 0; border-radius: 4px; cursor: pointer;
  background: rgba(255, 255, 255, 0.04); box-shadow: inset 0 0 0 1px var(--line); color: var(--text-2);
  font-stretch: 112%; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.chip:hover, .sort:hover { color: var(--text); background: rgba(255, 255, 255, 0.07); }
.chip[aria-pressed="true"], .sort[aria-pressed="true"] { color: var(--amber); background: rgba(255, 176, 0, 0.08); box-shadow: inset 0 0 0 1px rgba(255, 176, 0, 0.55); }

.board__grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 24px; align-items: start; }

/* The board: clean rows */
.bd { --cols: minmax(0, 1.35fr) minmax(0, 1.25fr) 104px 100px 150px; border-radius: 10px; background: #08090d; box-shadow: inset 0 0 0 1px var(--line), 0 40px 60px -44px rgba(0, 0, 0, 1); overflow: hidden; }
.bd__head { display: grid; grid-template-columns: var(--cols); gap: 16px; padding: 12px 18px; border-bottom: 1px solid var(--line); background: #0b0d13; font-family: "Mona Sans Mono", monospace; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.r { text-align: right; justify-self: end; }
.bdr { border-bottom: 1px solid var(--line); transition: background-color 0.2s; }
.bdr:last-child { border-bottom: 0; }
.bdr:hover { background: rgba(255, 255, 255, 0.022); }
.bdr.is-hot { background: rgba(255, 176, 0, 0.05); }
.bdr.is-armed { background: rgba(215, 176, 115, 0.07); }
.bdr.is-hidden { display: none; }
.bdr__main { display: grid; grid-template-columns: var(--cols); align-items: center; gap: 16px; padding: 14px 18px; }
.bdr__game { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.bdr__time { font-family: "Mona Sans Mono", monospace; font-size: 0.74rem; font-weight: 700; color: var(--amber); letter-spacing: 0.04em; }
.bdr__time.is-live { color: var(--red); }
.bdr__time.is-live::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--red); vertical-align: 1px; animation: pulse 1.6s ease-in-out infinite; }
.bdr__teams { font-weight: 800; font-size: 1rem; line-height: 1.2; }
.bdr__teams i { font-style: normal; font-weight: 500; color: var(--text-3); margin: 0 3px; }
.bdr__meta { font-size: 0.78rem; color: var(--text-3); }
.bdr__pick { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; min-width: 0; }
.bdr__line { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; }
.bdr__hist { font-family: "Mona Sans Mono", monospace; font-size: 0.72rem; font-weight: 600; color: var(--text-3); }
.teamdot { display: inline-block; width: 10px; height: 10px; margin-right: 9px; border-radius: 2px; background: var(--c); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22); vertical-align: 1px; }
.bdr__pick b { font-weight: 800; font-size: 0.98rem; }
.odds { display: inline-flex; align-items: center; gap: 3px; padding: 2px 7px; border-radius: 3px; background: rgba(255, 176, 0, 0.1); color: var(--amber); font-family: "Mona Sans Mono", monospace; font-weight: 800; font-size: 0.82rem; transition: color 0.3s, background-color 0.3s; }
.odds.is-moved { color: var(--red); background: rgba(255, 59, 48, 0.14); }
.tierchip { display: inline-flex; align-items: center; gap: 5px; font-family: "Mona Sans Mono", monospace; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); }
.tierchip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--tc); }
.bdr__edge { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.bdr__edge b { font-stretch: 125%; font-weight: 900; font-size: 1.1rem; color: var(--ice); line-height: 1; }
.edgebar { position: relative; width: 64px; height: 4px; border-radius: 2px; background: rgba(207, 224, 255, 0.12); overflow: hidden; }
.edgebar i { position: absolute; inset: 0; background: var(--ice); transform-origin: left; transform: scaleX(var(--e)); }
.bdr__pays { text-align: right; font-stretch: 125%; font-weight: 900; font-size: 1.1rem; color: var(--green); }
.bdr__pays small { display: block; font-family: "Mona Sans Mono", monospace; font-stretch: 100%; font-weight: 600; font-size: 0.68rem; color: var(--text-3); }
.bdr__act { display: flex; justify-content: flex-end; }
.bdr__act .btn { min-width: 132px; }
.bdr__read { gap: 0.4em; }
.bdr__read .i { transition: transform 0.3s var(--ease); }
.bdr.is-open .bdr__read .i { transform: rotate(180deg); }
.arm.is-armed { color: var(--brass-ink); background: var(--brass-surface); box-shadow: inset 0 1px 0 rgba(255, 249, 230, 0.7); }
.bd__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; padding: 14px 18px; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--text-3); }

/* Drawer under an open row */
.drawer {
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 20px 32px;
  padding: 18px 18px 22px;
  background: linear-gradient(180deg, #0c1122 0%, #080b16 100%);
  box-shadow: inset 0 1px 0 rgba(207, 224, 255, 0.08);
  animation: drawer-in 0.45s var(--ease) both;
}
@keyframes drawer-in { from { opacity: 0; clip-path: inset(0 0 100% 0); } to { opacity: 1; clip-path: inset(0 0 0 0); } }
.drawer__plain { font-weight: 600; }
.facts3 { display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: 14px; }
.facts3 div { display: flex; flex-direction: column; gap: 4px; }
.facts3 dt { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.facts3 dd { font-stretch: 125%; font-weight: 900; font-size: 1.5rem; line-height: 1; }
.facts3 .is-price { color: var(--brass-hi); }
.reads { display: grid; gap: 10px; margin-top: 16px; }
.read { display: grid; grid-template-columns: 118px minmax(0, 1fr) 52px; align-items: center; gap: 12px; font-size: 0.84rem; font-weight: 600; color: var(--text-2); }
.read b { text-align: right; color: var(--text); font-weight: 800; }
.dotbar { position: relative; height: 8px; background: radial-gradient(circle, rgba(255, 214, 150, 0.12) 0 1.4px, transparent 1.8px) 0 50% / 5px 8px repeat-x; }
.dotbar i { position: absolute; left: 0; top: 0; bottom: 0; width: calc(var(--v) * 1%); background: radial-gradient(circle, var(--c, var(--amber)) 0 1.7px, transparent 2.1px) 0 50% / 5px 8px repeat-x; }
.models { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 12px; font-size: 0.8rem; font-weight: 600; color: var(--text-2); }
.models li { display: inline-flex; align-items: center; gap: 6px; }
.models li::before { content: ""; width: 8px; height: 8px; border-radius: 1px; background: var(--c); }
.models b { color: var(--text); font-weight: 800; }
.drawer__why { margin-top: 12px; font-size: 0.88rem; color: var(--text-2); }
.drawer__side { display: flex; flex-direction: column; gap: 14px; padding: 16px; border-radius: 6px; background: rgba(0, 0, 0, 0.35); box-shadow: inset 0 0 0 1px var(--line); align-self: start; }
.drawer__side h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.stakes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
.stake { min-height: 38px; border: 0; border-radius: 4px; cursor: pointer; background: rgba(255, 255, 255, 0.05); box-shadow: inset 0 0 0 1px var(--line); font-weight: 800; font-size: 0.86rem; color: var(--text-2); }
.stake:hover { color: var(--text); }
.stake[aria-pressed="true"] { color: var(--amber); box-shadow: inset 0 0 0 1.5px var(--amber); background: rgba(255, 176, 0, 0.07); }
.payout { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; font-weight: 700; font-size: 0.86rem; color: var(--text-2); }
.payout b { font-stretch: 125%; font-weight: 900; font-size: 2rem; line-height: 1; color: var(--green); }
.track-btn { align-self: flex-start; }
.track-btn[aria-pressed="true"] { color: var(--amber); box-shadow: inset 0 0 0 1.5px var(--amber); }

.slip { position: sticky; top: calc(var(--nav-h) + 20px); filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.6)); }
.slipbar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50;
  display: flex; align-items: center; gap: 10px;
  min-height: 52px; padding: 0 16px; border-radius: 8px;
  background: var(--thermal) var(--paper-tex); color: var(--thermal-ink);
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.9);
  font-family: "Mona Sans Mono", monospace; font-weight: 700; font-size: 0.84rem; text-decoration: none;
  animation: slipbar-in 0.4s var(--ease) both;
}
.slipbar .i { width: 20px; height: 20px; }
.slipbar span { flex: 1; }
.slipbar b { font-family: "Mona Sans", sans-serif; font-stretch: 112%; font-weight: 900; text-transform: uppercase; }
@keyframes slipbar-in { from { transform: translateY(120%); } to { transform: none; } }

/* ---------- Elite Reserve ---------- */
.reserve { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(88px, 11vw, 140px); background: #060506; border-top: 1px solid var(--line); }
.reserve__bg { position: absolute; inset: 0; z-index: -1; }
.reserve__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; filter: saturate(0.8) contrast(1.1) brightness(0.62); }
.reserve__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 46% at 50% 58%, rgba(6, 5, 6, 0.92) 0%, rgba(6, 5, 6, 0.8) 55%, rgba(6, 5, 6, 0.3) 100%),
    radial-gradient(40% 30% at 50% 0%, rgba(255, 200, 120, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(6, 5, 6, 0.96) 0%, rgba(6, 5, 6, 0.55) 22%, rgba(6, 5, 6, 0.55) 78%, rgba(6, 5, 6, 0.96) 100%);
}
.reserve .h2 { color: var(--brass-hi); }
.head--reserve p { color: #cbbfb4; }
.reserve__row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; align-items: start; }
.note--reserve { color: #a89a90; }

/* Elite Reserve ticket */
.res-slot { filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.8)) drop-shadow(0 10px 12px rgba(0, 0, 0, 0.6)); }
.res {
  --tear: -40px;
  position: relative;
  padding: 2px; border-radius: 14px;
  background: var(--brass-surface);
  -webkit-mask:
    radial-gradient(circle 11px at 0 calc(100% - var(--tear)), #0000 96%, #000 100%),
    radial-gradient(circle 11px at 100% calc(100% - var(--tear)), #0000 96%, #000 100%);
  -webkit-mask-composite: source-in;
  mask:
    radial-gradient(circle 11px at 0 calc(100% - var(--tear)), #0000 96%, #000 100%),
    radial-gradient(circle 11px at 100% calc(100% - var(--tear)), #0000 96%, #000 100%);
  mask-composite: intersect;
}
.res__body {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  border-radius: 12px;
  background:
    radial-gradient(120% 50% at 20% 100%, rgba(255, 236, 200, 0.05), transparent 60%),
    linear-gradient(180deg, #121014 0%, #0a090b 100%);
}
.res__photo { position: relative; aspect-ratio: 16 / 8.2; overflow: hidden; }
.res__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.08) brightness(0.8); transition: transform 1.2s var(--ease); }
.res:hover .res__photo img { transform: scale(1.04); }
.res__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 9, 11, 0.5) 0%, rgba(10, 9, 11, 0) 34%, rgba(10, 9, 11, 0.1) 60%, #0e0c0f 100%); }
.res__tags { position: absolute; z-index: 1; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; gap: 8px; }
.res__tags-r { display: flex; gap: 6px; }
.res__tag--sample { color: var(--amber); box-shadow: inset 0 0 0 1px rgba(255, 176, 0, 0.5); }
.res__tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 8px; border-radius: 3px; background: rgba(8, 7, 8, 0.78); font-family: "Mona Sans Mono", monospace; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); white-space: nowrap; }
.res__tag .i { width: 13px; height: 13px; color: var(--text-3); }
.res__tag--elite { color: var(--brass-ink); background: var(--brass-surface); }
.res__seal { position: absolute; z-index: 2; top: -58px; right: 12px; width: 104px; aspect-ratio: 1; filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.75)); transition: transform 0.6s var(--ease); }
.res__seal img { position: absolute; inset: 0; width: 100%; height: 100%; transition: opacity 0.5s var(--ease); }
.res__seal .is-open-img { opacity: 0; }
.res__seal::after { /* a sheen that only lives on the metal */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 250, 235, 0.55) 45%, transparent 60%) -120% 0 / 250% 100% no-repeat;
  -webkit-mask: url("img/seal-closed.webp") center / contain no-repeat;
  mask: url("img/seal-closed.webp") center / contain no-repeat;
  mix-blend-mode: soft-light; opacity: 0;
}
.res:hover .res__seal { transform: rotate(-6deg) scale(1.03); }
.res:hover .res__seal::after { opacity: 1; animation: seal-sheen 1.2s var(--ease) both; }
@keyframes seal-sheen { from { background-position: -120% 0; } to { background-position: 220% 0; } }
.res__main { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 12px 18px 18px; }
.res__match { margin-top: 4px; padding-right: 100px; font-stretch: 125%; font-weight: 900; font-size: 1.45rem; line-height: 1; text-transform: uppercase; }
.res__match i { font-style: normal; font-weight: 600; color: var(--text-3); }
.res__meta { margin-top: -6px; font-size: 0.84rem; color: var(--text-2); }
.res__pick { position: relative; display: flex; flex-direction: column; gap: 8px; }
.res__pick .sealbar { justify-content: flex-start; min-height: 38px; font-size: 0.78rem; }
.res__reveal { display: none; }
.res__reveal b { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; font-stretch: 125%; font-weight: 900; font-size: 1.5rem; line-height: 1; text-transform: uppercase; }
.res__reveal b .odds { font-size: 0.8rem; }
.res__reveal p { margin-top: 8px; font-size: 0.86rem; color: var(--text-2); }
.res__reveal p:first-of-type { color: var(--text); font-weight: 600; }
.res__facts { display: grid; grid-template-columns: repeat(4, auto); justify-content: space-between; gap: 6px 10px; }
.res__facts dt { margin-bottom: 5px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.res__facts dd { font-stretch: 125%; font-weight: 900; font-size: 1.2rem; line-height: 1; white-space: nowrap; }
.res__facts .is-score { color: var(--brass-hi); }
.pips { display: inline-flex; gap: 4px; margin-left: 6px; vertical-align: 3px; }
.pips i { width: 7px; height: 7px; border-radius: 1px; background: var(--c); }
.pips i.is-off { background: transparent; box-shadow: inset 0 0 0 1.5px var(--c); opacity: 0.5; }
.res__foot { display: flex; flex-direction: column; gap: 8px; margin: 4px -18px 0; padding: 18px 18px 0; border-top: 1.5px dashed rgba(215, 176, 115, 0.38); }
.res__foot .btn { width: 100%; }
.res__hint { font-size: 0.78rem; color: var(--text-3); text-align: center; }
.res__confirm { display: flex; flex-direction: column; gap: 10px; padding: 12px; border-radius: 6px; background: rgba(215, 176, 115, 0.08); box-shadow: inset 0 0 0 1px rgba(215, 176, 115, 0.38); animation: reveal-in 0.4s var(--ease) both; }
.res__confirm p { font-size: 0.86rem; font-weight: 600; }
.res__confirm p b { color: var(--brass-hi); }
.res__confirm-actions { display: flex; gap: 8px; }
.res__confirm-actions .btn:first-child { flex: 1; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.res__stamp { position: absolute; top: -4px; right: 0; padding: 2px 8px; border-radius: 2px; background: var(--red); color: #1a0200; font-stretch: 125%; font-weight: 900; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; transform: rotate(-3deg); animation: reveal-in 0.5s var(--ease) 0.3s both; }

/* Opened */
.res.is-open .res__seal { transform: rotate(-14deg) translateY(-4px); }
.res.is-open .res__seal .is-open-img { opacity: 1; }
.res.is-open .res__seal .is-closed-img { opacity: 0; }
.res.is-open .res__pick .sealbar { display: none; }
.res.is-open .res__reveal { display: block; animation: reveal-in 0.7s var(--ease) 0.25s both; }

.res-slot--hero .res__photo { aspect-ratio: 16 / 7.6; }
.res-slot--hero .res__match { font-size: 1.6rem; }

/* ---------- How a line gets priced ---------- */
.priced { padding-block: clamp(84px, 10vw, 132px); background: var(--room); border-top: 1px solid var(--line); }
.priced__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.priced__lede { margin-top: 18px; color: var(--text-2); max-width: 46ch; }
.steps { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; counter-reset: s; }
.steps li { position: relative; padding-left: 46px; color: var(--text-2); max-width: 52ch; counter-increment: s; }
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: 1px;
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: #000; box-shadow: inset 0 0 0 1.5px rgba(255, 176, 0, 0.6);
  font-family: "Mona Sans Mono", monospace; font-weight: 800; font-size: 0.86rem; color: var(--amber);
}
.steps b { color: var(--text); }
.worksheet { width: 100%; }

/* ---------- Cashed ---------- */
.cashed {
  padding-block: clamp(84px, 10vw, 132px);
  background: radial-gradient(70% 55% at 50% 12%, #17181e 0%, #0b0c10 55%, #07080b 100%);
  border-top: 1px solid var(--line);
}
.cashed__stage { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 440px) minmax(0, 1fr); align-items: start; gap: clamp(20px, 4vw, 56px); }
.counter { overflow: hidden; border-radius: 4px; box-shadow: 0 40px 50px -26px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.05); }
.counter img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(0.9) contrast(1.06) brightness(0.86); }
.counter--left { margin-top: 90px; transform: rotate(-3.5deg); }
.counter--right { margin-top: 200px; transform: rotate(4deg); }
.counter--right img { object-position: 50% 82%; filter: saturate(0.85) contrast(1.1) brightness(0.72); }
.tape { position: relative; }
.tape__printer {
  position: relative; z-index: 2; height: 30px; margin: 0 -14px;
  border-radius: 7px 7px 4px 4px;
  background: linear-gradient(180deg, #353946 0%, #1a1c24 55%, #0f1016 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 18px -10px rgba(0, 0, 0, 0.9);
}
.tape__printer i { position: absolute; left: 12px; right: 12px; bottom: 6px; height: 4px; border-radius: 2px; background: #000; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 1); }
.tape__feed { overflow: hidden; margin-top: -8px; padding: 0 0 40px; filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.55)); }
.tape__paper {
  position: relative;
  padding: 26px 22px 34px;
  font-size: 0.84rem; line-height: 1.5;
  -webkit-mask: linear-gradient(#000 0 0) top / 100% calc(100% - 8px) no-repeat, conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) bottom / 12px 8px repeat-x;
  mask: linear-gradient(#000 0 0) top / 100% calc(100% - 8px) no-repeat, conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) bottom / 12px 8px repeat-x;
  transform: translateY(-101%);
}
.tape.is-fed .tape__paper { animation: feed 2.8s steps(28, end) forwards; }
@keyframes feed { to { transform: translateY(0); } }
.tp-head { text-align: center; padding-bottom: 12px; border-bottom: 1.5px solid var(--thermal-ink); }
.tp-head b { display: block; font-family: "Mona Sans", sans-serif; font-stretch: 125%; font-weight: 900; font-size: 1.2rem; letter-spacing: 0.02em; }
.tp-head span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--thermal-2); }
.tp-item { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2px 12px; padding: 12px 0; border-bottom: 1.5px dashed rgba(23, 24, 29, 0.22); }
.tp-item .when { grid-column: 1 / -1; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--thermal-2); }
.tp-item .what { display: flex; align-items: baseline; gap: 6px; font-weight: 700; }
.tp-item .what::after { content: ""; flex: 1; border-bottom: 1.5px dotted rgba(23, 24, 29, 0.3); transform: translateY(-3px); }
.tp-item .st { text-align: right; color: var(--thermal-2); font-weight: 600; }
.tp-item .res-line { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: baseline; font-weight: 800; }
.tp-item .res-line b { font-family: "Mona Sans", sans-serif; font-stretch: 125%; font-weight: 900; font-size: 1.25rem; }
.tp-item.is-lost .res-line { color: var(--thermal-2); }
.tp-item.is-lost .res-line b { font-weight: 700; text-decoration: line-through; text-decoration-thickness: 1.5px; }
.tp-foot { padding-top: 14px; text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--thermal-2); }
.tp-foot .barcode { margin: 0 auto 10px; max-width: 280px; }
.paid-stamp {
  position: absolute; left: 30%; bottom: 8px;
  padding: 3px 10px 2px; border: 3px solid var(--red); border-radius: 5px;
  color: var(--red);
  font-family: "Mona Sans", sans-serif; font-stretch: 125%; font-weight: 900; font-size: 1.2rem; letter-spacing: 0.08em; text-transform: uppercase;
  mix-blend-mode: multiply; opacity: 0;
  transform: rotate(-9deg) scale(1.5);
}
.tape.is-fed .paid-stamp { animation: stamp 0.5s var(--ease) 3s forwards; }
@keyframes stamp { to { opacity: 0.88; transform: rotate(-9deg) scale(1); } }

/* ---------- Every desk in the house ---------- */
.house { padding-block: clamp(84px, 10vw, 132px); background: var(--room); border-top: 1px solid var(--line); }
.house__wall { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: 280px 250px; gap: 8px; padding: 8px; background: #000; border-radius: 6px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06); }
.desk { position: relative; overflow: hidden; isolation: isolate; border-radius: 3px; display: flex; align-items: flex-end; background: #0a1026; }
.desk img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.1) brightness(0.66); transform: scale(1.02); transition: transform 1.2s var(--ease), filter 0.6s var(--ease); }
.desk::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.88) 100%), repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.26) 0 1px, transparent 1px 3px); }
.desk:hover img { transform: scale(1.06); filter: saturate(1) contrast(1.1) brightness(0.76); }
.desk__body { display: flex; flex-direction: column; gap: 8px; padding: 22px; max-width: 46ch; }
.desk__name { font-size: 1.6rem; }
.desk__body p { font-size: 0.92rem; color: #d4d8e4; }
.desk__price { display: inline-flex; align-items: center; gap: 7px; font-size: 0.74rem !important; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber) !important; }
.desk__price .i { width: 14px; height: 14px; color: var(--brass); }
.desk--props { grid-column: span 2; grid-row: span 2; }
.desk--props .desk__name { font-size: clamp(2rem, 3.4vw, 2.8rem); }
.desk--markets { grid-column: span 2; }
.desk--stocks img { object-position: 30% 40%; }

/* ---------- Pricing ---------- */
.cashier { padding-block: clamp(84px, 10vw, 132px); background: var(--room); border-top: 1px solid var(--line); }
.cashier__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.prices__note { margin-top: 14px; padding: 0 6px 4px; font-size: 0.88rem; color: var(--text-2); }
.prices__note b { color: var(--brass-hi); }
.packs__title { padding-bottom: 12px; font-family: "Mona Sans Mono", monospace; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.packs { border-top: 1px solid var(--line-2); }
.pack {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 1.35fr) 132px; align-items: center; gap: 16px;
  padding: 20px 8px; border-bottom: 1px solid var(--line);
}
.pack__name { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.pack__name b { font-stretch: 125%; font-weight: 900; font-size: 1.35rem; text-transform: uppercase; line-height: 1; }
.pack__tag { padding: 2px 7px; border-radius: 2px; background: var(--amber); color: var(--amber-ink); font-weight: 800; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.pack__credits b { display: block; font-stretch: 125%; font-weight: 900; font-size: 1.9rem; line-height: 1; color: var(--brass-hi); }
.pack__credits span, .pack__gets span { display: block; font-size: 0.8rem; color: var(--text-2); }
.pack__gets { font-size: 0.88rem; font-weight: 600; }
.pack__gets strong { display: block; font-stretch: 112%; font-weight: 800; font-size: 1.05rem; }
.pack .btn { width: 100%; }
.pack--popular { background: linear-gradient(90deg, rgba(255, 176, 0, 0.08), rgba(255, 176, 0, 0) 75%); }
.pack.is-picked { background: rgba(255, 176, 0, 0.1); }
.packs__fine { margin-top: 16px; font-size: 0.82rem; color: var(--text-3); }

/* ---------- The window (join) ---------- */
.window { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(84px, 10vw, 132px); border-top: 1px solid var(--line); }
.window__bg { position: absolute; inset: 0; z-index: -1; }
.window__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.1) brightness(0.55); }
.window__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 5, 7, 0.95) 0%, rgba(5, 5, 7, 0.8) 45%, rgba(5, 5, 7, 0.62) 100%), linear-gradient(180deg, rgba(5, 5, 7, 0.9), rgba(5, 5, 7, 0) 25%, rgba(5, 5, 7, 0) 75%, rgba(5, 5, 7, 0.95)); }
.window__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 480px); gap: clamp(40px, 6vw, 96px); align-items: center; }
.window .h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); max-width: 13ch; }
.window__list { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; font-weight: 600; font-size: 1.04rem; color: var(--text-2); }
.window__list li { display: flex; align-items: center; gap: 12px; }
.window__list .i { width: 26px; height: 26px; padding: 5px; border-radius: 3px; background: rgba(255, 176, 0, 0.12); color: var(--amber); stroke-width: 3; }
.teller { position: relative; padding: 2px; border-radius: 12px; background: var(--brass-surface); box-shadow: 0 50px 80px -40px rgba(0, 0, 0, 1); }
.teller__sign { padding: 10px 12px 8px; border-radius: 10px 10px 0 0; background: #000; }
.teller__glass { padding: clamp(22px, 3vw, 32px); background: linear-gradient(180deg, #111219, #0a0b10); }
.teller__slot { height: 22px; border-radius: 0 0 10px 10px; background: linear-gradient(180deg, #1a1c24, #0b0c10); box-shadow: inset 0 6px 8px -4px rgba(0, 0, 0, 1); }
.form { display: flex; flex-direction: column; gap: 16px; }
.form__title { font-size: 1.6rem; margin-bottom: 4px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 700; font-size: 0.9rem; }
.opt { font-weight: 500; color: var(--text-3); margin-left: 4px; }
.field input {
  height: 50px; width: 100%; padding: 0 14px;
  border: 1px solid rgba(238, 240, 246, 0.16); border-radius: 4px;
  background: #07080c; color: var(--text);
  font: inherit; font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:hover { border-color: rgba(238, 240, 246, 0.3); }
.field input:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(255, 176, 0, 0.22); }
.field input[aria-invalid="true"] { border-color: var(--error); box-shadow: 0 0 0 3px rgba(255, 138, 128, 0.16); }
.hint { font-size: 0.8rem; color: var(--text-3); }
.err { font-size: 0.84rem; font-weight: 600; color: var(--error); }
.err:empty { display: none; }
.form__submit { width: 100%; margin-top: 4px; white-space: normal; line-height: 1.2; padding-block: 10px; }
.form__fine { font-size: 0.8rem; color: var(--text-3); }
.form__fine a { color: var(--text); font-weight: 700; }
.chip-row { display: flex; align-items: center; gap: 10px; padding: 10px 8px 10px 12px; border-radius: 5px; background: rgba(215, 176, 115, 0.09); box-shadow: inset 0 0 0 1px rgba(215, 176, 115, 0.4); font-size: 0.86rem; font-weight: 600; }
.chip-row > .i { width: 20px; height: 20px; color: var(--brass-hi); }
.chip-row > span { flex: 1; }
.chip-row__x { display: grid; place-items: center; width: 32px; height: 32px; padding: 0; border: 0; border-radius: 3px; background: none; color: var(--text-2); cursor: pointer; }
.chip-row__x:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.chip-row__x .i { width: 16px; height: 16px; }
.done { display: flex; flex-direction: column; align-items: stretch; gap: 16px; }
.done:focus { outline: none; }
.done__lead { font-stretch: 125%; font-weight: 900; font-size: 1.6rem; text-transform: uppercase; line-height: 1; }
.ticket--small { --tear: 60px; padding-bottom: 78px; animation: feed-in 1.6s steps(16, end) both; }
.ticket--small .barcode { position: absolute; left: 20px; bottom: 16px; width: calc(100% - 40px); height: 30px; }
@keyframes feed-in { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }
.dt-big { display: block; margin: 10px 0 4px; font-stretch: 125%; font-weight: 900; font-size: 3.2rem; line-height: 0.9; }
.dt-row { display: flex; align-items: baseline; gap: 8px; padding: 5px 0; font-family: "Mona Sans Mono", monospace; font-size: 0.8rem; }
.dt-row span { display: flex; flex: 1; align-items: baseline; gap: 6px; }
.dt-row span::after { content: ""; flex: 1; border-bottom: 1.5px dotted rgba(23, 24, 29, 0.3); transform: translateY(-3px); }

/* ---------- Footer ---------- */
.foot { background: #000; border-top: 1px solid var(--line); padding-block: 48px 56px; font-size: 0.86rem; color: var(--text-3); }
.foot__grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 26px 48px; }
.foot__tag { margin-top: 14px; color: var(--text-2); }
.foot__links { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; }
.foot__links a { font-weight: 600; color: var(--text-2); text-decoration: none; }
.foot__links a:hover { color: var(--text); text-decoration: underline; }
.foot__rg, .foot__credits { grid-column: 1 / -1; max-width: 96ch; }
.foot__rg { padding-top: 22px; border-top: 1px solid var(--line); }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .wall__grid { grid-template-columns: minmax(0, 1fr) 350px; column-gap: 40px; }
  .board__grid { grid-template-columns: minmax(0, 1fr) 300px; }
  .bd { --cols: minmax(0, 1.3fr) minmax(0, 1.2fr) 88px 92px 140px; }
  .pack { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 130px; }
  .pack__gets { grid-column: 1 / 3; grid-row: 2; }
  .pack .btn { grid-column: 3; grid-row: 1 / 3; }
}

@media (max-width: 1080px) {
  .reserve__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .priced__grid, .cashier__grid { grid-template-columns: minmax(0, 1fr); }
  .board__grid { grid-template-columns: minmax(0, 1fr); }
  .slip { position: relative; top: 0; max-width: 460px; }
  .window__grid { grid-template-columns: minmax(0, 1fr); }
  .flow { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .flow::before { display: none; }
  .flow__step { display: grid; grid-template-columns: 34px minmax(0, 1fr); column-gap: 18px; }
  .flow__art { grid-column: 2; height: auto; min-height: 0; margin-bottom: 18px; }
  .flow__n { grid-column: 1; grid-row: 2 / span 2; margin: 0; }
  .flow__title, .flow__step p { grid-column: 2; }
}

@media (max-width: 900px) {
  .nav__toggle { display: grid; }
  .nav__right .nav__signin { display: none; }
  .nav__menu {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch;
    padding: 8px var(--gutter) 22px;
    background: rgba(5, 5, 7, 0.98); border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(0, 0, 0, 0.95);
  }
  .nav__menu.is-open { display: flex; }
  .nav__links { flex-direction: column; gap: 0; margin: 0; }
  .nav__links a { display: block; padding: 14px 0; font-size: 1.04rem; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__menu-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 18px; }
  .wall__grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "copy" "res" "board"; min-height: 0; }
  .wall__res { justify-self: center; width: min(100%, 420px); }
  .wall__screens { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); }
  .screen--a { grid-row: auto; }
  .screen--f { display: block; }
  .screen figcaption { display: none; }
  .wall__scrim { background: linear-gradient(180deg, rgba(5, 5, 7, 0.88) 0%, rgba(5, 5, 7, 0.78) 40%, rgba(5, 5, 7, 0.92) 100%); }
  .head { grid-template-columns: minmax(0, 1fr); margin-bottom: 32px; }
  .house__wall { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 300px 230px 230px; }
  .desk--markets { grid-column: span 2; }
  .desk--props { grid-row: auto; }
  .cashed__stage { grid-template-columns: minmax(0, 1fr); justify-items: center; }
  .counter { display: none; }
  .tape { width: min(100%, 440px); }
  .drawer { grid-template-columns: minmax(0, 1fr); }
  .guide__key { margin-left: 0; flex-basis: 100%; }
  .bd__head { display: none; }
  .bdr__main { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "game act" "pick pick" "edge pays"; gap: 10px 16px; }
  .bdr__game { grid-area: game; }
  .bdr__pick { grid-area: pick; }
  .bdr__edge { grid-area: edge; flex-direction: row; align-items: center; justify-content: flex-start; gap: 10px; }
  .bdr__edge::before { content: "Edge"; font-family: "Mona Sans Mono", monospace; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
  .bdr__pays { grid-area: pays; }
  .bdr__act { grid-area: act; align-self: start; }
  .bdr__act .btn { min-width: 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .brand__name { font-size: 0.92rem; }
  .brand__mark { width: 40px; height: 29px; }
  .nav__in { gap: 10px; }
  .nav__right { gap: 8px; }
  .nav__cta { padding: 0 0.8em; font-size: 0.74rem; min-height: 38px; }
  .nav__wallet { font-size: 0.8rem; }
  .hide-sm { display: none; }
  .wall__grid { padding-block: 22px 40px; gap: 26px; }
  .wall__title { font-size: clamp(2rem, 9.9vw, 2.8rem); font-stretch: 112%; }
  .wall__lede { margin-top: 16px; }
  .wall__actions { margin-top: 22px; }
  .wall__actions .btn { width: 100%; }
  .reserve__row { grid-template-columns: minmax(0, 1fr); }
  .reserve__row > * { width: min(100%, 420px); justify-self: center; }
  .house__wall { grid-template-columns: minmax(0, 1fr); grid-template-rows: none; grid-auto-rows: 250px; }
  .desk--props, .desk--markets { grid-column: auto; }
  .pack { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px 14px; }
  .pack__name { grid-column: 1 / -1; }
  .pack__gets { grid-column: 1 / -1; grid-row: auto; }
  .pack .btn { grid-column: 1 / -1; grid-row: auto; }
  .read { grid-template-columns: 96px minmax(0, 1fr) 48px; }
  .foot__grid { grid-template-columns: minmax(0, 1fr); }
  .chip, .sort { padding: 0 11px; }
  .mini-prices .mp { width: 64px; }
  .res__match { font-size: 1.25rem; }
  .res-slot--hero .res__match { font-size: 1.3rem; }
  .form__submit { font-size: 0.9rem; }
  .g-lg { display: inline-flex; flex-direction: row; align-items: baseline; gap: 8px; width: auto; height: 26px; margin-top: 4px; padding: 5px 12px 0 10px; border-radius: 0 4px 4px 0; background: #07080c; font-size: 0.82rem; }
  .mini-row { grid-template-columns: auto auto minmax(0, 1fr); gap: 10px 12px; }
  .mini-row__game { grid-column: 1 / -1; }
  .mini-row__num.is-money { justify-self: end; }
}

/* The established SuperBook, with a quieter hierarchy and clearer paths. */
.wall__grid { column-gap: clamp(36px, 4vw, 60px); }
.wall__copy { max-width: 790px; }
.wall__lede { max-width: 46ch; color: #cdd1dc; }
.wall__title { font-size: clamp(2.6rem, 5.1vw, 4.6rem); }
.wall__pricing { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; min-height: 30px; font-size: 0.86rem; color: var(--text-2); text-decoration: none; }
.wall__pricing:hover { color: var(--brass-hi); }
.wall__pricing .i, .text-link .i { transition: transform 0.25s var(--ease); }
.wall__pricing:hover .i, .text-link:hover .i { transform: translateX(4px); }
.wall__fine { color: var(--text-2); }
.wall__board { align-self: end; }
.wall__res { animation: ticket-arrive 0.8s var(--ease) both; }
@keyframes ticket-arrive { from { transform: translateY(18px) rotate(1deg); } to { transform: none; } }
.marquee { padding-right: 116px; min-height: 44px; }
.motion-toggle { position: absolute; right: 0; top: 0; height: 100%; min-height: 44px; padding: 0 12px; border: 0; border-left: 1px solid var(--line-2); background: var(--room); color: var(--text-2); font-size: 0.75rem; font-weight: 650; cursor: pointer; }
.motion-toggle:hover, .motion-toggle[aria-pressed="true"] { color: var(--amber); }
.nav__links a[aria-current="location"] { color: var(--text); }
.nav__links a[aria-current="location"]::after { transform: scaleX(1); }
.nav__signin, .foot__links a { display: inline-flex; align-items: center; min-height: 44px; }
.nav__links { gap: clamp(14px, 1.6vw, 26px); }
.btn--sm, .chip, .sort, .stake, .tl__x, .chip-row__x { min-height: 44px; }
.tl__x, .chip-row__x { min-width: 44px; }
.questions__grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(40px, 7vw, 100px); }
.questions h2 { max-width: 12ch; }
.questions__grid > div > p { color: var(--text-2); margin-top: 20px; max-width: 32ch; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--brass-hi); text-decoration: none; font-weight: 650; margin-top: 24px; min-height: 44px; }
.questions details { border-top: 1px solid var(--line-2); padding: 0 0 4px; }
.questions details:last-child { border-bottom: 1px solid var(--line-2); }
.questions summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; padding-block: 18px; list-style: none; cursor: pointer; font-size: 1.08rem; font-weight: 700; }
.questions summary::-webkit-details-marker { display: none; }
.questions summary .i { width: 18px; height: 18px; color: var(--brass); transition: transform 0.25s var(--ease); }
.questions details[open] summary .i { transform: rotate(45deg); }
.questions details p { padding: 0 32px 22px 0; color: var(--text-2); font-size: 0.96rem; max-width: 65ch; }
.form__intro { color: var(--text-2); }
.demo-entry { display: grid; gap: 12px; border-top: 1px solid var(--line-2); margin-top: 8px; padding-top: 22px; }
.demo-entry > p:first-child { font-size: 0.9rem; font-weight: 650; }
.tp-item .what { overflow-wrap: anywhere; }
.motion-paused .wall__title .ln, .motion-paused .wall__res, .motion-paused .res__seal::after,
.motion-paused .gb--live .gb__teams::before, .motion-paused .bdr__time.is-live::before,
.motion-paused .tape.is-fed .tape__paper, .motion-paused .tape.is-fed .paid-stamp { animation: none; }
.motion-paused .tape__paper { transform: none; }
.motion-paused .paid-stamp { opacity: 0.88; transform: rotate(-9deg); }
@media (min-width: 901px) and (max-height: 850px) {
  .wall__grid { padding-block: 28px; row-gap: 22px; }
  .wall__title { font-size: clamp(2.6rem, 4.6vw, 4.1rem); }
  .wall__lede { margin-top: 18px; }
  .wall__actions { margin-top: 22px; }
}

/* September: research access, the council and a changing settlement wall. */
.wall__grid { grid-template-columns: minmax(0, 1fr) 382px; gap: 28px 48px; }
.wall__title { font-size: clamp(2.6rem,4.8vw,4.3rem); }
.wall__board { padding: 0; background: #090b10; border: 1px solid var(--line-2); box-shadow: none; border-radius: 8px; overflow: hidden; }
.wall__board .housing__bar { padding: 15px 18px; margin: 0; border-bottom: 1px solid var(--line); }
.preview-columns { display: grid; grid-template-columns: minmax(0,1fr) 64px 102px; gap: 14px; padding: 10px 18px; font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-2); }
.preview-columns span:not(:first-child) { text-align: right; }
.preview-row button { width: 100%; display: grid; grid-template-columns: minmax(0,1fr) 64px 102px; gap: 14px; align-items: center; text-align: left; padding: 12px 18px; border: 0; border-top: 1px solid var(--line); background: transparent; cursor: pointer; transition: background .2s; }
.preview-row button:hover { background: #141821; }
.preview-game { min-width: 0; display: grid; gap: 2px; }
.preview-game small { color: var(--text-2); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.preview-game b { font-size: 14px; font-weight: 750; }
.preview-game > span { display: flex; align-items: center; gap: 5px; color: var(--text-2); font-size: 12px; }
.preview-edge, .preview-return { font-variant-numeric: tabular-nums; font-weight: 800; font-size: 18px; text-align: right; color: var(--ice); }
.preview-return { color: var(--green); }
.preview-edge small, .preview-return small { display: block; color: var(--text-2); font-size: 10px; font-weight: 400; }
.preview-foot { padding: 12px 18px; font-size: 11px; color: var(--text-2); border-top: 1px solid var(--line-2); }
.preview-foot span { color: var(--text); margin-right: 10px; }
.res-slot--hero { filter: none; }
.res.vault-ticket { padding: 0; border: 1px solid #806b48; border-radius: 10px; background: #0b0d12; mask: none; -webkit-mask: none; overflow: hidden; box-shadow: 0 24px 48px -24px #000; }
.vault-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; color: var(--brass-hi); font-family: 'Mona Sans Mono',monospace; font-size: 11px; letter-spacing: .06em; }
.vault-ticket .res__photo { aspect-ratio: 1.9; }
.vault-ticket .res__photo img { filter: brightness(.6) saturate(.65); }
.vault-photo-caption { position: absolute; z-index: 1; inset: auto 20px 18px; }
.vault-photo-caption > span { font-family: 'Mona Sans Mono',monospace; color: var(--brass-hi); font-size: 10px; letter-spacing: .08em; }
.vault-photo-caption strong { display: block; font-stretch: 112%; font-size: 26px; font-weight: 850; line-height: 1.05; margin-top: 8px; }
.vault-ticket .res__main { padding: 22px 20px 18px; gap: 18px; }
.vault-identity { display: flex; align-items: center; gap: 12px; }
.vault-identity > .i { width: 36px; height: 36px; padding: 8px; border: 1px solid #806b48; border-radius: 5px; color: var(--brass); }
.vault-ticket .res__match { padding: 0; margin: 0; font-size: 16px; font-weight: 750; font-stretch: 100%; text-transform: none; }
.vault-identity p { font-size: 12px; color: var(--text-2); margin-top: 4px; }
.vault-ticket .res__facts { display: grid; grid-template-columns: 1fr 1fr; border-block: 1px solid var(--line); padding-block: 16px; }
.vault-ticket .res__facts dd { font-size: 24px; color: var(--brass-hi); }
.vault-ticket .res__facts dd small { font-size: 12px; font-weight: 500; color: var(--text-2); }
.vault-ticket .res__facts dt { font-size: 11px; }
.vault-ticket .sealbar, .bdr .sealbar { background: #17171b; border: 1px solid #514632; box-shadow: none; padding: 12px; font-size: 11px; white-space: normal; }
.vault-includes { display: flex; gap: 12px; flex-wrap: wrap; color: var(--text-2); font-size: 11px; margin-top: -6px; }
.vault-includes span::before { content: ''; display: inline-block; width: 3px; height: 3px; background: var(--brass); margin: 0 5px 3px 0; }
.vault-payout { display: grid; grid-template-columns: 1fr auto; gap: 3px 12px; font-size: 12px; }
.vault-payout b { font-size: 20px; color: var(--green); font-variant-numeric: tabular-nums; }
.vault-payout small { grid-column: 1/-1; color: var(--text-2); font-size: 10px; }
.vault-ticket .res__foot { margin: 0; padding: 0; border: 0; }
.vault-ticket .res__unlock { justify-content: flex-start; font-size: 12px; min-height: 50px; }
.vault-ticket .res__unlock > span { margin-left: auto; padding-left: 14px; border-left: 1px solid #806b48; }
.vault-ticket .res__stamp { position: static; align-self: start; background: var(--brass); color: var(--brass-ink); transform: none; }
.vault-ticket.is-open .vault-includes { color: var(--brass-hi); }
.how .head { grid-template-columns: 1.15fr 1fr; }
.how .h2 { max-width: 19ch; }
.access-stage { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.4fr); gap: 64px; align-items: center; }
.access-tabs { display: grid; border-top: 1px solid var(--line-2); }
.access-tabs button { display: flex; align-items: center; gap: 16px; background: none; border: 0; border-bottom: 1px solid var(--line-2); padding: 20px 0; text-align: left; color: var(--text-2); cursor: pointer; font-size: 18px; font-weight: 700; }
.access-tabs button span { font-family: 'Mona Sans Mono',monospace; font-size: 12px; color: var(--text-3); }
.access-tabs button[aria-pressed=true] { color: var(--brass-hi); }
.access-tabs button[aria-pressed=true] span { color: var(--amber); }
.access-copy { min-height: 180px; padding-top: 30px; }
.access-copy h3 { font-size: 23px; line-height: 1.2; font-weight: 750; }
.access-copy p { margin-top: 14px; color: var(--text-2); font-size: 15px; }
.access-note { color: var(--text-2); font-size: 12px; max-width: 36ch; margin-top: 20px; }
.access-demo { background: #0b0d12; border: 1px solid var(--line-2); border-radius: 8px; overflow: hidden; }
.access-demo__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 24px; font-weight: 700; }
.tier-selector { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-block: 1px solid var(--line-2); }
.tier-selector button { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; padding: 16px 14px; border: 0; border-right: 1px solid var(--line-2); background: transparent; text-align: left; cursor: pointer; transition: background .25s; }
.tier-selector button:last-child { border-right: 0; }
.tier-selector button > span { font-size: 11px; min-height: 30px; color: var(--text-2); }
.tier-selector button b { font-stretch: 112%; font-size: 32px; line-height: 1; }
.tier-selector button small { font-size: 11px; font-weight: 400; margin-left: 4px; }
.tier-selector button[aria-pressed=true] { background: var(--brass-surface); color: var(--brass-ink); }
.tier-selector button[aria-pressed=true] > span { color: var(--brass-ink); }
.access-ticket { padding: 26px 24px; }
.access-ticket__identity { display: flex; align-items: center; gap: 15px; }
.access-ticket__identity > .i { color: var(--brass); width: 24px; height: 24px; }
.access-ticket__identity span { display: block; font-size: 11px; color: var(--brass); text-transform: uppercase; letter-spacing: .06em; }
.access-ticket__identity strong { font-size: 19px; font-weight: 650; line-height: 1.3; display: block; margin-top: 5px; }
.access-facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.access-facts dt { color: var(--text-2); font-size: 11px; min-height: 34px; }
.access-facts dd { font-size: 22px; font-weight: 800; font-variant-numeric: tabular-nums; }
.access-facts dd small { font-weight: 400; font-size: 10px; }
.access-research { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 16px; }
.access-research span { font-size: 11px; color: var(--text-2); background: #151923; padding: 7px 10px; border-radius: 3px; transition: background .3s,color .3s; }
.access-demo[data-stage="1"] .access-research span, .access-demo[data-stage="2"] .access-research span { color: var(--brass-hi); background: #292315; }
#access-explainer { color: var(--text-2); font-size: 12px; min-height: 40px; }
.access-demo__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 14px 24px; border-top: 1px solid var(--line); }
.access-demo__bottom > span { font-size: 10px; color: var(--text-2); max-width: 24ch; }
.access-demo__bottom .text-link { margin: 0; padding: 0; border: 0; background: none; font-size: 12px; white-space: nowrap; cursor: pointer; }
.board-intro { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 20px 0; border-block: 1px solid var(--line-2); color: var(--text-2); font-size: 13px; }
.board-intro > div { display: flex; align-items: center; gap: 14px; max-width: 52ch; }
.board-intro .i { width: 22px; height: 22px; color: var(--brass); }
.board-intro b { display: block; color: var(--text); font-size: 14px; font-weight: 700; }
.schedule-disclosure { margin: 0 0 28px; border-bottom: 1px solid var(--line); }
.schedule-disclosure > summary { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; list-style: none; color: var(--text-2); cursor: pointer; font-size: 13px; }
.schedule-disclosure > summary::-webkit-details-marker { display: none; }
.schedule-disclosure .guide { margin-block: 0 20px; }
.bd { border: 1px solid var(--line-2); border-radius: 6px; overflow: hidden; }
.bd__head { padding-block: 16px; background: #12151c; color: var(--text-2); }
.bdr { background: #090b10; }
.bdr__main { padding-block: 22px; }
.bdr__teams { font-size: 15px; }
.bdr__act .btn { border-radius: 4px; background: #262013; box-shadow: none; color: var(--brass-hi); }
.bdr__act .btn:hover { background: #3b301b; }
.bdr.is-armed .bdr__act .btn { background: var(--brass); color: var(--brass-ink); }
.edgebar { display: none; }
.bd__foot { padding: 16px; font-size: 12px; }
.council { position: relative; isolation: isolate; background: #08090c; }
.council-backdrop { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.council-backdrop img { width: 100%; height: 100%; object-fit: cover; opacity: .16; filter: saturate(.4); }
.council-backdrop::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,#08090c 8%,transparent 90%); }
.council-grid { display: grid; grid-template-columns: 1fr 1.12fr; gap: 70px; align-items: center; }
.council-copy .h2 { font-size: clamp(38px,4.5vw,60px); line-height: .96; }
.council-copy em { font-style: normal; color: var(--brass-hi); }
.council-copy p { margin-top: 28px; color: var(--text-2); max-width: 41ch; font-size: 16px; }
.council-console { border-top: 2px solid var(--brass); background: #0b0d13; }
.console-heading { display: flex; justify-content: space-between; gap: 16px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.console-heading span:first-child { font-family: 'Mona Sans Mono',monospace; font-size: 11px; color: var(--brass-hi); }
.console-heading span:last-child { font-size: 11px; color: var(--text-2); }
.council-channels button { width: 100%; display: flex; align-items: center; gap: 18px; padding: 24px; background: none; border: 0; border-bottom: 1px solid var(--line); text-align: left; cursor: pointer; }
.channel-index { width: 24px; font-family: 'Mona Sans Mono',monospace; font-size: 12px; color: var(--text-3); }
.council-channels b { display: block; font-weight: 700; font-size: 18px; }
.council-channels small { display: block; margin-top: 4px; color: var(--text-2); font-size: 12px; }
.council-channels .i { margin-left: auto; width: 18px; height: 18px; color: var(--text-3); transform: rotate(-45deg); transition: transform .3s; }
.council-channels [aria-pressed=true] { background: #171611; }
.council-channels [aria-pressed=true] b, .council-channels [aria-pressed=true] .channel-index { color: var(--brass-hi); }
.council-channels [aria-pressed=true] .i { color: var(--brass); transform: rotate(0); }
.council-verdict { padding: 24px; min-height: 152px; }
.council-verdict > span { color: var(--brass-hi); font-size: 12px; }
.council-verdict p { font-size: 15px; color: var(--text); margin-top: 10px; }
.council-foot { padding: 0 24px 24px; color: var(--text-2); font-size: 11px; }
.results-wall { background: #050507; }
.settlement-display { border: 1px solid #343941; background: #101217; border-radius: 8px; overflow: hidden; box-shadow: 0 28px 56px -35px #000; }
.settlement-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 20px; border-bottom: 1px solid #343941; }
.settlement-header > span { font-family: 'Mona Sans Mono',monospace; font-size: 13px; color: var(--brass-hi); }
.settlement-header > div { display: flex; gap: 8px; }
.result-control { background: transparent; color: var(--text-2); border: 1px solid var(--line-2); border-radius: 4px; min-width: 44px; min-height: 44px; padding: 0 12px; cursor: pointer; font-size: 12px; }
.result-control:hover:not(:disabled) { background: #222732; color: var(--text); }
.result-control:disabled { opacity: .4; cursor: default; }
.settlement-columns, .settlement-row { display: grid; grid-template-columns: 100px minmax(0,1fr) 130px; gap: 30px; padding-inline: 28px; align-items: center; }
.settlement-columns { padding-block: 12px; color: var(--text-2); text-transform: uppercase; font-size: 10px; letter-spacing: .1em; }
.settlement-columns > :last-child { text-align: center; }
.settlement-rows { min-height: 424px; perspective: 1000px; }
.settlement-row { min-height: 106px; padding-block: 20px; border-top: 1px solid #272c35; background: #0b0d12; }
.settlement-row:nth-child(even) { background: #101318; }
.settlement-row time { font-family: 'Mona Sans Mono',monospace; font-size: 13px; color: var(--text-2); }
.settlement-row small { font-family: 'Mona Sans Mono',monospace; font-size: 10px; letter-spacing: .05em; color: var(--text-2); }
.settlement-row h3 { font-size: clamp(17px,2vw,25px); font-weight: 750; line-height: 1.2; margin-top: 6px; overflow-wrap: anywhere; }
.result-stamp { display: grid; place-items: center; min-height: 58px; border: 1px solid #39453e; background: #14231b; font-family: 'Mona Sans Mono',monospace; font-size: 26px; letter-spacing: .1em; color: var(--green); border-radius: 3px; }
.is-loss .result-stamp { background: #1b1e24; border-color: #424754; color: #b4bac7; }
.is-push .result-stamp { background: #252013; border-color: #504734; color: var(--brass-hi); }
.settlement-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #343941; padding: 18px 24px; color: var(--text-2); font-family: 'Mona Sans Mono',monospace; font-size: 11px; }
.settlement-footer .text-link { padding: 0; border: 0; background: none; margin: 0; font-size: 12px; cursor: pointer; }
.results-state { min-height: 424px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 50px 24px; text-align: center; color: var(--text-2); }
.results-state strong { font-size: 26px; color: var(--text); max-width: 30ch; line-height: 1.2; }
.results-state p { max-width: 46ch; margin-top: 14px; font-size: 15px; }
@media(max-width:1080px) {
  .wall__grid { grid-template-columns: minmax(0,1fr) 340px; gap: 30px; }
  .access-stage { gap: 30px; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); }
  .council-grid { gap: 40px; }
  .console-heading { flex-wrap: wrap; }
}
@media(max-width:900px) {
  .wall__grid { grid-template-columns: minmax(0,1fr); grid-template-areas: 'copy' 'res' 'board'; }
  .wall__title { font-size: clamp(2.3rem,6.6vw,4rem); }
  .wall__res { width: min(100%,420px); }
  .access-stage, .council-grid, .how .head { grid-template-columns: minmax(0,1fr); }
  .access-tabs { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .access-tabs button { padding: 18px 10px 18px 0; font-size: 15px; align-items: flex-start; }
  .access-copy { min-height: 0; }
  .access-note { max-width: none; }
  .board-intro { align-items: flex-start; }
  .council-copy .h2 { max-width: 16ch; }
}
@media(max-width:640px) {
  .wall__title { font-size: clamp(1.85rem,9.6vw,3rem); }
  .preview-columns,.preview-row button { grid-template-columns: minmax(0,1fr) 46px 85px; gap: 8px; padding-inline: 12px; }
  .preview-game b { font-size: 12px; }
  .preview-game > span { font-size: 10px; }
  .preview-edge,.preview-return { font-size: 15px; }
  .preview-columns { font-size: 9px; }
  .preview-foot { padding: 12px; line-height: 1.6; }
  .preview-foot span { display: block; }
  .access-tabs button { flex-direction: column; gap: 8px; font-size: 14px; }
  .access-demo__top { padding: 18px 16px; }
  .access-demo__top .tag-sample { font-size: 9px; }
  .tier-selector button { padding: 14px 10px; gap: 16px; }
  .tier-selector button > span { font-size: 10px; }
  .tier-selector button b { font-size: 26px; }
  .access-ticket { padding: 24px 16px; }
  .access-ticket__identity strong { font-size: 17px; }
  .access-facts { gap: 8px; }
  .access-facts dt { font-size: 10px; }
  .access-facts dd { font-size: 19px; }
  .access-facts dd small { display: block; }
  .access-demo__bottom { padding: 14px 16px; flex-wrap: wrap; gap: 10px; }
  .access-demo__bottom > span { max-width: none; }
  .board-intro { flex-direction: column; gap: 18px; }
  .council-channels button { padding: 22px 16px; gap: 12px; }
  .council-channels b { font-size: 16px; }
  .council-channels small { font-size: 11px; }
  .council-verdict { min-height: 168px; }
  .settlement-header { padding: 16px; flex-wrap: wrap; gap: 14px; }
  .settlement-header > span { font-size: 11px; }
  .settlement-header > div { width: 100%; }
  #results-pause { margin-right: auto; }
  .settlement-columns { display: none; }
  .settlement-row { grid-template-columns: minmax(0,1fr) 70px; gap: 8px 14px; padding: 18px 16px; min-height: 130px; }
  .settlement-row time { grid-column: 1; font-size: 11px; }
  .settlement-row > div { grid-column: 1; }
  .settlement-row .result-stamp { grid-column: 2; grid-row: 1/3; font-size: 18px; min-height: 52px; }
  .settlement-row h3 { font-size: 17px; }
  .settlement-rows { min-height: 520px; }
  .results-state { min-height: 520px; }
  .settlement-footer { padding: 16px; flex-wrap: wrap; gap: 10px; }
}
@media(prefers-reduced-motion:reduce) {
  .tier-selector button, .access-research span, .council-channels .i { transition: none; }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .nav__links { gap: 14px; margin-left: 0; }
  .nav__links a { font-size: 0.78rem; }
  .nav__right { gap: 12px; }
  .brand { gap: 8px; }
  .brand__name { font-size: 0.98rem; }
}
@media (max-width: 900px) {
  .wall__title { font-size: clamp(2.2rem, 6.5vw, 4rem); }
  .wall__grid { gap: 32px; }
  .wall__board { width: 100%; }
  .questions__grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .nav__cta { min-height: 44px; }
  .nav__wallet { display: none; }
  .wall__title { font-size: clamp(1.85rem, 9.6vw, 3rem); }
  .wall__lede { font-size: 1rem; line-height: 1.6; }
  .wall__actions { gap: 10px; margin-top: 22px; }
  .wall__fine { font-size: 0.77rem; }
  .wall__pricing { min-height: 44px; margin-top: 2px; }
  .wall__grid { padding-top: 28px; gap: 24px; }
  .wall__res { width: min(100%, 420px); }
  .wall__scrim { background: linear-gradient(180deg, rgba(5, 5, 7, 0.9), rgba(5, 5, 7, 0.72) 40%, rgba(5, 5, 7, 0.96)); }
  .marquee { padding-right: 104px; }
  .motion-toggle { padding-inline: 8px; font-size: 0.7rem; }
  .res__tags { gap: 4px; left: 10px; right: 10px; }
  .res__tag { font-size: 0.65rem; padding-inline: 6px; }
  .housing__bar { flex-wrap: wrap; }
  .questions summary { font-size: 1rem; }
  .questions details p { padding-right: 0; }
  .slipbar { bottom: max(12px, env(safe-area-inset-bottom)); }
}
@media (max-width: 360px) {
  .brand { gap: 6px; }
  .brand__name { font-size: 0.78rem; }
  .brand__mark { display: none; }
  .nav__in { gap: 6px; }
  .nav__right { gap: 6px; }
  .res__tag--sample { display: none; }
  .res__facts { gap: 8px; }
  .mini-prices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .mini-prices .mp { width: 100%; min-height: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wall__title .ln, .wall__res, .res__seal::after, .ticket--small, .tl,
  .drawer, .res__confirm, .res__stamp, .slipbar, .nav__wallet.is-flash,
  .res.is-open .res__reveal, .gb--live .gb__teams::before, .bdr__time.is-live::before,
  .tape.is-fed .tape__paper, .tape.is-fed .paid-stamp { animation: none; }
  .btn, .res__photo img, .res__seal, .res__seal img, .questions summary .i { transition: color 0.15s, background-color 0.15s; }
  .btn:hover, .btn:active, .res:hover .res__photo img, .res:hover .res__seal { transform: none; }
  .tape__paper { transform: none; }
  .paid-stamp { opacity: 0.88; transform: rotate(-9deg); }
}
