/* tokens.css — shared design tokens (UI design round 2026-08-08).
   Linked via a stamped <link> as the FIRST stylesheet of every shell (Base,
   WikiBase, WikiIndex) — never @imported by site.css/wiki.css, because an
   @import URL carries no build-stamp query and would go year-stale under the
   immutable /static caching — so the main app and the standalone wiki window
   draw from one palette. Keep this file dependency-free: custom properties
   only, no selectors beyond :root. */
:root {
	/* Brand & accent */
	--brand: #1f3a5f;   /* navy — site header / wiki topbar background */
	--accent: #1a56c4;  /* the one link/action blue (retires #3869d4) */

	/* Neutrals */
	--fg: #1a1a1a;
	--muted: #666;
	--bg: #fafafa;
	--card: #ffffff;
	--border: #e5e5e5;

	/* Status */
	--error: #c92a2a;
	--success: #22bc66;

	/* Shape */
	--radius: 6px;
	--radius-pill: 999px;
}
