/* Creative PS 2026 visual tokens for the legacy site.
   Intentionally contains tokens only: loading the full v2 component library over
   the legacy markup causes class collisions (timeline, cards, grids, etc.). */
:root {
    /* Brand Colors — Minimal Purple (Option 01) */
    --c-primary: #502b78;
    --c-primary-dark: #3D1B5E;
    --c-primary-light: #6b3fa0;
    --c-accent: #7C3AED;
    --c-accent-light: #A78BFA;
    --c-accent-pale: #F3E8FF;

    /* Neutrals */
    --c-ink: #0F0F14;
    --c-ink-soft: #1F1F2A;
    --c-muted: #6B7280;
    --c-slate: #9CA3AF;
    --c-border: #E5E7EB;
    --c-bg: #FFFFFF;
    --c-surface: #F9FAFB;
    --c-surface-2: #F5F5F5;
    --c-cream: #FAF7F2;
    --c-white: #FFFFFF;

    /* Semantic */
    --c-success: #059669;
    --c-warning: #D97706;
    --c-danger: #DC2626;
    --c-info: #0EA5E9;

    /* Typography */
    --font-ar: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-en: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Courier New', monospace;

    /* Font sizes (type scale) */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;
    --fs-5xl: 3rem;
    --fs-6xl: 3.75rem;

    /* Spacing scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 15, 20, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 15, 20, 0.08), 0 2px 4px -2px rgba(15, 15, 20, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(15, 15, 20, 0.1), 0 8px 10px -6px rgba(15, 15, 20, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(15, 15, 20, 0.15);

    /* Transitions */
    --t-fast: 0.15s ease-out;
    --t-base: 0.25s ease-out;
    --t-slow: 0.4s ease-out;

    /* Container width */
    --container-max: 1280px;

    /* Header height */
    --header-h: 72px;
}

html[dir="ltr"] body, body.en { font-family: var(--font-en); }
html[dir="rtl"] body, body.ar { font-family: var(--font-ar); }
