/* ============================================================
   CURSOR — Premium dot + ring
   ============================================================ */

#cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: transform 0.1s, opacity 0.2s, background 0.2s;
  will-change: transform;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-expo),
              height 0.3s var(--ease-expo),
              border-color 0.2s,
              background 0.2s;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-label {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  pointer-events: none;
}

/* ─── Hover state ─── */
body.cursor-hover #cursor-ring {
  width: 64px;
  height: 64px;
  background: var(--ink);
  border-color: var(--ink);
}

body.cursor-hover #cursor-dot {
  opacity: 0;
}

body.cursor-hover .cursor-label {
  opacity: 1;
}

/* ─── Click state ─── */
body.cursor-click #cursor-ring {
  width: 28px;
  height: 28px;
}

/* ─── Hide on mobile ─── */
@media (max-width: 768px) {
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
  *, *::before, *::after { cursor: auto !important; }
}
