/* ============================================================
   CURSOR — Dot + follower ring
   ============================================================ */

.cursor-dot,
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    will-change: left, top;
}

.cursor-dot {
    width: 10px;
    height: 10px;
    background: var(--clr-cream);
    mix-blend-mode: difference;
    z-index: 9999;
}

.cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 245, 209, 0.8);
    background: transparent;
    z-index: 9998;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.cursor-follower.hovered {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(255, 245, 209, 0.1);
}

.cursor-follower.clicking {
    transform: translate(-50%, -50%) scale(0.5);
    background-color: var(--clr-text);
    border-color: transparent;
    transition: transform 0.1s ease, background-color 0.1s ease;
}