.site-cursor-dot,
.site-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483647;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  will-change: transform;
}

.site-cursor-dot {
  width: 6px;
  height: 6px;
  background: #1a72ff;
  box-shadow: 0 0 12px rgba(26, 114, 255, .8);
}

.site-cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(26, 114, 255, .68);
  background: rgba(26, 114, 255, .025);
  box-shadow: 0 0 18px rgba(26, 114, 255, .08);
  transition: width .18s ease, height .18s ease, border-color .18s ease,
    background-color .18s ease, opacity .12s ease;
}

.site-cursor-dot.is-visible,
.site-cursor-ring.is-visible {
  opacity: 1;
}

.site-cursor-ring.is-interactive {
  width: 52px;
  height: 52px;
  border-color: rgba(26, 114, 255, .95);
  background: rgba(26, 114, 255, .1);
}

.site-cursor-ring.is-pressed {
  width: 29px;
  height: 29px;
  background: rgba(26, 114, 255, .16);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html.has-site-cursor,
  html.has-site-cursor body,
  html.has-site-cursor a,
  html.has-site-cursor button,
  html.has-site-cursor input,
  html.has-site-cursor textarea,
  html.has-site-cursor select,
  html.has-site-cursor label,
  html.has-site-cursor [role="button"] {
    cursor: none !important;
  }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .site-cursor-dot,
  .site-cursor-ring {
    display: none !important;
  }
}
