/* ============================================
   SCROLL INDICATOR — Frosted glass side dots
   Fixed right side, tracks active section
   ============================================ */

.scroll-indicator {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.scroll-indicator__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Dot: default state */
.scroll-indicator__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.25);
  transition:
    height 350ms cubic-bezier(0.25, 1, 0.5, 1),
    background 300ms ease;
  cursor: pointer;
}

.scroll-indicator__dot:hover {
  background: rgba(0, 0, 0, 0.45);
}

/* Active dot: elongated pill */
.scroll-indicator__dot.is-active {
  height: 24px;
  background: rgba(0, 0, 0, 0.7);
}

/* Hide on small screens */
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}
