/* Besere Oil — cursor follower: a solid dot pinned to the pointer and a
   ring that runs a touch behind it. Over a link or button the ring
   smoothly morphs into a frame that covers the element. cursor.js builds
   the markup and drives every frame; loaded by every page. Fine pointers
   only. */

.cur-layer {
  position: fixed; inset: 0; pointer-events: none; z-index: 240;
  opacity: 0; transition: opacity 0.35s ease;
}
.cur-dot {
  position: absolute; left: -0.1875rem; top: -0.1875rem;
  width: 0.375rem; height: 0.375rem; border-radius: 50%;
  background: var(--color-accent-700);
  will-change: transform;
}
.cur-ring {
  position: absolute; left: 0; top: 0;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  border: 0.09rem solid var(--color-accent-600);
  will-change: transform, width, height, border-radius;
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cur-layer { display: none; }
}
