/* Smooth Scroll & Progress Bar */
html {
    scroll-behavior: smooth;
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #8338ec);
    z-index: 10000;
    transition: width 0.1s ease-out;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
