/* DRAW Design System — Nordic Blue Palette
   Single source of truth for all design tokens.
   Do not override these in component CSS; reference them via var(--token). */

:root {
    /* ---- Color: Nordic Blue ---- */
    --color-primary: #0284C7;
    --color-primary-dark: #0369A1;
    --color-primary-darker: #075985;
    --color-secondary: #7DD3FC;
    --color-secondary-dark: #38BDF8;
    --color-accent: #F59E0B;
    --color-accent-dark: #D97706;

    --color-neutral: #F0F9FF;
    --color-neutral-dark: #E0F2FE;

    /* Page background — clean off-white, not tinted */
    --color-page-bg: #F0F9FF;
    --color-page-bg-alt: #E0F2FE;

    --color-text: #0C4A6E;
    --color-text-soft: #1E40AF;
    --color-muted: #64748B;
    --color-muted-light: #94A3B8;

    --color-border: #E2E8F0;
    --color-border-strong: #CBD5E1;
    --color-surface: #FFFFFF;
    --color-surface-raised: #FFFFFF;

    /* Semantic */
    --color-danger: #DC2626;
    --color-danger-bg: #FEF2F2;
    --color-success: #16A34A;
    --color-success-bg: #F0FDF4;
    --color-warning: #F59E0B;
    --color-warning-bg: #FFFBEB;
    --color-info: #0284C7;
    --color-info-bg: #F0F9FF;

    /* ---- Typography ---- */
    --font-sans: "Lora", Georgia, "Times New Roman", serif;
    --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;

    /* Type scale (rem) */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    --leading-tight: 1.15;
    --leading-snug: 1.3;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;

    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;

    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;

    /* ---- Spacing scale ---- */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* ---- Radius ---- */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    /* ---- Elevation (navy-tinted shadows) ---- */
    --shadow-sm: 0 1px 2px rgba(12, 74, 110, 0.06);
    --shadow: 0 4px 12px rgba(12, 74, 110, 0.08);
    --shadow-lg: 0 12px 32px rgba(12, 74, 110, 0.12);
    --shadow-focus: 0 0 0 3px rgba(2, 132, 199, 0.25);

    /* ---- Layout ---- */
    --container-max: 1200px;
    --container-narrow: 880px;
    --container-wide: 1320px;
    --navbar-height: 64px;

    /* ---- Transitions ---- */
    --transition-fast: 150ms ease;
    --transition: 250ms ease;
    --transition-slow: 400ms ease;
}
