/* CURSOR */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--purple-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--purple-mid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.18s, width 0.2s, height 0.2s;
  mix-blend-mode: screen;
}
