/* ====================================
 * LOADING SCREEN WITH P LOGO
 * ==================================== */

#app-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.8s ease;
}

#app-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

#loader-logo {
    width: 180px;
    height: 180px;
}

/* Base grey P - always visible */
.loader-base-path {
    fill: #e5e7eb;
    opacity: 1;
}

/* Gradient overlay that sweeps through the P */
.loader-gradient-path {
    fill: url(#loader-gradient);
    opacity: 1;
}

/* Watermark text - positioned at bottom */
#loader-watermark {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #e5e7eb;
    letter-spacing: -2.5px;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
    -webkit-user-select: none;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

