body, a, button, * { cursor: none !important; }

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
}
.cursor-ring.hover {
  width: 62px; height: 62px;
  border-color: #c8a94a;
  background: rgba(200,169,74,.08);
}
.cursor-ring.click {
  width: 26px; height: 26px;
  background: rgba(200,169,74,.25);
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body, a, button, * { cursor: auto !important; }
}