/* ===================================================================
   Scroll Progress Bar - Top-of-Viewport Progress Indicator
   =================================================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%; /* Updated by JS based on scroll position */
  background: var(--color-accent-gradient);
  z-index: 1001; /* Above navbar (navbar is z-index 1000) */
  transition: width 50ms linear;
  pointer-events: none; /* Don't interfere with clicks */
}
