.hero {
    position: relative;
    min-height: calc(100svh - 76px);
    display: flex;
    align-items: center;
    padding: clamp(76px, 8vw, 116px) 0 58px;
}

.premium-hero::before {
    content: "";
    position: absolute;
    inset: 5% 0 auto;
    height: 72%;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 111, 158, 0.2), transparent 22rem),
        radial-gradient(circle at 78% 20%, rgba(120, 183, 255, 0.2), transparent 24rem);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
    align-items: center;
    gap: clamp(34px, 6vw, 76px);
}

.hero-copy h1 {
    max-width: 760px;
    font-size: clamp(62px, 9vw, 118px);
    line-height: 0.9;
    letter-spacing: 0;
    background: linear-gradient(90deg, #1b2238 0%, #ff6f9e 24%, #65cfff 52%, #1b2238 82%, #ff6f9e 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 16px 34px rgba(255, 111, 158, 0.12);
    filter: drop-shadow(0 14px 26px rgba(255, 111, 158, 0.12));
    animation: myuGradientText 8s ease-in-out infinite;
}

.hero-copy p {
    max-width: 740px;
    margin-top: 24px;
    color: #48546d;
    font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-note {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin-top: 22px;
    padding: 0 13px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 16px 42px rgba(42, 34, 58, 0.08);
    color: #576178;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(16px);
}

.hero-visual {
    position: relative;
    min-height: min(54vw, 560px);
    border-radius: 18px;
    transform-style: preserve-3d;
}

.hero-core {
    position: absolute;
    inset: 18%;
    z-index: 3;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background:
        radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.96), rgba(255, 238, 247, 0.78) 52%, rgba(238, 252, 255, 0.72)),
        linear-gradient(135deg, rgba(255, 111, 158, 0.22), rgba(120, 183, 255, 0.2));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.9),
        0 34px 94px rgba(255, 111, 158, 0.22);
}

.hero-core img {
    width: min(62%, 260px);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px rgba(42, 34, 58, 0.16));
}

.hero-orbit {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 999px;
}

.hero-orbit__ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 0 42px rgba(255, 111, 158, 0.08);
    animation: orbitPulse 8s ease-in-out infinite;
}

.hero-orbit__ring--outer {
    inset: 3%;
    border-color: rgba(255, 111, 158, 0.24);
}

.hero-orbit__ring--middle {
    inset: 14%;
    border-color: rgba(120, 183, 255, 0.28);
    animation-delay: -2s;
}

.hero-orbit__ring--inner {
    inset: 27%;
    border-style: dashed;
    border-color: rgba(73, 205, 191, 0.34);
    animation-delay: -4s;
}

.hero-orbit__node {
    position: absolute;
    z-index: 4;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.68);
    color: #38435c;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 16px 42px rgba(42, 34, 58, 0.12);
    backdrop-filter: blur(14px);
    animation: floatNode 5.6s ease-in-out infinite;
}

.hero-orbit__node--trace {
    top: 14%;
    right: 12%;
}

.hero-orbit__node--audit {
    left: 5%;
    bottom: 26%;
    animation-delay: -1.5s;
}

.hero-orbit__node--guard {
    right: 2%;
    bottom: 42%;
    animation-delay: -3s;
}

.hero-telemetry {
    position: absolute;
    z-index: 5;
    right: 2%;
    bottom: 6%;
    width: min(210px, 42%);
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: rgba(28, 34, 56, 0.78);
    color: #fff;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
}

.hero-telemetry span,
.hero-telemetry em {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.hero-telemetry strong {
    display: block;
    margin: 4px 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1;
    background: linear-gradient(135deg, #fff, #ffb8cf 48%, #9ee9ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-band {
    position: relative;
    padding: 10px 0 34px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.stat-card {
    position: relative;
    min-height: 178px;
    padding: 24px;
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 246, 251, 0.68)),
        radial-gradient(circle at 0% 0%, rgba(255, 111, 158, 0.12), transparent 15rem);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 58px rgba(42, 34, 58, 0.09);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.stat-card::after {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(120, 183, 255, 0.24), transparent 70%);
}

.stat-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #ff8db2, #87dfff);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(255, 111, 158, 0.22);
}

.stat-card strong {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 20px;
}

.stat-card p {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.home-section {
    position: relative;
    padding: 94px 0;
}

.home-section--capabilities::before,
.home-section--soft::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(980px, 90vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255, 111, 158, 0.28), rgba(120, 183, 255, 0.24), transparent);
}

.home-section--soft {
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 111, 158, 0.1), transparent 22rem),
        linear-gradient(180deg, rgba(255, 247, 251, 0.28), rgba(255, 255, 255, 0.62));
}

.system-strip {
    position: relative;
    padding: 70px 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 111, 158, 0.22), transparent 26rem),
        radial-gradient(circle at 86% 18%, rgba(120, 183, 255, 0.2), transparent 28rem),
        linear-gradient(135deg, #22263e 0%, #151a2e 100%);
    color: #fff;
    overflow: hidden;
}

.system-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 72px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 72px);
    mask-image: radial-gradient(circle at 50% 50%, #000, transparent 76%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 76%);
}

.strip-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(180px, 0.28fr) minmax(320px, 0.9fr);
    gap: 32px;
    align-items: center;
}

.strip-inner h2 {
    font-size: clamp(31px, 4vw, 52px);
    line-height: 1.12;
    background: linear-gradient(90deg, #ffffff 0%, #ffe1ec 26%, #dff7ff 54%, #ffffff 78%, #ffc8db 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: myuGradientText 8s ease-in-out infinite;
}

.strip-inner p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
}

.strip-orbit {
    position: relative;
    width: 164px;
    height: 164px;
    justify-self: center;
}

.strip-orbit span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    animation: orbitPulse 7s ease-in-out infinite;
}

.strip-orbit span:nth-child(2) {
    inset: 22px;
    border-color: rgba(255, 111, 158, 0.4);
    animation-delay: -2s;
}

.strip-orbit span:nth-child(3) {
    inset: 50px;
    border-color: rgba(120, 183, 255, 0.44);
    animation-delay: -4s;
}

@keyframes orbitPulse {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.78;
    }

    50% {
        transform: rotate(8deg) scale(1.035);
        opacity: 1;
    }
}

@keyframes floatNode {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 64px 0 42px;
    }

    .hero-inner,
    .strip-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 430px;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .stat-row {
        grid-template-columns: 1fr;
    }

    .strip-orbit {
        justify-self: start;
    }
}

@media (max-width: 620px) {
    .hero-copy h1 {
        font-size: clamp(52px, 18vw, 76px);
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ui-button {
        width: 100%;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-telemetry {
        width: 170px;
        right: 0;
    }

    .home-section {
        padding: 68px 0;
    }
}
