/* ============================================================================
   PDF CodexNeo — Design Tokens
   ============================================================================
   This file is the SINGLE SOURCE OF TRUTH for all design decisions.
   Change a value here → the entire website updates instantly.
   Loaded BEFORE style.css in header.php.
   ============================================================================ */

:root {

    /* ── BRAND COLORS ─────────────────────────────────────────────────────── */
    --color-primary: #0B1C3D;
    /* Deep navy — trust, professionalism */
    --color-primary-dark: #061229;
    /* Hover / pressed state */
    --color-primary-light: #7B61FF;
    /* Purple variant for accents */
    --color-accent: #00D4FF;
    /* Cyan — CTAs, highlights */
    --color-accent-dark: #00B8E0;
    /* Accent hover */
    --color-accent-light: rgba(0, 212, 255, 0.08);
    /* Tinted background */

    --color-bg: #020617;
    /* Page background — deep slate */
    --color-surface: #0F172A;
    /* Card / panel background */
    --color-surface-2: #1E293B;
    /* Nested card / input background */
    --color-border: rgba(255, 255, 255, 0.08);
    /* Default border */
    --color-border-light: rgba(255, 255, 255, 0.04);
    /* Subtle border */

    --color-text: #FFFFFF;
    /* Primary text — white */
    --color-text-muted: #94A3B8;
    /* Secondary text */
    --color-text-light: #64748B;
    /* Tertiary / placeholder */

    /* Semantic */
    --color-success: #10B981;
    --color-error: #EF4444;
    --color-warning: #F59E0B;
    --color-info: #3B82F6;


    /* ── TYPOGRAPHY ───────────────────────────────────────────────────────── */
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.875rem;
    /* 30px */
    --font-size-4xl: 2.25rem;
    /* 36px */
    --font-size-5xl: 3rem;
    /* 48px */


    /* ── SPACING SCALE ────────────────────────────────────────────────────── */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;

    /* Numeric aliases (backwards compat) */
    --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;


    /* ── SHAPE ────────────────────────────────────────────────────────────── */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;


    /* ── SHADOWS ──────────────────────────────────────────────────────────── */
    --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 24px -4px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 24px rgba(0, 212, 255, 0.25);
    --shadow-glow-primary: 0 0 24px rgba(123, 97, 255, 0.2);


    /* ── ANIMATION ────────────────────────────────────────────────────────── */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);


    /* ── LAYOUT ───────────────────────────────────────────────────────────── */
    --max-width: 1200px;
    --header-height: 72px;
}