/* Step Tracker */

#step-tracker {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    height: 38px;
    padding: 0 14px;
    color: var(--text-secondary);
    pointer-events: none;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(var(--primary-rgb), 0.14);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    transform: translateX(-50%);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.step-dot.single-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
    animation: stepIn 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.step-total {
    color: var(--text-tertiary);
    font-size: 13px;
    font-weight: 700;
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
