:root {
    /* Color Palette: Corporate Clean (Light Mode) */
    --clr-bg: #ffffff;
    --clr-bg-alt: #f1f5f9;
    --clr-text: #0f172a;
    --clr-text-muted: #64748b;
    
    --clr-accent-1: #2563eb; /* Royal Blue */
    --clr-accent-2: #1e40af; /* Deep Blue */
    
    --clr-glass: rgba(255, 255, 255, 0.95);
    --clr-glass-border: rgba(0, 0, 0, 0.1);
    
    --shd-standard: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shd-heavy: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    --tr-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--tr-smooth);
}

ul {
    list-style: none;
}

/* Glass Utility (Inverted for Light Mode) */
.glass {
    background: var(--clr-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--clr-glass-border);
    box-shadow: var(--shd-standard);
}

/* Base Decoration */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 100% 0%, #dbeafe 0%, transparent 40%),
                radial-gradient(circle at 0% 100%, #eff6ff 0%, transparent 40%);
    opacity: 0.6;
}
