.hebe-visit-layer {
    position: fixed;
    z-index: 12000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 22px;
    color: #fff;
    background: rgba(3, 5, 8, .94);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .42s ease, visibility .42s ease;
}
.hebe-visit-layer.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.hebe-visit-card {
    position: relative;
    width: min(610px, 100%);
    padding: clamp(34px, 7vw, 72px) clamp(24px, 6vw, 64px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    text-align: center;
    background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
    box-shadow: 0 40px 100px rgba(0,0,0,.42);
    transform: translateY(28px) scale(.96);
    transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.hebe-visit-layer.is-active .hebe-visit-card { transform: none; }
.hebe-visit-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -130px;
    top: -150px;
    border-radius: 50%;
    background: #E32027;
    filter: blur(4px);
    opacity: .78;
    animation: hebeVisitOrb 3.2s ease-in-out infinite alternate;
}
.hebe-visit-line {
    display: block;
    width: 0;
    height: 3px;
    margin: 0 auto 22px;
    background: #E32027;
    box-shadow: 0 0 18px rgba(227,32,39,.7);
    transition: width .8s .2s cubic-bezier(.22,1,.36,1);
}
.hebe-visit-layer.is-active .hebe-visit-line { width: 72px; }
.hebe-visit-kicker {
    position: relative;
    display: block;
    margin-bottom: 12px;
    color: #ff6464;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.hebe-visit-card h2 {
    position: relative;
    margin: 0;
    color: #fff;
    font: 700 clamp(32px, 7vw, 66px)/.98 "DM Sans", Arial, sans-serif;
    letter-spacing: -.055em;
}
.hebe-visit-card h2 strong { color: #E32027; font-weight: inherit; }
.hebe-visit-logo {
    position: relative;
    display: block;
    width: clamp(112px, 24vw, 150px);
    height: auto;
    margin: 18px auto 0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(0,0,0,.3);
    transform: translateY(10px) scale(.92);
    opacity: 0;
    transition: transform .65s .18s cubic-bezier(.22,1,.36,1), opacity .5s .18s ease;
}
.hebe-visit-layer.is-active .hebe-visit-logo {
    transform: none;
    opacity: 1;
}
.hebe-visit-logo[hidden] { display: none; }
.hebe-visit-card p {
    position: relative;
    max-width: 430px;
    margin: 20px auto 0;
    color: rgba(255,255,255,.72) !important;
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.65;
}
.hebe-visit-skip {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,.25);
    cursor: pointer;
}
.hebe-visit-skip:hover { color: #fff; background: #E32027; }
@keyframes hebeVisitOrb { to { transform: translate(30px, 22px) scale(1.12); } }

@media (max-width: 600px) {
    .hebe-visit-card { padding-block: 48px; }
    .hebe-visit-card h2 { font-size: clamp(35px, 12vw, 52px); }
}
@media (prefers-reduced-motion: reduce) {
    .hebe-visit-layer, .hebe-visit-card, .hebe-visit-line, .hebe-visit-logo { transition: none; }
    .hebe-visit-card::before { animation: none; }
}
