/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    background: #020506;
    overflow-x: hidden;
}


/* =========================================================
   FONDOS AMBIENTALES
========================================================= */

.ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.ambient-base {
    opacity: 1;
    background:
        radial-gradient(
            circle at 50% 18%,
            #122832 0%,
            #081217 37%,
            #030709 67%,
            #010203 100%
        );
}

.ambient-drones {
    background:
        radial-gradient(
            circle at 15% 70%,
            rgba(0,174,200,0.18),
            transparent 42%
        );
}

.ambient-3d {
    background:
        radial-gradient(
            circle at 32% 30%,
            rgba(0,166,206,0.18),
            transparent 42%
        );
}

.ambient-code {
    background:
        radial-gradient(
            circle at 55% 25%,
            rgba(0,114,160,0.18),
            transparent 42%
        );
}

.ambient-media {
    background:
        radial-gradient(
            circle at 78% 65%,
            rgba(60,118,143,0.18),
            transparent 44%
        );
}

.ambient-web {
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(0,171,196,0.15),
            transparent 42%
        );
}

body[data-active="drones"] .ambient-drones {
    opacity: 1;
}

body[data-active="3d"] .ambient-3d {
    opacity: 1;
}

body[data-active="code"] .ambient-code {
    opacity: 1;
}

body[data-active="media"] .ambient-media {
    opacity: 1;
}

body[data-active="web"] .ambient-web {
    opacity: 1;
}


/* =========================================================
   PRINCIPAL
========================================================= */

.hero {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 32px 28px;
    transition:
        filter 0.45s ease,
        opacity 0.45s ease,
        transform 0.45s ease;
}


/* =========================================================
   HERO TÉCNICO / LUZ UV
========================================================= */

.brand-stage {
    --uv-x: 50%;
    --uv-y: 50%;

    position: relative;
    width: min(1380px, 98vw);
    min-height: 330px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
    overflow: hidden;
}

.technical-definitions {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.hero-tech-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
    transform: scale(1.015);
    transition: transform 1.2s ease;
}

.brand-stage:hover .hero-tech-art {
    transform: scale(1.025);
}

/* Capa casi invisible */
.hero-tech-art-ghost {
    opacity: 0.012;
    color: #72dce9;
    filter: blur(0.2px);
}

/* Capa que se revela con el mouse */
.hero-tech-art-reveal {
    opacity: 0.86;
    color: #89eff7;

    -webkit-mask-image:
        radial-gradient(
            circle 155px
            at var(--uv-x) var(--uv-y),
            rgba(0,0,0,1) 0%,
            rgba(0,0,0,0.97) 24%,
            rgba(0,0,0,0.68) 46%,
            rgba(0,0,0,0.24) 67%,
            transparent 83%
        );

    mask-image:
        radial-gradient(
            circle 155px
            at var(--uv-x) var(--uv-y),
            rgba(0,0,0,1) 0%,
            rgba(0,0,0,0.97) 24%,
            rgba(0,0,0,0.68) 46%,
            rgba(0,0,0,0.24) 67%,
            transparent 83%
        );

    filter:
        drop-shadow(
            0 0 3px
            rgba(103,234,247,0.55)
        )
        drop-shadow(
            0 0 13px
            rgba(63,189,223,0.20)
        );
}

/* Estética técnica */
.technical-object {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.technical-detail {
    opacity: 0.55;
    stroke-width: 0.75;
}

.technical-dashed {
    opacity: 0.46;
    stroke-width: 0.7;
    stroke-dasharray: 4 7;
}

.technical-hot {
    fill: currentColor;
    stroke: none;
    opacity: 0.78;
}

.technical-links {
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0.7;
    opacity: 0.34;
    stroke-dasharray: 3 9;
}

.technical-code {
    fill: none;
    stroke: currentColor;
}

.technical-code text {
    fill: currentColor;
    stroke: none;
    font-family: Consolas, "Courier New", monospace;
    font-size: 9px;
    letter-spacing: 0.2px;
}

.technical-label {
    fill: currentColor;
    stroke: none;
    font-family: Consolas, "Courier New", monospace;
    font-size: 7px;
    letter-spacing: 1.7px;
    opacity: 0.48;
}

.technical-faint {
    opacity: 0.28;
}

/* Halo UV */
.brand-stage::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle 165px
            at var(--uv-x) var(--uv-y),
            rgba(115,237,248,0.065) 0%,
            rgba(65,191,221,0.032) 40%,
            rgba(18,77,94,0.012) 62%,
            transparent 79%
        );

    opacity: 0;
    transition: opacity 0.25s ease;
}

.brand-stage:hover::after {
    opacity: 1;
}


/* =========================================================
   MARCA PRINCIPAL
========================================================= */

.brand {
    position: relative;
    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    animation:
        brandEntrance
        1.2s
        cubic-bezier(0.16,1,0.3,1)
        forwards;
}

.main-logo {
    width: min(700px,70vw);
    height: auto;

    filter:
        drop-shadow(
            0 15px 30px
            rgba(0,0,0,0.24)
        );
}

.intro {
    margin-top: 24px;
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.43);
}

@keyframes brandEntrance {
    from {
        opacity: 0;
        transform: translateY(17px);
        filter: blur(7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


/* =========================================================
   UNIDADES
========================================================= */

.divisions {
    width: min(1650px,96vw);
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 8px;

    animation:
        divisionsEntrance
        1.2s
        0.16s
        cubic-bezier(0.16,1,0.3,1)
        both;
}

@keyframes divisionsEntrance {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   DIVISIÓN
========================================================= */

.division {
    position: relative;
    min-height: 235px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px 18px 22px;

    color: #ffffff;
    text-decoration: none;
    overflow: hidden;

    transition: opacity 0.45s ease;
}

.division::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 8px;

    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(10,163,190,0.11),
            transparent 72%
        );

    opacity: 0;
    transition: opacity 0.45s ease;
}

.division:hover::before {
    opacity: 1;
}


/* =========================================================
   MISMO LOGO EN TODAS
========================================================= */

.division-logo {
    position: relative;
    z-index: 5;

    width: 82%;
    max-width: 230px;
    max-height: 65px;

    object-fit: contain;

    transition:
        transform 0.5s
        cubic-bezier(0.16,1,0.3,1),

        filter 0.5s ease;
}


/* =========================================================
   INFORMACIÓN
========================================================= */

.division-info {
    position: relative;
    z-index: 6;

    width: 100%;
    min-height: 90px;
    margin-top: 22px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.division-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4.5px;

    color: rgba(255,255,255,0.42);

    transition:
        color 0.35s ease,
        letter-spacing 0.35s ease;
}

.effect-line {
    position: relative;
    width: 100%;
    min-height: 54px;
    margin-top: 9px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.division-description {
    position: relative;
    z-index: 5;

    font-size: 9px;
    line-height: 1.6;
    letter-spacing: 1.25px;
    text-align: center;

    color: rgba(124,225,239,0.91);
}


/* =========================================================
   HOVER
========================================================= */

.divisions:hover .division {
    opacity: 0.20;
}

.divisions .division:hover {
    opacity: 1;
}

.division:hover .division-logo {
    transform: scale(1.06);

    filter:
        drop-shadow(
            0 0 14px
            rgba(27,186,214,0.18)
        )
        drop-shadow(
            0 0 32px
            rgba(27,186,214,0.07)
        );
}

.division:hover .division-label {
    color: rgba(255,255,255,0.94);
    letter-spacing: 5.2px;
}


/* =========================================================
   FLECHA
========================================================= */

.division-arrow {
    position: absolute;
    z-index: 10;
    top: 18px;
    right: 18px;

    opacity: 0;

    color: rgba(255,255,255,0.70);

    transform: translate(-5px,5px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.division:hover .division-arrow {
    opacity: 1;
    transform: translate(0,0);
}


/* =========================================================
   DRONES
========================================================= */

.drones-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 3px;
    width: 100%;
}

.drones-line {
    display: flex;
    justify-content: center;
    white-space: pre;
    min-height: 15px;
}

.drones-line:first-child {
    font-size: 9.5px;
    letter-spacing: 1.5px;
    color: rgba(143,230,241,0.96);
}

.drones-line-secondary {
    font-size: 8.5px;
    letter-spacing: 1.1px;
    color: rgba(118,211,225,0.75);
}

.drone-letter {
    display: inline-block;
    opacity: 0;
    filter: blur(5px);

    transform:
        translate(
            var(--fly-x),
            var(--fly-y)
        )
        rotate(
            var(--fly-rotation)
        )
        scale(0.74);
}

.division-drones.is-flying .drone-letter {
    animation:
        droneFlight
        0.65s
        cubic-bezier(0.16,1,0.3,1)
        forwards;

    animation-delay: var(--delay);
}

@keyframes droneFlight {
    0% {
        opacity: 0;
        filter: blur(6px);

        transform:
            translate(
                var(--fly-x),
                var(--fly-y)
            )
            rotate(
                var(--fly-rotation)
            )
            scale(0.72);
    }

    60% {
        opacity: 1;
        filter: blur(0);

        transform:
            translate(-1px,1px)
            rotate(0)
            scale(1.06);

        text-shadow:
            0 0 14px
            rgba(94,232,250,0.76);
    }

    100% {
        opacity: 1;

        transform:
            translate(0)
            rotate(0)
            scale(1);

        filter: blur(0);

        text-shadow:
            0 0 5px
            rgba(61,211,235,0.28);
    }
}


/* =========================================================
   3D
========================================================= */

.cube-wire {
    position: absolute;

    width: 58px;
    height: 48px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%)
        scale(0.7);

    opacity: 0;
}

.cube-line {
    fill: none;
    stroke: rgba(111,232,244,0.86);
    stroke-width: 1.2;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
}

.division-3d.is-building .cube-wire {
    animation:
        cubeAppear
        0.85s
        ease
        forwards;
}

.division-3d.is-building .cube-line {
    animation:
        drawCube
        0.6s
        ease-out
        forwards;
}

.division-3d.is-building .cube-line-2 {
    animation-delay: 0.08s;
}

.division-3d.is-building .cube-line-3 {
    animation-delay: 0.16s;
}

.division-3d.is-building .cube-line-4 {
    animation-delay: 0.24s;
}

.division-3d.is-building .cube-line-5 {
    animation-delay: 0.31s;
}

@keyframes drawCube {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes cubeAppear {
    0% {
        opacity: 0;

        transform:
            translate(-50%,-50%)
            scale(0.55)
            rotate(-8deg);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.20;

        transform:
            translate(-50%,-50%)
            scale(1.1);
    }
}

.threed-description {
    opacity: 0;
    filter: blur(7px);
    transform: scale(0.72);
}

.division-3d.is-building .threed-description {
    animation:
        materialize3D
        0.65s
        0.44s
        cubic-bezier(0.16,1,0.3,1)
        forwards;
}

@keyframes materialize3D {
    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);

        text-shadow:
            0 0 5px
            rgba(61,211,235,0.30);
    }
}


/* =========================================================
   CODE
========================================================= */

.code-rain {
    position: absolute;
    z-index: 2;
    inset: 0;

    overflow: hidden;
    pointer-events: none;

    opacity: 0;
    transition: opacity 1.15s ease;
}

.division-code.is-decoding .code-rain {
    opacity: 0.45;
}

.division-code.code-stopping .code-rain {
    opacity: 0;
}

.code-column {
    position: absolute;
    top: -220px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 4px;
    width: 14px;

    font-family: Consolas, monospace;
    font-size: var(--column-size);

    color: rgba(88,226,237,0.52);
    opacity: var(--column-opacity);

    text-shadow:
        0 0 5px
        rgba(39,210,225,0.40);
}

.code-column span {
    height: 10px;
    line-height: 10px;
}

.code-column span:first-child {
    color: rgba(201,251,255,0.95);
}

.division-code.is-decoding .code-column {
    animation:
        codeColumnFall
        var(--column-duration)
        linear
        infinite;

    animation-delay: var(--column-delay);
}

@keyframes codeColumnFall {
    from {
        transform: translateY(-50px);
    }

    to {
        transform: translateY(500px);
    }
}

.code-description {
    font-family: Consolas, monospace;
    white-space: normal;
    opacity: 0;
}

.division-code.is-decoding .code-description {
    opacity: 1;
}

.division-code.decode-complete .code-description {
    text-shadow:
        0 0 7px
        rgba(61,211,235,0.38);
}


/* =========================================================
   MEDIA
========================================================= */

.media-effect {
    overflow: hidden;
}

.film-strip {
    position: absolute;

    left: -35%;
    top: 50%;

    width: 170%;
    height: 25px;

    opacity: 0;
    transform: translateY(-50%);

    border-top:
        1px solid
        rgba(125,226,238,0.22);

    border-bottom:
        1px solid
        rgba(125,226,238,0.22);

    background:
        repeating-linear-gradient(
            90deg,
            rgba(101,214,226,0.04) 0 20px,
            rgba(101,214,226,0.18) 21px 22px,
            transparent 23px 30px
        );
}

.film-strip::before,
.film-strip::after {
    content: "";
    position: absolute;

    left: 0;
    width: 100%;
    height: 3px;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(144,236,244,0.42) 0 6px,
            transparent 6px 13px
        );
}

.film-strip::before {
    top: 3px;
}

.film-strip::after {
    bottom: 3px;
}

.division-media.is-projecting .film-strip {
    animation:
        filmMovement
        0.9s
        ease-out
        forwards;
}

@keyframes filmMovement {
    0% {
        opacity: 0;
        transform: translate(-8%,-50%);
    }

    25% {
        opacity: 0.55;
    }

    100% {
        opacity: 0.08;
        transform: translate(9%,-50%);
    }
}

.projector-beam {
    position: absolute;
    z-index: 3;

    left: -60%;
    top: -10%;

    width: 42%;
    height: 120%;

    opacity: 0;
    transform: skewX(-17deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(192,249,255,0.62),
            transparent
        );

    filter: blur(4px);
}

.division-media.is-projecting .projector-beam {
    animation:
        projectorSweep
        0.75s
        ease-out
        forwards;
}

@keyframes projectorSweep {
    15% {
        opacity: 0.8;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

.media-description {
    opacity: 0;
    filter: blur(5px);

    clip-path:
        inset(0 100% 0 0);
}

.division-media.is-projecting .media-description {
    animation:
        mediaReveal
        0.7s
        0.15s
        ease-out
        forwards;
}

@keyframes mediaReveal {
    to {
        opacity: 1;
        filter: blur(0);
        clip-path: inset(0);

        text-shadow:
            0 0 5px
            rgba(61,211,235,0.28);
    }
}


/* =========================================================
   WEB DESIGN
========================================================= */

.web-effect {
    overflow: visible;
}

.design-board {
    position: absolute;
    width: 110px;
    height: 47px;

    opacity: 0;
    overflow: visible;
}

.design-frame,
.design-line,
.design-block {
    fill: none;

    stroke:
        rgba(113,232,244,0.84);

    stroke-width: 1;
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
}

.design-handle {
    fill:
        rgba(172,244,250,0.85);

    opacity: 0;
}

.design-cursor {
    position: absolute;

    left: 72%;
    top: -2px;

    opacity: 0;
    font-size: 16px;

    color:
        rgba(191,248,253,0.90);

    text-shadow:
        0 0 8px
        rgba(89,229,240,0.70);
}

.web-description {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(4px);
}

.division-web.is-designing .design-board {
    animation:
        designBoardIn
        0.25s
        forwards;
}

.division-web.is-designing .design-frame {
    animation:
        drawDesign
        0.55s
        forwards;
}

.division-web.is-designing .design-line-1 {
    animation:
        drawDesign
        0.45s
        0.18s
        forwards;
}

.division-web.is-designing .design-line-2 {
    animation:
        drawDesign
        0.45s
        0.27s
        forwards;
}

.division-web.is-designing .design-block {
    animation:
        drawDesign
        0.38s
        0.36s
        forwards;
}

.division-web.is-designing .design-handle {
    animation:
        handlesIn
        0.3s
        0.48s
        forwards;
}

.division-web.is-designing .design-cursor {
    animation:
        cursorDesign
        0.75s
        0.15s
        ease-out
        forwards;
}

.division-web.is-designing .web-description {
    animation:
        webReveal
        0.5s
        0.58s
        ease
        forwards;
}

@keyframes designBoardIn {
    to {
        opacity: 0.25;
    }
}

@keyframes drawDesign {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes handlesIn {
    to {
        opacity: 0.8;
    }
}

@keyframes cursorDesign {
    0% {
        opacity: 0;
        transform: translate(15px,-10px);
    }

    25% {
        opacity: 1;
    }

    65% {
        opacity: 1;
        transform: translate(-35px,18px);
    }

    100% {
        opacity: 0;
        transform: translate(-52px,23px);
    }
}

@keyframes webReveal {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);

        text-shadow:
            0 0 5px
            rgba(61,211,235,0.27);
    }
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    display: flex;
    align-items: center;

    gap: 13px;
    margin-top: 26px;

    font-size: 8px;
    letter-spacing: 3px;

    color: rgba(255,255,255,0.25);
}

.footer-dot {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.30);
}

.contact-trigger {
    border: none;
    background: none;

    color:
        rgba(255,255,255,0.40);

    font: inherit;
    letter-spacing: inherit;
    cursor: pointer;

    transition: color 0.3s ease;
}

.contact-trigger:hover {
    color:
        rgba(255,255,255,0.90);
}


/* =========================================================
   CONTACTO
========================================================= */

body.contact-open {
    overflow: hidden;
}

body.contact-open .hero {
    filter: blur(6px);
    opacity: 0.34;
    transform: scale(0.99);
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 22px;

    visibility: hidden;
    pointer-events: none;
}

.contact-modal.is-open {
    visibility: visible;
    pointer-events: auto;
}

.contact-backdrop {
    position: absolute;
    inset: 0;

    background:
        rgba(0,4,6,0.69);

    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-modal.is-open .contact-backdrop {
    opacity: 1;
}

.contact-panel {
    position: relative;

    width:
        min(610px,92vw);

    background:
        rgba(4,12,16,0.97);

    border:
        1px solid
        rgba(160,233,241,0.11);

    box-shadow:
        0 30px 90px
        rgba(0,0,0,0.64);

    opacity: 0;

    transform:
        translateY(18px)
        scale(0.975);

    transition:
        opacity 0.42s
        cubic-bezier(0.16,1,0.3,1),

        transform 0.42s
        cubic-bezier(0.16,1,0.3,1);
}

.contact-modal.is-open .contact-panel {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}

.contact-close {
    position: absolute;

    top: 19px;
    right: 21px;

    border: none;
    background: none;

    color:
        rgba(255,255,255,0.40);

    font-size: 28px;
    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-close:hover {
    color: white;
    transform: rotate(90deg);
}

.contact-content {
    padding:
        62px
        58px
        52px;
}

.contact-eyebrow {
    display: block;
    margin-bottom: 17px;

    font-size: 8px;
    letter-spacing: 5px;

    color:
        rgba(115,224,237,0.54);
}

.contact-content h2 {
    font-size:
        clamp(
            29px,
            4vw,
            42px
        );

    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
}

.contact-email {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 13px;
    margin-top: 31px;
    padding-bottom: 7px;

    text-decoration: none;

    color:
        rgba(154,235,244,0.88);

    font-size: 14px;
    letter-spacing: 0.6px;

    border-bottom:
        1px solid
        rgba(125,226,238,0.16);
}

.contact-email:hover {
    color:
        #ffffff;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);

    gap: 9px;
    margin-top: 38px;
}

.whatsapp-item {
    position: relative;
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 14px;
    padding: 15px 16px;

    border:
        1px solid
        rgba(255,255,255,0.07);

    text-decoration: none;
    color: white;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.whatsapp-item:hover {
    background:
        rgba(92,218,230,0.035);

    border-color:
        rgba(113,226,238,0.18);
}


/* =========================================================
   BANDERAS CSS
========================================================= */

.flag {
    position: relative;
    display: block;

    width: 29px;
    height: 19px;

    flex:
        0 0 29px;

    overflow: hidden;

    box-shadow:
        0 0 0 1px
        rgba(255,255,255,0.10);
}

/* COLOMBIA */
.flag-colombia {
    background:
        linear-gradient(
            to bottom,
            #fcd116 0%,
            #fcd116 50%,
            #003893 50%,
            #003893 75%,
            #ce1126 75%,
            #ce1126 100%
        );
}

/* CHILE */
.flag-chile {
    background:
        linear-gradient(
            to bottom,
            #ffffff 0%,
            #ffffff 50%,
            #d52b1e 50%,
            #d52b1e 100%
        );
}

.flag-chile::before {
    content: "";
    position: absolute;

    left: 0;
    top: 0;

    width: 50%;
    height: 50%;

    background:
        #0039a6;
}

.flag-chile::after {
    content: "★";
    position: absolute;

    left: 5px;
    top: -1px;

    color: #ffffff;

    font-size: 9px;
    line-height: 10px;
}


/* =========================================================
   WHATSAPP TEXTOS
========================================================= */

.country-name {
    display: block;
    margin-bottom: 5px;

    font-size: 7px;
    letter-spacing: 2px;

    color:
        rgba(255,255,255,0.31);
}

.whatsapp-number {
    display: block;

    font-size: 11px;
    letter-spacing: 0.5px;

    color:
        rgba(255,255,255,0.78);
}

.whatsapp-arrow {
    position: absolute;

    right: 13px;
    top: 12px;

    font-size: 11px;

    color:
        rgba(255,255,255,0.30);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media
(max-width: 1200px) {

    .divisions {
        grid-template-columns:
            repeat(3,1fr);
    }

}

@media
(max-width: 820px) {

    .divisions {
        grid-template-columns:
            repeat(2,1fr);
    }

    .brand-stage {
        min-height: 280px;
    }

}

@media
(max-width: 560px) {

    .hero {
        justify-content: flex-start;

        padding:
            35px
            16px
            30px;
    }

    .brand-stage {
        width: 100%;
        min-height: 240px;
        margin-bottom: 22px;
    }

    .hero-tech-art {
        width: 150%;
        left: -25%;
    }

    .main-logo {
        width: 89vw;
    }

    .intro {
        font-size: 8px;
        line-height: 1.8;
        letter-spacing: 4px;
    }

    .divisions {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .division {
        min-height: 195px;
    }

    .division-logo {
        max-width: 250px;
    }

    .whatsapp-list {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding:
            58px
            27px
            32px;
    }

    .contact-email {
        font-size: 12px;
    }

}


/* =========================================================
   REDUCCIÓN DE MOVIMIENTO
========================================================= */

@media
(prefers-reduced-motion: reduce) {

    * {
        animation: none !important;
        transition: none !important;
    }

}


/* =========================================================
   MOBILE V4 — SIN HOVER / SIN LONG PRESS
========================================================= */

@media
(max-width: 900px),
(hover: none),
(pointer: coarse) {

    /*
       Neutraliza por completo el hover "pegajoso" de Chrome/Safari móvil.
       El motor V4 utiliza .mobile-active.
    */
    .divisions:hover .division {
        opacity: 1 !important;
    }

    .division:hover::before {
        opacity: 0 !important;
    }

    .division:hover .division-logo {
        transform: none !important;
        filter: none !important;
    }

    .division:hover .division-label {
        color: rgba(255,255,255,0.42) !important;
        letter-spacing: 4.5px !important;
    }

    .division:hover .division-arrow {
        opacity: 0 !important;
        transform: translate(-5px,5px) !important;
    }

    /*
       Estado real móvil.
    */
    .division.mobile-active {
        opacity: 1 !important;
    }

    .division.mobile-active::before {
        opacity: 1 !important;
    }

    .division.mobile-active .division-logo {
        transform: scale(1.06) !important;
        filter:
            drop-shadow(0 0 14px rgba(27,186,214,0.18))
            drop-shadow(0 0 32px rgba(27,186,214,0.07)) !important;
    }

    .division.mobile-active .division-label {
        color: rgba(255,255,255,0.94) !important;
        letter-spacing: 5.2px !important;
    }

    .division.mobile-active .division-arrow {
        opacity: 1 !important;
        transform: translate(0,0) !important;
    }

    .division {
        touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }

    /*
       La luz del hero YA NO depende de :hover.
       Siempre está visible en móvil y --uv-x / --uv-y
       se mueven por requestAnimationFrame.
    */
    .brand-stage::after {
        opacity: 0.88 !important;
        transition: none !important;
    }

    .brand-stage:hover::after {
        opacity: 0.88 !important;
    }

    .brand-stage:hover .hero-tech-art,
    .brand-stage .hero-tech-art {
        transform: scale(1.025);
    }

    .brand-stage.mobile-uv-touch::after {
        opacity: 1 !important;
    }
}


/* =========================================================
   V5 · RESPONSIVE / LEGIBILIDAD / ZOOM
   ========================================================= */

:root{
    --micro-readable: clamp(10px, .62vw, 13px);
    --small-readable: clamp(11px, .72vw, 14px);
}

/* Textos funcionales: nunca microscópicos */
.intro{
    font-size: var(--micro-readable) !important;
    letter-spacing: clamp(3px,.32vw,6px);
}

.division-label{
    font-size: var(--small-readable) !important;
    letter-spacing: clamp(2.8px,.30vw,4.8px);
}

.division-description,
.drones-line:first-child,
.drones-line-secondary{
    font-size: clamp(10px,.60vw,12.5px) !important;
    line-height: 1.55;
}

.footer{
    font-size: clamp(9.5px,.55vw,11.5px) !important;
}

.contact-eyebrow,
.country-name{
    font-size: clamp(9px,.52vw,11px) !important;
}

.whatsapp-number{
    font-size: clamp(12px,.68vw,14px) !important;
}

/* El gateway refluye antes cuando el usuario aumenta zoom. */
@media (max-width: 1450px){
    .divisions{
        width:min(1180px,96vw);
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:12px;
    }

    .division{
        min-height:220px;
    }

    .brand-stage{
        width:min(1180px,96vw);
    }
}

@media (max-width: 980px){
    .divisions{
        width:min(760px,96vw);
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .hero{
        min-height:auto;
        justify-content:flex-start;
        padding-top:30px;
    }

    .brand-stage{
        min-height:270px;
        margin-bottom:12px;
    }
}

@media (max-width: 620px){
    .divisions{
        grid-template-columns:1fr;
        width:100%;
    }

    .division{
        min-height:190px;
        padding:26px 16px 20px;
    }

    .division-info{
        min-height:82px;
        margin-top:17px;
    }

    .division-label{
        font-size:12px !important;
        letter-spacing:3.5px !important;
    }

    .division-description,
    .drones-line:first-child,
    .drones-line-secondary{
        font-size:11px !important;
    }

    .footer{
        font-size:10px !important;
        letter-spacing:2px;
        flex-wrap:wrap;
        justify-content:center;
    }
}

/* Cuando Chrome hace zoom hacia afuera aumenta el viewport CSS.
   Este bloque compensa parte de esa reducción física. */
@media (min-width: 1850px){
    .hero{
        padding-left:clamp(32px,3vw,70px);
        padding-right:clamp(32px,3vw,70px);
    }

    .brand-stage{
        width:min(1540px,94vw);
        min-height:360px;
    }

    .main-logo{
        width:min(760px,68vw);
    }

    .divisions{
        width:min(1760px,94vw);
        gap:16px;
    }

    .division{
        min-height:260px;
    }

    .division-label{
        font-size:14px !important;
    }

    .division-description,
    .drones-line:first-child,
    .drones-line-secondary{
        font-size:12px !important;
    }

    .footer{
        font-size:11px !important;
    }
}


/* =========================================================
   V7 — RESTORE WHAT WORKED / 3 LINES ONLY
   ========================================================= */

/* Exact three-column gateway; no new card visual language. */
.divisions{
    width:min(1180px,96vw)!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:18px!important;
}

.division{
    min-height:245px!important;
}

/* Use actual supplied line logos with soft glow only. */
.division-logo{
    width:88%!important;
    max-width:285px!important;
    max-height:74px!important;
    filter:drop-shadow(0 0 12px rgba(73,213,227,.055));
}

.division:hover .division-logo,
.division.mobile-active .division-logo{
    filter:
      drop-shadow(0 0 9px rgba(97,229,239,.15))
      drop-shadow(0 0 25px rgba(33,168,191,.07))!important;
}

/* Remove the visible rectangular cut around the UV reveal.
   The technical art itself is the original one; only its clipping is softened. */
.brand-stage{
    overflow:visible!important;
}

.hero-tech-art{
    inset:-58px -105px!important;
    width:calc(100% + 210px)!important;
    height:calc(100% + 116px)!important;
    transform:none!important;
}

.brand-stage:hover .hero-tech-art,
.brand-stage .hero-tech-art{
    transform:scale(1.012)!important;
}

.brand-stage::after{
    inset:-62px -108px!important;
    border-radius:50%;
}

/* SYSTEMS — platform hints, custom icons rather than brand marks. */
.systems-effect{
    min-height:56px!important;
}

.systems-platforms{
    position:relative;
    z-index:7;
    margin-top:4px;
    display:grid;
    grid-template-columns:auto auto repeat(3,auto);
    align-items:center;
    justify-content:center;
    gap:7px 9px;
    min-height:34px;
}

.platform-device{
    position:relative;
    display:inline-block;
    opacity:.52;
    color:rgba(130,234,245,.95);
}

.platform-pc{
    width:25px;
    height:16px;
    border:1px solid currentColor;
    border-radius:2px;
}
.platform-pc::before{
    content:"";
    position:absolute;
    width:7px;
    height:4px;
    left:50%;
    bottom:-5px;
    border-left:1px solid currentColor;
    border-right:1px solid currentColor;
    transform:translateX(-50%);
}
.platform-pc::after{
    content:"";
    position:absolute;
    width:15px;
    height:1px;
    left:50%;
    bottom:-6px;
    background:currentColor;
    transform:translateX(-50%);
}

.platform-phone{
    width:10px;
    height:19px;
    border:1px solid currentColor;
    border-radius:3px;
}
.platform-phone::after{
    content:"";
    position:absolute;
    width:2px;
    height:2px;
    left:50%;
    bottom:1px;
    border-radius:50%;
    background:currentColor;
    transform:translateX(-50%);
}

.platform-name{
    font-size:9px;
    letter-spacing:1px;
    color:rgba(255,255,255,.46);
}

/* CONTACT — no giant section; make the original gateway contact feel intentional. */
.footer-v7{
    margin-top:30px!important;
    gap:16px!important;
}
.footer-brand-v7{
    color:rgba(255,255,255,.34);
    text-decoration:none;
    transition:color .3s ease;
}
.footer-brand-v7:hover{color:rgba(255,255,255,.88)}

.contact-trigger-v7{
    display:inline-flex!important;
    align-items:center;
    gap:8px;
    padding:8px 13px!important;
    border:1px solid rgba(115,224,237,.15)!important;
    border-radius:999px;
    background:rgba(74,197,216,.035)!important;
    color:rgba(160,236,245,.82)!important;
}
.contact-trigger-v7:hover{
    background:rgba(74,197,216,.09)!important;
    border-color:rgba(115,224,237,.30)!important;
    color:#fff!important;
}

.contact-panel{
    width:min(680px,92vw)!important;
    border-radius:22px;
    overflow:hidden;
    background:
      radial-gradient(circle at 12% 0%, rgba(30,151,174,.11), transparent 32%),
      rgba(4,12,16,.985)!important;
}

.contact-content-v7{
    padding:58px 44px 42px!important;
}
.contact-content-v7 h2{
    max-width:520px;
    font-size:clamp(31px,4vw,46px)!important;
    line-height:1.04!important;
}
.contact-lead-v7{
    max-width:520px;
    margin-top:14px;
    color:rgba(255,255,255,.52);
    font-size:13px;
    line-height:1.65;
}
.contact-email-v7{
    width:100%!important;
    justify-content:space-between;
    margin-top:28px!important;
    padding:17px 18px!important;
    border:1px solid rgba(125,226,238,.13)!important;
    border-radius:14px;
    background:rgba(81,199,215,.035);
}
.contact-email-v7 span{display:grid;gap:4px}
.contact-email-v7 small{font-size:8px;letter-spacing:2.2px;color:rgba(255,255,255,.33)}
.contact-email-v7 b{font-size:18px;font-weight:400}
.whatsapp-list-v7{margin-top:10px!important}
.whatsapp-list-v7 .whatsapp-item{border-radius:14px!important;min-height:90px!important}

@media(max-width:980px){
    .divisions{
        width:min(720px,96vw)!important;
        grid-template-columns:1fr!important;
        gap:4px!important;
    }
    .division{
        min-height:205px!important;
    }
    .division-logo{
        max-width:290px!important;
    }
}

@media(max-width:620px){
    .hero-tech-art{
        inset:-34px -72px!important;
        width:calc(100% + 144px)!important;
        height:calc(100% + 68px)!important;
        left:-72px!important;
    }
    .brand-stage::after{
        inset:-35px -72px!important;
    }
    .systems-platforms{
        grid-template-columns:auto auto repeat(3,auto);
        gap:6px 7px;
    }
    .platform-name{font-size:8.5px}
    .contact-content-v7{padding:54px 22px 24px!important}
    .whatsapp-list-v7{grid-template-columns:1fr!important}
}


/* =========================================================
   V9 — CAPTURE MORPH (terrain > gear > building)
   ========================================================= */

.capture-effect{
    overflow: visible;
    min-height: 66px !important;
}

.capture-morph{
    position:absolute;
    left:50%;
    top:50%;
    width:120px;
    height:80px;
    transform:translate(-50%,-54%);
    pointer-events:none;
}

.capture-shape{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    fill:none;
    stroke:rgba(116,236,247,.88);
    stroke-width:1.4;
    stroke-linecap:round;
    stroke-linejoin:round;
    opacity:0;
    filter:drop-shadow(0 0 8px rgba(90,232,241,.22));
}

.capture-shape path,
.capture-shape circle{
    fill:none;
    stroke:inherit;
    stroke-width:inherit;
    stroke-linecap:inherit;
    stroke-linejoin:inherit;
    stroke-dasharray:280;
    stroke-dashoffset:280;
}

.capture-shape-gear g{transform-origin:60px 40px;}

.capture-particles{
    position:absolute;
    inset:0;
}

.capture-particle{
    position:absolute;
    left:50%;
    top:50%;
    width:4px;
    height:4px;
    border-radius:50%;
    background:rgba(165,247,252,.92);
    box-shadow:0 0 10px rgba(86,232,245,.42);
    opacity:0;
    transform:translate(-50%,-50%);
}

.capture-description{
    opacity:0;
    filter:blur(7px);
    transform:translateY(6px) scale(.96);
}

.division-capture.is-morphing .capture-shape path,
.division-capture.is-morphing .capture-shape circle{
    animation: captureDraw .42s ease forwards;
}

.division-capture.is-morphing .capture-shape-terrain{
    animation: captureShapeTerrain .84s ease forwards;
}

.division-capture.is-morphing .capture-shape-gear{
    animation: captureShapeGear .84s .52s ease forwards;
}

.division-capture.is-morphing .capture-shape-gear path,
.division-capture.is-morphing .capture-shape-gear circle{
    animation-delay:.56s;
}

.division-capture.is-morphing .capture-shape-building{
    animation: captureShapeBuilding .84s 1.06s ease forwards;
}

.division-capture.is-morphing .capture-shape-building path,
.division-capture.is-morphing .capture-shape-building circle{
    animation-delay:1.08s;
}

.division-capture.is-morphing .capture-shape-gear g{
    animation: captureGearSpin .68s .58s ease-out forwards;
}

.division-capture.is-morphing .capture-particles.phase-a .capture-particle,
.division-capture.is-morphing .capture-particles.phase-b .capture-particle,
.division-capture.is-morphing .capture-particles.phase-c .capture-particle{
    animation: captureParticleBurst .56s ease-out forwards;
}

.division-capture.is-morphing .capture-description{
    animation: captureDescriptionIn .5s 1.48s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes captureDraw{ to{ stroke-dashoffset:0; } }

@keyframes captureShapeTerrain{
    0%{opacity:0;transform:scale(.78) translateY(8px);}
    10%{opacity:1;}
    45%{opacity:.92;transform:scale(1) translateY(0);}
    100%{opacity:0;transform:scale(1.08) translateY(-5px);}
}

@keyframes captureShapeGear{
    0%{opacity:0;transform:scale(.82) rotate(-16deg);}
    16%{opacity:1;}
    55%{opacity:.92;transform:scale(1) rotate(0deg);}
    100%{opacity:0;transform:scale(1.1) rotate(12deg);}
}

@keyframes captureShapeBuilding{
    0%{opacity:0;transform:scale(.82) translateY(8px);}
    18%{opacity:1;}
    100%{opacity:.24;transform:scale(1) translateY(0);}
}

@keyframes captureGearSpin{
    from{ transform:translate(0,0) rotate(-18deg); }
    to{ transform:translate(0,0) rotate(90deg); }
}

@keyframes captureParticleBurst{
    0%{ opacity:0; transform:translate(-50%,-50%) scale(.4); }
    18%{ opacity:.95; }
    100%{ opacity:0; transform:translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(.15); }
}

@keyframes captureDescriptionIn{
    to{
        opacity:1;
        filter:blur(0);
        transform:translateY(0) scale(1);
        text-shadow:0 0 5px rgba(61,211,235,.30);
    }
}

@media (max-width:620px){
    .capture-morph{ width:106px; height:72px; }
}

/* =========================================================
   V10 — TRIPLE MICROSTORY
   Richer visual storytelling for Capture / Systems / Web.
   Background and UV technical scene intentionally preserved.
   ========================================================= */

/* Shared micro-copy */
.microstory-copy{
    position:absolute;
    left:50%;
    bottom:0;
    width:92%;
    transform:translateX(-50%);
    z-index:8;
    display:grid;
    justify-items:center;
    gap:3px;
    text-align:center;
    pointer-events:none;
}

.microstory-title{
    font-size:9px;
    font-weight:700;
    letter-spacing:2.2px;
    color:rgba(185,247,252,.94);
    text-shadow:0 0 8px rgba(81,219,232,.14);
}

.microstory-subtitle{
    font-size:9px;
    line-height:1.35;
    letter-spacing:.75px;
    color:rgba(255,255,255,.46);
}

/* ---------------- CAPTURE ---------------- */
.capture-effect{
    min-height:104px!important;
    margin-top:8px!important;
}

.capture-morph{
    top:38%!important;
    width:126px!important;
    height:82px!important;
}

.capture-axis{
    position:absolute;
    z-index:8;
    font-family:Consolas,monospace;
    font-size:7px;
    line-height:1;
    letter-spacing:0;
    color:rgba(167,242,249,.46);
    opacity:0;
}
.axis-x{right:5px;bottom:14px;color:rgba(104,231,243,.62)}
.axis-y{left:14px;top:5px;color:rgba(171,241,202,.56)}
.axis-z{right:11px;top:8px;color:rgba(159,175,255,.58)}

.capture-scanline{
    position:absolute;
    z-index:7;
    left:11px;
    top:10px;
    width:104px;
    height:1px;
    opacity:0;
    background:linear-gradient(90deg,transparent,rgba(194,251,255,.95),transparent);
    box-shadow:0 0 9px rgba(89,235,245,.56);
}

.capture-measure{
    position:absolute;
    z-index:6;
    opacity:0;
    height:1px;
    background:rgba(132,229,240,.28);
}
.capture-measure::before,
.capture-measure::after{
    content:"";
    position:absolute;
    top:-2px;
    width:1px;
    height:5px;
    background:rgba(132,229,240,.38);
}
.capture-measure::before{left:0}
.capture-measure::after{right:0}
.measure-a{width:48px;left:15px;bottom:13px;transform:rotate(-7deg)}
.measure-b{width:37px;right:10px;top:22px;transform:rotate(17deg)}

.division-capture.is-morphing .capture-axis{
    animation:captureMetaIn 1.75s ease forwards;
}
.division-capture.is-morphing .capture-scanline{
    animation:captureScanSweep .62s .08s ease-out forwards,
              captureScanSweep .52s .73s ease-out forwards,
              captureScanSweep .52s 1.30s ease-out forwards;
}
.division-capture.is-morphing .capture-measure{
    animation:captureMeasure 1.72s .12s ease forwards;
}

@keyframes captureScanSweep{
    0%{opacity:0;transform:translateY(0)}
    12%{opacity:.85}
    80%{opacity:.72}
    100%{opacity:0;transform:translateY(58px)}
}
@keyframes captureMetaIn{
    0%,7%{opacity:0}
    18%,82%{opacity:.72}
    100%{opacity:0}
}
@keyframes captureMeasure{
    0%,10%{opacity:0}
    25%,78%{opacity:1}
    100%{opacity:0}
}

.capture-copy{
    transition:opacity .16s ease, transform .16s ease;
}
.capture-copy.is-switching{
    opacity:0;
    transform:translateX(-50%) translateY(4px);
}

/* ---------------- SYSTEMS ---------------- */
.systems-effect{
    min-height:110px!important;
    margin-top:7px!important;
    overflow:visible;
}

.systems-story{
    position:absolute;
    left:50%;
    top:1px;
    width:140px;
    height:82px;
    transform:translateX(-50%);
    z-index:5;
    pointer-events:none;
}
.systems-shape{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    fill:none;
    stroke:rgba(119,236,247,.88);
    stroke-width:1.25;
    stroke-linecap:round;
    stroke-linejoin:round;
    opacity:0;
    filter:drop-shadow(0 0 8px rgba(80,224,238,.15));
}
.systems-shape path,
.systems-shape rect,
.systems-shape circle,
.systems-shape line{
    vector-effect:non-scaling-stroke;
}

.systems-particles{
    position:absolute;
    inset:0;
}
.systems-particle,
.web-particle{
    position:absolute;
    left:50%;
    top:50%;
    width:3px;
    height:3px;
    border-radius:50%;
    background:rgba(178,248,252,.9);
    box-shadow:0 0 7px rgba(92,230,241,.36);
    opacity:0;
}

.division-systems.is-systems-story .systems-shape-flow{
    animation:systemsPhaseA .68s ease forwards;
}
.division-systems.is-systems-story .systems-shape-code{
    animation:systemsPhaseB .72s .55s ease forwards;
}
.division-systems.is-systems-story .systems-shape-devices{
    animation:systemsPhaseC .78s 1.10s ease forwards;
}
.division-systems.is-systems-story .systems-shape-code{
    stroke:rgba(145,225,255,.92);
}
.division-systems.is-systems-story .systems-shape-devices{
    stroke:rgba(113,238,225,.92);
}

@keyframes systemsPhaseA{
    0%{opacity:0;transform:scale(.76)}
    15%{opacity:.95}
    68%{opacity:.78;transform:scale(1)}
    100%{opacity:0;transform:scale(1.08)}
}
@keyframes systemsPhaseB{
    0%{opacity:0;transform:scale(.82) rotate(-2deg)}
    16%{opacity:.96}
    68%{opacity:.82;transform:scale(1)}
    100%{opacity:0;transform:scale(1.06) rotate(2deg)}
}
@keyframes systemsPhaseC{
    0%{opacity:0;transform:scale(.82) translateY(4px)}
    18%{opacity:.98}
    100%{opacity:.34;transform:scale(1) translateY(0)}
}

.systems-copy{
    transition:opacity .16s ease, transform .16s ease;
}
.systems-copy.is-switching{
    opacity:0;
    transform:translateX(-50%) translateY(4px);
}

/* Keep the original rain/decode engine, but make the decoded line a tiny
   technical layer instead of competing with the new phase copy. */
.division-systems .code-description{
    position:absolute;
    left:50%;
    top:2px;
    width:94%;
    transform:translateX(-50%);
    z-index:4;
    font-size:7.5px!important;
    line-height:1.25;
    letter-spacing:.4px;
    color:rgba(117,226,239,.30)!important;
    text-align:center;
    white-space:normal;
}
.division-systems.is-decoding .code-description{
    opacity:.54!important;
}
.division-systems.decode-complete .code-description{
    opacity:.24!important;
}

.systems-platforms{
    margin-top:2px!important;
}

/* ---------------- WEB ---------------- */
.web-story-effect{
    min-height:108px!important;
    margin-top:8px!important;
    overflow:visible!important;
}
.web-story{
    position:absolute;
    left:50%;
    top:0;
    width:140px;
    height:82px;
    transform:translateX(-50%);
    z-index:5;
    pointer-events:none;
}
.web-shape{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    fill:none;
    stroke:rgba(118,236,245,.90);
    stroke-width:1.25;
    stroke-linecap:round;
    stroke-linejoin:round;
    opacity:0;
    filter:drop-shadow(0 0 7px rgba(75,219,233,.16));
}
.web-shape rect,
.web-shape path,
.web-shape line,
.web-shape circle{
    vector-effect:non-scaling-stroke;
}
.web-shape-publish{stroke:rgba(152,247,223,.94)}
.web-cursor{
    left:auto!important;
    right:22px!important;
    top:12px!important;
    z-index:9;
}
.web-particles{position:absolute;inset:0}

.division-web.is-designing .web-shape-wireframe{
    animation:webPhaseA .66s ease forwards;
}
.division-web.is-designing .web-shape-responsive{
    animation:webPhaseB .72s .54s ease forwards;
}
.division-web.is-designing .web-shape-publish{
    animation:webPhaseC .80s 1.08s ease forwards;
}
.division-web.is-designing .web-cursor{
    animation:webCursorStory 1.38s .10s cubic-bezier(.16,1,.3,1) forwards!important;
}

@keyframes webPhaseA{
    0%{opacity:0;transform:scale(.84)}
    16%{opacity:.95}
    70%{opacity:.82;transform:scale(1)}
    100%{opacity:0;transform:scale(1.04)}
}
@keyframes webPhaseB{
    0%{opacity:0;transform:scale(.82) translateY(3px)}
    18%{opacity:.95}
    70%{opacity:.82;transform:scale(1) translateY(0)}
    100%{opacity:0;transform:scale(1.04)}
}
@keyframes webPhaseC{
    0%{opacity:0;transform:scale(.80)}
    18%{opacity:.98}
    100%{opacity:.34;transform:scale(1)}
}
@keyframes webCursorStory{
    0%{opacity:0;transform:translate(14px,-10px)}
    16%{opacity:1}
    42%{opacity:.95;transform:translate(-42px,24px)}
    66%{opacity:.8;transform:translate(-18px,39px)}
    100%{opacity:0;transform:translate(-55px,44px)}
}
.web-copy{
    transition:opacity .16s ease, transform .16s ease;
}
.web-copy.is-switching{
    opacity:0;
    transform:translateX(-50%) translateY(4px);
}

/* Particle burst shared by Systems + Web */
.systems-particle.is-bursting,
.web-particle.is-bursting{
    animation:microParticleBurst .48s ease-out forwards;
}
@keyframes microParticleBurst{
    0%{opacity:0;transform:translate(-50%,-50%) scale(.45)}
    18%{opacity:.95}
    100%{opacity:0;transform:translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(.12)}
}

/* Mobile: preserve the approved vertical behavior, just give the stories room. */
@media(max-width:620px){
    .capture-effect,
    .systems-effect,
    .web-story-effect{
        min-height:102px!important;
    }
    .microstory-title{font-size:8.5px}
    .microstory-subtitle{font-size:8.5px}
    .systems-story,
    .web-story{transform:translateX(-50%) scale(.94);transform-origin:50% 50%}
}


/* =========================================================
   V13 · EARTH — ONLY THE ILLUMINATED CRESCENT IS VISIBLE
   No full globe outline. No dark overlay disk.
========================================================= */

.brand-stage{
    isolation:isolate;
}

.earth-crescent{
    position:absolute;
    z-index:1;
    left:50%;
    top:47%;
    width:min(900px,78vw);
    aspect-ratio:1/1;
    transform:translate(-50%,-50%);
    pointer-events:none;
    opacity:.92;
}

/*
   The sphere still gives the map a spherical crop, but the mask removes
   everything except a thin crescent on the right. There is NO visible
   complete circle and NO second black circle covering it.
*/
.earth-sphere{
    position:absolute;
    inset:0;
    overflow:hidden;
    border-radius:50%;
    background:transparent;
    box-shadow:none;
    transform:rotate(-4deg);

    -webkit-mask-image:
        radial-gradient(
            circle at 10% 50%,
            transparent 0%,
            transparent 72%,
            rgba(0,0,0,.10) 74%,
            rgba(0,0,0,.55) 78%,
            #000 83%,
            #000 100%
        );
    mask-image:
        radial-gradient(
            circle at 10% 50%,
            transparent 0%,
            transparent 72%,
            rgba(0,0,0,.10) 74%,
            rgba(0,0,0,.55) 78%,
            #000 83%,
            #000 100%
        );
}

.earth-map-track{
    position:absolute;
    left:0;
    top:0;
    width:400%;
    height:100%;
    display:flex;
    will-change:transform;
    animation:earthWorldRotate 42s linear infinite;
}

.earth-map-track img{
    flex:0 0 50%;
    width:50%;
    height:100%;
    object-fit:fill;
    opacity:.98;
    filter:
        saturate(.96)
        contrast(1.28)
        brightness(.92);
    user-select:none;
    -webkit-user-drag:none;
}

/* Small atmospheric detail only inside the visible crescent. */
.earth-cloud-haze{
    position:absolute;
    z-index:2;
    inset:-4%;
    border-radius:50%;
    opacity:.34;
    filter:blur(5px);
    background:
      radial-gradient(ellipse at 82% 28%,rgba(238,252,255,.14) 0 2%,transparent 13%),
      radial-gradient(ellipse at 86% 56%,rgba(238,252,255,.10) 0 3%,transparent 14%),
      radial-gradient(ellipse at 76% 75%,rgba(225,249,255,.08) 0 2%,transparent 13%);
}

/* No full circular rim. Only a narrow light grazing the visible limb. */
.earth-atmosphere{
    position:absolute;
    z-index:4;
    inset:0;
    border-radius:50%;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            transparent 84%,
            rgba(91,188,237,.03) 90%,
            rgba(159,228,255,.16) 97%,
            rgba(218,247,255,.52) 99.2%,
            rgba(246,253,255,.80) 100%
        );
    filter:drop-shadow(5px 0 13px rgba(75,165,226,.12));
}

/* Keep the logo clearly above the crescent. */
.brand{z-index:6!important;}
.main-logo{
    position:relative;
    z-index:6;
    filter:
      drop-shadow(0 12px 30px rgba(0,0,0,.34))
      drop-shadow(0 0 15px rgba(88,188,211,.045));
}

.hero-tech-art{z-index:2;}
.brand-stage::after{z-index:3;}

@keyframes earthWorldRotate{
    from{transform:translate3d(0,0,0)}
    to{transform:translate3d(-50%,0,0)}
}

@media(max-width:980px){
    .earth-crescent{
        width:min(880px,100vw);
        top:46%;
    }
}

@media(max-width:620px){
    .earth-crescent{
        width:122vw;
        top:42%;
        opacity:.88;
    }

    /* Slightly thinner illuminated slice on phones. */
    .earth-sphere{
        -webkit-mask-image:
            radial-gradient(
                circle at 7% 50%,
                transparent 0%,
                transparent 74%,
                rgba(0,0,0,.08) 76%,
                rgba(0,0,0,.50) 80%,
                #000 85%,
                #000 100%
            );
        mask-image:
            radial-gradient(
                circle at 7% 50%,
                transparent 0%,
                transparent 74%,
                rgba(0,0,0,.08) 76%,
                rgba(0,0,0,.50) 80%,
                #000 85%,
                #000 100%
            );
    }
}

@media(prefers-reduced-motion:reduce){
    .earth-map-track{animation:none!important;}
}


/* =========================================================
   V14 · EARTH POINT CLOUD
   Real world geometry rendered as particles.
   Only the illuminated crescent is visible.
========================================================= */

/* Disable the former raster-earth implementation completely. */
.earth-crescent,
.earth-sphere,
.earth-map-track,
.earth-cloud-haze,
.earth-atmosphere{
    display:none!important;
}

.brand-stage{
    isolation:isolate;
}

.earth-particle-crescent{
    position:absolute;
    z-index:1;
    left:50%;
    top:47%;
    width:min(940px,82vw);
    aspect-ratio:1/1;
    transform:translate(-50%,-50%);
    pointer-events:none;
    opacity:.95;
}

.earth-particle-crescent::before{
    content:"";
    position:absolute;
    right:2%;
    top:12%;
    width:28%;
    height:76%;
    border-radius:50%;
    background:radial-gradient(
        ellipse at center,
        rgba(76,202,231,.075) 0%,
        rgba(51,147,190,.035) 38%,
        transparent 72%
    );
    filter:blur(22px);
    opacity:.88;
}

.earth-particle-canvas{
    display:block;
    width:100%;
    height:100%;
    background:transparent;
    filter:
        drop-shadow(0 0 2px rgba(183,248,255,.22))
        drop-shadow(7px 0 18px rgba(63,175,219,.08));
}

/* Logo always stays above the globe. */
.brand{
    z-index:6!important;
}

.main-logo{
    position:relative;
    z-index:6;
    filter:
        drop-shadow(0 12px 30px rgba(0,0,0,.38))
        drop-shadow(0 0 15px rgba(88,188,211,.05));
}

.hero-tech-art{z-index:2;}
.brand-stage::after{z-index:3;}

@media(max-width:980px){
    .earth-particle-crescent{
        width:min(920px,104vw);
        top:45%;
    }
}

@media(max-width:620px){
    .earth-particle-crescent{
        width:128vw;
        top:42%;
        opacity:.90;
    }
}


/* =========================================================
   V15 · ECOSYSTEM MOTION
   Cinematic reveal + globe parallax + cross-site particle flow.
========================================================= */

/* Global particle overlay. It never captures clicks. */
.ecosystem-particle-canvas{
    position:fixed;
    inset:0;
    z-index:9;
    width:100vw;
    height:100vh;
    pointer-events:none;
    background:transparent;
}

/* Keep interactive content above the stream only where needed. */
.division,
.footer{
    position:relative;
    z-index:10;
}

/* ---------------------------------------------------------
   CINEMATIC BOOT
   Globe first, logo second, business lines last.
--------------------------------------------------------- */
.cinematic-pending .earth-particle-crescent{
    opacity:0!important;
    clip-path:inset(0 0 0 100%);
    filter:blur(7px);
}

.cinematic-pending .brand{
    opacity:0!important;
    transform:translateY(16px) scale(.985)!important;
    filter:blur(7px)!important;
    animation:none!important;
}

.cinematic-pending .divisions{
    opacity:0!important;
    transform:translateY(20px)!important;
    animation:none!important;
}

.cinematic-pending .footer{
    opacity:0!important;
}

.cinematic-ready .earth-particle-crescent{
    animation:earthCinematicReveal 1.35s .08s cubic-bezier(.16,1,.3,1) both;
}

.cinematic-ready .brand{
    animation:brandCinematicReveal .92s .47s cubic-bezier(.16,1,.3,1) both!important;
}

.cinematic-ready .divisions{
    animation:ecosystemDivisionsIn .92s .84s cubic-bezier(.16,1,.3,1) both!important;
}

.cinematic-ready .footer{
    animation:ecosystemFooterIn .72s 1.15s ease both;
}

@keyframes earthCinematicReveal{
    0%{
        opacity:0;
        clip-path:inset(0 0 0 100%);
        filter:blur(8px);
    }
    42%{opacity:.88;}
    100%{
        opacity:.95;
        clip-path:inset(0 0 0 0);
        filter:blur(0);
    }
}

@keyframes brandCinematicReveal{
    from{
        opacity:0;
        transform:translateY(16px) scale(.985);
        filter:blur(7px);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
        filter:blur(0);
    }
}

@keyframes ecosystemDivisionsIn{
    from{opacity:0;transform:translateY(20px);}
    to{opacity:1;transform:translateY(0);}
}

@keyframes ecosystemFooterIn{
    from{opacity:0;transform:translateY(8px);}
    to{opacity:1;transform:translateY(0);}
}

/* ---------------------------------------------------------
   PARALLAX DEL PLANETA
--------------------------------------------------------- */
.brand-stage{
    --earth-parallax-x:0px;
    --earth-parallax-y:0px;
}

.earth-particle-crescent{
    transform:
        translate(
            calc(-50% + var(--earth-parallax-x)),
            calc(-50% + var(--earth-parallax-y))
        );
    will-change:transform,opacity,clip-path;
    transition:transform .16s cubic-bezier(.2,.7,.2,1), opacity .35s ease;
}

/* When a business line receives data, the crescent breathes very subtly. */
body.ecosystem-flowing .earth-particle-crescent{
    opacity:1;
}

/* ---------------------------------------------------------
   LANDING ENERGY IN EACH BUSINESS LINE
--------------------------------------------------------- */
.division::after{
    content:"";
    position:absolute;
    z-index:1;
    left:50%;
    top:56%;
    width:110px;
    height:110px;
    border-radius:50%;
    pointer-events:none;
    opacity:0;
    transform:translate(-50%,-50%) scale(.55);
    background:radial-gradient(circle, rgba(126,239,249,.13), rgba(62,188,213,.035) 45%, transparent 72%);
}

.division.ecosystem-hit::after{
    animation:ecosystemLandingPulse .72s ease-out both;
}

.division.ecosystem-hit .division-logo{
    animation:ecosystemLogoPulse .72s ease-out;
}

.division-capture.ecosystem-hit .capture-shape,
.division-systems.ecosystem-hit .code-description,
.division-web.ecosystem-hit .design-board{
    filter:drop-shadow(0 0 10px rgba(124,239,248,.34));
}

@keyframes ecosystemLandingPulse{
    0%{opacity:0;transform:translate(-50%,-50%) scale(.40);}
    30%{opacity:1;}
    100%{opacity:0;transform:translate(-50%,-50%) scale(1.45);}
}

@keyframes ecosystemLogoPulse{
    0%,100%{transform:scale(1);}
    35%{transform:scale(1.035);}
}

/* Respect users who prefer less motion. */
@media(prefers-reduced-motion:reduce){
    .cinematic-ready .earth-particle-crescent,
    .cinematic-ready .brand,
    .cinematic-ready .divisions,
    .cinematic-ready .footer,
    .division.ecosystem-hit::after,
    .division.ecosystem-hit .division-logo{
        animation:none!important;
    }

    .earth-particle-crescent{
        clip-path:none!important;
        opacity:.95!important;
        transform:translate(-50%,-50%)!important;
    }

    .brand,
    .divisions,
    .footer{
        opacity:1!important;
        transform:none!important;
        filter:none!important;
    }

    .ecosystem-particle-canvas{display:none!important;}
}

@media(max-width:620px){
    .ecosystem-particle-canvas{opacity:.82;}
}


/* =========================================================
   V16 · COMPACT EARTH + TIGHT POINT CLOUD + BRIGHT SPARKS
========================================================= */

/* More compact above-the-fold composition on desktop. */
@media (min-width: 981px){
    .hero{
        min-height:100svh!important;
        justify-content:flex-start!important;
        padding:10px 32px 12px!important;
    }

    .brand-stage{
        width:min(1120px,94vw)!important;
        min-height:245px!important;
        margin-bottom:0!important;
    }

    .main-logo{
        width:min(620px,58vw)!important;
    }

    .intro{
        margin-top:14px!important;
    }

    .divisions{
        width:min(1120px,94vw)!important;
        gap:14px!important;
    }

    .division{
        min-height:212px!important;
        padding-top:23px!important;
        padding-bottom:16px!important;
    }

    .division-info{
        margin-top:15px!important;
        min-height:82px!important;
    }

    .footer-v7{
        margin-top:10px!important;
    }
}

/* Smaller globe: remains behind the main logo instead of dominating it. */
.earth-particle-crescent{
    width:min(650px,59vw)!important;
    top:45%!important;
    opacity:.94!important;
}

/* Remove broad haze; keep only a very localized crescent breath. */
.earth-particle-crescent::before{
    right:4%!important;
    top:18%!important;
    width:20%!important;
    height:64%!important;
    filter:blur(15px)!important;
    opacity:.46!important;
}

.earth-particle-canvas{
    filter:
        drop-shadow(0 0 1px rgba(195,251,255,.17))
        drop-shadow(4px 0 10px rgba(70,187,221,.055))!important;
}

/* The stream is intentionally brighter than V15: more like a data spark. */
.ecosystem-particle-canvas{
    opacity:1!important;
    mix-blend-mode:screen;
}

.division.ecosystem-hit::after{
    background:radial-gradient(circle, rgba(197,251,255,.24), rgba(83,217,239,.08) 31%, transparent 68%)!important;
}

@media (max-width: 980px){
    .hero{
        padding-top:14px!important;
    }
    .brand-stage{
        min-height:245px!important;
        margin-bottom:2px!important;
    }
    .earth-particle-crescent{
        width:min(650px,88vw)!important;
        top:44%!important;
    }
}

@media (max-width: 620px){
    .hero{
        padding-top:12px!important;
    }
    .brand-stage{
        min-height:225px!important;
        margin-bottom:0!important;
    }
    .earth-particle-crescent{
        width:92vw!important;
        top:43%!important;
    }
    .earth-particle-crescent::before{
        width:18%!important;
        opacity:.38!important;
    }
}


/* =========================================================
   V17 — PERFORMANCE HINTS
========================================================= */
.earth-particle-canvas,
.ecosystem-particle-canvas{
    contain:strict;
}
.earth-particle-crescent{
    will-change:transform,opacity;
}
.hero-tech-art{
    will-change:transform;
}
@media (max-width:700px){
    .earth-particle-crescent{
        filter:none!important;
    }
}


/* =========================================================
   V18 — ISOLOGO DE ESQUINA / BRINCO DE FIRMA
   CSS-only: impacto de rendimiento prácticamente nulo.
========================================================= */

.corner-isologo{
    position:fixed;
    left:clamp(18px,2vw,34px);
    bottom:clamp(18px,2vw,30px);
    z-index:8;
    width:clamp(42px,3.4vw,58px);
    aspect-ratio:1/1;
    display:grid;
    place-items:center;
    pointer-events:none;
    user-select:none;
    -webkit-user-select:none;
    opacity:0;
    transform:translateY(18px) scale(.82);
    animation:cornerIsoEntrance .85s 1.15s cubic-bezier(.16,1,.3,1) forwards;
}

.corner-isologo::before{
    content:"";
    position:absolute;
    inset:-12px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(104,230,242,.12) 0%, rgba(64,186,210,.045) 42%, transparent 72%);
    filter:blur(8px);
    opacity:.48;
    transform:scale(.8);
    animation:cornerIsoGlow 8.6s 2.1s ease-in-out infinite;
}

.corner-isologo-mark{
    position:relative;
    z-index:1;
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    transform-origin:50% 88%;
    will-change:transform;
    filter:
        drop-shadow(0 5px 8px rgba(0,0,0,.34))
        drop-shadow(0 0 7px rgba(88,220,235,.12));
    animation:cornerIsoHop 8.6s 2.1s cubic-bezier(.2,.8,.2,1) infinite;
}

@keyframes cornerIsoEntrance{
    0%{opacity:0;transform:translateY(20px) rotate(-18deg) scale(.72)}
    62%{opacity:.88;transform:translateY(-4px) rotate(5deg) scale(1.04)}
    100%{opacity:.72;transform:translateY(0) rotate(0) scale(1)}
}

/* Está quieto casi todo el tiempo; el salto ocurre una sola vez por ciclo. */
@keyframes cornerIsoHop{
    0%,67%,100%{transform:translateY(0) rotate(0deg) scale(1,1)}
    69%{transform:translateY(2px) rotate(-2deg) scale(1.08,.90)}
    72%{transform:translateY(-17px) rotate(-12deg) scale(.96,1.04)}
    75%{transform:translateY(-28px) rotate(12deg) scale(.98,1.02)}
    78%{transform:translateY(-14px) rotate(20deg) scale(1,1)}
    81%{transform:translateY(1px) rotate(-4deg) scale(1.10,.88)}
    84%{transform:translateY(-7px) rotate(2deg) scale(.98,1.02)}
    88%{transform:translateY(0) rotate(0deg) scale(1,1)}
}

@keyframes cornerIsoGlow{
    0%,67%,100%{opacity:.20;transform:scale(.78)}
    72%{opacity:.58;transform:scale(1.10)}
    76%{opacity:.78;transform:scale(1.28)}
    82%{opacity:.35;transform:scale(.90)}
}

@media(max-width:620px){
    .corner-isologo{
        left:15px;
        bottom:15px;
        width:42px;
        opacity:.66;
    }
}

@media(prefers-reduced-motion:reduce){
    .corner-isologo{
        opacity:.68;
        transform:none;
        animation:none!important;
    }
    .corner-isologo-mark,
    .corner-isologo::before{
        animation:none!important;
    }
}


/* =========================================================
   V19 — ISOLOGO GRANDE COMO MARCA DE AGUA
   Recupera la firma visual original: grande, tenue y con brinco.
========================================================= */
.corner-isologo{
    left:clamp(14px,1.8vw,30px)!important;
    bottom:clamp(10px,1.25vw,22px)!important;
    width:clamp(105px,8.8vw,158px)!important;
    opacity:0;
    transform:translateY(22px) scale(.88);
    animation:cornerIsoWatermarkEntrance 1s 1.05s cubic-bezier(.16,1,.3,1) forwards!important;
}

.corner-isologo::before{
    inset:-24px!important;
    background:radial-gradient(circle, rgba(104,230,242,.085) 0%, rgba(64,186,210,.028) 43%, transparent 72%)!important;
    filter:blur(13px)!important;
    opacity:.20!important;
    animation:cornerIsoWatermarkGlow 9.4s 2.4s ease-in-out infinite!important;
}

.corner-isologo-mark{
    opacity:.18;
    filter:
        drop-shadow(0 8px 18px rgba(0,0,0,.22))
        drop-shadow(0 0 11px rgba(88,220,235,.055))!important;
    animation:cornerIsoWatermarkHop 9.4s 2.4s cubic-bezier(.2,.8,.2,1) infinite!important;
}

@keyframes cornerIsoWatermarkEntrance{
    0%{opacity:0;transform:translateY(26px) rotate(-13deg) scale(.82)}
    64%{opacity:.18;transform:translateY(-5px) rotate(4deg) scale(1.025)}
    100%{opacity:1;transform:translateY(0) rotate(0deg) scale(1)}
}

/* Marca de agua quieta casi todo el ciclo; solo hace un brinco breve. */
@keyframes cornerIsoWatermarkHop{
    0%,70%,100%{transform:translateY(0) rotate(0deg) scale(1)}
    72%{transform:translateY(3px) rotate(-2deg) scale(1.035,.965)}
    75%{transform:translateY(-19px) rotate(-10deg) scale(.985,1.015)}
    78%{transform:translateY(-31px) rotate(9deg) scale(.99,1.01)}
    81%{transform:translateY(-13px) rotate(14deg) scale(1)}
    84%{transform:translateY(2px) rotate(-3deg) scale(1.045,.955)}
    87%{transform:translateY(-6px) rotate(2deg) scale(.99,1.01)}
    91%{transform:translateY(0) rotate(0deg) scale(1)}
}

@keyframes cornerIsoWatermarkGlow{
    0%,70%,100%{opacity:.08;transform:scale(.84)}
    75%{opacity:.20;transform:scale(1.08)}
    79%{opacity:.30;transform:scale(1.20)}
    85%{opacity:.12;transform:scale(.94)}
}

@media(max-width:620px){
    .corner-isologo{
        left:8px!important;
        bottom:8px!important;
        width:clamp(78px,23vw,104px)!important;
    }
    .corner-isologo-mark{
        opacity:.15!important;
    }
}

@media(prefers-reduced-motion:reduce){
    .corner-isologo{
        opacity:1!important;
        transform:none!important;
        animation:none!important;
    }
    .corner-isologo-mark{
        opacity:.18!important;
        animation:none!important;
    }
    .corner-isologo::before{
        animation:none!important;
    }
}


/* =========================================================
   V20 — ISOLOGO WATERMARK GRANDE, SEMIESCONDIDO Y ANIMACIÓN ÚNICA
   - Mucho más grande.
   - Parcialmente fuera de la esquina inferior izquierda.
   - Entra girando sobre su eje, hace un pequeño salto y queda quieto.
   - Sin loop para mantenerlo sutil y liviano.
========================================================= */
.corner-isologo{
    left:clamp(-118px,-6.8vw,-72px)!important;
    bottom:clamp(-112px,-6.2vw,-66px)!important;
    width:clamp(250px,19vw,390px)!important;
    aspect-ratio:1/1!important;
    opacity:1!important;
    transform:none!important;
    animation:none!important;
    overflow:visible!important;
}

.corner-isologo::before{
    inset:12%!important;
    border-radius:50%!important;
    background:radial-gradient(circle, rgba(95,225,239,.055) 0%, rgba(52,171,197,.018) 46%, transparent 74%)!important;
    filter:blur(18px)!important;
    opacity:.34!important;
    transform:scale(1)!important;
    animation:none!important;
}

.corner-isologo-mark{
    width:100%!important;
    height:100%!important;
    object-fit:contain!important;
    opacity:.105!important;
    transform-origin:50% 50%!important;
    filter:
        drop-shadow(0 10px 24px rgba(0,0,0,.12))
        drop-shadow(0 0 14px rgba(84,217,232,.035))!important;
    animation:cornerIsoSignatureOnce 2.15s .72s cubic-bezier(.22,.75,.2,1) both!important;
    will-change:transform,opacity;
}

@keyframes cornerIsoSignatureOnce{
    0%{
        opacity:0;
        transform:rotate(-385deg) scale(.72) translateY(10px);
    }
    42%{
        opacity:.10;
        transform:rotate(18deg) scale(1.015) translateY(0);
    }
    54%{
        opacity:.105;
        transform:rotate(0deg) scale(1) translateY(0);
    }
    63%{
        transform:rotate(0deg) scale(1.025,.975) translateY(3px);
    }
    73%{
        transform:rotate(-3deg) scale(.995,1.005) translateY(-20px);
    }
    82%{
        transform:rotate(2deg) scale(1) translateY(-8px);
    }
    90%{
        transform:rotate(-1deg) scale(1.018,.982) translateY(2px);
    }
    100%{
        opacity:.105;
        transform:rotate(0deg) scale(1) translateY(0);
    }
}

@media(max-width:900px){
    .corner-isologo{
        left:clamp(-96px,-11vw,-54px)!important;
        bottom:clamp(-92px,-10vw,-52px)!important;
        width:clamp(210px,31vw,300px)!important;
    }
    .corner-isologo-mark{opacity:.09!important;}
}

@media(max-width:620px){
    .corner-isologo{
        left:-64px!important;
        bottom:-62px!important;
        width:190px!important;
    }
    .corner-isologo-mark{opacity:.082!important;}
}

@media(prefers-reduced-motion:reduce){
    .corner-isologo-mark{
        opacity:.095!important;
        transform:none!important;
        animation:none!important;
    }
}


/* =========================================================
   V21 — ISOLOGO XL / WATERMARK MÁS TENUE
   - Aproximadamente el doble de tamaño que V20.
   - Sigue semiescondido en la esquina inferior izquierda.
   - Menor opacidad visual (más tenue), una sola animación.
========================================================= */
.corner-isologo{
    left:clamp(-236px,-13.6vw,-144px)!important;
    bottom:clamp(-224px,-12.4vw,-132px)!important;
    width:clamp(500px,38vw,780px)!important;
}

.corner-isologo::before{
    inset:14%!important;
    background:radial-gradient(circle, rgba(95,225,239,.030) 0%, rgba(52,171,197,.010) 46%, transparent 74%)!important;
    filter:blur(24px)!important;
    opacity:.22!important;
}

.corner-isologo-mark{
    opacity:.052!important;
    filter:
        drop-shadow(0 16px 38px rgba(0,0,0,.08))
        drop-shadow(0 0 18px rgba(84,217,232,.022))!important;
    animation:cornerIsoSignatureOnceXL 2.2s .72s cubic-bezier(.22,.75,.2,1) both!important;
}

@keyframes cornerIsoSignatureOnceXL{
    0%{
        opacity:0;
        transform:rotate(-385deg) scale(.72) translateY(10px);
    }
    42%{
        opacity:.048;
        transform:rotate(18deg) scale(1.015) translateY(0);
    }
    54%{
        opacity:.052;
        transform:rotate(0deg) scale(1) translateY(0);
    }
    63%{
        transform:rotate(0deg) scale(1.018,.982) translateY(3px);
    }
    73%{
        transform:rotate(-2.5deg) scale(.997,1.003) translateY(-22px);
    }
    82%{
        transform:rotate(1.7deg) scale(1) translateY(-8px);
    }
    90%{
        transform:rotate(-.7deg) scale(1.012,.988) translateY(2px);
    }
    100%{
        opacity:.052;
        transform:rotate(0deg) scale(1) translateY(0);
    }
}

@media(max-width:900px){
    .corner-isologo{
        left:clamp(-192px,-22vw,-108px)!important;
        bottom:clamp(-184px,-20vw,-104px)!important;
        width:clamp(420px,62vw,600px)!important;
    }
    .corner-isologo-mark{opacity:.046!important;}
}

@media(max-width:620px){
    .corner-isologo{
        left:-128px!important;
        bottom:-124px!important;
        width:380px!important;
    }
    .corner-isologo-mark{opacity:.042!important;}
}

@media(prefers-reduced-motion:reduce){
    .corner-isologo-mark{
        opacity:.047!important;
        transform:none!important;
        animation:none!important;
    }
}
