/* Inner page scroll progress — all pages except home main timeline */

.p4p-inner-progress {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8500;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.p4p-inner-progress__fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #a78bfa, #e8a87c, #f0c4a0);
    box-shadow: 0 0 12px rgba(232, 168, 124, 0.45);
    transition: width 0.12s linear;
}

.p4p-inner-progress__label {
    position: fixed;
    right: clamp(0.65rem, 2vw, 1rem);
    bottom: 0.55rem;
    z-index: 8501;
    font-family: var(--p4p-font-tech, monospace);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    pointer-events: none;
}

@media (max-width: 768px) {
    .p4p-inner-progress__label {
        display: none;
    }
}
