/* ============================================================
   KYMA — cursor.css v5  "premium wave"
   ============================================================ */

*, *::before, *::after { cursor: none !important; }

/* ── Point central ───────────────────────────────────────── */
.ky-dot {
  position: fixed;
  top: 0; left: 0;
  z-index: 99999;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;

  /* mix-blend-mode exclusion : blanc → visible partout */
  background: #ffffff;
  mix-blend-mode: exclusion;

  transition:
    opacity .2s ease,
    width   .2s cubic-bezier(.22,1,.36,1),
    height  .2s cubic-bezier(.22,1,.36,1);

  /* Micro halo */
  box-shadow: 0 0 6px 1px rgba(96,165,250,0.35);
}

.ky-dot.ky-hover {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 10px 2px rgba(96,165,250,0.45);
}
.ky-dot.ky-click {
  width: 3px;
  height: 3px;
  box-shadow: none;
}

/* ── Wrapper anneau ──────────────────────────────────────── */
.ky-ring-wrap {
  position: fixed;
  top: 0; left: 0;
  z-index: 99998;
  width: 44px;
  height: 44px;
  pointer-events: none;
  will-change: transform;
  transition: opacity .25s ease;
}

.ky-ring-svg {
  width: 44px;
  height: 44px;
  display: block;
  /* Transition CSS sur le scale uniquement pour hover/click */
  transition: transform .2s cubic-bezier(.22,1,.36,1);
}

/* Hover — zoom légèrement l'anneau, couleurs s'allègent */
.ky-ring-wrap.ky-hover .ky-ring-svg {
  transform: scale(1.18);
}
.ky-ring-wrap.ky-hover .ky-outer {
  stroke: rgba(26,86,219,0.35);
  stroke-width: 1;
}
.ky-ring-wrap.ky-hover .ky-inner {
  stroke: rgba(96,165,250,0.18);
}

/* Clic — se resserre */
.ky-ring-wrap.ky-click .ky-ring-svg {
  transform: scale(0.72);
}
.ky-ring-wrap.ky-click .ky-outer {
  stroke: rgba(13,39,87,0.8);
  stroke-width: 1.8;
}
.ky-ring-wrap.ky-click .ky-inner {
  stroke: rgba(13,39,87,0.3);
}

/* Transitions stroke et stroke-width */
.ky-outer, .ky-inner {
  transition:
    stroke       .2s ease,
    stroke-width .2s ease;
}
