/* OS design tokens — ported from c:\weepsi-adminaor\adminaor\assets\css\os-core.css.
   Premium dark gray + purple secondary. meOS Windows-style. */

:root {
    /* Backgrounds (premium dark gray, no blue tint) */
    --os-bg:            #121212;
    --os-surface:       #1e1e1e;
    --os-surface-light: #2c2c2c;
    --os-surface-hover: #353535;

    /* Primary / Accent */
    --os-primary:       #2563eb;
    --os-secondary:     #7c3aed;
    --os-accent:        #2563eb;
    --os-accent-hover:  #1d4ed8;
    --os-purple:        #7c3aed;
    --os-purple-light:  #a855f7;
    --os-purple-dark:   #5b21b6;

    /* Text */
    --os-text-main:     #f8fafc;
    --os-text-muted:    #94a3b8;
    --os-text-subtle:   #64748b;

    /* Borders */
    --os-border:        rgba(255, 255, 255, 0.08);
    --os-border-strong: rgba(255, 255, 255, 0.14);

    /* Semantic */
    --os-success:       #10b981;
    --os-danger:        #ef4444;
    --os-warning:       #f59e0b;
    --os-info:          #0ea5e9;

    /* Typography */
    --fs-display: 3rem;
    --fs-h1: 2.25rem;
    --fs-h2: 1.875rem;
    --fs-h3: 1.5rem;
    --fs-h4: 1.25rem;
    --fs-h5: 1.125rem;
    --fs-body: 0.9375rem;
    --fs-small: 0.8125rem;
    --fs-caption: 0.75rem;
    --fs-overline: 0.6875rem;

    --font-ui: 'Inter', 'Heebo', 'Segoe UI Variable Text', system-ui, sans-serif;
    --font-display: 'Inter', 'Heebo', 'Segoe UI Variable Display', system-ui, sans-serif;
    --font-mono: 'Cascadia Code', 'Fira Code', 'Consolas', ui-monospace, monospace;

    /* Geometry */
    --os-radius-lg: 16px;
    --os-radius-md: 12px;
    --os-radius-sm: 8px;
    --os-radius-xs: 4px;
    --os-radius-full: 9999px;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;

    /* Elevation */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.55);

    /* Glass */
    --os-glass-bg: rgba(255, 255, 255, 0.06);
    --os-glass-blur: 16px;

    /* Motion */
    --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --duration-slow: 400ms;

    /* Layout */
    --os-topbar-h:  56px;
    --os-taskbar-h: 60px;
    --os-player-h:  76px;

    /* Z-index */
    --z-stage:    1;
    --z-topbar:   100;
    --z-taskbar:  1000;
    --z-startmenu: 1100;
    --z-player:   1500;
    --z-modal:    9999;
    --z-toast:    99990;
}
