/* ===================================================================
   Jura Drones — "liquid water" pointer effect (overlay canvas)
   The JS creates <canvas class="water-fx">. Multiply blend keeps dark
   text readable while tinting white space with a soft aqua ripple.
   =================================================================== */
.water-fx {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .water-fx { display: none !important; }
}
