/* ============================
   PAGE TRANSITIONS
   Smooth fade-out before navigating away.
   The overlay starts INVISIBLE and only fades
   in when clicking an internal link.
   ============================ */

.page-transition-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #FAFBFD;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s cubic-bezier(.55, 0, 1, .45);
}

/* Navigating away — fade overlay in */
.page-transition-overlay.is-leaving {
    opacity: 1;
    pointer-events: all;
}