/* Progress Orientation */
@media (max-width: 1450px) {
    .ahv3-progress-rail {
        display: none !important;
    }
}

@media (min-width: 1451px) {
    .ahv3-section > .ahv3-container {
        padding-right: 224px;
    }

    .ahv3-progress-rail {
        position: fixed;
        z-index: 100;
        top: 50%;
        right: 40px;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
        color: #fff;
        background: rgba(5, 5, 6, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        padding: 24px 20px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .ahv3-progress-rail.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    body.ahv3-case.ivory-active .ahv3-progress-rail {
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(24, 23, 22, 0.12);
    }
}

.ahv3-progress-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ahv3-progress-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.ahv3-progress-link::after {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    margin-left: 12px;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.ahv3-progress-link:hover,
.ahv3-progress-link:focus-visible {
    color: rgba(255, 255, 255, 0.85);
}

.ahv3-progress-link.is-active {
    color: var(--ah-terracotta);
}

.ahv3-progress-link.is-active::after {
    transform: scale(1.5);
}

body.ahv3-case.ivory-active .ahv3-progress-link {
    color: rgba(24, 23, 22, 0.55);
}

body.ahv3-case.ivory-active .ahv3-progress-link:hover,
body.ahv3-case.ivory-active .ahv3-progress-link:focus-visible {
    color: rgba(24, 23, 22, 0.95);
}

body.ahv3-case.ivory-active .ahv3-progress-link.is-active {
    color: var(--ah-terracotta);
}
