/**
 * CSS Variables for scomis.angelsfucked.com
 * Design: Prism Pulse — Neon Teal + Obsidian + Vivid Violet + Coral
 */

:root {
    /* Primary Palette (Prism Pulse) */
    --color-primary: #00F5CC;         /* Neon Teal */
    --color-primary-dark: #00C4A3;
    --color-primary-light: #33F7D5;
    --color-primary-rgb: 0, 245, 204;

    --color-violet: #7C3AED;          /* Vivid Violet */
    --color-violet-dark: #6D28D9;
    --color-violet-light: #8B5CF6;
    --color-coral: #FF6B6B;           /* Coral Red accent */
    --color-coral-dark: #E85555;
    --color-gold: #FFD60A;            /* Gold highlight */

    --color-secondary: #0C0E18;       /* Obsidian black */
    --color-secondary-dark: #07080F;
    --color-secondary-light: #141828;

    /* Background Colors */
    --color-bg: #0C0E18;              /* Obsidian main bg */
    --color-bg-dark: #07080F;
    --color-bg-light: #141828;
    --color-bg-card: #141828;
    --color-bg-header: transparent;
    --color-bg-footer: #07080F;
    --color-bg-section-dark: #07080F;
    --color-bg-section-mid: #141828;

    /* Text Colors */
    --color-text: #F0F4FF;
    --color-text-light: #A0AABF;
    --color-text-muted: #5A6480;
    --color-text-white: #ffffff;
    --color-text-on-primary: #0C0E18;
    --color-text-on-secondary: #F0F4FF;

    /* Accent */
    --color-accent: #FF6B6B;
    --color-accent-dark: #E85555;
    --color-accent-light: #FF8E8E;
    --color-accent-rgb: 255, 107, 107;

    /* Semantic Colors */
    --color-success: #00F5CC;
    --color-error: #FF6B6B;
    --color-warning: #FFD60A;
    --color-info: #7C3AED;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00F5CC 0%, #7C3AED 100%);
    --gradient-hero: linear-gradient(135deg, #0C0E18 0%, #141828 100%);
    --gradient-teal: linear-gradient(135deg, #00F5CC 0%, #00C4A3 100%);
    --gradient-violet: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
    --gradient-coral: linear-gradient(135deg, #FF6B6B 0%, #E85555 100%);

    /* Typography */
    --font-main: 'Manrope', 'Segoe UI', system-ui, sans-serif;
    --font-heading: 'Syne', 'Manrope', system-ui, sans-serif;
    --font-mono: 'Fira Code', monospace;

    /* Font Sizes */
    --text-xs: clamp(0.65rem, 0.6rem + 0.25vw, 0.75rem);
    --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
    --text-base: clamp(0.875rem, 0.85rem + 0.15vw, 1rem);
    --text-lg: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-xl: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    --text-4xl: clamp(2.5rem, 1.75rem + 3.75vw, 5rem);
    --text-hero: clamp(3rem, 2rem + 5vw, 7rem);

    /* Line Heights */
    --leading-tight: 1.0;
    --leading-normal: 1.4;
    --leading-relaxed: 1.6;

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

    /* 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: 5rem;
    --space-4xl: 7rem;

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

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 8px 32px rgba(0, 245, 204, 0.15);
    --shadow-glow-primary: 0 0 30px rgba(0, 245, 204, 0.4);
    --shadow-glow-accent: 0 0 30px rgba(124, 58, 237, 0.4);
    --shadow-glow-coral: 0 0 30px rgba(255, 107, 107, 0.4);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Layout */
    --container-max: 1280px;
    --container-padding: 2rem;
    --header-height: 92px;
    --footer-min-height: 200px;

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;

    /* Carousel Animation */
    --carousel-speed-row1: 240s;
    --carousel-speed-row2: 250s;
    --carousel-speed-row3: 260s;
}
