/* Hallmark · pre-emit critique: P5 H5 E4 S5 R4 V5
 * genre: atmospheric · macrostructure: Stat-Led (action) / Catalogue (standings)
 *   / Map-Diagram (draw) · theme: Lumen · drop: night · design-system: design.md
 * designed-as-app · nav: N2 floating chip · footer: Ft4 dense colophon
 * enrichment: none — function carries an app
 * DEPARTURE: display type is UPPERCASE, not Lumen's lowercase. Owner's call,
 *   recorded in design.md. Registers stay separable by face + tracking.
 */

@import url("tokens.css");

/* ---------------------------------------------------------------- reset */

* { box-sizing: border-box; }
html { color-scheme: dark; }

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* The instrument's light. One emitter, top-anchored — never a floating orb. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(90% 55% at 50% -8%, var(--color-paper-emit) 0%, transparent 68%),
    var(--color-paper);
}

h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }

/* Every number is tabular. Lumen's rule, and a league table's requirement. */
.mono, .num, .figure, table.league td, .seat .pos, .seat .pts, .seat .bpts {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.wrap {
  max-width: 60rem; margin: 0 auto;
  padding:
    calc(var(--space-lg) + env(safe-area-inset-top))
    calc(var(--space-sm) + env(safe-area-inset-right))
    calc(var(--space-2xl) + env(safe-area-inset-bottom))
    calc(var(--space-sm) + env(safe-area-inset-left));
  display: flex; flex-direction: column; gap: var(--space-lg);
}

/* --- the two type registers ------------------------------------------- */
/* Display: Instrument Serif, uppercase, tight. Label: mono, uppercase,
   tracked wide. Same case, so face and tracking carry the contrast. */

.display, .masthead h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.04;          /* never below 1.0: caps collide on wrap */
  overflow-wrap: anywhere; min-width: 0;
  color: var(--color-ink);
}

.eyebrow, .grouphead, table.league th, .bountybar, .colophon dt {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-3);
  font-weight: 500;
}

/* ------------------------------------------------------------ masthead */

.masthead {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: var(--rule-hair) solid var(--color-rule);
}
.masthead h1 { font-size: var(--text-2xl); }
.suits { letter-spacing: 0.16em; font-size: var(--text-sm); color: var(--color-ink-3); }
.suits .r { color: var(--color-accent-2); }

.datefield { display: flex; flex-direction: column; gap: var(--space-3xs); align-items: flex-start; }
.datefield input {
  font-family: var(--font-mono); font-size: var(--text-md);
  color: var(--color-ink); background: var(--color-paper-2);
  border: var(--rule-hair) solid var(--color-rule);
  border-radius: var(--radius-input); padding: var(--space-2xs) var(--space-xs);
}
.datefield input:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 2px; }

/* ------------------------------------------------- N2 · floating chip nav */

nav.tabs {
  display: flex; gap: var(--space-3xs);
  padding: var(--space-3xs);
  background: var(--color-paper-2);
  border: var(--rule-hair) solid var(--color-rule);
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
nav.tabs button {
  appearance: none; cursor: pointer;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  padding: var(--space-2xs) var(--space-sm);
  min-height: 40px;
  border: none; background: transparent; color: var(--color-ink-3);
  border-radius: var(--radius-pill);
  transition: color var(--dur-settle) var(--settle),
              background var(--dur-settle) var(--settle);
}
nav.tabs button:hover { color: var(--color-ink); }
nav.tabs button:active { transform: scale(0.97); transition: transform var(--dur-tap-in) var(--tap-in); }
nav.tabs button[aria-current="page"] {
  background: var(--color-paper-3); color: var(--color-ink);
}
nav.tabs button:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 2px; }

/* --------------------------------------------- Stat-Led · the figure ---- */
/* The count is the hero. Everything under it qualifies it. */

.roster { display: flex; flex-direction: column; gap: var(--space-lg); }

.rostertop {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--space-md); flex-wrap: wrap;
}
.count { display: flex; align-items: baseline; gap: var(--space-xs); }
.count-n {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: var(--text-figure); font-weight: 500; line-height: 0.86;
  letter-spacing: -0.04em; color: var(--color-ink);
}
.count-meta { display: flex; flex-direction: column; gap: var(--space-3xs); }
.count-l, .count-sub {
  font-family: var(--font-mono); font-size: var(--text-xs);
  letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap;
}
.count-l { color: var(--color-ink-2); }
.count-sub { color: var(--color-ink-3); }

.finder { flex: 1 1 14rem; max-width: 22rem; display: block; }
.finder input {
  width: 100%;
  font-family: var(--font-body); font-size: var(--text-md); color: var(--color-ink);
  background: var(--color-paper-2); border: var(--rule-hair) solid var(--color-rule);
  border-radius: var(--radius-pill); padding: var(--space-2xs) var(--space-sm);
  min-height: 44px;
}
.finder input::placeholder { color: var(--color-ink-3); }
.finder input:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 2px; }

.group { display: flex; flex-direction: column; gap: var(--space-2xs); }
.grouphead { display: flex; align-items: baseline; gap: var(--space-2xs); }
.groupn {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  letter-spacing: 0; color: var(--color-ink-2);
}
.group .hint { color: var(--color-ink-3); font-size: var(--text-sm); max-width: 62ch; }

/* Roster rows are a hairline register, not a deck of cards — the cards
   belong to the draw, where they mean something. */
.names { display: flex; flex-direction: column; }

.name {
  appearance: none; text-align: left; cursor: pointer; width: 100%;
  font-family: var(--font-body); font-size: var(--text-md); font-weight: 500;
  color: var(--color-ink); background: transparent;
  border: none; border-bottom: var(--rule-hair) solid var(--color-rule);
  padding: var(--space-xs) var(--space-2xs); min-height: 48px;
  display: flex; align-items: center; gap: var(--space-xs);
  transition: background var(--dur-settle) var(--settle);
}
.name:hover { background: var(--color-paper-2); }
.name:active { transform: scale(0.995); transition: transform var(--dur-tap-in) var(--tap-in); }
.name:focus-visible { outline: 2px solid var(--color-focus); outline-offset: -2px; }
.name[disabled] { cursor: default; color: var(--color-ink-3); }

.name .mark {
  flex: none; width: 18px; height: 18px; border-radius: 50%;
  border: var(--rule-hair) solid var(--color-rule-2);
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: transparent;
  transition: background var(--dur-settle) var(--settle);
}
.name[data-s="in"] .mark {
  background: var(--color-good); border-color: var(--color-good);
  color: var(--color-paper);
}
.name[data-s="in"] { color: var(--color-ink); }
.name .who { flex: 1; min-width: 0; }
.name .bounty { flex: none; color: var(--color-accent); font-size: var(--text-sm); }

.empty {
  font-family: var(--font-mono); font-size: var(--text-xs);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-ink-3); padding: var(--space-sm) 0;
  border-bottom: var(--rule-hair) solid var(--color-rule);
}

/* ------------------------------------------------------------- buttons */

.btn {
  appearance: none; cursor: pointer;
  font-family: var(--font-body); font-size: var(--text-md); font-weight: 600;
  padding: var(--space-2xs) var(--space-md); min-height: 44px;
  border-radius: var(--radius-pill);
  border: var(--rule-hair) solid var(--color-accent);
  background: var(--color-accent); color: var(--color-accent-ink);
  transition: filter var(--dur-settle) var(--settle);
}
.btn:hover { filter: brightness(1.08); }
.btn:active { transform: scale(0.97); transition: transform var(--dur-tap-in) var(--tap-in); }
.btn:focus-visible { outline: 2px solid var(--color-ink); outline-offset: 2px; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; filter: none; }

.btn.ghost {
  background: var(--color-paper-2); color: var(--color-ink);
  border-color: var(--color-rule-2);
}
.btn.ghost:hover { background: var(--color-paper-3); filter: none; }
.btn.danger { background: transparent; color: var(--color-warn); border-color: var(--color-warn); }
.btn.danger:hover { background: var(--color-warn-wash); filter: none; }
.btn.sm { padding: var(--space-3xs) var(--space-xs); font-size: var(--text-sm); min-height: 36px; }

.btnrow { display: flex; flex-wrap: wrap; gap: var(--space-2xs); align-items: center; }

input.text {
  font-family: var(--font-body); font-size: var(--text-md); color: var(--color-ink);
  background: var(--color-paper-2); border: var(--rule-hair) solid var(--color-rule);
  border-radius: var(--radius-input); padding: var(--space-2xs) var(--space-xs);
  min-width: 12rem; min-height: 44px;
}
input.text::placeholder { color: var(--color-ink-3); }
input.text:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 1px; }

.panel {
  background: var(--color-paper-2); border: var(--rule-hair) solid var(--color-rule);
  border-radius: var(--radius-card); padding: var(--space-sm);
  display: flex; flex-direction: column; gap: var(--space-sm);
}

section { display: flex; flex-direction: column; gap: var(--space-sm); }
.sechead { display: flex; flex-direction: column; gap: var(--space-3xs); }
.sechead h2 { font-family: var(--font-display); text-transform: uppercase;
  font-size: var(--text-xl); line-height: 1.06; letter-spacing: -0.005em; }
.sechead p, .hint { color: var(--color-ink-3); font-size: var(--text-sm); max-width: 62ch; }

/* --------------------------------------- Map / Diagram · the draw ------ */
/* A seating draw is spatial. The room is the layout; each table is a felt
   disc with its seats read around the rim. */

.tables {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--space-md);
}

.table {
  background: var(--color-paper-2);
  border: var(--rule-hair) solid var(--color-rule);
  border-radius: var(--radius-card);
  overflow: hidden; display: flex; flex-direction: column;
  animation: deal var(--dur-arrive) var(--arrive) both;
}
@keyframes deal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.table:nth-child(2) { animation-delay: 0.05s; }
.table:nth-child(3) { animation-delay: 0.10s; }
.table:nth-child(4) { animation-delay: 0.15s; }

.table > header {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--space-2xs);
  padding: var(--space-xs) var(--space-sm);
  border-bottom: var(--rule-hair) solid var(--color-rule);
}
.table > header .t {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: var(--text-lg); line-height: 1.05; color: var(--color-ink);
}
.table > header .sz {
  font-family: var(--font-mono); font-size: var(--text-xs);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-ink-3);
}

.seats { list-style: none; margin: 0; padding: var(--space-3xs) 0; }
.seat {
  display: flex; align-items: center; gap: var(--space-2xs);
  padding: var(--space-3xs) var(--space-sm); width: 100%; text-align: left;
  border: none; background: transparent; color: var(--color-ink-2);
  font-family: var(--font-body); font-size: var(--text-sm); line-height: 1.4;
  min-height: 36px;
}
button.seat { cursor: pointer; transition: background var(--dur-settle) var(--settle); }
button.seat:hover { background: var(--color-paper-3); }
button.seat:focus-visible { outline: 2px solid var(--color-focus); outline-offset: -2px; }

.seat .pos { flex: none; width: 1.4rem; font-size: var(--text-xs); color: var(--color-ink-3); }
.seat[data-done="1"] .pos { color: var(--color-good); font-weight: 700; }
.seat .nm { flex: 1; min-width: 0; display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-3xs); }
.seat .ptsgroup { flex: none; display: flex; align-items: baseline; gap: var(--space-3xs); font-size: var(--text-xs); font-weight: 500; }
.seat .pts  { color: var(--color-good); }
.seat .bpts { color: var(--color-accent); }

/* Carrying a bounty — a target, not a tally. */
.seat .target {
  padding: var(--space-3xs) var(--space-2xs); border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: var(--text-xs);
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--color-accent-wash); color: var(--color-accent);
  white-space: nowrap;
}

.seat .extras { display: flex; gap: var(--space-3xs); align-items: center; flex: none; }
.seat .extras button {
  appearance: none; cursor: pointer; width: 26px; height: 26px;
  border-radius: var(--radius-input); border: var(--rule-hair) solid var(--color-rule-2);
  background: var(--color-paper); color: var(--color-ink-3);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 700; line-height: 1;
}
.seat .extras button:hover:not([disabled]) { border-color: var(--color-accent); color: var(--color-accent); }
.seat .extras button[disabled] { opacity: 0.3; cursor: not-allowed; }
.seat .exval {
  min-width: 1.6rem; text-align: center; color: var(--color-accent);
  font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 500;
}
.seat .exval.zero { color: var(--color-ink-3); font-weight: 400; }

.bountybar {
  display: flex; align-items: center; gap: var(--space-2xs);
  padding: var(--space-3xs) var(--space-sm);
  color: var(--color-accent); background: var(--color-accent-wash);
  border-bottom: var(--rule-hair) solid var(--color-rule);
}
.bountybar .tally-b { margin-left: auto; color: var(--color-ink-3); letter-spacing: 0.06em; }
.bountybar .tally-b.over { color: var(--color-warn); font-weight: 700; }

.keyline {
  display: flex; flex-direction: column; gap: var(--space-2xs);
  padding: var(--space-sm); border-radius: var(--radius-card);
  border: var(--rule-hair) solid var(--color-rule); background: var(--color-paper-2);
  font-size: var(--text-sm); color: var(--color-ink-3); line-height: 1.5;
}
.keyline > span { display: flex; align-items: baseline; gap: var(--space-2xs); }
.keyline .k-target, .keyline .k-pts, .keyline .k-bpts {
  flex: none; min-width: 5rem; text-align: right;
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: var(--text-xs); font-weight: 500;
}
.keyline .k-target { color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.06em; }
.keyline .k-pts  { color: var(--color-good); }
.keyline .k-bpts { color: var(--color-accent); }

/* --------------------------------------------------------- copy blocks */

.out { background: var(--color-paper-2); border: var(--rule-hair) solid var(--color-rule); border-radius: var(--radius-card); overflow: hidden; }
.out > header {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-2xs);
  padding: var(--space-2xs) var(--space-sm);
  border-bottom: var(--rule-hair) solid var(--color-rule);
}
.out > header h3 {
  font-family: var(--font-mono); font-size: var(--text-xs);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-ink-3);
}
.out pre {
  margin: 0; padding: var(--space-sm); overflow: auto; max-height: 20rem;
  font-family: var(--font-mono); font-size: var(--text-xs); line-height: 1.7;
  white-space: pre; color: var(--color-ink-2);
}

/* ------------------------------------- Catalogue · the standings ------- */
/* A league table is an index of one repeated thing. Hairline rules, no
   zebra fill — the rule does the separating, so nothing shouts. */

.tablescroll {
  overflow-x: auto;
  border-top: var(--rule-hair) solid var(--color-rule);
  border-bottom: var(--rule-hair) solid var(--color-rule);
}

table.league { border-collapse: collapse; width: 100%; font-size: var(--text-sm); }
table.league th, table.league td {
  padding: var(--space-2xs) var(--space-xs); text-align: right; white-space: nowrap;
}
table.league th {
  position: sticky; top: 0; z-index: 2;
  background: var(--color-paper);
  border-bottom: var(--rule-hair) solid var(--color-rule-2);
  font-weight: 500;
}
table.league td {
  border-bottom: var(--rule-hair) solid var(--color-rule);
  color: var(--color-ink-2);
}
table.league .who, table.league th.who {
  text-align: left; font-family: var(--font-body); font-weight: 500; color: var(--color-ink);
}
table.league th.who { font-family: var(--font-mono); font-weight: 500; color: var(--color-ink-3); }
table.league th.rk, table.league td.rk { text-align: right; width: 1%; color: var(--color-ink-3); }
table.league tbody tr { transition: background var(--dur-settle) var(--settle); }
table.league tbody tr:hover td { background: var(--color-paper-2); }
table.league td.total { color: var(--color-ink); font-weight: 500; }
/* A rule colour as text measured 2.38:1. The dot means "didn't play" —
   that's content, so it takes an ink token. */
table.league td.dim { color: var(--color-ink-3); }

/* Reaching the final table is the prize, so the cut is drawn in brass. */
table.league tr.bubble-edge td { border-bottom: 2px solid var(--color-accent); }

.bubbletag {
  display: inline-block; margin-left: var(--space-2xs);
  padding: var(--space-3xs) var(--space-2xs); border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: var(--text-xs);
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--color-accent); color: var(--color-accent-ink);
}

/* -------------------------------------------------------------- awards */

.awards { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: var(--space-sm); }
.award {
  border-top: 2px solid var(--color-accent);
  padding-top: var(--space-2xs);
  display: flex; flex-direction: column; gap: var(--space-3xs);
}
.award .ttl {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: var(--text-lg); line-height: 1.05; color: var(--color-ink);
}
.award .who { font-size: var(--text-sm); color: var(--color-ink-2); }
.award .val {
  font-family: var(--font-mono); font-size: var(--text-xs);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-accent);
}

/* --------------------------------------------------------------- misc */

.banner {
  padding: var(--space-2xs) var(--space-sm); border-radius: var(--radius-card);
  font-size: var(--text-sm);
  border: var(--rule-hair) solid var(--color-rule); background: var(--color-paper-2);
  color: var(--color-ink-2);
}
.banner.bad { border-color: var(--color-warn); background: var(--color-warn-wash); color: var(--color-warn); }

.lockbar {
  display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap;
  padding: var(--space-xs) var(--space-sm); border-radius: var(--radius-card);
  background: var(--color-accent-wash);
  border: var(--rule-hair) solid var(--color-accent);
  color: var(--color-ink);
}
.lockbar .lockbar-icon { color: var(--color-accent); font-size: 8px; flex: none; }
.lockbar .lockbar-text { flex: 1; min-width: 14rem; font-size: var(--text-sm); line-height: 1.5; }
.lockbar .lockbar-text strong {
  display: block; font-family: var(--font-mono); font-size: var(--text-xs);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent);
  font-weight: 500;
}
.lockbar .lockbar-text span { color: var(--color-ink-2); }

.rowlist { display: flex; flex-direction: column; }
.rowlist .r {
  display: flex; align-items: center; gap: var(--space-2xs);
  padding: var(--space-2xs) 0; border-bottom: var(--rule-hair) solid var(--color-rule);
}
.rowlist .r:last-child { border-bottom: none; }
.rowlist .r .nm { flex: 1; }

.chips { display: flex; flex-wrap: wrap; gap: var(--space-3xs); }
.chip {
  appearance: none; cursor: pointer;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  color: var(--color-ink-3); background: transparent;
  border: var(--rule-hair) dashed var(--color-rule-2);
  border-radius: var(--radius-pill); padding: var(--space-3xs) var(--space-xs);
  min-height: 36px;
}
.chip:hover { border-color: var(--color-accent); color: var(--color-ink); }
.chip:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 2px; }
.chip[aria-pressed="true"] {
  background: var(--color-accent-wash); border-style: solid;
  border-color: var(--color-accent); color: var(--color-accent); font-weight: 600;
}

/* ------------------------------------------- Ft4 · dense colophon ------ */

footer.note {
  border-top: var(--rule-hair) solid var(--color-rule);
  padding-top: var(--space-sm);
  font-family: var(--font-mono); font-size: var(--text-xs);
  line-height: 1.7; color: var(--color-ink-3);
}
.colophon { display: grid; grid-template-columns: auto 1fr; gap: var(--space-3xs) var(--space-sm); margin: 0; }
.colophon dt { color: var(--color-rule-2); }
.colophon dd { margin: 0; color: var(--color-ink-3); }

[hidden] { display: none !important; }
.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;
}

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

@media (max-width: 660px) {
  .wrap { padding-bottom: calc(6rem + env(safe-area-inset-bottom)); }
  .tables { grid-template-columns: 1fr; }
  .rostertop { align-items: stretch; }
  .finder { max-width: none; }

  /* The chip goes to the thumb. */
  nav.tabs {
    position: fixed; z-index: 20;
    left: 50%; transform: translateX(-50%);
    bottom: calc(var(--space-xs) + env(safe-area-inset-bottom));
    align-self: auto; width: max-content; max-width: calc(100vw - 2 * var(--space-sm));
    background: var(--color-paper-2);
    box-shadow: 0 8px 32px -12px oklch(0% 0 0 / 0.7);
  }
  nav.tabs button { padding: var(--space-2xs) var(--space-xs); min-width: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
  .table { animation: none; opacity: 1; transform: none; }
}

/* Rescheduling: a night's date is editable in place, so a Wednesday can
   become a Thursday without losing its RSVPs, draw or results. */
.rowlist .fixdate {
  min-width: 9.5rem; min-height: 36px;
  font-family: var(--font-mono); font-size: var(--text-sm);
  padding: var(--space-3xs) var(--space-2xs);
}

/* Bonus hands — quads, straight flush, royal flush. Rare, so the control
   stays collapsed to a single glyph until it holds a value. */
.seat .bonussel {
  appearance: none; cursor: pointer;
  min-height: 26px; padding: 0 var(--space-3xs);
  border-radius: var(--radius-input);
  border: var(--rule-hair) solid var(--color-rule-2);
  background: var(--color-paper); color: var(--color-ink-3);
  font-family: var(--font-mono); font-size: var(--text-xs);
}
.seat .bonussel:hover { border-color: var(--color-accent-2); color: var(--color-accent-2); }
.seat .bonussel:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 1px; }
.seat .bnpts { color: var(--color-accent-2); }
