/* NOUS. — Custom cursor (disabled on touch) */

.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

.cursor {
  width: 8px;
  height: 8px;
  background: #FFBF00;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid #FFBF00;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease-out-expo),
              width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              border-color 0.3s var(--ease-out-expo);
}

/* Hover state on clickables */
body.cursor-hover .cursor {
  width: 12px;
  height: 12px;
  background: #0a0a0a;
}

body.cursor-hover .cursor-follower {
  width: 56px;
  height: 56px;
  border-color: #0a0a0a;
}

/* Hide on touch devices */
@media (pointer: coarse) {
  .cursor,
  .cursor-follower {
    display: none !important;
  }
}
