#splash {
    position: fixed;
    inset: 0;
    background: linear-gradient(145deg, #F4F9FF 0%, #E6F0FA 50%, #F5F8FF 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.splash-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(46, 154, 184, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(46, 154, 184, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

.splash-orb-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 154, 184, 0.08) 0%, transparent 70%);
    top: -80px;
    right: -80px;
}

.splash-orb-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
    bottom: -60px;
    left: -60px;
}

.splash-logo-wrap {
    width: 80px;
    height: 80px;
    border-radius: 22%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: splashPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    margin-bottom: 24px;
    overflow: hidden;
}

.splash-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -1px;
    animation: splashUp 0.5s ease 0.5s both;
}

.splash-title span {
    color: var(--bee);
}

.splash-sub {
    font-size: 1.1rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 8px;
    animation: splashUp 0.5s ease 0.65s both;
}

.splash-tagline {
    font-size: 0.8rem;
    color: var(--muted-2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
    animation: splashUp 0.5s ease 0.75s both;
}

.splash-dots {
    display: flex;
    gap: 8px;
    margin-top: 40px;
    animation: splashUp 0.5s ease 0.9s both;
}

.splash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-l);
    animation: dotPulse 1.2s ease-in-out infinite;
}

.splash-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.splash-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.splash-ver {
    position: absolute;
    bottom: 28px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes splashPop {
    from {
        opacity: 0;
        transform: scale(0.4) rotate(-10deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes splashUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        background: rgba(255, 255, 255, 0.2);
    }

    50% {
        background: rgba(46, 154, 184, 0.8);
    }
}