/* Isolated Home landing hero. */
.landing-hero {
    position: relative;
    min-height: 740px;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfaff 0%, #f7f8ff 58%, #f4f6fe 100%);
    color: #111827;
}

.landing-hero__ambient {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.landing-hero__ambient::after {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99, 102, 241, .12) 1px, transparent 1px);
    background-size: 24px 24px;
    content: "";
    opacity: .42;
}

.landing-hero__ambient-orb {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(70px);
}

.landing-hero__ambient-orb--one {
    top: -190px;
    left: -160px;
    width: 570px;
    height: 570px;
    background: rgba(165, 180, 252, .18);
}

.landing-hero__ambient-orb--two {
    top: 18%;
    right: -170px;
    width: 640px;
    height: 640px;
    background: rgba(216, 180, 254, .15);
}

.landing-hero__ambient-orb--three {
    bottom: -230px;
    left: 30%;
    width: 480px;
    height: 480px;
    background: rgba(221, 214, 254, .2);
}

.landing-hero__dot {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, .28);
}

.landing-hero__dot--one {
    top: 112px;
    left: 9%;
    width: 18px;
    height: 18px;
}

.landing-hero__dot--two {
    right: 36%;
    bottom: 105px;
    width: 29px;
    height: 29px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.landing-hero__dot--three {
    top: 39%;
    right: 51%;
    width: 11px;
    height: 11px;
    opacity: .62;
}

.landing-hero > .container {
    position: relative;
    z-index: 2;
}

.landing-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(38px, 5vw, 84px);
    align-items: center;
    min-height: 740px;
    padding: 26px 0 42px;
}

.landing-hero__content {
    position: relative;
    z-index: 3;
    max-width: 640px;
    align-self: start;
}

.landing-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 23px;
    padding: 8px 15px;
    border: 1px solid rgba(99, 102, 241, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 24px rgba(99, 102, 241, .08);
    color: #4f46e5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.landing-hero__badge i {
    position: relative;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4f46e5;
    box-shadow: 0 0 0 5px rgba(99, 102, 241, .13);
}

.landing-hero__badge i::after {
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(99, 102, 241, .35);
    border-radius: inherit;
    animation: landing-hero-pulse 2.2s ease-in-out infinite;
    content: "";
}

.landing-hero__content h1 {
    max-width: 670px;
    margin: 0 0 22px;
    color: #0f172a;
    font-family: var(--itzone-font-two, "Barlow", sans-serif);
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
}

.landing-hero__content h1 span {
    display: inline-block;
    background: linear-gradient(100deg, #4f46e5 0%, #7c3aed 52%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-hero__description {
    max-width: 570px;
    margin: 0 0 34px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.72;
}

.landing-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.landing-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 54px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.landing-hero__button:hover {
    color: #fff;
    transform: translateY(-3px);
}

.landing-hero__button i {
    font-size: 12px;
    transition: transform .22s ease;
}

.landing-hero__button:hover i {
    transform: translateX(4px);
}

.landing-hero__button--primary {
    background: linear-gradient(100deg, #6366f1, #7c3aed);
    box-shadow: 0 12px 28px rgba(99, 102, 241, .28);
}

.landing-hero__button--secondary {
    background: #7c3aed;
    box-shadow: 0 12px 28px rgba(124, 58, 237, .2);
}

.landing-hero__video {
    position: relative;
    display: inline-grid;
    width: 55px;
    height: 55px;
    margin-left: 2px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #8b5cf6);
    box-shadow: 0 12px 28px rgba(99, 102, 241, .3);
    color: #fff;
    transition: transform .22s ease;
}

.landing-hero__video:hover {
    color: #fff;
    transform: scale(1.06);
}

.landing-hero__video > i {
    position: relative;
    z-index: 2;
    margin-left: 2px;
    font-size: 14px;
}

.landing-hero__video-ring {
    position: absolute;
    inset: -5px;
    border: 2px solid rgba(99, 102, 241, .35);
    border-radius: 50%;
    animation: landing-hero-pulse 2.8s ease-in-out infinite;
}

.landing-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 590px;
    margin-top: 45px;
    padding-top: 24px;
    border-top: 1px solid rgba(99, 102, 241, .18);
}

.landing-hero__stat {
    min-width: 0;
}

.landing-hero__stat strong {
    display: block;
    color: #0f172a;
    font-family: var(--itzone-font-two, "Barlow", sans-serif);
    font-size: 27px;
    font-weight: 800;
    line-height: 1.1;
}

.landing-hero__stat span {
    display: block;
    margin-top: 7px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.landing-hero__visual {
    position: relative;
    min-height: 620px;
    perspective: 1000px;
}

.landing-hero__halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185, 193, 239, .2), rgba(235, 211, 238, .12) 46%, transparent 72%);
    filter: blur(22px);
    transform: translate(-50%, -50%);
}

.landing-hero__core-scene {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(88%, 590px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%) rotateX(var(--hero-tilt-y, 0deg)) rotateY(var(--hero-tilt-x, 0deg));
    transform-style: preserve-3d;
    transition: transform .35s ease-out;
}

.landing-hero__three-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.landing-hero__core-scene.has-three .landing-hero__core,
.landing-hero__core-scene.has-three .landing-hero__orbit,
.landing-hero__core-scene.has-three .landing-hero__node {
    opacity: 0;
}

.landing-hero__core {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.landing-hero__core--outer {
    width: 53%;
    height: 53%;
    background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .75), transparent 14%), radial-gradient(circle at 42% 40%, #a78bfa 0%, #6366f1 30%, #312e81 72%, #0f172a 100%);
    box-shadow: inset -24px -20px 38px rgba(15, 23, 42, .34), 0 0 45px rgba(99, 102, 241, .55), 0 0 120px rgba(139, 92, 246, .28);
    animation: landing-hero-core-float 5s ease-in-out infinite;
}

.landing-hero__core--middle {
    width: 68%;
    height: 68%;
    border: 1px solid rgba(99, 102, 241, .66);
    box-shadow: 0 0 0 18px rgba(99, 102, 241, .07), 0 0 0 39px rgba(139, 92, 246, .06);
    animation: landing-hero-core-spin 15s linear infinite;
}

.landing-hero__core--inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 25%;
    height: 25%;
    border: 1px solid rgba(224, 231, 255, .75);
    background: rgba(15, 23, 42, .24);
    box-shadow: 0 0 25px rgba(76, 215, 246, .5), inset 0 0 16px rgba(76, 215, 246, .3);
    transform: translate(-50%, -50%) rotate(45deg);
}

.landing-hero__core--inner span {
    display: block;
    width: 7px;
    height: 25px;
    border-radius: 999px;
    background: linear-gradient(#4cd7f6, #a78bfa);
    box-shadow: 0 0 12px rgba(76, 215, 246, .9);
    transform: rotate(-45deg);
}

.landing-hero__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    border: 2px solid rgba(99, 102, 241, .48);
    border-radius: 50%;
    transform-style: preserve-3d;
}

.landing-hero__orbit--one {
    width: 92%;
    height: 36%;
    transform: translate(-50%, -50%) rotate(22deg);
    animation: landing-hero-orbit-one 10s linear infinite;
}

.landing-hero__orbit--two {
    width: 103%;
    height: 43%;
    border-color: rgba(236, 72, 153, .42);
    transform: translate(-50%, -50%) rotate(-38deg) rotateX(52deg);
    animation: landing-hero-orbit-two 13s linear infinite;
}

.landing-hero__orbit--three {
    width: 79%;
    height: 112%;
    border-color: rgba(56, 189, 248, .43);
    transform: translate(-50%, -50%) rotate(52deg) rotateX(58deg);
    animation: landing-hero-orbit-three 17s linear infinite;
}

.landing-hero__node {
    position: absolute;
    display: block;
    width: 11px;
    height: 11px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #6366f1;
    box-shadow: 0 0 17px #6366f1;
}

.landing-hero__node--one { top: 19%; left: 61%; }
.landing-hero__node--two { top: 54%; right: 5%; background: #ec4899; box-shadow: 0 0 17px #ec4899; }
.landing-hero__node--three { bottom: 13%; left: 22%; background: #38bdf8; box-shadow: 0 0 17px #38bdf8; }
.landing-hero__node--four { top: 30%; left: 5%; background: #a855f7; box-shadow: 0 0 17px #a855f7; }

.landing-hero__scene-label {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(99, 102, 241, .26);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 30px rgba(99, 102, 241, .13);
    color: #4338ca;
    font-size: 11px;
    font-weight: 800;
    transform: translate(-50%, 126px);
}

.landing-hero__chat {
    position: fixed;
    bottom: 22px;
    left: 30px;
    z-index: 20;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 14px 28px rgba(99, 102, 241, .3);
    color: #fff;
    cursor: pointer;
    font-size: 21px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.landing-hero__chat:hover,
.landing-hero__chat:focus-visible {
    box-shadow: 0 17px 34px rgba(99, 102, 241, .42);
    outline: 0;
    transform: translateY(-3px);
}

.landing-hero__chat b {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #34d399;
}

.landing-hero__scene-label i {
    color: #6366f1;
}

.landing-hero__telemetry {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    max-width: 235px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 13px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 12px 28px rgba(99, 102, 241, .12);
    backdrop-filter: blur(12px);
    transition: transform .22s ease;
}

.landing-hero__telemetry:hover {
    transform: translateY(-4px);
}

.landing-hero__telemetry--top {
    top: 25px;
    right: -10px;
}

.landing-hero__telemetry--bottom {
    bottom: 36px;
    left: 0;
}

.landing-hero__telemetry--latency {
    right: -25px;
    bottom: 145px;
}

.landing-hero__telemetry-icon {
    position: relative;
    display: grid;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(99, 102, 241, .12);
    border-radius: 11px;
    font-size: 16px;
}

.landing-hero__telemetry-icon--green { color: #4f46e5; background: #eef2ff; }
.landing-hero__telemetry-icon--purple { color: #7c3aed; background: #f5f3ff; }
.landing-hero__telemetry-icon--cyan { color: #0891b2; background: #ecfeff; }

.landing-hero__telemetry-icon b,
.landing-hero__telemetry strong b {
    display: block;
    width: 7px;
    height: 7px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #22c55e;
}

.landing-hero__telemetry-icon b {
    position: absolute;
    top: 3px;
    right: 3px;
}

.landing-hero__telemetry > span:last-child {
    min-width: 0;
}

.landing-hero__telemetry strong,
.landing-hero__telemetry small {
    display: block;
}

.landing-hero__telemetry strong {
    overflow: hidden;
    color: #1e293b;
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-hero__telemetry strong em {
    margin-left: 4px;
    padding: 3px 5px;
    border-radius: 4px;
    background: #ecfdf5;
    color: #059669;
    font-size: 8px;
    font-style: normal;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.landing-hero__telemetry small {
    overflow: hidden;
    margin-top: 3px;
    color: #64748b;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-hero__telemetry small i {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 5px;
    border-radius: 50%;
    background: #6366f1;
}

@keyframes landing-hero-pulse {
    0%, 100% { opacity: .5; transform: scale(.9); }
    50% { opacity: .15; transform: scale(1.18); }
}

@keyframes landing-hero-core-float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-12px); }
}

@keyframes landing-hero-core-spin {
    from { transform: translate(-50%, -50%) rotate(0); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes landing-hero-orbit-one {
    from { transform: translate(-50%, -50%) rotate(22deg) rotateZ(0); }
    to { transform: translate(-50%, -50%) rotate(22deg) rotateZ(360deg); }
}

@keyframes landing-hero-orbit-two {
    from { transform: translate(-50%, -50%) rotate(-38deg) rotateX(52deg) rotateZ(0); }
    to { transform: translate(-50%, -50%) rotate(-38deg) rotateX(52deg) rotateZ(-360deg); }
}

@keyframes landing-hero-orbit-three {
    from { transform: translate(-50%, -50%) rotate(52deg) rotateX(58deg) rotateZ(0); }
    to { transform: translate(-50%, -50%) rotate(52deg) rotateX(58deg) rotateZ(360deg); }
}

@media (max-width: 1199px) {
    .landing-hero__grid {
        gap: 35px;
    }

    .landing-hero__telemetry--top { right: 0; }
    .landing-hero__telemetry--latency { right: -5px; }
}

@media (max-width: 991px) {
    .landing-hero {
        min-height: 0;
    }

    .landing-hero__grid {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 42px 0 82px;
    }

    .landing-hero__content {
        max-width: 720px;
    }

    .landing-hero__visual { display: none; }
}

@media (max-width: 575px) {
    .landing-hero__grid {
        gap: 20px;
        padding: 28px 0 70px;
    }

    .landing-hero__badge {
        margin-bottom: 18px;
        font-size: 10px;
    }

    .landing-hero__content h1 {
        font-size: 40px;
    }

    .landing-hero__description {
        font-size: 15px;
        line-height: 1.65;
    }

    .landing-hero__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 55px;
        align-items: center;
        gap: 13px;
    }

    .landing-hero__button {
        width: 100%;
    }

    .landing-hero__button--primary {
        grid-column: 1 / -1;
    }

    .landing-hero__button--secondary {
        grid-column: 1;
    }

    .landing-hero__video {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
        margin: 0;
    }

    .landing-hero__stats {
        gap: 9px;
        margin-top: 34px;
        padding-top: 20px;
    }

    .landing-hero__stat strong {
        font-size: 22px;
    }

    .landing-hero__stat span {
        font-size: 10px;
    }

    .landing-hero__chat {
        bottom: 18px;
        left: 29px;
        width: 64px;
        height: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero__badge i::after,
    .landing-hero__video-ring,
    .landing-hero__core--outer,
    .landing-hero__core--middle,
    .landing-hero__orbit {
        animation: none;
    }

    .landing-hero__core-scene,
    .landing-hero__telemetry,
    .landing-hero__button {
        transition: none;
    }
}
