:root {
    /* Brand Colors - Enterprise Bank */
    --primary-900: #0B1F3A;
    /* Deep Blue - Hero/Footer */
    --primary-800: #102A4C;
    /* Secondary Blue */
    --primary-700: #163764;
    /* Highlight Blue */

    --accent: #F2C94C;
    /* Gold - CTA */
    --accent-hover: #D4AF37;

    /* Neutrals */
    --bg-body: #FFFFFF;
    --bg-alt: #F5F7FA;
    /* Light Gray Section */
    --bg-dark: #0B1F3A;

    --text-main: #1C2430;
    /* Dark Text */
    --text-muted: #5B677A;
    /* Grey Text */
    --text-on-dark: #FFFFFF;

    --border-light: #E3E8EF;

    /* Semantic */
    --success: #27AE60;
    --danger: #C0392B;

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    /* Keeping Outfit for modernity in headings */

    /* Spacing System (8pt) */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 2rem;
    /* 32px */
    --spacing-lg: 5rem;
    --spacing-xl: 10rem;
    /* 160px - Huge breathing room */
    --spacing-2xl: 14rem;

    /* Editorial Layout Variable */
    --grid-editorial: 1fr 1.5fr;
    /* Title takes less space, content takes more */

    /* Decoration */
    --radius-sm: 0.5rem;
    /* 8px */
    --radius-md: 1rem;
    /* 16px */
    --radius-lg: 1.5rem;
    /* 24px */

    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-float: 0 20px 40px rgba(11, 31, 58, 0.12);
    /* Modern float effect */
    --shadow-glow: 0 0 20px rgba(242, 201, 76, 0.3);
    /* Gold glow */

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}