/* ==========================================================================
   CSS Variables - Datrixa Design System
   ========================================================================== */

:root {
    /* Brand Colors - Primary Palette */
    --key-lime: #d9ed92;
    --yellow-green: #b5e48c;
    --granny-smith: #99d98c;
    --keppel: #52b69a;
    --viridian: #34a0a4;
    --blue-munsell: #168aad;
    --celadon: #1a759f;
    --lapis: #1e6091;
    --yale: #184e77;

    /* Semantic Colors */
    --color-primary: var(--keppel);
    --color-primary-dark: var(--celadon);
    --color-accent: var(--key-lime);
    --color-accent-soft: var(--yellow-green);

    /* Background Colors */
    --bg-dark: #020a0e;
    --bg-dark-elevated: rgba(255, 255, 255, 0.02);
    --bg-dark-hover: rgba(255, 255, 255, 0.04);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.75);
    --text-subtle: rgba(255, 255, 255, 0.6);

    /* Border Colors */
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-default: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(82, 182, 154, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--keppel), var(--celadon));
    --gradient-accent: linear-gradient(135deg, var(--key-lime) 0%, var(--keppel) 50%, var(--celadon) 100%);
    --gradient-dark: linear-gradient(135deg, var(--yale), var(--celadon));

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Font Sizes */
    --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: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Spacing */
    --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;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 10px 40px rgba(82, 182, 154, 0.3);
    --shadow-glow-lg: 0 20px 60px rgba(82, 182, 154, 0.4);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index scale */
    --z-base: 1;
    --z-dropdown: 10;
    --z-sticky: 50;
    --z-fixed: 100;
    --z-modal: 1000;

    /* Container widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1200px;
    --container-2xl: 1400px;
}
