* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0b1220;
  --bg-raise: #121c30;
  --card: #16233c;
  --card-edge: #24334f;
  --text: #eef2f9;
  --text-dim: #93a1b8;
  --accent: #3b82f6;
  --ok: #22c55e;
  --warn: #eab308;
  --late: #ef4444;
  --radius: 14px;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
}

.hidden { display: none !important; }

/* ---- Shared UI kit (used by landing, admin, and stations) ---- */
.brand-mark { flex-shrink: 0; display: block; border-radius: 24%; }

.brand-row { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-row h1 { font-size: 1.6rem; line-height: 1.15; }
.brand-row .sub { color: var(--text-dim); margin-top: 3px; font-size: 0.95rem; }

.pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  font-size: 0.85rem;
  background: var(--bg-raise);
  border: 1px solid var(--card-edge);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--text-dim);
  white-space: nowrap;
}
.pill b { color: var(--text); font-weight: 650; }
.pill.good b { color: var(--ok); }
.pill.bad b { color: var(--late); }

