.logo-wrap,
.logo-wrap * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo-wrap {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00274C;
    overflow: hidden;
}

.logo-wrap::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}

.logo-wrap__content {
    position: relative;
    z-index: 1;
    width: 320px;
    animation: reveal 1.4s ease-out forwards;
    opacity: 0;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-wrap__content svg {
    width: 100%;
    height: auto;
    display: block;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%,
    100% {
        filter: drop-shadow(0 0 6px rgba(255,255,255,0.1));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(255,255,255,0.28)) drop-shadow(0 0 12px rgba(255,203,5,0.2));
    }
}

.logo-wrap .bar-wrap {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
    opacity: 0;
    animation: bar-appear 0.5s ease 1.2s forwards;
}

@keyframes bar-appear {
    to {
        opacity: 1;
    }
}

.logo-wrap .bar-fill {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: bar-sweep 2.8s ease-in-out infinite;
}

@keyframes bar-sweep {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}
