/* ─── LOADER ────────────────────────────────────── */
#loader {
    position: fixed;
    inset: 0;
    background: var(--d);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .7s ease, visibility .7s ease
}

#loader.out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.ld-logo {
    font-size: 40px;
    font-weight: 900;
    background: var(--gc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 36px;
    letter-spacing: -1px
}

.ld-track {
    width: 220px;
    height: 3px;
    background: var(--d3);
    border-radius: 3px;
    overflow: hidden
}

.ld-bar {
    height: 100%;
    background: var(--gm);
    border-radius: 3px;
    width: 0;
    transition: width .05s linear
}

.ld-pct {
    margin-top: 12px;
    font-size: 13px;
    color: var(--tm);
    font-weight: 600
}