/* =========================================================
   CRECE IA — LANDING PAGE V2
   Futuristic Technology Experience
   ========================================================= */


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #030713;
    --bg-soft: #071126;

    --blue: #0066ff;
    --cyan: #00c3ff;
    --violet: #8a2be2;

    --white: #ffffff;
    --text: #dbe8ff;
    --muted: #8fa4c4;

    --border: rgba(135, 180, 255, 0.14);

    --glass: rgba(8, 18, 42, 0.58);

    --max-width: 1220px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    background: var(--bg);
    color: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.tech-background {
    position: fixed;

    inset: 0;

    z-index: -10;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(0, 102, 255, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 80% 35%,
            rgba(138, 43, 226, 0.12),
            transparent 30%
        ),
        #030713;
}

.grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(80, 150, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(80, 150, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}

.orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.18;
}

.orb-one {
    width: 450px;
    height: 450px;

    background: var(--blue);

    left: -200px;
    top: 20%;
}

.orb-two {
    width: 400px;
    height: 400px;

    background: var(--violet);

    right: -180px;
    top: 12%;
}

.orb-three {
    width: 300px;
    height: 300px;

    background: var(--cyan);

    left: 45%;
    top: 65%;

    opacity: 0.08;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    transition: 0.3s;
}

header.scrolled {
    background: rgba(3, 7, 19, 0.82);

    backdrop-filter: blur(22px);

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}

.navbar {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    height: 82px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.brand {
    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;
}

.brand-symbol {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-weight: 900;

    font-size: 21px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    box-shadow:
        0 0 25px rgba(0, 153, 255, 0.30);
}

.brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1.15;
}

.brand-text strong {
    font-size: 16px;

    letter-spacing: 1px;
}

.brand-text span {
    margin-top: 4px;

    color: #7891b7;

    font-size: 8px;

    letter-spacing: 1.7px;
}

.nav-links {
    display: flex;

    gap: 31px;
}

.nav-links a {
    position: relative;

    color: #c8d6ed;

    text-decoration: none;

    font-size: 14px;

    transition: 0.25s;
}

.nav-links a::after {
    content: "";

    position: absolute;

    height: 1px;

    left: 0;
    right: 100%;
    bottom: -7px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

    transition: 0.25s;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    right: 0;
}

.nav-button {
    padding: 10px 17px;

    border:
        1px solid rgba(0, 195, 255, 0.30);

    border-radius: 8px;

    color: #dff8ff;

    text-decoration: none;

    font-size: 13px;

    background:
        rgba(0, 130, 255, 0.08);

    transition: 0.25s;
}

.nav-button:hover {
    background:
        rgba(0, 130, 255, 0.16);

    box-shadow:
        0 0 25px rgba(0, 153, 255, 0.13);
}

.mobile-menu-button {
    display: none;

    color: white;

    font-size: 25px;

    background: none;

    border: none;

    cursor: pointer;
}

.mobile-menu {
    display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding:
        130px 20px
        80px;
}

.hero-content {
    width: min(
        100%,
        var(--max-width)
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        1.08fr 0.92fr;

    align-items: center;

    gap: 40px;
}

.status-pill {
    width: fit-content;

    padding: 8px 13px;

    display: flex;

    align-items: center;

    gap: 9px;

    color: #9fc9ff;

    font-size: 10px;

    letter-spacing: 2px;

    border:
        1px solid rgba(0, 153, 255, 0.20);

    border-radius: 30px;

    background:
        rgba(0, 102, 255, 0.07);

    margin-bottom: 27px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 12px var(--cyan);

    animation:
        pulse 2s infinite;
}

@keyframes pulse {

    50% {
        opacity: 0.35;
    }

}

.hero h1 {
    max-width: 700px;

    font-size:
        clamp(
            55px,
            6.2vw,
            88px
        );

    line-height: 0.99;

    letter-spacing: -4px;

    font-weight: 750;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #62a8ff,
            #7be3ff,
            #9c6cff
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 640px;

    margin-top: 29px;

    color: #9eb0cb;

    font-size: 18px;

    line-height: 1.8;
}

.hero-actions {
    display: flex;

    align-items: center;

    gap: 13px;

    flex-wrap: wrap;

    margin-top: 37px;
}

.primary-button,
.secondary-button {
    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 0 23px;

    border-radius: 9px;

    text-decoration: none;

    font-weight: 650;

    font-size: 14px;

    transition: 0.3s;
}

.primary-button {
    color: white;

    background:
        linear-gradient(
            110deg,
            #0066ff,
            #7048ff
        );

    box-shadow:
        0 15px 45px rgba(0, 102, 255, 0.20);
}

.primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 55px rgba(0, 102, 255, 0.30);
}

.primary-button span {
    transition: 0.3s;
}

.primary-button:hover span {
    transform: translateX(4px);
}

.secondary-button {
    color: #d4e2f7;

    border:
        1px solid rgba(255,255,255,0.13);

    background:
        rgba(255,255,255,0.035);
}

.secondary-button:hover {
    border-color:
        rgba(0, 195, 255, 0.30);

    background:
        rgba(0, 102, 255, 0.07);
}

.hero-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 36px;
}

.hero-tags span {
    padding: 6px 11px;

    border-radius: 5px;

    border:
        1px solid rgba(255,255,255,0.07);

    color: #7087aa;

    font-size: 10px;

    letter-spacing: 0.7px;

    background:
        rgba(255,255,255,0.02);
}


/* =========================================================
   CRIS HERO VISUAL
   ========================================================= */

.hero-visual {
    min-height: 610px;

    display: flex;

    align-items: center;

    justify-content: center;

    perspective: 1200px;
}

.cris-stage {
    position: relative;

    width: min(
        100%,
        520px
    );

    height: 590px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform-style:
        preserve-3d;

    transition:
        transform 0.15s ease-out;
}

.cris-glow {
    position: absolute;

    width: 330px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(0, 174, 255, 0.25),
            rgba(72, 47, 255, 0.10) 40%,
            transparent 70%
        );

    filter: blur(20px);

    animation:
        breathe 4s ease-in-out infinite;
}

@keyframes breathe {

    50% {
        transform: scale(1.08);
        opacity: 0.7;
    }

}

.hologram-ring {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(0, 195, 255, 0.20);

    transform:
        rotateX(72deg);

    box-shadow:
        0 0 35px rgba(0, 153, 255, 0.08);
}

.ring-one {
    width: 430px;
    height: 430px;

    animation:
        rotateRing 13s linear infinite;
}

.ring-two {
    width: 360px;
    height: 360px;

    border-style: dashed;

    animation:
        rotateRingReverse 10s linear infinite;
}

.ring-three {
    width: 490px;
    height: 490px;

    opacity: 0.35;

    animation:
        rotateRing 18s linear infinite;
}

@keyframes rotateRing {

    from {
        transform:
            rotateX(72deg)
            rotateZ(0deg);
    }

    to {
        transform:
            rotateX(72deg)
            rotateZ(360deg);
    }

}

@keyframes rotateRingReverse {

    from {
        transform:
            rotateX(72deg)
            rotateZ(360deg);
    }

    to {
        transform:
            rotateX(72deg)
            rotateZ(0deg);
    }

}


/* TEMPORARY CRIS */

.cris-placeholder {
    position: relative;

    z-index: 4;

    width: 235px;

    height: 450px;

    animation:
        crisFloat 4s ease-in-out infinite;

    filter:
        drop-shadow(
            0 30px 35px rgba(0,0,0,0.5)
        );
}

@keyframes crisFloat {

    50% {
        transform:
            translateY(-11px);
    }

}

.placeholder-head {
    position: absolute;

    left: 50%;

    transform:
        translateX(-50%);

    width: 145px;
    height: 120px;

    border-radius:
        48% 48% 42% 42%;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #b7c7d9
        );

    box-shadow:
        inset -12px -10px 25px rgba(0,0,0,0.15),
        0 0 35px rgba(0,195,255,0.10);
}

.face {
    position: absolute;

    inset: 13px;

    overflow: hidden;

    border-radius: 42%;

    background:
        radial-gradient(
            circle at 50% 40%,
            #071c32,
            #010409 70%
        );

    box-shadow:
        inset 0 0 25px rgba(0,195,255,0.15);
}

.eye {
    position: absolute;

    top: 38px;

    width: 24px;
    height: 14px;

    border-top:
        5px solid #4ad7ff;

    border-radius: 50%;

    filter:
        drop-shadow(
            0 0 5px #00bfff
        );
}

.left-eye {
    left: 26px;
}

.right-eye {
    right: 26px;
}

.smile {
    position: absolute;

    width: 43px;
    height: 23px;

    left: 50%;
    top: 60px;

    transform:
        translateX(-50%);

    border-bottom:
        5px solid #4ad7ff;

    border-radius: 50%;

    filter:
        drop-shadow(
            0 0 5px #00bfff
        );
}

.placeholder-body {
    position: absolute;

    left: 50%;
    top: 115px;

    transform:
        translateX(-50%);

    width: 180px;
    height: 235px;

    border-radius:
        45px 45px 60px 60px;

    background:
        linear-gradient(
            150deg,
            #f7fbff,
            #93a5b8
        );

    border:
        1px solid rgba(255,255,255,0.7);

    box-shadow:
        inset -15px -15px 30px rgba(0,0,0,0.18);

    display: flex;

    flex-direction: column;

    align-items: center;

    padding-top: 35px;
}

.placeholder-body::after {
    content: "";

    position: absolute;

    width: 115px;
    height: 90px;

    bottom: -78px;

    border-radius:
        0 0 40px 40px;

    background:
        linear-gradient(
            #101722,
            #020509
        );
}

.chest-logo {
    width: 45px;
    height: 45px;

    border:
        4px solid #087fff;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: #087fff;

    font-weight: 900;

    font-size: 21px;
}

.placeholder-body > span {
    color: #07101e;

    margin-top: 7px;

    font-size: 11px;

    font-weight: 800;
}


/* FLOATING UI */

.floating-card {
    position: absolute;

    z-index: 7;

    min-width: 145px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 11px 13px;

    border:
        1px solid rgba(73, 177, 255, 0.18);

    border-radius: 9px;

    background:
        rgba(7, 18, 39, 0.68);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.25);

    animation:
        floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

    50% {
        transform:
            translateY(-8px);
    }

}

.floating-card small {
    display: block;

    color: #5d789f;

    font-size: 7px;

    letter-spacing: 1.4px;
}

.floating-card strong {
    display: block;

    color: #e4f4ff;

    font-size: 12px;
}

.floating-icon {
    width: 28px;
    height: 28px;

    display: grid;

    place-items: center;

    border-radius: 6px;

    color: var(--cyan);

    background:
        rgba(0, 153, 255, 0.10);
}

.card-voice {
    top: 125px;
    left: 5px;
}

.card-vision {
    right: -5px;
    top: 230px;

    animation-delay:
        -1.2s;
}

.card-docs {
    left: 25px;
    bottom: 95px;

    animation-delay:
        -2.1s;
}

.system-label {
    position: absolute;

    right: 35px;
    bottom: 60px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: #4e7098;

    font-size: 8px;

    letter-spacing: 1.5px;
}

.system-label span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #00d9a5;

    box-shadow:
        0 0 8px #00d9a5;
}

.scan-line {
    position: absolute;

    z-index: 6;

    left: 80px;
    right: 80px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan),
            transparent
        );

    box-shadow:
        0 0 13px var(--cyan);

    opacity: 0.35;

    animation:
        scan 4s linear infinite;
}

@keyframes scan {

    0% {
        top: 100px;
    }

    100% {
        top: 500px;
    }

}

.scroll-indicator {
    position: absolute;

    bottom: 28px;
    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 9px;

    color: #425b7e;

    font-size: 8px;

    letter-spacing: 2px;
}

.scroll-indicator div {
    width: 1px;
    height: 38px;

    background:
        linear-gradient(
            var(--cyan),
            transparent
        );
}


/* =========================================================
   GLOBAL SECTIONS
   ========================================================= */

.section {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin: auto;

    padding:
        135px 0;
}

.section-heading {
    max-width: 830px;

    margin-bottom: 65px;
}

.eyebrow {
    display: block;

    margin-bottom: 18px;

    color: #4da8ff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.7px;
}

.section-heading h2,
.vision-content h2,
.partners-content h2,
.contact-content h2 {
    font-size:
        clamp(
            39px,
            5vw,
            66px
        );

    line-height: 1.07;

    letter-spacing: -2.8px;

    font-weight: 680;
}

.section-heading h2 span,
.vision-content h2 span,
.partners-content h2 span,
.contact-content h2 span {
    color: #67b5ff;
}

.section-heading > p {
    max-width: 720px;

    margin-top: 24px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   CRIS SECTION
   ========================================================= */

.cris-section {
    border-top:
        1px solid rgba(255,255,255,0.05);
}

.cris-showcase {
    display: grid;

    grid-template-columns:
        0.75fr 1.25fr;

    gap: 60px;

    align-items: center;
}

.cris-core {
    min-height: 430px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

    border:
        1px solid var(--border);

    border-radius: 22px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 102, 255, 0.13),
            transparent 55%
        ),
        rgba(255,255,255,0.018);
}

.cris-core::before {
    content: "";

    position: absolute;

    inset: 20px;

    border:
        1px solid rgba(0,195,255,0.06);

    border-radius: 50%;
}

.core-circle {
    width: 185px;
    height: 185px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(0,195,255,0.22);

    border-radius: 50%;

    box-shadow:
        0 0 60px rgba(0,102,255,0.13);

    animation:
        corePulse 4s ease-in-out infinite;
}

@keyframes corePulse {

    50% {
        box-shadow:
            0 0 90px rgba(0,102,255,0.25);
    }

}

.core-inner {
    width: 120px;
    height: 120px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: white;

    font-size: 50px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #0066ff,
            #00c3ff
        );

    box-shadow:
        inset 0 0 30px rgba(255,255,255,0.16);
}

.cris-core > p {
    margin-top: 27px;

    font-size: 24px;

    font-weight: 700;

    letter-spacing: 5px;
}

.cris-core > small {
    margin-top: 5px;

    color: #557195;

    font-size: 8px;

    letter-spacing: 1.7px;
}

.capabilities {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.capability {
    min-height: 205px;

    padding: 26px;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background:
        rgba(255,255,255,0.018);

    transition: 0.3s;
}

.capability:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(0,195,255,0.30);

    background:
        rgba(0,102,255,0.045);
}

.capability-number {
    margin-bottom: 28px;

    color: #3d608b;

    font-size: 10px;

    letter-spacing: 2px;
}

.capability h3 {
    margin-bottom: 10px;

    font-size: 21px;
}

.capability p {
    color: #8197b7;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   ECOSYSTEM
   ========================================================= */

.ecosystem-section {
    border-top:
        1px solid rgba(255,255,255,0.05);
}

.ecosystem-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.ecosystem-card {
    position: relative;

    min-height: 285px;

    padding: 27px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(10, 26, 58, 0.60),
            rgba(5, 10, 25, 0.30)
        );

    transition: 0.35s;
}

.ecosystem-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(0,195,255,0.25);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.20);
}

.large-card {
    grid-row: span 2;

    min-height: 585px;

    background:
        radial-gradient(
            circle at 50% 60%,
            rgba(0,102,255,0.15),
            transparent 50%
        ),
        rgba(5, 13, 32, 0.65);
}

.card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.card-index {
    color: #456284;

    font-size: 9px;

    letter-spacing: 2px;
}

.card-status {
    padding: 4px 8px;

    color: #49cfff;

    border:
        1px solid rgba(0,195,255,0.20);

    border-radius: 4px;

    font-size: 7px;

    letter-spacing: 1.5px;
}

.ecosystem-icon {
    width: 49px;
    height: 49px;

    margin-top: 57px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: #6bd7ff;

    font-size: 22px;

    background:
        rgba(0,153,255,0.08);

    border:
        1px solid rgba(0,195,255,0.13);
}

.ecosystem-card h3 {
    margin-top: 21px;

    font-size: 24px;
}

.ecosystem-card p {
    max-width: 290px;

    margin-top: 10px;

    color: #8197b7;

    font-size: 14px;

    line-height: 1.7;
}

.large-card .ecosystem-icon {
    width: 90px;
    height: 90px;

    margin-top: 150px;

    font-size: 40px;

    border-radius: 50%;

    box-shadow:
        0 0 55px rgba(0,102,255,0.13);
}

.large-card h3 {
    font-size: 35px;
}

.tech-line {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan),
            transparent
        );

    opacity: 0.5;
}


/* =========================================================
   VISION
   ========================================================= */

.vision-section {
    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    border-top:
        1px solid rgba(255,255,255,0.05);

    border-bottom:
        1px solid rgba(255,255,255,0.05);
}

.vision-background {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(70, 45, 220, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 15% 60%,
            rgba(0, 130, 255, 0.13),
            transparent 30%
        );
}

.vision-content {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin: auto;
}

.vision-content h2 {
    max-width: 850px;
}

.vision-content > p {
    max-width: 680px;

    margin-top: 28px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}

.vision-values {
    max-width: 820px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    margin-top: 55px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    overflow: hidden;

    background: var(--border);
}

.vision-values div {
    padding: 25px;

    background:
        rgba(3,7,19,0.90);
}

.vision-values strong {
    display: block;

    color: #68caff;

    font-size: 12px;

    letter-spacing: 2px;
}

.vision-values span {
    display: block;

    margin-top: 8px;

    color: #7288a8;

    font-size: 12px;
}


/* =========================================================
   EXPERIENCES
   ========================================================= */

.experiences-section {
    border-bottom:
        1px solid rgba(255,255,255,0.05);
}

.testimonial-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 17px;
}

.testimonial-card,
.experience-panel {
    min-height: 330px;

    padding: 35px;

    border:
        1px solid var(--border);

    border-radius: 17px;

    background:
        rgba(255,255,255,0.018);
}

.quote {
    color: #318fff;

    font-family: Georgia, serif;

    font-size: 65px;

    line-height: 0.8;
}

.testimonial-card > p {
    max-width: 480px;

    margin-top: 27px;

    color: #b2c1d8;

    font-size: 19px;

    line-height: 1.7;
}

.testimonial-user {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 40px;
}

.avatar {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: white;

    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--violet)
        );
}

.testimonial-user strong,
.testimonial-user span {
    display: block;
}

.testimonial-user strong {
    font-size: 13px;
}

.testimonial-user span {
    margin-top: 3px;

    color: #617a9e;

    font-size: 11px;
}

.experience-panel {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(0,102,255,0.14),
            transparent 45%
        ),
        rgba(255,255,255,0.018);
}

.experience-panel > span {
    color: #3f7ab7;

    font-size: 9px;

    letter-spacing: 2px;
}

.experience-panel h3 {
    max-width: 420px;

    margin-top: 55px;

    font-size: 29px;

    line-height: 1.2;
}

.experience-panel p {
    max-width: 440px;

    margin-top: 17px;

    color: #7d94b4;

    font-size: 14px;

    line-height: 1.7;
}

.progress-line {
    width: 100%;

    height: 2px;

    margin-top: 37px;

    background:
        rgba(255,255,255,0.06);
}

.progress-line span {
    display: block;

    width: 68%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

    box-shadow:
        0 0 10px var(--blue);
}


/* =========================================================
   PARTNERS
   ========================================================= */

.partners-section {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    min-height: 680px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.partners-content > p {
    max-width: 580px;

    margin-top: 26px;

    margin-bottom: 35px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

.partners-visual {
    display: flex;

    align-items: center;

    justify-content: center;
}

.network {
    position: relative;

    width: 430px;
    height: 430px;

    display: grid;

    place-items: center;
}

.network-center {
    position: relative;

    z-index: 4;

    width: 100px;
    height: 100px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            #5732d8
        );

    box-shadow:
        0 0 70px rgba(0,102,255,0.30);
}

.network-center span {
    font-size: 38px;

    font-weight: 800;
}

.orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(0,195,255,0.15);
}

.orbit-one {
    width: 250px;
    height: 250px;
}

.orbit-two {
    width: 390px;
    height: 390px;

    border-style: dashed;

    animation:
        networkRotate 30s linear infinite;
}

@keyframes networkRotate {

    to {
        transform:
            rotate(360deg);
    }

}

.network-node {
    position: absolute;

    z-index: 5;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 17px var(--cyan);
}

.node-one {
    top: 48px;
}

.node-two {
    right: 42px;
}

.node-three {
    bottom: 45px;
}

.node-four {
    left: 42px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    position: relative;

    min-height: 690px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    text-align: center;

    border-top:
        1px solid rgba(255,255,255,0.05);
}

.contact-glow {
    position: absolute;

    width: 700px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(0,102,255,0.17),
            rgba(138,43,226,0.08) 45%,
            transparent 70%
        );

    filter: blur(25px);
}

.contact-content {
    position: relative;

    z-index: 3;

    width: min(
        calc(100% - 40px),
        850px
    );
}

.contact-content > p {
    max-width: 600px;

    margin:
        25px auto 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

.domain {
    margin: 36px 0;

    color: #71c9ff;

    font-size: 18px;

    letter-spacing: 2px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    border-top:
        1px solid rgba(255,255,255,0.06);
}

.footer-content {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    min-height: 115px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 11px;
}

.footer-brand .brand-symbol {
    width: 34px;
    height: 34px;

    font-size: 16px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    font-size: 12px;
}

.footer-brand span {
    margin-top: 3px;

    color: #516b90;

    font-size: 7px;

    letter-spacing: 1.3px;
}

.footer-content p {
    color: #4d6485;

    font-size: 11px;
}

.footer-content > a {
    color: #617a9e;

    text-decoration: none;

    font-size: 9px;

    letter-spacing: 1px;
}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .nav-links,
    .nav-button {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu.active {
        display: flex;

        flex-direction: column;

        gap: 20px;

        padding:
            20px 30px 30px;

        background:
            rgba(3,7,19,0.96);

        backdrop-filter:
            blur(20px);

        border-top:
            1px solid rgba(255,255,255,0.06);
    }

    .mobile-menu a {
        color: #c6d5eb;

        text-decoration: none;
    }

    .hero-content {
        grid-template-columns:
            1fr;

        padding-top: 40px;
    }

    .hero-copy {
        text-align: center;
    }

    .status-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        margin: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-tags {
        justify-content: center;
    }

    .hero-visual {
        min-height: 570px;
    }

    .cris-showcase {
        grid-template-columns:
            1fr;
    }

    .ecosystem-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .large-card {
        grid-row: auto;

        min-height: 350px;
    }

    .large-card .ecosystem-icon {
        width: 60px;
        height: 60px;

        margin-top: 65px;

        font-size: 27px;
    }

    .partners-section {
        grid-template-columns:
            1fr;

        padding:
            120px 0;
    }

    .partners-content {
        text-align: center;
    }

    .partners-content > p {
        margin-left: auto;
        margin-right: auto;
    }

}


@media (max-width: 680px) {

    .navbar {
        width:
            calc(100% - 30px);
    }

    .hero {
        padding:
            115px 15px
            65px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .cris-stage {
        transform:
            scale(0.82);
    }

    .section {
        width:
            calc(100% - 30px);

        padding:
            95px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2,
    .vision-content h2,
    .partners-content h2,
    .contact-content h2 {
        font-size: 39px;

        letter-spacing: -1.7px;
    }

    .capabilities {
        grid-template-columns:
            1fr;
    }

    .ecosystem-grid {
        grid-template-columns:
            1fr;
    }

    .testimonial-grid {
        grid-template-columns:
            1fr;
    }

    .vision-values {
        grid-template-columns:
            1fr;
    }

    .network {
        transform:
            scale(0.75);
    }

    .partners-section {
        width:
            calc(100% - 30px);
    }

    .footer-content {
        padding:
            35px 0;

        flex-direction: column;

        gap: 25px;

        text-align: center;
    }

}
/* =========================================================
   CRECE IA — LANDING V2.2 EXTENSIONS
   ========================================================= */
.statement{max-width:900px;margin:48px auto 0;padding:24px 28px;border-left:2px solid var(--cyan);background:rgba(0,153,255,.045);color:#d9eaff;font-size:clamp(18px,2vw,25px);line-height:1.55;font-style:normal}.statement.big{font-size:clamp(23px,3vw,38px);text-align:center;border-left:0;border-top:1px solid rgba(0,195,255,.18);border-bottom:1px solid rgba(138,43,226,.18)}
.tabbar{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:22px}.tabbar button{border:1px solid var(--border);background:rgba(255,255,255,.025);color:#9fb3d1;padding:12px 17px;border-radius:999px;cursor:pointer;font:inherit}.tabbar button.active,.tabbar button:hover{color:#fff;border-color:rgba(0,195,255,.35);background:rgba(0,102,255,.12)}.tabpanels{border:1px solid var(--border);border-radius:18px;background:var(--glass);min-height:220px}.tab-panel{display:none;padding:38px}.tab-panel.active{display:block}.tab-panel h3{font-size:30px;margin-bottom:12px}.tab-panel p{color:var(--muted);max-width:760px}
.ecosystem-v22{display:grid;grid-template-columns:.7fr 1.3fr;gap:28px;align-items:center}.eco-core{min-height:430px;border:1px solid var(--border);border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;background:radial-gradient(circle,rgba(0,102,255,.18),transparent 62%);box-shadow:0 0 90px rgba(0,102,255,.08)}.eco-core>span{width:110px;height:110px;display:grid;place-items:center;border-radius:50%;font-size:48px;font-weight:900;background:linear-gradient(135deg,var(--blue),var(--cyan));box-shadow:0 0 55px rgba(0,195,255,.2)}.eco-core strong{margin-top:20px;font-size:24px;letter-spacing:2px}.eco-core small{color:#5e789e;letter-spacing:3px}.eco-items{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.eco-items article,.glass-card,.feature-panel{border:1px solid var(--border);border-radius:16px;background:linear-gradient(145deg,rgba(10,26,58,.6),rgba(5,10,25,.35));padding:26px;transition:.3s}.eco-items article:hover,.glass-card:hover,.feature-panel:hover{transform:translateY(-4px);border-color:rgba(0,195,255,.28)}.eco-items b,.glass-card b{display:block;color:#67cfff;font-size:10px;letter-spacing:2px;margin-bottom:8px}.eco-items span{color:#8da3c4;font-size:13px}
.compact-section{padding-top:90px;padding-bottom:90px}.flow{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap}.flow span{padding:12px 15px;border:1px solid var(--border);border-radius:9px;background:rgba(255,255,255,.025);color:#cfe1fa;font-size:11px;letter-spacing:1px}.flow i{font-style:normal;color:var(--cyan)}.path-flow{justify-content:flex-start;margin-top:48px}.split-panels{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}.feature-panel{min-height:300px}.feature-panel small{color:#4da8ff;letter-spacing:2px}.feature-panel h3{font-size:32px;margin:38px 0 14px}.feature-panel p,.glass-card p{color:var(--muted);line-height:1.75}.three-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}.glass-card h3{font-size:25px;margin-bottom:12px}.mini-flow{margin-top:28px;color:#6ed8ff;font-size:11px;letter-spacing:1px;line-height:1.8}.muted-note{margin-top:20px;font-size:13px}.history-note{max-width:900px;margin:35px auto 0;text-align:center;padding:25px;border:1px solid rgba(138,43,226,.22);border-radius:14px;background:rgba(138,43,226,.045)}.history-note strong,.history-note small{display:block}.history-note small{margin-top:12px;color:#7e92b1}
.economy-zone{background:linear-gradient(180deg,transparent 0%,rgba(18,8,46,.45) 12%,rgba(4,7,22,.96) 50%,rgba(17,7,40,.6) 88%,transparent 100%);border-top:1px solid rgba(138,43,226,.12);border-bottom:1px solid rgba(138,43,226,.12)}.crece-core{display:grid;grid-template-columns:.6fr 1.4fr;gap:35px;align-items:center}.token-core{aspect-ratio:1;max-width:280px;width:100%;margin:auto;border-radius:50%;display:grid;place-items:center;font-size:38px;font-weight:900;letter-spacing:4px;background:radial-gradient(circle at 35% 30%,#814cff,#17317f 45%,#061026 72%);border:1px solid rgba(139,100,255,.4);box-shadow:0 0 90px rgba(107,54,255,.25)}.token-links{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.token-links span{padding:18px;border:1px solid rgba(138,43,226,.2);border-radius:12px;background:rgba(138,43,226,.04);color:#cfc5ff}.timeline{display:grid;grid-template-columns:repeat(5,1fr);gap:1px;border:1px solid var(--border);background:var(--border);border-radius:15px;overflow:hidden}.timeline article{padding:24px;background:#050a19;min-height:220px}.timeline b{color:#745dff}.timeline h3{margin:35px 0 10px;font-size:16px}.timeline p{color:#7d91af;font-size:13px}.legal-note{margin-top:25px;color:#778aa8;font-size:12px;text-align:center}.lab-grid{margin-top:40px}.status-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}.disabled-link{display:inline-block;margin-top:28px;color:#637c9f;border:1px solid var(--border);padding:10px 13px;border-radius:8px;font-size:12px}.cta-trio{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:35px}.closing-brand{margin-top:35px;letter-spacing:4px;color:#7fdfff}.footer-v22{width:min(calc(100% - 40px),var(--max-width));margin:auto;padding:55px 0 35px;display:grid;grid-template-columns:1.3fr repeat(4,1fr);gap:30px}.footer-v22>div:not(.footer-brand){display:flex;flex-direction:column;gap:9px}.footer-v22 b{font-size:10px;color:#7fcfff;letter-spacing:1.5px}.footer-v22 a{font-size:12px;color:#7187a8;text-decoration:none}.footer-v22 a:hover{color:#fff}.footer-bottom{text-align:center;padding:20px;border-top:1px solid rgba(255,255,255,.05);color:#4d6485;font-size:10px}.scroll-indicator{text-decoration:none}
:focus-visible{outline:2px solid var(--cyan);outline-offset:4px}
@media(max-width:1000px){.ecosystem-v22,.crece-core{grid-template-columns:1fr}.eco-core{min-height:350px;max-width:430px;width:100%;margin:auto}.timeline{grid-template-columns:1fr}.timeline article{min-height:auto}.footer-v22{grid-template-columns:repeat(2,1fr)}.status-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:680px){.split-panels,.three-cards,.eco-items,.token-links,.status-grid{grid-template-columns:1fr}.flow{justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap;padding-bottom:12px}.flow span{white-space:nowrap}.flow i{flex:0 0 auto}.tabbar{overflow-x:auto;flex-wrap:nowrap;padding-bottom:8px}.tabbar button{white-space:nowrap}.footer-v22{grid-template-columns:1fr}.feature-panel{min-height:auto}.statement{padding:20px;font-size:18px}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}.reveal{opacity:1!important;transform:none!important}}

/* === V2.3 · CRIS G1 + holographic interaction layer === */
.official-brand{overflow:hidden;background:#020713;border:1px solid rgba(72,194,255,.3);box-shadow:0 0 22px rgba(0,195,255,.18)}
.official-brand img{width:100%;height:100%;object-fit:cover;object-position:50% 28%;transform:scale(1.35);filter:saturate(1.15) contrast(1.08)}
.cris-real{position:absolute;inset:2% 11% 0 11%;z-index:3;display:flex;align-items:flex-end;justify-content:center;pointer-events:none;filter:drop-shadow(0 0 24px rgba(0,195,255,.22))}
.cris-image-shell{position:relative;width:min(78%,470px);height:94%;overflow:hidden;border-radius:44% 44% 18% 18%/16% 16% 10% 10%;background:radial-gradient(circle at 50% 35%,rgba(0,195,255,.13),transparent 62%);box-shadow:inset 0 0 45px rgba(0,195,255,.08)}
.cris-image-shell:before{content:"";position:absolute;inset:0;z-index:2;background:linear-gradient(180deg,rgba(2,7,19,.05) 0%,transparent 58%,rgba(2,7,19,.92) 100%),linear-gradient(90deg,rgba(2,7,19,.55),transparent 16%,transparent 84%,rgba(2,7,19,.55));pointer-events:none}
.cris-image-shell img{width:100%;height:100%;object-fit:cover;object-position:center 39%;mix-blend-mode:screen;filter:contrast(1.18) saturate(1.2) brightness(.93)}
.holo-scan{position:absolute;z-index:5;left:15%;right:15%;height:2px;top:18%;background:linear-gradient(90deg,transparent,#68eaff,transparent);box-shadow:0 0 14px #00c3ff;animation:holoScan 4.5s linear infinite;opacity:.72}
.holo-particles{position:absolute;inset:8% 5%;z-index:4;background-image:radial-gradient(circle,#73e9ff 0 1px,transparent 1.5px);background-size:34px 41px;mask-image:linear-gradient(transparent,#000 22%,#000 75%,transparent);opacity:.22;animation:particleDrift 10s linear infinite}
@keyframes holoScan{0%{transform:translateY(0);opacity:0}10%{opacity:.8}90%{opacity:.55}100%{transform:translateY(410px);opacity:0}}
@keyframes particleDrift{to{background-position:34px -41px}}
.interactive-tags button,.interactive-flow button{font:inherit;color:inherit;border:1px solid rgba(94,214,255,.18);background:rgba(5,20,43,.58);border-radius:999px;padding:8px 12px;cursor:pointer;transition:.25s ease}
.interactive-tags button:hover,.interactive-flow button:hover{transform:translateY(-2px);border-color:rgba(94,214,255,.62);box-shadow:0 0 22px rgba(0,195,255,.13);color:#7cecff}
.interactive-card{cursor:pointer;position:relative;overflow:hidden;transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease}
.interactive-card:hover,.interactive-card:focus-visible{transform:translateY(-5px);border-color:rgba(87,218,255,.5)!important;box-shadow:0 16px 55px rgba(0,105,255,.12),inset 0 0 35px rgba(0,195,255,.035);outline:none}
.interactive-card:after{content:"";position:absolute;inset:-70% -20%;background:linear-gradient(110deg,transparent 42%,rgba(112,232,255,.12) 50%,transparent 58%);transform:translateX(-60%);transition:transform .65s ease;pointer-events:none}
.interactive-card:hover:after{transform:translateX(60%)}
.cris-media-card{position:relative;min-height:470px;padding-top:0!important;overflow:hidden}
.cris-closeup-wrap{position:absolute;inset:0;overflow:hidden;border-radius:inherit;background:#020713}
.cris-closeup-wrap:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,10,28,.06),rgba(0,10,28,.08) 48%,#020713 90%),linear-gradient(90deg,rgba(0,195,255,.08),transparent 35%,transparent 65%,rgba(138,43,226,.09));box-shadow:inset 0 0 80px rgba(0,195,255,.12)}
.cris-closeup-wrap img{width:100%;height:100%;object-fit:cover;object-position:center 24%;filter:contrast(1.12) saturate(1.1) brightness(.8);mix-blend-mode:screen}
.cris-media-card>p,.cris-media-card>small{position:relative;z-index:3}.cris-media-card>p{margin-top:350px!important}
.media-hud{position:absolute;z-index:4;top:22px;left:22px;padding:10px 14px;border:1px solid rgba(76,220,255,.28);border-radius:10px;background:rgba(1,10,29,.62);backdrop-filter:blur(10px);box-shadow:0 0 30px rgba(0,195,255,.08)}
.media-hud span,.media-hud b{display:block}.media-hud span{font-size:9px;letter-spacing:.18em;color:#6bdfff}.media-hud b{font-size:13px;margin-top:4px}
.hub-holo,.radar-holo{padding-top:150px!important;min-height:410px}
.mini-radar{position:absolute;top:24px;right:24px;width:118px;height:118px;border-radius:50%;border:1px solid rgba(80,220,255,.3);background:radial-gradient(circle,rgba(0,195,255,.22) 0 2px,transparent 3px 22%,rgba(0,195,255,.12) 23% 24%,transparent 25% 47%,rgba(0,195,255,.09) 48% 49%,transparent 50%),conic-gradient(from 0deg,rgba(0,195,255,.35),transparent 18%,transparent);box-shadow:0 0 36px rgba(0,195,255,.13);animation:radarSpin 7s linear infinite}
.mini-radar:after{content:"";position:absolute;inset:50% auto auto 50%;width:42%;height:1px;background:#65e8ff;transform-origin:left center;box-shadow:0 0 8px #65e8ff}
.mini-radar i{position:absolute;width:5px;height:5px;border-radius:50%;background:#6ff0ff;box-shadow:0 0 9px #00c3ff}.mini-radar i:nth-child(1){left:26%;top:35%}.mini-radar i:nth-child(2){left:68%;top:28%}.mini-radar i:nth-child(3){left:60%;top:68%}.radar-two{animation-duration:5s;filter:hue-rotate(32deg)}
@keyframes radarSpin{to{transform:rotate(360deg)}}
.card-action{display:inline-block;margin-top:18px;color:#72e8ff;font-size:12px;letter-spacing:.06em}
.interactive-flow{align-items:center}.interactive-flow i{opacity:.55}.interactive-flow button{border-radius:10px;padding:10px 14px}
.info-backdrop{position:fixed;inset:0;background:rgba(0,4,14,.55);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:.28s;z-index:998}
.info-drawer{position:fixed;right:22px;bottom:22px;width:min(430px,calc(100vw - 44px));padding:28px;border:1px solid rgba(83,221,255,.28);border-radius:20px;background:linear-gradient(145deg,rgba(5,16,40,.96),rgba(11,8,36,.96));box-shadow:0 24px 80px rgba(0,0,0,.5),0 0 55px rgba(0,195,255,.09);transform:translateY(35px) scale(.97);opacity:0;pointer-events:none;transition:.28s;z-index:999;overflow:hidden}
.info-drawer:before{content:"";position:absolute;inset:0;background:linear-gradient(110deg,transparent,rgba(0,195,255,.06),transparent);pointer-events:none}.info-drawer.open{transform:none;opacity:1;pointer-events:auto}.info-backdrop.open{opacity:1;pointer-events:auto}
.info-close{position:absolute;right:16px;top:12px;background:none;border:0;color:#bdefff;font-size:28px;cursor:pointer}.info-kicker{font-size:10px;letter-spacing:.18em;color:#64e5ff}.info-drawer h3{font-size:26px;margin:10px 0 12px}.info-drawer p{color:#aebbd2;line-height:1.7}.info-go{margin-top:18px;border:1px solid rgba(85,220,255,.35);background:linear-gradient(90deg,rgba(0,102,255,.18),rgba(0,195,255,.12));color:#dffaff;border-radius:10px;padding:11px 15px;cursor:pointer}
@media(max-width:900px){.cris-real{inset:4% 4% 0}.cris-image-shell{width:72%;height:92%}.cris-media-card{min-height:390px}.cris-media-card>p{margin-top:285px!important}.hub-holo,.radar-holo{padding-top:135px!important}}
@media(prefers-reduced-motion:reduce){.holo-scan,.holo-particles,.mini-radar{animation:none!important}}

/* =========================================================
   CRECE IA — LANDING V2.4 · STORYBOARD INTEGRATION
   Approved visual assets + channel access + CRIS microdemo
   ========================================================= */

/* Keep the existing holographic hero and add the approved storyboard as a cinematic chapter plate. */
.hero{
    display:block;
    min-height:auto;
}
.hero-content{
    min-height:calc(100vh - 180px);
}
.storyboard-frame{
    position:relative;
    overflow:hidden;
    margin:0;
    border:1px solid rgba(103,211,255,.20);
    border-radius:22px;
    background:#020713;
    box-shadow:
        0 26px 80px rgba(0,0,0,.38),
        0 0 54px rgba(0,153,255,.07);
}
.storyboard-frame::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;
    border-radius:inherit;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.025);
}
.storyboard-frame img{
    display:block;
    width:100%;
    height:auto;
    object-fit:contain;
    background:#020713;
}
.storyboard-hero-frame{
    width:min(calc(100% - 40px),var(--max-width));
    margin:18px auto 0;
    border-radius:26px;
}
.storyboard-hero-frame img{
    width:100%;
}
.scroll-indicator{
    position:relative;
    bottom:auto;
    left:auto;
    transform:none;
    width:max-content;
    margin:28px auto 0;
}

/* Section intro grid: live HTML copy remains functional, approved art provides the visual narrative. */
.section-intro-grid{
    display:grid;
    grid-template-columns:minmax(0,1.08fr) minmax(280px,.72fr);
    gap:46px;
    align-items:center;
    margin-bottom:64px;
}
.section-intro-grid > .section-heading{
    margin-bottom:0;
}
.section-intro-grid > .storyboard-frame{
    justify-self:end;
    width:min(100%,520px);
}
.section-intro-grid > .storyboard-frame img{
    max-height:540px;
    object-fit:contain;
}

.telegram-button{
    border-color:rgba(57,191,255,.34);
    color:#dff8ff;
}
.telegram-button:hover{
    box-shadow:0 0 30px rgba(0,195,255,.12);
}

/* CRIS microexperience */
.cris-demo-section{
    padding-top:90px;
    padding-bottom:110px;
}
.cris-demo-shell{
    position:relative;
    overflow:hidden;
    max-width:980px;
    margin:auto;
    padding:30px;
    border:1px solid rgba(83,221,255,.20);
    border-radius:22px;
    background:
        radial-gradient(circle at 85% 12%,rgba(114,68,255,.13),transparent 34%),
        radial-gradient(circle at 12% 90%,rgba(0,195,255,.10),transparent 34%),
        linear-gradient(145deg,rgba(7,21,50,.78),rgba(4,9,24,.82));
    box-shadow:0 30px 90px rgba(0,0,0,.30);
}
.cris-demo-shell::after{
    content:"";
    position:absolute;
    inset:-50% -15%;
    pointer-events:none;
    background:linear-gradient(110deg,transparent 42%,rgba(99,225,255,.055) 50%,transparent 58%);
    transform:translateX(-45%);
    animation:demoSheen 9s ease-in-out infinite;
}
@keyframes demoSheen{50%{transform:translateX(45%)}}
.demo-status{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    gap:9px;
    color:#6fe9ff;
    font-size:10px;
    font-weight:700;
    letter-spacing:.16em;
}
.demo-status span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#00d9a5;
    box-shadow:0 0 12px #00d9a5;
}
.demo-suggestions{
    position:relative;
    z-index:1;
    display:flex;
    gap:9px;
    flex-wrap:wrap;
    margin:24px 0;
}
.demo-suggestions button{
    border:1px solid rgba(113,204,255,.18);
    border-radius:999px;
    padding:9px 13px;
    color:#a9c8e7;
    background:rgba(255,255,255,.025);
    cursor:pointer;
}
.demo-suggestions button:hover,
.demo-suggestions button:focus-visible{
    color:#fff;
    border-color:rgba(103,225,255,.55);
    background:rgba(0,153,255,.09);
}
.cris-demo-form,
.cris-demo-output,
.demo-actions,
.demo-disclaimer{
    position:relative;
    z-index:1;
}
.cris-demo-form label{
    display:block;
    margin-bottom:10px;
    color:#dfeeff;
    font-weight:650;
}
.demo-input-row{
    display:grid;
    grid-template-columns:1fr auto;
    gap:10px;
}
.demo-input-row input{
    width:100%;
    min-height:52px;
    padding:0 16px;
    border:1px solid rgba(125,185,255,.18);
    border-radius:10px;
    color:#eff8ff;
    background:rgba(0,7,20,.76);
    font:inherit;
}
.demo-input-row input::placeholder{color:#607796}
.cris-demo-output{
    margin-top:18px;
    padding:20px 22px;
    border-left:2px solid #00c3ff;
    border-radius:0 12px 12px 0;
    background:rgba(0,153,255,.055);
}
.cris-demo-output strong{
    display:block;
    margin-bottom:7px;
    color:#71e8ff;
    font-size:11px;
    letter-spacing:.14em;
}
.cris-demo-output p{
    color:#c5d4e9;
    line-height:1.75;
}
.demo-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:18px;
}
.demo-disclaimer{
    display:block;
    margin-top:17px;
    color:#617795;
    line-height:1.6;
}
.pending-link{opacity:.76}

/* Web / Telegram channel bridge */
.channel-section{
    padding-top:95px;
    padding-bottom:100px;
}
.channel-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}
.channel-card{
    min-height:300px;
    padding:30px;
    border:1px solid var(--border);
    border-radius:18px;
    background:linear-gradient(145deg,rgba(8,24,54,.72),rgba(5,10,25,.54));
}
.channel-card.telegram-channel{
    border-color:rgba(73,211,255,.25);
    box-shadow:inset 0 0 55px rgba(0,195,255,.035);
}
.channel-kicker{
    color:#63dcff;
    font-size:10px;
    font-weight:750;
    letter-spacing:.18em;
}
.channel-card h3{
    margin:42px 0 12px;
    color:#fff;
    font-size:32px;
}
.channel-card p{
    max-width:520px;
    color:var(--muted);
    line-height:1.75;
}
.channel-card .primary-button,
.channel-card .disabled-link{
    margin-top:28px;
}
.whitepaper-link{
    text-decoration:none;
    border:1px solid rgba(87,218,255,.26);
    border-radius:9px;
    padding:10px 13px;
    background:rgba(0,153,255,.05);
}
.whitepaper-link:hover{color:#fff;border-color:rgba(87,218,255,.55)}

/* Final approved CTA image + live buttons remain separate and functional. */
.contact-section{
    min-height:auto;
    padding:110px 20px;
}
.contact-layout{
    position:relative;
    z-index:3;
    width:min(100%,var(--max-width));
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(320px,.72fr);
    align-items:center;
    gap:48px;
}
.contact-layout .contact-content{
    width:auto;
    text-align:left;
}
.contact-layout .contact-content > p{
    margin-left:0;
    margin-right:0;
}
.contact-layout .cta-trio{
    justify-content:flex-start;
}
.contact-layout > .storyboard-frame{
    width:min(100%,430px);
    justify-self:end;
}
.contact-layout > .storyboard-frame img{
    max-height:720px;
    object-fit:contain;
}

/* Accessibility state for the existing tabs. */
.tab-panel[hidden]{display:none!important}
.tabbar [role="tab"][aria-selected="true"]{
    color:#fff;
    border-color:rgba(0,195,255,.35);
    background:rgba(0,102,255,.12);
}

@media(max-width:1000px){
    .hero-content{min-height:auto}
    .section-intro-grid{
        grid-template-columns:1fr;
        gap:28px;
    }
    .section-intro-grid > .storyboard-frame{
        justify-self:center;
        width:min(100%,680px);
    }
    .channel-grid,
    .contact-layout{
        grid-template-columns:1fr;
    }
    .contact-layout .contact-content{
        text-align:center;
    }
    .contact-layout .contact-content > p{
        margin-left:auto;
        margin-right:auto;
    }
    .contact-layout .cta-trio{justify-content:center}
    .contact-layout > .storyboard-frame{justify-self:center}
}

@media(max-width:680px){
    .storyboard-hero-frame{
        width:calc(100% - 30px);
        border-radius:18px;
    }
    .section-intro-grid{margin-bottom:42px}
    .section-intro-grid > .storyboard-frame{border-radius:16px}
    .cris-demo-shell{padding:20px}
    .demo-input-row{grid-template-columns:1fr}
    .demo-input-row .primary-button{width:100%}
    .channel-grid{grid-template-columns:1fr}
    .channel-card{min-height:auto}
    .contact-section{padding:90px 15px}
    .contact-layout{gap:34px}
    .contact-layout > .storyboard-frame{width:min(100%,390px)}
}

.demo-pulse{animation:demoPulse .45s ease}
@keyframes demoPulse{50%{box-shadow:inset 0 0 35px rgba(0,195,255,.10)}}

/* V2.4 verification patch: transparent states for links not publicly active yet. */
.disabled-action{opacity:.62;cursor:not-allowed;user-select:none;filter:saturate(.65)}
.domain small{display:block;margin-top:8px;font-size:10px;letter-spacing:.12em;color:rgba(196,218,238,.58);font-weight:500}

/* =========================================================
   CRECE IA — LANDING V2.5 · REVIEW CORRECTIONS
   Visual cleanup + tighter rhythm + real interactions
   ========================================================= */

/* 1. Clearer brand treatment */
.brand{gap:13px}
.brand-symbol.brand-symbol-clear{
    width:52px;
    height:52px;
    flex:0 0 52px;
    border-radius:14px;
    padding:4px;
    background:linear-gradient(145deg,#030815,#06132b);
    border:1px solid rgba(88,213,255,.38);
    box-shadow:0 0 24px rgba(0,195,255,.16), inset 0 0 20px rgba(0,102,255,.06);
}
.brand-symbol.brand-symbol-clear img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    transform:none;
    filter:saturate(1.12) contrast(1.05) brightness(1.06);
    border-radius:10px;
}
.brand-text strong{font-size:18px;letter-spacing:1.2px}
.brand-text span{font-size:8px;letter-spacing:2px;color:#8198bb}
.footer-brand .brand-symbol.brand-symbol-clear{width:58px;height:58px;flex-basis:58px}

/* 2. Replace the "photo pasted in" hero treatment with a native holographic CRIS core. */
.cris-stage{isolation:isolate}
.cris-holo-core{
    position:absolute;
    z-index:4;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:230px;
    height:230px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid rgba(110,232,255,.44);
    background:
      radial-gradient(circle at 50% 42%,rgba(0,195,255,.16),transparent 52%),
      radial-gradient(circle,rgba(95,63,255,.12),rgba(2,7,19,.15) 67%,transparent 71%);
    box-shadow:
      0 0 45px rgba(0,195,255,.16),
      0 0 105px rgba(95,63,255,.10),
      inset 0 0 45px rgba(0,195,255,.08);
    backdrop-filter:blur(4px);
}
.cris-holo-core::before,
.cris-holo-core::after{
    content:"";
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}
.cris-holo-core::before{inset:-18px;border:1px dashed rgba(102,230,255,.26);animation:holoOrbit 16s linear infinite}
.cris-holo-core::after{inset:25px;border:1px solid rgba(126,92,255,.22);box-shadow:0 0 30px rgba(91,75,255,.10)}
.cris-holo-logo{
    width:104px;
    height:104px;
    border-radius:50%;
    overflow:hidden;
    padding:7px;
    background:#020713;
    border:1px solid rgba(105,230,255,.38);
    box-shadow:0 0 30px rgba(0,195,255,.18);
}
.cris-holo-logo img{width:100%;height:100%;object-fit:contain;border-radius:50%;filter:saturate(1.15) brightness(1.12)}
.cris-holo-core strong{margin-top:17px;font-size:25px;letter-spacing:.18em;color:#e8fbff;text-shadow:0 0 18px rgba(0,195,255,.35)}
.cris-holo-core small{margin-top:6px;font-size:8px;letter-spacing:.25em;color:#68dcff}
@keyframes holoOrbit{to{transform:rotate(360deg)}}

/* 3. Shorter landing: reduce dead air without compressing content. */
.section{padding:88px 0}
.compact-section{padding-top:70px;padding-bottom:70px}
.section-heading{margin-bottom:42px}
.section-heading > p{margin-top:18px}
.section-intro-grid{gap:34px;margin-bottom:38px}
.vision-section{min-height:auto;padding:96px 0}
.contact-section{min-height:auto;padding:96px 18px}
.cris-demo-section{padding-top:78px;padding-bottom:86px}
.path-flow{margin-top:34px}
.feature-panel{min-height:260px}
.three-cards,.split-panels{gap:14px}

/* 4. Clean image presentation: no artificial black gutters around portrait panels. */
.storyboard-frame{
    line-height:0;
    background:transparent;
    border-color:rgba(107,218,255,.24);
    box-shadow:0 18px 58px rgba(0,0,0,.28),0 0 36px rgba(0,153,255,.055);
}
.storyboard-frame img{
    background:transparent;
    border-radius:inherit;
    filter:saturate(1.025) contrast(1.015);
}
.section-intro-grid > .storyboard-frame.fit-tight{
    width:fit-content;
    max-width:100%;
    justify-self:end;
}
.section-intro-grid > .storyboard-frame.fit-tight img{
    width:auto;
    max-width:100%;
    height:auto;
    max-height:520px;
    object-fit:contain;
}
.storyboard-hero-frame.fit-tight{width:min(calc(100% - 40px),var(--max-width))}
.storyboard-hero-frame.fit-tight img{width:100%;max-height:none}
.contact-layout > .storyboard-frame.fit-tight{width:min(100%,560px)}
.contact-layout > .storyboard-frame.fit-tight img{width:100%;height:auto;object-fit:contain}

/* 5. Functional patches over CTA graphics baked into storyboard art. */
.storyboard-hotspot{
    position:absolute;
    z-index:8;
    left:var(--hot-left);
    top:var(--hot-top);
    width:var(--hot-width);
    height:var(--hot-height);
    border-radius:999px;
    text-decoration:none;
    cursor:pointer;
    outline:1px solid transparent;
    background:rgba(0,195,255,0);
    transition:.22s ease;
}
.storyboard-hotspot span{
    position:absolute;
    left:50%;
    bottom:calc(100% + 7px);
    transform:translate(-50%,6px);
    white-space:nowrap;
    padding:6px 9px;
    border:1px solid rgba(89,223,255,.35);
    border-radius:8px;
    background:rgba(2,10,27,.92);
    color:#dffbff;
    font-size:9px;
    letter-spacing:.04em;
    line-height:1.2;
    opacity:0;
    pointer-events:none;
    transition:.2s;
}
.storyboard-hotspot:hover,
.storyboard-hotspot:focus-visible{
    background:rgba(0,195,255,.08);
    outline-color:rgba(90,230,255,.78);
    box-shadow:0 0 22px rgba(0,195,255,.24),inset 0 0 18px rgba(0,195,255,.08);
}
.storyboard-hotspot:hover span,.storyboard-hotspot:focus-visible span{opacity:1;transform:translate(-50%,0)}
.storyboard-live-action{
    position:absolute;
    z-index:7;
    right:12px;
    bottom:12px;
    line-height:1;
}
.storyboard-live-action a{
    display:inline-flex;
    align-items:center;
    min-height:36px;
    padding:0 13px;
    border:1px solid rgba(94,225,255,.42);
    border-radius:999px;
    background:rgba(2,12,31,.88);
    color:#dffbff;
    text-decoration:none;
    font-size:10px;
    font-weight:700;
    letter-spacing:.04em;
    backdrop-filter:blur(10px);
    box-shadow:0 0 18px rgba(0,195,255,.12);
}
.storyboard-live-action a:hover,.storyboard-live-action a:focus-visible{border-color:#68e7ff;background:rgba(0,102,255,.24);outline:none}

/* 6. Strong identity in ecosystem / CRECE spheres. */
.eco-logo-orb{padding:8px!important;overflow:hidden;background:#020713!important}
.eco-logo-orb img{width:100%;height:100%;object-fit:contain;border-radius:50%;filter:saturate(1.15) brightness(1.12)}
.eco-core small{margin-top:5px;color:#78dbff!important}
.token-core{display:flex!important;flex-direction:column;gap:8px;align-items:center;justify-content:center;padding:26px;text-align:center}
.token-logo-orb{width:92px;height:92px;border-radius:50%;overflow:hidden;padding:6px;background:#020713;border:1px solid rgba(122,210,255,.32);box-shadow:0 0 32px rgba(0,195,255,.16)}
.token-logo-orb img{width:100%;height:100%;object-fit:contain;border-radius:50%}
.token-core strong{font-size:28px;letter-spacing:.15em}
.token-core small{font-size:8px;letter-spacing:.22em;color:#9ceaff}

/* 7. Chips now communicate interactivity. */
.info-chip{cursor:help!important;transition:.2s ease!important}
.info-chip:hover,.info-chip:focus-visible{border-color:rgba(100,226,255,.62)!important;color:#eaffff!important;box-shadow:0 0 18px rgba(0,195,255,.10);outline:none}
.info-tooltip{
    position:fixed;
    z-index:1200;
    width:min(320px,calc(100vw - 32px));
    padding:12px 14px;
    border:1px solid rgba(91,226,255,.32);
    border-radius:12px;
    background:linear-gradient(145deg,rgba(4,16,40,.96),rgba(10,7,31,.96));
    box-shadow:0 18px 55px rgba(0,0,0,.38),0 0 26px rgba(0,195,255,.08);
    color:#aebed7;
    font-size:12px;
    line-height:1.55;
    opacity:0;
    transform:translateY(6px);
    pointer-events:none;
    transition:opacity .16s ease,transform .16s ease;
}
.info-tooltip strong{display:block;margin-bottom:4px;color:#7feaff;font-size:11px;letter-spacing:.08em}
.info-tooltip.visible{opacity:1;transform:none}
.timeline article.interactive-card{cursor:help}

/* 8. Whitepaper lateral rotating preview. */
.whitepaper-rail{
    position:fixed;
    z-index:950;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    align-items:center;
    gap:10px;
    pointer-events:none;
}
.whitepaper-rail-teaser,
.whitepaper-rail-panel{pointer-events:auto}
.whitepaper-rail-teaser{
    width:58px;
    min-height:220px;
    padding:10px 7px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:14px;
    border:1px solid rgba(95,225,255,.32);
    border-radius:16px;
    background:linear-gradient(180deg,rgba(5,18,43,.94),rgba(12,7,39,.94));
    box-shadow:0 18px 55px rgba(0,0,0,.34),0 0 28px rgba(0,195,255,.08);
    color:#dffbff;
    cursor:pointer;
    backdrop-filter:blur(12px);
}
.whitepaper-vertical-label{writing-mode:vertical-rl;transform:rotate(180deg);font-size:9px;letter-spacing:.22em;color:#67e5ff}
.whitepaper-quick-title{writing-mode:vertical-rl;transform:rotate(180deg);font-size:10px;line-height:1.25;color:#8fa9ca;max-height:120px;overflow:hidden}
.whitepaper-rail-panel{
    width:min(340px,calc(100vw - 110px));
    padding:18px;
    border:1px solid rgba(95,225,255,.28);
    border-radius:18px;
    background:linear-gradient(145deg,rgba(5,17,42,.98),rgba(12,7,39,.98));
    box-shadow:0 24px 75px rgba(0,0,0,.48),0 0 38px rgba(0,195,255,.08);
    backdrop-filter:blur(14px);
}
.whitepaper-rail-panel[hidden]{display:none}
.whitepaper-rail-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.whitepaper-rail-head span{font-size:9px;letter-spacing:.16em;color:#67e5ff}
.whitepaper-rail-head button,.whitepaper-controls button{border:1px solid rgba(110,220,255,.24);background:rgba(255,255,255,.03);color:#dffaff;border-radius:8px;cursor:pointer}
.whitepaper-rail-head button{width:30px;height:30px;font-size:20px}
.whitepaper-slide{display:none;min-height:176px;padding:16px;border:1px solid rgba(255,255,255,.06);border-radius:13px;background:rgba(255,255,255,.02)}
.whitepaper-slide.active{display:block;animation:wpFade .28s ease}
.whitepaper-slide small{font-size:9px;color:#6b88ae;letter-spacing:.13em}
.whitepaper-slide h3{margin:14px 0 9px;font-size:25px;line-height:1.05}
.whitepaper-slide p{color:#9fb0ca;font-size:12px;line-height:1.65}
.whitepaper-controls{display:flex;gap:8px;margin-top:12px}
.whitepaper-controls button{width:38px;height:34px}
.whitepaper-download{display:inline-flex;align-items:center;justify-content:center;gap:6px;margin-top:14px;padding:8px 16px;min-height:38px;color:#75eaff;text-decoration:none;font-size:13.5px;font-weight:600;line-height:1.3;letter-spacing:.02em;border:1px solid rgba(117,234,255,.28);border-radius:9px;background:rgba(0,160,255,.07);transition:all .2s ease}
.whitepaper-download:hover{color:#fff;border-color:rgba(117,234,255,.75);background:rgba(0,180,255,.18);box-shadow:0 0 16px rgba(0,210,255,.28)}
@keyframes wpFade{from{opacity:.25;transform:translateX(8px)}to{opacity:1;transform:none}}

/* 9. CRIS demo feedback */
.cris-demo-shell.demo-ready{border-color:rgba(95,228,255,.36)}
.cris-demo-output.demo-pulse{animation:demoPulseV25 .45s ease}
@keyframes demoPulseV25{0%{box-shadow:0 0 0 rgba(0,195,255,0)}50%{box-shadow:0 0 32px rgba(0,195,255,.13)}100%{box-shadow:0 0 0 rgba(0,195,255,0)}}

@media(max-width:1000px){
    .section{padding:76px 0}
    .vision-section{padding:82px 0}
    .section-intro-grid{gap:26px}
    .whitepaper-rail{right:10px}
}
@media(max-width:760px){
    .brand-symbol.brand-symbol-clear{width:46px;height:46px;flex-basis:46px}
    .brand-text strong{font-size:16px}
    .section{padding:64px 0}
    .vision-section,.contact-section{padding:72px 14px}
    .section-heading{margin-bottom:32px}
    .section-intro-grid{margin-bottom:30px}
    .section-intro-grid > .storyboard-frame.fit-tight{justify-self:center}
    .storyboard-live-action{right:8px;bottom:8px}
    .storyboard-live-action a{min-height:32px;padding:0 10px;font-size:9px}
    .whitepaper-rail{top:auto;bottom:16px;right:12px;transform:none;align-items:flex-end}
    .whitepaper-rail-teaser{width:auto;min-height:0;height:44px;flex-direction:row;padding:0 12px;border-radius:999px}
    .whitepaper-vertical-label,.whitepaper-quick-title{writing-mode:horizontal-tb;transform:none;max-height:none}
    .whitepaper-quick-title{max-width:130px;white-space:nowrap;text-overflow:ellipsis}
    .whitepaper-rail-panel{width:min(340px,calc(100vw - 24px))}
    .cris-holo-core{width:190px;height:190px}
    .cris-holo-logo{width:88px;height:88px}
}
@media(prefers-reduced-motion:reduce){
    .cris-holo-core::before,.whitepaper-slide.active{animation:none!important}
}


/* =========================================================
   CRECE IA — V2.5 · PORTADA APROBADA / INTEGRACIÓN FINAL
   2026-09-21 · hero aislado, responsive y sin dependencias
   ========================================================= */

/* Header synchronized with the Crece IA Web App */
.navbar{
    width:min(calc(100% - 70px),1540px);
    height:84px;
}
.brand{gap:10px;min-width:250px}
.brand-symbol.brand-symbol-clear{
    width:54px;height:54px;flex:0 0 54px;padding:0;border:0;border-radius:0;
    background:transparent;box-shadow:none;overflow:visible;
}
.brand-symbol.brand-symbol-clear img{
    width:100%;height:100%;object-fit:contain;border-radius:0;filter:drop-shadow(0 0 13px rgba(0,188,255,.25));
}
.brand-text strong{font-size:18px;letter-spacing:.055em;color:#f6f8ff;font-weight:800}
.brand-text strong .brand-ia{color:#25c7ff;font-style:normal}
.brand-text span{margin-top:5px;color:#7690b4;font-size:7.5px;letter-spacing:.24em;font-weight:600}
.nav-links{gap:34px}
.nav-links a{font-size:13px;color:#c8d3e7}
.nav-button{min-width:112px;min-height:42px;display:grid;place-items:center;border-radius:10px;border-color:rgba(26,179,255,.34);background:linear-gradient(135deg,rgba(5,63,125,.22),rgba(57,20,151,.13))}
header.scrolled{background:rgba(2,8,21,.82)}

/* Hero shell */
.hero-v25{
    position:relative;min-height:100vh;overflow:hidden;isolation:isolate;
    padding:118px 0 84px;
    background:
      radial-gradient(circle at 73% 43%,rgba(13,105,255,.15),transparent 24%),
      radial-gradient(circle at 90% 23%,rgba(111,35,246,.16),transparent 30%),
      linear-gradient(105deg,#03101f 0%,#020a16 46%,#08091e 71%,#160b2c 100%);
}
.hero-v25::before{
    content:"";position:absolute;inset:0;z-index:0;pointer-events:none;opacity:.58;
    background-image:linear-gradient(rgba(63,128,203,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(63,128,203,.06) 1px,transparent 1px);
    background-size:60px 60px;
    mask-image:linear-gradient(to bottom,black 10%,rgba(0,0,0,.84) 74%,transparent 100%);
}
.hero-v25::after{
    content:"";position:absolute;inset:0;z-index:0;pointer-events:none;
    background:linear-gradient(90deg,rgba(0,0,0,0) 0%,rgba(0,14,35,.05) 46%,rgba(65,22,130,.055) 100%);
}
.hero-v25__mesh{position:absolute;z-index:0;inset:0;pointer-events:none;background:radial-gradient(circle at 54% 58%,rgba(0,194,255,.035),transparent 37%)}
.hero-v25__container{
    position:relative;z-index:5;width:min(calc(100% - 70px),1540px);min-height:calc(100vh - 202px);margin:0 auto;
    display:grid;grid-template-columns:minmax(0,.47fr) minmax(0,.53fr);align-items:center;gap:24px;
}
.hero-v25__content{position:relative;z-index:10;padding:22px 0 92px;align-self:center}
.hero-v25__eyebrow{
    width:max-content;max-width:100%;min-height:39px;padding:0 17px;display:flex;align-items:center;gap:10px;
    border:1px solid rgba(24,151,255,.33);border-radius:999px;background:rgba(0,91,174,.08);
    color:#a6c8f1;font-size:9px;font-weight:700;letter-spacing:.20em;margin-bottom:31px;box-shadow:inset 0 0 24px rgba(0,134,255,.025)
}
.hero-v25__eyebrow span{width:8px;height:8px;border-radius:50%;background:#16d7ff;box-shadow:0 0 13px #00c9ff}
.hero-v25__title{max-width:710px;color:#fbfbfd;font-size:clamp(58px,5.25vw,88px);font-weight:850;line-height:.95;letter-spacing:-.048em;text-wrap:balance}
.hero-v25__title span{display:inline;background:linear-gradient(90deg,#48a3ff 0%,#58dcff 51%,#8a73ff 100%);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero-v25__description{max-width:655px;margin-top:27px;color:#a9b9d0;font-size:clamp(15px,1.12vw,18px);line-height:1.72;font-weight:400}
.hero-v25__actions{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:29px}
.hero-v25__button{
    min-height:70px;padding:0 27px;display:flex;align-items:center;gap:14px;border-radius:19px;text-decoration:none;font-size:16px;font-weight:700;transition:.22s ease;
}
.hero-v25__button b{margin-left:auto;font-size:23px;font-weight:400}
.hero-v25__button--primary{min-width:305px;color:#fff;border:1px solid #63dcff;background:linear-gradient(100deg,#05bce9 0%,#0d67ff 51%,#762cff 100%);box-shadow:0 0 0 2px rgba(50,211,255,.10),0 0 28px rgba(41,91,255,.29),inset 0 0 24px rgba(255,255,255,.10)}
.hero-v25__button--secondary{min-width:318px;color:#e8eefb;border:1px solid rgba(44,155,255,.46);background:rgba(3,21,48,.58);box-shadow:inset 0 0 25px rgba(0,135,255,.025)}
.hero-v25__button:hover{transform:translateY(-2px);filter:brightness(1.08)}
.hero-v25__button-icon{width:31px;height:31px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
.hero-v25__button--primary .hero-v25__button-icon{filter:drop-shadow(0 0 5px rgba(255,255,255,.55))}
.hero-v25__stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));max-width:690px;margin-top:41px}
.hero-v25__stats>div{position:relative;min-height:66px;padding:0 25px 0 64px;display:flex;flex-direction:column;justify-content:center;border-right:1px solid rgba(122,157,207,.18)}
.hero-v25__stats>div:first-child{padding-left:64px}.hero-v25__stats>div:last-child{border-right:0}
.hero-v25__stat-icon{position:absolute;left:16px;top:6px;width:45px;height:45px;display:grid;place-items:center;border:1px solid rgba(45,144,255,.30);border-radius:50%;color:#79a6ff;font-size:24px;background:radial-gradient(circle,rgba(35,65,184,.27),rgba(7,19,50,.56));box-shadow:0 0 20px rgba(37,83,255,.08)}
.hero-v25__stats strong{font-size:clamp(21px,1.7vw,29px);line-height:1;color:#f7f9ff;font-weight:800;white-space:nowrap}
.hero-v25__stats small{margin-top:7px;color:#7186a8;font-size:7.5px;font-weight:700;letter-spacing:.16em;white-space:nowrap}

/* CRIS composition */
.hero-v25__visual{position:relative;z-index:6;min-height:720px;height:100%;display:grid;place-items:center;align-self:stretch}
.hero-v25__aura{position:absolute;z-index:0;width:min(48vw,760px);aspect-ratio:1;border-radius:50%;background:radial-gradient(circle,rgba(0,203,255,.19) 0%,rgba(12,83,255,.11) 31%,rgba(111,43,245,.075) 52%,transparent 72%);filter:blur(12px)}
.hero-v25__orbit{position:absolute;z-index:1;left:50%;top:48%;border-radius:50%;border:1px solid rgba(44,160,255,.26);transform:translate(-50%,-50%) rotate(-9deg);pointer-events:none;box-shadow:0 0 26px rgba(0,140,255,.04),inset 0 0 25px rgba(76,72,255,.04)}
.hero-v25__orbit::before,.hero-v25__orbit::after{content:"";position:absolute;width:6px;height:6px;border-radius:50%;background:#26d4ff;box-shadow:0 0 12px #26c8ff}
.hero-v25__orbit::before{left:8%;top:29%}.hero-v25__orbit::after{right:10%;bottom:28%;background:#7b53ff;box-shadow:0 0 12px #7b53ff}
.hero-v25__orbit--one{width:min(48vw,760px);height:min(23vw,350px);animation:v25Orbit 22s linear infinite}
.hero-v25__orbit--two{width:min(39vw,620px);height:min(39vw,620px);border-style:dashed;border-color:rgba(69,118,255,.18);animation:v25OrbitReverse 31s linear infinite}
.hero-v25__orbit--three{width:min(31vw,500px);height:min(31vw,500px);border-color:rgba(26,206,255,.22);animation:v25Orbit 37s linear infinite}
.hero-v25__cris{position:absolute;z-index:4;left:50%;top:50%;width:min(37vw,610px);max-height:690px;object-fit:contain;transform:translate(-42%,-49%);filter:drop-shadow(0 22px 35px rgba(0,0,0,.38)) drop-shadow(0 0 17px rgba(0,167,255,.13));animation:v25CrisFloat 6.2s ease-in-out infinite}
.hero-v25__hologram{position:absolute;z-index:7;left:27.5%;top:44%;width:128px;height:128px;display:grid;place-items:center;border-radius:50%;background:radial-gradient(circle,rgba(46,224,255,.26),rgba(15,93,255,.11) 44%,transparent 70%);box-shadow:0 0 34px rgba(24,180,255,.30),inset 0 0 24px rgba(26,221,255,.16);animation:v25HoloPulse 3.2s ease-in-out infinite}
.hero-v25__hologram::before,.hero-v25__hologram::after{content:"";position:absolute;border-radius:50%;border:1px solid rgba(54,201,255,.40)}
.hero-v25__hologram::before{inset:-12px;border-style:dashed;animation:v25Spin 13s linear infinite}.hero-v25__hologram::after{inset:10px;box-shadow:0 0 24px rgba(38,174,255,.18)}
.hero-v25__hologram span{position:absolute;width:168%;height:58%;border:1px solid rgba(48,135,255,.20);border-radius:50%;transform:rotate(-10deg)}
.hero-v25__hologram img{position:relative;z-index:2;width:76px;height:76px;object-fit:contain;filter:drop-shadow(0 0 10px rgba(60,218,255,.65))}
.hero-v25__identity{position:absolute;z-index:8;left:56%;bottom:8.5%;transform:translateX(-50%);width:290px;min-height:138px;padding:20px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;border:1px solid rgba(64,166,255,.34);border-radius:50% 50% 28px 28px/32% 32% 26px 26px;background:radial-gradient(circle at 50% 0%,rgba(31,109,255,.17),transparent 52%),linear-gradient(180deg,rgba(5,27,65,.96),rgba(3,12,35,.95));box-shadow:0 0 37px rgba(46,80,255,.17),inset 0 0 32px rgba(0,164,255,.07);backdrop-filter:blur(12px)}
.hero-v25__identity::after{content:"";position:absolute;left:50%;bottom:-34px;width:175%;height:72px;transform:translateX(-50%);border:1px solid rgba(57,154,255,.28);border-radius:50%;box-shadow:0 0 26px rgba(31,98,255,.16),inset 0 0 25px rgba(17,191,255,.06)}
.hero-v25__identity small{color:#6e86ad;font-size:9px;font-weight:750;letter-spacing:.27em}.hero-v25__identity strong{margin-top:5px;color:#fff;font-size:30px;line-height:1;letter-spacing:.07em}.hero-v25__identity span{margin-top:11px;color:#32d5f7;font-size:8.5px;font-weight:750;line-height:1.45;letter-spacing:.20em}

/* Floating cards */
.hero-v25__card{position:absolute;z-index:9;min-width:205px;min-height:104px;padding:14px 17px;display:flex;align-items:center;gap:13px;text-align:left;border:1px solid rgba(53,157,255,.36);border-radius:13px;color:#eaf2ff;background:linear-gradient(135deg,rgba(6,28,67,.88),rgba(17,12,58,.80));box-shadow:0 14px 34px rgba(0,0,0,.23),inset 0 0 26px rgba(0,142,255,.035);backdrop-filter:blur(12px);cursor:pointer;transition:.2s ease;font:inherit}
.hero-v25__card:hover,.hero-v25__card:focus-visible{transform:translateY(-3px);border-color:rgba(69,215,255,.58);box-shadow:0 16px 38px rgba(0,0,0,.28),0 0 28px rgba(41,114,255,.12);outline:0}
.hero-v25__card-icon{width:48px;height:48px;display:grid;place-items:center;flex:0 0 auto;border:1px solid rgba(75,140,255,.26);border-radius:10px;background:radial-gradient(circle,rgba(59,71,230,.30),rgba(4,23,56,.72));color:#82a4ff;box-shadow:inset 0 0 18px rgba(66,74,255,.08)}
.hero-v25__card-icon svg{width:30px;height:30px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.hero-v25__card b{display:block;color:#dfe8fa;font-size:13px;line-height:1.15;letter-spacing:.025em}.hero-v25__card small{display:block;margin-top:7px;color:#afbdd2;font-size:11px;line-height:1.25}
.hero-v25__card--learning{left:4%;top:13%}.hero-v25__card--agents{right:1%;top:12%}.hero-v25__card--creation{left:5%;bottom:19%}.hero-v25__card--projects{right:0;bottom:22%}

/* Earth foreground + finishing details */
.hero-v25__earth{position:absolute;z-index:2;left:50%;bottom:-8px;width:max(100%,1700px);height:auto;transform:translateX(-50%);pointer-events:none;user-select:none;opacity:.96;filter:saturate(1.05) contrast(1.04) drop-shadow(0 -10px 27px rgba(0,105,255,.10))}
.hero-v25__quote{position:absolute;z-index:8;right:max(58px,calc((100vw - 1540px)/2 + 25px));bottom:38px;text-align:right;color:#c3c9d8;font-size:12px;line-height:1.28;font-style:italic;text-shadow:0 2px 7px #000}
.hero-v25__quote b{display:block;margin-top:8px;color:#fff;font-size:20px;font-weight:500;font-family:"Segoe Script","Brush Script MT",cursive}
.hero-v25__scroll{position:absolute;z-index:9;left:50%;bottom:24px;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:8px;color:#7f91ae;text-decoration:none;font-size:7.5px;font-weight:700;letter-spacing:.24em}
.hero-v25__scroll i{width:42px;height:42px;display:grid;place-items:center;border:1px solid rgba(68,165,255,.38);border-radius:50%;color:#b3d9ff;background:rgba(3,15,37,.62);font-style:normal;font-size:16px;letter-spacing:0;box-shadow:0 0 18px rgba(0,118,255,.08);backdrop-filter:blur(8px)}

/* Lateral Whitepaper: same family as approved cover */
.whitepaper-rail{right:20px;z-index:950}.whitepaper-rail-teaser{width:58px;min-height:220px;border-color:rgba(54,178,255,.36);background:linear-gradient(180deg,rgba(3,24,54,.94),rgba(12,9,47,.94));box-shadow:0 15px 50px rgba(0,0,0,.34),0 0 30px rgba(33,109,255,.08)}
.whitepaper-vertical-label{color:#4bdcff;font-size:8.5px;letter-spacing:.20em}.whitepaper-quick-title{display:none}

@keyframes v25CrisFloat{0%,100%{transform:translate(-42%,-49%)}50%{transform:translate(-42%,calc(-49% - 7px))}}
@keyframes v25Orbit{from{transform:translate(-50%,-50%) rotate(-9deg)}to{transform:translate(-50%,-50%) rotate(351deg)}}
@keyframes v25OrbitReverse{from{transform:translate(-50%,-50%) rotate(12deg)}to{transform:translate(-50%,-50%) rotate(-348deg)}}
@keyframes v25Spin{to{transform:rotate(360deg)}}
@keyframes v25HoloPulse{0%,100%{filter:brightness(1);transform:scale(1)}50%{filter:brightness(1.15);transform:scale(1.025)}}

@media(max-width:1300px){
    .navbar,.hero-v25__container{width:min(calc(100% - 44px),1240px)}
    .nav-links{gap:25px}.brand{min-width:220px}
    .hero-v25__title{font-size:clamp(54px,5.25vw,70px)}
    .hero-v25__content{padding-bottom:70px}
    .hero-v25__visual{min-height:650px}
    .hero-v25__cris{width:min(39vw,530px);max-height:620px;transform:translate(-40%,-49%)}
    .hero-v25__hologram{left:25%;top:44%;width:110px;height:110px}.hero-v25__hologram img{width:65px;height:65px}
    .hero-v25__card{min-width:178px;min-height:91px;padding:12px}.hero-v25__card-icon{width:41px;height:41px}.hero-v25__card b{font-size:11px}.hero-v25__card small{font-size:10px}
    .hero-v25__card--learning{left:0}.hero-v25__card--agents{right:-1%}.hero-v25__card--creation{left:0}.hero-v25__card--projects{right:-2%}
    .hero-v25__identity{width:250px;min-height:123px;bottom:9%}
    .hero-v25__button--primary{min-width:265px}.hero-v25__button--secondary{min-width:270px}.hero-v25__button{min-height:62px;padding:0 20px;font-size:14px}
    .hero-v25__stats>div{padding-left:53px;padding-right:13px}.hero-v25__stats>div:first-child{padding-left:53px}.hero-v25__stat-icon{left:9px;width:39px;height:39px}
}

@media(max-width:1080px){
    .navbar{width:min(calc(100% - 34px),1040px)}.nav-links{gap:18px}.nav-links a{font-size:12px}.brand{min-width:205px}.nav-button{min-width:96px}
    .hero-v25__container{width:min(calc(100% - 34px),1040px);grid-template-columns:minmax(0,.49fr) minmax(0,.51fr);gap:12px}
    .hero-v25__title{font-size:clamp(49px,5.3vw,61px)}
    .hero-v25__visual{min-height:610px}.hero-v25__cris{width:min(43vw,495px)}
    .hero-v25__card{min-width:158px}.hero-v25__card--learning{top:12%;left:-1%}.hero-v25__card--agents{top:11%;right:-2%}.hero-v25__card--creation{left:-2%;bottom:20%}.hero-v25__card--projects{right:-4%;bottom:23%}
    .hero-v25__hologram{left:24%;top:44%}
    .hero-v25__identity{left:57%;width:225px}
}

@media(max-width:1000px){
    .hero-v25{min-height:auto;padding:112px 0 92px}
    .hero-v25__container{width:min(calc(100% - 34px),760px);min-height:0;grid-template-columns:1fr;gap:20px;text-align:center}
    .hero-v25__content{padding:0}.hero-v25__eyebrow{margin-left:auto;margin-right:auto}.hero-v25__title,.hero-v25__description{margin-left:auto;margin-right:auto}.hero-v25__actions{justify-content:center}.hero-v25__stats{margin-left:auto;margin-right:auto;text-align:left}
    .hero-v25__visual{min-height:700px;margin-top:10px}.hero-v25__cris{width:min(72vw,575px);transform:translate(-44%,-50%)}
    .hero-v25__card--learning{left:2%;top:15%}.hero-v25__card--agents{right:2%;top:14%}.hero-v25__card--creation{left:2%;bottom:20%}.hero-v25__card--projects{right:1%;bottom:22%}
    .hero-v25__hologram{left:27%;top:45%}.hero-v25__identity{left:55%;bottom:7%}
    .hero-v25__quote{display:none}.hero-v25__earth{width:max(135%,1280px)}
}

@media(max-width:760px){
    .brand{min-width:0}.brand-symbol.brand-symbol-clear{width:46px;height:46px;flex-basis:46px}.brand-text strong{font-size:16px}.brand-text span{font-size:6.5px}.navbar{height:72px;width:calc(100% - 28px)}
    .hero-v25{padding:96px 0 76px}.hero-v25__container{width:min(calc(100% - 26px),620px)}
    .hero-v25__title{font-size:clamp(44px,13.5vw,62px)}.hero-v25__description{font-size:15px;line-height:1.62;margin-top:21px}.hero-v25__actions{gap:11px}.hero-v25__button,.hero-v25__button--primary,.hero-v25__button--secondary{width:100%;min-width:0;min-height:57px;border-radius:15px}
    .hero-v25__stats{grid-template-columns:1fr;margin-top:26px;width:100%;max-width:330px}.hero-v25__stats>div,.hero-v25__stats>div:first-child{min-height:58px;padding:8px 0 8px 62px;border-right:0;border-bottom:1px solid rgba(115,154,205,.14);text-align:left}.hero-v25__stats>div:last-child{border-bottom:0}
    .hero-v25__visual{min-height:590px}.hero-v25__cris{width:min(96vw,500px);max-height:535px;transform:translate(-43%,-49%)}
    .hero-v25__card{min-width:145px;min-height:80px;padding:9px;gap:8px}.hero-v25__card-icon{width:34px;height:34px}.hero-v25__card-icon svg{width:24px;height:24px}.hero-v25__card b{font-size:9.5px}.hero-v25__card small{font-size:8.8px;margin-top:4px}
    .hero-v25__card--learning{left:0;top:12%}.hero-v25__card--agents{right:0;top:14%}.hero-v25__card--creation{left:0;bottom:20%}.hero-v25__card--projects{right:0;bottom:22%}
    .hero-v25__hologram{left:20%;top:45%;width:92px;height:92px}.hero-v25__hologram img{width:55px;height:55px}.hero-v25__identity{left:56%;width:210px;min-height:108px;bottom:7%}.hero-v25__identity strong{font-size:25px}
    .hero-v25__earth{width:1120px;bottom:-4px;opacity:.82}.hero-v25__scroll{display:none}
    .whitepaper-rail{top:auto;right:12px;bottom:12px;transform:none}.whitepaper-rail-teaser{width:auto;min-height:0;height:42px;flex-direction:row;padding:0 12px;border-radius:999px}.whitepaper-vertical-label{writing-mode:horizontal-tb;transform:none}.whitepaper-quick-title{display:none}
}

@media(max-width:520px){
    .hero-v25__visual{min-height:660px}.hero-v25__cris{width:min(112vw,500px);transform:translate(-43%,-48%)}
    .hero-v25__card--learning{top:7%;left:0}.hero-v25__card--agents{top:20%;right:0}.hero-v25__card--creation{left:0;bottom:23%}.hero-v25__card--projects{right:0;bottom:10%}
    .hero-v25__identity{bottom:28%;left:57%;width:190px}.hero-v25__hologram{left:12%;top:43%}
}

@media(prefers-reduced-motion:reduce){.hero-v25__cris,.hero-v25__orbit,.hero-v25__hologram,.hero-v25__hologram::before{animation:none!important}}


/* ==========================================================
   CRECE IA LANDING V2.5 — HERO FIT / COMMUNITY / HOLOGRAM V2
   Ajuste de composición para primera pantalla + brillo futurista
   ========================================================== */
.hero-v25__card--community{left:4.5%;bottom:19%}

/* Más presencia futurista sin recargar el contenido */
.hero-v25__visual::before,
.hero-v25__visual::after{
  content:"";position:absolute;left:51%;top:48%;pointer-events:none;z-index:2;
  border-radius:50%;transform:translate(-50%,-50%) rotate(-10deg);
}
.hero-v25__visual::before{
  width:min(52vw,790px);height:min(24vw,355px);
  border:1.4px solid rgba(47,197,255,.48);
  box-shadow:0 0 14px rgba(39,192,255,.23),0 0 42px rgba(72,78,255,.13),inset 0 0 24px rgba(53,205,255,.08);
  background:linear-gradient(90deg,transparent 0 10%,rgba(41,215,255,.06) 23%,transparent 39% 60%,rgba(116,77,255,.07) 77%,transparent 91%);
}
.hero-v25__visual::after{
  width:min(36vw,550px);height:min(36vw,550px);
  border:1px dotted rgba(77,137,255,.35);
  box-shadow:0 0 22px rgba(40,136,255,.11),inset 0 0 38px rgba(48,123,255,.06);
  animation:v25OrbitReverse 38s linear infinite;
}
.hero-v25__orbit{border-color:rgba(52,183,255,.42);box-shadow:0 0 17px rgba(0,176,255,.13),inset 0 0 28px rgba(82,82,255,.07)}
.hero-v25__orbit--two{border-color:rgba(107,88,255,.31)}
.hero-v25__orbit--three{border-color:rgba(32,220,255,.38)}
.hero-v25__aura{filter:blur(8px);background:radial-gradient(circle,rgba(0,222,255,.23) 0%,rgba(20,99,255,.13) 31%,rgba(120,47,255,.09) 52%,transparent 72%)}

/* Holograma PNG limpio sobre la palma */
.hero-v25__hologram{
  position:absolute;z-index:8;left:23.5%;top:45%;width:clamp(112px,10vw,165px);height:auto;
  display:block;border-radius:0;background:none;box-shadow:none;filter:none;
  animation:v25HoloFloat 4.2s ease-in-out infinite;pointer-events:none;
}
.hero-v25__hologram::before,.hero-v25__hologram::after,.hero-v25__hologram span{display:none!important}
.hero-v25__hologram img{display:block;width:100%;height:auto;object-fit:contain;filter:drop-shadow(0 0 13px rgba(35,212,255,.76)) drop-shadow(0 0 28px rgba(48,95,255,.37))}
@keyframes v25HoloFloat{0%,100%{transform:translateY(0) scale(.98);filter:brightness(1)}50%{transform:translateY(-7px) scale(1.02);filter:brightness(1.12)}}

/* Tierra como horizonte, no como bloque dominante */
.hero-v25__earth{bottom:-355px;width:max(116%,1580px);opacity:.94;filter:saturate(1.07) contrast(1.06) drop-shadow(0 -10px 26px rgba(0,140,255,.16))}

/* FIT de escritorio: toda la propuesta principal entra en la primera pantalla */
@media (min-width:1001px){
  .hero-v25{height:100vh;min-height:640px;max-height:900px;padding:88px 0 26px;}
  .hero-v25__container{width:min(calc(100% - 48px),1500px);height:calc(100vh - 114px);min-height:520px;max-height:786px;grid-template-columns:minmax(0,.48fr) minmax(0,.52fr);gap:18px;align-items:center}
  .hero-v25__content{padding:0 0 34px;align-self:center}
  .hero-v25__eyebrow{min-height:34px;padding:0 15px;margin-bottom:20px;font-size:8px}
  .hero-v25__title{max-width:640px;font-size:clamp(48px,4.5vw,76px);line-height:.91;letter-spacing:-.05em}
  .hero-v25__description{max-width:630px;margin-top:19px;font-size:clamp(13px,1.02vw,16px);line-height:1.5}
  .hero-v25__actions{margin-top:20px;gap:13px;flex-wrap:nowrap}
  .hero-v25__button{min-height:56px;padding:0 20px;border-radius:16px;font-size:14px;gap:10px}
  .hero-v25__button--primary{min-width:238px}.hero-v25__button--secondary{min-width:248px}
  .hero-v25__button-icon{width:25px;height:25px}.hero-v25__button b{font-size:18px}
  .hero-v25__stats{max-width:610px;margin-top:23px}
  .hero-v25__stats>div{min-height:50px;padding:0 14px 0 52px}.hero-v25__stats>div:first-child{padding-left:52px}
  .hero-v25__stat-icon{left:8px;top:5px;width:38px;height:38px;font-size:20px}
  .hero-v25__stats strong{font-size:clamp(17px,1.45vw,23px)}.hero-v25__stats small{margin-top:5px;font-size:6.8px}
  .hero-v25__visual{min-height:0;height:100%;align-self:center}
  .hero-v25__cris{width:min(34vw,550px);max-height:calc(100vh - 155px);transform:translate(-43%,-48%)}
  .hero-v25__identity{left:55.5%;bottom:7.5%;width:238px;min-height:106px;padding:14px}.hero-v25__identity strong{font-size:25px}.hero-v25__identity span{margin-top:7px;font-size:7.3px}.hero-v25__identity small{font-size:7.5px}
  .hero-v25__identity::after{bottom:-26px;height:52px}
  .hero-v25__card{min-width:166px;min-height:82px;padding:10px 12px;gap:9px;border-radius:11px}
  .hero-v25__card-icon{width:38px;height:38px}.hero-v25__card-icon svg{width:25px;height:25px}.hero-v25__card b{font-size:10.5px}.hero-v25__card small{font-size:9px;margin-top:4px}
  .hero-v25__card--learning{left:2%;top:12%}.hero-v25__card--agents{right:0;top:11%}.hero-v25__card--community{left:2%;bottom:18%}.hero-v25__card--projects{right:-1%;bottom:20%}
  .hero-v25__quote{right:34px;bottom:18px;font-size:10px}.hero-v25__quote b{font-size:17px}
  .hero-v25__scroll{bottom:12px}
}

/* Ajuste específico para ventanas 1050–1300 px de ancho o pantallas bajas */
@media (min-width:1001px) and (max-width:1300px){
  .hero-v25{padding-top:78px;padding-bottom:18px}
  .hero-v25__container{width:calc(100% - 34px);height:calc(100vh - 96px);grid-template-columns:minmax(0,.47fr) minmax(0,.53fr);gap:8px}
  .hero-v25__title{font-size:clamp(45px,4.55vw,59px);max-width:530px}
  .hero-v25__description{font-size:13px;max-width:530px;margin-top:16px}
  .hero-v25__actions{margin-top:16px;gap:10px}.hero-v25__button{min-height:50px;font-size:12.5px;padding:0 15px}.hero-v25__button--primary{min-width:200px}.hero-v25__button--secondary{min-width:214px}
  .hero-v25__stats{margin-top:16px;max-width:515px}.hero-v25__stats>div{min-height:44px;padding-left:44px}.hero-v25__stats>div:first-child{padding-left:44px}.hero-v25__stat-icon{width:32px;height:32px;font-size:17px;left:7px}.hero-v25__stats strong{font-size:17px}.hero-v25__stats small{font-size:6px}
  .hero-v25__visual{height:100%;min-height:0}
  .hero-v25__cris{width:min(35vw,480px);max-height:calc(100vh - 120px);transform:translate(-42%,-47%)}
  .hero-v25__hologram{left:21%;top:47%;width:112px}
  .hero-v25__card{min-width:148px;min-height:72px;padding:8px 9px}.hero-v25__card-icon{width:32px;height:32px}.hero-v25__card b{font-size:9px}.hero-v25__card small{font-size:7.8px}
  .hero-v25__card--learning{left:0;top:13%}.hero-v25__card--agents{right:-1%;top:12%}.hero-v25__card--community{left:0;bottom:17%}.hero-v25__card--projects{right:-2%;bottom:19%}
  .hero-v25__identity{width:205px;min-height:88px;bottom:6%;left:56%}.hero-v25__identity strong{font-size:21px}.hero-v25__identity span{font-size:6.2px}.hero-v25__identity::after{bottom:-20px;height:42px}
  .hero-v25__earth{bottom:-375px;width:max(130%,1540px)}
  .hero-v25__quote{display:none}.hero-v25__scroll{bottom:7px}
}

@media (min-width:1001px) and (max-height:760px){
  .hero-v25{min-height:600px;padding-top:72px;padding-bottom:10px}
  .hero-v25__container{height:calc(100vh - 82px);min-height:500px}
  .hero-v25__eyebrow{margin-bottom:14px;min-height:31px}
  .hero-v25__title{font-size:clamp(43px,4.25vw,58px)}
  .hero-v25__description{margin-top:13px;line-height:1.42}
  .hero-v25__actions{margin-top:13px}.hero-v25__button{min-height:47px}
  .hero-v25__stats{margin-top:12px}.hero-v25__stats>div{min-height:41px}
  .hero-v25__cris{width:min(34vw,455px);max-height:calc(100vh - 104px)}
  .hero-v25__hologram{top:47%;width:104px}
  .hero-v25__identity{bottom:5%;min-height:78px}
  .hero-v25__card--learning{top:10%}.hero-v25__card--agents{top:10%}.hero-v25__card--community{bottom:14%}.hero-v25__card--projects{bottom:16%}
  .hero-v25__earth{bottom:-395px}
  .hero-v25__scroll{display:none}
}

@media(max-width:1000px){
  .hero-v25__card--community{left:2%;bottom:20%}
  .hero-v25__hologram{left:22%;top:46%;width:122px}
  .hero-v25__earth{bottom:-270px}
}
@media(max-width:760px){
  .hero-v25__card--community{left:0;bottom:20%}
  .hero-v25__hologram{left:15%;top:46%;width:100px}
  .hero-v25__earth{bottom:-235px}
}
@media(prefers-reduced-motion:reduce){.hero-v25__hologram,.hero-v25__visual::after{animation:none!important}}

/* ==========================================================
   CRECE IA LANDING V2.5 — HERO REFINEMENT V3
   Correcciones finales: Tierra + firma + holograma + CRIS derecha
   + órbitas luminosas + base Saturno + cuatro indicadores.
   ========================================================== */

/* Cuatro indicadores: conserva potencial individual y suma comunidad */
.hero-v25__stats{
  grid-template-columns:repeat(4,minmax(0,1fr));
  max-width:720px;
}
.hero-v25__stats>div{padding-left:55px;padding-right:12px}
.hero-v25__stats>div:first-child{padding-left:55px}
.hero-v25__stats strong{font-size:clamp(16px,1.28vw,22px);letter-spacing:-.02em}
.hero-v25__stats small{font-size:6.6px;letter-spacing:.14em}
.hero-v25__stats>div:nth-child(3) strong{font-size:clamp(13px,1.03vw,17px);letter-spacing:.015em}

/* Escena derecha: desplazar CRIS y su ecosistema visual hacia la derecha */
.hero-v25__visual{overflow:visible}
.hero-v25__cris{
  left:58.5%;
  top:49%;
  width:min(34vw,555px);
  transform:translate(-35%,-48%);
  filter:drop-shadow(0 23px 38px rgba(0,0,0,.42)) drop-shadow(0 0 22px rgba(0,190,255,.22));
}
@keyframes v25CrisFloatV3{
  0%,100%{transform:translate(-35%,-48%)}
  50%{transform:translate(-35%,calc(-48% - 6px))}
}
.hero-v25__cris{animation:v25CrisFloatV3 6.2s ease-in-out infinite}

/* Órbitas mucho más visibles, con mezcla azul/cian/violeta */
.hero-v25__aura{
  left:57%;top:49%;
  width:min(51vw,790px);
  background:radial-gradient(circle,rgba(0,222,255,.29) 0%,rgba(20,99,255,.17) 31%,rgba(120,47,255,.12) 54%,transparent 73%);
  filter:blur(7px);
  transform:translate(-50%,-50%);
}
.hero-v25__orbit{left:57%;top:48.5%;border-width:1.6px}
.hero-v25__orbit--one{
  width:min(52vw,800px);height:min(25vw,370px);
  border-color:rgba(47,214,255,.67);
  box-shadow:0 0 13px rgba(27,202,255,.42),0 0 39px rgba(38,111,255,.19),inset 0 0 25px rgba(59,224,255,.12);
}
.hero-v25__orbit--two{
  width:min(41vw,645px);height:min(41vw,645px);
  border-color:rgba(116,78,255,.48);
  box-shadow:0 0 17px rgba(98,64,255,.27),inset 0 0 31px rgba(95,66,255,.10);
}
.hero-v25__orbit--three{
  width:min(33vw,515px);height:min(33vw,515px);
  border-color:rgba(38,223,255,.53);
  box-shadow:0 0 16px rgba(30,210,255,.23),inset 0 0 26px rgba(44,208,255,.09);
}
.hero-v25__orbit::before,.hero-v25__orbit::after{width:7px;height:7px;box-shadow:0 0 8px currentColor,0 0 18px currentColor}

/* Aros elípticos adicionales detrás de CRIS, más cercanos al boceto */
.hero-v25__visual::before{
  left:57%;top:48%;width:min(56vw,845px);height:min(26vw,390px);
  border:1.8px solid rgba(47,207,255,.62);
  box-shadow:0 0 18px rgba(35,202,255,.34),0 0 54px rgba(76,73,255,.22),inset 0 0 30px rgba(63,220,255,.10);
  background:linear-gradient(90deg,transparent 0 8%,rgba(38,217,255,.08) 19%,transparent 35% 62%,rgba(118,74,255,.10) 78%,transparent 92%);
}
.hero-v25__visual::after{
  left:57%;top:48%;width:min(39vw,590px);height:min(39vw,590px);
  border:1.25px dotted rgba(108,101,255,.52);
  box-shadow:0 0 24px rgba(43,152,255,.20),inset 0 0 42px rgba(71,103,255,.10);
}

/* Holograma: mayor escala y colocado sobre la palma, sin verse como sticker */
.hero-v25__hologram{
  left:40.5%;
  top:47.5%;
  width:clamp(145px,12vw,190px);
  transform-origin:50% 75%;
  filter:drop-shadow(0 0 13px rgba(51,225,255,.50));
}
.hero-v25__hologram img{
  filter:drop-shadow(0 0 10px rgba(75,235,255,.88)) drop-shadow(0 0 30px rgba(55,92,255,.60));
}
@keyframes v25HoloFloat{
  0%,100%{transform:translateY(0) scale(.98);filter:brightness(1.02) drop-shadow(0 0 10px rgba(48,218,255,.35))}
  50%{transform:translateY(-6px) scale(1.025);filter:brightness(1.18) drop-shadow(0 0 17px rgba(73,221,255,.55))}
}

/* Base IDENTIDAD CRIS: borde neón y aros tipo Saturno */
.hero-v25__identity{
  left:66%;
  bottom:8.5%;
  width:245px;
  min-height:105px;
  border:1.5px solid rgba(53,211,255,.72);
  background:radial-gradient(circle at 50% -12%,rgba(35,124,255,.25),transparent 58%),linear-gradient(180deg,rgba(4,29,69,.97),rgba(4,12,38,.96));
  box-shadow:0 0 10px rgba(42,211,255,.32),0 0 30px rgba(39,95,255,.30),0 0 48px rgba(114,48,255,.14),inset 0 0 30px rgba(0,187,255,.12);
}
.hero-v25__identity::before,
.hero-v25__identity::after{
  content:"";position:absolute;left:50%;pointer-events:none;border-radius:50%;transform:translateX(-50%) rotate(-4deg);
}
.hero-v25__identity::before{
  bottom:-30px;width:176%;height:61px;
  border:1.6px solid rgba(49,211,255,.65);
  box-shadow:0 0 13px rgba(33,211,255,.42),0 0 30px rgba(27,93,255,.25),inset 0 0 24px rgba(38,205,255,.10);
}
.hero-v25__identity::after{
  bottom:-43px;width:210%;height:84px;
  border:1.5px solid rgba(126,75,255,.56);
  box-shadow:0 0 13px rgba(113,67,255,.35),0 0 32px rgba(34,118,255,.20),inset 0 0 23px rgba(103,73,255,.08);
  transform:translateX(-50%) rotate(5deg);
}
.hero-v25__identity small{color:#8aa7d4}
.hero-v25__identity strong{text-shadow:0 0 14px rgba(55,210,255,.30)}
.hero-v25__identity span{color:#4be7ff;text-shadow:0 0 10px rgba(54,220,255,.28)}

/* Tarjetas: orbitan la composición sin empujarla hacia el centro */
.hero-v25__card--learning{left:1%;top:12%}
.hero-v25__card--agents{right:-1%;top:12%}
.hero-v25__card--community{left:2%;bottom:20%}
.hero-v25__card--projects{right:-2%;bottom:20%}
.hero-v25__card{border-color:rgba(60,183,255,.52);box-shadow:0 14px 34px rgba(0,0,0,.24),0 0 20px rgba(35,111,255,.08),inset 0 0 26px rgba(0,173,255,.055)}

/* Recuperar horizonte terrestre visible y cierre de marca */
.hero-v25__earth{
  bottom:-390px;
  width:max(118%,1620px);
  opacity:.97;
  filter:saturate(1.12) contrast(1.08) brightness(1.03) drop-shadow(0 -10px 28px rgba(0,153,255,.24));
}
.hero-v25__quote{
  display:block!important;
  right:max(38px,calc((100vw - 1540px)/2 + 20px));
  bottom:18px;
  color:#d9dfec;
  font-size:10px;
  line-height:1.22;
  text-shadow:0 2px 8px #000,0 0 12px rgba(35,119,255,.16);
}
.hero-v25__quote b{
  margin-top:5px;font-size:20px;color:#fff;
  text-shadow:0 0 14px rgba(67,180,255,.20);
}

/* Escritorio habitual */
@media (min-width:1301px){
  .hero-v25__identity{left:66.5%;bottom:8%}
  .hero-v25__hologram{left:40%;top:47%;width:clamp(155px,11vw,190px)}
}

/* Ventanas de escritorio 1001–1300 px: objetivo principal del ajuste */
@media (min-width:1001px) and (max-width:1300px){
  .hero-v25__container{grid-template-columns:minmax(0,.49fr) minmax(0,.51fr)}
  .hero-v25__title{font-size:clamp(43px,4.35vw,57px);max-width:535px}
  .hero-v25__description{max-width:535px}
  .hero-v25__stats{max-width:540px;margin-top:15px}
  .hero-v25__stats>div{min-height:43px;padding-left:38px;padding-right:6px}
  .hero-v25__stats>div:first-child{padding-left:38px}
  .hero-v25__stat-icon{left:4px;top:6px;width:29px;height:29px;font-size:15px}
  .hero-v25__stats strong{font-size:15px}
  .hero-v25__stats>div:nth-child(3) strong{font-size:11.5px}
  .hero-v25__stats small{font-size:5.6px;letter-spacing:.10em;margin-top:4px}
  .hero-v25__visual{transform:translateX(18px)}
  .hero-v25__cris{left:60%;width:min(35vw,475px);max-height:calc(100vh - 110px);transform:translate(-31%,-47%)}
  @keyframes v25CrisFloatV3Small{0%,100%{transform:translate(-31%,-47%)}50%{transform:translate(-31%,calc(-47% - 5px))}}
  .hero-v25__cris{animation:v25CrisFloatV3Small 6.2s ease-in-out infinite}
  .hero-v25__aura,.hero-v25__orbit,.hero-v25__visual::before,.hero-v25__visual::after{left:59%}
  .hero-v25__hologram{left:41%;top:48%;width:145px}
  .hero-v25__identity{left:68%;bottom:8%;width:205px;min-height:88px}
  .hero-v25__identity::before{bottom:-23px;height:46px}.hero-v25__identity::after{bottom:-34px;height:65px}
  .hero-v25__card--learning{left:0;top:11%}.hero-v25__card--agents{right:-2%;top:11%}.hero-v25__card--community{left:0;bottom:17%}.hero-v25__card--projects{right:-3%;bottom:18%}
  .hero-v25__earth{bottom:-315px;width:max(126%,1420px)}
  .hero-v25__quote{display:block!important;right:28px;bottom:13px;font-size:8px}.hero-v25__quote b{font-size:17px}
}

/* Pantallas bajas de escritorio: mantener Tierra y firma visibles */
@media (min-width:1001px) and (max-height:760px){
  .hero-v25{height:100vh;min-height:100vh;max-height:none;padding-top:70px;padding-bottom:8px}
  .hero-v25__container{height:calc(100vh - 78px);min-height:0;max-height:none}
  .hero-v25__content{padding-bottom:12px}
  .hero-v25__title{font-size:clamp(41px,4.05vw,55px)}
  .hero-v25__stats{margin-top:10px}
  .hero-v25__visual{transform:translateX(22px)}
  .hero-v25__cris{left:61%;width:min(34vw,445px);max-height:calc(100vh - 92px)}
  .hero-v25__hologram{left:42%;top:48%;width:132px}
  .hero-v25__identity{left:69%;bottom:8%;min-height:78px}
  .hero-v25__card--learning{top:9%}.hero-v25__card--agents{top:9%}.hero-v25__card--community{bottom:16%}.hero-v25__card--projects{bottom:16%}
  .hero-v25__earth{bottom:-330px;width:max(128%,1380px)}
  .hero-v25__quote{display:block!important;bottom:10px;right:24px}
}

/* Tablet/móvil: conservar cuatro métricas sin forzar una sola línea */
@media(max-width:1000px){
  .hero-v25__stats{grid-template-columns:repeat(2,minmax(0,1fr));max-width:600px}
  .hero-v25__stats>div{border-bottom:1px solid rgba(115,154,205,.14)}
  .hero-v25__stats>div:nth-child(2){border-right:0}
  .hero-v25__stats>div:nth-child(3),.hero-v25__stats>div:nth-child(4){border-bottom:0}
  .hero-v25__stats>div:nth-child(3) strong{font-size:16px}
  .hero-v25__earth{bottom:-285px}
}
@media(max-width:760px){
  .hero-v25__stats{grid-template-columns:1fr;max-width:340px}
  .hero-v25__stats>div{border-right:0!important;border-bottom:1px solid rgba(115,154,205,.14)!important}
  .hero-v25__stats>div:last-child{border-bottom:0!important}
  .hero-v25__quote{display:none!important}
  .hero-v25__earth{bottom:-225px}
}

@media(prefers-reduced-motion:reduce){.hero-v25__cris{animation:none!important}}


/* ==========================================================
   CRECE IA LANDING V2.5 — HERO PRECISION V4
   Calibración visual contra boceto maestro 1672×941.
   Objetivo: mantener proporciones 16:9, respiración, holograma,
   Tierra, firma, órbitas y whitepaper sin perder Comunidad.
   ========================================================== */

/* Cabecera: proporción y respiración más cercanas al boceto */
@media (min-width:1001px){
  .navbar{width:min(calc(100% - 92px),1544px);height:70px}
  .brand{min-width:250px}
  .brand-symbol.brand-symbol-clear{width:48px;height:48px;flex-basis:48px}
  .brand-text strong{font-size:18px}.brand-text span{font-size:7.2px;letter-spacing:.23em}
  .nav-links{gap:29px}.nav-links a{font-size:12.5px}
  .nav-button{min-width:112px;min-height:42px}

  .hero-v25{
    height:100vh;min-height:640px;max-height:none;
    padding:84px 0 0;
  }
  .hero-v25__container{
    width:min(calc(100% - 92px),1544px);
    height:calc(100vh - 84px);min-height:556px;max-height:none;
    grid-template-columns:minmax(0,.47fr) minmax(0,.53fr);
    gap:22px;align-items:start;
  }
  .hero-v25__content{
    align-self:start;padding:20px 0 0;z-index:12;
  }
  .hero-v25__eyebrow{
    min-height:30px;padding:0 14px;margin:0 0 23px;
    font-size:8px;letter-spacing:.19em;
  }
  .hero-v25__eyebrow span{width:7px;height:7px}
  .hero-v25__title{
    max-width:520px;
    font-size:clamp(52px,5.30vw,64px);
    line-height:.95;letter-spacing:-.047em;
  }
  .hero-v25__description{
    max-width:520px;margin-top:20px;
    font-size:14px;line-height:1.58;
  }
  .hero-v25__actions{margin-top:21px;gap:14px;flex-wrap:nowrap}
  .hero-v25__button{min-height:54px;padding:0 18px;border-radius:15px;font-size:13px;gap:10px}
  .hero-v25__button--primary{min-width:226px}.hero-v25__button--secondary{min-width:235px}
  .hero-v25__button-icon{width:25px;height:25px}.hero-v25__button b{font-size:18px}

  /* Cuatro métricas: una sola franja, sin sacrificar el concepto original */
  .hero-v25__stats{
    grid-template-columns:repeat(4,minmax(0,1fr));
    max-width:535px;margin-top:27px;
  }
  .hero-v25__stats>div,
  .hero-v25__stats>div:first-child{
    min-height:48px;padding:0 9px 0 42px;
  }
  .hero-v25__stat-icon{left:5px;top:6px;width:33px;height:33px;font-size:17px}
  .hero-v25__stats strong{font-size:17px;letter-spacing:-.015em}
  .hero-v25__stats>div:nth-child(3) strong{font-size:13px;letter-spacing:.01em}
  .hero-v25__stats small{margin-top:5px;font-size:5.8px;letter-spacing:.105em}

  /* Escena CRIS: escala y posición del boceto, evitando el recorte del borde derecho */
  .hero-v25__visual{
    min-height:0;height:100%;align-self:stretch;overflow:visible;
    transform:none;
  }
  .hero-v25__cris{
    left:53.5%;top:42.5%;
    width:min(31vw,405px);max-height:510px;
    transform:translate(-42%,-43%);
    filter:drop-shadow(0 22px 36px rgba(0,0,0,.38)) drop-shadow(0 0 24px rgba(0,181,255,.22));
    animation:v25CrisFloatV4 6.2s ease-in-out infinite;
  }
  @keyframes v25CrisFloatV4{
    0%,100%{transform:translate(-42%,-43%)}
    50%{transform:translate(-42%,calc(-43% - 6px))}
  }

  /* Centro orbital por detrás de CRIS, como en el boceto */
  .hero-v25__aura{left:48%;top:40%;width:min(47vw,640px);transform:translate(-50%,-50%);filter:blur(6px)}
  .hero-v25__orbit{left:48%;top:40%;border-width:1.5px}
  .hero-v25__orbit--one{width:min(49vw,660px);height:min(22vw,300px);border-color:rgba(53,215,255,.70);box-shadow:0 0 12px rgba(40,214,255,.42),0 0 35px rgba(51,98,255,.20),inset 0 0 24px rgba(63,224,255,.11)}
  .hero-v25__orbit--two{width:min(39vw,525px);height:min(39vw,525px);border-color:rgba(113,81,255,.52);box-shadow:0 0 15px rgba(98,64,255,.25),inset 0 0 30px rgba(95,66,255,.10)}
  .hero-v25__orbit--three{width:min(31vw,420px);height:min(31vw,420px);border-color:rgba(44,226,255,.55);box-shadow:0 0 15px rgba(30,210,255,.23),inset 0 0 25px rgba(44,208,255,.09)}
  .hero-v25__orbit::before,.hero-v25__orbit::after{width:7px;height:7px}

  .hero-v25__visual::before{
    left:48%;top:40%;
    width:min(52vw,705px);height:min(24vw,330px);
    border:1.7px solid rgba(49,207,255,.61);
    box-shadow:0 0 17px rgba(35,202,255,.31),0 0 50px rgba(76,73,255,.20),inset 0 0 28px rgba(63,220,255,.10);
  }
  .hero-v25__visual::after{
    left:48%;top:40%;
    width:min(36vw,485px);height:min(36vw,485px);
    border:1.2px dotted rgba(108,101,255,.50);
    box-shadow:0 0 22px rgba(43,152,255,.18),inset 0 0 40px rgba(71,103,255,.09);
  }

  /* Holograma simplificado: símbolo grande, esfera y órbitas, como el boceto */
  .hero-v25__hologram{
    left:16.5%;top:35.5%;
    width:clamp(124px,11vw,152px);
    background:none;box-shadow:none;filter:none;
    animation:v25HoloFloatV4 4s ease-in-out infinite;
  }
  .hero-v25__hologram img{
    width:100%;height:auto;
    filter:drop-shadow(0 0 10px rgba(74,236,255,.90)) drop-shadow(0 0 30px rgba(49,101,255,.56));
  }
  @keyframes v25HoloFloatV4{
    0%,100%{transform:translateY(0) scale(1);filter:brightness(1.02)}
    50%{transform:translateY(-5px) scale(1.025);filter:brightness(1.14)}
  }

  /* Tarjetas: medidas y posiciones del boceto */
  .hero-v25__card{min-width:164px;min-height:78px;padding:9px 11px;gap:9px;border-radius:11px}
  .hero-v25__card-icon{width:35px;height:35px}.hero-v25__card-icon svg{width:23px;height:23px}
  .hero-v25__card b{font-size:9.5px}.hero-v25__card small{font-size:8.2px;margin-top:4px;line-height:1.18}
  .hero-v25__card--learning{left:-2%;top:11%}
  .hero-v25__card--agents{right:1.5%;top:10.5%}
  .hero-v25__card--community{left:-1%;bottom:24%}
  .hero-v25__card--projects{right:0;bottom:25%}

  /* Identidad CRIS y anillos Saturno: centro inferior de la escena */
  .hero-v25__identity{
    left:51%;bottom:12%;width:214px;min-height:94px;padding:12px;
    border:1.5px solid rgba(58,217,255,.78);
    border-radius:48% 48% 24px 24px/34% 34% 22px 22px;
    box-shadow:0 0 10px rgba(42,211,255,.34),0 0 31px rgba(39,95,255,.31),0 0 48px rgba(114,48,255,.16),inset 0 0 28px rgba(0,187,255,.12);
  }
  .hero-v25__identity small{font-size:6.8px}.hero-v25__identity strong{font-size:23px;margin-top:4px}.hero-v25__identity span{font-size:6.5px;margin-top:6px;line-height:1.38}
  .hero-v25__identity::before{bottom:-24px;width:182%;height:48px;border-width:1.5px;border-color:rgba(53,217,255,.72);box-shadow:0 0 13px rgba(33,211,255,.45),0 0 28px rgba(27,93,255,.26),inset 0 0 22px rgba(38,205,255,.10)}
  .hero-v25__identity::after{bottom:-34px;width:220%;height:68px;border-width:1.5px;border-color:rgba(128,78,255,.62);box-shadow:0 0 13px rgba(113,67,255,.38),0 0 31px rgba(34,118,255,.22),inset 0 0 22px rgba(103,73,255,.08)}

  /* Tierra: el arco empieza cerca del último quinto de la primera pantalla */
  .hero-v25__earth{
    width:max(122%,1445px);bottom:-370px;opacity:.98;
    filter:saturate(1.12) contrast(1.08) brightness(1.05) drop-shadow(0 -9px 26px rgba(0,153,255,.25));
  }

  /* Firma de cierre, visible pero secundaria */
  .hero-v25__quote{
    display:block!important;right:45px;bottom:21px;
    font-size:9px;line-height:1.22;color:#dbe2ef;
  }
  .hero-v25__quote b{font-size:18px;margin-top:5px}
  .hero-v25__scroll{bottom:13px}

  /* Whitepaper: alto y centrado según boceto */
  .whitepaper-rail{right:18px;top:50%;transform:translateY(-46%)}
  .whitepaper-rail-teaser{width:48px;min-height:218px;border-radius:17px}
  .whitepaper-vertical-label{font-size:7.5px;letter-spacing:.18em}
}

/* Ventana típica de pantalla dividida (~1185×674) */
@media (min-width:1001px) and (max-width:1300px){
  .navbar,.hero-v25__container{width:calc(100% - 92px)}
  .hero-v25{padding-top:80px}
  .hero-v25__container{height:calc(100vh - 80px);grid-template-columns:minmax(0,.47fr) minmax(0,.53fr);gap:18px}
  .hero-v25__content{padding-top:18px}
  .hero-v25__eyebrow{margin-bottom:21px}
  .hero-v25__title{font-size:clamp(50px,5.25vw,62px);max-width:500px}
  .hero-v25__description{max-width:495px;font-size:13px;margin-top:18px;line-height:1.52}
  .hero-v25__actions{margin-top:19px;gap:12px}
  .hero-v25__button{min-height:52px;font-size:12.5px;padding:0 16px}.hero-v25__button--primary{min-width:214px}.hero-v25__button--secondary{min-width:225px}
  .hero-v25__stats{max-width:500px;margin-top:24px}.hero-v25__stats>div,.hero-v25__stats>div:first-child{padding-left:39px;padding-right:5px}.hero-v25__stat-icon{width:30px;height:30px;left:4px;top:7px}.hero-v25__stats strong{font-size:15px}.hero-v25__stats>div:nth-child(3) strong{font-size:11.8px}.hero-v25__stats small{font-size:5.2px}

  .hero-v25__cris{left:54%;top:42%;width:min(31vw,370px);max-height:470px}
  .hero-v25__aura,.hero-v25__orbit,.hero-v25__visual::before,.hero-v25__visual::after{left:48%;top:40%}
  .hero-v25__hologram{left:15%;top:35%;width:126px}
  .hero-v25__identity{left:51%;bottom:11%;width:195px;min-height:84px}
  .hero-v25__card{min-width:145px;min-height:69px;padding:8px 9px}.hero-v25__card-icon{width:31px;height:31px}.hero-v25__card b{font-size:8.7px}.hero-v25__card small{font-size:7.3px}
  .hero-v25__card--learning{left:-3%;top:10.5%}.hero-v25__card--agents{right:0;top:10%}.hero-v25__card--community{left:-2%;bottom:23%}.hero-v25__card--projects{right:-1%;bottom:24%}
  .hero-v25__earth{width:max(124%,1420px);bottom:-370px}
  .hero-v25__quote{right:30px;bottom:15px;font-size:7.8px}.hero-v25__quote b{font-size:16px}
  .whitepaper-rail{right:15px}.whitepaper-rail-teaser{width:46px;min-height:205px}
}

/* Pantallas bajas: conservar la composición, no aplastarla */
@media (min-width:1001px) and (max-height:720px){
  .hero-v25{min-height:100vh;padding-top:76px}
  .hero-v25__container{height:calc(100vh - 76px)}
  .hero-v25__content{padding-top:14px}
  .hero-v25__eyebrow{margin-bottom:17px}
  .hero-v25__title{font-size:clamp(47px,5vw,59px)}
  .hero-v25__description{margin-top:15px;line-height:1.47}
  .hero-v25__actions{margin-top:15px}.hero-v25__button{min-height:48px}
  .hero-v25__stats{margin-top:18px}
  .hero-v25__cris{top:41%;width:min(30vw,350px);max-height:445px}
  .hero-v25__hologram{top:34.5%;width:118px}
  .hero-v25__identity{bottom:10%;min-height:78px}
  .hero-v25__card--learning,.hero-v25__card--agents{top:9%}
  .hero-v25__card--community,.hero-v25__card--projects{bottom:22%}
  .hero-v25__earth{bottom:-375px}
  .hero-v25__quote{bottom:12px}
}

@media(prefers-reduced-motion:reduce){.hero-v25__cris,.hero-v25__hologram{animation:none!important}}

/* V4.1 — positional calibration after reference render */
@media (min-width:1001px){
  .hero-v25__content{padding-top:35px}
  .hero-v25__cris{top:39%;width:min(30vw,390px)}
  .hero-v25__hologram{left:14.5%;top:25.5%;width:clamp(180px,14vw,225px)}
  .hero-v25__identity{left:51%;bottom:24%;}
  .hero-v25__card--community{left:-1%;bottom:38%}
  .hero-v25__card--projects{right:0;bottom:38%}
  .hero-v25__earth{bottom:-14vh;width:max(122%,1445px)}
  .hero-v25__quote{bottom:56px}
  .hero-v25__scroll{display:flex!important;bottom:11px}
  .whitepaper-rail{top:37%;transform:translateY(-46%)}
}
@media (min-width:1001px) and (max-width:1300px){
  .hero-v25__content{padding-top:31px}
  .hero-v25__cris{top:38.5%;width:min(30vw,360px)}
  .hero-v25__hologram{left:14%;top:25%;width:180px}
  .hero-v25__identity{left:51%;bottom:23%;}
  .hero-v25__card--community{left:-2%;bottom:37%}
  .hero-v25__card--projects{right:-1%;bottom:37%}
  .hero-v25__earth{bottom:-14vh;width:max(124%,1420px)}
  .hero-v25__quote{bottom:48px}
  .whitepaper-rail{top:37%}
}
@media (min-width:1001px) and (max-height:720px){
  .hero-v25__content{padding-top:28px}
  .hero-v25__cris{top:38%;width:min(29vw,345px)}
  .hero-v25__hologram{top:24.5%;width:172px}
  .hero-v25__identity{bottom:22%;}
  .hero-v25__card--community,.hero-v25__card--projects{bottom:36%}
  .hero-v25__earth{bottom:-14vh}
  .hero-v25__quote{bottom:42px}
  .hero-v25__scroll{display:flex!important;bottom:8px}
}

/* ============================================================
   V5 — ajuste aprobado: CRIS+holograma unificados + escena premium
   Mantiene intactos textos, tarjetas, tierra, firma y métricas V4.
   ============================================================ */
@media (min-width:1101px){
  /* Marca superior: +12.5% de presencia sin alterar el header */
  .brand-symbol.brand-symbol-clear{width:54px;height:54px;flex-basis:54px}
  .brand-text strong{font-size:19px}
  .brand-text span{font-size:7.5px}

  /* El nuevo PNG ya contiene el holograma: se elimina la capa duplicada */
  .hero-v25__hologram{display:none!important}

  /* Centro geométrico de la escena derecha */
  .hero-v25__cris{
    left:50%;top:42%;
    width:min(34vw,455px);max-height:540px;
    transform:translate(-50%,-43%);
    filter:drop-shadow(0 24px 38px rgba(0,0,0,.40)) drop-shadow(0 0 30px rgba(0,196,255,.30));
    animation:v25CrisFloatV5 6.4s ease-in-out infinite;
    z-index:8;
  }
  @keyframes v25CrisFloatV5{
    0%,100%{transform:translate(-50%,-43%)}
    50%{transform:translate(-50%,calc(-43% - 6px))}
  }

  /* Órbitas premium: centro compartido y mayor lectura luminosa */
  .hero-v25__aura,.hero-v25__orbit,.hero-v25__visual::before,.hero-v25__visual::after{left:50%;top:40.5%}
  .hero-v25__aura{width:min(50vw,680px);opacity:.88;filter:blur(5px)}
  .hero-v25__orbit{border-width:2px;opacity:.96}
  .hero-v25__orbit--one{
    width:min(51vw,690px);height:min(23vw,315px);
    border-color:rgba(72,229,255,.90);
    box-shadow:0 0 8px rgba(79,236,255,.85),0 0 24px rgba(39,190,255,.54),0 0 58px rgba(56,79,255,.30),inset 0 0 26px rgba(74,232,255,.18)
  }
  .hero-v25__orbit--two{
    width:min(41vw,550px);height:min(41vw,550px);
    border-color:rgba(137,94,255,.78);
    box-shadow:0 0 10px rgba(145,91,255,.66),0 0 30px rgba(105,66,255,.40),inset 0 0 34px rgba(106,76,255,.16)
  }
  .hero-v25__orbit--three{
    width:min(33vw,445px);height:min(33vw,445px);
    border-color:rgba(56,231,255,.80);
    box-shadow:0 0 9px rgba(55,229,255,.68),0 0 28px rgba(26,187,255,.38),inset 0 0 29px rgba(45,213,255,.14)
  }
  .hero-v25__orbit::before,.hero-v25__orbit::after{
    width:8px;height:8px;
    box-shadow:0 0 7px #fff,0 0 14px rgba(72,229,255,.95),0 0 25px rgba(95,82,255,.72)
  }
  .hero-v25__visual::before{
    left:50%;top:40.5%;width:min(54vw,730px);height:min(25vw,342px);
    border:2px solid rgba(60,221,255,.78);
    box-shadow:0 0 10px rgba(60,228,255,.64),0 0 34px rgba(34,181,255,.36),0 0 65px rgba(99,62,255,.24),inset 0 0 30px rgba(67,224,255,.14)
  }
  .hero-v25__visual::after{
    left:50%;top:40.5%;width:min(38vw,510px);height:min(38vw,510px);
    border:1.5px dotted rgba(133,109,255,.72);
    box-shadow:0 0 18px rgba(93,91,255,.35),0 0 42px rgba(36,160,255,.20),inset 0 0 42px rgba(79,94,255,.12)
  }

  /* Identidad alineada con el centro real de CRIS; Saturno más premium */
  .hero-v25__identity{left:50%;bottom:12%;border-color:rgba(70,230,255,.92);box-shadow:0 0 12px rgba(54,225,255,.55),0 0 35px rgba(42,112,255,.42),0 0 58px rgba(126,54,255,.24),inset 0 0 30px rgba(0,196,255,.16)}
  .hero-v25__identity::before{border-width:2px;border-color:rgba(69,229,255,.90);box-shadow:0 0 9px rgba(63,232,255,.78),0 0 26px rgba(30,183,255,.50),0 0 48px rgba(66,73,255,.25),inset 0 0 23px rgba(42,214,255,.16)}
  .hero-v25__identity::after{border-width:2px;border-color:rgba(143,86,255,.82);box-shadow:0 0 10px rgba(144,80,255,.72),0 0 30px rgba(103,63,255,.46),0 0 52px rgba(32,137,255,.27),inset 0 0 24px rgba(111,79,255,.13)}
}


/* ============================================================
   V6 — CRIS stage precision pass
   Scope: CRIS scene + four HUD cards + lower KPI contrast only.
   ============================================================ */
@media (min-width:1101px){
  .hero-v25__visual{isolation:isolate;overflow:visible}

  /* Shared visual center. PNG includes hologram at left, so the image box
     is offset left to place CRIS' torso/head on the actual stage axis. */
  .hero-v25__aura,.hero-v25__orbit,.hero-v25__visual::before,.hero-v25__visual::after{left:50%;top:41%}
  .hero-v25__cris{
    left:43.5%;top:41.5%;width:min(35.5vw,475px);max-height:560px;
    transform:translate(-50%,-43%);z-index:12;
    filter:drop-shadow(0 24px 40px rgba(0,0,0,.42)) drop-shadow(0 0 25px rgba(0,196,255,.27));
    animation:v25CrisFloatV6 6.6s ease-in-out infinite;
  }
  @keyframes v25CrisFloatV6{0%,100%{transform:translate(-50%,-43%)}50%{transform:translate(-50%,calc(-43% - 5px))}}

  /* Premium orbital environment stays behind CRIS and cards. */
  .hero-v25__orbit{z-index:2;opacity:.90}
  .hero-v25__orbit--one{width:min(49vw,660px);height:min(22vw,300px)}
  .hero-v25__orbit--two{width:min(39vw,525px);height:min(39vw,525px)}
  .hero-v25__orbit--three{width:min(31vw,420px);height:min(31vw,420px)}
  .hero-v25__visual::before,.hero-v25__visual::after{z-index:1;pointer-events:none}

  /* Four holographic HUD modules. */
  .hero-v25__card{
    z-index:18;min-width:184px;min-height:84px;padding:11px 14px;gap:11px;
    border:1px solid rgba(71,218,255,.66);border-radius:12px;
    background:linear-gradient(135deg,rgba(4,31,72,.84),rgba(15,15,72,.76));
    box-shadow:0 0 0 1px rgba(70,137,255,.10),0 0 18px rgba(30,193,255,.17),0 0 34px rgba(89,57,255,.10),inset 0 0 24px rgba(19,163,255,.08);
    backdrop-filter:blur(13px) saturate(1.2);
    clip-path:polygon(8px 0,calc(100% - 8px) 0,100% 8px,100% calc(100% - 8px),calc(100% - 8px) 100%,8px 100%,0 calc(100% - 8px),0 8px);
  }
  .hero-v25__card::after{content:"→";margin-left:auto;color:#66e8ff;font-size:17px;text-shadow:0 0 10px rgba(75,226,255,.75)}
  .hero-v25__card-icon{width:39px;height:39px;border-color:rgba(83,214,255,.52);color:#8ab7ff;background:radial-gradient(circle,rgba(64,82,255,.36),rgba(4,25,64,.72));box-shadow:0 0 16px rgba(35,190,255,.16),inset 0 0 17px rgba(72,83,255,.12)}
  .hero-v25__card-icon svg{width:24px;height:24px}
  .hero-v25__card b{font-size:10px;color:#f2f7ff;text-shadow:0 0 9px rgba(110,195,255,.18)}
  .hero-v25__card small{font-size:8.2px;margin-top:5px;color:#c1d2e9;line-height:1.2}
  .hero-v25__card--learning{left:-1%;top:12%}
  .hero-v25__card--agents{right:0;top:12%}
  .hero-v25__card--community{left:0;bottom:35%}
  .hero-v25__card--projects{right:0;bottom:35%}

  /* Saturn platform is a separate rear layer: no line can cross the label. */
  .hero-v25__platform{position:absolute;z-index:14;left:50%;bottom:10.5%;width:430px;height:105px;transform:translateX(-50%);pointer-events:none}
  .hero-v25__platform i{position:absolute;left:50%;top:50%;display:block;border-radius:50%;transform:translate(-50%,-50%);animation:v6PlatformPulse 4.8s ease-in-out infinite}
  .hero-v25__platform i:nth-child(1){width:92%;height:48%;border:2px solid rgba(72,235,255,.90);box-shadow:0 0 9px rgba(67,233,255,.75),0 0 27px rgba(30,179,255,.45),inset 0 0 20px rgba(48,219,255,.12)}
  .hero-v25__platform i:nth-child(2){width:112%;height:68%;border:2px solid rgba(137,83,255,.78);box-shadow:0 0 10px rgba(140,77,255,.65),0 0 29px rgba(91,62,255,.40);animation-delay:-1.6s}
  .hero-v25__platform i:nth-child(3){width:72%;height:32%;border:1px solid rgba(81,183,255,.72);box-shadow:0 0 18px rgba(37,168,255,.32);animation-delay:-3.2s}
  @keyframes v6PlatformPulse{0%,100%{opacity:.78;filter:brightness(1)}50%{opacity:1;filter:brightness(1.14)}}

  /* Identity label is always the clean foreground layer. */
  .hero-v25__identity{
    z-index:24;left:50%;bottom:12.3%;width:218px;min-height:94px;padding:12px;
    border:1.5px solid rgba(75,231,255,.94);
    background:radial-gradient(circle at 50% 0%,rgba(30,115,255,.23),transparent 54%),linear-gradient(180deg,rgba(4,31,70,.98),rgba(2,12,37,.98));
    box-shadow:0 0 12px rgba(54,225,255,.48),0 0 34px rgba(42,112,255,.36),0 0 52px rgba(126,54,255,.20),inset 0 0 30px rgba(0,196,255,.13);
  }
  .hero-v25__identity::before,.hero-v25__identity::after{display:none!important}
  .hero-v25__identity small,.hero-v25__identity strong,.hero-v25__identity span{position:relative;z-index:2}
  .hero-v25__identity small{font-size:7px;color:#91acd7}.hero-v25__identity strong{font-size:24px}.hero-v25__identity span{font-size:6.7px;color:#54ebff}

  /* KPI strip: stronger separation from Earth's glow without changing layout. */
  .hero-v25__stats{position:relative;z-index:20;padding:7px 8px;border-radius:16px;background:linear-gradient(90deg,rgba(2,13,34,.54),rgba(3,18,46,.40) 52%,rgba(2,12,31,.54));box-shadow:0 8px 26px rgba(0,0,0,.18),inset 0 1px 0 rgba(83,191,255,.07);backdrop-filter:blur(4px)}
  .hero-v25__stats strong{color:#fff;text-shadow:0 1px 5px rgba(0,0,0,.72),0 0 10px rgba(72,173,255,.16)}
  .hero-v25__stats small{color:#a9bdd9;text-shadow:0 1px 4px rgba(0,0,0,.82)}
  .hero-v25__stat-icon{color:#9cc5ff;border-color:rgba(67,180,255,.46);box-shadow:0 0 15px rgba(32,135,255,.16),inset 0 0 17px rgba(57,82,255,.10)}
  .hero-v25__stats>div{border-right-color:rgba(143,186,235,.28)}
}

@media (min-width:1101px) and (max-width:1300px){
  .hero-v25__cris{left:43%;top:41%;width:min(35vw,390px);max-height:485px}
  .hero-v25__card{min-width:150px;min-height:72px;padding:8px 9px}.hero-v25__card-icon{width:32px;height:32px}.hero-v25__card-icon svg{width:20px;height:20px}.hero-v25__card b{font-size:8.5px}.hero-v25__card small{font-size:7px}.hero-v25__card::after{font-size:14px}
  .hero-v25__card--learning{left:-3%;top:10%}.hero-v25__card--agents{right:-1%;top:10%}.hero-v25__card--community{left:-2%;bottom:36%}.hero-v25__card--projects{right:-1%;bottom:36%}
  .hero-v25__platform{width:355px;height:88px;bottom:20.5%}.hero-v25__identity{width:195px;min-height:84px;bottom:23%}
}

@media (min-width:1101px) and (max-height:720px){
  .hero-v25__cris{top:40%;width:min(34vw,365px)}
  .hero-v25__card--community,.hero-v25__card--projects{bottom:37%}
  .hero-v25__platform{bottom:19.5%}.hero-v25__identity{bottom:22%}
}

@media(prefers-reduced-motion:reduce){.hero-v25__platform i{animation:none!important}}


/* ============================================================
   V6.1 — Final refinement layer
   V6 remains the visual/layout source of truth.
   Adds selected Antigravity polish: refined assets, lateral CRIS
   response, premium neon hover and accessibility improvements.
   ============================================================ */
.skip-link{position:fixed;left:16px;top:12px;z-index:99999;transform:translateY(-180%);padding:10px 14px;border-radius:9px;background:#eafcff;color:#03111f;font-weight:800;text-decoration:none;box-shadow:0 8px 28px rgba(0,0,0,.35);transition:transform .2s ease}.skip-link:focus{transform:translateY(0)}

/* CRIS: preserve V6 placement, add the lateral liveliness selected from the candidate. */
.hero-v25__visual{transform-style:preserve-3d;transition:transform .22s ease-out;will-change:transform}
@media (min-width:1101px){
  .hero-v25__cris{animation:v61CrisLateral 8.4s ease-in-out infinite!important;will-change:transform,filter}
  @keyframes v61CrisLateral{
    0%,100%{transform:translate(-50%,-43%)}
    25%{transform:translate(calc(-50% - 6px),calc(-43% - 3px))}
    50%{transform:translate(-50%,calc(-43% - 6px))}
    75%{transform:translate(calc(-50% + 7px),calc(-43% - 2px))}
  }
}

/* Fine neon activation: quiet at rest, luminous only on focus/hover. */
.hero-v25__card{overflow:hidden;transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease,background .24s ease,filter .24s ease}
.hero-v25__card::before{content:"";position:absolute;z-index:0;inset:-1px;pointer-events:none;opacity:0;background:radial-gradient(155px circle at var(--glow-x,50%) var(--glow-y,50%),rgba(112,243,255,.24),rgba(89,92,255,.08) 34%,transparent 68%);transition:opacity .22s ease}
.hero-v25__card>*{position:relative;z-index:1}
.hero-v25__card:hover,.hero-v25__card:focus-visible{transform:translateY(-3px) scale(1.012);border-color:rgba(103,239,255,.92);background:linear-gradient(135deg,rgba(5,31,70,.76),rgba(20,18,84,.64));box-shadow:0 0 0 1px rgba(109,238,255,.18),0 0 14px rgba(73,227,255,.52),0 0 34px rgba(63,121,255,.31),0 0 54px rgba(128,70,255,.13),inset 0 0 25px rgba(66,217,255,.12);filter:brightness(1.08)}
.hero-v25__card:hover::before,.hero-v25__card:focus-visible::before{opacity:1}
.hero-v25__card:focus-visible{outline:2px solid rgba(153,246,255,.95);outline-offset:3px}

/* Extend the same visual language to selected cards without changing layout/colors. */
.eco-items article,.glass-card,.feature-panel,.capability,.ecosystem-card,.token-links span,.timeline article{transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease,filter .24s ease}
.eco-items article:hover,.glass-card:hover,.feature-panel:hover,.capability:hover,.ecosystem-card:hover,.token-links span:hover,.timeline article:hover{border-color:rgba(75,218,255,.40);box-shadow:0 0 0 1px rgba(88,217,255,.07),0 0 22px rgba(35,185,255,.16),0 14px 36px rgba(0,0,0,.22);filter:brightness(1.045)}

/* Whitepaper links remain prominent but consistent with the V6 palette. */
.whitepaper-section .feature-panel{position:relative;overflow:hidden}
.whitepaper-section .feature-panel::after{content:"";position:absolute;left:14%;right:14%;bottom:-18px;height:34px;border-radius:50%;background:rgba(64,207,255,.18);filter:blur(22px);opacity:0;transition:opacity .25s ease;pointer-events:none}
.whitepaper-section .feature-panel:hover::after{opacity:1}

/* Optimized assets should render cleanly, never with browser interpolation halos. */
.hero-v25__cris,.hero-v25__earth,.brand-symbol img{image-rendering:auto}

@media(prefers-reduced-motion:reduce){.hero-v25__cris{animation:none!important}.hero-v25__visual,.hero-v25__card,.eco-items article,.glass-card,.feature-panel,.capability,.ecosystem-card{transition:none!important}}


/* ============================================================
   V6.1 HUMAN QA REFINEMENT — MOBILE HERO COMPOSITION
   Maintains Desktop V6 as Visual Source of Truth.
   Harmonizes: CRIS scale (+30%), orbital system (+35%),
   brings Learning & Agents close to upper orbits,
   raises Community & Projects to flank the lower orbits,
   and positions CRIS identity label IMMEDIATELY below CRIS's hand.
   ============================================================ */

@media (max-width: 1000px) {
  .hero-v25 {
    padding: 92px 0 40px;
  }
  .hero-v25__container {
    width: min(calc(100% - 28px), 680px);
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .hero-v25__content {
    padding: 0 4px 8px;
  }
  .hero-v25__visual {
    position: relative;
    width: 100%;
    min-height: 560px;
    max-height: 600px;
    margin: 8px auto 0;
    overflow: visible;
    isolation: isolate;
  }

  /* CRIS: Proportional size boost, centered with orbital system */
  .hero-v25__cris {
    position: absolute;
    left: 46%;
    top: 38%;
    width: clamp(190px, 35vw, 240px);
    max-height: 270px;
    height: auto;
    object-fit: contain;
    transform: translate(-50%, -46%);
    z-index: 12;
    filter: drop-shadow(0 20px 32px rgba(0,0,0,.46)) drop-shadow(0 0 24px rgba(0,196,255,.28));
    animation: v61CrisLateralTablet 7.6s ease-in-out infinite!important;
    will-change: transform;
  }
  @keyframes v61CrisLateralTablet {
    0%, 100% { transform: translate(-50%, -46%); }
    50% { transform: translate(-50%, calc(-46% - 5px)); }
  }

  /* Shared orbital center */
  .hero-v25__aura,
  .hero-v25__orbit,
  .hero-v25__visual::before,
  .hero-v25__visual::after {
    left: 50%;
    top: 38%;
    transform: translate(-50%, -50%);
  }
  .hero-v25__aura {
    width: clamp(300px, 55vw, 380px);
    height: clamp(300px, 55vw, 380px);
    opacity: .88;
    filter: blur(6px);
  }
  .hero-v25__orbit {
    z-index: 2;
    opacity: .92;
    border-width: 1.6px;
  }
  .hero-v25__orbit--one {
    width: clamp(310px, 58vw, 400px);
    height: clamp(140px, 26vw, 185px);
  }
  .hero-v25__orbit--two {
    width: clamp(260px, 48vw, 335px);
    height: clamp(260px, 48vw, 335px);
  }
  .hero-v25__orbit--three {
    width: clamp(210px, 39vw, 270px);
    height: clamp(210px, 39vw, 270px);
  }
  .hero-v25__visual::before {
    left: 50%;
    top: 38%;
    width: clamp(315px, 60vw, 410px);
    height: clamp(145px, 27vw, 190px);
    z-index: 1;
    pointer-events: none;
  }
  .hero-v25__visual::after {
    left: 50%;
    top: 38%;
    width: clamp(240px, 44vw, 305px);
    height: clamp(240px, 44vw, 305px);
    z-index: 1;
    pointer-events: none;
  }

  /* Cards */
  .hero-v25__card {
    position: absolute;
    z-index: 18;
    min-width: 155px;
    min-height: 70px;
    padding: 8px 11px;
    gap: 9px;
    border-radius: 12px;
  }
  .hero-v25__card-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }
  .hero-v25__card-icon svg {
    width: 22px;
    height: 22px;
  }
  .hero-v25__card b {
    font-size: 9.5px;
  }
  .hero-v25__card small {
    font-size: 8px;
    margin-top: 3px;
  }

  /* Superior cards close to orbits */
  .hero-v25__card--learning {
    left: 4%;
    top: 8%;
    right: auto;
    bottom: auto;
  }
  .hero-v25__card--agents {
    right: 4%;
    top: 8%;
    left: auto;
    bottom: auto;
  }

  /* Inferior cards SUBEN: flank orbits at sides */
  .hero-v25__card--community {
    left: 4%;
    top: 50%;
    bottom: auto;
    right: auto;
  }
  .hero-v25__card--projects {
    right: 4%;
    top: 50%;
    bottom: auto;
    left: auto;
  }

  /* Identity label directly beneath CRIS's hand */
  .hero-v25__identity {
    position: absolute;
    z-index: 24;
    left: 50%;
    top: 66%;
    bottom: auto;
    transform: translateX(-50%);
    width: 210px;
    min-height: 78px;
    padding: 9px 12px;
  }

  .hero-v25__platform {
    position: absolute;
    z-index: 14;
    left: 50%;
    top: 68%;
    bottom: auto;
    width: 320px;
    height: 80px;
    transform: translateX(-50%);
    pointer-events: none;
    display: block!important;
  }
}

/* Smartphone Priority Pass (<= 768px down to 360px) */
@media (max-width: 768px) {
  .hero-v25 {
    padding: 82px 0 30px;
  }
  .hero-v25__container {
    width: min(calc(100% - 20px), 480px);
    gap: 8px;
  }
  .hero-v25__visual {
    min-height: 520px;
    max-height: 560px;
    margin: 4px auto 0;
  }

  /* CRIS: Increased by ~28%-35% vs original 133px */
  .hero-v25__cris {
    left: 46%;
    top: 37%;
    width: clamp(174px, 47vw, 196px);
    max-height: 220px;
    transform: translate(-50%, -46%);
    animation: v61CrisLateralMobile 7.2s ease-in-out infinite!important;
  }
  @keyframes v61CrisLateralMobile {
    0%, 100% { transform: translate(-50%, -46%); }
    50% { transform: translate(-50%, calc(-46% - 5px)); }
  }

  /* Orbits: Scaled up to wrap CRIS */
  .hero-v25__aura,
  .hero-v25__orbit,
  .hero-v25__visual::before,
  .hero-v25__visual::after {
    left: 50%;
    top: 37%;
    transform: translate(-50%, -50%);
  }
  .hero-v25__aura {
    width: clamp(265px, 75vw, 310px);
    height: clamp(265px, 75vw, 310px);
  }
  .hero-v25__orbit--one {
    width: clamp(270px, 77vw, 320px);
    height: clamp(125px, 35vw, 150px);
  }
  .hero-v25__orbit--two {
    width: clamp(225px, 64vw, 268px);
    height: clamp(225px, 64vw, 268px);
  }
  .hero-v25__orbit--three {
    width: clamp(185px, 51vw, 218px);
    height: clamp(185px, 51vw, 218px);
  }
  .hero-v25__visual::before {
    left: 50%;
    top: 37%;
    width: clamp(275px, 78vw, 325px);
    height: clamp(130px, 36vw, 155px);
  }
  .hero-v25__visual::after {
    left: 50%;
    top: 37%;
    width: clamp(210px, 58vw, 248px);
    height: clamp(210px, 58vw, 248px);
  }

  /* Cards: Proximity & Harmony */
  .hero-v25__card {
    min-width: clamp(130px, 38vw, 154px);
    max-width: 44vw;
    min-height: 62px;
    padding: 7px 9px;
    gap: 7px;
  }
  .hero-v25__card-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }
  .hero-v25__card-icon svg {
    width: 19px;
    height: 19px;
  }
  .hero-v25__card b {
    font-size: clamp(8.4px, 2.3vw, 9.2px);
    line-height: 1.15;
  }
  .hero-v25__card small {
    font-size: clamp(7.2px, 2.0vw, 7.8px);
    margin-top: 2px;
    line-height: 1.15;
  }

  /* Superior cards close to orbits */
  .hero-v25__card--learning {
    left: clamp(2px, 1.2vw, 8px);
    top: 8%;
  }
  .hero-v25__card--agents {
    right: clamp(2px, 1.2vw, 8px);
    top: 8%;
  }

  /* Inferior cards SUBEN: lateral flanks around lower orbit */
  .hero-v25__card--community {
    left: clamp(2px, 1.2vw, 8px);
    top: 48%;
  }
  .hero-v25__card--projects {
    right: clamp(2px, 1.2vw, 8px);
    top: 48%;
  }

  /* Identity label: IMMEDIATELY BELOW CRIS's hand */
  .hero-v25__identity {
    left: 50%;
    top: 64%;
    width: clamp(170px, 48vw, 194px);
    min-height: 70px;
    padding: 7px 10px;
    border-radius: 13px;
  }
  .hero-v25__identity small {
    font-size: 6.5px;
    letter-spacing: .22em;
  }
  .hero-v25__identity strong {
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
  }
  .hero-v25__identity span {
    font-size: 6.5px;
    margin-top: 4px;
    letter-spacing: .16em;
    line-height: 1.22;
  }

  /* Saturn rings platform */
  .hero-v25__platform {
    left: 50%;
    top: 65%;
    width: clamp(255px, 74vw, 300px);
    height: 72px;
  }
}

/* Extra Compact Devices (<= 380px, e.g. 360x800) */
@media (max-width: 380px) {
  .hero-v25__visual {
    min-height: 500px;
    max-height: 530px;
  }
  .hero-v25__cris {
    width: 168px;
    top: 36%;
  }
  .hero-v25__aura,
  .hero-v25__orbit,
  .hero-v25__visual::before,
  .hero-v25__visual::after {
    top: 36%;
  }
  .hero-v25__card {
    min-width: 126px;
    padding: 6px 7px;
    gap: 6px;
  }
  .hero-v25__card-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
  }
  .hero-v25__card-icon svg {
    width: 17px;
    height: 17px;
  }
  .hero-v25__card b {
    font-size: 8.2px;
  }
  .hero-v25__card small {
    font-size: 7px;
  }
  .hero-v25__card--learning {
    left: 1px;
    top: 7%;
  }
  .hero-v25__card--agents {
    right: 1px;
    top: 7%;
  }
  .hero-v25__card--community {
    left: 1px;
    top: 47%;
  }
  .hero-v25__card--projects {
    right: 1px;
    top: 47%;
  }
  .hero-v25__identity {
    top: 63%;
    width: 168px;
    min-height: 68px;
  }
  .hero-v25__identity strong {
    font-size: 19px;
  }
  .hero-v25__platform {
    top: 64%;
    width: 250px;
  }
}
