﻿/* ============================================================
   CLUSTER DATA - styles-v2.css
   Diseno profesional, accesible, moderno
   Tipografia: Syne (display) + Inter (cuerpo)
   ============================================================ */

/*  TOKENS  */
:root {
    --tq:       #50C6D8;
    --tq-dark:  #3aafbf;
    --red:      #e74324;
    --black:    #0a0a0a;
    --white:    #ffffff;
    --beige:    #edeedc;
    --gray-50:  #f8f8f6;
    --gray-100: #f0f0ec;
    --gray-300: #d0d0c8;
    --gray-500: #888880;
    --gray-700: #444440;
    --gray-900: #1a1a18;

    /* Fuentes: Plus Jakarta Sans primero, fallback a locales */
    --font-display: 'Plus Jakarta Sans', 'Urbanist', sans-serif;
    --font-body:    'Plus Jakarta Sans', 'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
    --shadow-tq: 0 8px 32px rgba(80,198,216,.25);
}

/*  RESET OVERRIDE  */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/*  CONTAINER  */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/*  TIPOGRAFiA DISPLAY  */
h1, h2, h3 { font-family: var(--font-display); color: var(--black); line-height: 1.1; }
/* Plus Jakarta Sans se ve mejor con letter-spacing ligeramente negativo */
h1 { letter-spacing: -.03em; }
h2 { letter-spacing: -.025em; }
h3 { letter-spacing: -.015em; }

/*  UTILIDADES  */
.text-tq      { color: var(--tq); }
.text-red     { color: var(--red); }
.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--black);
}

/*  BOTONES  */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .01em;
    transition: all .25s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn--primary {
    background: var(--tq);
    color: var(--white);
    box-shadow: var(--shadow-tq);
}
.btn--primary:hover {
    background: var(--tq-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(80,198,216,.35);
}
.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.35);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.6);
}
.btn--lg { padding: 1.1rem 2.8rem; font-size: 1.05rem; }

/*  EYEBROW / LABELS  */
.eyebrow-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--tq);
    background: rgba(80,198,216,.1);
    padding: .35rem .9rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(80,198,216,.25);
}
.eyebrow-tag--light {
    color: var(--tq);
    background: rgba(80,198,216,.15);
    border-color: rgba(80,198,216,.3);
}
.label-tag {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gray-500);
    display: block;
    margin-bottom: .75rem;
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--tq);
    margin-top: 1.5rem;
    transition: gap .2s ease;
}
.link-arrow:hover { gap: .8rem; }

/*  PILL  */
.pill {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.8);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .08em;
    padding: .4rem 1rem;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}

/*  REVEAL ANIMATIONS  */

/* Hero: animacion CSS pura, no depende de JS */
.fade-up {
    animation: fadeUpIn .7s ease both;
}
.delay-1 { animation-delay: .18s; }
.delay-2 { animation-delay: .34s; }
.delay-3 { animation-delay: .50s; }

@keyframes fadeUpIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal: progressive enhancement
   El contenido es visible por defecto.
   Cuando JS agrega .js-loaded al body, activamos la animacion. */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}
.js-loaded .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-up { animation: none !important; }
    .js-loaded .reveal { opacity: 1 !important; transform: none !important; }
}

/* 
   NAVEGACIoN
 */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background .3s ease, box-shadow .3s ease;
    padding: 0 2rem;
}
.nav--scrolled {
    background: rgba(237,238,220,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav__logo { flex-shrink: 0; overflow: visible; }
.nav__logo-img {
    height: 48px;
    width: auto;
    max-width: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .4s ease, transform .4s ease;
}
.nav--scrolled .nav__logo-img { opacity: 1; transform: translateY(0); }

.nav__links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}
.nav__links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color .2s;
}
.nav__links a:hover { color: var(--tq); }

.nav__cta {
    margin-left: 1rem;
    background: var(--black);
    color: var(--white) !important;
    padding: .6rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: .85rem;
    font-weight: 600;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
}
.nav__cta:hover { background: var(--tq); transform: translateY(-1px); }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all .3s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--beige);
    padding: 1.5rem 2rem 2rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(0,0,0,.06);
}
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 0; }
.nav__mobile a {
    display: block;
    padding: .9rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: color .2s;
}
.nav__mobile a:hover { color: var(--tq); }
.nav__mobile li:last-child a { border-bottom: none; font-weight: 700; color: var(--tq); }

@media (max-width: 768px) {
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }
}

/* 
   HERO
 */
/* 
   SPLASH INTRO
 */
.splash {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .8s ease;
}
.splash__text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    text-align: center;
    letter-spacing: -.03em;
    line-height: 1.15;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
}
.splash__highlight {
    color: var(--tq);
    position: relative;
}

/* 
   HERO - Dark with floating images
 */
.hero-exp {
    height: 300vh;
    position: relative;
}
.hero-exp__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero__glow-1 {
    position: absolute;
    top: -20%; left: -10%;
    width: 60vw; height: 60vw;
    max-width: 700px; max-height: 700px;
    background: radial-gradient(circle, rgba(80,198,216,.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: heroGlowDrift 8s ease-in-out infinite;
}
.hero__glow-2 {
    position: absolute;
    bottom: -15%; right: -5%;
    width: 50vw; height: 50vw;
    max-width: 600px; max-height: 600px;
    background: radial-gradient(circle, rgba(231,67,36,.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: heroGlowDrift 10s ease-in-out infinite reverse;
}
@keyframes heroGlowDrift {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(20px, -15px); }
}

/* Floating elements - orbit around center */
.hero__floats {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: auto;
}
.hero__float {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    will-change: transform, opacity;
    filter: drop-shadow(0 6px 24px rgba(0,0,0,.35));
    cursor: pointer;
}
.hero__float--1 { width: 480px; }
.hero__float--2 { width: 280px; }
.hero__float--3 { width: 420px; }
.hero__float--4 { width: 230px; }
.hero__float--5 { width: 440px; }
.hero__float--6 { width: 260px; }
.hero__float--7 { width: 380px; }
.hero__float--8 { width: 300px; }
.hero__float--9 { width: 340px; }

/* Hero center content */
.hero__center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 2rem;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}
.hero__title em {
    font-style: normal;
    color: var(--tq);
}
.hero__sub {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero .btn--ghost {
    color: var(--white);
    border-color: rgba(255,255,255,.25);
}
.hero .btn--ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.5);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 860px;
}
.hero__eyebrow { margin-bottom: 1.5rem; }

/* Pill sobre fondo claro */
.pill {
    display: inline-block;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.1);
    color: var(--gray-700);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    padding: .4rem 1rem;
    border-radius: var(--radius-pill);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
}
.hero__title em {
    font-style: normal;
    color: var(--tq);
}
.hero__sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    font-weight: 400;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Boton ghost sobre fondo claro */
.btn--ghost {
    background: transparent;
    color: var(--black);
    border: 1.5px solid rgba(0,0,0,.2);
}
.btn--ghost:hover {
    background: rgba(0,0,0,.05);
    border-color: rgba(0,0,0,.4);
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(0,0,0,.3), transparent);
    margin: 0 auto;
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { opacity: .4; transform: scaleY(1); }
    50%      { opacity: 1;  transform: scaleY(.7); }
}
.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: block; } }

/* 
   ABOUT / NOSOTROS
 */
.about {
    padding: 8rem 0 2rem;
    background: var(--white);
}
.section-eyebrow { margin-bottom: 1.5rem; }

.about__headline {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin-bottom: 4rem;
    max-width: 800px;
}
.about__split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    padding-top: 3rem;
    border-top: 1.5px solid var(--tq);
    margin-bottom: 5rem;
}
.about__lead p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--black);
    line-height: 1.6;
}
.about__mission p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: .5rem;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.stats__item {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--gray-100);
    transition: background .25s;
}
.stats__item:last-child { border-right: none; }
.stats__item:hover { background: var(--gray-50); }
.stats__number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: .5rem;
    display: flex;
    align-items: baseline;
    gap: .1rem;
}
.stats__item:hover .stats__number { color: var(--tq); }
.stats__plus {
    font-size: 1.4rem;
    color: var(--tq);
    font-weight: 800;
}
.stats__label {
    font-size: .82rem;
    color: var(--gray-500);
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .about__split { grid-template-columns: 1fr; gap: 2.5rem; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stats__item:nth-child(2) { border-right: none; }
    .stats__item:nth-child(3) { border-top: 1px solid var(--gray-100); }
    .stats__item:nth-child(4) { border-top: 1px solid var(--gray-100); border-right: none; }
}
@media (max-width: 480px) {
    .about { padding: 5rem 0 2rem; }
    .stats { grid-template-columns: 1fr 1fr; }
}

/* 
   ORUGUITA DIVIDER
 */
.dots-scene {
    width: 100%;
    height: 260px;
    background: var(--white);
    overflow: visible;
    position: relative;
    z-index: 1;
    padding-top: 3rem;
}
.dots-scene canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* 
   SOLUCIONES - SLIDER
 */
.solutions {
    padding: 8rem 0 2rem;
    background: var(--white);
}
.solutions__headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 3.5rem;
}

.slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.slider__track {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Slides */
.slide {
    display: none;
    padding: 4rem 5rem;
    width: 100%;
    animation: slideFadeIn .4s ease;
}
.slide.active { display: block; }

@keyframes slideFadeIn {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}

.slide__num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: -.5rem;
    user-select: none;
}
.slide__category {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--tq);
    margin-bottom: 1rem;
}
.slide__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -.02em;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}
.slide__desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 560px;
}

/* Controles */
.slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.slider__btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
}
.slider__btn:hover { background: var(--tq); transform: scale(1.08); }

.slider__dots { display: flex; gap: .5rem; align-items: center; }
.sdot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .25s ease;
}
.sdot.active {
    background: var(--tq);
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .slide { padding: 2.5rem 2rem; }
    .slide__num { font-size: 3.5rem; }
}

/* 
   PRODUCTOS
 */
.products {
    padding: 8rem 0;
    background: var(--gray-50);
}
.products__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.products__text .eyebrow-tag { margin-bottom: 1.25rem; }
.products__text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}
.products__text p {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 420px;
}

/* Card stack visual */
.products__visual { position: relative; height: 280px; }
.pcard {
    position: absolute;
    width: 260px;
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: .5rem;
    transition: transform .3s ease, box-shadow .3s ease;
}
.pcard:hover { transform: translateY(-6px) !important; box-shadow: var(--shadow-lg) !important; }
.pcard--1 {
    background: var(--black);
    color: var(--white);
    top: 0; left: 0;
    z-index: 3;
    box-shadow: var(--shadow-md);
}
.pcard--2 {
    background: var(--tq);
    color: var(--white);
    top: 40px; left: 50px;
    z-index: 2;
    box-shadow: var(--shadow-tq);
}
.pcard--3 {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-100);
    top: 80px; left: 100px;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}
.pcard__label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
}
.pcard__status {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .6;
}

@media (max-width: 900px) {
    .products__inner { grid-template-columns: 1fr; gap: 3rem; }
    .products__visual { height: 200px; }
    .pcard { width: 200px; padding: 1.25rem; }
    .pcard--2 { left: 35px; top: 30px; }
    .pcard--3 { left: 70px; top: 60px; }
}

/* 
   TECH STACK
 */
.techstack {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}
.techstack__label {
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 2rem;
}
.marquee { overflow: hidden; position: relative; }
.marquee__track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
    padding: .75rem 2.5rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--gray-500);
    border-right: 1px solid var(--gray-100);
    white-space: nowrap;
    transition: color .2s;
}
.marquee__item:hover { color: var(--tq); }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* 
   CTA SECTION
 */
.cta-section {
    position: relative;
    padding: 9rem 0;
    background: var(--black);
    overflow: hidden;
    text-align: center;
}
/* Glow radial de fondo */
.cta-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(80,198,216,.12) 0%, transparent 70%);
    pointer-events: none;
}
/* Linea superior turquesa */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 64px; height: 2px;
    background: var(--tq);
}
.cta-section__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.cta-section__inner .eyebrow-tag { margin-bottom: 1.5rem; }
.cta-section__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.cta-section__title em {
    font-style: normal;
    color: var(--tq);
}
.cta-section__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* 
   FOOTER
 */
.footer {
    background: var(--beige);
    padding: 5rem 0 2.5rem;
    border-top: 1px solid rgba(0,0,0,.06);
}
.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0,0,0,.07);
    margin-bottom: 2rem;
}
.footer__logo {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
}
.footer__brand p {
    font-size: .9rem;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 260px;
}
.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.footer__col h4 {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col li {
    font-size: .88rem;
    color: var(--gray-500);
}
.footer__col a {
    color: var(--gray-500);
    transition: color .2s;
}
.footer__col a:hover { color: var(--tq); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    color: var(--gray-300);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: var(--gray-300); transition: color .2s; }
.footer__legal a:hover { color: var(--tq); }

@media (max-width: 900px) {
    .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer__nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .footer__nav { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer__logo { width: 140px; }
}

/* 
   RESPONSIVE GLOBAL
 */
@media (max-width: 768px) {
    .hero__title { letter-spacing: -.02em; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
    .about { padding: 5rem 0 4rem; }
    .about__headline { font-size: 2.4rem; }
    .solutions { padding: 5rem 0 3rem; }
    .products { padding: 5rem 0; }
    .cta-section { padding: 6rem 0; }
}

/* 
   SCROLL EFFECTS - ANILLOS HERO + GEO PARALLAX
 */

/* Anillos concentricos en el hero - estilos base en seccion HERO */
/* (definidos arriba, aqui solo el keyframe compartido) */

/* Figura geometrica en soluciones */
.solutions {
    position: relative;
    overflow: hidden;
}.solutions__geo {
    position: absolute;
    top: 50%; left: 75%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1.5px solid rgba(80, 198, 216, 0.10);
    pointer-events: none;
    will-change: transform;
    /* Segundo anillo interior */
    box-shadow:
        inset 0 0 0 60px transparent,
        0 0 0 80px rgba(80, 198, 216, 0.04),
        0 0 0 160px rgba(80, 198, 216, 0.025);
}
.solutions__geo::before {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px solid rgba(80, 198, 216, 0.12);
}
.solutions__geo::after {
    content: '';
    position: absolute;
    inset: 140px;
    border-radius: 50%;
    border: 1px solid rgba(80, 198, 216, 0.18);
    background: radial-gradient(circle, rgba(80,198,216,.04) 0%, transparent 70%);
}

/* Stagger delays para stats */
.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: .1s; }
.stagger-3 { transition-delay: .2s; }
.stagger-4 { transition-delay: .3s; }

/* Reveal con stagger cuando el padre tiene .visible */
.js-loaded .stats.visible .stats__item {
    animation: statReveal .5s ease both;
}
.js-loaded .stats.visible .stagger-1 { animation-delay: .05s; }
.js-loaded .stats.visible .stagger-2 { animation-delay: .15s; }
.js-loaded .stats.visible .stagger-3 { animation-delay: .25s; }
.js-loaded .stats.visible .stagger-4 { animation-delay: .35s; }

@keyframes statReveal {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Reveal con slide desde izquierda para el split */
.js-loaded .about__split.reveal {
    transform: translateY(20px);
}
.js-loaded .about__split.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal con clip para el headline */
.js-loaded .about__headline.reveal {
    clip-path: inset(0 100% 0 0);
    transform: none;
    transition: opacity .8s ease, clip-path .9s cubic-bezier(.16,1,.3,1);
}
.js-loaded .about__headline.visible {
    opacity: 1;
    clip-path: inset(0 0% 0 0);
}

@media (max-width: 768px) {
    .hero__float { width: 140px !important; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
    .solutions__geo { width: 300px; height: 300px; left: 85%; }
}

/* 
   HERO WORD ANIMATIONS
 */

/* Cada palabra es un bloque independiente para poder transformarla */
.hw {
    display: inline-block;
    will-change: transform, opacity;
    /* Sin transition aqui - el JS la pone solo al inicio */
}

/* El hero es sticky para que el scroll-out ocurra mientras
   el contenido de abajo ya empieza a aparecer */
.hero {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* Wrapper que da el espacio de scroll al hero sticky */
.hero-scroll-space {
    display: none;
}

/* La seccion about arranca justo despues */
.about {
    position: relative;
    z-index: 2;
    background: var(--white);
}

@media (prefers-reduced-motion: reduce) {
    .hw { transition: none !important; }
}
