/* =====================================================================
 * WUC Technologies — Design Tokens
 * Created: 2026-05-22 (Phase A of site-wide brand audit)
 * Source of truth for all WUC color usage. Reference via var(--wuc-*).
 * Loaded first via wp_enqueue_scripts priority 0 in functions.php.
 * Reversible: delete this file + remove wuc_enqueue_design_tokens()
 * function block from functions.php.
 * ===================================================================== */
:root {
    /* WUC Monochromatic Brand Palette — 3 colors only */
    --wuc-blue: #0052B8;
    --wuc-blue-hover: #003F8C;
    --wuc-blue-active: #002B5C;
    --wuc-white: #FFFFFF;
    --wuc-bg-dark: #04080F;

    /* Text neutrals (legibility tokens, NOT brand colors) */
    --wuc-text-dark: #0F172A;
    --wuc-text-muted: #475569;

    /* Type weights */
    --wuc-cta-weight: 700;
    --wuc-h1-weight: 800;
}
