/* ═══════════════════════════════════════════════════════════
   ANIMATED NEURAL NETWORK BACKGROUND (Apex.AI style)
   ═══════════════════════════════════════════════════════════ */

.neural-bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    width: 100vw;
    height: 100vh;
    background: transparent;
    opacity: 0.85;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-loaded .neural-bg-canvas {
    opacity: 0.85;
}

@media (max-width: 640px) {
    .neural-bg-canvas {
        display: none !important;
    }
}
