/* Veysalov Studio — Flow Wave fixed background layer.
   Sits behind all page content via z-index: -1; no per-page markup changes needed. */
#scene {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: -1;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    #scene { display: none; }
}
