/* ============================================
   SIMPLE SCROLL PROGRESS - Clean & Professional
   ============================================ */

.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00e5ff, #8b6bff);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    transition: width 0.1s ease-out;
    width: 0%;
}

/* Remove milestone indicators - too distracting */