/**
 * Scroll progress indicator – fixed bar at top of viewport.
 * Width driven by --scroll-progress (0%–100%) set in scroll-progress.js.
 */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 1031;
  background-color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.scroll-progress-bar__fill {
  display: block;
  height: 100%;
  width: var(--scroll-progress, 0%);
  max-width: 100%;
  background-color: #1e8aff;
  transition: width 0.1s ease-out;
}
