/**
 * tokens.css — GLOBAL design-token layer (sitewide).
 *
 * Single source of truth for the v2 design system (navy + terracotta).
 * Values are an EXACT mirror of :root in docs-claude/styles/rsm-v2.css
 * (the approved "Серія РСМ v2" mockup), kept under the project's --mtsp-*
 * naming so the existing new-branch CSS (equipment / serial / seal) and any
 * future restyle of the legacy pages all read the SAME variables.
 *
 * Step 1 of the style foundation (2026-06-30): this file ONLY ADDS the tokens
 * globally. It does NOT touch components, reset, header/footer, or the existing
 * per-template :root dupes (those stay this step and are removed separately
 * later). Adding variables is non-destructive — nothing reads them on legacy
 * pages yet, so no existing style is overwritten.
 *
 * Enqueued first (priority 5) so the variables are available to every later
 * stylesheet on every page.
 */
:root {
	/* ── Palette (exact rsm-v2.css :root) ── */
	--mtsp-navy: #0f2440;
	--mtsp-navy-deep: #081628;
	--mtsp-navy-light: #1c3a5f;
	--mtsp-accent: #d97441;
	--mtsp-accent-hover: #c25f2c;
	--mtsp-accent-soft: rgba(217, 116, 65, 0.08);
	--mtsp-green: #16a34a;
	--mtsp-red: #dc2626; /* not in rsm-v2 :root; mirrors the value used by the equipment stylesheet */
	--mtsp-gray-50: #f7f8fa;
	--mtsp-gray-100: #eef0f4;
	--mtsp-gray-200: #dde1e8;
	--mtsp-gray-300: #c4cad6;
	--mtsp-gray-400: #8a93a3;
	--mtsp-gray-500: #6b7484;
	--mtsp-gray-600: #4a5567;
	--mtsp-gray-700: #2f3744;
	--mtsp-gray-800: #1f2733;
	--mtsp-white: #ffffff;

	/* ── Type families ── */
	--mtsp-font-body: 'Manrope', 'Manrope Fallback', -apple-system, BlinkMacSystemFont, sans-serif;
	--mtsp-font-display: 'Tinos', 'Times New Roman', Times, serif;
	--mtsp-font-mono: 'JetBrains Mono', 'JetBrains Mono Fallback', ui-monospace, 'SF Mono', Menlo, monospace;
}
