.ml-home-entry {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.45s ease;
    z-index: 99999;
}

.ml-home-entry__logoWrap {
    width: min(280px, 62vw);
}

.ml-home-entry__logo {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: ml-home-entry-logo-in 0.9s ease forwards;
    backface-visibility: hidden;
}

.ml-home-entry.is-hidden {
    opacity: 0;
    pointer-events: none;
}

html.ml-home-entry-seen .ml-home-entry,
html.ml-home-entry-storage-off .ml-home-entry {
    display: none !important;
}

body.ml-home-entry-lock {
    overflow: hidden;
}

body.home .my-hero-header,
body.front-page .my-hero-header {
    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
    will-change: opacity, transform;
}

body.ml-home-entry-active .my-hero-header {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
}

body.ml-home-entry-active.ml-home-entry-reveal .my-hero-header {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@keyframes ml-home-entry-logo-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ml-home-entry,
    .ml-home-entry__logo,
    body.home .my-hero-header,
    body.front-page .my-hero-header {
        transition: none !important;
        animation: none !important;
    }
}
