/* ============================================
   PRELOADER STYLES
   ============================================ */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateY(0);
}

#preloader.hidden {
    transform: translateY(-100%);
}

.preloader-content {
    position: relative;
    width: 90%;
    max-width: 500px;
}

.grid-background {
    position: absolute;
    top: -100px;
    left: -100px;
    width: calc(100% + 200px);
    height: calc(100% + 200px);
    background-image: 
        linear-gradient(rgba(0, 63, 102, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 63, 102, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0;
}

.construction-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    background: rgba(0, 63, 102, 0.2);
}

.line.horizontal {
    height: 1px;
    width: 0;
    left: 0;
}

.line.vertical {
    width: 1px;
    height: 0;
    top: 0;
}

#evoke-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 63, 102, 0.15));
}

.cls-1 { fill: #00abdc; }
.cls-2, .cls-4 { fill: #003f66; }
.cls-3 { fill: #94ba33; }

.foundation {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #003f66, #00abdc, #94ba33);
    border-radius: 2px;
}

.tagline {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #003f66;
    opacity: 0;
    font-weight: 600;
    white-space: nowrap;
}

.loading-text {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #003f66;
    opacity: 0;
}
