.progress {
    width: 100%;
    height: var(--height-progress);
    background: var(--color-surface-hi);
    border-radius: var(--radius-pill);
    overflow: hidden;
    margin: var(--sp-2) 0;
}
.progress__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width var(--t-base);
}
