/* ==========================================================================
   ARANOX WEBSITE 2 — ECOSSISTEMA ARANOX
   AW2_077
   ========================================================================== */

.ecosystem-page {
    --eco-navy: #07182f;
    --eco-blue: #0879d9;
    --eco-blue-bright: #22a8ff;
    --eco-ink: #0d203a;
    --eco-muted: #607087;
    --eco-line: rgba(13,32,58,.12);
    --eco-white: #fff;
    --eco-surface: #f5f8fc;
    --eco-radius: 28px;
    overflow: hidden;
    color: var(--eco-ink);
    background: var(--eco-white);
}

.ecosystem-page *,
.ecosystem-page *::before,
.ecosystem-page *::after {
    box-sizing: border-box;
}

.ecosystem-shell {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.ecosystem-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--eco-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ecosystem-eyebrow::before {
    width: 34px;
    height: 2px;
    content: "";
    background: currentColor;
}

.ecosystem-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.ecosystem-button:hover {
    transform: translateY(-3px);
}

.ecosystem-button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--eco-blue), var(--eco-blue-bright));
    box-shadow: 0 16px 34px rgba(8,121,217,.25);
}

.ecosystem-button--ghost {
    color: var(--eco-ink);
    border-color: rgba(13,32,58,.18);
    background: rgba(255,255,255,.74);
}

.ecosystem-button--light {
    color: var(--eco-navy);
    background: #fff;
}

.ecosystem-button--outline-light {
    color: #fff;
    border-color: rgba(255,255,255,.4);
    background: transparent;
}

/* HERO */

.ecosystem-hero {
    position: relative;
    min-height: 810px;
    display: flex;
    align-items: center;
    padding: 132px 0 90px;
    isolation: isolate;
    background:
        radial-gradient(circle at 74% 40%, rgba(34,168,255,.20), transparent 32%),
        radial-gradient(circle at 10% 18%, rgba(8,121,217,.10), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #fff 78%);
}

.ecosystem-hero__mesh {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .44;
    background-image:
        linear-gradient(rgba(8,121,217,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,121,217,.08) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.ecosystem-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
    gap: 68px;
    align-items: center;
}

.ecosystem-hero__content h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(48px, 5.6vw, 82px);
    line-height: .99;
    letter-spacing: -.055em;
    font-weight: 500;
}

.ecosystem-hero__content h1 strong {
    display: block;
    color: var(--eco-blue);
    font-weight: 800;
}

.ecosystem-hero__content > p {
    max-width: 680px;
    margin: 30px 0 0;
    color: var(--eco-muted);
    font-size: 19px;
    line-height: 1.75;
}

.ecosystem-hero__actions,
.ecosystem-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ecosystem-hero__statement {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
    margin-top: 42px;
    color: #41536c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.ecosystem-hero__statement i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--eco-blue);
}

.ecosystem-orbit {
    position: relative;
    width: min(560px, 100%);
    aspect-ratio: 1;
    margin-inline: auto;
}

.ecosystem-orbit__rings,
.ecosystem-orbit__rings span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.ecosystem-orbit__rings span {
    border: 1px solid rgba(8,121,217,.18);
}

.ecosystem-orbit__rings span:nth-child(2) {
    inset: 13%;
    border-style: dashed;
    animation: ecosystemSpin 34s linear infinite reverse;
}

.ecosystem-orbit__rings span:nth-child(3) {
    inset: 28%;
    border-color: rgba(8,121,217,.28);
}

.ecosystem-orbit::before,
.ecosystem-orbit::after {
    position: absolute;
    inset: 8%;
    content: "";
    border-radius: 50%;
    filter: blur(1px);
    background: conic-gradient(
        from 90deg,
        transparent,
        rgba(34,168,255,.12),
        transparent 32%,
        rgba(8,121,217,.10),
        transparent 72%
    );
    animation: ecosystemSpin 28s linear infinite;
}

.ecosystem-orbit::after {
    inset: 25%;
    animation-duration: 18s;
    animation-direction: reverse;
}

.ecosystem-orbit__core {
    position: absolute;
    inset: 31%;
    z-index: 3;
    display: grid;
    place-items: center;
    padding: 22px;
    border: 1px solid rgba(8,121,217,.24);
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    box-shadow:
        0 30px 70px rgba(7,24,47,.16),
        0 0 0 18px rgba(255,255,255,.48);
}

.ecosystem-orbit__core img {
    width: 88%;
    height: auto;
    object-fit: contain;
}

.ecosystem-orbit__node {
    --angle: calc(var(--node-index) * 60deg - 90deg);
    position: absolute;
    z-index: 4;
    top: calc(50% + 44% * sin(var(--angle)));
    left: calc(50% + 44% * cos(var(--angle)));
    min-width: 104px;
    min-height: 52px;
    display: grid;
    place-items: center;
    padding: 10px 14px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(8,121,217,.18);
    border-radius: 18px;
    color: var(--eco-ink);
    background: rgba(255,255,255,.95);
    box-shadow: 0 14px 30px rgba(7,24,47,.12);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ecosystem-orbit__node:hover {
    z-index: 8;
    transform: translate(-50%, -50%) scale(1.08);
    border-color: var(--eco-blue);
    box-shadow: 0 18px 38px rgba(8,121,217,.22);
}

.ecosystem-orbit__node span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

@keyframes ecosystemSpin {
    to { transform: rotate(360deg); }
}

/* INTRO E FILOSOFIA */

.ecosystem-intro {
    padding: 118px 0;
    background: #fff;
}

.ecosystem-intro__grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 100px;
}

.ecosystem-intro h2,
.ecosystem-section-heading h2,
.ecosystem-digital__content h2,
.ecosystem-purpose__content h2,
.ecosystem-cta h2 {
    margin: 0;
    font-size: clamp(38px, 4.2vw, 64px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.ecosystem-intro__copy p {
    margin: 0;
    color: var(--eco-muted);
    font-size: 18px;
    line-height: 1.84;
}

.ecosystem-intro__copy p + p {
    margin-top: 22px;
}

.ecosystem-philosophy {
    margin-top: 78px;
    border-top: 1px solid var(--eco-line);
}

.ecosystem-philosophy__line {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: center;
    min-height: 88px;
    border-bottom: 1px solid var(--eco-line);
}

.ecosystem-philosophy__line span {
    color: var(--eco-blue);
    font-size: 13px;
    font-weight: 900;
}

.ecosystem-philosophy__line strong {
    font-size: clamp(19px, 2.1vw, 29px);
    font-weight: 650;
    letter-spacing: -.02em;
}

.ecosystem-philosophy__line--accent {
    color: #fff;
    margin-top: 18px;
    padding-inline: 28px;
    border: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--eco-navy), #0d3c70);
    box-shadow: 0 24px 54px rgba(7,24,47,.18);
}

/* ORGANIZAÇÕES */

.ecosystem-organizations {
    padding: 118px 0;
    background: var(--eco-surface);
}

.ecosystem-section-heading {
    max-width: 850px;
    margin-bottom: 58px;
}

.ecosystem-section-heading > p {
    max-width: 740px;
    margin: 24px 0 0;
    color: var(--eco-muted);
    font-size: 18px;
    line-height: 1.75;
}

.ecosystem-organizations__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.ecosystem-card {
    --card-accent: var(--eco-blue);
    position: relative;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 36px;
    border: 1px solid rgba(13,32,58,.10);
    border-radius: var(--eco-radius);
    background: #fff;
    box-shadow: 0 18px 50px rgba(13,32,58,.07);
    transition: transform .3s ease, box-shadow .3s ease;
}

.ecosystem-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    content: "";
    background: var(--card-accent);
}

.ecosystem-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 70px rgba(13,32,58,.13);
}

.ecosystem-card--tes { --card-accent: #0879d9; }
.ecosystem-card--agrion { --card-accent: #39a852; }
.ecosystem-card--sentrix { --card-accent: #202a36; }
.ecosystem-card--vitalis { --card-accent: #dd3b44; }
.ecosystem-card--cyrius { --card-accent: #1263d6; }
.ecosystem-card--cyrion { --card-accent: #6556d8; }

.ecosystem-card__index {
    position: absolute;
    top: 28px;
    right: 30px;
    color: rgba(13,32,58,.25);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.ecosystem-card__logo {
    width: 230px;
    height: 82px;
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.ecosystem-card__logo img {
    max-width: 100%;
    max-height: 74px;
    object-fit: contain;
    object-position: left center;
}

.ecosystem-card__role {
    color: var(--card-accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ecosystem-card p {
    max-width: 550px;
    margin: 22px 0 34px;
    color: var(--eco-muted);
    font-size: 17px;
    line-height: 1.72;
}

.ecosystem-card > a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    color: var(--eco-ink);
    font-weight: 850;
    text-decoration: none;
}

.ecosystem-card > a span {
    color: var(--card-accent);
    transition: transform .2s ease;
}

.ecosystem-card > a:hover span {
    transform: translate(3px, -3px);
}

/* FLOW */

.ecosystem-flow {
    position: relative;
    padding: 118px 0;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(34,168,255,.18), transparent 28%),
        linear-gradient(135deg, #06152b, #0a315e);
}

.ecosystem-section-heading--light .ecosystem-eyebrow {
    color: #55c2ff;
}

.ecosystem-section-heading--light > p {
    color: rgba(255,255,255,.68);
}

.ecosystem-flow__rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-top: 62px;
}

.ecosystem-flow__rail::before {
    position: absolute;
    top: 25px;
    left: 6%;
    right: 6%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, #39b9ff, transparent);
}

.ecosystem-flow__rail article {
    position: relative;
    z-index: 1;
    min-height: 184px;
    padding: 52px 20px 24px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 20px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(10px);
}

.ecosystem-flow__rail article > span {
    position: absolute;
    top: 14px;
    left: 18px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #06152b;
    background: #55c2ff;
    font-size: 9px;
    font-weight: 900;
}

.ecosystem-flow__rail strong {
    display: block;
    font-size: 18px;
    line-height: 1.2;
}

.ecosystem-flow__rail small {
    display: block;
    margin-top: 18px;
    color: rgba(255,255,255,.58);
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: .08em;
}

/* DIGITAL */

.ecosystem-digital {
    padding: 118px 0;
    background: #fff;
}

.ecosystem-digital__layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 86px;
    align-items: start;
}

.ecosystem-digital__content {
    position: sticky;
    top: 130px;
}

.ecosystem-digital__content p {
    margin: 26px 0 0;
    color: var(--eco-muted);
    font-size: 18px;
    line-height: 1.8;
}

.ecosystem-digital__stack {
    display: grid;
    gap: 16px;
}

.ecosystem-digital__stack article {
    position: relative;
    min-height: 176px;
    padding: 30px 34px 30px 130px;
    border: 1px solid var(--eco-line);
    border-radius: 24px;
    background: linear-gradient(135deg, #fff, #f7faff);
    box-shadow: 0 16px 40px rgba(13,32,58,.06);
}

.ecosystem-digital__stack article > span {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--eco-blue), #114d8f);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.ecosystem-digital__stack strong {
    display: block;
    font-size: 23px;
    letter-spacing: -.02em;
}

.ecosystem-digital__stack p {
    margin: 13px 0 0;
    color: var(--eco-muted);
    line-height: 1.7;
}

/* SETORES */

.ecosystem-sectors {
    padding: 118px 0;
    background: var(--eco-surface);
}

.ecosystem-sectors__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--eco-line);
    border-left: 1px solid var(--eco-line);
}

.ecosystem-sectors__grid > div {
    min-height: 154px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-right: 1px solid var(--eco-line);
    border-bottom: 1px solid var(--eco-line);
    background: rgba(255,255,255,.55);
    transition: background .25s ease, transform .25s ease;
}

.ecosystem-sectors__grid > div:hover {
    z-index: 2;
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 18px 38px rgba(13,32,58,.09);
}

.ecosystem-sectors__grid span {
    color: var(--eco-blue);
    font-size: 11px;
    font-weight: 900;
}

.ecosystem-sectors__grid strong {
    font-size: 20px;
}

/* DIFERENCIAIS */

.ecosystem-differentials {
    padding: 118px 0;
    background: #fff;
}

.ecosystem-differentials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ecosystem-differentials__grid article {
    min-height: 252px;
    padding: 30px;
    border: 1px solid var(--eco-line);
    border-radius: 24px;
    background: #fff;
}

.ecosystem-differentials__grid article > span {
    display: inline-flex;
    color: var(--eco-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.ecosystem-differentials__grid h3 {
    margin: 52px 0 0;
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.ecosystem-differentials__grid p {
    margin: 16px 0 0;
    color: var(--eco-muted);
    line-height: 1.7;
}

/* PROPÓSITO */

.ecosystem-purpose {
    padding: 118px 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(34,168,255,.13), transparent 25%),
        linear-gradient(180deg, #f5f9ff, #fff);
}

.ecosystem-purpose__layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 88px;
    align-items: center;
}

.ecosystem-purpose__mark {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8,121,217,.18);
    border-radius: 50%;
    background:
        radial-gradient(circle, #fff 0 34%, rgba(8,121,217,.08) 35% 36%, transparent 37%),
        repeating-radial-gradient(circle, transparent 0 42px, rgba(8,121,217,.09) 43px 44px);
}

.ecosystem-purpose__mark span {
    color: var(--eco-blue);
    font-size: clamp(30px, 4vw, 58px);
    font-weight: 900;
    letter-spacing: -.04em;
}

.ecosystem-purpose__content p {
    margin: 28px 0 0;
    color: var(--eco-muted);
    font-size: 18px;
    line-height: 1.8;
}

/* CTA */

.ecosystem-cta {
    position: relative;
    padding: 124px 0;
    color: #fff;
    background:
        radial-gradient(circle at 78% 30%, rgba(34,168,255,.22), transparent 28%),
        linear-gradient(135deg, #051326, #082c54);
}

.ecosystem-cta__inner {
    max-width: 1020px;
    text-align: center;
}

.ecosystem-cta .ecosystem-eyebrow {
    color: #55c2ff;
}

.ecosystem-cta .ecosystem-eyebrow::before {
    display: none;
}

.ecosystem-cta p {
    max-width: 760px;
    margin: 26px auto 0;
    color: rgba(255,255,255,.68);
    font-size: 18px;
    line-height: 1.75;
}

.ecosystem-cta__actions {
    justify-content: center;
}

/* REVEAL */

[data-ecosystem-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .75s cubic-bezier(.22,1,.36,1),
        transform .75s cubic-bezier(.22,1,.36,1);
}

[data-ecosystem-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* RESPONSIVO */

@media (max-width: 1100px) {
    .ecosystem-hero__layout,
    .ecosystem-intro__grid,
    .ecosystem-digital__layout,
    .ecosystem-purpose__layout {
        grid-template-columns: 1fr;
    }

    .ecosystem-hero__content {
        max-width: 820px;
    }

    .ecosystem-orbit {
        width: min(520px, 100%);
    }

    .ecosystem-intro__grid,
    .ecosystem-digital__layout,
    .ecosystem-purpose__layout {
        gap: 52px;
    }

    .ecosystem-digital__content {
        position: static;
    }

    .ecosystem-flow__rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ecosystem-flow__rail::before {
        display: none;
    }
}

@media (max-width: 820px) {
    .ecosystem-shell {
        width: min(100% - 32px, 1240px);
    }

    .ecosystem-hero {
        min-height: auto;
        padding: 108px 0 76px;
    }

    .ecosystem-hero__layout {
        gap: 52px;
    }

    .ecosystem-hero__content h1 {
        font-size: clamp(42px, 11vw, 64px);
    }

    .ecosystem-organizations__grid,
    .ecosystem-differentials__grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-sectors__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ecosystem-philosophy__line {
        grid-template-columns: 48px 1fr;
    }

    .ecosystem-digital__stack article {
        padding-left: 30px;
        padding-top: 122px;
    }
}

@media (max-width: 620px) {
    .ecosystem-intro,
    .ecosystem-organizations,
    .ecosystem-flow,
    .ecosystem-digital,
    .ecosystem-sectors,
    .ecosystem-differentials,
    .ecosystem-purpose,
    .ecosystem-cta {
        padding: 86px 0;
    }

    .ecosystem-hero__actions,
    .ecosystem-cta__actions {
        flex-direction: column;
    }

    .ecosystem-button {
        width: 100%;
    }

    .ecosystem-orbit {
        width: min(390px, 100%);
    }

    .ecosystem-orbit__node {
        min-width: 76px;
        min-height: 42px;
        padding: 8px 10px;
        border-radius: 14px;
    }

    .ecosystem-orbit__node span {
        font-size: 9px;
    }

    .ecosystem-orbit__core {
        inset: 29%;
        padding: 12px;
    }

    .ecosystem-flow__rail {
        grid-template-columns: 1fr;
    }

    .ecosystem-flow__rail article {
        min-height: 130px;
    }

    .ecosystem-sectors__grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-card {
        min-height: 360px;
        padding: 30px;
    }

    .ecosystem-card__logo {
        width: 200px;
    }

    .ecosystem-philosophy__line--accent {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ecosystem-orbit::before,
    .ecosystem-orbit::after,
    .ecosystem-orbit__rings span:nth-child(2) {
        animation: none !important;
    }

    [data-ecosystem-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* ==========================================================================
   AW2_080 — CORREÇÕES DEFINITIVAS DE ANIMAÇÃO E IDENTIDADE
   ========================================================================== */

.ecosystem-hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 43%, rgba(38,164,255,.28) 0%, rgba(38,164,255,.12) 24%, transparent 48%),
        radial-gradient(circle at 12% 16%, rgba(8,121,217,.11), transparent 28%),
        linear-gradient(118deg, #f0f7fe 0%, #fff 45%, #e7f4ff 100%);
}

.ecosystem-orbit {
    width: min(570px, 100%);
    filter: drop-shadow(0 34px 54px rgba(8,72,128,.14));
}

.ecosystem-orbit__halo {
    position: absolute;
    inset: 7%;
    border-radius: 50%;
    background: conic-gradient(from 25deg, transparent 0 9%, rgba(34,168,255,.25) 14%, transparent 23% 44%, rgba(8,121,217,.17) 51%, transparent 62% 79%, rgba(34,168,255,.16) 86%, transparent 95%);
    filter: blur(10px);
    animation: ecosystemSpin 22s linear infinite;
}

.ecosystem-orbit__track {
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: 50%;
    animation: ecosystemOrbitTrack 36s linear infinite;
}

.ecosystem-orbit__node {
    top: 50%;
    left: 50%;
    width: 122px;
    min-width: 0;
    min-height: 56px;
    padding: 0;
    transform: translate(-50%, -50%) rotate(var(--node-angle)) translateX(clamp(205px, 20.4vw, 252px)) rotate(calc(var(--node-angle) * -1));
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ecosystem-orbit__node:hover {
    transform: translate(-50%, -50%) rotate(var(--node-angle)) translateX(clamp(205px, 20.4vw, 252px)) rotate(calc(var(--node-angle) * -1));
}

.ecosystem-orbit__node span {
    width: 100%;
    min-height: 56px;
    display: grid;
    place-items: center;
    padding: 10px 15px;
    border: 1px solid rgba(8,121,217,.18);
    border-radius: 18px;
    color: var(--eco-ink);
    background: rgba(255,255,255,.96);
    box-shadow: 0 14px 32px rgba(7,24,47,.13);
    animation: ecosystemOrbitCounter 36s linear infinite reverse;
    transition: scale .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ecosystem-orbit__node:hover span {
    scale: 1.08;
    border-color: var(--eco-blue);
    box-shadow: 0 20px 44px rgba(8,121,217,.25);
}

.ecosystem-orbit__core {
    inset: 29%;
    padding: 28px;
    overflow: hidden;
    border-color: rgba(255,255,255,.78);
    background: radial-gradient(circle at 34% 24%, #21a9ff 0%, #087bd9 52%, #0756a1 100%);
    box-shadow: 0 30px 74px rgba(5,54,104,.27), 0 0 0 14px rgba(255,255,255,.68), 0 0 0 30px rgba(35,162,246,.12);
}

.ecosystem-orbit__core-glow {
    position: absolute;
    inset: -28%;
    border-radius: 50%;
    background: conic-gradient(transparent, rgba(255,255,255,.34), transparent 28%, rgba(99,205,255,.28), transparent 66%);
    animation: ecosystemSpin 14s linear infinite;
}

.ecosystem-orbit__core img {
    position: relative;
    z-index: 2;
    width: 78%;
    max-width: 220px;
    filter: drop-shadow(0 10px 18px rgba(0,40,80,.22));
}

.ecosystem-digital {
    overflow: hidden;
    background: repeating-linear-gradient(120deg, transparent 0 44px, rgba(8,121,217,.035) 45px 46px), radial-gradient(circle at 84% 18%, rgba(34,168,255,.13), transparent 32%), #fff;
}

.ecosystem-digital__stack {
    position: relative;
    padding-left: 20px;
}

.ecosystem-digital__stack::before {
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 0;
    width: 2px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(180deg, transparent, var(--eco-blue), var(--eco-blue-bright), var(--eco-blue), transparent);
    background-size: 100% 220%;
    box-shadow: 0 0 18px rgba(34,168,255,.34);
    animation: ecosystemDigitalFlow 5s linear infinite;
}

.ecosystem-digital__stack article {
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
}

.ecosystem-digital__stack article:hover {
    transform: translateX(10px);
    border-color: rgba(8,121,217,.36);
    box-shadow: 0 24px 56px rgba(8,85,151,.14);
}

.ecosystem-purpose__mark {
    position: relative;
    width: min(460px, 100%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    margin-inline: auto;
    border: 0;
    background: transparent;
}

.ecosystem-purpose__ring,
.ecosystem-purpose__arc,
.ecosystem-purpose__core {
    position: absolute;
    border-radius: 50%;
}

.ecosystem-purpose__ring {
    border: 1px solid rgba(8,121,217,.22);
}

.ecosystem-purpose__ring--one { inset: 2%; animation: ecosystemPurposePulse 6.5s ease-in-out infinite; }
.ecosystem-purpose__ring--two { inset: 14%; animation: ecosystemPurposePulse 6.5s ease-in-out 1.2s infinite; }
.ecosystem-purpose__ring--three { inset: 27%; animation: ecosystemPurposePulse 6.5s ease-in-out 2.4s infinite; }

.ecosystem-purpose__arc {
    inset: 8%;
    border: 2px solid transparent;
    border-top-color: rgba(8,121,217,.36);
    border-right-color: rgba(34,168,255,.18);
    animation: ecosystemSpin 18s linear infinite;
}

.ecosystem-purpose__core {
    inset: 32%;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.78);
    background: radial-gradient(circle at 34% 24%, #21a9ff 0%, #087bd9 52%, #0756a1 100%);
    box-shadow: 0 26px 62px rgba(7,65,119,.22), 0 0 0 14px rgba(255,255,255,.66), 0 0 0 28px rgba(34,168,255,.09);
    animation: ecosystemPurposeFloat 5.5s ease-in-out infinite;
}

.ecosystem-purpose__core img {
    width: 80%;
    max-width: 190px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,38,76,.2));
}

@keyframes ecosystemOrbitTrack { to { transform: rotate(360deg); } }
@keyframes ecosystemOrbitCounter { to { transform: rotate(360deg); } }
@keyframes ecosystemDigitalFlow { to { background-position: 0 220%; } }
@keyframes ecosystemPurposePulse { 0%,100% { transform: scale(.96); opacity: .44; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes ecosystemPurposeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 1100px) {
    .ecosystem-orbit__node {
        transform: translate(-50%, -50%) rotate(var(--node-angle)) translateX(clamp(190px, 36vw, 230px)) rotate(calc(var(--node-angle) * -1));
    }
}

@media (max-width: 620px) {
    .ecosystem-orbit__node {
        width: 82px;
        transform: translate(-50%, -50%) rotate(var(--node-angle)) translateX(clamp(136px, 39vw, 170px)) rotate(calc(var(--node-angle) * -1));
    }
    .ecosystem-orbit__node span { min-height: 42px; padding: 8px 10px; font-size: 9px; }
    .ecosystem-purpose__mark { width: min(360px, 100%); }
}

@media (prefers-reduced-motion: reduce) {
    .ecosystem-orbit__halo,
    .ecosystem-orbit__track,
    .ecosystem-orbit__node span,
    .ecosystem-orbit__core-glow,
    .ecosystem-digital__stack::before,
    .ecosystem-purpose__ring,
    .ecosystem-purpose__arc,
    .ecosystem-purpose__core {
        animation: none !important;
    }
}

