/* ═════════════════════════════════════════════════════════════════
   SCROLL INDICATOR — Fixed vertical progress line (right edge)
   ═════════════════════════════════════════════════════════════════ */

.scroll-indicator {
	position: fixed; right: 1.25rem; top: 50%;
	transform: translateY(-50%);
	z-index: 80;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	pointer-events: none;
}
.si-line { width: 1px; height: 80px; background: rgba(26,26,26,.1); position: relative; overflow: hidden; border-radius: 1px; }
.si-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: var(--green); border-radius: 1px; }
.si-pct  { font-family: var(--f-sans); font-size: 10px; font-weight: 600; color: rgba(26,26,26,.35); }

@media (max-width: 767px) { .scroll-indicator { display: none; } }
