/* Top brand accent bar */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-mid) 40%, var(--color-accent) 70%, var(--color-accent-light) 100%);
    z-index: 100;
}

/* Progress bar animation */
.progress-bar {
    animation: progress 1s ease-out forwards;
}

/* Animated number counter */
.counter {
    display: inline-block;
    overflow: hidden;
}
.counter-inner {
    display: inline-block;
    animation: countUp 0.8s ease-out forwards;
}
