:root {
    /* Colors */
    --bg-body: #ffffff;
    --bg-light: #f4f7f9;
    --bg-dark: #011449;
    /* Deep Navy from existing brand */
    --bg-card: #ffffff;

    --primary: #0079E2;
    /* Bright Blue */
    --primary-glow: rgba(0, 121, 226, 0.3);
    --secondary: #00c3ff;
    /* Cyan for AI accents */
    --accent: #ff007a;
    /* Subtle neon pink for tiny details */

    --text-main: #011449;
    --text-muted: #506690;
    --text-light: #ffffff;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #011449 0%, #004e92 100%);
    --gradient-text: linear-gradient(45deg, #0079E2, #00c3ff);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);

    /* Fonts */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Decoration */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(1, 20, 73, 0.08);
    --shadow-glow: 0 0 20px rgba(0, 121, 226, 0.2);
}