/* This block reserves its dimensions before either image or video is decoded. */
.home-infra-visual.home-node-visual { isolation: isolate; }
.home-node-stage {
    position: absolute;
    width: 640px;
    height: 640px;
    right: -72px;
    top: -100px;
    pointer-events: none;
    contain: layout paint;
    -webkit-mask-image: radial-gradient(ellipse 65% 64% at 50% 48%, #000 56%, transparent 81%);
    mask-image: radial-gradient(ellipse 65% 64% at 50% 48%, #000 56%, transparent 81%);
}
.home-node-poster, .home-node-poster img, .home-node-video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-node-video { opacity: 0; transition: opacity .45s ease; }
.home-node-stage.is-playing .home-node-video { opacity: 1; }
.home-infra-spec-stack {
    position: absolute;
    z-index: 2;
    top: 16px;
    right: -2px;
    display: grid;
    gap: 12px;
    width: 184px;
}
.home-node-visual .home-infra-spec { position: static; width: 100%; }
.home-infra-spec-network span { margin: 0 0 5px; }
.home-node-toggle {
    position: absolute;
    z-index: 3;
    right: 16px;
    bottom: 8px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: rgba(255,255,255,.8);
    background: rgba(17,21,28,.78);
    cursor: pointer;
}
.home-node-toggle[hidden] { display: none !important; }
.home-node-toggle::before { content: ''; width: 8px; height: 11px; border-left: 2px solid currentColor; border-right: 2px solid currentColor; }
.home-node-toggle.is-paused::before { width: 0; height: 0; border: 6px solid transparent; border-left: 9px solid currentColor; border-right: 0; margin-left: 3px; }
.home-node-toggle:hover { color: #fff; border-color: #44d6ff; }
.home-node-toggle:focus-visible { outline: 2px solid #44d6ff; outline-offset: 4px; }
@media (min-width: 1441px) {
    .home-node-stage { width: 710px; height: 710px; top: -126px; right: -54px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .home-node-stage { width: 580px; height: 580px; right: -107px; top: -66px; }
}
@media (max-width: 991px) { .home-node-visual { display: none; } }
@media (prefers-reduced-motion: reduce) { .home-node-video { transition: none; } }
