
:root {
  --yellow: #FFE14D;
  --yellow-hi: #FFEA6B;
  --amber: #B07A18;
  --ink: #1A1206;
  --ink-soft: #5C5142;
  --ink-faint: #8A8170;
  --ink-mute: #A39A88;
  --bg: #FDFCFA;
  --sand: #F6EFE0;
  --card: #FFFFFF;
  --hairline: rgba(26,18,6,0.08);
  --hairline-2: rgba(26,18,6,0.12);
  --dark-bg: #141018;
  --dark-card: #1E1B24;
  --board: #12100B;
  --sig-ready: #FF8C28;
  --sig-seated: #12A594;
  --sig-stepout: #5789F2;
  --sig-temp: #7C5CD6;
  --sig-urgent: #E21833;
  --sig-done: #2FA24F;
  --shadow-sm: 0 1px 3px rgba(20,16,10,0.06);
  --shadow-md: 0 8px 24px rgba(20,16,10,0.08);
  --shadow-lg: 0 20px 50px rgba(20,16,10,0.10);
  --r-xl: 22px; --r-lg: 16px; --r-md: 13px; --r-sm: 11px; --r-chip: 9px;
  --font-display: "Bricolage Grotesque", "SF Pro Display", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --maxw: 1160px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--bg);
  line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 2px; }
h1,h2,h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }
.muted { color: var(--ink-soft); }
.faint { color: var(--ink-faint); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.wrap-narrow { max-width: 460px; margin: 0 auto; }
.center { text-align: center; }
.highlight { background: linear-gradient(transparent 58%, var(--yellow) 58%); padding: 0 2px; }

/* ---- wordmark / mark ---- */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand:hover { text-decoration: none; }
.wm { display: inline-flex; align-items: baseline; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; }
.wm .a { color: var(--ink); }
.wm .b { color: var(--ink); background: var(--yellow); padding: 1px 8px 3px; border-radius: 7px; margin-left: 2px; }
.mark { width: 34px; height: 34px; border-radius: 10px; background: var(--ink); display: grid; place-items: center; flex: none; }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; justify-content: center; font-family: var(--font-body);
  font-weight: 700; font-size: 15px; border: 1.5px solid transparent; border-radius: var(--r-md); padding: 13px 22px;
  cursor: pointer; line-height: 1; transition: transform .06s ease, box-shadow .15s ease, background .15s; background: var(--card); color: var(--ink); }
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--yellow); border-color: var(--ink); color: var(--ink); box-shadow: 0 4px 0 rgba(26,18,6,0.12); }
.btn-primary:hover { background: var(--yellow-hi); }
.btn-secondary, .btn-ghost { background: var(--card); border-color: var(--hairline-2); color: var(--ink); }
.btn-secondary:hover, .btn-ghost:hover { border-color: var(--ink); }
.btn-dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-danger { background: transparent; border-color: rgba(226,24,51,.4); color: var(--sig-urgent); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-sm { padding: 8px 13px; font-size: 13px; border-radius: var(--r-sm); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn:focus-visible, a:focus-visible, summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible { border-radius: var(--r-md); }

/* ---- eyebrow / labels ---- */
.eyebrow { font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); font-weight: 600; }
.kicker { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-faint); }

/* ---- cards / forms ---- */
.card { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 22px; }
.card + .card { margin-top: 16px; }
label.field { display: block; margin-bottom: 14px; font-weight: 600; font-size: .92rem; }
label.field span { display: block; margin-bottom: 6px; }
input, select, textarea { font-family: var(--font-body); font-size: 15px; width: 100%; padding: 12px 13px; border-radius: var(--r-sm);
  border: 1.5px solid var(--hairline-2); background: #fff; color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(255,225,77,.5); }
textarea { resize: vertical; min-height: 64px; }
.hint { font-weight: 400; font-size: .82rem; color: var(--ink-faint); margin-top: 5px; }
.notice { padding: 11px 14px; border-radius: var(--r-sm); font-size: .9rem; margin-bottom: 14px; }
.notice-error { background: rgba(226,24,51,.08); color: var(--sig-urgent); border: 1px solid rgba(226,24,51,.22); }
.notice-ok { background: #E6F5EA; color: #1c5e33; border: 1px solid #B7E0C2; }
.notice-info { background: #FFF7DE; color: #5C4E2E; border: 1px solid #E7C948; }

/* ---- top nav ---- */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(253,252,250,.85); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--hairline); }
.nav .container { display: flex; align-items: center; gap: 22px; height: 62px; }
.nav .wm { font-size: 20px; }
.nav .wm .b { padding: 1px 8px 2px; border-radius: 7px; }
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-links a { color: var(--ink-soft); font-weight: 600; font-size: 14px; padding: 6px 0; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a.active { color: var(--ink); box-shadow: inset 0 -2px 0 var(--ink); }
/* Rounded yellow pill, same look/spacing as the "Maxer" badge in the wordmark. */
.nav-links a.nav-pill { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; font-size: 15px; color: var(--ink); background: var(--yellow); padding: 2px 10px 4px; border-radius: 7px; }
.nav-links a.nav-pill:hover { background: var(--yellow-hi); text-decoration: none; }
@media (max-width: 720px){ .nav-links a.hide-sm { display:none; } }

/* ---- hero / marketing ---- */
.hero { padding: 66px 0 40px; background:
  radial-gradient(640px 420px at 82% 12%, rgba(255,225,77,.16), transparent 70%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 900px){ .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
.lede { font-size: 18px; line-height: 1.55; color: var(--ink-soft); max-width: 460px; }
.swoosh { display: block; }
.hero-cta { display:flex; gap:12px; margin-top: 30px; flex-wrap: wrap; }
.section { padding: 66px 0; }
.section-sand { background: var(--sand); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.trust { background: var(--sand); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.trust .container { display:flex; flex-wrap:wrap; gap: 22px; justify-content:center; padding: 16px 26px;
  font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: #7a6f5c; font-weight: 600; }
.trust .sep { color: #cbbfa6; }
.grid { display: grid; gap: 30px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px){ .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px){ .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px){ .grid-4 { grid-template-columns: 1fr; } }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 860px){ .steps { grid-template-columns: 1fr; } }
.step .num { width:44px;height:44px;border-radius:50%;border:2px solid var(--ink); display:grid;place-items:center;
  font-family: var(--font-display); font-weight:800; font-size:19px; margin-bottom:16px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 0; }
/* hairline feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--hairline-2);
  border: 1px solid var(--hairline-2); border-radius: 18px; overflow: hidden; }
@media (max-width: 860px){ .feature-grid { grid-template-columns: 1fr; } }
.feature-grid .cell { background: var(--card); padding: 26px 24px; transition: background .15s ease; }
.feature-grid .cell:hover { background: #FFFDF3; }
.feature-grid .cell h3 { font-size: 18px; margin-bottom: 8px; }
.feature-grid .cell p { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.platform-row { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }
.platform { display:flex; align-items:center; gap:9px; padding:9px 15px; border:1px solid var(--hairline-2);
  border-radius: 999px; background: var(--card); font-weight:600; font-size:.9rem; }

/* pricing */
.price-card { background: var(--card); border: 1px solid var(--hairline-2); border-radius: var(--r-xl); padding: 30px 28px;
  display: flex; flex-direction: column; }
.price-card > .btn { margin-top: auto; }
.badge-pop { align-self: flex-start; background: var(--yellow); color: var(--ink); font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }
.price-card.dark { background: var(--ink); color: #fff; border: none; }
.price-card.dark .muted { color: var(--dark-inksoft, #c9c4bb); }
.price { font-family: var(--font-display); font-weight: 800; font-size: 3.1rem; letter-spacing: -.02em; line-height: 1; }
.price small { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--ink-faint); letter-spacing: 0; }
/* Sale: old price wears a bold red slash; the deal is spelled out in a red pill. */
.price-was { position: relative; font-size: .5em; font-weight: 700; color: var(--ink-faint); margin-right: .18em; }
.price-was::after { content: ""; position: absolute; left: -6%; right: -6%; top: 52%; height: .09em; min-height: 3px;
  background: var(--sig-urgent); border-radius: 2px; transform: rotate(-8deg); }
.save-pill { display: inline-block; background: var(--sig-urgent); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; vertical-align: middle; }
.lockin { font-size: 12px; color: var(--ink-faint); text-align: center; margin-top: 10px; }
.price-card.dark .price small { color: #c9c4bb; }
.check-list { list-style:none; padding:0; margin: 16px 0; }
.check-list li { padding: 7px 0 7px 28px; position: relative; }
.check-list li::before { content:"✓"; position:absolute; left:2px; color: var(--sig-done); font-weight:800; }
.plan-grid .price-card { text-align:left; }
.plan-grid .price { font-size: 2.2rem; }
.plan-grid .check-list li { padding: 5px 0 5px 26px; }

/* FAQ disclosure */
details.card summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
details.card summary::-webkit-details-marker { display: none; }
details.card summary::after { content: "+"; font-family: var(--font-display); font-weight: 700; font-size: 20px;
  line-height: 1; color: var(--ink-faint); transition: transform .15s ease; flex: none; }
details.card[open] summary::after { transform: rotate(45deg); color: var(--ink); }
details.card summary:hover::after { color: var(--ink); }

/* ---- /demo simulated board ---- */
.demo-board { background: var(--board); border-radius: var(--r-xl); padding: 18px 18px 14px; max-width: 760px;
  margin: 0 auto; box-shadow: var(--shadow-lg); }
.demo-head { display: flex; align-items: center; justify-content: space-between; padding: 2px 4px 14px; }
.demo-live { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: #8f8a80; font-weight: 600; }
.demo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sig-done); box-shadow: 0 0 0 3px rgba(47,162,79,.25); }
.demo-clock { font-variant-numeric: tabular-nums; font-size: 13px; color: #8f8a80; }
.demo-board .qrow { background: var(--dark-card); border-color: rgba(255,255,255,.08); }
.demo-board .qrow .room { color: #fff; }
.demo-board .qrow .type { color: #c9c4bb; }
.demo-board .qrow .meta { color: #8f8a80; }
.demo-board .qrow .timer { color: #fff; }
@media (max-width: 560px){ .demo-board { border-radius: var(--r-lg); padding: 12px 10px 8px; } }

/* CTA band + footer */
.cta-band { background: var(--sand); border-top: 1px solid var(--hairline); }
.cta-band .container { display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; padding: 56px 26px; }
.footer { background: var(--ink); color: #c9c4bb; }
.footer .container { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; padding: 40px 26px; }
.footer .wm { font-size: 17px; } .footer .wm .a { color: #fff; }
.footer a { color: #e9e5dd; }

/* ---- auth pages ---- */
.auth-wrap { min-height: calc(100vh - 62px); display:grid; place-items:center; padding: 40px 20px; background: var(--sand); }
.auth-card { width: 100%; max-width: 430px; }

/* ---- admin shell ---- */
.admin { display:grid; grid-template-columns: 236px 1fr; min-height:100vh; }
.side { background: var(--card); border-right:1px solid var(--hairline); padding: 20px 14px; position: sticky; top:0; height:100vh; overflow:auto; display:flex; flex-direction:column; }
.side .brand { padding: 0 8px 18px; }
.side .wm { font-size: 18px; }
.side nav { display:flex; flex-direction:column; gap:2px; }
.side nav a { padding: 9px 12px; border-radius: var(--r-sm); color: var(--ink-soft); font-weight:600; font-size:.93rem; }
.side nav a:hover { background: var(--sand); color: var(--ink); text-decoration:none; }
.side nav a.active { background: var(--yellow); color: var(--ink); }
.side .side-foot { margin-top: auto; padding: 14px 8px 0; font-size:.82rem; }
.main { padding: 30px 34px; max-width: 1000px; background: var(--bg); }
.main h1 { font-size: 1.9rem; margin-bottom: .1em; }
.page-head { display:flex; align-items:center; justify-content:space-between; gap: 16px; margin-bottom: 22px; flex-wrap:wrap; }
@media (max-width: 760px){ .admin { grid-template-columns: 1fr; } .side { position:static; height:auto; } .side nav { flex-direction:row; flex-wrap:wrap; } .main{padding:20px;} }

table { width:100%; border-collapse: collapse; font-size:.93rem; }
th, td { text-align:left; padding: 12px; border-bottom: 1px solid var(--hairline); vertical-align: middle; }
th { font-family: var(--font-mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; color: var(--ink-faint); }
.row-actions { display:flex; gap:8px; justify-content:flex-end; }
.tag { display:inline-block; padding: 3px 9px; border-radius: 7px; font-size:.74rem; font-weight:700; }
.swatch { width:14px;height:14px;border-radius:5px; display:inline-block; vertical-align:middle; margin-right:7px; border:1px solid var(--hairline-2); }
.dot { width:9px;height:9px;border-radius:50%; display:inline-block; vertical-align:middle; margin-right:6px; }
.stat-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap:14px; margin-bottom: 22px; }
.stat { background:var(--card); border:1px solid var(--hairline); border-radius: var(--r-md); padding:16px; }
.stat .n { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing:-.02em; }
.stat .l { color: var(--ink-faint); font-size:.85rem; }

/* ---- queue rows (admin queue, /app, /board) ---- */
.queue { display:flex; flex-direction:column; gap:10px; }
.qrow { display:flex; align-items:center; gap:13px; background:var(--card); border:1px solid var(--hairline);
  border-radius: var(--r-md); padding: 13px 15px; box-shadow: var(--shadow-sm); position:relative; }
.qrow .sig { width:13px;height:13px;border-radius:50%; flex:none; }
.qrow .body { flex:1 1 auto; min-width:0; }
.qrow .room { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing:-.01em; }
.qrow .type { font-weight:600; color: var(--ink-soft); }
.qrow .note { color: var(--ink-soft); font-size:.9rem; margin-top:2px; overflow-wrap:anywhere; }
.qrow .meta { color: var(--ink-faint); font-size:.8rem; margin-top:2px; }
.qrow .timer { font-family: var(--font-body); font-variant-numeric: tabular-nums; font-weight:700; font-size:1.05rem; min-width: 54px; text-align:right; }
.qrow .timer.warn { color: var(--sig-urgent); }
.qrow .actions { display:flex; gap:8px; flex:none; }
.chip { padding: 3px 10px; border-radius:7px; font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.04em; }
.chip-waiting { background: rgba(255,140,40,.16); color: #9a5410; }
.chip-ack { background: rgba(47,162,79,.16); color: #1c5e33; }
.empty { text-align:center; color: var(--ink-faint); padding: 40px 20px; }
.empty .big { font-size: 2.2rem; margin-bottom: 8px; }

/* Sliding cadence toggle: a springy translucent thumb glides between options. */
.slide-seg { position: relative; display: inline-flex; background: rgba(28,25,23,.07); border-radius: 999px; padding: 4px; }
.slide-seg button { position: relative; z-index: 1; border: none; background: transparent; padding: 10px 20px; border-radius: 999px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--ink-soft); cursor: pointer;
  transition: color .25s; white-space: nowrap; }
.slide-seg button.sel { color: var(--ink); }
.slide-thumb { position: absolute; top: 4px; left: 0; height: calc(100% - 8px); border-radius: 999px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px) saturate(1.5); -webkit-backdrop-filter: blur(10px) saturate(1.5);
  border: 1px solid rgba(28,25,23,.08); box-shadow: 0 6px 16px rgba(28,25,23,.16), inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .4s cubic-bezier(.3,1.4,.35,1), width .4s cubic-bezier(.3,1.4,.35,1); will-change: transform, width; }

/* Homepage interactive demo: desktop tray sim signals an Apple Watch mockup. */
.hero-demo { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.tray-sim { background: var(--card); border: 1px solid var(--hairline-2); border-radius: 16px; padding: 14px; width: 232px;
  box-shadow: 0 18px 44px rgba(28,25,23,.13); }
.tray-head { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint);
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.tray-dot { width: 8px; height: 8px; border-radius: 50%; background: #2FA24F; }
.tray-sim .sig-btn { display: flex; align-items: center; gap: 9px; width: 100%; border: 1px solid var(--hairline-2);
  background: #fff; border-radius: 10px; padding: 10px 12px; margin-bottom: 8px; font-family: var(--font-body);
  font-weight: 600; font-size: 13.5px; color: var(--ink); cursor: pointer; transition: transform .12s, box-shadow .12s; }
.tray-sim .sig-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,.08); }
.tray-sim .sig-btn:active { transform: translateY(0); }
.sig-swatch { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.tray-status { font-size: 12px; color: var(--ink-faint); min-height: 32px; margin-top: 4px; line-height: 1.45; }
.tray-pos { font-size: 12px; font-weight: 600; color: var(--ink-soft); min-height: 18px; line-height: 1.45; }
.watch { display: flex; flex-direction: column; align-items: center; }
.watch-band { width: 96px; height: 48px; background: linear-gradient(180deg, #2a2a2e, #161619); }
.watch-band.top { border-radius: 18px 18px 8px 8px; }
.watch-band.bottom { border-radius: 8px 8px 18px 18px; }
.watch-case { position: relative; width: 192px; height: 230px; background: #0b0b0d; border-radius: 46px; padding: 9px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35), inset 0 0 0 2px #2c2c30; }
.watch-crown { position: absolute; right: -7px; top: 56px; width: 9px; height: 34px; border-radius: 5px;
  background: linear-gradient(90deg, #3a3a40, #1d1d21); }
.watch-side-btn { position: absolute; right: -6px; top: 104px; width: 7px; height: 46px; border-radius: 4px; background: #2a2a2e; }
.watch-screen { width: 100%; height: 100%; background: #000; border-radius: 38px; color: #fff; overflow: hidden;
  padding: 14px 13px 12px; font-size: 13px; display: flex; flex-direction: column; }
.ws-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 7px; flex: none; }
.ws-nav { font-size: 12px; font-weight: 800; letter-spacing: .03em; color: #FFE14D; }
.ws-time { font-size: 11px; font-weight: 700; color: #9be49b; letter-spacing: .02em; }
.ws-list { flex: 1; min-height: 0; overflow-y: auto; scrollbar-width: none; margin: 0 -3px; padding: 0 3px 4px; touch-action: pan-y; }
.ws-list::-webkit-scrollbar { display: none; }
.ws-row { display: flex; align-items: center; gap: 7px; width: 100%; background: #1c1c1e; border: none; border-radius: 10px;
  padding: 6px 8px; margin-bottom: 5px; color: #fff; font-family: var(--font-body); cursor: pointer; text-align: left; }
.ws-row:hover { background: #26262a; }
.ws-bar { width: 3px; height: 26px; border-radius: 1.5px; flex: none; }
.ws-row-main { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ws-room { font-weight: 700; font-size: 12.5px; line-height: 1.15; white-space: nowrap; }
.ws-type { font-size: 9.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 82px; }
.ws-row-right { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 1px; flex: none; }
.ws-timer { font-size: 11px; font-weight: 700; color: #b8b4ac; font-variant-numeric: tabular-nums; }
.ws-timer.late { color: #E21833; }
.ws-ack { font-size: 8.5px; font-weight: 700; color: #5789F2; white-space: nowrap; }
.ws-back { background: none; border: none; color: #FFE14D; font-family: var(--font-body); font-size: 11px; font-weight: 700;
  padding: 0; margin-bottom: 6px; cursor: pointer; text-align: left; }
.ws-title { font-weight: 800; font-size: 15px; line-height: 1.25; display: flex; align-items: baseline; justify-content: space-between; }
.ws-sub { color: #b8b4ac; font-size: 12px; margin-top: 2px; }
.ws-idle { color: #6f6b64; text-align: center; margin: auto 0; font-size: 12px; line-height: 1.6; }
.ws-check { color: #2FA24F; font-size: 22px; font-weight: 800; }
.ws-btn { border: none; border-radius: 12px; padding: 9px 0; width: 100%; font-family: var(--font-body); font-weight: 700;
  font-size: 13px; cursor: pointer; margin-top: 8px; }
.ws-btn.go { background: #5789F2; color: #fff; }
.ws-btn.done { background: #2FA24F; color: #fff; }
.ws-badge { display: inline-block; background: rgba(87,137,242,.22); color: #9db9f7; font-size: 10.5px; font-weight: 800;
  padding: 2px 8px; border-radius: 999px; margin-top: 6px; align-self: flex-start; }

/* ---- /app zero-install client ---- */
.app-shell { max-width: 560px; margin: 0 auto; padding: 20px 16px 60px; }
.app-top { display:flex; align-items:center; justify-content:space-between; padding: 8px 0 18px; }
.seg { display:flex; gap:8px; flex-wrap:wrap; }
.seg button, .pick { border:1.5px solid var(--hairline-2); background:var(--card); color:var(--ink); border-radius:var(--r-sm);
  padding:10px 14px; font-family: var(--font-body); font-weight:600; font-size:14px; cursor:pointer; }
.seg button.sel, .pick.sel { border-color: var(--ink); background: var(--yellow); }
.type-btn { display:flex; align-items:center; gap:9px; }
.big-ready { font-size:1.05rem; padding: 16px; font-weight:700; }
.status-line { display:flex; align-items:center; gap:8px; font-weight:600; }
.conn { width:8px;height:8px;border-radius:50%; background: var(--ink-faint); }
.conn.up { background: var(--sig-done); } .conn.down { background: var(--sig-urgent); }

/* ---- /board big screen ---- */
body.board { background: var(--board); color:#fff; }
.board-wrap { padding: 3vh 4vw; min-height:100vh; }
.board-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom: 3vh; }
.board-head h1 { font-size: 3vw; margin:0; color:#fff; }
.board-head .clock { font-variant-numeric:tabular-nums; font-size:2.4vw; color:#c9c4bb; }
.board .qrow { background: var(--dark-card); border-color: rgba(255,255,255,.08); padding: 2.2vh 2vw; }
.board .qrow .room { font-size: 2.6vw; color:#fff; }
.board .qrow .type { font-size: 1.5vw; color:#c9c4bb; }
.board .qrow .note { font-size:1.3vw; color:#a8a29a; }
.board .qrow .timer { font-size: 2.4vw; color:#fff; }
.board .qrow .sig { width: 18px; height: 18px; }
.board .empty { color:#8f8a80; font-size:2vw; } .board .empty .big { font-size: 4vw; }

.mt-0{margin-top:0}.mb-0{margin-bottom:0}.mt-2{margin-top:24px}
