/* fx/cursor-ripple.css — overlay for the water-ripple cursor wake.
   Only visible while the pixel companion is on; never blocks input. */
.cursor-ripple {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 46;          /* above content, below the sticky nav (z-50) */
  display: none;        /* shown only in companion mode */
}
body[data-pixel="on"] .cursor-ripple { display: block; }
@media (prefers-reduced-motion: reduce) {
  .cursor-ripple { display: none !important; }
}
