/* ===== Wemvy v3 — Landing de vídeo interactivo ===== */
:root {
    --v3-cyan: #00c3d4;
    --v3-magenta: #ff52c3;
    --v3-ink: #0a0a1a;
}

* { box-sizing: border-box; }

/* display:flex en capas ocultas pisa [hidden] en Chrome/Edge (mismo bug que landing avatar) */
.landing-v3-page [hidden] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.landing-v3-page {
    margin: 0;
    background: var(--v3-ink);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ---- Escenario ---- */
.v3-stage {
    position: fixed;
    inset: 0;
    z-index: 10;
    background: #000;
    overflow: hidden;
    --v3-video-object-x: center;
    --v3-video-object-y: center;
}
.v3-stage.v3-stage--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}

/* Reproductor principal: doble buffer, corte instantáneo (sin fade ni mezcla de opacidad) */
.v3-main-stack {
    position: absolute;
    inset: 0;
    z-index: 1;
    --v3-video-object-x: center;
    --v3-video-object-y: center;
}
.v3-main-video {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    background: #000;
    transition: opacity 180ms ease;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.v3-main-video.is-active {
    opacity: 1;
    z-index: 2;
}
.v3-main-video.is-transitioning-in {
    z-index: 3;
    opacity: 0;
}
.v3-main-video.is-transitioning-in.is-active {
    opacity: 1;
}
.v3-main-video.is-transitioning-out {
    z-index: 2;
    opacity: 1;
}

/* F1: armadura debajo; al subir la barra se recorta el casual desde abajo */
.v3-main-stack.is-f1-drag,
.v3-main-stack.is-f1-preview {
    --v3-handle: 76%;
    --v3-clip-bottom: 24%;
}
.v3-main-stack.is-f1-drag .v3-main-video.is-active,
.v3-main-stack.is-f1-preview .v3-main-video.is-active {
    opacity: 1;
}
/* F1 split: capa de ropa (top) recortada por clip-path directo sobre el <video>.
   Misma técnica que landing_avatar (probada en iOS): inset + translateZ(0). */
.v3-main-stack.is-f1-drag .v3-drag__video--top,
.v3-main-stack.is-f1-preview .v3-drag__video--top {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--v3-video-object-x, center) var(--v3-video-object-y, center);
    pointer-events: none;
    -webkit-clip-path: inset(0 0 var(--v3-clip-bottom, 0%) 0);
    clip-path: inset(0 0 var(--v3-clip-bottom, 0%) 0);
    will-change: clip-path;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
/* Tiembla el stack de vídeo (la barra está fuera, en #v3-drag) */
.v3-drag.is-f1-drag-shake .v3-drag__handle {
    animation: v3-f1-handle-shake 0.065s linear infinite;
}
@keyframes v3-f1-handle-shake {
    0%, 100% { transform: translateY(-50%) translate3d(0, 0, 0); }
    16% { transform: translateY(-50%) translate3d(calc(var(--f1-shake) * 1px), 0, 0); }
    32% { transform: translateY(-50%) translate3d(calc(var(--f1-shake) * -0.85px), 0, 0); }
    48% { transform: translateY(-50%) translate3d(calc(var(--f1-shake) * 0.7px), 0, 0); }
    64% { transform: translateY(-50%) translate3d(calc(var(--f1-shake) * -0.55px), 0, 0); }
    80% { transform: translateY(-50%) translate3d(calc(var(--f1-shake) * 0.4px), 0, 0); }
}
.v3-main-stack.is-f1-explode .v3-drag__video--top {
    animation: v3-f1-top-burst 0.72s cubic-bezier(0.15, 0.85, 0.25, 1) forwards;
}
.v3-main-stack.is-f1-explode .v3-drag__video--base {
    animation: v3-f1-armor-pop 0.72s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}
@keyframes v3-f1-top-burst {
    0% { transform: scale(1); filter: brightness(1) saturate(1); opacity: 1; }
    35% { transform: scale(1.06) translateY(-1%); filter: brightness(1.8) saturate(1.35); }
    100% {
        transform: scale(1.22) translateY(-6%);
        filter: brightness(2.6) saturate(1.6) blur(10px);
        opacity: 0;
        -webkit-clip-path: inset(0 0 100% 0);
        clip-path: inset(0 0 100% 0);
    }
}
@keyframes v3-f1-armor-pop {
    0% { transform: scale(1); filter: brightness(1); }
    40% { transform: scale(1.04); filter: brightness(1.35) contrast(1.08); }
    100% { transform: scale(1.02); filter: brightness(1.15); }
}
.v3-stage.is-f1-boom {
    animation: v3-f1-stage-boom 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
}
@keyframes v3-f1-stage-boom {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.018); }
    55% { transform: scale(0.992); }
}

/* Transición final: el escenario se encoge hacia el icono del chat */
.v3-stage.v3-stage--morph {
    transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.9s ease;
    transform-origin: bottom right;
    transform: scale(0.06) translate(0, 0);
    opacity: 0;
    border-radius: 50%;
}

/* ---- Placeholder (sin asset) ---- */
.v3-placeholder {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 208, 212, 0.18), transparent 55%),
        radial-gradient(circle at 75% 80%, rgba(250, 71, 201, 0.16), transparent 55%),
        #0a0a1a;
}
.v3-placeholder__card {
    text-align: center;
    padding: 32px 28px;
    max-width: 440px;
}
.v3-placeholder__tag {
    display: inline-block;
    font: 700 13px/1 monospace;
    letter-spacing: 0.12em;
    color: var(--v3-cyan);
    border: 1px solid rgba(0, 208, 212, 0.4);
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 16px;
}
.v3-placeholder__label {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}
.v3-placeholder__hint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 22px;
    font-family: monospace;
}

/* ---- Subtítulos (texto limpio sobre vídeo, como landing avatar) ---- */
.v3-subtitles {
    position: absolute;
    left: 50%;
    bottom: clamp(72px, 12vh, 130px);
    z-index: 6;
    width: min(880px, 88vw);
    margin: 0;
    padding: 0 12px;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
    transition:
        opacity 0.42s ease,
        transform 0.42s ease;
}
.v3-subtitles.v3-subtitles--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.v3-subtitles.v3-subtitles--hide {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
}
.v3-subtitles__text {
    margin: 0;
    font-size: clamp(1rem, 2.8vw, 1.35rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.94);
    text-wrap: balance;
    text-shadow:
        0 0 20px rgba(0, 0, 0, 0.75),
        0 2px 12px rgba(0, 0, 0, 0.55),
        0 0 32px rgba(0, 40, 60, 0.35);
}

/* ---- Puerta de inicio ---- */
.v3-start[hidden],
.v3-start.is-dismissed {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
.v3-start {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
    pointer-events: none;
}
.v3-start__veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 54% at 50% 42%, rgba(0, 195, 212, 0.12), transparent 62%),
        radial-gradient(ellipse 54% 44% at 72% 66%, rgba(255, 82, 195, 0.1), transparent 58%),
        linear-gradient(180deg, rgba(5, 6, 17, 0.24) 0%, rgba(5, 6, 17, 0.78) 100%);
    pointer-events: none;
}
.v3-start__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.24;
    pointer-events: none;
}
.v3-start__glow--cyan {
    width: min(42vw, 320px);
    height: min(42vw, 320px);
    left: 18%;
    top: 28%;
    background: rgba(0, 195, 212, 0.38);
}
.v3-start__glow--magenta {
    width: min(36vw, 280px);
    height: min(36vw, 280px);
    right: 16%;
    bottom: 24%;
    background: rgba(255, 82, 195, 0.3);
}
.v3-start__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    pointer-events: auto;
    width: min(86vw, 300px);
    transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.45s ease, filter 0.45s ease;
}
.v3-start__logo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
    animation: v3-start-logo-float 4.2s ease-in-out infinite;
}
.v3-start__logo-wrap::after {
    content: "";
    position: absolute;
    inset: -12% -8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 195, 212, 0.18), transparent 68%);
    z-index: -1;
    filter: blur(8px);
}
.v3-start__logo {
    width: clamp(112px, 18vw, 148px);
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.48));
}
@keyframes v3-start-logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
.v3-start__play-wrap {
    position: relative;
    width: clamp(80px, 14vw, 96px);
    height: clamp(80px, 14vw, 96px);
    margin: 0 auto;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.38));
}
.v3-start__play-wrap::before,
.v3-start__play-wrap::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.v3-start__play-wrap::before {
    inset: 2px;
    z-index: 1;
    background: conic-gradient(from 90deg, var(--v3-cyan), transparent 28%, transparent 50%, var(--v3-magenta), transparent 78%, var(--v3-cyan));
    -webkit-mask: radial-gradient(circle, transparent 56%, #000 58%);
    mask: radial-gradient(circle, transparent 56%, #000 58%);
    opacity: 0.84;
    transform-origin: center;
    animation: v3-start-spin-ring 4.8s linear infinite;
}
.v3-start__play-wrap::after {
    inset: 12px;
    z-index: 0;
    background: radial-gradient(circle, rgba(0, 195, 212, 0.24), transparent 64%);
    filter: blur(16px);
    opacity: 0.7;
}
.v3-start__play-wrap:hover::before,
.v3-start__play-wrap:focus-within::before {
    opacity: 1;
    animation-duration: 2.8s;
}
.v3-start__play-ring {
    position: absolute;
    inset: 8px;
    z-index: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    animation: v3-start-ring 3.2s ease-out infinite;
    pointer-events: none;
}
.v3-start__play-ring--2 {
    display: none;
}
@keyframes v3-start-ring {
    0% { transform: scale(0.88); opacity: 0.52; }
    100% { transform: scale(1.32); opacity: 0; }
}
@keyframes v3-start-spin-ring {
    to { transform: rotate(360deg); }
}
.v3-start__play {
    position: absolute;
    inset: 9%;
    z-index: 2;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    cursor: pointer;
    color: #fff;
    background: linear-gradient(180deg, rgba(7, 10, 24, 0.98), rgba(3, 5, 14, 0.94));
    font-size: clamp(28px, 5vw, 34px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 38px rgba(0, 195, 212, 0.18),
        inset 0 0 0 9px rgba(255, 255, 255, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.v3-start__play i {
    margin-left: 3px;
    background: linear-gradient(135deg, #fff, #8cf4ff 48%, #ff8bd6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.v3-start__play:hover {
    transform: translateY(-2px) scale(1.035);
    background: linear-gradient(180deg, rgba(10, 14, 31, 0.98), rgba(4, 7, 17, 0.95));
    box-shadow:
        0 0 46px rgba(0, 195, 212, 0.24),
        0 0 28px rgba(255, 82, 195, 0.14),
        inset 0 0 0 9px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.v3-start__play:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 5px;
}
.v3-start__play:active {
    transform: scale(0.98);
}
.v3-start__play:disabled {
    cursor: default;
    transform: scale(0.96);
    opacity: 0.85;
}
.v3-start__hint {
    margin: 16px 0 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.76);
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.42);
}
.v3-start__hint-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--v3-cyan);
    font-size: 13px;
}
.v3-start.is-launching .v3-start__inner {
    transform: scale(1.06);
    opacity: 0;
    filter: blur(8px);
}
.v3-start.is-launching .v3-start__veil {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.v3-start.is-launching .v3-start__glow {
    opacity: 0;
    transition: opacity 0.4s ease;
}
@media (max-width: 480px) {
    .v3-start {
        padding: 18px;
    }
    .v3-start__inner {
        width: min(88vw, 280px);
    }
    .v3-start__logo {
        width: 118px;
    }
    .v3-start__play-wrap {
        width: 80px;
        height: 80px;
    }
    .v3-start__hint {
        font-size: 11px;
    }
}

/* ---- Interacción F1: split vídeo casual → armadura ---- */
.v3-drag {
    position: absolute;
    inset: 0;
    z-index: 7;
    --v3-handle: 76%;
    --v3-clip-bottom: 24%;
    pointer-events: none;
}
.v3-drag.is-interactive:not(.is-preview):not(.is-complete) {
    pointer-events: auto;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}
.v3-drag__stack {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #0a0a1a;
}
.v3-drag__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--v3-video-object-x, center) var(--v3-video-object-y, center);
    display: block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.v3-drag__video--base {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.v3-drag__video--top {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.v3-drag__handle {
    position: absolute;
    left: 0;
    top: var(--v3-handle, 100%);
    transform: translateY(-50%);
    width: 100%;
    height: 44px;
    cursor: ns-resize;
    z-index: 10;
    touch-action: none;
    will-change: top, transform;
}
@media (max-width: 768px), (pointer: coarse) {
    .v3-stage {
        height: 100svh;
        height: 100dvh;
        max-height: 100dvh;
    }
    .v3-main-stack {
        --v3-video-object-y: 20%;
    }
    .v3-drag.is-interactive .v3-drag__handle {
        height: min(72px, 14vh);
    }
    .v3-drag,
    .v3-main-stack.is-f1-drag,
    .v3-main-stack.is-f1-preview {
        --v3-handle: 64%;
        --v3-clip-bottom: 36%;
    }
    .v3-drag.is-interactive .v3-drag__hint {
        font-size: clamp(0.9rem, 3.6vw, 1.05rem);
        bottom: 12vh;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
}

@media (orientation: portrait) and (max-height: 780px) {
    .v3-main-stack {
        --v3-video-object-y: 22%;
    }
}

@media (orientation: portrait) and (max-height: 620px) {
    .v3-main-stack {
        --v3-video-object-y: 14%;
    }
}

@media (max-aspect-ratio: 16/10) and (max-height: 520px) {
    .v3-main-stack {
        --v3-video-object-y: 12%;
    }
}

.v3-drag.is-preview {
    pointer-events: none;
}
.v3-drag.is-preview .v3-drag__handle {
    pointer-events: none;
    cursor: default;
    animation: v3-drag-preview-pulse 1.4s ease-in-out infinite;
}
.v3-drag.is-preview .v3-drag__hint {
    opacity: 0;
    visibility: hidden;
}
@keyframes v3-drag-preview-pulse {
    0%, 100% { opacity: 0.72; }
    50% { opacity: 1; }
}
.v3-drag.is-complete .v3-drag__handle,
.v3-drag.is-complete .v3-drag__hint {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.v3-drag__line {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--v3-cyan), var(--v3-magenta));
    box-shadow: 0 0 16px rgba(0, 208, 212, 0.7);
}
.v3-drag__grip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    color: var(--v3-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}
.v3-test-done {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    margin: 0;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(5, 5, 16, 0.72);
    border: 1px solid rgba(0, 208, 212, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    pointer-events: none;
}
.v3-drag__hint {
    position: absolute;
    bottom: 8vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 15px;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 999px;
}

/* Explosión de escenario (play inicial + F1) */
.v3-stage-burst,
.v3-f1-burst {
    position: absolute;
    inset: 0;
    z-index: 15;
    pointer-events: none;
    overflow: hidden;
}
.v3-stage-burst__flash,
.v3-f1-burst__flash {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.95) 0%, rgba(0, 208, 212, 0.55) 28%, rgba(250, 71, 201, 0.35) 52%, transparent 72%);
    opacity: 0;
    transform: scale(0.4);
}
.v3-f1-burst__core {
    position: absolute;
    left: 50%;
    top: 68%;
    width: 18vmin;
    height: 18vmin;
    margin: -9vmin 0 0 -9vmin;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0%, var(--v3-cyan) 35%, var(--v3-magenta) 68%, transparent 72%);
    opacity: 0;
    filter: blur(2px);
}
.v3-f1-burst__ring {
    position: absolute;
    left: 50%;
    top: 68%;
    width: 22vmin;
    height: 22vmin;
    margin: -11vmin 0 0 -11vmin;
    border-radius: 50%;
    border: 3px solid rgba(0, 208, 212, 0.85);
    box-shadow: 0 0 40px rgba(0, 208, 212, 0.65), inset 0 0 24px rgba(250, 71, 201, 0.35);
    opacity: 0;
}
.v3-f1-burst__ring--2 {
    border-color: rgba(250, 71, 201, 0.8);
    box-shadow: 0 0 50px rgba(250, 71, 201, 0.55);
}
.v3-f1-burst__sparks {
    position: absolute;
    left: 50%;
    top: 68%;
    width: 4px;
    height: 4px;
    margin: -2px 0 0 -2px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    box-shadow:
        0 -18vmin 0 2px rgba(255, 255, 255, 0.9),
        14vmin -10vmin 0 1px rgba(0, 208, 212, 0.85),
        -14vmin -10vmin 0 1px rgba(250, 71, 201, 0.85),
        18vmin 0 0 2px rgba(255, 255, 255, 0.75),
        -18vmin 0 0 2px rgba(0, 208, 212, 0.75),
        10vmin 12vmin 0 1px rgba(250, 71, 201, 0.8),
        -10vmin 12vmin 0 1px rgba(255, 255, 255, 0.8),
        0 16vmin 0 2px rgba(0, 208, 212, 0.7);
}
.v3-stage-burst.v3-burst--center .v3-f1-burst__flash {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.98) 0%, rgba(0, 208, 212, 0.58) 26%, rgba(250, 71, 201, 0.38) 50%, transparent 70%);
}
.v3-stage-burst.v3-burst--center .v3-f1-burst__core,
.v3-stage-burst.v3-burst--center .v3-f1-burst__ring,
.v3-stage-burst.v3-burst--center .v3-f1-burst__sparks {
    top: 50%;
}
.v3-stage-burst.is-active .v3-f1-burst__flash,
.v3-f1-burst.is-active .v3-f1-burst__flash {
    animation: v3-f1-flash 0.7s ease-out forwards;
}
.v3-stage-burst.is-active .v3-f1-burst__core,
.v3-f1-burst.is-active .v3-f1-burst__core {
    animation: v3-f1-core 0.65s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
}
.v3-stage-burst.is-active .v3-f1-burst__ring,
.v3-f1-burst.is-active .v3-f1-burst__ring {
    animation: v3-f1-ring 0.75s cubic-bezier(0.15, 0.85, 0.25, 1) forwards;
}
.v3-stage-burst.is-active .v3-f1-burst__ring--2,
.v3-f1-burst.is-active .v3-f1-burst__ring--2 {
    animation: v3-f1-ring 0.85s cubic-bezier(0.15, 0.85, 0.25, 1) 0.06s forwards;
}
.v3-stage-burst.is-active .v3-f1-burst__sparks,
.v3-f1-burst.is-active .v3-f1-burst__sparks {
    animation: v3-f1-sparks 0.7s ease-out forwards;
}
@keyframes v3-f1-flash {
    0% { opacity: 0; transform: scale(0.35); }
    18% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.35); }
}
@keyframes v3-f1-core {
    0% { opacity: 0; transform: scale(0.2); }
    25% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(2.8); filter: blur(12px); }
}
@keyframes v3-f1-ring {
    0% { opacity: 0; transform: scale(0.25); }
    20% { opacity: 1; }
    100% { opacity: 0; transform: scale(3.6); }
}
@keyframes v3-f1-sparks {
    0% { opacity: 0; transform: scale(0.5); }
    15% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(2.2); }
}

/* Transicion final / skip: flash liquido hacia el hero */
.v3-hero-transition {
    position: absolute;
    inset: 0;
    z-index: 18;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: screen;
}
.v3-hero-transition__flash,
.v3-hero-transition__wash,
.v3-hero-transition__core {
    position: absolute;
    pointer-events: none;
}
.v3-hero-transition__flash {
    inset: -10%;
    background:
        radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.92), transparent 18%),
        radial-gradient(ellipse 48% 34% at 36% 42%, rgba(0, 195, 212, 0.86), transparent 66%),
        radial-gradient(ellipse 44% 34% at 62% 54%, rgba(255, 82, 195, 0.78), transparent 66%);
    filter: blur(18px) saturate(1.45);
    transform: scale(0.18) rotate(-10deg);
    opacity: 0;
}
.v3-hero-transition__wash {
    width: 46vmax;
    height: 34vmax;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    opacity: 0;
    filter: blur(28px) saturate(1.4);
    transform: translate(-50%, -50%) scale(0.18) rotate(-8deg);
}
.v3-hero-transition__wash--cyan {
    margin-left: -12vmax;
    margin-top: -5vmax;
    background: rgba(0, 195, 212, 0.82);
}
.v3-hero-transition__wash--magenta {
    margin-left: 11vmax;
    margin-top: 7vmax;
    background: rgba(255, 82, 195, 0.72);
}
.v3-hero-transition__core {
    left: 50%;
    top: 50%;
    width: 18vmax;
    height: 18vmax;
    margin: -9vmax 0 0 -9vmax;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.96), rgba(140, 244, 255, 0.62) 32%, rgba(255, 82, 195, 0.42) 58%, transparent 72%);
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.18);
}
.v3-hero-transition.is-active {
    opacity: 1;
}
.v3-hero-transition.is-active .v3-hero-transition__flash {
    animation: v3-hero-liquid-flash 0.56s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.v3-hero-transition.is-active .v3-hero-transition__wash--cyan {
    animation: v3-hero-liquid-wash-cyan 0.56s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.v3-hero-transition.is-active .v3-hero-transition__wash--magenta {
    animation: v3-hero-liquid-wash-magenta 0.56s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.v3-hero-transition.is-active .v3-hero-transition__core {
    animation: v3-hero-liquid-core 0.5s ease-out forwards;
}
.v3-hero-transition.is-skip .v3-hero-transition__flash,
.v3-hero-transition.is-skip .v3-hero-transition__wash,
.v3-hero-transition.is-skip .v3-hero-transition__core,
.v3-stage.is-hero-transition-skip .v3-main-video.is-active {
    animation-duration: 0.44s;
}
.v3-stage.is-hero-transitioning,
.v3-stage.is-hero-transitioning .v3-main-stack {
    background: transparent;
}
.v3-stage.is-hero-transitioning .v3-main-video.is-active {
    animation: v3-hero-transition-video-liquid 0.48s ease forwards;
}
@keyframes v3-hero-liquid-flash {
    0% { opacity: 0; transform: scale(0.24) rotate(-10deg); filter: blur(20px) saturate(1.3); }
    18% { opacity: 1; }
    54% { opacity: 0.98; transform: scale(3.1) rotate(7deg); filter: blur(10px) saturate(1.75); }
    100% { opacity: 0; transform: scale(4.4) rotate(12deg); filter: blur(28px) saturate(1.4); }
}
@keyframes v3-hero-liquid-wash-cyan {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.2) rotate(-14deg); }
    20% { opacity: 0.95; }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(3.6) rotate(10deg); }
}
@keyframes v3-hero-liquid-wash-magenta {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.18) rotate(10deg); }
    22% { opacity: 0.9; }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(3.25) rotate(-12deg); }
}
@keyframes v3-hero-liquid-core {
    0% { opacity: 0; transform: scale(0.2); filter: blur(16px); }
    18% { opacity: 1; }
    64% { opacity: 0.94; transform: scale(3); filter: blur(8px); }
    100% { opacity: 0; transform: scale(4); filter: blur(18px); }
}
@keyframes v3-hero-transition-video-liquid {
    0% { opacity: 1; transform: scale(1); filter: brightness(1) saturate(1); }
    28% { opacity: 0.52; transform: scale(1.035); filter: brightness(1.7) saturate(1.55); }
    100% { opacity: 0; transform: scale(1.07); filter: blur(14px); }
}
@media (prefers-reduced-motion: reduce) {
    .v3-subtitles {
        transition: none;
    }
    .v3-subtitles,
    .v3-subtitles.v3-subtitles--visible,
    .v3-subtitles.v3-subtitles--hide {
        transform: translateX(-50%);
    }
    .v3-drag.is-preview .v3-drag__handle,
    .v3-drag.is-f1-drag-shake .v3-drag__handle,
    .v3-main-stack.is-f1-explode .v3-drag__video--top,
    .v3-main-stack.is-f1-explode .v3-drag__video--base,
    .v3-stage.is-f1-boom,
    .v3-f1-burst.is-active .v3-f1-burst__flash,
    .v3-f1-burst.is-active .v3-f1-burst__core,
    .v3-f1-burst.is-active .v3-f1-burst__ring,
    .v3-f1-burst.is-active .v3-f1-burst__sparks,
    .v3-hero-transition.is-active .v3-hero-transition__flash,
    .v3-hero-transition.is-active .v3-hero-transition__wash,
    .v3-hero-transition.is-active .v3-hero-transition__core,
    .v3-stage.is-hero-transitioning .v3-main-video.is-active {
        animation: none !important;
    }
    .v3-main-stack.is-f1-explode .v3-drag__video--top {
        opacity: 0;
    }
}

/* ---- Interacción: puerta ---- */
.v3-knock { position: absolute; inset: 0; z-index: 7; }
.v3-knock__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v3-knock.is-shake { animation: v3-shake 0.4s ease; }
@keyframes v3-shake {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-4px, 2px); }
    50% { transform: translate(4px, -2px); }
    75% { transform: translate(-3px, 1px); }
}
.v3-knock__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    border-radius: 18px;
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    backdrop-filter: blur(4px);
}
.v3-knock__btn i { font-size: 30px; }
.v3-knock__pulse {
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    border: 2px solid var(--v3-cyan);
    animation: v3-ring 1.8s ease-out infinite;
}
@keyframes v3-ring {
    0% { opacity: 0.8; transform: scale(0.9); }
    100% { opacity: 0; transform: scale(1.25); }
}

/* ---- Controles ---- */
.v3-skip {
    position: absolute;
    top: max(18px, env(safe-area-inset-top));
    right: max(18px, env(safe-area-inset-right));
    z-index: 9;
    min-height: 44px;
    max-width: calc(100vw - 36px);
    overflow: hidden;
    isolation: isolate;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    padding: 8px 9px 8px 17px;
    font-size: 13px;
    font-weight: 750;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow:
        0 16px 42px rgba(0, 0, 0, 0.3),
        0 0 26px rgba(0, 195, 212, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.v3-skip::before {
    content: "";
    position: absolute;
    inset: -38px;
    z-index: -2;
    border-radius: inherit;
    background: conic-gradient(from 90deg, var(--v3-cyan), transparent 28%, transparent 50%, var(--v3-magenta), transparent 78%, var(--v3-cyan));
    opacity: 0.72;
    animation: v3-skip-spin-ring 6s linear infinite;
    transition: opacity 0.2s ease, animation-duration 0.2s ease;
}
.v3-skip::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(7, 10, 24, 0.94), rgba(3, 5, 14, 0.9)),
        rgba(5, 7, 18, 0.9);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    backdrop-filter: blur(12px) saturate(1.2);
}
.v3-skip i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background:
        linear-gradient(180deg, rgba(7, 10, 24, 0.98), rgba(3, 5, 14, 0.94));
    color: #8cf4ff;
    font-size: 17px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow:
        0 0 18px rgba(0, 195, 212, 0.14),
        inset 0 0 0 5px rgba(255, 255, 255, 0.03);
    transition: transform 0.2s ease;
}
.v3-skip i::before {
    background: linear-gradient(135deg, #fff, #8cf4ff 48%, #ff8bd6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.v3-skip:hover {
    transform: translateY(-1px);
    color: #fff;
    box-shadow:
        0 20px 52px rgba(0, 0, 0, 0.4),
        0 0 34px rgba(0, 195, 212, 0.16),
        0 0 26px rgba(255, 82, 195, 0.12);
}
.v3-skip:hover::before,
.v3-skip:focus-visible::before {
    opacity: 1;
    animation-duration: 3.6s;
}
.v3-skip:hover i { transform: translateX(2px); }
.v3-skip:active { transform: translateY(0); }
.v3-skip:focus-visible {
    outline: 2px solid rgba(140, 244, 255, 0.86);
    outline-offset: 4px;
}
@keyframes v3-skip-spin-ring {
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .v3-skip {
        top: max(12px, env(safe-area-inset-top));
        right: max(12px, env(safe-area-inset-right));
        padding: 8px 9px 8px 14px;
        font-size: 12px;
        gap: 8px;
    }
    .v3-skip i {
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
}

.v3-progress {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 7px;
}
.v3-progress__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    transition: background 0.3s ease, transform 0.3s ease;
}
.v3-progress__dot.is-active { background: var(--v3-cyan); transform: scale(1.35); }
.v3-progress__dot.is-done { background: rgba(255, 255, 255, 0.6); }

/* ---- Debug: saltar fases ---- */
.v3-debug {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 20;
    font-size: 12px;
    max-width: min(280px, calc(100vw - 36px));
}
.v3-debug__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(250, 71, 201, 0.45);
    background: rgba(5, 5, 16, 0.82);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(6px);
}
.v3-debug__toggle:hover,
.v3-debug__toggle[aria-expanded="true"] {
    border-color: var(--v3-magenta);
    background: rgba(20, 8, 24, 0.92);
}
.v3-debug__nav {
    margin-top: 8px;
    max-height: min(60vh, 420px);
    overflow-y: auto;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 5, 16, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.v3-debug__btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 7px 10px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    line-height: 1.35;
    cursor: pointer;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.v3-debug__btn:hover {
    background: rgba(255, 255, 255, 0.08);
}
.v3-debug__btn.is-active {
    background: rgba(0, 208, 212, 0.18);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(0, 208, 212, 0.45);
}
.v3-debug__btn--extra {
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    color: var(--v3-magenta);
}

/* ---- Botones genéricos ---- */
.v3-btn {
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.v3-btn--primary {
    color: #021016;
    background: linear-gradient(135deg, var(--v3-cyan), var(--v3-magenta));
}

/* ---- Contenido web ---- */
.v3-web {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 16%, rgba(0, 195, 212, 0.22), transparent 34vw),
        radial-gradient(circle at 86% 6%, rgba(255, 82, 195, 0.18), transparent 34vw),
        radial-gradient(circle at 76% 72%, rgba(0, 195, 212, 0.1), transparent 28vw),
        linear-gradient(180deg, #050611 0%, #0b0d1d 40%, #061116 100%);
    min-height: 100vh;
    padding-bottom: 120px;
}
.v3-post-hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    max-height: 100svh;
    display: flex;
    align-items: flex-start;
    padding: clamp(34px, 6svh, 64px) clamp(20px, 6vw, 84px) clamp(96px, 14svh, 128px);
    overflow: hidden;
}
.v3-post-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 4;
    left: clamp(16px, 5vw, 72px);
    right: clamp(16px, 5vw, 72px);
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--v3-cyan), var(--v3-magenta), transparent);
    opacity: 0.76;
    filter: drop-shadow(0 0 16px rgba(0, 195, 212, 0.7));
}
.v3-post-hero__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}
.v3-post-hero__inner {
    position: relative;
    z-index: 3;
    max-width: 860px;
}
.v3-web__logo {
    width: clamp(126px, 15vw, 176px);
    margin-bottom: 22px;
    filter: drop-shadow(0 0 24px rgba(0, 195, 212, 0.32)) drop-shadow(0 0 22px rgba(255, 82, 195, 0.16));
}
.v3-post-hero__eyebrow,
.v3-section__kicker {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v3-cyan);
    line-height: 1.45;
    overflow-wrap: anywhere;
    text-shadow: 0 0 20px rgba(0, 195, 212, 0.45);
}
.v3-web__title {
    font-size: clamp(44px, 6.4vw, 86px);
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 20px;
    max-width: 13ch;
    line-height: 0.96;
    text-shadow: 0 16px 58px rgba(0, 0, 0, 0.52), 0 0 34px rgba(255, 82, 195, 0.14);
}
.v3-web__subtitle {
    font-size: clamp(17px, 2.4vw, 24px);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.74);
    max-width: 780px;
    margin: 0;
}
.v3-post-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}
.v3-hero-impact {
    position: absolute;
    z-index: 3;
    right: clamp(24px, 6vw, 92px);
    top: clamp(100px, 17vh, 170px);
    width: min(370px, 28vw);
    display: grid;
    gap: 12px;
}
.v3-hero-impact span {
    display: block;
    padding: 16px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(135deg, rgba(0, 195, 212, 0.16), rgba(255, 82, 195, 0.1)),
        rgba(5, 7, 18, 0.58);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), 0 0 30px rgba(0, 195, 212, 0.1);
    backdrop-filter: blur(18px);
}
.v3-hero-impact span:nth-child(2) { margin-left: 42px; }
.v3-hero-impact span:nth-child(3) { margin-left: 18px; }
.v3-hero-impact strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.2;
}
.v3-hero-impact small {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.42;
}
.v3-action {
    border: none;
    min-height: 46px;
    border-radius: 999px;
    padding: 13px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.v3-action:hover { transform: translateY(-2px); }
.v3-action--primary {
    color: #041014;
    background: linear-gradient(135deg, var(--v3-cyan) 0%, #8cf4ff 38%, var(--v3-magenta) 100%);
    box-shadow:
        0 18px 42px rgba(0, 195, 212, 0.28),
        0 0 28px rgba(255, 82, 195, 0.18);
}
.v3-action--ghost {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}
.v3-signal-strip {
    position: absolute;
    z-index: 5;
    left: clamp(16px, 5vw, 72px);
    right: clamp(16px, 5vw, 72px);
    bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(135deg, rgba(0, 195, 212, 0.26), rgba(255, 82, 195, 0.22)) border-box,
        rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 32px rgba(0, 195, 212, 0.14);
}
.v3-signal-strip span {
    min-height: 74px;
    padding: 16px 18px;
    background: rgba(6, 9, 20, 0.72);
}
.v3-signal-strip strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}
.v3-signal-strip small {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.35;
}
.v3-section {
    position: relative;
    padding: clamp(74px, 12vw, 132px) clamp(18px, 5vw, 72px);
}
.v3-section__head {
    max-width: 860px;
    margin: 0 auto clamp(32px, 6vw, 60px);
    text-align: center;
}
.v3-section__head h2,
.v3-automation-copy h2,
.v3-final-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: 0;
}
.v3-section__head p:not(.v3-section__kicker),
.v3-automation-copy p,
.v3-final-cta p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(15px, 2vw, 19px);
    line-height: 1.55;
}
.v3-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    max-width: 1400px;
    margin: 0 auto;
}
.v3-product-card {
    position: relative;
    isolation: isolate;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
        #070915;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 24px 54px rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(0, 195, 212, 0.06);
    cursor: pointer;
    transform: translateZ(0);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.v3-product-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 195, 212, 0.28), transparent 32%),
        radial-gradient(circle at 84% 12%, rgba(255, 82, 195, 0.22), transparent 30%);
    opacity: 0.82;
    pointer-events: none;
}
.v3-product-card:hover,
.v3-product-card.is-active {
    transform: translateY(-8px);
    border-color: rgba(0, 195, 212, 0.48);
    box-shadow:
        0 34px 74px rgba(0, 0, 0, 0.48),
        0 0 36px rgba(0, 195, 212, 0.18),
        0 0 28px rgba(255, 82, 195, 0.12);
}
.v3-product-card:focus-visible {
    outline: 2px solid var(--v3-cyan);
    outline-offset: 4px;
}
.v3-product-card video,
.v3-product-card img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    background: #050711;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    filter: saturate(1.12) contrast(1.06);
    transform: scale(1.01);
}
.v3-product-card__body {
    position: relative;
    z-index: 1;
    padding: 20px 20px 22px;
    background:
        linear-gradient(180deg, rgba(8, 10, 24, 0.46), rgba(8, 10, 24, 0.9)),
        radial-gradient(circle at 100% 0%, rgba(255, 82, 195, 0.12), transparent 36%);
}
.v3-product-card__body span {
    display: block;
    color: var(--v3-cyan);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 9px;
}
.v3-product-card:nth-child(even) .v3-product-card__body span {
    color: var(--v3-magenta);
}
.v3-product-card__body h3 {
    margin: 0 0 8px;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.15;
}
.v3-product-card__body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.48;
}
.v3-product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.v3-product-card__cta i {
    color: var(--v3-cyan);
    font-size: 16px;
    transition: transform 0.2s ease;
}
.v3-product-card:hover .v3-product-card__cta i,
.v3-product-card.is-active .v3-product-card__cta i {
    transform: translateX(4px);
}
.v3-product-detail {
    max-width: 1180px;
    margin: clamp(24px, 4vw, 46px) auto 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        radial-gradient(circle at 14% 0%, rgba(0, 195, 212, 0.18), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 82, 195, 0.14), transparent 32%),
        rgba(8, 10, 24, 0.78);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}
.v3-product-detail__item {
    display: none;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    gap: clamp(18px, 4vw, 54px);
    align-items: start;
    padding: clamp(24px, 5vw, 48px);
}
.v3-product-detail__item.is-active {
    display: grid;
}
.v3-product-detail__eyebrow {
    grid-column: 1 / -1;
    margin: 0 0 -20px;
    color: var(--v3-magenta);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.v3-product-detail h3 {
    grid-column: 1;
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 3.4vw, 44px);
    line-height: 1.02;
}
.v3-product-detail p:not(.v3-product-detail__eyebrow) {
    grid-column: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.58;
}
.v3-product-detail ul {
    grid-column: 2;
    grid-row: 2 / span 2;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.v3-product-detail li {
    position: relative;
    padding: 13px 14px 13px 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.42;
}
.v3-product-detail li::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 19px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--v3-cyan), var(--v3-magenta));
    box-shadow: 0 0 18px rgba(0, 195, 212, 0.48);
}
.v3-section--automation {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    max-width: 1320px;
    margin: 0 auto;
}
.v3-automation-media {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
    background: #050711;
}
.v3-automation-media video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.v3-automation-copy {
    min-width: 0;
}
.v3-process-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}
.v3-process-list span {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.3;
}
.v3-process-list i {
    color: #5ee8d3;
    font-size: 20px;
    flex-shrink: 0;
}
.v3-automation-detail {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}
.v3-automation-detail div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 4px;
    align-items: start;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background:
        linear-gradient(135deg, rgba(0, 195, 212, 0.08), rgba(255, 82, 195, 0.06)),
        rgba(255, 255, 255, 0.045);
}
.v3-automation-detail strong {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #041014;
    background: linear-gradient(135deg, var(--v3-cyan), var(--v3-magenta));
    font-size: 13px;
    box-shadow: 0 0 24px rgba(0, 195, 212, 0.18);
}
.v3-automation-detail h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.2;
}
.v3-automation-detail p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.48;
}
.v3-section--proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 30px;
}
.v3-proof-item {
    padding: clamp(22px, 3vw, 34px);
    min-height: 220px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.v3-proof-item:first-child { border-radius: 8px 0 0 8px; }
.v3-proof-item:last-child { border-radius: 0 8px 8px 0; }
.v3-proof-item strong {
    color: #5ee8d3;
    font-size: 13px;
    letter-spacing: 0.12em;
}
.v3-proof-item h3 {
    margin: 22px 0 10px;
    font-size: 22px;
    line-height: 1.16;
}
.v3-proof-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.52;
}
.v3-final-cta {
    max-width: 960px;
    margin: clamp(70px, 10vw, 120px) auto 0;
    padding: 0 clamp(18px, 5vw, 72px);
    text-align: center;
}
.v3-final-cta p {
    color: #ffd166;
    font-weight: 800;
}
.v3-final-cta .v3-action {
    margin-top: 28px;
}

@media (max-width: 1040px) {
    .v3-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .v3-section--automation { grid-template-columns: 1fr; }
    .v3-hero-impact { display: none; }
    .v3-product-detail__item {
        grid-template-columns: 1fr;
    }
    .v3-product-detail h3,
    .v3-product-detail p:not(.v3-product-detail__eyebrow),
    .v3-product-detail ul {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 720px) {
    .v3-post-hero {
        height: 100vh;
        height: 100svh;
        min-height: 0;
        max-height: 100svh;
        padding: clamp(28px, 5svh, 44px) 18px clamp(210px, 30svh, 270px);
        display: flex;
        align-items: flex-start;
    }
    .v3-web__logo { margin-bottom: 28px; }
    .v3-web__title {
        max-width: 9.8ch;
        font-size: clamp(42px, 15vw, 66px);
    }
    .v3-post-hero__eyebrow {
        max-width: 32ch;
        font-size: 10px;
        letter-spacing: 0.1em;
    }
    .v3-post-hero__actions { gap: 10px; }
    .v3-action { width: 100%; }
    .v3-signal-strip {
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: 16px;
        grid-template-columns: 1fr;
        margin: 0;
    }
    .v3-signal-strip span:nth-child(n+2) {
        padding-right: 118px;
    }
    .v3-product-grid,
    .v3-section--proof,
    .v3-process-list {
        grid-template-columns: 1fr;
    }
    .v3-product-detail__item {
        padding: 22px;
    }
    .v3-proof-item,
    .v3-proof-item:first-child,
    .v3-proof-item:last-child {
        border-radius: 8px;
    }
}

/* ---- Chat flotante ---- */
.v3-chat-launcher {
    position: fixed;
    right: 18px;
    top: 60%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 40;
    width: min(430px, calc(100vw - 36px));
    transition: width 0.28s ease, right 0.28s ease, top 0.28s ease, bottom 0.28s ease, transform 0.28s ease;
}

@media (max-width: 640px) {
    .v3-chat-launcher { right: 10px; top: 60%; bottom: auto; transform: translateY(-50%); }
    .v3-subtitles {
        bottom: clamp(60px, 16vh, 120px);
        width: calc(100vw - 24px);
        padding: 0 8px;
    }
    .v3-subtitles__text {
        font-size: clamp(0.92rem, 3.2vw, 1.05rem);
    }
}

/* ---- Chat (self-contained, no depende de landing_avatar.css) ---- */
.v3-chat-launcher .chat-container {
    display: flex;
    flex-direction: column;
    height: min(66vh, 640px);
    background:
        linear-gradient(175deg, rgba(19, 21, 46, 0.97) 0%, rgba(7, 9, 24, 0.98) 100%),
        radial-gradient(circle at 20% 0%, rgba(0, 195, 212, 0.14), transparent 34%),
        radial-gradient(circle at 86% 12%, rgba(255, 82, 195, 0.12), transparent 32%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 30px 82px rgba(0, 0, 0, 0.55),
        0 0 38px rgba(0, 195, 212, 0.12),
        0 0 30px rgba(255, 82, 195, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.v3-chat-launcher .chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background:
        linear-gradient(135deg, rgba(0, 195, 212, 0.14), rgba(255, 82, 195, 0.1)),
        rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}
.v3-chat-launcher .chat-header-main { display: flex; align-items: center; gap: 16px; min-width: 0; }
.v3-chat-launcher .chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #021016;
    background: linear-gradient(135deg, var(--v3-cyan), var(--v3-magenta));
}
.v3-chat-launcher .chat-header-info h4 { margin: 0; font-size: 16px; line-height: 1.15; }
.v3-chat-launcher .chat-status-line {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    min-width: 0;
}
.v3-chat-launcher .chat-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: 0 0 8px;
    background: #35f59a;
    box-shadow:
        0 0 0 3px rgba(53, 245, 154, 0.12),
        0 0 14px rgba(53, 245, 154, 0.44);
}
.v3-chat-launcher .chat-status-text { font-size: 13px; color: var(--v3-cyan); line-height: 1.2; }
.v3-chat-launcher .avatar-chat-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.v3-chat-launcher .avatar-chat-collapse-toggle,
.v3-chat-launcher .avatar-chat-voice-toggle {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
}
.v3-chat-launcher .avatar-chat-collapse-toggle:hover,
.v3-chat-launcher .avatar-chat-voice-toggle:hover {
    background: rgba(255, 255, 255, 0.11);
}
.v3-chat-launcher .avatar-chat-collapse-toggle i,
.v3-chat-launcher .avatar-chat-voice-toggle i { font-size: 18px; transition: transform 0.28s ease; }
.v3-chat-launcher .avatar-chat-voice-toggle.is-muted {
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.04);
}
.v3-chat-launcher .avatar-chat-voice-toggle.is-muted:hover {
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
}
.v3-chat-launcher .chat-container.is-collapsed { height: auto; }
.v3-chat-launcher .chat-container.is-collapsed .chat-messages,
.v3-chat-launcher .chat-container.is-collapsed .chat-input { display: none; }
.v3-chat-launcher .chat-messages {
    flex: 1 1 0%;
    min-height: 0;
    overflow-y: auto;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.v3-chat-launcher .chat-bubble {
    position: relative;
    font-size: 14px;
    line-height: 1.55;
    padding: 12px 16px;
    border-radius: 18px;
    max-width: min(88%, 28rem);
    overflow-wrap: anywhere;
    word-break: break-word;
    letter-spacing: 0.01em;
}
.v3-chat-launcher .chat-bubble.bot {
    align-self: flex-start;
    color: rgba(255, 255, 255, 0.92);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
        rgba(8, 10, 24, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px 18px 18px 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
.v3-chat-launcher .chat-bubble.user {
    align-self: flex-end;
    color: #eefcff;
    font-weight: 450;
    background:
        linear-gradient(145deg, rgba(0, 195, 212, 0.28) 0%, rgba(255, 82, 195, 0.16) 100%),
        rgba(5, 14, 28, 0.94);
    border: 1px solid rgba(0, 195, 212, 0.38);
    border-radius: 18px 18px 6px 18px;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.32),
        0 0 22px rgba(0, 195, 212, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.v3-chat-launcher .chat-bubble.user::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%);
    opacity: 0.55;
}
.v3-chat-launcher .chat-bubble.bot.chat-typing-bubble {
    border-radius: 18px 18px 18px 6px;
}
.v3-chat-launcher .chat-input {
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}
.v3-chat-launcher .chat-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
    font-size: 16px;
    outline: none;
}
.v3-chat-launcher .chat-input input:focus { border-color: rgba(0, 195, 212, 0.42); }
.v3-chat-launcher .chat-send-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: #021016;
    background: linear-gradient(135deg, var(--v3-cyan), var(--v3-magenta));
    font-size: 18px;
}
.v3-chat-launcher .chat-container.is-collapsed {
    height: auto;
    border-radius: 999px;
    cursor: pointer;
    background:
        linear-gradient(135deg, rgba(0, 195, 212, 0.18), rgba(255, 82, 195, 0.16)),
        rgba(8, 10, 24, 0.92);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 22px 56px rgba(0, 0, 0, 0.42),
        0 0 36px rgba(0, 195, 212, 0.24),
        0 0 34px rgba(255, 82, 195, 0.18);
}
.v3-chat-launcher .chat-container.is-collapsed .chat-header {
    padding: 12px 16px 12px 12px;
    border-bottom: none;
    background: transparent;
}
.v3-chat-launcher .chat-container.is-collapsed .chat-header-info h4 {
    font-size: 15px;
}
.v3-chat-launcher .chat-container.is-collapsed .chat-status-line {
    display: inline-flex;
    max-width: 230px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.v3-chat-launcher .chat-container.is-collapsed .chat-status-text {
    vertical-align: middle;
}
.v3-chat-launcher .v3-chat-avatar-stage {
    position: relative;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    padding: 0;
    background: #080a17;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.14),
        0 0 0 6px rgba(0, 195, 212, 0.08),
        0 0 34px rgba(0, 195, 212, 0.32),
        0 0 28px rgba(255, 82, 195, 0.24);
}
.v3-chat-launcher .chat-container:not(.is-collapsed) .v3-chat-avatar-stage {
    width: 108px;
    height: 108px;
    border-radius: 28px;
}
.v3-chat-avatar-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 36%),
        radial-gradient(circle at 74% 22%, rgba(255, 82, 195, 0.16), transparent 30%);
    pointer-events: none;
    mix-blend-mode: screen;
}
.v3-chat-avatar-stage__ring {
    position: absolute;
    inset: -2px;
    z-index: 5;
    border-radius: inherit;
    border: 2px solid rgba(0, 195, 212, 0.62);
    box-shadow: inset 0 0 18px rgba(255, 82, 195, 0.22);
    pointer-events: none;
}
/* Idle en reposo; clips de boca encima con .is-visible (misma técnica que landing_avatar_intro) */
.v3-chat-avatar-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transform: translateZ(0);
    transition: opacity 0.14s ease;
    background: #080a17;
}
.v3-chat-avatar-video.is-active {
    opacity: 1;
    z-index: 2;
}
.v3-chat-avatar-video.is-visible {
    opacity: 1;
    z-index: 4;
}
/* Sin crossfade entre clip→clip: evita mezclar dos vídeos y frames no decodificados */
.v3-chat-avatar-video.v3-chat-talk-swap-instant {
    transition: none !important;
}

/* iOS Safari: el <video> ignora border-radius del contenedor hasta un repaint (p. ej. al tocar). */
.v3-chat-launcher .chat-container.is-minibubble .v3-chat-avatar-stage,
.v3-chat-launcher .chat-container.is-collapsed .v3-chat-avatar-stage {
    overflow: hidden;
    isolation: isolate;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}
.v3-chat-launcher .chat-container.is-minibubble .v3-chat-avatar-video,
.v3-chat-launcher .chat-container.is-collapsed .v3-chat-avatar-video {
    border-radius: 50%;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}
.v3-chat-launcher .chat-container.is-minibubble .v3-chat-avatar-stage::after {
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}

@media (prefers-reduced-motion: reduce) {
    .v3-chat-avatar-video {
        transition-duration: 0.05s;
    }
    .v3-chat-avatar-video.v3-chat-talk-swap-instant {
        transition: none !important;
    }
}
.v3-chat-launcher .chat-container.is-thinking .v3-chat-avatar-stage {
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.14),
        0 0 0 8px rgba(255, 209, 102, 0.1),
        0 0 42px rgba(255, 209, 102, 0.36);
}
.v3-chat-launcher .chat-container.is-speaking .v3-chat-avatar-stage {
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.16),
        0 0 0 8px rgba(255, 82, 195, 0.1),
        0 0 52px rgba(0, 195, 212, 0.44),
        0 0 44px rgba(255, 82, 195, 0.28);
}
.v3-chat-launcher .chat-container.is-speaking .v3-chat-avatar-stage__ring,
.v3-chat-launcher .chat-container.is-thinking .v3-chat-avatar-stage__ring {
    animation: v3-chat-avatar-ring 1.2s ease-in-out infinite;
}
@keyframes v3-chat-avatar-ring {
    0%, 100% { opacity: 0.44; transform: scale(1); }
    50% { opacity: 1; transform: scale(0.94); }
}
.v3-chat-launcher .chat-typing {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.v3-chat-launcher .chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 195, 212, 0.85);
    animation: v3-chat-dot 0.9s ease-in-out infinite;
}
.v3-chat-launcher .chat-typing span:nth-child(2) { animation-delay: 0.12s; }
.v3-chat-launcher .chat-typing span:nth-child(3) { animation-delay: 0.24s; }
@keyframes v3-chat-dot {
    0%, 100% { transform: translateY(0); opacity: 0.42; }
    50% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 640px) {
    .v3-chat-launcher {
        width: 98px;
    }
    .v3-chat-launcher.is-chat-expanded {
        width: min(390px, calc(100vw - 20px));
    }
    .v3-chat-launcher .chat-container:not(.is-collapsed) {
        height: min(76vh, 620px);
    }
    .v3-chat-launcher .chat-container.avatar-chat-panel.is-collapsed {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 92px !important;
        max-width: 92px;
        margin-left: 0;
        transform: none;
        overflow: visible;
        border: none;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .v3-chat-launcher .chat-container.is-collapsed .chat-header {
        position: relative;
        display: block;
        padding: 0;
        background: transparent;
        border-bottom: none;
    }
    .v3-chat-launcher .chat-container.is-collapsed .chat-header-main {
        display: block;
    }
    .v3-chat-launcher .chat-container.is-collapsed .v3-chat-avatar-stage {
        width: 88px;
        height: 88px;
        border-radius: 50%;
        border: 2px solid rgba(0, 195, 212, 0.8);
        background:
            radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.16), transparent 28px),
            linear-gradient(135deg, #071c22, #1a1230);
        box-shadow:
            0 0 0 6px rgba(0, 195, 212, 0.1),
            0 20px 42px rgba(0, 0, 0, 0.48),
            0 0 42px rgba(0, 195, 212, 0.42),
            0 0 34px rgba(255, 82, 195, 0.28);
    }
    .v3-chat-launcher .chat-container.is-collapsed .chat-header-info,
    .v3-chat-launcher .chat-container.is-collapsed .chat-status-text {
        display: none;
    }
    .v3-chat-launcher .chat-container.is-collapsed .chat-header {
        width: fit-content;
        max-width: 100%;
    }
    .v3-chat-launcher .chat-container.is-collapsed:not(.is-minibubble) .avatar-chat-controls {
        position: absolute;
        inset: 0;
        z-index: 7;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 0;
        pointer-events: none;
    }
    .v3-chat-launcher .chat-container.is-collapsed .avatar-chat-collapse-toggle,
    .v3-chat-launcher .chat-container.is-collapsed .avatar-chat-voice-toggle {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 50%;
        pointer-events: auto;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38), 0 0 18px rgba(255, 82, 195, 0.42);
    }
    .v3-chat-launcher .chat-container.is-collapsed .avatar-chat-collapse-toggle {
        margin: 0 -5px -3px 0;
        background: linear-gradient(135deg, var(--v3-cyan), var(--v3-magenta));
        color: #061016;
    }
    .v3-chat-launcher .chat-container.is-collapsed .avatar-chat-voice-toggle {
        margin: 0 0 -3px -5px;
        background: rgba(8, 10, 24, 0.82);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38), 0 0 14px rgba(0, 195, 212, 0.22);
    }
    .v3-chat-launcher .chat-container.is-collapsed .avatar-chat-voice-toggle.is-muted {
        color: rgba(255, 255, 255, 0.5);
    }
    .v3-chat-launcher .chat-container.is-collapsed .avatar-chat-collapse-toggle i,
    .v3-chat-launcher .chat-container.is-collapsed .avatar-chat-voice-toggle i {
        font-size: 18px;
    }
    .v3-chat-launcher .chat-container:not(.is-collapsed) .v3-chat-avatar-stage {
        width: 82px;
        height: 82px;
        border-radius: 22px;
    }
    .v3-chat-launcher .chat-container:not(.is-collapsed) .chat-header {
        align-items: center;
        padding: 14px 12px 12px;
        gap: 10px;
    }
    .v3-chat-launcher .chat-container:not(.is-collapsed) .chat-header-main {
        flex: 1;
        min-width: 0;
    }
    .v3-chat-launcher .chat-container:not(.is-collapsed) .avatar-chat-controls {
        flex-shrink: 0;
    }
    .v3-chat-launcher .chat-header-info h4 {
        font-size: 14px;
        max-width: 165px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.v3-chat-launcher.is-chat-docked {
    right: 14px;
    top: auto;
    bottom: 14px;
    transform: none;
}

.v3-chat-launcher.is-chat-docked:not(.is-chat-mini):not(.is-chat-expanded) {
    width: auto;
    max-width: min(360px, calc(100vw - 28px));
}

.v3-chat-launcher.is-chat-mini {
    width: 66px;
}
.v3-chat-launcher .chat-container.is-minibubble {
    width: 66px;
    max-width: 66px;
    height: 66px;
    min-height: 66px;
    overflow: visible;
    border: none;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    cursor: pointer;
}
.v3-chat-launcher .chat-container.is-minibubble .chat-header {
    position: relative;
    display: block;
    width: 66px;
    height: 66px;
    padding: 0;
    overflow: visible;
    border-bottom: none;
    background: transparent;
}
.v3-chat-launcher .chat-container.is-minibubble .chat-header-main {
    display: block;
}
.v3-chat-launcher .chat-container.is-minibubble .chat-header::before,
.v3-chat-launcher .chat-container.is-minibubble .chat-header::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.v3-chat-launcher .chat-container.is-minibubble .chat-header::before {
    inset: 1px;
    z-index: 0;
    border: 1px solid rgba(0, 195, 212, 0.38);
    animation: v3-chat-mini-rim-pulse 2.9s ease-out infinite;
}
.v3-chat-launcher .chat-container.is-minibubble .chat-header::after {
    inset: 11px;
    z-index: 0;
    box-shadow: 0 0 34px rgba(0, 195, 212, 0.24), 0 0 28px rgba(255, 82, 195, 0.12);
}
.v3-chat-launcher .chat-container.is-minibubble .v3-chat-avatar-stage {
    position: relative;
    z-index: 1;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid transparent;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.13), transparent 42%) padding-box,
        linear-gradient(180deg, rgba(8, 12, 28, 0.94), rgba(4, 8, 18, 0.9)) padding-box,
        linear-gradient(135deg, var(--v3-cyan), rgba(255, 255, 255, 0.26) 46%, var(--v3-magenta)) border-box;
    box-shadow:
        0 0 0 7px rgba(255, 255, 255, 0.045),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -12px 28px rgba(0, 0, 0, 0.28),
        0 16px 34px rgba(0, 0, 0, 0.42),
        0 0 34px rgba(0, 195, 212, 0.24),
        0 0 28px rgba(255, 82, 195, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.v3-chat-launcher .chat-container.is-minibubble:hover .v3-chat-avatar-stage {
    transform: translateY(-2px) scale(1.035);
}
.v3-chat-launcher .chat-container.is-minibubble .v3-chat-avatar-stage__ring {
    display: none;
}
@keyframes v3-chat-mini-rim-pulse {
    0% { transform: scale(0.84); opacity: 0.76; }
    100% { transform: scale(1.32); opacity: 0; }
}
.v3-chat-launcher .chat-container.is-minibubble .chat-header-info,
.v3-chat-launcher .chat-container.is-minibubble .avatar-chat-collapse-toggle,
.v3-chat-launcher .chat-container.is-minibubble .avatar-chat-voice-toggle {
    display: none;
}
.v3-chat-launcher .chat-container.is-minibubble .avatar-chat-controls {
    position: absolute;
    right: -6px;
    bottom: -6px;
    z-index: 8;
    display: block;
}

/* Mini en reposo: solo avatar circular */
.v3-chat-launcher .chat-container.is-minibubble .avatar-chat-controls {
    display: none;
}

@media (max-width: 640px) {
    body.v3-chat-modal-open {
        overflow: hidden !important;
        overscroll-behavior: contain;
        touch-action: none;
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
    }

    .v3-chat-launcher.is-chat-expanded,
    .v3-chat-launcher.is-mobile-modal {
        position: fixed !important;
        top: var(--v3-chat-vvt, 0px) !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        z-index: 120 !important;
        width: 100vw !important;
        max-width: none !important;
        height: var(--v3-chat-vvh, 100dvh) !important;
        max-height: var(--v3-chat-vvh, 100dvh) !important;
        padding: 10px 10px 0 !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
        transform: none !important;
        background:
            radial-gradient(circle at 50% 100%, rgba(0, 195, 212, 0.2), transparent 42%),
            rgba(2, 4, 12, 0.72) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        touch-action: auto;
    }

    .v3-chat-launcher.is-mobile-modal .chat-container:not(.is-collapsed),
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) {
        width: 100% !important;
        max-width: 520px !important;
        min-width: 0 !important;
        height: min(720px, calc(var(--v3-chat-vvh, 100dvh) - 10px)) !important;
        max-height: calc(var(--v3-chat-vvh, 100dvh) - 10px) !important;
        border-radius: 22px 22px 0 0 !important;
        border-bottom: 0 !important;
        overflow: hidden !important;
        cursor: default !important;
        box-shadow:
            0 -18px 62px rgba(0, 0, 0, 0.56),
            0 0 34px rgba(0, 195, 212, 0.18),
            0 0 28px rgba(255, 82, 195, 0.14) !important;
    }

    .v3-chat-launcher.is-mobile-modal .chat-header,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .chat-header {
        padding: 12px 12px 10px !important;
        min-height: 74px;
        gap: 10px !important;
    }

    .v3-chat-launcher.is-mobile-modal .chat-header-main,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .chat-header-main {
        min-width: 0;
        flex: 1 1 auto;
        gap: 10px !important;
    }

    .v3-chat-launcher.is-mobile-modal .v3-chat-avatar-stage,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .v3-chat-avatar-stage {
        width: 52px !important;
        height: 52px !important;
        border-radius: 16px !important;
    }

    .v3-chat-launcher.is-mobile-modal .chat-header-info,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .chat-header-info {
        min-width: 0;
    }

    .v3-chat-launcher.is-mobile-modal .chat-header-info h4,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .chat-header-info h4 {
        max-width: none !important;
        font-size: 13.5px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .v3-chat-launcher.is-mobile-modal .chat-status-line,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .chat-status-line {
        max-width: min(190px, 48vw);
        overflow: hidden;
    }

    .v3-chat-launcher.is-mobile-modal .chat-status-text,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .chat-status-text {
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 12px;
    }

    .v3-chat-launcher.is-mobile-modal .avatar-chat-controls,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .avatar-chat-controls {
        gap: 6px !important;
    }

    .v3-chat-launcher.is-mobile-modal .avatar-chat-collapse-toggle,
    .v3-chat-launcher.is-mobile-modal .avatar-chat-voice-toggle,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .avatar-chat-collapse-toggle,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .avatar-chat-voice-toggle {
        width: 38px !important;
        height: 38px !important;
        border-radius: 12px !important;
    }

    .v3-chat-launcher.is-mobile-modal .chat-messages,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .chat-messages {
        flex: 1 1 auto;
        min-height: 0;
        padding: 14px 12px 12px !important;
        gap: 10px !important;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .v3-chat-launcher.is-mobile-modal .chat-bubble,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .chat-bubble {
        max-width: 92%;
        font-size: 13.5px;
        line-height: 1.45;
        padding: 10px 12px;
    }

    .v3-chat-launcher.is-mobile-modal .chat-input,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .chat-input {
        position: relative;
        z-index: 2;
        display: flex !important;
        padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px)) !important;
        gap: 8px !important;
        background:
            linear-gradient(180deg, rgba(8, 10, 24, 0.86), rgba(6, 8, 20, 0.98));
    }

    .v3-chat-launcher.is-mobile-modal .chat-input input,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .chat-input input {
        min-width: 0;
        height: 44px;
        border-radius: 12px;
        padding: 10px 12px;
        font-size: 16px;
    }

    .v3-chat-launcher.is-mobile-modal .chat-send-btn,
    .v3-chat-launcher.is-chat-expanded .chat-container:not(.is-collapsed) .chat-send-btn {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .v3-chat-launcher.is-chat-docked {
        right: 12px;
        bottom: 12px;
    }
    .v3-chat-launcher.is-chat-mini {
        width: 60px;
    }
    .v3-chat-launcher.is-chat-docked:not(.is-chat-mini):not(.is-chat-expanded) {
        width: auto;
        max-width: min(320px, calc(100vw - 24px));
    }
    .v3-chat-launcher .chat-container.is-minibubble,
    .v3-chat-launcher .chat-container.avatar-chat-panel.is-collapsed.is-minibubble {
        width: 60px !important;
        max-width: 60px;
        height: 60px;
        min-height: 60px;
    }
    .v3-chat-launcher .chat-container.is-minibubble .chat-header {
        width: 60px;
        height: 60px;
    }
    .v3-chat-launcher .chat-container.is-minibubble .v3-chat-avatar-stage,
    .v3-chat-launcher .chat-container.is-collapsed.is-minibubble .v3-chat-avatar-stage {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }
    .v3-chat-launcher .chat-container.is-minibubble .chat-header::after {
        inset: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v3-start__glow,
    .v3-start__logo-wrap,
    .v3-start__play-ring,
    .v3-start__play-wrap::before,
    .v3-start__inner,
    .v3-start__play,
    .v3-skip::before { animation: none; }
    .v3-start.is-launching .v3-start__inner { transform: none; filter: none; }
    .v3-knock__pulse { animation: none; }
    .v3-chat-launcher .chat-container.is-speaking .v3-chat-avatar-stage__ring,
    .v3-chat-launcher .chat-container.is-thinking .v3-chat-avatar-stage__ring,
    .v3-chat-launcher .chat-typing span,
    .v3-chat-launcher .chat-container.is-minibubble .chat-header::before { animation: none; }
}

/* ===================================================================== */
/* ===== Contenido web v3 (diseño mockup web_completa_v2) ============== */
/* ===================================================================== */
.v3-web {
    /* overflow visible para que el header sticky y las cabeceras sticky funcionen */
    overflow: visible;
    --v3-cyan-soft: #8cf4ff;
    --v3-magenta-soft: #ff8bd6;
    --mw-line: rgba(255, 255, 255, 0.1);
    --mw-line-strong: rgba(255, 255, 255, 0.16);
    --mw-muted: rgba(255, 255, 255, 0.62);
    --mw-card: rgba(255, 255, 255, 0.035);
    --mw-container: min(1200px, calc(100vw - 48px));
}

.v3-web img,
.v3-web video { display: block; max-width: 100%; }

.mw-container { width: var(--mw-container); margin: 0 auto; }

.mw-gradient-text {
    background: linear-gradient(95deg, var(--v3-cyan) 0%, var(--v3-cyan-soft) 30%, var(--v3-magenta) 75%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mw-kicker {
    margin: 0 0 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--v3-cyan);
}

.mw-section-title {
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 800;
    margin: 0;
}

.mw-section-lead {
    margin: 16px 0 0;
    max-width: 46ch;
    color: var(--mw-muted);
    font-size: 16px;
}

.mw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.mw-btn--sm { padding: 10px 18px; font-size: 14px; }

.mw-btn:hover { transform: translateY(-2px); }

.mw-btn--primary {
    color: #04141a;
    background: linear-gradient(95deg, var(--v3-cyan), var(--v3-magenta));
    box-shadow: 0 14px 34px rgba(0, 195, 212, 0.26), 0 0 22px rgba(255, 82, 195, 0.18);
}

.mw-btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--mw-line-strong);
    backdrop-filter: blur(8px);
}

.mw-card {
    background: var(--mw-card);
    border: 1px solid var(--mw-line);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.mw-icon-chip {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: var(--v3-magenta-soft);
    background: linear-gradient(145deg, rgba(0, 195, 212, 0.16), rgba(255, 82, 195, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mw-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--v3-cyan);
}

.mw-link:hover { gap: 10px; }

.mw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v3-magenta-soft);
    border: 1px solid rgba(255, 82, 195, 0.4);
    background: rgba(255, 82, 195, 0.08);
}

.mw-section__head { margin-bottom: 44px; }

/* Header */
.mw-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 6, 17, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mw-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 13px 0;
}

.mw-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.01em;
    color: #fff;
    text-decoration: none;
}

.mw-logo img { width: 34px; height: auto; }

.mw-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0 auto;
}

.mw-nav a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.mw-nav a i { font-size: 14px; opacity: 0.5; }

.mw-nav a:hover { color: #fff; }

.mw-header__actions { display: flex; align-items: center; gap: 14px; }

.mw-header__login { font-size: 14px; color: rgba(255, 255, 255, 0.8); text-decoration: none; }

.mw-header__login:hover { color: #fff; }

.mw-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--mw-line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* Hero */
.mw-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: clamp(40px, 7vh, 80px) 0 clamp(40px, 6vh, 64px);
}

.mw-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.mw-hero__fade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5, 6, 17, 0.92) 0%, rgba(5, 6, 17, 0.55) 42%, rgba(5, 6, 17, 0) 70%),
        linear-gradient(0deg, rgba(5, 6, 17, 0.9) 0%, rgba(5, 6, 17, 0) 34%);
}

.mw-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 32px;
    align-items: center;
    flex: 1;
}

.mw-hero__title {
    font-size: clamp(40px, 5.6vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.mw-hero__subtitle {
    margin: 22px 0 0;
    max-width: 42ch;
    font-size: clamp(15px, 1.6vw, 17px);
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
}

.mw-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.mw-hero__float {
    justify-self: end;
    align-self: end;
    max-width: 280px;
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(8, 10, 24, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.4);
}

.mw-hero__float-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--v3-cyan);
    background: linear-gradient(145deg, rgba(0, 195, 212, 0.26), rgba(255, 82, 195, 0.22));
}

.mw-hero__float strong { display: block; font-size: 14px; margin-bottom: 5px; }

.mw-hero__float p { margin: 0; font-size: 12.5px; line-height: 1.45; color: var(--mw-muted); }

.mw-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: clamp(28px, 5vh, 48px);
}

.mw-stat { display: flex; align-items: center; gap: 13px; }

.mw-stat__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 19px;
    color: var(--v3-cyan);
    background: rgba(0, 195, 212, 0.1);
    border: 1px solid rgba(0, 195, 212, 0.22);
}

.mw-stat strong { display: block; font-size: clamp(18px, 2.2vw, 23px); font-weight: 800; line-height: 1.1; }

.mw-stat span { font-size: 12.5px; color: var(--mw-muted); }

/* Secciones */
.mw-section { padding: clamp(60px, 9vw, 104px) 0; }

.mw-pain {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 2.2fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.mw-pain__head { position: sticky; top: 100px; }

.mw-pain__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mw-pain-card { padding: 22px; }

.mw-pain-card .mw-icon-chip { margin-bottom: 16px; }

.mw-pain-card h3 { font-size: 15px; margin: 0 0 8px; }

.mw-pain-card p { margin: 0; font-size: 13px; color: var(--mw-muted); }

/* Productos */
.mw-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mw-product { overflow: hidden; display: flex; flex-direction: column; }

.mw-product__shot {
    padding: 14px 14px 0;
    background: linear-gradient(180deg, rgba(0, 195, 212, 0.06), transparent);
}

.mw-product__shot img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    border: 1px solid var(--mw-line);
}

.mw-product__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }

.mw-product__tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v3-cyan);
}

.mw-product h3 { font-size: 16px; margin: 9px 0 7px; line-height: 1.25; }

.mw-product p { margin: 0 0 16px; font-size: 13px; color: var(--mw-muted); flex: 1; }

.mw-integrations {
    margin-top: 20px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mw-integrations__viz {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 24px;
    color: var(--v3-cyan);
    background: rgba(0, 195, 212, 0.1);
    border: 1px solid rgba(0, 195, 212, 0.2);
}

.mw-integrations__text { flex: 1; min-width: 180px; }

.mw-integrations__text strong { display: block; font-size: 15px; }

.mw-integrations__text p { margin: 3px 0 0; font-size: 13px; color: var(--mw-muted); }

/* Automatización */
.mw-automation {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1.15fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.mw-checklist {
    margin: 26px 0 30px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.mw-checklist li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
}

.mw-checklist i { color: var(--v3-cyan); font-size: 19px; flex-shrink: 0; }

.mw-flow {
    padding: 26px 22px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 16px;
    align-items: start;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 195, 212, 0.08), transparent 60%),
        rgba(4, 6, 16, 0.55);
}

.mw-flow__col { display: flex; flex-direction: column; gap: 12px; }

.mw-flow__col--center { align-items: center; }

.mw-flow__label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mw-muted);
    text-align: center;
    margin-bottom: 2px;
}

.mw-flow__node {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 13px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 13, 30, 0.9);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.mw-flow__node i { font-size: 16px; color: var(--v3-cyan); flex-shrink: 0; }

.mw-flow__node small {
    display: block;
    font-weight: 500;
    font-size: 10.5px;
    color: var(--mw-muted);
    margin-top: 2px;
}

.mw-flow__node--ai {
    border-color: rgba(0, 195, 212, 0.45);
    box-shadow: 0 0 24px rgba(0, 195, 212, 0.14);
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.mw-flow__node--loop {
    border-color: rgba(255, 82, 195, 0.45);
    box-shadow: 0 0 24px rgba(255, 82, 195, 0.14);
    flex-direction: column;
    align-items: flex-start;
}

.mw-flow__node--loop i { color: var(--v3-magenta); }

.mw-flow__diamond {
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    transform: rotate(45deg);
    border: 1px solid rgba(255, 82, 195, 0.45);
    border-radius: 16px;
    background: rgba(10, 13, 30, 0.9);
    box-shadow: 0 0 24px rgba(255, 82, 195, 0.12);
    margin: 8px 0;
    color: #fff;
}

.mw-flow__diamond > * { transform: rotate(-45deg); }

.mw-flow__pipe {
    width: 2px;
    height: 18px;
    background: linear-gradient(180deg, var(--v3-cyan), var(--v3-magenta));
    box-shadow: 0 0 12px rgba(0, 195, 212, 0.4);
    border-radius: 2px;
}

.mw-flow__pipe--loop { background: linear-gradient(180deg, var(--v3-magenta), var(--v3-cyan)); }

/* Por qué */
.mw-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mw-why { padding: 24px; }

.mw-why .mw-icon-chip { margin-bottom: 18px; }

.mw-why h3 { font-size: 16px; margin: 0 0 8px; }

.mw-why p { margin: 0; font-size: 13px; color: var(--mw-muted); }

/* 4 pasos */
.mw-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mw-step { position: relative; padding: 26px 22px 24px; overflow: hidden; }

.mw-step__num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, rgba(0, 195, 212, 0.5), rgba(255, 82, 195, 0.4));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.55;
}

.mw-step__art {
    position: relative;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    font-size: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 30% 25%, rgba(0, 195, 212, 0.5), transparent 60%),
        radial-gradient(circle at 75% 80%, rgba(255, 82, 195, 0.45), transparent 60%),
        rgba(8, 11, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), inset 0 0 22px rgba(0, 195, 212, 0.14);
}

.mw-step__art::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 195, 212, 0.6), transparent 50%, rgba(255, 82, 195, 0.6));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.mw-step h3 { font-size: 17px; margin: 0 0 8px; }

.mw-step p { margin: 0; font-size: 13px; color: var(--mw-muted); }

/* Logos */
.mw-logos-section { padding: clamp(40px, 6vw, 64px) 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }

.mw-logos__kicker { text-align: center; color: var(--mw-muted); }

.mw-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(26px, 5vw, 56px);
    margin-top: 26px;
    opacity: 0.5;
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* CTA final */
.mw-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(56px, 9vw, 96px) 0 clamp(80px, 10vw, 120px);
}

.mw-cta__glow {
    position: absolute;
    left: 50%;
    bottom: -40%;
    width: 120%;
    height: 90%;
    transform: translateX(-50%);
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(0, 195, 212, 0.18), rgba(255, 82, 195, 0.12) 40%, transparent 70%);
}

.mw-cta__inner { position: relative; z-index: 1; }

.mw-cta .mw-kicker { color: #ffd166; }

.mw-cta__title { font-size: clamp(32px, 5vw, 52px); }

.mw-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

.mw-cta__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 26px;
    font-size: 13px;
    color: var(--mw-muted);
}

.mw-cta__trust span { display: inline-flex; align-items: center; gap: 6px; }

.mw-cta__trust i { color: var(--v3-cyan); }

/* Responsive */
@media (max-width: 1120px) {
    .mw-hero__inner { grid-template-columns: 1fr; }
    .mw-hero__float { display: none; }
    .mw-pain { grid-template-columns: 1fr; }
    .mw-pain__head { position: static; }
    .mw-pain__grid { grid-template-columns: repeat(2, 1fr); }
    .mw-product-grid { grid-template-columns: repeat(2, 1fr); }
    .mw-why-grid { grid-template-columns: repeat(2, 1fr); }
    .mw-steps { grid-template-columns: repeat(2, 1fr); }
    .mw-automation { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .mw-nav, .mw-header__login, .mw-header__actions .mw-btn { display: none; }
    .mw-nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
    .mw-header__inner { gap: 12px; position: relative; }
    .mw-nav-panel.is-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px 20px 18px;
        background: rgba(5, 6, 17, 0.97);
        border-bottom: 1px solid var(--mw-line);
    }
    .mw-nav-panel.is-open a { padding: 10px 0; }
    .mw-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .mw-flow { grid-template-columns: 1fr; }
    .mw-flow__col--center { order: -1; }
}

@media (max-width: 640px) {
    .v3-web { --mw-container: calc(100vw - 32px); }
    .mw-pain__grid, .mw-product-grid, .mw-why-grid, .mw-steps { grid-template-columns: 1fr; }
    .mw-hero__actions .mw-btn, .mw-cta__actions .mw-btn { width: 100%; }
}

/* ===================================================================== */
/* ===== Nueva capa comercial post-video ================================= */
/* ===================================================================== */
.wm-page {
    --wm-bg: #06070c;
    --wm-bg-soft: #0d1018;
    --wm-ink: #f6f8fb;
    --wm-muted: rgba(246, 248, 251, 0.68);
    --wm-subtle: rgba(246, 248, 251, 0.48);
    --wm-line: rgba(246, 248, 251, 0.13);
    --wm-line-strong: rgba(246, 248, 251, 0.22);
    --wm-panel: rgba(255, 255, 255, 0.045);
    --wm-panel-strong: rgba(255, 255, 255, 0.075);
    --wm-cyan: #00c3d4;
    --wm-magenta: #ff52c3;
    --wm-green: #36d399;
    --wm-amber: #f5b942;
    --wm-blue: #72a7ff;
    --wm-container: min(1180px, calc(100vw - 48px));
    overflow-x: clip;
    background:
        linear-gradient(180deg, #06070c 0%, #0d1018 36%, #06070c 100%);
    color: var(--wm-ink);
}

.v3-web.wm-page {
    padding-bottom: 0;
}

.wm-site,
.wm-site * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.mw-legacy-web[hidden] {
    display: none !important;
}

.wm-container {
    width: 100%;
    max-width: 1228px;
    padding-inline: 24px;
    margin: 0 auto;
}

.wm-site a {
    color: inherit;
    text-decoration: none;
}

.wm-site img,
.wm-site video {
    display: block;
    max-width: 100%;
}

.wm-kicker,
.wm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--wm-cyan);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.wm-section {
    padding: 88px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.wm-section--tight {
    padding-top: 72px;
}

.wm-section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.wm-section-head--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
    gap: 36px;
    align-items: end;
}

.wm-section-head h2,
.wm-detail-copy h2,
.wm-authority__copy h2,
.wm-final-cta h2,
.wm-automation-grid h2 {
    margin: 0;
    font-size: 2.5rem;
    line-height: 1.08;
    font-weight: 830;
}

.wm-section-head p,
.wm-lead,
.wm-detail-copy > p,
.wm-authority__copy > p,
.wm-final-cta .wm-cta-note {
    margin: 14px 0 0;
    color: var(--wm-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.wm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    isolation: isolate;
    min-height: 46px;
    padding: 13px 18px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font: inherit;
    font-size: 0.95rem;
    font-weight: 850;
    cursor: pointer;
    white-space: normal;
    text-align: center;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.wm-btn::before,
.wm-btn::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    pointer-events: none;
}

.wm-btn::before {
    inset: -34px;
    z-index: -2;
    background: conic-gradient(from 90deg, var(--wm-cyan), transparent 28%, transparent 50%, var(--wm-magenta), transparent 78%, var(--wm-cyan));
    opacity: 0.66;
    animation: wm-btn-spin 6.4s linear infinite;
    transition: opacity 0.18s ease;
}

.wm-btn::after {
    inset: 1px;
    z-index: -1;
    background: linear-gradient(180deg, rgba(7, 10, 24, 0.96), rgba(3, 5, 14, 0.92));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.wm-btn i {
    color: var(--wm-cyan);
    font-size: 1.05em;
}

.wm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36), 0 0 26px rgba(0, 195, 212, 0.16), 0 0 22px rgba(255, 82, 195, 0.12);
}

.wm-btn:hover::before {
    opacity: 0.94;
}

.wm-btn--sm {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 0.85rem;
}

.wm-btn--primary {
    color: #fff;
    box-shadow: 0 18px 42px rgba(0, 195, 212, 0.18), 0 0 32px rgba(255, 82, 195, 0.12);
}

.wm-btn--primary::before {
    opacity: 0.86;
}

.wm-btn--secondary {
    color: rgba(255, 255, 255, 0.88);
}

.wm-btn--secondary::before {
    opacity: 0.34;
}

.wm-btn--secondary::after {
    background: linear-gradient(180deg, rgba(7, 10, 24, 0.9), rgba(3, 5, 14, 0.86));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13);
}

.wm-btn--secondary:hover {
    color: #fff;
}

@keyframes wm-btn-spin {
    to { transform: rotate(1turn); }
}

.wm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.wm-actions--center {
    justify-content: center;
}

/* Header */
.wm-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(6, 7, 12, 0.82);
    border-bottom: 1px solid var(--wm-line);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.wm-header__inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.wm-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 850;
}

.wm-logo img {
    width: 98px;
    height: auto;
}

.wm-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.wm-nav a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
    font-weight: 650;
}

.wm-nav a:hover {
    color: #fff;
}

.wm-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 12px;
}

.wm-header__link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 700;
}

.wm-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--wm-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.25rem;
}

/* Hero */
.wm-hero {
    position: relative;
    min-height: max(720px, calc(100svh - 66px));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 88px 0 34px;
}

.wm-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.74;
}

.wm-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(1280px, calc(100vw - 64px));
    grid-template-columns: minmax(420px, 0.82fr) minmax(620px, 1.18fr);
    gap: 40px;
    align-items: center;
}

.wm-hero__copy {
    max-width: 800px;
    min-width: 0;
}

.wm-hero h1 {
    margin: 0;
    max-width: 780px;
    font-size: 4rem;
    line-height: 1.02;
    font-weight: 880;
}

.wm-hero h1 span {
    display: block;
}

.wm-hero__copy p {
    margin: 22px 0 0;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.7;
}

.wm-hero__system {
    position: relative;
    align-self: center;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background:
        radial-gradient(circle at 82% 10%, rgba(255, 82, 195, 0.22), transparent 42%),
        radial-gradient(circle at 12% 18%, rgba(0, 195, 212, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
        rgba(5, 8, 18, 0.72);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
}

.wm-hero__system::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 3px solid var(--wm-cyan);
    border-radius: inherit;
    pointer-events: none;
}

.wm-hero__system-head {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.wm-hero__system-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 7px 9px;
    border-radius: 8px;
    color: #071014;
    background: var(--wm-cyan);
    font-size: 0.78rem;
    font-weight: 850;
}

.wm-hero__system-head p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.55;
}

.wm-ai-compare {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.wm-ai-compare__card {
    min-height: 204px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
}

.wm-ai-compare__card--manual {
    opacity: 0.78;
}

.wm-ai-compare__card--system {
    border-color: rgba(0, 195, 212, 0.34);
    background:
        linear-gradient(180deg, rgba(0, 195, 212, 0.14), rgba(255, 82, 195, 0.06)),
        rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 0 0 1px rgba(0, 195, 212, 0.08);
}

.wm-ai-compare__card span {
    width: fit-content;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 8px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.wm-ai-compare__card--system span {
    color: #061016;
    background: var(--wm-green);
    border-color: transparent;
}

.wm-ai-compare__card strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    line-height: 1.32;
}

.wm-ai-compare__card small {
    color: var(--wm-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.wm-ai-compare__bridge {
    width: 76px;
    min-height: 76px;
    display: grid;
    place-items: center;
    gap: 4px;
    border-radius: 50%;
    color: #061016;
    background: linear-gradient(135deg, var(--wm-cyan), var(--wm-magenta));
    box-shadow: 0 0 34px rgba(0, 195, 212, 0.22), 0 0 34px rgba(255, 82, 195, 0.16);
    font-weight: 900;
}

.wm-ai-compare__bridge i {
    font-size: 1.25rem;
}

.wm-ai-compare__bridge span {
    font-size: 0.65rem;
    line-height: 1;
    text-transform: uppercase;
}

.wm-hero__system-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.wm-hero__system-strip span {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 9px 10px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.78rem;
    font-weight: 780;
    line-height: 1.28;
}

.wm-hero__system-strip i {
    color: var(--wm-cyan);
    flex: 0 0 auto;
}

.wm-hero__signals {
    display: grid;
    gap: 10px;
    align-self: start;
    margin-bottom: 92px;
}

.wm-hero__signals a,
.wm-hero__signals .wm-hero__signal {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
}

.wm-hero__signal {
    width: 100%;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.wm-hero__signal:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.wm-hero__signals i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: #061016;
    background: var(--wm-cyan);
}

.wm-hero__signals a:nth-child(2) i,
.wm-hero__signals .wm-hero__signal:nth-child(2) i { background: var(--wm-green); }
.wm-hero__signals a:nth-child(3) i,
.wm-hero__signals .wm-hero__signal:nth-child(3) i { background: var(--wm-amber); }
.wm-hero__signals a:nth-child(4) i,
.wm-hero__signals .wm-hero__signal:nth-child(4) i { background: var(--wm-magenta); color: #fff; }

.wm-hero__signals span {
    font-size: 0.95rem;
    font-weight: 760;
}

.wm-hero__proof {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 44px;
}

.wm-hero__proof span {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wm-hero__proof i {
    color: var(--wm-green);
    flex: 0 0 auto;
}

/* Pain */
.wm-pain-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.wm-pain-card,
.wm-product-card,
.wm-credential-grid article,
.wm-step-grid article,
.wm-faq-list details {
    border-radius: 8px;
    border: 1px solid var(--wm-line);
    background: var(--wm-panel);
}

.wm-pain-card {
    min-height: 208px;
    padding: 20px;
}

.wm-pain-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 8px;
    color: #061016;
    background: var(--wm-cyan);
    font-size: 1.3rem;
}

.wm-pain-card:nth-child(2) i,
.wm-pain-card:nth-child(6) i { background: var(--wm-green); }
.wm-pain-card:nth-child(3) i { background: var(--wm-amber); }
.wm-pain-card:nth-child(4) i { background: var(--wm-blue); }
.wm-pain-card:nth-child(5) i { background: var(--wm-magenta); color: #fff; }

.wm-pain-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.25;
}

.wm-pain-card p {
    margin: 0;
    color: var(--wm-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Product cards */
.wm-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.wm-product-card {
    --accent: var(--wm-cyan);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.wm-product-card--reservify { --accent: var(--wm-green); }
.wm-product-card--gest { --accent: var(--wm-amber); }
.wm-product-card--reach { --accent: var(--wm-magenta); }

.wm-product-card__media {
    padding: 12px 12px 0;
    border-top: 3px solid var(--accent);
}

.wm-product-card__media img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    border: 1px solid var(--wm-line);
    background: #111827;
}

.wm-product-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wm-product-card__body > span {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.wm-product-card h3 {
    margin: 9px 0 8px;
    font-size: 1.12rem;
    line-height: 1.25;
}

.wm-product-card p {
    margin: 0;
    color: var(--wm-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    flex: 1;
}

.wm-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.wm-chip-row b {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 8px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
}

.wm-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 800;
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

.wm-text-link:hover {
    text-decoration: underline;
}

/* Details */
.wm-product-detail {
    --accent: var(--wm-cyan);
    padding: 86px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.045);
    background:
        linear-gradient(90deg, rgba(0, 195, 212, 0.05), transparent 36%),
        var(--wm-bg);
}

.wm-product-detail--reservify {
    --accent: var(--wm-green);
    background: linear-gradient(90deg, transparent 0%, rgba(54, 211, 153, 0.055) 68%, transparent 100%), #080b11;
}

.wm-product-detail--gest {
    --accent: var(--wm-amber);
    background: linear-gradient(90deg, rgba(245, 185, 66, 0.055), transparent 36%), #07090f;
}

.wm-product-detail--reach {
    --accent: var(--wm-magenta);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 82, 195, 0.06) 70%, transparent 100%), #080812;
}

.wm-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
    gap: 44px;
    align-items: center;
}

.wm-detail-grid--flip .wm-detail-copy { order: 2; }
.wm-detail-grid--flip .wm-detail-media { order: 1; }

.wm-detail-copy .wm-kicker {
    color: var(--accent);
}

.wm-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.wm-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--wm-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.wm-feature-list i {
    color: var(--accent);
    flex: 0 0 auto;
    margin-top: 2px;
    font-size: 1.1rem;
}

.wm-feature-list span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.45;
}

.wm-detail-media {
    position: relative;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--wm-line);
    background: var(--wm-panel-strong);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.35);
}

.wm-detail-media::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 3px solid var(--accent);
    border-radius: inherit;
    pointer-events: none;
}

.wm-detail-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Product detail modal */
.wm-product-modal:not([open]) {
    display: none !important;
}

.wm-product-modal[open] {
    width: min(1120px, calc(100vw - 32px));
    max-width: none;
    max-height: min(92dvh, 920px);
    height: min(92dvh, 920px);
    margin: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: transparent;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
}

.wm-product-modal::backdrop {
    background: rgba(4, 5, 10, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.wm-product-modal__shell {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    max-height: 100%;
    border-radius: inherit;
    overflow: hidden;
    background: var(--wm-bg);
}

.wm-product-modal__shell[data-wm-product="factu"] {
    background:
        linear-gradient(90deg, rgba(0, 195, 212, 0.05), transparent 36%),
        var(--wm-bg);
}

.wm-product-modal__shell[data-wm-product="reservify"] {
    background:
        linear-gradient(90deg, transparent 0%, rgba(54, 211, 153, 0.055) 68%, transparent 100%),
        #080b11;
}

.wm-product-modal__shell[data-wm-product="gest"] {
    background:
        linear-gradient(90deg, rgba(245, 185, 66, 0.055), transparent 36%),
        #07090f;
}

.wm-product-modal__shell[data-wm-product="reach"] {
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 82, 195, 0.06) 70%, transparent 100%),
        #080812;
}

.wm-product-modal .wm-product-modal__panel.wm-product-detail {
    background: transparent;
    border-top: none;
    min-height: 100%;
    box-sizing: border-box;
}

.wm-product-modal__header {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    pointer-events: none;
}

.wm-product-modal__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(8, 10, 24, 0.72);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
}

.wm-product-modal__close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.wm-product-modal__close i {
    font-size: 1.2rem;
}

.wm-product-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.wm-product-modal__panel {
    padding: 34px 34px 40px;
    border-top: none;
}

.wm-product-modal__panel[hidden] {
    display: none !important;
}

.wm-product-modal .wm-detail-grid {
    gap: 34px;
}

/* Automation */
.wm-automation-section {
    background: #0b0d12;
}

.wm-automation-grid,
.wm-authority-grid,
.wm-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
    gap: 44px;
    align-items: start;
}

.wm-process-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--wm-line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.wm-process-board div {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.wm-process-board i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #061016;
    background: var(--wm-cyan);
    font-size: 1.15rem;
}

.wm-process-board div:nth-child(2) i,
.wm-process-board div:nth-child(5) i { background: var(--wm-amber); }
.wm-process-board div:nth-child(3) i { background: var(--wm-green); }
.wm-process-board div:nth-child(4) i { background: var(--wm-blue); }
.wm-process-board div:nth-child(6) i { background: var(--wm-magenta); color: #fff; }

.wm-process-board span {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 760;
    font-size: 0.95rem;
}

.wm-automation-lanes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--wm-line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.wm-lane {
    position: relative;
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 304px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.048);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.wm-lane--core {
    background:
        linear-gradient(180deg, rgba(0, 195, 212, 0.13), rgba(255, 82, 195, 0.06)),
        rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 195, 212, 0.24);
}

.wm-lane__label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 26px;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--wm-cyan);
    background: rgba(0, 195, 212, 0.1);
    border: 1px solid rgba(0, 195, 212, 0.2);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.wm-lane b {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-height: 46px;
    padding: 11px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.88rem;
    line-height: 1.3;
}

.wm-lane b i {
    color: var(--wm-green);
    font-size: 1.05rem;
    flex: 0 0 auto;
    margin-top: 1px;
}

.wm-automation-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--wm-line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 18%, rgba(0, 195, 212, 0.14), transparent 38%),
        radial-gradient(circle at 78% 72%, rgba(255, 82, 195, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028));
    overflow: hidden;
}

.wm-automation-map__rail {
    position: absolute;
    left: 12%;
    right: 12%;
    top: 108px;
    height: 2px;
    background: linear-gradient(90deg, var(--wm-cyan), var(--wm-green), var(--wm-magenta));
    opacity: 0.48;
}

.wm-auto-node {
    position: relative;
    z-index: 1;
    min-height: 258px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(7, 10, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
}

.wm-auto-node--core {
    background:
        linear-gradient(180deg, rgba(0, 195, 212, 0.14), rgba(255, 82, 195, 0.07)),
        rgba(7, 10, 18, 0.78);
    border-color: rgba(0, 195, 212, 0.28);
}

.wm-auto-node > span {
    width: fit-content;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--wm-cyan);
    background: rgba(0, 195, 212, 0.1);
    border: 1px solid rgba(0, 195, 212, 0.2);
    font-size: 0.72rem;
    font-weight: 900;
}

.wm-auto-node i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #061016;
    background: var(--wm-green);
    font-size: 1.35rem;
}

.wm-auto-node--core i {
    background: var(--wm-cyan);
}

.wm-auto-node:nth-of-type(3) i {
    background: var(--wm-magenta);
    color: #fff;
}

.wm-auto-node h3 {
    margin: 0;
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.25;
}

.wm-auto-node p {
    margin: 0;
    color: var(--wm-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.wm-auto-outcomes {
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 2px;
}

.wm-auto-outcomes span {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.8rem;
    font-weight: 760;
    line-height: 1.28;
}

.wm-auto-outcomes i {
    color: var(--wm-green);
    flex: 0 0 auto;
}

/* Conversion direction: before/after */
.wm-before-after {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0, 195, 212, 0.045) 1px, transparent 1px) 0 0 / 40px 40px,
        linear-gradient(0deg, rgba(255, 82, 195, 0.035) 1px, transparent 1px) 0 0 / 40px 40px,
        linear-gradient(135deg, rgba(255, 82, 195, 0.12), rgba(0, 195, 212, 0.06) 48%, rgba(54, 211, 153, 0.06)),
        rgba(6, 8, 15, 0.72);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.wm-before-after__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 48px;
    padding: 8px 10px 14px;
    border-bottom: 1px solid var(--wm-line);
}

.wm-before-after__head span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 0 7px;
    border: 0;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--wm-cyan), var(--wm-magenta)) 1;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 880;
    text-transform: uppercase;
}

.wm-before-after__head span i {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 195, 212, 0.18), rgba(255, 82, 195, 0.16));
    color: #fff;
    font-size: 0.85rem;
}

.wm-before-after__head strong {
    max-width: 320px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
    text-align: right;
}

.wm-before-after__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
    padding-top: 14px;
}

.wm-ba-card {
    display: flex;
    flex-direction: column;
    min-height: 372px;
    padding: 18px;
    border: 1px solid var(--wm-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.wm-ba-card--manual {
    border-color: rgba(255, 82, 195, 0.34);
    background:
        linear-gradient(145deg, rgba(255, 82, 195, 0.1), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.035);
}

.wm-ba-card--system {
    border-color: rgba(0, 195, 212, 0.42);
    background:
        linear-gradient(160deg, rgba(0, 195, 212, 0.14), rgba(54, 211, 153, 0.09), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.035);
    box-shadow: inset 3px 0 0 rgba(0, 195, 212, 0.74);
}

.wm-ba-card > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    min-height: 30px;
    padding: 5px 9px;
    border-radius: 8px;
    color: var(--wm-subtle);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 850;
}

.wm-ba-card--system > span {
    color: var(--wm-cyan);
    background: rgba(0, 195, 212, 0.1);
}

.wm-ba-card h3 {
    margin: 18px 0 18px;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.14;
}

.wm-ba-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wm-ba-card li {
    position: relative;
    padding-left: 26px;
    color: var(--wm-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.wm-ba-card li::before {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--wm-magenta);
    font-family: "tabler-icons";
    content: "\ea5f";
}

.wm-ba-card--system li::before {
    color: var(--wm-green);
    content: "\ea5e";
}

.wm-ba-bridge {
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    place-items: center;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 58px;
    min-height: 220px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--wm-cyan);
    box-shadow: none;
}

.wm-ba-bridge__line {
    width: 1px;
    min-height: 52px;
    flex: 1 1 52px;
    background: linear-gradient(180deg, transparent, rgba(0, 195, 212, 0.54), rgba(255, 82, 195, 0.34), transparent);
}

.wm-ba-bridge__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 195, 212, 0.34);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.18), transparent 38%),
        linear-gradient(135deg, rgba(0, 195, 212, 0.20), rgba(255, 82, 195, 0.12)),
        rgba(6, 8, 15, 0.92);
    box-shadow: 0 0 0 6px rgba(0, 195, 212, 0.035), 0 16px 34px rgba(0, 0, 0, 0.26);
}

.wm-ba-bridge__mark i {
    color: var(--wm-cyan);
    font-size: 1.18rem;
}

.wm-ba-bridge__label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wm-ba-status {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.84rem;
    line-height: 1.25;
}

.wm-ba-status i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.wm-ba-status--manual {
    border: 1px solid rgba(255, 82, 195, 0.22);
    background: rgba(255, 82, 195, 0.08);
    color: #ffd9f1;
}

.wm-ba-status--manual i {
    background: rgba(255, 82, 195, 0.13);
    color: var(--wm-magenta);
}

.wm-ba-status--system {
    border: 1px solid rgba(54, 211, 153, 0.26);
    background: rgba(54, 211, 153, 0.08);
    color: #e5fff4;
}

.wm-ba-status--system i {
    background: rgba(54, 211, 153, 0.13);
    color: var(--wm-green);
}

.wm-before-after__outcomes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.wm-before-after__outcomes span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--wm-muted);
    font-size: 0.76rem;
    font-weight: 780;
    text-align: center;
}

.wm-before-after__outcomes i {
    color: var(--wm-cyan);
}

.wm-conversion-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(20px, 4vw, 34px);
    border: 1px solid var(--wm-line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0, 195, 212, 0.045) 1px, transparent 1px) 0 0 / 40px 40px,
        linear-gradient(0deg, rgba(255, 82, 195, 0.035) 1px, transparent 1px) 0 0 / 40px 40px,
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.wm-conversion-panel__head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.wm-conversion-panel__head h3 {
    margin: 0;
    max-width: 670px;
    color: #fff;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.3;
    font-weight: 800;
}

.wm-conversion-panel__head > span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 82, 195, 0.28);
    border-radius: 8px;
    background: rgba(255, 82, 195, 0.09);
    color: #ffd9f1;
    font-size: 0.82rem;
    font-weight: 860;
    white-space: nowrap;
}

.wm-case-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.wm-case-strip article {
    position: relative;
    overflow: hidden;
    min-width: 0;
    min-height: 158px;
    padding: 18px;
    border: 1px solid var(--wm-line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
        rgba(6, 8, 15, 0.6);
}

.wm-case-strip article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(var(--wm-cyan), var(--wm-magenta));
}

.wm-case-strip i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border-radius: 8px;
    background: rgba(0, 195, 212, 0.1);
    color: var(--wm-cyan);
    font-size: 1.26rem;
}

.wm-case-strip article:nth-child(2) i {
    background: rgba(54, 211, 153, 0.1);
    color: var(--wm-green);
}

.wm-case-strip article:nth-child(3) i {
    background: rgba(245, 185, 66, 0.11);
    color: var(--wm-amber);
}

.wm-case-strip article:nth-child(4) i {
    background: rgba(255, 82, 195, 0.11);
    color: var(--wm-magenta);
}

.wm-case-strip strong {
    display: block;
    min-width: 0;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.wm-case-strip span {
    display: block;
    min-width: 0;
    margin-top: 10px;
    color: var(--wm-muted);
    font-size: 0.9rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

/* Authority and method */
.wm-authority {
    background: #070910;
}

.wm-credential-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.wm-credential-grid article {
    padding: 18px;
}

.wm-credential-grid i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 8px;
    color: #061016;
    background: var(--wm-green);
}

.wm-credential-grid article:nth-child(2) i { background: var(--wm-blue); }
.wm-credential-grid article:nth-child(3) i { background: var(--wm-amber); }
.wm-credential-grid article:nth-child(4) i { background: var(--wm-magenta); color: #fff; }

.wm-credential-grid strong,
.wm-step-grid h3 {
    display: block;
    font-size: 1rem;
    margin: 0 0 7px;
}

.wm-credential-grid span,
.wm-step-grid p {
    color: var(--wm-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.wm-step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.wm-step-grid article {
    position: relative;
    min-height: 244px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wm-step-grid article > span {
    position: absolute;
    right: 16px;
    top: 14px;
    color: rgba(255, 255, 255, 0.16);
    font-size: 2.4rem;
    font-weight: 880;
    line-height: 1;
}

.wm-step-grid i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 8px;
    color: #061016;
    background: var(--wm-cyan);
    font-size: 1.3rem;
}

.wm-step-grid article:nth-child(2) i { background: var(--wm-green); }
.wm-step-grid article:nth-child(3) i { background: var(--wm-amber); }
.wm-step-grid article:nth-child(4) i { background: var(--wm-magenta); color: #fff; }

.wm-step-grid small {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    margin-top: auto;
    padding: 5px 8px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.76rem;
    font-weight: 780;
}

/* FAQ and CTA */
.wm-faq {
    background: #0b0d12;
}

.wm-faq-list {
    display: grid;
    gap: 10px;
}

.wm-faq-list details {
    padding: 0;
    overflow: hidden;
}

.wm-faq-list summary {
    cursor: pointer;
    padding: 18px 20px;
    color: #fff;
    font-weight: 780;
}

.wm-faq-list summary::marker {
    color: var(--wm-cyan);
}

.wm-faq-list p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--wm-muted);
    line-height: 1.6;
}

.wm-final-cta {
    padding: 92px 0 96px;
    text-align: center;
    background:
        linear-gradient(180deg, #0b0d12, #06070c 62%),
        #06070c;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.wm-final-cta h2 {
    max-width: 900px;
    margin: 0 auto;
}

.wm-cta-note {
    max-width: 660px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.wm-footer {
    padding: 64px 0 28px;
    background:
        linear-gradient(180deg, #06070c, #080b13);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.wm-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
    gap: 44px;
    align-items: start;
}

.wm-footer__brand {
    max-width: 560px;
}

.wm-footer__brand img {
    width: 112px;
    margin-bottom: 22px;
}

.wm-footer__brand h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.12;
    font-weight: 830;
}

.wm-footer__brand p {
    margin: 16px 0 0;
    color: var(--wm-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.wm-footer__brand .wm-btn {
    margin-top: 28px;
}

.wm-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.wm-footer-card {
    position: relative;
    min-height: 260px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--wm-line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.wm-footer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 3px solid var(--wm-cyan);
    border-radius: inherit;
    pointer-events: none;
}

.wm-footer-card:nth-child(2)::before {
    border-top-color: var(--wm-green);
}

.wm-footer-card:nth-child(3)::before {
    border-top-color: var(--wm-magenta);
}

.wm-footer-card__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 8px;
    color: #061016;
    background: var(--wm-cyan);
    font-size: 1.2rem;
}

.wm-footer-card:nth-child(2) .wm-footer-card__icon {
    background: var(--wm-green);
}

.wm-footer-card:nth-child(3) .wm-footer-card__icon {
    background: var(--wm-magenta);
    color: #fff;
}

.wm-footer__cols h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 0.88rem;
    text-transform: uppercase;
}

.wm-footer-card p {
    min-height: 46px;
    margin: 0 0 14px;
    color: var(--wm-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.wm-footer__cols a,
.wm-footer__cols button {
    display: flex;
    width: 100%;
    min-height: 36px;
    align-items: center;
    padding: 6px 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.68);
    font: inherit;
    font-size: 0.9rem;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.wm-footer__cols a:hover,
.wm-footer__cols button:hover {
    color: var(--wm-cyan);
}

.wm-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.82rem;
}

.wm-footer-conversion {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.36fr);
    gap: 14px;
}

.wm-footer-conversion__panel,
.wm-footer-conversion__contact {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--wm-line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(0, 195, 212, 0.11), rgba(255, 82, 195, 0.08)),
        rgba(255, 255, 255, 0.04);
}

.wm-footer-conversion__panel {
    min-height: 270px;
    padding: 24px;
}

.wm-footer-conversion__panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(var(--wm-cyan), var(--wm-magenta));
}

.wm-footer-conversion__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid rgba(0, 195, 212, 0.24);
    border-radius: 8px;
    background: rgba(0, 195, 212, 0.08);
    color: var(--wm-cyan);
    font-size: 0.78rem;
    font-weight: 860;
    text-transform: uppercase;
}

.wm-footer-conversion h3 {
    position: relative;
    margin: 20px 0 24px;
    max-width: 640px;
    color: #fff;
    font-size: clamp(1.45rem, 2.3vw, 2.2rem);
    line-height: 1.08;
}

.wm-footer-conversion__actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wm-footer-conversion__actions a,
.wm-footer-conversion__actions button,
.wm-footer-conversion__contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.82);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 780;
    line-height: 1.2;
    cursor: pointer;
}

.wm-footer-conversion__actions a:first-child {
    border-color: rgba(0, 195, 212, 0.34);
    background: rgba(0, 195, 212, 0.08);
    color: #fff;
}

.wm-footer-conversion__actions a:hover,
.wm-footer-conversion__actions button:hover,
.wm-footer-conversion__contact a:hover {
    border-color: rgba(0, 195, 212, 0.34);
    color: #fff;
}

.wm-footer-conversion__contact {
    display: grid;
    align-content: end;
    gap: 8px;
    min-height: 270px;
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
        rgba(6, 8, 15, 0.7);
}

.wm-footer-conversion__contact a {
    width: 100%;
    justify-content: flex-start;
}

.wm-footer-mini {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.wm-footer-mini a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    font-weight: 760;
    line-height: 1.2;
}

.wm-footer-mini a:hover {
    border-color: rgba(0, 195, 212, 0.34);
    color: #fff;
}

.wm-footer-mini i {
    color: var(--wm-cyan);
    font-size: 1rem;
}

/* Responsive nueva capa */
@media (max-width: 1120px) {
    .wm-hero h1 { font-size: 3.35rem; }
    .wm-hero__inner,
    .wm-section-head--split,
    .wm-detail-grid,
    .wm-automation-grid,
    .wm-authority-grid,
    .wm-faq-grid {
        grid-template-columns: 1fr;
    }
    .wm-detail-grid--flip .wm-detail-copy,
    .wm-detail-grid--flip .wm-detail-media {
        order: initial;
    }
    .wm-product-grid,
    .wm-pain-grid,
    .wm-hero__proof,
    .wm-step-grid,
    .wm-case-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wm-hero__signals {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 0;
    }
}

@media (max-width: 820px) {
    .wm-page {
        overflow-x: visible;
    }

    .wm-header {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 40;
        padding-top: env(safe-area-inset-top, 0px);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(6, 7, 12, 0.97);
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .wm-site {
        padding-top: calc(66px + env(safe-area-inset-top, 0px));
    }

    .wm-header__actions,
    .wm-nav {
        display: none;
    }
    .wm-nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }
    .wm-header__inner {
        position: relative;
    }
    .wm-nav.is-open,
    .mw-nav-panel.is-open {
        display: flex;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: rgba(6, 7, 12, 0.98);
        border: 1px solid var(--wm-line);
        border-radius: 0 0 8px 8px;
    }
    .wm-nav.is-open a,
    .mw-nav-panel.is-open a {
        padding: 12px;
    }
    .wm-hero {
        min-height: max(660px, calc(100svh - 66px - env(safe-area-inset-top, 0px)));
        padding-top: 24px;
    }
    .wm-hero h1,
    .wm-section-head h2,
    .wm-detail-copy h2,
    .wm-authority__copy h2,
    .wm-final-cta h2,
    .wm-automation-grid h2 {
        font-size: 2.35rem;
    }
    .wm-pain-grid,
    .wm-feature-list,
    .wm-process-board,
    .wm-automation-lanes,
    .wm-automation-map,
    .wm-credential-grid,
    .wm-footer__top,
    .wm-footer__cols,
    .wm-footer-conversion,
    .wm-footer-mini {
        grid-template-columns: 1fr;
    }
    .wm-lane {
        min-height: 0;
    }
    .wm-automation-map__rail {
        left: 40px;
        right: auto;
        top: 46px;
        bottom: 116px;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, var(--wm-cyan), var(--wm-green), var(--wm-magenta));
    }
    .wm-auto-node,
    .wm-footer-card {
        min-height: 0;
    }
    .wm-auto-outcomes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wm-footer__top {
        gap: 30px;
    }
    .wm-footer__brand h2 {
        font-size: 1.6rem;
    }
    .wm-footer__bottom {
        flex-direction: column;
    }
    .wm-footer-mini {
        justify-content: flex-start;
    }
    .wm-footer-conversion__panel,
    .wm-footer-conversion__contact {
        min-height: 0;
    }
}

@media (max-width: 620px) {
    .wm-container {
        width: 100%;
        max-width: none;
        padding-inline: 20px;
        margin-inline: auto;
    }
    .wm-hero__inner {
        width: 100%;
        max-width: none;
    }
    .wm-section,
    .wm-product-detail {
        padding: 62px 0;
    }
    .wm-hero h1 {
        font-size: 2.15rem;
    }
    .wm-hero__copy p {
        max-width: 100%;
        font-size: 0.94rem;
        overflow-wrap: anywhere;
    }
    .wm-hero__signals,
    .wm-product-grid,
    .wm-hero__proof,
    .wm-step-grid,
    .wm-case-strip {
        grid-template-columns: 1fr;
    }
    .wm-hero__system,
    .wm-before-after {
        padding: 16px;
    }
    .wm-ai-compare,
    .wm-hero__system-strip,
    .wm-auto-outcomes,
    .wm-before-after__outcomes {
        grid-template-columns: 1fr;
    }
    .wm-before-after__head,
    .wm-conversion-panel__head {
        align-items: flex-start;
        flex-direction: column;
    }
    .wm-before-after__head strong {
        max-width: 100%;
        text-align: left;
    }
    .wm-before-after__grid {
        grid-template-columns: 1fr;
    }
    .wm-ba-card {
        min-height: 0;
    }
    .wm-ba-bridge {
        width: 100%;
        min-height: 54px;
        flex-direction: row;
        gap: 10px;
    }
    .wm-ba-bridge__line {
        width: auto;
        height: 1px;
        min-height: 0;
        flex: 1 1 50px;
        background: linear-gradient(90deg, transparent, rgba(0, 195, 212, 0.54), rgba(255, 82, 195, 0.34), transparent);
    }
    .wm-ba-bridge__mark i {
        transform: rotate(90deg);
    }
    .wm-ba-bridge__label {
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: 0.04em;
    }
    .wm-conversion-panel__head > span {
        white-space: normal;
    }
    .wm-footer-conversion__actions {
        flex-direction: column;
    }
    .wm-footer-conversion__actions a,
    .wm-footer-conversion__actions button {
        width: 100%;
    }
    .wm-footer-mini {
        flex-direction: column;
        align-items: stretch;
    }
    .wm-footer-mini a {
        width: 100%;
    }
    .wm-ai-compare__card {
        min-height: 150px;
    }
    .wm-ai-compare__bridge {
        width: 54px;
        min-height: 54px;
        margin: -2px auto;
        transform: rotate(90deg);
    }
    .wm-ai-compare__bridge span {
        display: none;
    }
    .wm-btn,
    .wm-actions .wm-btn {
        width: 100%;
    }
    .wm-detail-media {
        padding: 8px;
    }
    .wm-product-modal[open] {
        width: 100%;
        max-width: none;
        height: 100dvh;
        max-height: 100dvh;
        margin: 0;
        border: none;
        border-radius: 0;
    }
    .wm-product-modal__shell {
        height: 100%;
        max-height: 100dvh;
        min-height: 0;
    }
    .wm-product-modal__panel {
        padding: 56px 18px 36px;
    }
    .wm-feature-list {
        grid-template-columns: 1fr;
    }
    .v3-chat-launcher.is-chat-docked {
        right: 12px !important;
        top: auto !important;
        bottom: 12px !important;
        transform: none !important;
    }
    .v3-chat-launcher.is-chat-mini {
        width: 60px !important;
        max-width: 60px !important;
    }
    .v3-chat-launcher.is-chat-docked:not(.is-chat-mini):not(.is-chat-expanded) {
        width: auto !important;
        max-width: min(320px, calc(100vw - 24px)) !important;
    }
    .v3-chat-launcher.is-chat-expanded {
        width: min(390px, calc(100vw - 20px)) !important;
        max-width: none !important;
    }
    .v3-chat-launcher .chat-container.avatar-chat-panel.is-collapsed.is-minibubble {
        width: 60px !important;
        max-width: 60px !important;
        min-width: 60px !important;
        height: 60px !important;
        min-height: 60px !important;
        border-radius: 50% !important;
        overflow: visible;
    }
    .v3-chat-launcher .chat-container.is-collapsed.is-minibubble .chat-header {
        width: 60px !important;
        height: 60px !important;
        min-height: 60px !important;
        padding: 0 !important;
        border-radius: 50% !important;
    }
    .v3-chat-launcher .chat-container.is-collapsed:not(.is-minibubble) .chat-header {
        width: fit-content !important;
        max-width: min(300px, calc(100vw - 24px)) !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 12px 14px 12px 12px !important;
        border-radius: 999px !important;
    }
    .v3-chat-launcher .chat-container.is-collapsed .chat-header-main {
        width: 60px !important;
        height: 60px !important;
        display: block !important;
    }
    .v3-chat-launcher .chat-container.is-collapsed .v3-chat-avatar-stage {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        overflow: hidden !important;
    }
    .v3-chat-launcher .chat-container.is-collapsed .chat-header-info {
        display: none !important;
    }
    .v3-chat-launcher .chat-container.is-collapsed.is-minibubble .avatar-chat-controls {
        display: none !important;
    }
    .v3-chat-launcher .chat-container.is-collapsed:not(.is-minibubble) .avatar-chat-controls {
        display: flex !important;
    }
    .v3-chat-launcher .chat-container.avatar-chat-panel.is-collapsed:not(.is-minibubble) {
        width: auto !important;
        max-width: min(300px, calc(100vw - 24px)) !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        border-radius: 999px !important;
    }
    .v3-chat-launcher.is-mobile-modal,
    .v3-chat-launcher.is-chat-expanded.is-mobile-modal {
        top: var(--v3-chat-vvt, 0px) !important;
        width: 100vw !important;
        max-width: none !important;
        height: var(--v3-chat-vvh, 100dvh) !important;
        right: 0 !important;
        left: 0 !important;
        bottom: auto !important;
    }
    .v3-chat-launcher.is-mobile-modal .chat-container:not(.is-collapsed) {
        width: 100% !important;
        max-width: 520px !important;
        height: min(720px, calc(var(--v3-chat-vvh, 100dvh) - 10px)) !important;
        max-height: calc(var(--v3-chat-vvh, 100dvh) - 10px) !important;
        border-radius: 22px 22px 0 0 !important;
    }
}

@media (max-width: 360px) {
    .wm-container {
        padding-inline: 16px;
    }
}
