
.smart-cursor {
  position: fixed;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate3d(-50%, -50%, 0);
  transition: transform 0.12s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 14px rgba(33,41,135,0.35), 0 0 24px rgba(67,52,166,0.35);
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), #5a46ff, #1a1f7a 65%, #0c0f3d 100%);
  filter: saturate(1.25);
  mix-blend-mode: screen;
}
.cursor-canvas {
  position: fixed;
  inset: 0;
  z-index: 99998;
  pointer-events: none;
  background: transparent !important;
  mix-blend-mode: screen;
}
body .smart-cursor-active * { cursor: none !important; }
@media (max-width: 768px) {
  .smart-cursor, .cursor-canvas { display: none !important; }
  body .smart-cursor-active * { cursor: auto !important; }
}

