

.ccm-greet {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: color-mix(in srgb, var(--bg, #0a0f1c) 70%, transparent);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    opacity: 0;
    animation: ccm-greet-in 0.22s ease-out forwards;
}
.ccm-greet.fading {
    animation: ccm-greet-out 0.25s ease-in forwards;
}
@keyframes ccm-greet-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes ccm-greet-out {
    from { opacity: 1; }
    to   { opacity: 0; visibility: hidden; }
}

.ccm-greet-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.ccm-greet-wm {
    font-family: var(--bh-body);
    font-weight: 900;
    font-size: clamp(56px, 9vw, 96px);
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--text-1, #edf2fa);
    text-transform: lowercase;
    display: inline-flex;
    align-items: baseline;
}
.ccm-greet-wm .ccm-greet-mark {
    height: 0.62em;
    width: auto;
    margin-right: 0.18em;
    align-self: center;
    flex-shrink: 0;
}

.ccm-greet-img {
    max-width: clamp(100px, 12vw, 160px);
    max-height: clamp(100px, 12vw, 160px);
    object-fit: contain;
    border-radius: 16px;
}

.ccm-greet-emoji {
    font-size: clamp(64px, 10vw, 110px);
    line-height: 1;
}

.ccm-greet-slogan {
    font-family: var(--bh-body);
    font-weight: 600;
    font-size: clamp(13px, 1.15vw, 16px);
    letter-spacing: 0.16em;
    color: var(--text-3, #7a849a);
    text-transform: uppercase;
    margin-top: 4px;
}

@media (prefers-reduced-motion: reduce) {
    body, .ccm-greet, .ccm-greet.fading { animation: none !important; }
}
