/**
 * Karinja Design Tokens — organizational navy/blue palette
 * Source: #0466c8 #0353a4 #023e7d #002855 #001845 #001233 #33415c #5c677d #7d8597 #979dac
 */
:root {
    /* Full brand scale */
    --blue-500: #0466c8;
    --blue-600: #0353a4;
    --blue-700: #023e7d;
    --blue-800: #002855;
    --blue-900: #001845;
    --blue-950: #001233;
    --slate-600: #33415c;
    --slate-500: #5c677d;
    --slate-400: #7d8597;
    --slate-300: #979dac;

    /* Brand */
    --primary-color: var(--blue-500);
    --primary-dark: var(--blue-600);
    --primary-deeper: var(--blue-700);
    --primary-light: #e8f1fb;
    --primary-muted: var(--slate-300);
    --secondary-color: var(--blue-700);
    --secondary-dark: var(--blue-800);

    /* Semantic (status only — not brand) */
    --success-color: #059669;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --info-color: var(--blue-500);

    /* Text */
    --text-color: var(--blue-950);
    --text-light: var(--slate-500);
    --text-muted: var(--slate-400);
    --text-inverse: #ffffff;

    /* Surfaces */
    --bg-color: #ffffff;
    --bg-light: #f4f6f9;
    --bg-muted: #e9eef4;
    --surface-elevated: #ffffff;
    --surface-dark: var(--blue-800);
    --surface-dark-soft: var(--blue-700);
    --surface-dark-mid: var(--blue-700);

    /* Borders & inputs */
    --border-color: #d7dde6;
    --input-border: var(--slate-300);
    --input-bg: #ffffff;
    --input-focus-border: var(--primary-color);
    --input-focus-ring: rgba(4, 102, 200, 0.22);

    /* Placeholder / empty media */
    --placeholder-bg: var(--bg-muted);
    --placeholder-color: var(--slate-400);

    /* Heroes & chrome — lighter organizational navy from palette */
    --hero-bg: var(--bg-light);
    --hero-text: var(--blue-950);
    --hero-muted: var(--slate-500);
    --footer-bg: var(--blue-800);
    --footer-text: var(--slate-300);
    --footer-heading: #ffffff;
    --footer-link: var(--slate-300);
    --footer-link-hover: #ffffff;
    --footer-border: rgba(151, 157, 172, 0.28);
    --band-bg: var(--blue-700);

    /* Elevation */
    --shadow: 0 1px 2px rgba(0, 18, 51, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 18, 51, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 18, 51, 0.12);

    /* Radius */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Typography */
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;

    /* Layout */
    --container-max: 1120px;
    --sidebar-width: 280px;

    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 12000;
    --z-drawer: 12001;
    --z-toast: 13000;
}
