/* ── Accessibility cursor: large ring + blue dot following the mouse ─────── */
.a11y-cursor,
.a11y-cursor__dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  opacity: 0;
  transition: opacity .2s ease;
  will-change: transform;
}

.a11y-cursor {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(20, 40, 80, .85);
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .6);
  transform: translate3d(-9999px, -9999px, 0) translate(-50%, -50%);
}

.a11y-cursor__dot {
  width: 10px;
  height: 10px;
  background: #2b6cff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(43, 108, 255, .8);
  z-index: 99999;
  transform: translate3d(-9999px, -9999px, 0) translate(-50%, -50%);
}

.a11y-cursor--visible,
.a11y-cursor__dot--visible {
  opacity: 1;
}

/* Slight grow on interactive elements */
.a11y-cursor--hover {
  width: 56px;
  height: 56px;
  border-color: #2b6cff;
  background: rgba(43, 108, 255, .08);
}

/* Disable on touch / coarse pointer devices */
@media (hover: none), (pointer: coarse) {
  .a11y-cursor,
  .a11y-cursor__dot { display: none; }
}

/* Respect reduced-motion: keep the cursor but skip smoothing */
@media (prefers-reduced-motion: reduce) {
  .a11y-cursor,
  .a11y-cursor__dot { transition: opacity .1s ease; }
}
