/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor-dot {
  position: fixed;
  left: 0; top: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-ring {
  position: fixed;
  left: 0; top: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.3s;
}
.cursor-ring.hover { width: 48px; height: 48px; opacity: 0.5; }
.cursor-dot.hover  { opacity: 0; }

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-2));
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 10001;
}
