.launch-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(243, 245, 249, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.launch-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.launch-overlay__card {
    width: 100%;
    max-width: 320px;
    padding: 24px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.09);
    text-align: center;
}

.launch-overlay__brand {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
}

.launch-overlay__service {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111827;
}

.launch-bar {
    margin-top: 18px;
    height: 8px;
    border-radius: 999px;
    background: #edf2f7;
    overflow: hidden;
}

.launch-bar__fill {
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, #5b5cf0, #6a64ff);
    transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.launch-overlay__hint {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-sub);
}
.launch-overlay__logo {
    width: auto;
    height: 42px;
    margin: 0 auto;
    object-fit: contain;
}
