/* Orizon Animations — front.css */

/* Progress bar */
.oz-gsap.oz-progress {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, .1);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}
.oz-progress-fill {
    height: 100%;
    border-radius: 99px;
    background: currentColor;
    width: 0%;
}

/* Shine inner element */
.oz-shine-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 20%,
        rgba(255, 255, 255, .45) 50%,
        transparent 80%
    );
    pointer-events: none;
    transform: translateX(-120%);
}

/* Clip animations — need explicit overflow hidden */
.oz-gsap.oz-clip-left,
.oz-gsap.oz-clip-up {
    overflow: hidden;
}
