/* ═══════════════════════════════════════════════════════════════════════
   TOKENS.CSS — Single Source of Truth for ALL Visual Values
   Aura v3 Design System
   ════════════════════════════════════════════════════════════════════════ */
:root {
    /* ── Brand Colors — overridable from DB ─────────────────────────── */
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-primary-light: #dbeafe;
    --color-primary-border: #60a5fa;
    --color-secondary: #8b5cf6;

    /* ── Semantic Colors — Refined Palette ───────────────────────────── */
    --color-danger: #e11d48;
    --color-danger-dark: #9f1239;
    --color-danger-light: #fee2e2;
    --color-danger-border: #f87171;

    --color-success: #10b981;
    --color-success-dark: #065f46;
    --color-success-light: #dcfce7;
    --color-success-border: #4ade80;

    --color-warning: #f59e0b;
    --color-warning-dark: #92400e;
    --color-warning-light: #fef3c7;
    --color-warning-border: #fbbf24;

    --color-info: #0ea5e9;
    --color-info-dark: #0369a1;
    --color-info-light: #e0f2fe;
    --color-info-border: #38bdf8;

    /* ── Premium Neutrals (Slate) ────────────────────────────────────── */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* ── Surfaces ────────────────────────────────────────────────────── */
    --bg-main: var(--slate-50);
    --bg-surface: #ffffff;
    --bg-sidebar: var(--slate-900);

    /* ── Typography ──────────────────────────────────────────────────── */
    --font-family-base: 'Inter', system-ui, -apple-system, sans-serif;
    --font-size-xs: 0.75rem;
    --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;
    --font-size-4xl: 2.25rem;

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

    /* ── Heading Scale ────────────────────────────────────────────────── */
    --heading-1: var(--font-size-3xl);
    --heading-2: var(--font-size-2xl);
    --heading-3: var(--font-size-xl);
    --heading-4: var(--font-size-lg);

    /* ── Spacing — 4px base ──────────────────────────────────────────── */
    --space-0: 0;
    --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;

    /* ── Borders & Radius ────────────────────────────────────────────── */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --border-color: var(--slate-200);

    /* ── Shadows — Premium Multi-layered ──────────────────────────────── */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-aura: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 10px 30px -10px rgba(0, 0, 0, 0.2);

    /* ── Component Tokens ────────────────────────────────────────────── */
    --card-padding: var(--space-6);
    --card-header-padding: 1.1rem 1.5rem;
    --card-body-padding: var(--space-6);
    --card-footer-padding: var(--space-4) var(--space-6);
    --modal-body-padding: var(--space-6);
    --table-cell-padding: 0.9rem 1.25rem;
    --table-header-padding: 0.75rem 1.25rem;
    --input-padding: 0.65rem 0.85rem;
    --btn-padding: 0.65rem 1.25rem;
    --btn-sm-padding: 0.35rem 0.7rem;

    /* ── Layout ───────────────────────────────────────────────────────── */
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 76px;
    --header-height: 72px;
    --content-max-width: 1400px;

    /* ── Transitions ──────────────────────────────────────────────────── */
    --transition-base: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;

    /* ── Z-Index Scale ────────────────────────────────────────────────── */
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-header: 1000;
    --z-sidebar: 1100;
    --z-modal: 2000;
    --z-toast: 9999;
}