/* Enterprise Theme Variables */
:root {
    --accent: #00d4ff; /* Cyan */
    --accent-secondary: #4ecdc4; /* Teal */
}

/* Mesh Gradient Background for Enterprise */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(78, 205, 196, 0.05) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}
