/* --------------------------------------------- */
/* Orbit section                                 */
/* --------------------------------------------- */

.orbit-section {
    width: 100vw;
    max-width: none;
    min-height: calc(100vh - 78px);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -48px;
    padding: 8px 32px 32px;
    display: grid;
    align-items: center;
}

.orbit-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

/* --------------------------------------------- */
/* Orbit stage                                   */
/* --------------------------------------------- */

.orbit-stage {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    min-height: calc(100vh - 170px);
    margin: 0 auto;
}

.orbit-stage::before,
.orbit-stage::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-12deg);
}

.orbit-stage::before {
    width: 720px;
    height: 280px;
    border: 1px solid rgba(125, 211, 252, 0.26);
}

.orbit-stage::after {
    width: 900px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --------------------------------------------- */
/* Orbit cta                                    */
/* --------------------------------------------- */

.orbit-cta {
    position: absolute;
    left: 50%;
    bottom: 2px;
    z-index: 120;
    display: grid;
    justify-items: center;
    gap: 14px;
    width: min(100%, 520px);
    transform: translateX(-50%);
    text-align: center;
}

.orbit-cta p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 16px;
}

.orbit-cta .btn {
    min-width: 220px;
}

/* --------------------------------------------- */
/* Orbit core                                    */
/* --------------------------------------------- */

.orbit-core {
    position: relative;
    z-index: 60;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 230px;
    height: 230px;

    border: 1px solid rgba(125, 211, 252, 0.38);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(125, 211, 252, 0.16), rgba(8, 13, 24, 0.9));
    box-shadow:
        0 0 90px rgba(125, 211, 252, 0.20),
        var(--shadow-soft);

    text-align: center;
    pointer-events: none;
}

.orbit-core span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.orbit-core strong {
    max-width: 140px;
    color: var(--text);
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

/* --------------------------------------------- */
/* Orbit cards                                   */
/* --------------------------------------------- */

.orbit-ring {
    position: absolute;
    inset: 0;
}

.orbit-ring-back {
    z-index: 30;
}

.orbit-core {
    z-index: 60;
}

.orbit-ring-front {
    z-index: 75;
}

.orbit-card.is-back {
    pointer-events: none;
}

.orbit-card.is-front {
    pointer-events: auto;
}

.orbit-card {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 220px;
    min-height: 142px;
    padding: 18px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.052));
    color: var(--text);
    text-decoration: none;

    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);

    transform: translate(-50%, -50%);
    will-change: transform, opacity, filter;

    transition:
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}


.orbit-card:hover {
    border-color: rgba(125, 211, 252, 0.52);
    background:
        linear-gradient(180deg, rgba(125, 211, 252, 0.18), rgba(255, 255, 255, 0.065));
    box-shadow:
        0 26px 68px rgba(0, 0, 0, 0.38),
        0 0 0 6px rgba(125, 211, 252, 0.08);
}

.orbit-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.14em;
}

.orbit-card strong {
    display: block;
    margin-bottom: 7px;
    font-size: 21px;
    letter-spacing: -0.035em;
}

.orbit-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}

/* --------------------------------------------- */
/* Responsive                                    */
/* --------------------------------------------- */

@media (max-width: 900px) {
    .orbit-section {
         display: none;
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .orbit-stage {
        min-height: auto;
        padding: 28px;
    }

    .orbit-stage::before,
    .orbit-stage::after,
    .orbit-core {
        display: none;
    }

    .orbit-ring {
        position: relative;
        inset: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        width: 100%;
    }

    .orbit-card {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }
}

@media (max-width: 560px) {
    .orbit-section {
        display: none;
    }
}