/*
 * CCP FIR Terminal — Military-precision refinement layer
 * ------------------------------------------------------------------
 * Sits on top of the restored "Precision Pulse" base (inline styles in
 * index.html). Adds instrument-grade discipline — aligned figures,
 * hairline rigor, crisp focus — WITHOUT the zero-radius / boxy
 * caricature of the removed industrial-control override.
 * Reference language: capacitycompliance.com
 * ("deep space · mission blue · wireframe instrumentation").
 */

/* Aligned figures: numbers read like an instrument readout, not prose. */
body { font-variant-numeric: tabular-nums; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* Precise, understated instrument scrollbars (was: default chrome). */
* { scrollbar-width: thin; scrollbar-color: var(--line2) transparent; }
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line2); border: 2px solid var(--bg); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--lineS); }

/* Crisp, mission-blue focus ring — clarity for keyboard operation. */
:focus-visible { outline: 1px solid var(--accent); outline-offset: 2px; }
