/* ── CURSOR ── */
*, *::before, *::after { cursor: none !important; }

#cur-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .15s ease, height .15s ease, opacity .15s ease;
  will-change: transform;
}

#cur-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .3s ease, height .3s ease, border-width .3s ease, opacity .3s ease;
  will-change: transform;
}

/* Hover state — lock on effect */
body.cur-hover #cur-dot {
  width: 0;
  height: 0;
  opacity: 0;
}
body.cur-hover #cur-ring {
  width: 48px;
  height: 48px;
  border-width: 2px;
}

/* Click state */
body.cur-click #cur-ring {
  width: 20px;
  height: 20px;
  border-width: 3px;
}
