        @import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Geist:wght@100..900&family=Inter:wght@100..900&display=swap');

        :root {
            --bg-color: #02040a;
            --panel-bg: rgba(13, 18, 29, 0.7);
            --card-bg: rgba(13, 18, 29, 0.6);
            --accent-cyan: #00f3ff;
            --accent-green: #00e676;
            --accent-purple: #7c4dff;
            --accent-gold: #ffd700;
            --accent-mid: #ff6d00;
            --accent-infra: #7c4dff;
            --text-main: #ffffff;
            --text-dim: #a0aab5;
        }

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

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Geist', 'Inter', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* =========================================
       BOOT SEQUENCE (VENTANA CENTRADA CYAN)
       ========================================= */
        #boot-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #02040a;
            /* Fondo oscuro marca */
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            /* Centrado absoluto */
            transition: opacity 0.5s ease-out;
        }

        /* La Ventana del Terminal (El Logo) */
        .terminal-window {
            width: 420px;
            height: 220px;
            border: 2px solid var(--accent-cyan);
            background: rgba(2, 4, 10, 0.95);
            /* Casi negro, un poco transparente */
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
            /* Resplandor Cyan */
            display: flex;
            flex-direction: column;
            font-family: 'Geist Mono', monospace;
            position: relative;
            overflow: hidden;
        }

        /* Cabecera estilo ventana */
        .terminal-header {
            background: rgba(0, 243, 255, 0.1);
            border-bottom: 1px solid var(--accent-cyan);
            padding: 5px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .win-title {
            font-size: 0.7rem;
            color: var(--accent-cyan);
            font-weight: bold;
            letter-spacing: 1px;
        }

        .win-controls {
            display: flex;
            gap: 4px;
        }

        .ctrl-dot {
            width: 6px;
            height: 6px;
            background: var(--accent-cyan);
            border-radius: 50%;
            opacity: 0.5;
        }

        /* Área de texto */
        .terminal-body {
            flex-grow: 1;
            padding: 15px;
            font-size: 0.85rem;
            color: var(--accent-cyan);
            /* Texto Cyan */
            text-shadow: 0 0 2px rgba(0, 243, 255, 0.5);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            /* Texto aparece desde abajo */
        }

        /* Cursor */
        .cmd-cursor {
            display: inline-block;
            width: 8px;
            height: 1rem;
            background: var(--accent-cyan);
            animation: blink-cursor 0.8s infinite;
        }

        /* Barra de carga inferior animada */
        .loading-bar {
            height: 2px;
            width: 100%;
            background: #111;
            position: relative;
        }

        .loading-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 30%;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
            animation: load-slide 2s infinite linear;
        }

        /* Animaciones */
        @keyframes blink-cursor {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }
        }

        @keyframes load-slide {
            0% {
                left: -30%;
            }

            100% {
                left: 100%;
            }
        }

        .boot-hidden {
            opacity: 0;
            pointer-events: none;
            transform: scale(0.95);
            transition: 0.5s;
        }

        /* --- FONDO ANIMADO --- */
        #data-network {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at center, #0b1021 0%, #02040a 100%);
        }

        /* --- BOTÓN VOLVER AL INICIO --- */
        .back-nav {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 100;
        }

        .btn-back {
            text-decoration: none;
            color: var(--accent-cyan);
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            border: 1px solid var(--accent-cyan);
            padding: 10px 20px;
            border-radius: 4px;
            background: rgba(0, 243, 255, 0.05);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-back:hover {
            background: var(--accent-cyan);
            color: #000;
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
        }

        /* --- TÍTULOS --- */
        h1 {
            margin-top: 80px;
            /* Un poco más de margen para no chocar con el botón */
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
        }

        .subtitle {
            color: #888;
            margin-bottom: 50px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.2rem;
            text-align: center;
        }

        /* =========================================
           EFECTO CRISTAL LÍQUIDO (Liquid Glass)
           ========================================= */

        /* Capa base de cristal con refracción */
        .liquid-glass {
            position: relative;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.08) 0%,
                    rgba(255, 255, 255, 0.02) 40%,
                    rgba(255, 255, 255, 0.04) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.12),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        /* Refracción iridiscente animada */
        .liquid-glass::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.04) 60deg,
                    transparent 120deg,
                    rgba(124, 77, 255, 0.04) 180deg,
                    transparent 240deg,
                    rgba(0, 230, 118, 0.04) 300deg,
                    transparent 360deg);
            animation: liquidRefraction 12s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        /* Reflejo especular superior (luz incidente) */
        .liquid-glass::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.1) 0%,
                    rgba(255, 255, 255, 0.03) 30%,
                    transparent 100%);
            border-radius: inherit;
            pointer-events: none;
            z-index: 1;
        }

        .liquid-glass>* {
            position: relative;
            z-index: 2;
        }

        @keyframes liquidRefraction {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Hover dinámico - intensifica refracción */
        .liquid-glass:hover {
            border-color: rgba(0, 243, 255, 0.35);
            box-shadow:
                0 12px 48px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(0, 243, 255, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.18),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
        }

        .liquid-glass:hover::before {
            animation-duration: 6s;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.08) 60deg,
                    transparent 120deg,
                    rgba(124, 77, 255, 0.08) 180deg,
                    transparent 240deg,
                    rgba(0, 230, 118, 0.08) 300deg,
                    transparent 360deg);
        }

        /* Variante cyan (mockups, servicios) */
        .liquid-glass-cyan {
            border-color: rgba(0, 243, 255, 0.15);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(0, 243, 255, 0.08),
                inset 0 1px 0 rgba(0, 243, 255, 0.12),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
        }

        .liquid-glass-cyan::before {
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.06) 90deg,
                    transparent 180deg,
                    rgba(0, 243, 255, 0.03) 270deg,
                    transparent 360deg);
        }

        /* Variante gold (plan Enterprise) */
        .liquid-glass-gold {
            border-color: rgba(255, 215, 0, 0.25);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(255, 215, 0, 0.08),
                inset 0 1px 0 rgba(255, 215, 0, 0.12),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
        }

        .liquid-glass-gold::before {
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(255, 215, 0, 0.06) 90deg,
                    transparent 180deg,
                    rgba(255, 215, 0, 0.03) 270deg,
                    transparent 360deg);
        }

        /* Variante violet (plan Infra/Enterprise) */
        .liquid-glass-violet {
            border-color: rgba(124, 77, 255, 0.25);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(124, 77, 255, 0.08),
                inset 0 1px 0 rgba(124, 77, 255, 0.12),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
        }

        .liquid-glass-violet::before {
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(124, 77, 255, 0.06) 90deg,
                    transparent 180deg,
                    rgba(124, 77, 255, 0.03) 270deg,
                    transparent 360deg);
        }

        /* =========================================
           ESTILOS ESPECÍFICOS: SECCIÓN PLANES
           ========================================= */

        /* Contenedor Flexible */
        .pricing-container {
            max-width: 1400px !important;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 40px 20px;
            align-items: stretch;
            margin: 0 auto;
        }

        /* Tarjeta Base - Cristal Líquido */
        .card {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.08) 0%,
                    rgba(255, 255, 255, 0.02) 40%,
                    rgba(255, 255, 255, 0.04) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            width: 300px;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-height: 520px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        /* Refracción iridiscente */
        .card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.04) 60deg,
                    transparent 120deg,
                    rgba(124, 77, 255, 0.04) 180deg,
                    transparent 240deg,
                    rgba(0, 230, 118, 0.04) 300deg,
                    transparent 360deg);
            animation: liquidRefraction 12s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        /* Reflejo especular superior */
        .card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.1) 0%,
                    rgba(255, 255, 255, 0.03) 30%,
                    transparent 100%);
            border-radius: inherit;
            pointer-events: none;
            z-index: 1;
        }

        .card>* {
            position: relative;
            z-index: 2;
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 243, 255, 0.35);
            box-shadow:
                0 12px 48px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(0, 243, 255, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
        }

        .card:hover::before {
            animation-duration: 6s;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.08) 60deg,
                    transparent 120deg,
                    rgba(124, 77, 255, 0.08) 180deg,
                    transparent 240deg,
                    rgba(0, 230, 118, 0.08) 300deg,
                    transparent 360deg);
        }

        .plan-name {
            font-size: 1.4rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 10px;
            text-align: left;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 15px 0;
            font-family: 'Geist', 'Inter', sans-serif;
            text-align: left;
        }

        .price span {
            font-size: 0.9rem;
            color: #666;
            font-weight: 400;
        }

        .features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
            color: #ccc;
            line-height: 1.6;
            font-size: 0.85rem;
            flex-grow: 1;
            text-align: left;
        }

        .features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .features li::before {
            content: '✓';
            font-weight: 900;
            font-size: 1.1rem;
        }

        /* --- VARIANTES DE COLOR --- */

        /* 1. Emprendedor (Verde) */
        .pyme .plan-name {
            color: #00e676;
        }

        .pyme .features li::before {
            color: #00e676;
            text-shadow: 0 0 10px #00e676;
        }

        .pyme .btn-hire {
            background: #00e676;
            color: #000;
        }

        .card.pyme:hover {
            box-shadow:
                0 0 40px rgba(0, 230, 118, 0.25),
                0 12px 48px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(0, 230, 118, 0.15);
            border-color: #00e676;
        }

        .card.pyme:hover::before {
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 230, 118, 0.08) 90deg,
                    transparent 180deg,
                    rgba(0, 230, 118, 0.04) 270deg,
                    transparent 360deg);
        }

        /* 2. Expansión (Naranja) */
        .mid .plan-name {
            color: #ff6d00;
        }

        .mid .features li::before {
            color: #ff6d00;
            text-shadow: 0 0 10px #ff6d00;
        }

        .mid .btn-hire {
            background: #ff6d00;
            color: white;
        }

        .card.mid:hover {
            box-shadow:
                0 0 40px rgba(255, 109, 0, 0.25),
                0 12px 48px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 109, 0, 0.15);
            border-color: #ff6d00;
        }

        .card.mid:hover::before {
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(255, 109, 0, 0.08) 90deg,
                    transparent 180deg,
                    rgba(255, 109, 0, 0.04) 270deg,
                    transparent 360deg);
        }

        /* 3. Inversión (Oro Metálico + Cristal Líquido) */
        .card.ent {
            background: linear-gradient(135deg,
                    rgba(26, 19, 0, 0.85) 0%,
                    rgba(74, 55, 21, 0.75) 40%,
                    rgba(153, 124, 61, 0.7) 50%,
                    rgba(74, 55, 21, 0.75) 60%,
                    rgba(26, 19, 0, 0.85) 100%);
            backdrop-filter: blur(24px) saturate(1.5);
            -webkit-backdrop-filter: blur(24px) saturate(1.5);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-top: 1px solid rgba(255, 215, 0, 0.45);
            border-left: 1px solid rgba(255, 215, 0, 0.35);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.6),
                0 0 25px rgba(255, 215, 0, 0.1),
                inset 0 1px 0 rgba(255, 215, 0, 0.15),
                inset 0 0 30px rgba(0, 0, 0, 0.5);
        }

        .card.ent::before {
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(255, 215, 0, 0.06) 90deg,
                    transparent 180deg,
                    rgba(255, 215, 0, 0.03) 270deg,
                    transparent 360deg);
        }

        .card.ent:hover {
            border-color: #ffd700;
            box-shadow:
                0 0 60px rgba(255, 215, 0, 0.4),
                0 12px 48px rgba(0, 0, 0, 0.7),
                inset 0 1px 0 rgba(255, 215, 0, 0.2),
                inset 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .card.ent:hover::before {
            animation-duration: 5s;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(255, 215, 0, 0.12) 90deg,
                    transparent 180deg,
                    rgba(255, 215, 0, 0.06) 270deg,
                    transparent 360deg);
        }

        .ent .plan-name {
            background: linear-gradient(to bottom, #fff 20%, #ffd700 60%, #967d2a 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
        }

        .ent .price,
        .ent .features li::before {
            color: #ffd700;
            text-shadow: 0 0 10px #ffd700;
        }

        .ent .btn-hire {
            background: linear-gradient(to bottom, #ffd700 0%, #d4af37 100%);
            color: #111;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            border: 1px solid #ffed8a;
        }

        .ent .btn-agent {
            border-color: #997c3d;
            color: #d4af37;
        }

        .ent .btn-agent:hover {
            border-color: #ffd700;
            color: white;
            background: rgba(255, 215, 0, 0.1);
        }

        /* 4. Enterprise (Violeta Metálico + Cristal Líquido) */
        .card.infra {
            background: linear-gradient(135deg,
                    rgba(18, 26, 36, 0.85) 0%,
                    rgba(142, 158, 171, 0.7) 30%,
                    rgba(124, 77, 255, 0.7) 50%,
                    rgba(220, 234, 232, 0.7) 70%,
                    rgba(49, 11, 74, 0.85) 100%);
            backdrop-filter: blur(24px) saturate(1.5);
            -webkit-backdrop-filter: blur(24px) saturate(1.5);
            border: 1px solid rgba(124, 77, 255, 0.3);
            border-top: 1px solid rgba(124, 77, 255, 0.45);
            border-left: 1px solid rgba(124, 77, 255, 0.35);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.6),
                0 0 25px rgba(124, 77, 255, 0.1),
                inset 0 1px 0 rgba(124, 77, 255, 0.15),
                inset 0 0 30px rgba(0, 0, 0, 0.5);
        }

        .card.infra::before {
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(124, 77, 255, 0.06) 90deg,
                    transparent 180deg,
                    rgba(124, 77, 255, 0.03) 270deg,
                    transparent 360deg);
        }

        .card.infra:hover {
            box-shadow:
                0 0 60px rgba(124, 77, 255, 0.4),
                0 12px 48px rgba(0, 0, 0, 0.7),
                inset 0 1px 0 rgba(124, 77, 255, 0.2),
                inset 0 0 20px rgba(0, 0, 0, 0.5);
            border-color: #7c4dff;
        }

        .card.infra:hover::before {
            animation-duration: 5s;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(124, 77, 255, 0.12) 90deg,
                    transparent 180deg,
                    rgba(124, 77, 255, 0.06) 270deg,
                    transparent 360deg);
        }

        .infra .plan-name {
            background: linear-gradient(to bottom, #fff 20%, #b388ff 60%, #6200ea 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
        }

        .infra .price,
        .infra .features li::before {
            color: #b388ff;
            text-shadow: 0 0 10px #7c4dff;
        }

        .infra .btn-hire {
            background: linear-gradient(to bottom, #7c4dff 0%, #4527a0 100%);
            color: white;
            border: 1px solid #b388ff;
        }

        .infra .btn-agent {
            border-color: #4a148c;
            color: #b388ff;
        }

        .infra .btn-agent:hover {
            border-color: #7c4dff;
            color: white;
            background: rgba(124, 77, 255, 0.1);
        }

        /* =========================================
       ESTILO DELUXE HORIZONTAL (BÚNKER)
       ========================================= */

        /* Contenedor de la tarjeta ancha */
        .card.deluxe {
            width: 100%;
            max-width: 1400px;
            margin-top: 50px;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.04) 0%,
                    rgba(255, 255, 255, 0.01) 50%,
                    rgba(255, 255, 255, 0.02) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow:
                0 8px 60px rgba(0, 0, 0, 0.7),
                0 0 30px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            padding: 40px;
            display: grid;
            grid-template-columns: 200px 1fr 200px;
            gap: 40px;
            align-items: center;
            position: relative;
            overflow: hidden;
            z-index: 5;
        }

        .card.deluxe::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(255, 255, 255, 0.03) 90deg,
                    transparent 180deg,
                    rgba(0, 243, 255, 0.03) 270deg,
                    transparent 360deg);
            animation: liquidRefraction 16s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        .card.deluxe::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.08) 0%,
                    rgba(255, 255, 255, 0.02) 30%,
                    transparent 100%);
            border-radius: inherit;
            pointer-events: none;
            z-index: 1;
        }

        .card.deluxe>* {
            position: relative;
            z-index: 2;
        }

        .card.deluxe:hover {
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow:
                0 0 80px rgba(255, 255, 255, 0.15),
                0 12px 48px rgba(0, 0, 0, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        /* 1. Columna Izquierda: Identidad y Precio */
        .deluxe-header {
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            padding-right: 20px;
        }

        .deluxe .plan-name {
            font-size: 2rem;
            background: linear-gradient(to bottom, #fff, #777);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
            letter-spacing: 3px;
        }

        .deluxe-badge {
            background: #fff;
            color: #000;
            padding: 2px 10px;
            font-size: 0.7rem;
            font-weight: 800;
            display: inline-block;
            margin-bottom: 15px;
        }

        .deluxe .price {
            font-size: 2rem;
            color: #fff;
            margin: 0;
        }

        .deluxe .price span {
            display: block;
            font-size: 0.8rem;
            opacity: 0.6;
        }

        /* 2. Columna Central: Los 3 Bloques de Info */
        .deluxe-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* 3 columnas internas */
            gap: 20px;
        }

        .bunker-col h4 {
            color: var(--accent-cyan);
            font-family: 'Geist', 'Inter', sans-serif;
            text-transform: uppercase;
            margin-bottom: 10px;
            font-size: 1rem;
            border-bottom: 1px solid rgba(0, 243, 255, 0.3);
            padding-bottom: 5px;
            display: inline-block;
        }

        .bunker-list {
            list-style: none;
            padding: 0;
            font-size: 0.8rem;
            color: #aaa;
            margin: 0;
        }

        .bunker-list li {
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .bunker-list strong {
            color: #e0e0e0;
        }

        /* 3. Columna Derecha: Acción */
        .deluxe-action {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .btn-deluxe {
            background: #fff;
            color: #000;
            border: none;
            padding: 15px;
            width: 100%;
            font-weight: 900;
            letter-spacing: 1px;
            transition: 0.3s;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            cursor: pointer;
            text-transform: uppercase;
            font-family: 'Geist', 'Inter', sans-serif;
        }

        .btn-deluxe:hover {
            background: #000;
            color: #fff;
            box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
            border: 1px solid #fff;
        }

        /* =========================================
       NUEVO: TÍTULO METAL CEPILLADO
       ========================================= */

        /* Contenedor para centrar el título en la grilla */
        .protocol-title-container {
            grid-column: 1 / -1;
            /* Abarca todo el ancho */
            text-align: center;
            margin-bottom: 25px;
            /* Espacio debajo del título */
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            /* Separador sutil opcional */
        }

        /* El efecto de texto metalizado */
        .protocol-title-metal {
            margin: 0;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 900;
            /* Ultra Bold */
            font-size: 2.2rem;
            /* Tamaño grande */
            text-transform: uppercase;
            letter-spacing: 6px;
            /* Espaciado moderno y amplio */
            line-height: 1;

            /* EFECTO METAL CEPILLADO (Gradiente complejo) */
            background: linear-gradient(180deg,
                    #ffffff 0%,
                    /* Brillo superior */
                    #c0c0c0 25%,
                    /* Gris claro */
                    #8a8a8a 48%,
                    /* Gris medio oscuro (el núcleo) */
                    #9e9e9e 52%,
                    /* Reflejo central agudo */
                    #e0e0e0 75%,
                    /* Gris claro */
                    #ffffff 100%
                    /* Brillo inferior */
                );

            /* Aplica el fondo al texto y lo hace transparente */
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;

            /* Sombra para dar sensación de relieve/corte metálico */
            filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.9));
        }

        /* RESPONSIVE: En móvil se vuelve vertical */
        @media (max-width: 1100px) {
            .card.deluxe {
                grid-template-columns: 1fr;
                /* Una sola columna */
                text-align: center;
                height: auto;
            }

            .deluxe-header {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding-bottom: 20px;
                padding-right: 0;
            }

            .deluxe-content {
                grid-template-columns: 1fr;
                text-align: left;
            }

            .protocol-title-metal {
                font-size: 1.6rem;
                letter-spacing: 3px;
            }
        }


        /* --- BOTONES DE ACCIÓN --- */
        .btn-hire {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: none;
            font-weight: 800;
            cursor: pointer;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 15px;
            transition: 0.3s;
        }

        .btn-agent {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            background: transparent;
            cursor: pointer;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: 0.3s;
            border: 1px solid #444;
            color: #aaa;
        }

        #investorModal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .investor-box {
            background: linear-gradient(135deg, rgba(26, 19, 0, 0.95) 0%, rgba(74, 55, 21, 0.9) 40%, rgba(153, 124, 61, 0.85) 50%, rgba(74, 55, 21, 0.9) 60%, rgba(26, 19, 0, 0.95) 100%);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-top: 1px solid rgba(255, 215, 0, 0.45);
            border-left: 1px solid rgba(255, 215, 0, 0.35);
            padding: 40px;
            border-radius: 15px;
            width: 100%;
            max-width: 500px;
            color: white;
            font-family: 'Geist', 'Inter', sans-serif;
            position: relative;
            box-shadow: 0 0 40px rgba(255, 215, 0, 0.1), 0 8px 32px rgba(0, 0, 0, 0.6);
            text-align: center;
            z-index: 2001;
            max-height: 90vh;
            overflow-y: auto;
        }

        .investor-box::-webkit-scrollbar {
            width: 6px;
        }

        .investor-box::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
        }

        .investor-box::-webkit-scrollbar-thumb {
            background: #ffd700;
            border-radius: 3px;
        }

        .investor-box::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            width: 20px;
            height: 20px;
            border-top: 2px solid #ffd700;
            border-left: 2px solid #ffd700;
        }

        .investor-box::after {
            content: '';
            position: absolute;
            bottom: -1px;
            right: -1px;
            width: 20px;
            height: 20px;
            border-bottom: 2px solid #ffd700;
            border-right: 2px solid #ffd700;
        }

        .investor-box h2 {
            color: #ffd700;
            font-family: 'Geist', 'Inter', sans-serif;
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 0 10px #ffd700;
        }

        .investor-box .form-group label {
            color: #ffd700;
        }

        .investor-box .form-input:focus,
        .investor-box .form-select:focus {
            border-color: #ffd700;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
        }

        .investor-box .btn-submit {
            background: linear-gradient(to bottom, #ffd700 0%, #d4af37 100%);
            color: #111;
            border-radius: 8px;
        }

        .btn-agent svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .btn-calc {
            background: rgba(0, 0, 0, 0.3);
            color: #ffd700;
            border: 1px dashed #997c3d;
            width: 100%;
            padding: 10px;
            cursor: pointer;
            border-radius: 6px;
            text-transform: uppercase;
            font-weight: bold;
            transition: 0.3s;
            margin-top: 5px;
        }

        .btn-calc:hover {
            background: #ffd700;
            color: black;
            border-color: white;
        }

        /* --- MODALES --- */
        #agentModal,
        #calcModal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            width: 90%;
            max-width: 800px;
            height: 80vh;
            background: #000;
            border: 1px solid #333;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 2000;
            font-weight: bold;
        }

        .close-modal:hover {
            color: red;
        }

        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Estilos Calculadora ROI */
        .calc-box {
            background: linear-gradient(135deg, #1a1300, #000);
            border: 2px solid #ffd700;
            padding: 40px;
            border-radius: 20px;
            width: 400px;
            color: white;
            box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
            font-family: 'Geist', 'Inter', sans-serif;
            position: relative;
        }

        .calc-box h2 {
            color: #ffd700;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .input-group {
            margin-bottom: 20px;
        }

        .input-group label {
            display: block;
            color: #aaa;
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .input-group input[type="range"] {
            width: 100%;
            accent-color: #ffd700;
        }

        .val-display {
            float: right;
            color: #ffd700;
            font-weight: bold;
        }

        .result-box {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid #5c471f;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
        }

        .result-val {
            font-size: 2.5rem;
            color: #ffd700;
            font-weight: bold;
            display: block;
        }

        .result-label {
            color: #ccc;
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        .close-calc {
            position: absolute;
            top: 10px;
            right: 15px;
            color: #666;
            cursor: pointer;
            font-size: 1.5rem;
        }

        .close-calc:hover {
            color: white;
        }


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* =========================================
       NUEVO: TÍTULO METAL CEPILLADO
       ========================================= */

        /* Contenedor para centrar el título en la grilla */
        .protocol-title-container {
            grid-column: 1 / -1;
            /* Abarca todo el ancho */
            text-align: center;
            margin-bottom: 25px;
            /* Espacio debajo del título */
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            /* Separador sutil opcional */
        }

        /* El efecto de texto metalizado */
        .protocol-title-metal {
            margin: 0;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 900;
            /* Ultra Bold */
            font-size: 2.2rem;
            /* Tamaño grande */
            text-transform: uppercase;
            letter-spacing: 6px;
            /* Espaciado moderno y amplio */
            line-height: 1;

            /* EFECTO METAL CEPILLADO (Gradiente complejo) */
            background: linear-gradient(180deg,
                    #ffffff 0%,
                    /* Brillo superior */
                    #c0c0c0 25%,
                    /* Gris claro */
                    #8a8a8a 48%,
                    /* Gris medio oscuro (el núcleo) */
                    #9e9e9e 52%,
                    /* Reflejo central agudo */
                    #e0e0e0 75%,
                    /* Gris claro */
                    #ffffff 100%
                    /* Brillo inferior */
                );

            /* Aplica el fondo al texto y lo hace transparente */
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;

            /* Sombra para dar sensación de relieve/corte metálico */
            filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.9));
        }

        /* Ajuste para móviles */
        @media (max-width: 1100px) {
            .protocol-title-metal {
                font-size: 1.6rem;
                letter-spacing: 3px;
            }
        }

        /* SPA Logic */
        .spa-view {
            display: none;
            opacity: 0;
            animation: fadeInView 0.5s forwards;
            padding-top: 0;
            padding: 40px 20px;
            min-height: 100vh;
        }

        .spa-view.active {
            display: block;
            opacity: 1;
        }

        @keyframes fadeInView {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* --- NAVBAR ORIGINAL RESTAURADA --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            /* Padding original */
            background: transparent;
            /* Transparencia original (el fondo lo da el body/canvas) */
            position: relative;
            z-index: 1000;
            width: 100%;

        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            cursor: pointer;
        }

        .logo img {
            max-height: 200px;
            width: auto;
        }

        /* Ajuste seguro */

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }

        /* Estilo de enlace idéntico a tu original */
        .nav-btn {
            background: none;
            border: none;
            color: var(--text-dim);
            text-decoration: none;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 500;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-btn:hover,
        .nav-btn.active-link {
            color: var(--accent-cyan);
            text-shadow: 0 0 8px var(--accent-cyan);
        }

        .nav-highlight {
            border: 1px solid var(--accent-cyan);
            padding: 8px 20px;
            border-radius: 4px;
            color: var(--accent-cyan) !important;
        }

        .nav-highlight:hover {
            background: rgba(0, 243, 255, 0.1);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
        }

        .btn-account {
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            transition: 0.3s;
            color: #fff;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-account:hover {
            background: var(--accent-cyan);
            color: #02040a;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
        }

        /* --- ESTILOS HOME ORIGINALES (Corrigiendo tarjetas rotas) --- */



        .hero-content {
            flex: 0 0 55%;
            max-width: 600px;
            z-index: 1;
        }

        #view-home {
            padding: 0;
        }

        .hero {
            width: 100%;
            margin: 0;
            height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: url('../img/hero-s-bg.jpg') center center / cover no-repeat;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(2, 6, 15, 0.4) 0%, rgba(2, 6, 15, 0.7) 100%);
            z-index: 0;
        }

        .hero>* {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            font-family: 'Geist', 'Inter', sans-serif;
        }

        /* Animación Deep Zoom */
        .hero-word {
            display: inline-block;
            opacity: 0;
            background: linear-gradient(180deg, #ffffff 0%, #b3e5fc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: deepZoom 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .hero-word:nth-of-type(1) {
            animation-delay: 0.2s;
        }

        .hero-word:nth-of-type(2) {
            animation-delay: 0.6s;
        }

        .hero-word:nth-of-type(3) {
            animation-delay: 1.0s;
        }

        @keyframes deepZoom {
            0% {
                opacity: 0;
                transform: scale(0.1) translateY(50px);
                filter: blur(20px);
            }

            80% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
                opacity: 1;
                filter: blur(0);
            }
        }

        .tagline {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.5rem;
            color: var(--accent-cyan);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 50px;
        }

        .cta-btn {
            padding: 15px 40px;
            background: transparent;
            border: 2px solid var(--accent-cyan);
            color: var(--accent-cyan);
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: 0.4s;
            text-decoration: none;
        }

        .cta-btn:hover {
            background: var(--accent-cyan);
            color: #02040a;
            box-shadow: 0 0 50px rgba(0, 243, 255, 0.6);
        }

        /* SECCIÓN SERVICIOS (Tarjetas que estaban rotas) */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            font-family: 'Geist', 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 4px;
            padding-top: 60px;
        }

        .section-title span {
            color: var(--accent-cyan);
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            perspective: 1000px;
        }

        /* =========================================
       NUEVO: HARAS MOCKUPS (Deep Tech Style)
       ========================================= */

        .tech-card.haras-style {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.06) 0%,
                    rgba(255, 255, 255, 0.01) 40%,
                    rgba(255, 255, 255, 0.03) 100%);
            border: 1px solid rgba(0, 243, 255, 0.1);
            border-top: 1px solid rgba(0, 243, 255, 0.35);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(0, 243, 255, 0.06),
                inset 0 1px 0 rgba(0, 243, 255, 0.1);
            align-items: center;
            text-align: left;
            padding: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .tech-card.haras-style::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.05) 90deg,
                    transparent 180deg,
                    rgba(0, 243, 255, 0.02) 270deg,
                    transparent 360deg);
            animation: liquidRefraction 10s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        .tech-card.haras-style::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg,
                    rgba(0, 243, 255, 0.08) 0%,
                    rgba(255, 255, 255, 0.03) 30%,
                    transparent 100%);
            border-radius: inherit;
            pointer-events: none;
            z-index: 1;
        }

        .tech-card.haras-style>* {
            position: relative;
            z-index: 2;
        }

        .tech-card.haras-style:hover {
            border-color: var(--accent-cyan);
            transform: translateY(-5px);
            box-shadow:
                0 0 40px rgba(0, 243, 255, 0.15),
                0 12px 40px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(0, 243, 255, 0.15);
        }

        .tech-card.haras-style:hover::before {
            animation-duration: 5s;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.1) 90deg,
                    transparent 180deg,
                    rgba(0, 243, 255, 0.05) 270deg,
                    transparent 360deg);
        }

        /* Área del Mockup (Mitad superior) */
        .haras-visual {
            width: 100%;
            height: 200px;
            background: radial-gradient(circle at center, #1a233a 0%, #05080f 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Área de Texto (Mitad inferior) */
        .haras-content {
            padding: 25px;
            width: 100%;
        }

        .haras-title {
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        .haras-desc {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.95rem;
            color: #aaa;
            line-height: 1.5;
        }

        /* --- MOCKUP 1: RADAR (Superficie Cero) --- */
        .radar-grid {
            width: 140px;
            height: 140px;
            border: 1px dashed rgba(0, 243, 255, 0.2);
            border-radius: 50%;
            position: relative;
            background:
                linear-gradient(90deg, transparent 49%, rgba(0, 243, 255, 0.1) 50%, transparent 51%),
                linear-gradient(0deg, transparent 49%, rgba(0, 243, 255, 0.1) 50%, transparent 51%);
        }

        .radar-sweep {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 243, 255, 0.4) 360deg);
            animation: radar-spin 2s linear infinite;
            opacity: 0.5;
        }

        .stealth-dot {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 6px;
            height: 6px;
            background: #333;
            /* Oscuro = Invisible */
            border-radius: 50%;
            box-shadow: 0 0 0 2px #444;
            z-index: 10;
        }

        .stealth-label {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Geist Mono', monospace;
            font-size: 0.7rem;
            color: #555;
            background: #000;
            padding: 2px 5px;
            border: 1px solid #333;
        }

        @keyframes radar-spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }


        /* --- MOCKUP 2: BÓVEDA SOBERANA (Nueva Versión) --- */
        .sovereignty-setup {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 80%;
        }

        /* 1. El Mundo Exterior (Gris, apagado) */
        .grey-planet {
            width: 40px;
            height: 40px;
            background: #555;
            border-radius: 50%;
            box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5);
            position: relative;
            margin-bottom: 5px;
        }

        /* Una órbita tenue alrededor */
        .grey-planet::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 1px dashed #333;
            border-radius: 50%;
            animation: spin-slow 20s linear infinite;
        }

        /* 2. La Conexión Externa Bloqueada */
        .external-link-blocked {
            height: 20px;
            width: 2px;
            background: #333;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* El bloqueo (X roja) */
        .external-link-blocked::after {
            content: '×';
            color: #ff3333;
            font-size: 1.2rem;
            font-weight: bold;
        }

        /* 3. La Bóveda (El contenedor seguro) */
        .the-vault {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--accent-cyan);
            border-radius: 8px;
            background: rgba(0, 243, 255, 0.05);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.1) inset;
            position: relative;
            display: flex;
            justify-content: center;
        }

        /* Icono de candado en la bóveda */
        .vault-lock-icon {
            position: absolute;
            top: -10px;
            background: #05080f;
            padding: 0 5px;
            color: var(--accent-cyan);
            font-size: 0.9rem;
        }

        /* 4. La Red Interna (Servidor + Hosts) */
        .internal-network {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            grid-template-rows: auto auto;
            gap: 10px 20px;
            align-items: center;
            justify-items: center;
        }

        /* El Servidor Central (Bastión) */
        .bastion-core {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            /* Centro */
            width: 50px;
            height: 60px;
            background: #111;
            border: 2px solid var(--accent-cyan);
            box-shadow: 0 0 15px var(--accent-cyan);
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            padding: 4px;
            z-index: 2;
        }

        .core-light {
            height: 4px;
            background: var(--accent-cyan);
            width: 100%;
            animation: blink-cyan 1s infinite alternate;
        }

        /* Los Hosts Locales */
        .local-host {
            width: 30px;
            height: 30px;
            background: rgba(0, 243, 255, 0.1);
            border: 1px solid var(--accent-cyan);
            border-radius: 4px;
        }

        /* Conexiones Internas Punteadas (Animadas) */
        .int-link {
            position: absolute;
            z-index: 1;
            background-image: linear-gradient(to right, var(--accent-cyan) 50%, transparent 50%);
            background-size: 8px 2px;
            /* Tamaño del guión */
            background-repeat: repeat-x;
            animation: flow-dash 1s infinite linear;
            opacity: 0.6;
        }

        /* Posicionamiento de las líneas */
        .link-left-top {
            top: 35%;
            left: 25%;
            width: 25%;
            transform: rotate(20deg);
        }

        .link-left-bot {
            bottom: 35%;
            left: 25%;
            width: 25%;
            transform: rotate(-20deg);
        }

        .link-right-top {
            top: 35%;
            right: 25%;
            width: 25%;
            transform: rotate(-20deg);
        }

        .link-right-bot {
            bottom: 35%;
            right: 25%;
            width: 25%;
            transform: rotate(20deg);
        }

        @keyframes spin-slow {
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes blink-cyan {
            from {
                opacity: 0.5;
            }

            to {
                opacity: 1;
                box-shadow: 0 0 8px var(--accent-cyan);
            }
        }

        @keyframes flow-dash {
            to {
                background-position: 8px 0;
            }
        }


        /* =========================================
       CORRECCIÓN: MOCKUP 3 - PUENTE FORTALEZA (PINBALL STYLE)
       ========================================= */

        .fortress-setup {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            height: 100%;
            justify-content: center;
            width: 100%;
            position: relative;
        }

        /* 1. La Nube Segura (Origen) */
        .secure-cloud-node {
            width: 60px;
            height: 30px;
            border: 1px solid #444;
            border-radius: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(255, 255, 255, 0.02);
            position: relative;
        }

        .secure-cloud-node::after {
            content: 'HARA-S CENTRAL';
            font-size: 0.5rem;
            color: #666;
            position: absolute;
            top: -15px;
            white-space: nowrap;
        }

        /* 2. La Zona del Puente (Brazos Mecánicos) */
        .bridge-zone {
            height: 60px;
            width: 120px;
            /* Un poco más ancho para el giro */
            position: relative;
            display: flex;
            justify-content: center;
            perspective: 1000px;
            /* Para un ligero efecto 3D en el giro */
        }

        /* Brazos Base */
        .gate-arm {
            position: absolute;
            top: 50%;
            /* Eliminamos translateY para que la rotación sea limpia desde el pivote */
            width: 45px;
            /* Un poco más largos */
            height: 8px;
            background: #333;
            border: 1px solid #555;
            transition: 0.3s;
            z-index: 2;
        }

        /* Brazo Izquierdo (Flipper) */
        .gate-left {
            left: 5px;
            border-radius: 4px 0 0 4px;
            transform-origin: left center;
            /* Pivota desde la izquierda */
            animation: gate-left-flip 8s infinite ease-in-out;
        }

        /* Brazo Derecho (Flipper) */
        .gate-right {
            right: 5px;
            border-radius: 0 4px 4px 0;
            transform-origin: right center;
            /* Pivota desde la derecha */
            animation: gate-right-flip 8s infinite ease-in-out;
        }

        /* Chispa */
        .connection-spark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 15px;
            height: 15px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 20px #fff, 0 0 40px var(--accent-cyan);
            /* Más brillo */
            opacity: 0;
            z-index: 5;
            animation: spark-flash 8s infinite;
        }

        /* Paquete de Datos */
        .update-packet {
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            position: absolute;
            top: 0;
            left: 50%;
            margin-left: -4px;
            border-radius: 50%;
            opacity: 0;
            box-shadow: 0 0 10px var(--accent-green);
            z-index: 1;
            animation: packet-drop 8s infinite;
        }

        /* 3. El Servidor Local (Destino) */
        .local-server-node {
            width: 60px;
            height: 40px;
            background: #05080f;
            border: 1px solid var(--accent-cyan);
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 3px;
        }

        .status-indicator {
            width: 40px;
            height: 2px;
            background: #333;
        }

        .status-indicator.active {
            animation: status-light-cycle 8s infinite;
        }

        .bridge-status-label {
            font-family: 'Geist Mono', monospace;
            font-size: 0.6rem;
            color: #555;
            margin-top: 5px;
        }

        /* --- NUEVOS KEYFRAMES (ROTACIÓN TIPO PINBALL) --- */

        /* Flipper Izquierdo */
        @keyframes gate-left-flip {

            0%,
            60% {
                transform: rotate(35deg);
                border-color: #555;
            }

            /* Abierto hacia abajo */
            65%,
            85% {
                transform: rotate(0deg);
                border-color: var(--accent-green);
                background: #1a2e1a;
                box-shadow: 0 0 10px var(--accent-green);
            }

            /* Cerrado plano */
            90%,
            100% {
                transform: rotate(35deg);
                border-color: #555;
            }

            /* Abierto */
        }

        /* Flipper Derecho (Rotación negativa para espejo) */
        @keyframes gate-right-flip {

            0%,
            60% {
                transform: rotate(-35deg);
                border-color: #555;
            }

            /* Abierto hacia abajo */
            65%,
            85% {
                transform: rotate(0deg);
                border-color: var(--accent-green);
                background: #1a2e1a;
                box-shadow: 0 0 10px var(--accent-green);
            }

            /* Cerrado plano */
            90%,
            100% {
                transform: rotate(-35deg);
                border-color: #555;
            }

            /* Abierto */
        }

        /* Las demás animaciones se mantienen igual para sincronizar */
        @keyframes spark-flash {

            0%,
            64% {
                opacity: 0;
            }

            65%,
            66% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.8);
            }

            85% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }

            86%,
            100% {
                opacity: 0;
            }
        }

        @keyframes packet-drop {

            0%,
            65% {
                top: 15px;
                opacity: 0;
            }

            66% {
                top: 15px;
                opacity: 1;
            }

            84% {
                top: 85px;
                opacity: 1;
            }

            85%,
            100% {
                top: 85px;
                opacity: 0;
            }
        }

        @keyframes status-light-cycle {

            0%,
            64% {
                background: #ff3333;
                box-shadow: 0 0 5px #ff3333;
            }

            65%,
            85% {
                background: var(--accent-green);
                box-shadow: 0 0 15px var(--accent-green);
            }

            90%,
            100% {
                background: #ff3333;
                box-shadow: 0 0 5px #ff3333;
            }
        }



        /* --- MOCKUP 4: GEMELO DIGITAL (Sync Animation) --- */

        .twin-stage {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            width: 100%;
            height: 100%;
            position: relative;
        }

        /* 1. El Objeto Físico (Realidad) */
        .phys-obj {
            width: 50px;
            height: 60px;
            background: linear-gradient(45deg, #222, #111);
            border: 1px solid #444;
            position: relative;
            box-shadow: 5px 5px 0px #000;
            /* Sombra dura */
        }

        .phys-obj::before {
            /* Etiqueta */
            content: 'PHYSICAL';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Geist Mono', monospace;
            font-size: 0.6rem;
            color: #555;
        }

        /* 2. El Objeto Virtual (Holograma) */
        .virt-obj {
            width: 50px;
            height: 60px;
            border: 1px dashed var(--accent-cyan);
            background: rgba(0, 243, 255, 0.05);
            position: relative;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
            animation: holograph 3s infinite;
        }

        .virt-obj::after {
            /* Etiqueta */
            content: 'DIGITAL';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Geist Mono', monospace;
            font-size: 0.6rem;
            color: var(--accent-cyan);
        }

        /* Grid interno del holograma */
        .virt-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(var(--accent-cyan) 1px, transparent 1px),
                linear-gradient(90deg, var(--accent-cyan) 1px, transparent 1px);
            background-size: 10px 10px;
            opacity: 0.3;
        }

        /* 3. El Flujo de Datos (Sincronización) */
        .data-stream {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .data-bit {
            width: 6px;
            height: 2px;
            background: #fff;
            position: absolute;
            top: 0;
            left: 0;
            animation: stream-bit 1s infinite linear;
            box-shadow: 0 0 5px #fff;
        }

        /* Animaciones */
        @keyframes holograph {

            0%,
            100% {
                opacity: 0.8;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.02);
                box-shadow: 0 0 25px rgba(0, 243, 255, 0.3);
            }

            90% {
                clip-path: inset(0 0 0 0);
            }

            92% {
                clip-path: inset(10% 0 40% 0);
                transform: translateX(2px);
            }

            /* Glitch effect */
            94% {
                clip-path: inset(0 0 0 0);
                transform: translateX(0);
            }
        }

        @keyframes stream-bit {
            0% {
                transform: translateX(-100%);
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                transform: translateX(400%);
                opacity: 0;
            }
        }

        /* PRODUCTOS MONOLITOS */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .product-monolith {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.06) 0%,
                    rgba(255, 255, 255, 0.01) 40%,
                    rgba(255, 255, 255, 0.03) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(0, 243, 255, 0.1);
            border-top: 1px solid rgba(0, 243, 255, 0.35);
            border-left: 1px solid rgba(0, 243, 255, 0.25);
            border-radius: 20px;
            height: 600px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            display: flex;
            flex-direction: column;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(0, 243, 255, 0.06),
                inset 0 1px 0 rgba(0, 243, 255, 0.1);
        }

        .product-monolith::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.05) 90deg,
                    transparent 180deg,
                    rgba(124, 77, 255, 0.03) 270deg,
                    transparent 360deg);
            animation: liquidRefraction 14s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        .product-monolith::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg,
                    rgba(0, 243, 255, 0.08) 0%,
                    rgba(255, 255, 255, 0.03) 30%,
                    transparent 100%);
            border-radius: inherit;
            pointer-events: none;
            z-index: 1;
        }

        .product-monolith>* {
            position: relative;
            z-index: 2;
        }

        .product-monolith:hover {
            transform: translateY(-15px);
            border-color: var(--accent-cyan);
            box-shadow:
                0 0 60px rgba(0, 243, 255, 0.2),
                0 12px 48px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(0, 243, 255, 0.15);
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.1) 0%,
                    rgba(255, 255, 255, 0.03) 40%,
                    rgba(255, 255, 255, 0.06) 100%);
        }

        .product-monolith:hover::before {
            animation-duration: 7s;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.1) 90deg,
                    transparent 180deg,
                    rgba(124, 77, 255, 0.06) 270deg,
                    transparent 360deg);
        }

        .prod-visual {
            height: 55%;
            width: 100%;
            background: radial-gradient(circle at center, #1a233a 0%, #0d121d 100%);
            border-bottom: 1px solid rgba(0, 243, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .prod-icon-large {
            width: 120px;
            height: 120px;
            fill: rgba(255, 255, 255, 0.8);
            filter: drop-shadow(0 0 15px var(--accent-cyan));
            transition: 0.5s;
        }

        .product-monolith:hover .prod-icon-large {
            transform: scale(1.1) rotateZ(5deg);
            fill: var(--accent-cyan);
        }

        .prod-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: left;
        }

        .prod-title {
            font-size: 2rem;
            font-family: 'Geist', 'Inter', sans-serif;
            color: #fff;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .product-monolith.product-hero {
            flex-direction: row;
            grid-column: 1 / -1;
            /* Forzamos que ocupe todo el ancho para ser horizontal */
            height: auto;
            aspect-ratio: 16 / 9;
            /* Relación de aspecto solicitada */
            min-height: auto;
            /* Quitamos el min-height anterior */
        }

        .product-hero .prod-visual {
            width: 40%;
            /* Ajuste a 40/60 */
            height: 100%;
            border-bottom: none;
            border-right: 1px solid rgba(0, 243, 255, 0.1);
            overflow: hidden;
        }

        .product-hero .prod-content {
            width: 60%;
            padding: 40px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (max-width: 1100px) {
            .product-monolith.product-hero {
                aspect-ratio: auto;
                min-height: 600px;
            }
        }

        @media (max-width: 992px) {
            .product-monolith.product-hero {
                flex-direction: column;
                aspect-ratio: auto;
                height: auto;
            }

            .product-hero .prod-visual,
            .product-hero .prod-content {
                width: 100%;
            }

            .product-hero .prod-visual {
                height: 350px;
                border-right: none;
                border-bottom: 1px solid rgba(0, 243, 255, 0.1);
            }

            .mockup-window {
                transform: scale(0.85) !important;
            }

            .product-monolith:hover .mockup-window {
                transform: scale(0.88) !important;
            }
        }

        @media (max-width: 600px) {
            .product-hero .prod-visual {
                height: 280px;
            }

            .mockup-window {
                transform: scale(0.65) !important;
            }

            .product-monolith:hover .mockup-window {
                transform: scale(0.68) !important;
            }
        }

        .prod-desc {
            color: var(--text-dim);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .prod-features {
            list-style: none;
            margin-top: 20px;
        }

        .prod-features li {
            color: var(--accent-cyan);
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.9rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .prod-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent-cyan);
            border-radius: 50%;
            box-shadow: 0 0 5px var(--accent-cyan);
        }

        .btn-ghost {
            text-decoration: none;
            color: #000;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 12px;
            text-align: center;
            text-transform: uppercase;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            letter-spacing: 2px;
            transition: 0.3s;
            display: block;
            margin-top: 20px;
            cursor: pointer;
            border-radius: 8px;
        }

        .btn-ghost:hover {
            background: var(--accent-cyan);
            color: #000;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
        }

        .scan-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .product-monolith:hover .scan-line {
            opacity: 1;
            animation: scanDown 2s infinite linear;
        }

        @keyframes scanDown {
            0% {
                top: 0%;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                top: 100%;
                opacity: 0;
            }
        }

        /* =========================================
       LÓGICA ESTRUCTURAL DEL CARRUSEL
       ========================================= */

        .carousel-wrapper {
            position: relative;
            max-width: 800px;
            /* Ancho máximo del visor */
            margin: 0 auto;
            padding: 20px 0;
        }

        .carousel-track-container {
            overflow: hidden;
            /* Oculta las diapositivas que están a los lados */
            width: 100%;
            position: relative;
        }

        .carousel-track {
            display: flex;
            /* Pone las slides en fila horizontal */
            transition: transform 0.5s ease-in-out;
            /* Suaviza el movimiento */
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            /* Cada slide ocupa el 100% del contenedor visible */
            box-sizing: border-box;
            padding: 0 10px;
            /* Espacio entre slides */
        }

        /* Botones de navegación */
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--accent-cyan);
            color: #fff;
            font-size: 1.5rem;
            padding: 10px 15px;
            cursor: pointer;
            z-index: 10;
            border-radius: 4px;
            transition: 0.3s;
        }

        .slider-btn:hover {
            background: var(--accent-cyan);
            color: #000;
        }

        .slider-btn.prev {
            left: -50px;
        }

        .slider-btn.next {
            right: -50px;
        }

        /* Ajuste para móviles: botones dentro si no caben fuera */
        @media (max-width: 900px) {
            .slider-btn.prev {
                left: 0;
            }

            .slider-btn.next {
                right: 0;
            }
        }

        /* Stats */
        .stats-section {
            padding: 60px 0;
            background: rgba(0, 243, 255, 0.05);
            border-top: 1px solid rgba(0, 243, 255, 0.2);
            margin-top: 50px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-number {
            display: inline-block;
            font-size: 3.5rem;
            font-weight: 900;
            color: #fff;
            font-family: 'Geist', 'Inter', sans-serif;
            text-shadow: 0 0 15px var(--accent-cyan);
        }

        .stat-symbol {
            font-size: 2rem;
            color: var(--accent-cyan);
            font-weight: 700;
            margin-left: 5px;
        }

        .stat-label {
            color: var(--text-dim);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 5px;
        }

        /* =========================================
           ESTILOS ACERCA, PLANES Y CUENTA (Se mantienen)
           ========================================= */
        /* Copiamos los estilos que SÍ funcionaban de las otras secciones */
        .about-hero {
            text-align: center;
            padding: 80px 0;
        }

        .story-section {
            padding: 50px 0 150px 0;
            position: relative;
            perspective: 1000px;
            min-height: 80vh;
        }

        .timeline-progress-track {
            position: absolute;
            top: 55%;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            z-index: 0;
        }

        .timeline-progress-bar {
            height: 100%;
            width: 0%;
            background: var(--accent-cyan);
            box-shadow: 0 0 15px var(--accent-cyan);
            position: relative;
            transition: width 0.3s linear;
        }

        .timeline-progress-bar::after {
            content: '';
            position: absolute;
            right: -5px;
            top: -3px;
            width: 10px;
            height: 10px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 20px #fff;
        }

        .energy-recoil {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 50px;
            background: linear-gradient(90deg, transparent, #fff);
            opacity: 0;
        }

        .timeline-progress-bar.paused .energy-recoil {
            opacity: 1;
            animation: recoilShock 0.8s infinite ease-out;
        }

        @keyframes recoilShock {
            0% {
                transform: translateX(10px);
                opacity: 0.8;
            }

            100% {
                transform: translateX(-60px);
                opacity: 0;
            }
        }

        .timeline-horizontal {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 10;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .timeline-col {
            width: 19%;
            position: relative;
            height: 320px;
            display: flex;
            flex-direction: column;
        }

        /* ANIMACIÓN DE CAÍDA */
        .falling-wrapper {
            opacity: 0;
            transform: translateY(-200px);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .falling-wrapper.dropped {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-content {
            padding: 20px;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.06) 0%,
                    rgba(255, 255, 255, 0.01) 40%,
                    rgba(255, 255, 255, 0.03) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            text-align: center;
            width: 100%;
            transform-style: preserve-3d;
            transition: transform 0.1s, border-color 0.3s, box-shadow 0.3s;
            cursor: pointer;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.04) 90deg,
                    transparent 180deg,
                    rgba(0, 243, 255, 0.02) 270deg,
                    transparent 360deg);
            animation: liquidRefraction 12s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        .timeline-content::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.08) 0%,
                    rgba(255, 255, 255, 0.02) 30%,
                    transparent 100%);
            border-radius: inherit;
            pointer-events: none;
            z-index: 1;
        }

        .timeline-content>* {
            position: relative;
            z-index: 2;
        }

        .timeline-content:hover {
            border-color: var(--accent-cyan);
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.1) 0%,
                    rgba(255, 255, 255, 0.03) 40%,
                    rgba(255, 255, 255, 0.06) 100%);
            box-shadow:
                0 12px 48px rgba(0, 0, 0, 0.6),
                0 0 25px rgba(0, 243, 255, 0.1),
                inset 0 1px 0 rgba(0, 243, 255, 0.15);
        }

        .connector-line {
            width: 2px;
            height: 50px;
            background: rgba(0, 243, 255, 0.3);
            margin-top: 10px;
            transition: 0.3s;
        }

        .falling-wrapper:hover .connector-line {
            background: var(--accent-cyan);
            height: 80px;
            box-shadow: 0 0 10px var(--accent-cyan);
        }

        .connector-dot {
            width: 12px;
            height: 12px;
            background: #02040a;
            border: 2px solid var(--accent-cyan);
            border-radius: 50%;
            z-index: 20;
        }

        .year {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 2rem;
            color: var(--accent-cyan);
            font-weight: 700;
            transform: translateZ(20px);
        }

        @media (max-width: 768px) {
            .timeline-horizontal {
                flex-direction: column;
            }

            .timeline-col {
                width: 100%;
                height: auto;
                margin-bottom: 40px;
            }

            .timeline-progress-track {
                display: none;
            }
        }

        /* Badges y Etiquetas */
        .tech-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 4px;
            border: 1px solid;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
        }

        .badge-secure {
            color: var(--accent-green);
            border-color: var(--accent-green);
            background: rgba(0, 230, 118, 0.1);
        }

        .badge-warning {
            color: var(--accent-alert);
            border-color: var(--accent-alert);
            background: rgba(255, 42, 42, 0.1);
        }

        /* Tarjeta de Datos Corporativos */
        .corp-data-card {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.06) 0%,
                    rgba(255, 255, 255, 0.01) 40%,
                    rgba(255, 255, 255, 0.03) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(0, 243, 255, 0.25);
            border-left: 3px solid var(--accent-cyan);
            border-top: 1px solid rgba(0, 243, 255, 0.35);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(0, 243, 255, 0.06),
                inset 0 1px 0 rgba(0, 243, 255, 0.1);
        }

        .corp-data-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.05) 90deg,
                    transparent 180deg,
                    rgba(0, 243, 255, 0.02) 270deg,
                    transparent 360deg);
            animation: liquidRefraction 12s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        .corp-data-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg,
                    rgba(0, 243, 255, 0.06) 0%,
                    rgba(255, 255, 255, 0.02) 30%,
                    transparent 100%);
            border-radius: inherit;
            pointer-events: none;
            z-index: 1;
        }

        .corp-data-card>* {
            position: relative;
            z-index: 2;
        }

        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }

        .data-group label {
            display: block;
            color: var(--text-dim);
            font-size: 0.8rem;
            margin-bottom: 5px;
            font-family: 'Geist', 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .data-group .value {
            color: #fff;
            font-size: 1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* --- HERO HEADER --- */
        .about-hero {
            text-align: center;
            padding: 100px 0;
            background: radial-gradient(circle at center, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
        }

        h1 {
            font-size: 4rem;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
        }

        .lead-text {
            font-size: 1.2rem;
            color: var(--text-dim);
            max-width: 700px;
            margin: 0 auto;
        }

        /* --- VALORES (ADN DIGITAL) --- */
        .values-section {
            padding: 80px 0;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .value-card {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.06) 0%,
                    rgba(255, 255, 255, 0.01) 40%,
                    rgba(255, 255, 255, 0.03) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding: 40px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            transition: 0.4s;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.04) 90deg,
                    transparent 180deg,
                    rgba(0, 243, 255, 0.02) 270deg,
                    transparent 360deg);
            animation: liquidRefraction 12s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        .value-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.08) 0%,
                    rgba(255, 255, 255, 0.02) 30%,
                    transparent 100%);
            border-radius: inherit;
            pointer-events: none;
            z-index: 1;
        }

        .value-card>* {
            position: relative;
            z-index: 2;
        }

        .value-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-cyan);
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.1) 0%,
                    rgba(255, 255, 255, 0.03) 40%,
                    rgba(255, 255, 255, 0.06) 100%);
            box-shadow:
                0 12px 48px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(0, 243, 255, 0.1),
                inset 0 1px 0 rgba(0, 243, 255, 0.15);
        }

        .value-icon {
            font-size: 2.5rem;
            color: var(--accent-cyan);
            margin-bottom: 20px;
        }

        .value-title {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .value-desc {
            font-size: 0.95rem;
            color: var(--text-dim);
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 100px;
            height: 100px;
            background: var(--accent-cyan);
            filter: blur(60px);
            opacity: 0.2;
            transition: 0.4s;
        }

        .value-card:hover::before {
            opacity: 0.4;
        }

        /* --- EQUIPO (PROFILE CARDS) --- */
        .team-section {
            padding: 80px 0;
            text-align: center;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .member-card {
            background: transparent;
            perspective: 1000px;
        }

        .member-img-box {
            width: 100%;
            height: 300px;
            background: #111;
            border: 1px solid #333;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .member-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: 0.5s;
            opacity: 0.7;
        }

        .member-card:hover .member-img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        .member-card:hover .member-img-box {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
        }

        .member-info h3 {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.5rem;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .member-role {
            color: var(--accent-cyan);
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .member-bio {
            font-size: 0.85rem;
            color: var(--text-dim);
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.06) 0%,
                    rgba(255, 255, 255, 0.01) 40%,
                    rgba(255, 255, 255, 0.03) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(0, 243, 255, 0.25);
            border-top: 1px solid rgba(0, 243, 255, 0.35);
            padding: 20px;
            border-radius: 8px;
            margin-top: 15px;
            box-shadow:
                0 4px 15px rgba(0, 0, 0, 0.5),
                0 0 15px rgba(0, 243, 255, 0.06),
                inset 0 1px 0 rgba(0, 243, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: left;
        }

        .member-bio::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.04) 90deg,
                    transparent 180deg,
                    rgba(0, 243, 255, 0.02) 270deg,
                    transparent 360deg);
            animation: liquidRefraction 12s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        .member-bio::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg,
                    rgba(0, 243, 255, 0.06) 0%,
                    rgba(255, 255, 255, 0.02) 30%,
                    transparent 100%);
            border-radius: inherit;
            pointer-events: none;
            z-index: 1;
        }

        .member-bio>* {
            position: relative;
            z-index: 2;
        }

        .member-bio:hover {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.1) 0%,
                    rgba(255, 255, 255, 0.03) 40%,
                    rgba(255, 255, 255, 0.06) 100%);
            box-shadow:
                0 0 25px rgba(0, 243, 255, 0.2),
                0 8px 32px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(0, 243, 255, 0.15);
            transform: translateY(-2px);
        }

        .tech-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 10px;
            background: linear-gradient(0deg, #000 0%, transparent 100%);
            color: var(--accent-cyan);
            font-family: 'Geist Mono', monospace;
            font-size: 0.7rem;
            text-align: left;
            opacity: 0;
            transition: 0.3s;
        }

        .member-card:hover .tech-overlay {
            opacity: 1;
        }

        footer {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 0;
            text-align: center;
            margin-top: 50px;
            color: #666;
            font-size: 0.9rem;
        }

        /* Barras de Consumo (Resources) */
        .resource-bar-container {
            margin-top: 10px;
        }

        .bar-label {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #ccc;
            margin-bottom: 5px;
        }

        .progress-track {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
            width: 0%;
            transition: width 1s ease-out;
        }

        /* Botón de Copiar/Editar pequeño */
        .action-icon {
            cursor: pointer;
            opacity: 0.6;
            transition: 0.3s;
            width: 14px;
            height: 14px;
            fill: #fff;
        }

        .action-icon:hover {
            opacity: 1;
            fill: var(--accent-cyan);
        }

        /* --- FONDO ANIMADO --- */
        #data-network {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at center, #0b1021 0%, #02040a 100%);
        }

        /* --- NAVBAR SIMPLIFICADA --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            background: transparent;
            backdrop-filter: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 10px;
        }

        .logo img {
            max-height: 200px;
        }

        .logo-text {
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: #fff;
            letter-spacing: 2px;
        }

        .user-menu {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logout-btn {
            color: var(--text-dim);
            text-decoration: none;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            transition: 0.3s;
            border: 1px solid transparent;
            padding: 5px 15px;
            border-radius: 4px;
        }

        .logout-btn:hover {
            color: var(--accent-alert);
            border-color: var(--accent-alert);
        }

        /* --- DASHBOARD LAYOUT --- */
        .dashboard-container {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
            width: 100%;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 30px;
        }

        /* --- SIDEBAR / PERFIL --- */
        .profile-panel {
            background: var(--panel-bg);
            border: 1px solid rgba(0, 243, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            height: fit-content;
        }

        .avatar-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 2px solid var(--accent-cyan);
            background: url('https://via.placeholder.com/150') center/cover;
            /* Placeholder avatar */
            margin-bottom: 15px;
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
        }

        .user-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .user-role {
            color: var(--accent-cyan);
            font-family: 'Geist', 'Inter', sans-serif;
            letter-spacing: 1px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .stats-list {
            width: 100%;
            text-align: left;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }

        .stat-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .stat-label {
            color: var(--text-dim);
        }

        .stat-val {
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            color: #fff;
        }

        /* --- MAIN CONTENT --- */
        .main-panel {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .section-header {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.8rem;
            border-bottom: 1px solid rgba(0, 243, 255, 0.3);
            padding-bottom: 10px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .status-indicator {
            font-size: 0.9rem;
            color: var(--accent-green);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-green);
            animation: pulse 2s infinite;
        }

        /* GRID PRODUCTOS */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .access-card {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.06) 0%,
                    rgba(255, 255, 255, 0.01) 40%,
                    rgba(255, 255, 255, 0.03) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            padding: 25px;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .access-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%,
                    transparent 0deg,
                    rgba(0, 243, 255, 0.04) 90deg,
                    transparent 180deg,
                    rgba(0, 243, 255, 0.02) 270deg,
                    transparent 360deg);
            animation: liquidRefraction 12s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        .access-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.08) 0%,
                    rgba(255, 255, 255, 0.02) 30%,
                    transparent 100%);
            border-radius: inherit;
            pointer-events: none;
            z-index: 1;
        }

        .access-card>* {
            position: relative;
            z-index: 2;
        }

        .access-card:hover {
            border-color: var(--accent-cyan);
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.1) 0%,
                    rgba(255, 255, 255, 0.03) 40%,
                    rgba(255, 255, 255, 0.06) 100%);
            transform: translateY(-5px);
            box-shadow:
                0 12px 40px rgba(0, 0, 0, 0.6),
                0 0 25px rgba(0, 243, 255, 0.1),
                inset 0 1px 0 rgba(0, 243, 255, 0.15);
        }

        .card-top {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .prod-icon {
            width: 40px;
            height: 40px;
            fill: var(--accent-cyan);
        }

        .prod-status {
            font-size: 0.7rem;
            padding: 4px 8px;
            border-radius: 4px;
            background: rgba(0, 230, 118, 0.1);
            color: var(--accent-green);
            border: 1px solid var(--accent-green);
            height: fit-content;
            font-weight: bold;
            font-family: 'Geist', 'Inter', sans-serif;
        }

        .prod-name {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .prod-detail {
            font-size: 0.85rem;
            color: var(--text-dim);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .launch-btn {
            background: linear-gradient(90deg, rgba(0, 243, 255, 0.1), transparent);
            border: 1px solid var(--accent-cyan);
            color: var(--accent-cyan);
            padding: 10px;
            width: 100%;
            text-align: center;
            text-decoration: none;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        .launch-btn:hover {
            background: var(--accent-cyan);
            color: #000;
            box-shadow: 0 0 15px var(--accent-cyan);
        }

        /* --- TERMINAL DE ACTIVIDAD --- */
        .terminal-log {
            background: #050505;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 20px;
            font-family: 'Geist Mono', monospace;
            font-size: 0.85rem;
            color: #33ff33;
            height: 150px;
            overflow: hidden;
            position: relative;
        }

        .log-line {
            margin-bottom: 5px;
            opacity: 0.8;
        }

        .log-time {
            color: #666;
            margin-right: 10px;
        }

        .terminal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8));
            pointer-events: none;
        }

        @keyframes pulse {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }

            100% {
                opacity: 1;
            }
        }

        @media (max-width: 900px) {
            .dashboard-container {
                grid-template-columns: 1fr;
            }

            .profile-panel {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                text-align: left;
                gap: 20px;
            }

            .avatar-circle {
                width: 60px;
                height: 60px;
                margin: 0;
            }

            .stats-list {
                display: none;
            }

            /* Ocultar stats en movil para ahorrar espacio */
        }


        /* Modales */
        #agentModal,
        #calcModal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            width: 90%;
            max-width: 800px;
            height: 80vh;
            background: #000;
            border: 1px solid #333;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
            display: flex;
            flex-direction: column;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 2000;
            font-weight: bold;
        }

        iframe {
            width: 100%;
            height: 100%;
            border: none;
            flex-grow: 1;
        }

        .calc-box {
            background: linear-gradient(135deg, #1a1300, #000);
            border: 2px solid var(--accent-gold);
            padding: 40px;
            border-radius: 20px;
            width: 400px;
            color: white;
            position: relative;
            font-family: 'Geist', 'Inter', sans-serif;
        }

        .input-group label {
            display: block;
            color: #aaa;
            margin-bottom: 5px;
        }

        .input-group input {
            width: 100%;
            accent-color: var(--accent-gold);
        }

        .val-display {
            float: right;
            color: var(--accent-gold);
            font-weight: bold;
        }

        .result-box {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid #5c471f;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
        }

        .result-val {
            font-size: 2.5rem;
            color: var(--accent-gold);
            font-weight: bold;
            display: block;
        }

        /* Dashboard */
        .dashboard-container {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 30px;
            padding: 40px 0;
        }

        .profile-panel {
            background: var(--panel-bg);
            border: 1px solid rgba(0, 243, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .avatar-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 2px solid var(--accent-cyan);
            margin-bottom: 15px;
            background-size: cover;
            background-position: center;
        }

        .corp-data-card {
            background: rgba(13, 18, 29, 0.6);
            border: 1px solid rgba(0, 243, 255, 0.1);
            border-left: 3px solid var(--accent-cyan);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }

        .terminal-log {
            background: #050505;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 20px;
            font-family: 'Geist Mono', monospace;
            font-size: 0.85rem;
            color: #33ff33;
            height: 150px;
            overflow: hidden;
            position: relative;
        }

        /* (Footer movido al final del archivo para unificar) */

        summary {
            background: rgba(13, 18, 29, 0.8);
            padding: 12px 15px;
            cursor: pointer;
            color: #fff;
            outline: none;
            list-style: none;
            display: flex;
            justify-content: space-between;
        }

        summary::after {
            content: '+';
            color: var(--accent-cyan);
            font-weight: bold;
        }

        details:hover {
            border-color: var(--accent-cyan);
            background: rgba(0, 243, 255, 0.05);
        }

        details[open] {
            border-color: var(--accent-cyan);
        }


        .faq-answer {
            padding: 15px;
            color: var(--text-dim);
            background: rgba(0, 0, 0, 0.2);
            font-size: 0.85rem;
        }

        @media (max-width: 900px) {
            .hero h1 {
                font-size: 3rem;
            }

            .timeline-horizontal {
                flex-direction: column;
                margin-top: 0;
            }

            .timeline-col {
                width: 100%;
                height: auto;
                margin-bottom: 40px;
            }

            .falling-wrapper {
                transform: translateX(-50px);
            }

            .falling-wrapper.dropped {
                transform: translateX(0);
            }

            .timeline-progress-track {
                display: none;
            }

            .dashboard-container,
            .footer-grid,
            .faq-container {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .carousel-slide {
                min-width: 100%;
            }
        }

        /* =========================================
       NUEVO: MOCKUPS CSS (Interfaces Técnicas)
       ========================================= */

        /* Contenedor de la ventana del software */
        .mockup-window {
            width: 85%;
            height: 75%;
            background: #05080f;
            /* Fondo oscuro interfaz */
            border: 1px solid rgba(0, 243, 255, 0.15);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
            transition: 0.3s;
        }

        .product-monolith:hover .mockup-window {
            border-color: var(--accent-cyan);
            transform: scale(1.02);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
        }

        /* Barra de título de la ventana */
        .mockup-header {
            height: 25px;
            background: rgba(0, 243, 255, 0.05);
            border-bottom: 1px solid rgba(0, 243, 255, 0.1);
            display: flex;
            align-items: center;
            padding-left: 10px;
            gap: 5px;
        }

        .win-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #333;
        }

        .win-dot.red {
            background: #ff3333;
        }

        .win-dot.yellow {
            background: #ffcc00;
        }

        .win-dot.green {
            background: #00e676;
        }

        /* Cuerpo de la interfaz */
        .mockup-body {
            flex-grow: 1;
            padding: 15px;
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* --- Elementos UI Genéricos --- */
        .ui-sidebar {
            width: 20%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.02);
        }

        .ui-line {
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            width: 100%;
        }

        .ui-line.short {
            width: 60%;
        }

        .ui-line.cyan {
            background: rgba(0, 243, 255, 0.4);
        }

        /* --- MOCKUP WMS (Grilla Inventario) --- */
        .wms-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 6px;
            margin-left: 25%;
            margin-top: 10px;
        }

        .wms-slot {
            height: 20px;
            border: 1px solid rgba(0, 243, 255, 0.1);
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }

        .wms-slot.full {
            background: rgba(0, 243, 255, 0.15);
        }

        .wms-slot.alert {
            border-color: #ff3333;
            background: rgba(255, 51, 51, 0.1);
        }

        /* Efecto de escaneo sobre el WMS */
        .scan-overlay {
            position: absolute;
            top: 0;
            left: 20%;
            width: 80%;
            height: 2px;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
            opacity: 0.5;
            animation: scan-ui 3s infinite linear;
        }

        /* --- MOCKUP TMS (Mapa/Rutas) --- */
        .tms-map {
            position: absolute;
            inset: 0;
            margin-left: 20%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 10px 10px;
            opacity: 0.5;
        }

        .route-line {
            position: absolute;
            top: 40%;
            left: 30%;
            width: 50%;
            height: 30px;
            border-top: 2px dashed var(--accent-cyan);
            border-right: 2px dashed var(--accent-cyan);
            border-radius: 0 20px 0 0;
        }

        .truck-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-cyan);
            border-radius: 50%;
            position: absolute;
            top: -5px;
            left: 0;
            box-shadow: 0 0 10px var(--accent-cyan);
            animation: move-truck 4s infinite linear;
        }

        /* --- MOCKUP EGL DASHBOARD (Premium) --- */
        .mockup-body.dashboard-mode {
            padding: 10px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: #05080f;
            height: 100%;
        }

        .dashboard-header {
            display: flex;
            gap: 5px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(0, 243, 255, 0.1);
            overflow-x: auto;
            white-space: nowrap;
        }

        .dash-nav {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.65rem;
            padding: 4px 8px;
            color: var(--text-dim);
            border: 1px solid transparent;
            border-radius: 4px;
            cursor: pointer;
            transition: 0.3s;
        }

        .dash-nav.active {
            background: rgba(0, 243, 255, 0.1);
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }

        .dash-main {
            flex-grow: 1;
            display: grid;
            grid-template-rows: 1fr auto;
            gap: 10px;
            overflow: hidden;
        }

        .dash-chart-area {
            position: relative;
            background: rgba(0, 243, 255, 0.02);
            border-radius: 6px;
            border: 1px solid rgba(0, 243, 255, 0.05);
            padding: 10px;
            display: flex;
            flex-direction: column;
        }

        .dash-chart-svg {
            width: 100%;
            height: 100%;
            max-height: 120px;
        }

        .dash-table-area {
            background: rgba(13, 18, 29, 0.6);
            border-radius: 6px;
            padding: 8px;
            border: 1px solid rgba(0, 243, 255, 0.1);
        }

        .dash-mini-table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.65rem;
        }

        .dash-mini-table th {
            text-align: left;
            color: var(--accent-cyan);
            padding: 4px;
            border-bottom: 1px solid rgba(0, 243, 255, 0.1);
        }

        .dash-mini-table td {
            padding: 4px;
            color: #fff;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .dash-mini-table tr:last-child td {
            border-bottom: none;
        }

        .stock-badge {
            padding: 1px 4px;
            border-radius: 2px;
            font-size: 0.6rem;
            background: rgba(0, 243, 255, 0.1);
            border: 1px solid var(--accent-cyan);
        }

        .stock-badge.alert {
            background: rgba(255, 51, 51, 0.1);
            border-color: #ff3333;
            color: #ff3333;
        }


        @keyframes scan-ui {
            0% {
                top: 10%;
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                top: 90%;
                opacity: 0;
            }
        }

        @keyframes move-truck {
            0% {
                left: 0;
                top: -5px;
            }

            50% {
                left: 100%;
                top: -5px;
            }

            51% {
                left: 100%;
                top: -5px;
                height: 30px;
                border: none;
            }

            100% {
                left: 100%;
                top: 25px;
            }
        }

        /* =========================================
       NUEVO: ENLACES FUNDACIONES (FOOTER)
       ========================================= */

        .foundation-group {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .foundation-links {
            display: flex;
            flex-direction: column;
            gap: 6px;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
            padding-left: 20px;
        }

        .footer-int-link {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.85rem;
            color: #888;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: 0.3s;
            font-weight: 600;
            display: inline-block;
        }

        .footer-int-link:hover {
            color: var(--accent-cyan);
            /* Removed transform to prevent flickering */
            text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
        }

        /* Ajuste móvil para que no se vea apretado */
        @media (max-width: 600px) {
            .foundation-group {
                flex-direction: column;
                align-items: flex-start;
            }

            .foundation-links {
                border-left: none;
                padding-left: 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                padding-top: 15px;
                width: 100%;
            }
        }

        /* =========================================
       CORRECCIÓN FINAL: MOCKUPS GALERÍA + ANIMACIONES
       ========================================= */

        /* Escenario base */
        .gallery-stage {
            width: 100%;
            height: 250px;
            min-height: 250px;
            background: radial-gradient(circle at center, #0f172a 0%, #000 100%);
            border-bottom: 1px solid rgba(0, 243, 255, 0.3);
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
        }

        /* --- MOCKUP 1: SPA (Robot & Estantes) --- */
        .spa-aisle {
            display: flex;
            flex-direction: column;
            gap: 6px;
            /* Espacio vertical entre estantes */
            width: 90%;
            height: 100%;
            justify-content: center;
            position: relative;
            z-index: 5;
        }

        /* Filas de Estantería */
        .shelf-row {
            display: flex;
            gap: 6px;
            align-items: flex-end;
            border-bottom: 4px solid #444;
            padding-bottom: 0px;
            height: 35px;
            width: 100%;
            justify-content: center;
        }

        /* Cajas y Espacios */
        .product-box {
            width: 22px;
            height: 28px;
            background: rgba(0, 243, 255, 0.15);
            border: 1px solid var(--accent-cyan);
            box-shadow: 0 0 5px rgba(0, 243, 255, 0.1);
        }

        .empty-slot {
            width: 22px;
            height: 28px;
            position: relative;
            border-bottom: 1px solid #555;
            background: transparent;
        }

        .empty-slot::after {
            content: 'FIFO';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 0.5rem;
            color: var(--accent-green);
            font-weight: bold;
            animation: blink-fifo 0.5s infinite alternate;
            opacity: 0;
        }

        /* Aleatoriedad visual del FIFO */
        .empty-slot:nth-child(odd)::after {
            animation-delay: 0.5s;
        }

        .empty-slot:nth-child(even)::after {
            animation-delay: 1.2s;
        }

        /* --- EL ROBOT MÓVIL (Asegurado) --- */
        .robo-arm-base {
            position: absolute;
            bottom: 20px;
            right: 5%;
            /* Posición inicial */
            width: 50px;
            height: 15px;
            background: #888;
            border: 2px solid #fff;
            box-shadow: 0 5px 10px #000;
            z-index: 20;
            /* Z-index alto para que nada lo tape */
            /* Animación forzada */
            animation: robot-scan-path 6s ease-in-out infinite alternate !important;
        }

        .robo-arm-joint {
            position: absolute;
            bottom: 15px;
            left: 50%;
            margin-left: -5px;
            width: 10px;
            height: 90px;
            background: #aaa;
            border: 1px solid #555;
            transform-origin: bottom center;
            animation: arm-subtle-scan 2s ease-in-out infinite alternate;
        }

        .robo-head {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 40px;
            height: 25px;
            background: var(--accent-cyan);
            box-shadow: 0 0 20px var(--accent-cyan);
            border: 2px solid #fff;
        }

        .scan-beam {
            position: absolute;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 90px;
            background: linear-gradient(to bottom, #ff3333, transparent);
            opacity: 0.8;
            animation: scan-pulse 0.5s infinite alternate;
        }

        /* --- MOCKUP 2 & 3 (AI + HARAS) --- */
        .ai-hive,
        .haras-fortress {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 5;
            height: 100%;
        }

        .ai-hive {
            width: 200px;
            height: 200px;
        }

        .central-core {
            width: 50px;
            height: 50px;
            background: #fff;
            border-radius: 50%;
            z-index: 10;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
            animation: pulse-core 2s infinite;
            position: relative;
        }

        .agent-node {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            position: absolute;
            box-shadow: 0 0 15px currentColor;
            border: 2px solid #fff;
            animation: float-agent 3s infinite alternate;
            z-index: 5;
        }

        .node-1 {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            color: #00e676;
            background: #00e676;
        }

        .node-2 {
            bottom: 10px;
            left: 0;
            color: #ff6d00;
            background: #ff6d00;
            animation-delay: 0.5s;
        }

        .node-3 {
            bottom: 10px;
            right: 0;
            color: #ffd700;
            background: #ffd700;
            animation-delay: 1s;
        }

        .hive-link {
            position: absolute;
            background: #fff;
            opacity: 0.5;
            z-index: 1;
            transform-origin: top center;
        }

        .link-1 {
            top: 50%;
            left: 50%;
            height: 2px;
            width: 60px;
            transform: rotate(-90deg) translateX(30px);
        }

        .link-2 {
            top: 50%;
            left: 50%;
            height: 2px;
            width: 60px;
            transform: rotate(150deg) translateX(30px);
        }

        .link-3 {
            top: 50%;
            left: 50%;
            height: 2px;
            width: 60px;
            transform: rotate(30deg) translateX(30px);
        }

        .blocked-cloud {
            font-size: 3rem;
            color: #444;
            position: relative;
            margin-bottom: 10px;
        }

        .blocked-cloud::after {
            content: '✕';
            position: absolute;
            color: #ff3333;
            font-weight: 900;
            top: 0;
            left: 25%;
            font-size: 3rem;
            text-shadow: 0 0 10px #ff0000;
        }

        .force-field {
            width: 120px;
            height: 120px;
            border: 3px solid #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.2);
            animation: shield-pulse 3s infinite;
            background: rgba(255, 255, 255, 0.05);
        }

        .bastion-server {
            width: 50px;
            height: 70px;
            background: #000;
            border: 2px solid #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            padding: 5px;
        }

        .server-led {
            width: 100%;
            height: 4px;
            background: #00e676;
            animation: blink-white 0.2s infinite alternate;
            box-shadow: 0 0 5px #00e676;
        }

        /* =========================================
       KEYFRAMES (ANIMACIONES)
       ========================================= */
        @keyframes robot-scan-path {
            0% {
                right: 5%;
            }

            100% {
                right: 80%;
            }
        }

        @keyframes arm-subtle-scan {
            0% {
                transform: rotate(10deg);
            }

            100% {
                transform: rotate(-10deg);
            }
        }

        @keyframes scan-pulse {
            0% {
                opacity: 0.4;
                height: 85px;
            }

            100% {
                opacity: 1;
                height: 95px;
            }
        }

        @keyframes blink-fifo {
            from {
                opacity: 0.1;
                color: #555;
            }

            to {
                opacity: 1;
                color: var(--accent-green);
                text-shadow: 0 0 10px var(--accent-green);
            }
        }

        @keyframes pulse-core {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
                box-shadow: 0 0 50px white;
            }
        }

        @keyframes float-agent {
            from {
                margin-top: 0;
            }

            to {
                margin-top: -10px;
            }
        }

        @keyframes shield-pulse {

            0%,
            100% {
                border-color: #888;
                transform: scale(1);
            }

            50% {
                border-color: #fff;
                transform: scale(1.05);
                box-shadow: 0 0 50px rgba(255, 255, 255, 0.6);
            }
        }

        @keyframes blink-white {
            from {
                opacity: 0.2;
            }

            to {
                opacity: 1;
            }
        }

        /* =========================================
       CUSTOM SCROLLBAR (DEEP TECH STYLE)
       ========================================= */

        /* Ancho de la barra */
        ::-webkit-scrollbar {
            width: 8px;
            /* Más delgada y elegante */
            height: 8px;
            /* Para scroll horizontal si hubiera */
        }

        /* El carril (Fondo) */
        ::-webkit-scrollbar-track {
            background: #02040a;
            /* Mismo color que el fondo de la web */
            border-left: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* El indicador (La barra que se mueve) */
        ::-webkit-scrollbar-thumb {
            background: #333;
            /* Color base apagado */
            border-radius: 4px;
            border: 1px solid transparent;
            background-clip: content-box;
            transition: background 0.3s;
        }

        /* Al pasar el mouse sobre la barra */
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-cyan);
            /* Se ilumina en Cian */
            box-shadow: 0 0 10px var(--accent-cyan);
            /* Efecto neón */
        }

        /* =========================================
       ERROR 404: GLITCH EFFECT
       ========================================= */

        .glitch-container {
            position: relative;
            margin-bottom: 20px;
        }

        /* Texto Base Gigante */
        .glitch-text {
            font-size: 8rem;
            font-weight: 900;
            color: #fff;
            position: relative;
            display: inline-block;
            letter-spacing: 10px;
        }

        /* Las copias fantasma que crean el efecto (Rojo y Azul) */
        .glitch-text::before,
        .glitch-text::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-color);
            /* Tapa el texto original parcialmente */
        }

        /* Capa Roja (Izquierda) */
        .glitch-text::before {
            left: 2px;
            text-shadow: -2px 0 #ff3333;
            clip: rect(24px, 550px, 90px, 0);
            animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
        }

        /* Capa Azul/Cian (Derecha) */
        .glitch-text::after {
            left: -2px;
            text-shadow: -2px 0 var(--accent-cyan);
            clip: rect(85px, 550px, 140px, 0);
            animation: glitch-anim-2 3s infinite linear alternate-reverse;
        }

        /* KEYFRAMES: La coreografía del caos */
        @keyframes glitch-anim-1 {
            0% {
                clip: rect(20px, 9999px, 10px, 0);
            }

            20% {
                clip: rect(60px, 9999px, 80px, 0);
            }

            40% {
                clip: rect(30px, 9999px, 10px, 0);
            }

            60% {
                clip: rect(90px, 9999px, 100px, 0);
            }

            80% {
                clip: rect(10px, 9999px, 40px, 0);
            }

            100% {
                clip: rect(70px, 9999px, 90px, 0);
            }
        }

        @keyframes glitch-anim-2 {
            0% {
                clip: rect(90px, 9999px, 100px, 0);
            }

            20% {
                clip: rect(10px, 9999px, 30px, 0);
            }

            40% {
                clip: rect(50px, 9999px, 80px, 0);
            }

            60% {
                clip: rect(20px, 9999px, 60px, 0);
            }

            80% {
                clip: rect(80px, 9999px, 90px, 0);
            }

            100% {
                clip: rect(10px, 9999px, 20px, 0);
            }
        }

        /* Ruido estático de fondo (Opcional pero recomendado) */
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
            pointer-events: none;
            z-index: -1;
            opacity: 0.3;
        }

        /* =========================================
   ESTILOS AGENDAR DEMO (ACTUALIZADO PARA SCROLL)
   ========================================= */
        #demoModal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .demo-box {
            background: linear-gradient(135deg, #02040a 0%, #0a0f1e 100%);
            border: 1px solid var(--accent-cyan);
            padding: 40px;
            border-radius: 15px;
            width: 100%;
            max-width: 500px;
            /* Ancho máximo fijo */
            color: white;
            font-family: 'Geist', 'Inter', sans-serif;
            position: relative;
            box-shadow: 0 0 40px rgba(0, 243, 255, 0.1);
            text-align: center;
            z-index: 2001;

            /* --- CLAVE PARA EL SCROLL --- */
            max-height: 90vh;
            /* No crecerá más del 90% de la altura de la pantalla */
            overflow-y: auto;
            /* Activa el scrollbar vertical si el contenido es largo */
        }

        /* Personalización de la barra de scroll dentro del modal (Estilo Deep Tech) */
        .demo-box::-webkit-scrollbar {
            width: 6px;
            /* Barra fina */
        }

        .demo-box::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            /* Fondo oscuro */
        }

        .demo-box::-webkit-scrollbar-thumb {
            background: var(--accent-cyan);
            /* Color Cian */
            border-radius: 3px;
        }

        .demo-box::-webkit-scrollbar-thumb:hover {
            background: #fff;
        }

        .demo-box::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            width: 20px;
            height: 20px;
            border-top: 2px solid var(--accent-cyan);
            border-left: 2px solid var(--accent-cyan);
        }

        .demo-box::after {
            content: '';
            position: absolute;
            bottom: -1px;
            right: -1px;
            width: 20px;
            height: 20px;
            border-bottom: 2px solid var(--accent-cyan);
            border-right: 2px solid var(--accent-cyan);
        }

        .demo-box h2 {
            color: var(--accent-cyan);
            font-family: 'Geist', 'Inter', sans-serif;
            margin-bottom: 30px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            color: var(--accent-cyan);
            margin-bottom: 8px;
            font-size: 0.8rem;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Estilos para Inputs y Selects */
        .form-input,
        .form-select {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #333;
            color: #fff;
            padding: 12px 15px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1rem;
            transition: 0.3s;
            border-radius: 4px;
            box-sizing: border-box;
            /* Importante para que el padding no rompa el ancho */
            appearance: none;
            /* Elimina estilos por defecto del navegador en selects */
        }

        /* Fondo del dropdown oscuro específico */
        .form-select {
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300f3ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%205%2097.8c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095.9c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 15px top 50%;
            background-size: 12px auto;
            padding-right: 35px;
            /* Espacio para la flecha */
        }

        .form-input:focus,
        .form-select:focus {
            border-color: var(--accent-cyan);
            outline: none;
            background: rgba(0, 243, 255, 0.05);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background: var(--accent-cyan);
            color: #000;
            font-weight: 800;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            font-family: 'Geist', 'Inter', sans-serif;
            letter-spacing: 1px;
            margin-top: 10px;
            border-radius: 4px;
        }

        .btn-submit:hover {
            background: #fff;
            box-shadow: 0 0 20px var(--accent-cyan);
            transform: translateY(-2px);
        }

        /* =========================================
   ESTILOS GLOBALES DE SELECCIÓN (Deep Tech)
   ========================================= */
        /* Esto afecta a toda la página, incluido el modal */
        ::selection {
            background: rgba(0, 243, 255, 0.15);
            /* Fondo oscuro con ligero tinte Cyan */
            color: #00f3ff;
            /* Texto en Cyan brillante */
        }

        ::-moz-selection {
            /* Para Firefox */
            background: rgba(0, 243, 255, 0.15);
            color: #00f3ff;
        }

        /* =========================================
   ESTILOS EXTRA LOGO MODAL
   ========================================= */
        .modal-logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            margin-top: -10px;
            /* Ajuste fino para centrar verticalmente con el título */
        }

        .modal-logo-container img {
            max-height: 60px;
            /* Tamaño ajustado para el modal */
            width: auto;
            filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.6));
            /* Resplandor Neon Cyan */
            transition: transform 0.3s;
        }

        .modal-logo-container img:hover {
            transform: scale(1.05);
        }

        /* =========================================
   COLORES DEL DESPLEGABLE (OPTIONS)
   ========================================= */

        /* Esto cambia el color de las opciones cuando haces clic en el select */
        .form-select option {
            background-color: #02040a;
            /* Fondo oscuro para que el cian resalte bien */
            color: var(--accent-cyan);
            /* Texto en Cian (#00f3ff) */
            font-weight: 600;
            /* Un poco más grueso para legibilidad */
        }

        /* --- LAYOUT DE SUSCRIPCIÓN --- */
        .subscription-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
            color: var(--text-main);
        }

        .subscription-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .sub-title {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #fff, var(--accent-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .sub-subtitle {
            color: var(--text-dim);
            margin-top: 10px;
            font-size: 1.1rem;
        }

        /* --- GRID DE PLANES --- */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .plan-card {
            background: rgba(13, 18, 29, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 30px;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .plan-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 243, 255, 0.5);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Plan Destacado */
        .plan-card.recommended {
            background: rgba(13, 18, 29, 0.8);
            border: 1px solid var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
        }

        .best-value-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-cyan);
            color: #000;
            font-weight: 800;
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 20px;
            box-shadow: 0 0 10px var(--accent-cyan);
            font-family: 'Geist', 'Inter', sans-serif;
            letter-spacing: 1px;
        }

        .plan-header {
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .plan-name {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.5rem;
            margin: 0;
            color: #fff;
            letter-spacing: 1px;
        }

        .plan-price {
            font-size: 2.2rem;
            font-weight: 700;
            color: #fff;
            margin-top: 10px;
        }

        .plan-price span {
            font-size: 0.9rem;
            color: var(--text-dim);
            font-weight: 400;
        }

        /* Features */
        .plan-features {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: #ddd;
        }

        .feature-item.dim {
            color: #666;
            text-decoration: line-through;
        }

        .check-icon {
            width: 18px;
            height: 18px;
            fill: var(--accent-green);
        }

        .cross-icon {
            width: 18px;
            height: 18px;
            fill: #666;
        }

        /* Botones */
        .plan-btn {
            width: 100%;
            padding: 12px;
            background: transparent;
            border: 1px solid #555;
            color: #fff;
            border-radius: 6px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .plan-btn:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .plan-btn.btn-glow {
            background: var(--accent-cyan);
            border-color: var(--accent-cyan);
            color: #000;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
        }

        .plan-btn.btn-glow:hover {
            background: #00d2dd;
            box-shadow: 0 0 25px rgba(0, 243, 255, 0.6);
        }

        /* --- LAYOUT GENERAL --- */
        .sub-management-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px;
            color: var(--text-main);
            font-family: 'Segoe UI', Roboto, sans-serif;
        }

        .sub-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* Alineación vertical central estricta */
            gap: 20px;
            /* Espacio mínimo entre título e indicador */
            margin-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 20px;
            flex-wrap: wrap;
            /* Permite bajar en móviles */
        }

        .section-title {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 2rem;
            margin: 0;
            color: #fff;
            letter-spacing: 1px;
        }

        .section-subtitle {
            color: var(--text-dim);
            margin: 5px 0 0 0;
        }

        /* Indicador de Estado */
        .status-suscription-indicator {
            display: inline-flex;
            /* Mantiene el tamaño ajustado al contenido */
            align-items: center;
            justify-content: center;
            gap: 12px;
            /* ESPACIO CLAVE entre el punto y el texto */

            background: rgba(0, 230, 118, 0.08);
            border: 1px solid var(--accent-green);
            color: var(--accent-green);

            padding: 8px 20px;
            /* Padding generoso */
            border-radius: 30px;

            min-width: 180px;
            /* Ancho mínimo para evitar colapsos */
            white-space: nowrap;
            /* Evita que el texto se rompa en dos líneas */

            box-shadow: 0 0 15px rgba(0, 230, 118, 0.1);
            /* Glow suave */
        }

        .status-suscription-text {
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            position: relative;
            top: 1px;
            /* Ajuste óptico fino */
        }

        .pulse-dot {
            width: 10px;
            height: 10px;
            min-width: 10px;
            /* Evita que el punto se aplaste */
            background-color: var(--accent-green);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-green);
            animation: pulse 2s infinite;
        }

        /* --- TARJETA DE PAGO MEJORADA --- */
        .card-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .card-brand-icon {
            font-weight: 800;
            font-style: italic;
            color: #fff;
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Acciones de Pago */
        .payment-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        /* Enlace Administrar */
        .manage-payment-link {
            color: var(--text-dim);
            font-size: 0.85rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
            padding-bottom: 2px;
        }

        .manage-payment-link:hover {
            color: var(--accent-cyan);
            border-bottom-color: var(--accent-cyan);
            transform: translateY(-1px);
        }

        /* Ajuste Responsive */
        @media (max-width: 768px) {
            .sub-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .status-wrapper {
                width: 100%;
                display: flex;
                justify-content: flex-start;
                /* O center si prefieres */
            }
        }

        /* --- GRID LAYOUT --- */
        .sub-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .sub-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 25px;
            position: relative;
            overflow: hidden;
        }

        .card-label {
            font-size: 0.75rem;
            color: var(--text-dim);
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* --- TARJETA PLAN ACTUAL --- */
        .current-plan {
            border-color: rgba(255, 215, 0, 0.3);
            /* Borde dorado sutil */
            background: linear-gradient(160deg, rgba(13, 18, 29, 0.8) 0%, rgba(30, 25, 10, 0.3) 100%);
        }

        .plan-title {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.8rem;
            margin: 0;
            color: #fff;
        }

        .plan-cost {
            font-size: 1.5rem;
            font-weight: 300;
            color: #fff;
            margin-bottom: 20px;
        }

        .plan-cost .period {
            font-size: 0.9rem;
            color: var(--text-dim);
        }

        .usage-stats {
            margin: 20px 0;
            padding: 15px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .usage-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            margin-bottom: 8px;
            color: var(--text-dim);
        }

        .text-white {
            color: #fff;
        }

        .plan-actions {
            display: flex;
            gap: 10px;
        }

        /* Botones Cyber */
        .cyber-btn {
            flex: 1;
            padding: 10px;
            border-radius: 6px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.9rem;
        }

        .cyber-btn.primary {
            background: var(--accent-cyan);
            color: #000;
            border: none;
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
        }

        .cyber-btn.primary:hover {
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
        }

        .cyber-btn.ghost {
            background: transparent;
            border: 1px solid #555;
            color: #fff;
        }

        .cyber-btn.ghost:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .cyber-btn.small {
            width: 100%;
            margin-top: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px dashed #555;
            color: var(--text-dim);
        }

        .cyber-btn.small:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }

        /* --- TARJETA CRÉDITO DIGITAL --- */
        .digital-card {
            background: linear-gradient(135deg, #1a1f35 0%, #0d121d 100%);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .card-chip svg {
            width: 35px;
            height: 35px;
            margin-bottom: 10px;
        }

        .card-number {
            font-family: 'Geist Mono', monospace;
            font-size: 1.2rem;
            letter-spacing: 2px;
            margin-bottom: 15px;
            color: #fff;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
        }

        .card-details {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--text-dim);
            font-family: 'Geist Mono', monospace;
        }

        .card-brand {
            position: absolute;
            top: 20px;
            right: 20px;
            font-weight: 800;
            font-style: italic;
            color: #fff;
        }

        /* --- TABLA FACTURACIÓN --- */
        .billing-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .billing-table th {
            text-align: left;
            color: var(--text-dim);
            font-weight: 400;
            padding-bottom: 10px;
            font-size: 0.8rem;
        }

        .billing-table td {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: #fff;
        }

        .badge.paid {
            background: rgba(0, 230, 118, 0.1);
            color: var(--accent-green);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
        }

        .icon-link {
            color: var(--accent-cyan);
            text-decoration: none;
            font-size: 0.8rem;
        }

        .history-footer {
            margin-top: 15px;
            text-align: center;
            font-size: 0.85rem;
        }

        .history-footer a {
            color: var(--text-dim);
            text-decoration: none;
        }

        .history-footer a:hover {
            color: #fff;
            text-decoration: underline;
        }

        /* --- DANGER ZONE (CANCELACIÓN) --- */
        .danger-zone {
            border: 1px solid rgba(220, 53, 69, 0.3);
            background: rgba(220, 53, 69, 0.05);
            border-radius: 12px;
            padding: 0;
            overflow: hidden;
        }

        .danger-header {
            background: rgba(220, 53, 69, 0.1);
            padding: 15px 25px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid rgba(220, 53, 69, 0.2);
        }

        .danger-icon {
            width: 24px;
            fill: #dc3545;
        }

        .danger-header h3 {
            margin: 0;
            font-family: 'Geist', 'Inter', sans-serif;
            color: #dc3545;
            /* Rojo peligro */
            font-weight: 700;
            letter-spacing: 1px;
        }

        .danger-content {
            padding: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .danger-content h4 {
            margin: 0 0 5px 0;
            color: #fff;
        }

        .danger-content p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-dim);
            max-width: 600px;
        }

        .btn-cancel-sub {
            background: transparent;
            border: 1px solid #dc3545;
            color: #dc3545;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 700;
            font-family: 'Geist', 'Inter', sans-serif;
            cursor: pointer;
            transition: 0.3s;
            white-space: nowrap;
        }

        .btn-cancel-sub:hover {
            background: #dc3545;
            color: #fff;
            box-shadow: 0 0 15px rgba(220, 53, 69, 0.4);
        }

        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .danger-content {
                flex-direction: column;
                align-items: flex-start;
            }

            .btn-cancel-sub {
                width: 100%;
            }
        }

        /* --- MOCKUP GIT (Visual Git Manager - Code Map Flow) --- */
        .vgm-interface {
            flex-grow: 1;
            padding: 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0a1a 0%, #0f172a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Animation Keyframes */
        @keyframes vgm-float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-5px) rotate(0.5deg);
            }
        }

        @keyframes vgm-pulse {

            0%,
            100% {
                opacity: 0.6;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        @keyframes vgm-flow {
            0% {
                background-position: -100% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        /* Container & Grid */
        .vgm-grid {
            position: relative;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
        }

        /* Nodes */
        .vgm-node {
            position: absolute;
            padding: 8px 12px;
            border-radius: 8px;
            backdrop-filter: blur(4px);
            border: 1px solid;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            gap: 4px;
            animation: vgm-float 6s ease-in-out infinite;
            z-index: 2;
        }

        .vgm-node.core {
            border-color: rgba(239, 68, 68, 0.6);
            background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(239, 68, 68, 0.1));
            top: 20%;
            left: 40%;
            animation-delay: 0s;
        }

        .vgm-node.api {
            border-color: rgba(16, 185, 129, 0.6);
            background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(16, 185, 129, 0.1));
            top: 60%;
            left: 15%;
            animation-delay: 1s;
        }

        .vgm-node.ui {
            border-color: rgba(59, 130, 246, 0.6);
            background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(59, 130, 246, 0.1));
            top: 50%;
            left: 65%;
            animation-delay: 2s;
        }

        /* Node Content */
        .vgm-node-header {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.7rem;
            color: #fff;
            font-weight: bold;
        }

        .vgm-node-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .vgm-node.core .vgm-node-dot {
            background: #ef4444;
            box-shadow: 0 0 8px #ef4444;
        }

        .vgm-node.api .vgm-node-dot {
            background: #10b981;
            box-shadow: 0 0 8px #10b981;
        }

        .vgm-node.ui .vgm-node-dot {
            background: #3b82f6;
            box-shadow: 0 0 8px #3b82f6;
        }

        .vgm-mini-lines {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .vgm-line {
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 1px;
        }

        /* Connections */
        .vgm-connection {
            position: absolute;
            height: 2px;
            transform-origin: left center;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent);
            z-index: 1;
            animation: vgm-pulse 3s infinite;
        }

        /* --- MOCKUP BIO (Gestión Personal) --- */
        /* --- MOCKUP BIO PRO (Restauración Deep Tech) --- */
        .bio-interface {
            display: grid;
            grid-template-columns: 50px 1fr;
            width: 100%;
            height: 100%;
            background: rgba(2, 4, 10, 0.4);
            /* Transparencia base */
            backdrop-filter: blur(8px);
            color: var(--text-main);
            overflow: hidden;
            font-family: 'Geist', 'Inter', sans-serif;
            border: 1px solid rgba(0, 243, 255, 0.15);
        }

        /* Sidebar Mockup */
        .hr-sidebar {
            background: rgba(13, 18, 29, 0.9);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px 0;
            gap: 15px;
            border-right: 1px solid rgba(0, 243, 255, 0.1);
        }

        .hr-side-btn {
            width: 30px;
            height: 30px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dim);
            font-size: 0.8rem;
            border: 1px solid transparent;
            transition: 0.3s;
        }

        .hr-side-btn.active {
            background: rgba(0, 243, 255, 0.1);
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
        }

        /* Main Content area */
        .hr-main {
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            overflow-y: auto;
        }

        .hr-header-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0, 243, 255, 0.1);
            padding-bottom: 5px;
        }

        .hr-user-selector {
            font-size: 0.6rem;
            color: var(--accent-cyan);
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 243, 255, 0.15);
            padding: 2px 8px;
            border-radius: 4px;
            font-family: 'Geist', 'Inter', sans-serif;
        }

        /* Profile Card Pro */
        .hr-profile-card {
            background: var(--card-bg);
            border: 1px solid rgba(0, 243, 255, 0.1);
            border-radius: 8px;
            padding: 12px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            position: relative;
            backdrop-filter: blur(4px);
        }

        .profile-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .profile-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(0, 230, 118, 0.2));
            border: 1px solid var(--accent-cyan);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-cyan);
            font-weight: bold;
            font-size: 0.9rem;
            text-shadow: 0 0 5px var(--accent-cyan);
        }

        .profile-details h4 {
            margin: 0;
            font-size: 0.75rem;
            color: var(--text-main);
            letter-spacing: 0.5px;
        }

        .profile-details p {
            margin: 0;
            font-size: 0.55rem;
            color: var(--text-dim);
        }

        /* Digital Clock area */
        .hr-clock-box {
            text-align: right;
            border-left: 1px solid rgba(0, 243, 255, 0.1);
            padding-left: 10px;
        }

        .digital-time {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent-cyan);
            line-height: 1;
            text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
        }

        .digital-date {
            font-size: 0.5rem;
            color: var(--text-dim);
            text-transform: uppercase;
        }

        /* Multi-buttons */
        .hr-action-group {
            display: flex;
            gap: 5px;
            margin-top: 8px;
        }

        .hr-btn-mini {
            flex: 1;
            padding: 4px;
            border-radius: 3px;
            font-size: 0.5rem;
            font-weight: bold;
            color: #000;
            text-align: center;
            border: none;
            font-family: 'Geist', 'Inter', sans-serif;
            text-transform: uppercase;
        }

        /* Lower Stats Grid */
        .hr-stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .hr-stat-widget {
            background: rgba(13, 18, 29, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            padding: 8px;
            text-align: center;
            transition: 0.3s;
        }

        .hr-stat-widget:hover {
            border-color: rgba(0, 243, 255, 0.3);
            background: rgba(13, 18, 29, 0.6);
        }

        .hr-stat-label {
            font-size: 0.5rem;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hr-stat-value {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--accent-green);
            font-family: 'Geist', 'Inter', sans-serif;
            text-shadow: 0 0 5px rgba(0, 230, 118, 0.3);
        }

        /* Biometric Integration */
        .hr-bio-overlay {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 55px;
            height: 55px;
            background: rgba(2, 4, 10, 0.85);
            border-radius: 6px;
            border: 1px solid var(--accent-cyan);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
            z-index: 10;
        }

        .mini-laser-line {
            width: 80%;
            height: 1px;
            background: #ff3333;
            box-shadow: 0 0 5px #ff3333;
            position: absolute;
            animation: mini-scan 2s infinite linear;
        }

        @keyframes mini-scan {
            0% {
                top: 20%;
            }

            50% {
                top: 80%;
            }

            100% {
                top: 20%;
            }
        }

        /* BIOMETRIC ANIMATIONS */
        @keyframes laser-scan {
            0% {
                top: 10%;
            }

            50% {
                top: 90%;
            }

            100% {
                top: 10%;
            }
        }

        @keyframes target-pulse {
            0% {
                transform: scale(1);
                opacity: 0.4;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
                box-shadow: inset 0 0 15px var(--accent-cyan);
            }

            100% {
                transform: scale(1);
                opacity: 0.4;
            }
        }

        @keyframes hud-text-blink {
            0% {
                opacity: 0.2;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0.2;
            }
        }

        /* --- SWARM INTELLIGENCE (Agentes AI) --- */
        .swarm-stage {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background: radial-gradient(circle at center, #1e1e2f 0%, #0a0a10 100%);
            overflow: hidden;
        }

        .swarm-core {
            width: 50px;
            height: 50px;
            background: radial-gradient(circle at 30% 30%, #a855f7, #6366f1);
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
            z-index: 10;
            animation: core-pulse 4s ease-in-out infinite;
            position: relative;
        }

        .swarm-core::after {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 1px solid rgba(168, 85, 247, 0.3);
            animation: core-ripple 2s linear infinite;
        }

        .orbital-ring {
            position: absolute;
            border: 1px dashed rgba(59, 130, 246, 0.2);
            border-radius: 50%;
            animation: rotate-orbit linear infinite;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .ring-inner {
            width: 140px;
            height: 140px;
            animation-duration: 15s;
        }

        .ring-outer {
            width: 220px;
            height: 220px;
            animation-duration: 25s;
            animation-direction: reverse;
        }

        .swarm-agent {
            position: absolute;
            width: 32px;
            height: 32px;
            background: #0f172a;
            border: 1px solid;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            color: #fff;
            font-size: 0.7rem;
            font-weight: bold;
            z-index: 5;
        }

        /* Positioning agents on rings */
        .ring-inner .swarm-agent:nth-child(1) {
            top: -16px;
            border-color: #00e676;
            color: #00e676;
            transform: rotate(0deg);
        }

        .ring-inner .swarm-agent:nth-child(2) {
            bottom: -16px;
            border-color: #00e676;
            color: #00e676;
        }

        .ring-outer .swarm-agent:nth-child(1) {
            left: -16px;
            border-color: #06b6d4;
            color: #06b6d4;
        }

        .ring-outer .swarm-agent:nth-child(2) {
            right: -16px;
            border-color: #06b6d4;
            color: #06b6d4;
        }

        /* Data Packets */
        .data-packet {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #fff;
            opacity: 0;
        }

        @keyframes core-pulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
            }

            50% {
                transform: scale(0.9);
                box-shadow: 0 0 50px rgba(168, 85, 247, 0.8);
            }
        }

        @keyframes core-ripple {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        @keyframes rotate-orbit {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* --- ACCOUNT IMPROVEMENTS --- */
        .team-grid-widget {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
            gap: 10px;
            margin-bottom: 20px;
            background: rgba(0, 0, 0, 0.2);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .team-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            position: relative;
        }

        .node-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #333;
            border: 1px solid #555;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.8rem;
            color: #aaa;
        }

        .node-avatar.online {
            border-color: var(--accent-green);
            box-shadow: 0 0 5px var(--accent-green);
            color: #fff;
            background: rgba(0, 230, 118, 0.1);
        }

        .node-status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #555;
            position: absolute;
            bottom: 15px;
            right: 8px;
            border: 1px solid #000;
        }

        .node-avatar.online+.node-status-dot {
            background: var(--accent-green);
        }

        .node-name {
            font-size: 0.7rem;
            color: #888;
            font-family: 'Geist', 'Inter', sans-serif;
        }

        .api-panel {
            background: rgba(13, 17, 23, 0.9);
            border: 1px solid rgba(0, 243, 255, 0.1);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .api-key-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 0, 0, 0.3);
            padding: 10px;
            border-radius: 4px;
            margin-top: 10px;
            border: 1px dashed rgba(255, 255, 255, 0.1);
        }

        .api-key-blur {
            font-family: 'Geist Mono', monospace;
            color: var(--accent-cyan);
            letter-spacing: 2px;
            filter: blur(4px);
            transition: 0.3s;
            cursor: pointer;
        }

        .api-key-blur:hover {
            filter: blur(0);
        }

        .collapsible-section {
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            background: rgba(15, 23, 42, 0.6);
        }

        .collapsible-header {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.03);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.3s;
        }

        .collapsible-header:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .collapsible-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }

        .collapsible-content.expanded {
            max-height: 2000px;
        }

        /* Should be enough */
        .arrow-icon {
            transition: transform 0.3s;
        }

        .expanded .arrow-icon {
            transform: rotate(180deg);
        }

        .hero-image-section img {
            width: 100%;
            /* obliga a que la imagen se ajuste al ancho del contenedor disponible. */
            height: auto;
            /* mantiene la relación de aspecto original para evitar deformaciones. */
            display: block;
            /* elimina el espacio extra inferior típico del inline. */
            max-width: 100%;
            /* evita desbordes en pantallas pequeñas. */
            object-fit: contain;
            /* garantiza que se vea completa sin recortes. */
        }

        .hero-image-section {
            width: 100%;
            height: 800px;
            /* altura fija solicitada */
            background-color: #02040a;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            position: relative;
            /* Necesario para el overlay */
        }

        .hero-image-section video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0.9;
        }

        /* Overlay de Integración */
        .hero-image-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    #02040a 0%,
                    transparent 15%,
                    transparent 85%,
                    #02040a 100%);
            z-index: 2;
            pointer-events: none;
        }

        /* =========================================
           AUTH MODALS (Login & Signup)
           ========================================= */
        #authModal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(16px);
            z-index: 3000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .auth-container {
            background: linear-gradient(145deg, #0a0f1e 0%, #02040a 100%);
            border: 1px solid rgba(0, 243, 255, 0.15);
            border-radius: 15px;
            width: 100%;
            max-width: 450px;
            padding: 40px;
            position: relative;
            box-shadow: 0 0 50px rgba(0, 243, 255, 0.1);
            animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes modalAppear {
            from {
                transform: scale(0.9) translateY(20px);
                opacity: 0;
            }

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

        .auth-tab-header {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .auth-tab {
            background: none;
            border: none;
            color: var(--text-dim);
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            position: relative;
        }

        .auth-tab.active {
            color: var(--accent-cyan);
        }

        .auth-tab.active::after {
            content: '';
            position: absolute;
            bottom: -11px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
        }

        .auth-form {
            display: none;
        }

        .auth-form.active {
            display: block;
        }

        .auth-step {
            display: none;
        }

        .auth-step.active {
            display: block;
        }

        .auth-header {
            margin-bottom: 25px;
            text-align: center;
        }

        .auth-header h2 {
            font-family: 'Geist', 'Inter', sans-serif;
            color: #fff;
            text-transform: uppercase;
            font-size: 1.8rem;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        .auth-header p {
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        .input-box {
            position: relative;
            margin-bottom: 20px;
        }

        .input-box input,
        .input-box select {
            width: 100%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 15px;
            border-radius: 8px;
            color: #fff;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .input-box input:focus {
            border-color: var(--accent-cyan);
            background: rgba(0, 243, 255, 0.05);
            outline: none;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        }

        .input-box label {
            display: block;
            color: var(--text-dim);
            font-size: 0.75rem;
            margin-bottom: 8px;
            font-family: 'Geist', 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .auth-btn-row {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        .auth-btn {
            flex: 1;
            padding: 12px;
            border-radius: 8px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            border: 1px solid transparent;
        }

        .auth-btn-primary {
            background: var(--accent-cyan);
            color: #000;
        }

        .auth-btn-primary:hover {
            background: #fff;
            box-shadow: 0 0 20px var(--accent-cyan);
        }

        .auth-btn-secondary {
            background: transparent;
            border-color: #444;
            color: #fff;
        }

        .auth-btn-secondary:hover {
            border-color: var(--accent-cyan);
        }

        .step-indicator {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #333;
            transition: 0.3s;
        }

        .dot.active {
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
        }

        /* =========================================
           CONTACT SECTION
           ========================================= */
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .contact-card {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(0, 243, 255, 0.1);
            padding: 30px;
            border-radius: 12px;
            transition: 0.3s;
        }

        .contact-card:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .contact-info h3 {
            font-family: 'Geist', 'Inter', sans-serif;
            color: var(--accent-cyan);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-info p {
            color: #ccc;
            font-size: 1.1rem;
        }

        /* =========================================
           FUTURE PROJECTS SECTION
           ========================================= */
        .future-projects-section {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .future-badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid #ffd700;
            color: #ffd700;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: 4px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* =========================================
           INVESTORS SECTION
           ========================================= */
        .investors-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, transparent, rgba(0, 243, 255, 0.05), transparent);
        }

        .investment-chart-container {
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 40px;
            background: rgba(10, 15, 30, 0.8);
            border: 1px solid rgba(0, 243, 255, 0.1);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .chart-title {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.5rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .chart-legend {
            display: flex;
            gap: 20px;
            font-size: 0.8rem;
            color: #888;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .legend-dot {
            width: 10px;
            height: 10px;
            border-radius: 2px;
        }

        .bars-container {
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            height: 250px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .chart-line {
            position: absolute;
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.05);
            left: 0;
            z-index: 0;
        }

        .bar-wrapper {
            width: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .bar {
            width: 100%;
            border-radius: 4px 4px 0 0;
            background: linear-gradient(to top, var(--accent-cyan), #fff);
            transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
        }

        .bar::after {
            content: attr(data-value);
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--accent-cyan);
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .bar-label {
            margin-top: 15px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.7rem;
            color: #666;
            text-transform: uppercase;
        }

        /* Logo Slider */
        .logo-slider {
            width: 100%;
            overflow: hidden;
            padding: 40px 0;
            background: rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .logo-track {
            display: flex;
            width: calc(250px * 12);
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-250px * 6));
            }
        }

        .logo-item {
            width: 250px;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            filter: grayscale(1) opacity(0.5);
            transition: 0.3s;
        }

        .logo-item:hover {
            filter: grayscale(0) opacity(1);
        }

        .logo-item img {
            max-height: 40px;
            max-width: 180px;
        }

        /* --- WELCOME MODAL --- */
        .welcome-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9999;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.5s ease;
            backdrop-filter: blur(5px);
        }

        .welcome-modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .welcome-modal-window {
            width: auto;
            max-width: 1000px;
            /* Límite razonable */
            height: auto;
            /* Se adapta a la altura de la imagen */
            border: 2px solid var(--accent-cyan);
            background: #02040a;
            box-shadow: 0 0 50px rgba(0, 243, 255, 0.15);
            position: relative;
            display: block;
            /* Para envolver la imagen correctamente */
            border-radius: 10px;
            overflow: hidden;
        }

        /* La imagen dicta el tamaño */
        .welcome-banner-img {
            display: block;
            width: 100%;
            height: auto;
            max-height: 85vh;
            /* Evita que sea más alta que la pantalla */
            object-fit: contain;
        }

        /* Contenido superpuesto */
        .welcome-modal-content {
            position: absolute;
            inset: 0;
            /* Cubre toda la imagen */
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            text-align: center;
            background: rgba(2, 4, 10, 0.3);
            /* Overlay oscuro suave para legibilidad */
        }

        .welcome-text {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 2.5rem;
            color: #fff;
            text-transform: uppercase;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
            margin-bottom: 40px;
            line-height: 1.2;
            letter-spacing: 2px;
        }

        .welcome-close-btn {
            background: transparent;
            color: var(--accent-cyan);
            border: 1px solid var(--accent-cyan);
            padding: 15px 40px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .welcome-close-btn:hover {
            background: var(--accent-cyan);
            color: #000;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
        }

        .tech-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(16px);
            transition: all 0.4s ease;
        }

        .haras-style {
            background: rgba(13, 18, 29, 0.4);
            border: 1px solid rgba(0, 243, 255, 0.1);
            backdrop-filter: blur(16px);
        }

        .mockup-header {
            height: 30px;
            background: rgba(0, 243, 255, 0.1);
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
            display: flex;
            align-items: center;
            padding-left: 15px;
            gap: 8px;
        }

        .win-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .win-dot.red {
            background: #ff5f5f;
        }

        .win-dot.yellow {
            background: #ffd700;
        }

        .win-dot.green {
            background: #5fff5f;
        }

        /* Botón de ajustes */
        .btn-flow-config {
            background: rgba(0, 242, 255, 0.1);
            border: 1px solid rgba(0, 242, 255, 0.4);
            color: var(--accent-cyan);
            border-radius: 8px;
            padding: 6px 12px;
            cursor: pointer;
            font-weight: 800;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: 0.3s;
            z-index: 100;
        }

        .btn-flow-config.hover-effect {
            background: var(--accent-cyan) !important;
            color: #000 !important;
            transform: scale(1.05);
            box-shadow: 0 0 15px var(--accent-cyan);
        }

        .btn-flow-config.click-effect {
            transform: scale(0.95);
        }

        /* Panel de configuración */
        .flow-settings-panel {
            display: none;
            position: absolute;
            top: 60px;
            right: 20px;
            width: 260px;
            background: rgba(13, 18, 29, 0.95);
            border: 1px solid var(--accent-cyan);
            border-radius: 8px;
            padding: 15px;
            backdrop-filter: blur(5px);
            z-index: 200;
        }

        .flow-settings-panel.show {
            display: block;
            animation: panelSlide 0.3s ease-out;
        }

        /* Switch toggles */
        .switch {
            position: relative;
            display: inline-block;
            width: 34px;
            height: 18px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #444;
            transition: .3s;
            border-radius: 18px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 14px;
            width: 14px;
            left: 2px;
            bottom: 2px;
            background-color: white;
            transition: .3s;
            border-radius: 50%;
        }

        input:checked+.slider {
            background-color: var(--accent-cyan);
        }

        input:checked+.slider:before {
            transform: translateX(16px);
        }

        /* Overlays */
        #skeletonOverlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(2, 4, 10, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10;
            backdrop-filter: blur(2px);
        }

        .skeleton-loader {
            width: 80%;
            height: 80%;
            background: linear-gradient(90deg, #222 25%, #333 50%, #222 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 8px;
        }

        /* Cursor virtual */
        #virtualCursor {
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            box-shadow: 0 0 15px white;
            pointer-events: none;
            z-index: 1000;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        /* Animaciones */
        @keyframes panelSlide {
            0% {
                transform: translateX(100%);
                opacity: 0;
            }

            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        @keyframes breathe {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.002);
            }
        }

        .mockup-window {
            animation: breathe 4s ease-in-out infinite;
        }

        @keyframes scan-ui {
            0% {
                top: 0%;
                opacity: 0;
            }

            10% {
                opacity: 0.8;
            }

            90% {
                opacity: 0.8;
            }

            100% {
                top: 100%;
                opacity: 0;
            }
        }

        .scan-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
            opacity: 0.5;
            animation: scan-ui 3s infinite linear;
            pointer-events: none;
        }

        /* Tablet mockup */
        .tablet-frame {
            width: 100%;
            max-width: 500px;
            height: 400px;
            margin: 0 auto;
            border: 8px solid #333;
            border-radius: 30px;
            overflow: hidden;
            background: #0a0e1a;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
        }

        .tablet-content {
            height: calc(100% - 35px);
            overflow-y: auto;
            padding: 15px;
            background: #0a0e1a;
        }

        .product-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #333;
            color: #aaa;
            font-size: 0.85rem;
        }

        .product-row:last-child {
            border-bottom: none;
        }

        .product-row .star {
            color: gold;
            margin-right: 5px;
        }

        /* Fondo animado de partículas (copiado de tu página principal) */
        #data-network {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at center, #0b1021 0%, #02040a 100%);
        }

        /* =========================================
           MOCKUP PANEL ADMIN
           ========================================= */
        #admin-panel-window {
            width: 100%;
            background: var(--card-bg);
            border: 1px solid rgba(0, 243, 255, 0.15);
            border-radius: 12px;
            overflow: hidden;
            backdrop-filter: blur(16px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 243, 255, 0.1);
            position: relative;
            z-index: 50;
        }

        #skeletonOverlayAdmin {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(2, 4, 10, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 60;
            backdrop-filter: blur(2px);
            border-radius: 0 0 12px 12px;
        }

        .admin-header {
            background: rgba(0, 243, 255, 0.05);
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
        }

        .admin-header img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            border: 1px solid var(--accent-cyan);
            object-fit: cover;
            background: #111;
        }

        .admin-header-title {
            display: flex;
            flex-direction: column;
        }

        .admin-header-title h2 {
            font-size: 1.2rem;
            color: #fff;
            margin: 0;
            font-family: 'Geist', 'Inter', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .admin-header-title small {
            color: var(--accent-cyan);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .admin-close-btn {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #aaa;
            font-size: 1.2rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .admin-close-btn:hover {
            color: #ff5f5f;
            transform: translateY(-50%) scale(1.1);
        }

        .admin-tabs {
            display: flex;
            background: rgba(2, 4, 10, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            overflow-x: auto;
        }

        .admin-tabs::-webkit-scrollbar {
            height: 4px;
        }

        .admin-tabs::-webkit-scrollbar-thumb {
            background: var(--accent-cyan);
        }

        .admin-tab-btn {
            background: transparent;
            border: none;
            color: #aaa;
            padding: 12px 20px;
            cursor: pointer;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            transition: 0.3s;
            white-space: nowrap;
            border-bottom: 2px solid transparent;
        }

        .admin-tab-btn:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .admin-tab-btn.active {
            color: var(--accent-cyan);
            border-bottom-color: var(--accent-cyan);
            background: rgba(0, 243, 255, 0.05);
        }

        .admin-body {
            padding: 25px;
            min-height: 350px;
            background: rgba(2, 4, 10, 0.4);
        }

        .admin-section {
            display: none;
            animation: fadeInAdmin 0.3s ease;
        }

        .admin-section.active {
            display: block;
        }

        @keyframes fadeInAdmin {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

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

        .admin-card {
            background: rgba(2, 4, 10, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
        }

        .admin-card h3 {
            margin-top: 0;
            margin-bottom: 20px;
            color: #eee;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .admin-metric-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
        }

        .admin-metric {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            padding: 15px;
            text-align: center;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }

        .admin-metric::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: transparent;
            transition: 0.3s;
        }

        .admin-metric:hover {
            background: rgba(0, 243, 255, 0.05);
            border-color: rgba(0, 243, 255, 0.2);
            transform: translateY(-2px);
        }

        .admin-metric:hover::before {
            background: var(--accent-cyan);
        }

        .admin-metric-value {
            font-size: 1.8rem;
            font-weight: 800;
            font-family: 'Geist', 'Inter', sans-serif;
            color: #fff;
            margin-bottom: 5px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }

        .admin-metric-label {
            font-size: 0.75rem;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }



        /* =========================================
   MOCKUPS SOLVIX EGL - CSS MIGRADO
   ========================================= */
        /* Estilos de tarjetas (deep tech) */
        .tech-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(16px);
            transition: all 0.4s ease;
        }

        .haras-style {
            background: rgba(13, 18, 29, 0.4);
            border: 1px solid rgba(0, 243, 255, 0.1);
            backdrop-filter: blur(16px);
        }

        .mockup-header {
            height: 30px;
            background: rgba(0, 243, 255, 0.1);
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
            display: flex;
            align-items: center;
            padding-left: 15px;
            gap: 8px;
        }

        .win-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .win-dot.red {
            background: #ff5f5f;
        }

        .win-dot.yellow {
            background: #ffd700;
        }

        .win-dot.green {
            background: #5fff5f;
        }

        /* Botón de ajustes */
        .btn-flow-config {
            background: rgba(0, 242, 255, 0.1);
            border: 1px solid rgba(0, 242, 255, 0.4);
            color: var(--accent-cyan);
            border-radius: 8px;
            padding: 6px 12px;
            cursor: pointer;
            font-weight: 800;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: 0.3s;
            z-index: 100;
        }

        .btn-flow-config.hover-effect {
            background: var(--accent-cyan) !important;
            color: #000 !important;
            transform: scale(1.05);
            box-shadow: 0 0 15px var(--accent-cyan);
        }

        .btn-flow-config.click-effect {
            transform: scale(0.95);
        }

        /* Panel de configuración */
        .flow-settings-panel {
            display: none;
            position: absolute;
            top: 60px;
            right: 20px;
            width: 260px;
            background: rgba(13, 18, 29, 0.95);
            border: 1px solid var(--accent-cyan);
            border-radius: 8px;
            padding: 15px;
            backdrop-filter: blur(5px);
            z-index: 200;
        }

        .flow-settings-panel.show {
            display: block;
            animation: panelSlide 0.3s ease-out;
        }

        /* Switch toggles */
        .switch {
            position: relative;
            display: inline-block;
            width: 34px;
            height: 18px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #444;
            transition: .3s;
            border-radius: 18px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 14px;
            width: 14px;
            left: 2px;
            bottom: 2px;
            background-color: white;
            transition: .3s;
            border-radius: 50%;
        }

        input:checked+.slider {
            background-color: var(--accent-cyan);
        }

        input:checked+.slider:before {
            transform: translateX(16px);
        }

        /* Overlays */
        #skeletonOverlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(2, 4, 10, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10;
            backdrop-filter: blur(2px);
        }

        .skeleton-loader {
            width: 80%;
            height: 80%;
            background: linear-gradient(90deg, #222 25%, #333 50%, #222 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 8px;
        }

        /* Cursor virtual */
        #virtualCursor {
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            box-shadow: 0 0 15px white;
            pointer-events: none;
            z-index: 1000;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        /* Animaciones */
        @keyframes panelSlide {
            0% {
                transform: translateX(100%);
                opacity: 0;
            }

            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        @keyframes breathe {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.002);
            }
        }

        .mockup-window {
            animation: breathe 4s ease-in-out infinite;
        }

        @keyframes scan-ui {
            0% {
                top: 0%;
                opacity: 0;
            }

            10% {
                opacity: 0.8;
            }

            90% {
                opacity: 0.8;
            }

            100% {
                top: 100%;
                opacity: 0;
            }
        }

        .scan-overlay {
            display: none;
        }

        /* Tablet mockup */
        .tablet-frame {
            width: 100%;
            max-width: 500px;
            height: 400px;
            margin: 0 auto;
            border: 8px solid #333;
            border-radius: 30px;
            overflow: hidden;
            background: #0a0e1a;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
        }

        .tablet-content {
            height: calc(100% - 35px);
            overflow-y: auto;
            padding: 15px;
            background: #0a0e1a;
        }

        .product-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #333;
            color: #aaa;
            font-size: 0.85rem;
        }

        .product-row:last-child {
            border-bottom: none;
        }

        .product-row .star {
            color: gold;
            margin-right: 5px;
        }

        /* Fondo animado de partículas (copiado de tu página principal) */
        #data-network {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at center, #0b1021 0%, #02040a 100%);
        }

        /* =========================================
           MOCKUP PANEL ADMIN
           ========================================= */
        #admin-panel-window {
            width: 100%;
            background: var(--card-bg);
            border: 1px solid rgba(0, 243, 255, 0.15);
            border-radius: 12px;
            overflow: hidden;
            backdrop-filter: blur(16px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 243, 255, 0.1);
            position: relative;
            z-index: 50;
        }

        #skeletonOverlayAdmin {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(2, 4, 10, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 60;
            backdrop-filter: blur(2px);
            border-radius: 0 0 12px 12px;
        }

        .admin-header {
            background: rgba(0, 243, 255, 0.05);
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
        }

        .admin-header img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            border: 1px solid var(--accent-cyan);
            object-fit: cover;
            background: #111;
        }

        .admin-header-title {
            display: flex;
            flex-direction: column;
        }

        .admin-header-title h2 {
            font-size: 1.2rem;
            color: #fff;
            margin: 0;
            font-family: 'Geist', 'Inter', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .admin-header-title small {
            color: var(--accent-cyan);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .admin-close-btn {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #aaa;
            font-size: 1.2rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .admin-close-btn:hover {
            color: #ff5f5f;
            transform: translateY(-50%) scale(1.1);
        }

        .admin-tabs {
            display: flex;
            background: rgba(2, 4, 10, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            overflow-x: auto;
        }

        .admin-tabs::-webkit-scrollbar {
            height: 4px;
        }

        .admin-tabs::-webkit-scrollbar-thumb {
            background: var(--accent-cyan);
        }

        .admin-tab-btn {
            background: transparent;
            border: none;
            color: #aaa;
            padding: 12px 20px;
            cursor: pointer;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            transition: 0.3s;
            white-space: nowrap;
            border-bottom: 2px solid transparent;
        }

        .admin-tab-btn:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .admin-tab-btn.active {
            color: var(--accent-cyan);
            border-bottom-color: var(--accent-cyan);
            background: rgba(0, 243, 255, 0.05);
        }

        .admin-body {
            padding: 25px;
            min-height: 350px;
            background: rgba(2, 4, 10, 0.4);
        }

        .admin-section {
            display: none;
            animation: fadeInAdmin 0.3s ease;
        }

        .admin-section.active {
            display: block;
        }

        @keyframes fadeInAdmin {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

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

        .admin-card {
            background: rgba(2, 4, 10, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
        }

        .admin-card h3 {
            margin-top: 0;
            margin-bottom: 20px;
            color: #eee;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .admin-metric-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
        }

        .admin-metric {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            padding: 15px;
            text-align: center;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }

        .admin-metric::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: transparent;
            transition: 0.3s;
        }

        .admin-metric:hover {
            background: rgba(0, 243, 255, 0.05);
            border-color: rgba(0, 243, 255, 0.2);
            transform: translateY(-2px);
        }

        .admin-metric:hover::before {
            background: var(--accent-cyan);
        }

        .admin-metric-value {
            font-size: 1.8rem;
            font-weight: 800;
            font-family: 'Geist', 'Inter', sans-serif;
            color: #fff;
            margin-bottom: 5px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }

        .admin-metric-label {
            font-size: 0.75rem;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* (Footer movido al final del archivo para unificar) */

        summary {
            padding: 12px 15px;
            cursor: pointer;
            color: #ccc;
            outline: none;
            list-style: none;
            display: flex;
            justify-content: space-between;
        }

        summary::after {
            content: '+';
            color: var(--accent-cyan);
            font-weight: bold;
        }

        details:hover {
            border-color: var(--accent-cyan);
            background: rgba(0, 243, 255, 0.05);
        }

        details[open] {
            border-color: var(--accent-cyan);
        }


        .faq-answer {
            padding: 15px;
            color: var(--text-dim);
            background: rgba(0, 0, 0, 0.2);
            font-size: 0.85rem;
        }

        @media (max-width: 900px) {
            .hero h1 {
                font-size: 3rem;
            }

            .timeline-horizontal {
                flex-direction: column;
                margin-top: 0;
            }

            .timeline-col {
                width: 100%;
                height: auto;
                margin-bottom: 40px;
            }

            .falling-wrapper {
                transform: translateX(-50px);
            }

            .falling-wrapper.dropped {
                transform: translateX(0);
            }

            .timeline-progress-track {
                display: none;
            }

            .dashboard-container,
            .footer-grid,
            .faq-container {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .carousel-slide {
                min-width: 100%;
            }
        }

        /* =========================================
           ESTILOS VIDEOS DEMO
           ========================================= */
        .solvix-demo-video {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
            border: 1px solid rgba(0, 243, 255, 0.15);
            background: #000;
        }

        .demo-label {
            font-size: 0.8rem;
            color: var(--accent-cyan);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
            display: inline-block;
            font-weight: bold;
        }

        /* =========================================
           ESTILOS INVENTARIO DE BODEGA
           ========================================= */
        .panel {
            background: var(--card-bg);
            border: 1px solid rgba(0, 243, 255, 0.15);
            border-radius: 12px;
            overflow: hidden;
            backdrop-filter: blur(16px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 243, 255, 0.05);
            position: relative;
        }

        .panel-header {
            background: rgba(0, 243, 255, 0.05);
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .inventario-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .inventario-table th {
            padding: 12px 15px;
            text-align: left;
            color: var(--accent-cyan);
            border-bottom: 1px solid rgba(0, 243, 255, 0.3);
            font-weight: 600;
        }

        .inventario-table td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            vertical-align: middle;
        }

        .inventario-table tbody tr:hover {
            background: rgba(0, 243, 255, 0.05) !important;
        }

        .rack-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 4px;
            font-weight: bold;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .nav-icon-img {
            width: 20px;
            height: 20px;
            vertical-align: middle;
            margin-right: 5px;
            filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
        }


        /* --- ESTILOS PICKING WIZARD --- */
        .picking-wizard {
            background: rgba(10, 15, 30, 0.9);
            border-radius: 15px;
            overflow: hidden;
            display: none;
            flex-direction: column;
            border: 1px solid rgba(0, 243, 255, 0.1);
            height: 100%;
            min-height: 450px;
        }

        .picking-wizard.active {
            display: flex;
            animation: fadeInAdmin 0.4s ease forwards;
        }

        .wizard-header {
            background: rgba(0, 243, 255, 0.1);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0, 243, 255, 0.3);
            font-weight: bold;
        }

        .wizard-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .wizard-body.center {
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .wizard-body.scrollable {
            overflow-y: auto;
            gap: 10px;
        }

        .task-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: 0.3s;
        }

        .task-card:hover {
            background: rgba(0, 243, 255, 0.1);
            border-color: var(--accent-cyan);
            transform: translateX(5px);
        }

        .task-card .card-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .task-card .card-info strong {
            color: var(--accent-cyan);
            font-size: 1.1rem;
        }

        .task-card .card-info span {
            font-size: 0.8rem;
            color: #ccc;
        }

        .task-card .card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .task-card .card-meta span {
            font-size: 0.85rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 8px;
            border-radius: 4px;
        }

        .icon-next {
            font-style: normal;
            color: #fff;
        }

        .wizard-footer {
            padding: 20px;
            display: flex;
            justify-content: center;
        }

        .btn-primary-giant {
            background: var(--accent-cyan);
            color: #000;
            border: none;
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: 800;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
            width: 100%;
        }

        .btn-primary-giant:hover {
            box-shadow: 0 0 20px var(--accent-cyan);
            transform: scale(1.02);
        }

        .btn-add-manual {
            background: transparent;
            color: var(--accent-cyan);
            border: 1px solid var(--accent-cyan);
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.85rem;
        }

        .btn-add-manual:hover {
            background: rgba(0, 243, 255, 0.1);
        }

        .btn-back {
            background: transparent;
            color: var(--accent-cyan);
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
        }

        .btn-back:hover {
            background: rgba(0, 243, 255, 0.2);
        }

        .location-pin {
            font-size: 3rem;
            animation: bounce 2s infinite;
        }

        .big-location {
            color: #fff;
            margin: 15px 0;
            text-transform: uppercase;
        }

        .item-name {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-top: 10px;
        }

        .scan-animation {
            font-size: 4rem;
            animation: pulse-scan 2s infinite;
        }

        .instruction {
            color: #fff;
            margin: 20px 0;
        }

        .sku-hint {
            color: #aaa;
            font-family: 'Geist Mono', monospace;
            font-size: 0.9rem;
        }

        .ghost-input {
            background: transparent;
            border: none;
            border-bottom: 2px solid var(--accent-cyan);
            color: #fff;
            font-size: 1.5rem;
            text-align: center;
            outline: none;
            width: 80%;
            margin: 20px 0;
            padding: 5px;
            caret-color: var(--accent-cyan);
            font-family: 'Geist Mono', monospace;
        }

        .ghost-input:focus {
            box-shadow: 0 5px 15px -10px var(--accent-cyan);
        }

        .feedback-zone {
            min-height: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            margin-top: 10px;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-15px);
            }

            60% {
                transform: translateY(-7px);
            }
        }

        @keyframes pulse-scan {
            0% {
                transform: scale(1);
                filter: drop-shadow(0 0 0px var(--accent-cyan));
            }

            50% {
                transform: scale(1.1);
                filter: drop-shadow(0 0 15px var(--accent-cyan));
            }
        }

        /* --- ESTILOS PACKING WIZARD --- */
        .packing-app {
            background: rgba(10, 15, 30, 0.9);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 243, 255, 0.1);
            height: 100%;
            min-height: 500px;
            color: #ccc;
            font-family: 'Inter', sans-serif;
            position: relative;
        }

        .packing-app .app-header {
            background: rgba(0, 243, 255, 0.1);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0, 243, 255, 0.3);
            font-weight: bold;
            color: #fff;
        }

        .packing-app .main-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            flex: 1;
            overflow: hidden;
        }

        .packing-app .panel {
            background: rgba(0, 0, 0, 0.4);
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
        }

        .packing-app .panel-header {
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
            font-weight: bold;
            color: var(--accent-cyan);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
        }

        .packing-app .badge.ready {
            background: rgba(0, 255, 100, 0.2);
            color: var(--accent-green);
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
        }

        .packing-app .queue-container,
        .packing-app .audit-list {
            flex: 1;
            overflow-y: auto;
            padding: 10px;
        }

        .packing-app .order-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: 0.2s;
        }

        .packing-app .order-card:hover {
            background: rgba(0, 243, 255, 0.1);
            border-color: var(--accent-cyan);
        }

        .packing-app .section-divider {
            padding: 8px 15px;
            background: rgba(0, 0, 0, 0.6);
            font-size: 0.8rem;
            color: #888;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .packing-app .work-zone {
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .packing-app .order-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 243, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(0, 243, 255, 0.1);
            margin-bottom: 20px;
        }

        .packing-app .big-id {
            font-size: 1.8rem;
            color: #fff;
            font-weight: bold;
            line-height: 1.2;
        }

        .packing-app .client-name {
            font-size: 0.9rem;
            color: var(--accent-gold);
        }

        .packing-app .scan-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            flex: 1;
        }

        .packing-app .items-list-panel {
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
        }

        .packing-app .list-header {
            padding: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: bold;
            font-size: 0.85rem;
            color: #aaa;
            background: rgba(255, 255, 255, 0.05);
        }

        .packing-app .list-body {
            padding: 10px;
            overflow-y: auto;
        }

        .packing-app .qc-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .packing-app .qc-item.done {
            color: var(--accent-green);
            text-decoration: line-through;
            background: rgba(0, 255, 100, 0.05);
        }

        .packing-app .pack-controls {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .packing-app .scanner-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            border: 1px dashed rgba(0, 243, 255, 0.3);
        }

        .packing-app .scan-input {
            width: 100%;
            padding: 10px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 243, 255, 0.5);
            color: #fff;
            font-size: 1.1rem;
            border-radius: 4px;
            margin-top: 5px;
            outline: none;
            transition: 0.2s;
        }

        .packing-app .scan-input:focus {
            border-color: var(--accent-green);
        }

        .packing-app .box-selector {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
        }

        .packing-app .box-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .packing-app .box-btn {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 10px 5px;
            border-radius: 6px;
            text-align: center;
            cursor: pointer;
            transition: 0.2s;
        }

        .packing-app .box-btn:hover,
        .packing-app .box-btn.active {
            background: var(--accent-cyan);
            color: #000;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
        }

        .packing-app .weight-display {
            margin-top: 15px;
            text-align: right;
            font-size: 0.9rem;
            color: #aaa;
        }

        .packing-app .weight-val {
            font-size: 1.2rem;
            color: #fff;
            font-weight: bold;
        }

        .packing-app .btn-print {
            background: var(--accent-green);
            color: #000;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            opacity: 0.5;
            pointer-events: none;
        }

        .packing-app .btn-print.active {
            opacity: 1;
            pointer-events: auto;
        }

        .packing-app .btn-print.active:hover {
            box-shadow: 0 0 15px var(--accent-green);
            transform: scale(1.02);
        }

        .packing-app .audit-footer {
            background: rgba(0, 0, 0, 0.8);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: #aaa;
        }

        .packing-app .user-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 8px;
            border-radius: 4px;
            color: #fff;
            margin-left: 5px;
        }

        .packing-app .status-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            border-radius: 50%;
            box-shadow: 0 0 5px var(--accent-green);
        }

        .packing-app .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            /* hidden by default */
            justify-content: center;
            align-items: center;
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .packing-app .shipping-label {
            background: #fff;
            color: #000;
            width: 380px;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            animation: fadeInAdmin 0.3s ease;
        }

        .packing-app .lpn-header {
            border-bottom: 2px solid #000;
            padding-bottom: 10px;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            font-weight: bold;
            font-size: 0.85rem;
        }

        .packing-app .lpn-code-box {
            text-align: center;
            border: 2px dashed #000;
            padding: 15px;
            margin-bottom: 15px;
            background: #fafafa;
        }

        .packing-app .lpn-big-text {
            font-size: 2.2rem;
            margin: 5px 0;
            letter-spacing: 2px;
            font-weight: bold;
        }

        .packing-app .barcode {
            height: 40px;
            background: repeating-linear-gradient(90deg, #000, #000 2px, transparent 2px, transparent 4px, #000 4px, #000 5px, transparent 5px, transparent 8px, #000 8px, #000 11px, transparent 11px, transparent 13px);
            margin: 15px 0;
        }

        .packing-app .lpn-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 0.85rem;
        }

        .packing-app .info-label {
            display: block;
            color: #666;
            font-size: 0.7rem;
            text-transform: uppercase;
        }

        .packing-app .info-val {
            font-weight: bold;
            font-size: 0.95rem;
        }

        .packing-app .label-btn-row {
            display: flex;
            gap: 10px;
            margin-top: 25px;
        }

        .packing-app .label-btn {
            padding: 10px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            flex: 1;
            border: none;
            transition: 0.2s;
        }


        #demoModal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .demo-box {
            background: linear-gradient(135deg, #02040a 0%, #0a0f1e 100%);
            border: 1px solid var(--accent-cyan);
            padding: 40px;
            border-radius: 15px;
            width: 100%;
            max-width: 500px;
            /* Ancho máximo fijo */
            color: white;
            font-family: 'Geist', 'Inter', sans-serif;
            position: relative;
            box-shadow: 0 0 40px rgba(0, 243, 255, 0.1);
            text-align: center;
            z-index: 2001;

            /* --- CLAVE PARA EL SCROLL --- */
            max-height: 90vh;
            /* No crecerá más del 90% de la altura de la pantalla */
            overflow-y: auto;
            /* Activa el scrollbar vertical si el contenido es largo */
        }

        /* Personalización de la barra de scroll dentro del modal (Estilo Deep Tech) */
        .demo-box::-webkit-scrollbar {
            width: 6px;
            /* Barra fina */
        }

        .demo-box::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            /* Fondo oscuro */
        }

        .demo-box::-webkit-scrollbar-thumb {
            background: var(--accent-cyan);
            /* Color Cian */
            border-radius: 3px;
        }

        .demo-box::-webkit-scrollbar-thumb:hover {
            background: #fff;
        }

        .demo-box::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            width: 20px;
            height: 20px;
            border-top: 2px solid var(--accent-cyan);
            border-left: 2px solid var(--accent-cyan);
        }

        .demo-box::after {
            content: '';
            position: absolute;
            bottom: -1px;
            right: -1px;
            width: 20px;
            height: 20px;
            border-bottom: 2px solid var(--accent-cyan);
            border-right: 2px solid var(--accent-cyan);
        }

        .demo-box h2 {
            color: var(--accent-cyan);
            font-family: 'Geist', 'Inter', sans-serif;
            margin-bottom: 30px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            color: var(--accent-cyan);
            margin-bottom: 8px;
            font-size: 0.8rem;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Estilos para Inputs y Selects */
        .form-input,
        .form-select {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #333;
            color: #fff;
            padding: 12px 15px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1rem;
            transition: 0.3s;
            border-radius: 4px;
            box-sizing: border-box;
            /* Importante para que el padding no rompa el ancho */
            appearance: none;
            /* Elimina estilos por defecto del navegador en selects */
        }

        /* Fondo del dropdown oscuro específico */
        .form-select {
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300f3ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%205%2097.8c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095.9c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 15px top 50%;
            background-size: 12px auto;
            padding-right: 35px;
            /* Espacio para la flecha */
        }

        .form-input:focus,
        .form-select:focus {
            border-color: var(--accent-cyan);
            outline: none;
            background: rgba(0, 243, 255, 0.05);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background: var(--accent-cyan);
            color: #000;
            font-weight: 800;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            font-family: 'Geist', 'Inter', sans-serif;
            letter-spacing: 1px;
            margin-top: 10px;
            border-radius: 4px;
        }

        .btn-submit:hover {
            background: #fff;
            box-shadow: 0 0 20px var(--accent-cyan);
            transform: translateY(-2px);
        }

        /* =========================================
   ESTILOS GLOBALES DE SELECCIÓN (Deep Tech)
   ========================================= */
        /* Esto afecta a toda la página, incluido el modal */
        ::selection {
            background: rgba(0, 243, 255, 0.15);
            /* Fondo oscuro con ligero tinte Cyan */
            color: #00f3ff;
            /* Texto en Cyan brillante */
        }

        ::-moz-selection {
            /* Para Firefox */
            background: rgba(0, 243, 255, 0.15);
            color: #00f3ff;
        }

        /* =========================================
   ESTILOS EXTRA LOGO MODAL
   ========================================= */
        .modal-logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            margin-top: -10px;
            /* Ajuste fino para centrar verticalmente con el título */
        }

        .modal-logo-container img {
            max-height: 60px;
            /* Tamaño ajustado para el modal */
            width: auto;
            filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.6));
            /* Resplandor Neon Cyan */
            transition: transform 0.3s;
        }

        .modal-logo-container img:hover {
            transform: scale(1.05);
        }

        /* =========================================
   COLORES DEL DESPLEGABLE (OPTIONS)
   ========================================= */

        /* Esto cambia el color de las opciones cuando haces clic en el select */
        .form-select option {
            background-color: #02040a;
            /* Fondo oscuro para que el cian resalte bien */
            color: var(--accent-cyan);
            /* Texto en Cian (#00f3ff) */
            font-weight: 600;
            /* Un poco más grueso para legibilidad */
        }

        /* =========================================
           AUTH MODALS (Login & Signup)
           ========================================= */
        #authModal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(16px);
            z-index: 3000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .auth-container {
            background: linear-gradient(145deg, #0a0f1e 0%, #02040a 100%);
            border: 1px solid rgba(0, 243, 255, 0.15);
            border-radius: 15px;
            width: 100%;
            max-width: 450px;
            padding: 40px;
            position: relative;
            box-shadow: 0 0 50px rgba(0, 243, 255, 0.1);
            animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes modalAppear {
            from {
                transform: scale(0.9) translateY(20px);
                opacity: 0;
            }

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

        .auth-tab-header {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .auth-tab {
            background: none;
            border: none;
            color: var(--text-dim);
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            position: relative;
        }

        .auth-tab.active {
            color: var(--accent-cyan);
        }

        .auth-tab.active::after {
            content: '';
            position: absolute;
            bottom: -11px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
        }

        .auth-form {
            display: none;
        }

        .auth-form.active {
            display: block;
        }

        .auth-step {
            display: none;
        }

        .auth-step.active {
            display: block;
        }

        .auth-header {
            margin-bottom: 25px;
            text-align: center;
        }

        .auth-header h2 {
            font-family: 'Geist', 'Inter', sans-serif;
            color: #fff;
            text-transform: uppercase;
            font-size: 1.8rem;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        .auth-header p {
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        .input-box {
            position: relative;
            margin-bottom: 20px;
        }

        .input-box input,
        .input-box select {
            width: 100%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 15px;
            border-radius: 8px;
            color: #fff;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .input-box input:focus {
            border-color: var(--accent-cyan);
            background: rgba(0, 243, 255, 0.05);
            outline: none;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        }

        .input-box label {
            display: block;
            color: var(--text-dim);
            font-size: 0.75rem;
            margin-bottom: 8px;
            font-family: 'Geist', 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .auth-btn-row {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        .auth-btn {
            flex: 1;
            padding: 12px;
            border-radius: 8px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            border: 1px solid transparent;
        }

        .auth-btn-primary {
            background: var(--accent-cyan);
            color: #000;
        }

        .auth-btn-primary:hover {
            background: #fff;
            box-shadow: 0 0 20px var(--accent-cyan);
        }

        .auth-btn-secondary {
            background: transparent;
            border-color: #444;
            color: #fff;
        }

        .auth-btn-secondary:hover {
            border-color: var(--accent-cyan);
        }

        .step-indicator {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #333;
            transition: 0.3s;
        }

        .dot.active {
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
        }


        \n #demoModal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .demo-box {
            background: linear-gradient(135deg, #02040a 0%, #0a0f1e 100%);
            border: 1px solid var(--accent-cyan);
            padding: 40px;
            border-radius: 15px;
            width: 100%;
            max-width: 500px;
            /* Ancho máximo fijo */
            color: white;
            font-family: 'Geist', 'Inter', sans-serif;
            position: relative;
            box-shadow: 0 0 40px rgba(0, 243, 255, 0.1);
            text-align: center;
            z-index: 2001;

            /* --- CLAVE PARA EL SCROLL --- */
            max-height: 90vh;
            /* No crecerá más del 90% de la altura de la pantalla */
            overflow-y: auto;
            /* Activa el scrollbar vertical si el contenido es largo */
        }

        /* Personalización de la barra de scroll dentro del modal (Estilo Deep Tech) */
        .demo-box::-webkit-scrollbar {
            width: 6px;
            /* Barra fina */
        }

        .demo-box::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            /* Fondo oscuro */
        }

        .demo-box::-webkit-scrollbar-thumb {
            background: var(--accent-cyan);
            /* Color Cian */
            border-radius: 3px;
        }

        .demo-box::-webkit-scrollbar-thumb:hover {
            background: #fff;
        }

        .demo-box::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            width: 20px;
            height: 20px;
            border-top: 2px solid var(--accent-cyan);
            border-left: 2px solid var(--accent-cyan);
        }

        .demo-box::after {
            content: '';
            position: absolute;
            bottom: -1px;
            right: -1px;
            width: 20px;
            height: 20px;
            border-bottom: 2px solid var(--accent-cyan);
            border-right: 2px solid var(--accent-cyan);
        }

        .demo-box h2 {
            color: var(--accent-cyan);
            font-family: 'Geist', 'Inter', sans-serif;
            margin-bottom: 30px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            color: var(--accent-cyan);
            margin-bottom: 8px;
            font-size: 0.8rem;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Estilos para Inputs y Selects */
        .form-input,
        .form-select {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #333;
            color: #fff;
            padding: 12px 15px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1rem;
            transition: 0.3s;
            border-radius: 4px;
            box-sizing: border-box;
            /* Importante para que el padding no rompa el ancho */
            appearance: none;
            /* Elimina estilos por defecto del navegador en selects */
        }

        /* Fondo del dropdown oscuro específico */
        .form-select {
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300f3ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%205%2097.8c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095.9c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 15px top 50%;
            background-size: 12px auto;
            padding-right: 35px;
            /* Espacio para la flecha */
        }

        .form-input:focus,
        .form-select:focus {
            border-color: var(--accent-cyan);
            outline: none;
            background: rgba(0, 243, 255, 0.05);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background: var(--accent-cyan);
            color: #000;
            font-weight: 800;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            font-family: 'Geist', 'Inter', sans-serif;
            letter-spacing: 1px;
            margin-top: 10px;
            border-radius: 4px;
        }

        .btn-submit:hover {
            background: #fff;
            box-shadow: 0 0 20px var(--accent-cyan);
            transform: translateY(-2px);
        }

        /* =========================================
   ESTILOS GLOBALES DE SELECCIÓN (Deep Tech)
   ========================================= */
        /* Esto afecta a toda la página, incluido el modal */
        ::selection {
            background: rgba(0, 243, 255, 0.15);
            /* Fondo oscuro con ligero tinte Cyan */
            color: #00f3ff;
            /* Texto en Cyan brillante */
        }

        ::-moz-selection {
            /* Para Firefox */
            background: rgba(0, 243, 255, 0.15);
            color: #00f3ff;
        }

        /* =========================================
   ESTILOS EXTRA LOGO MODAL
   ========================================= */
        .modal-logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            margin-top: -10px;
            /* Ajuste fino para centrar verticalmente con el título */
        }

        .modal-logo-container img {
            max-height: 60px;
            /* Tamaño ajustado para el modal */
            width: auto;
            filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.6));
            /* Resplandor Neon Cyan */
            transition: transform 0.3s;
        }

        .modal-logo-container img:hover {
            transform: scale(1.05);
        }

        /* =========================================
   COLORES DEL DESPLEGABLE (OPTIONS)
   ========================================= */

        /* Esto cambia el color de las opciones cuando haces clic en el select */
        .form-select option {
            background-color: #02040a;
            /* Fondo oscuro para que el cian resalte bien */
            color: var(--accent-cyan);
            /* Texto en Cian (#00f3ff) */
            font-weight: 600;
            /* Un poco más grueso para legibilidad */
        }

        \n

        /* =========================================
           AUTH MODALS (Login & Signup)
           ========================================= */
        #authModal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(16px);
            z-index: 3000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .auth-container {
            background: linear-gradient(145deg, #0a0f1e 0%, #02040a 100%);
            border: 1px solid rgba(0, 243, 255, 0.15);
            border-radius: 15px;
            width: 100%;
            max-width: 450px;
            padding: 40px;
            position: relative;
            box-shadow: 0 0 50px rgba(0, 243, 255, 0.1);
            animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes modalAppear {
            from {
                transform: scale(0.9) translateY(20px);
                opacity: 0;
            }

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

        .auth-tab-header {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .auth-tab {
            background: none;
            border: none;
            color: var(--text-dim);
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            position: relative;
        }

        .auth-tab.active {
            color: var(--accent-cyan);
        }

        .auth-tab.active::after {
            content: '';
            position: absolute;
            bottom: -11px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
        }

        .auth-form {
            display: none;
        }

        .auth-form.active {
            display: block;
        }

        .auth-step {
            display: none;
        }

        .auth-step.active {
            display: block;
        }

        .auth-header {
            margin-bottom: 25px;
            text-align: center;
        }

        .auth-header h2 {
            font-family: 'Geist', 'Inter', sans-serif;
            color: #fff;
            text-transform: uppercase;
            font-size: 1.8rem;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        .auth-header p {
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        .input-box {
            position: relative;
            margin-bottom: 20px;
        }

        .input-box input,
        .input-box select {
            width: 100%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 15px;
            border-radius: 8px;
            color: #fff;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .input-box input:focus {
            border-color: var(--accent-cyan);
            background: rgba(0, 243, 255, 0.05);
            outline: none;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        }

        .input-box label {
            display: block;
            color: var(--text-dim);
            font-size: 0.75rem;
            margin-bottom: 8px;
            font-family: 'Geist', 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .auth-btn-row {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        .auth-btn {
            flex: 1;
            padding: 12px;
            border-radius: 8px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            border: 1px solid transparent;
        }

        .auth-btn-primary {
            background: var(--accent-cyan);
            color: #000;
        }

        .auth-btn-primary:hover {
            background: #fff;
            box-shadow: 0 0 20px var(--accent-cyan);
        }

        .auth-btn-secondary {
            background: transparent;
            border-color: #444;
            color: #fff;
        }

        .auth-btn-secondary:hover {
            border-color: var(--accent-cyan);
        }

        .step-indicator {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #333;
            transition: 0.3s;
        }

        .dot.active {
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
        }

        /* =========================================
           CONTACT SECTION
           ========================================= */
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .contact-card {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(0, 243, 255, 0.1);
            padding: 30px;
            border-radius: 12px;
            transition: 0.3s;
        }

        .contact-card:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .contact-info h3 {
            font-family: 'Geist', 'Inter', sans-serif;
            color: var(--accent-cyan);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-info p {
            color: #ccc;
            font-size: 1.1rem;
        }

        /* =========================================
           FUTURE PROJECTS SECTION
           ========================================= */
        .future-projects-section {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .future-badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid #ffd700;
            color: #ffd700;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: 4px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* =========================================
           INVESTORS SECTION
           ========================================= */
        .investors-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, transparent, rgba(0, 243, 255, 0.05), transparent);
        }

        .investment-chart-container {
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 40px;
            background: rgba(10, 15, 30, 0.8);
            border: 1px solid rgba(0, 243, 255, 0.1);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        #demoModal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .demo-box {
            background: linear-gradient(135deg, #02040a 0%, #0a0f1e 100%);
            border: 1px solid var(--accent-cyan);
            padding: 40px;
            border-radius: 15px;
            width: 100%;
            max-width: 500px;
            /* Ancho máximo fijo */
            color: white;
            font-family: 'Geist', 'Inter', sans-serif;
            position: relative;
            box-shadow: 0 0 40px rgba(0, 243, 255, 0.1);
            text-align: center;
            z-index: 2001;

            /* --- CLAVE PARA EL SCROLL --- */
            max-height: 90vh;
            /* No crecerá más del 90% de la altura de la pantalla */
            overflow-y: auto;
            /* Activa el scrollbar vertical si el contenido es largo */
        }

        /* Personalización de la barra de scroll dentro del modal (Estilo Deep Tech) */
        .demo-box::-webkit-scrollbar {
            width: 6px;
            /* Barra fina */
        }

        .demo-box::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            /* Fondo oscuro */
        }

        .demo-box::-webkit-scrollbar-thumb {
            background: var(--accent-cyan);
            /* Color Cian */
            border-radius: 3px;
        }

        .demo-box::-webkit-scrollbar-thumb:hover {
            background: #fff;
        }

        .demo-box::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            width: 20px;
            height: 20px;
            border-top: 2px solid var(--accent-cyan);
            border-left: 2px solid var(--accent-cyan);
        }

        .demo-box::after {
            content: '';
            position: absolute;
            bottom: -1px;
            right: -1px;
            width: 20px;
            height: 20px;
            border-bottom: 2px solid var(--accent-cyan);
            border-right: 2px solid var(--accent-cyan);
        }

        .demo-box h2 {
            color: var(--accent-cyan);
            font-family: 'Geist', 'Inter', sans-serif;
            margin-bottom: 30px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            color: var(--accent-cyan);
            margin-bottom: 8px;
            font-size: 0.8rem;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Estilos para Inputs y Selects */
        .form-input,
        .form-select {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #333;
            color: #fff;
            padding: 12px 15px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1rem;
            transition: 0.3s;
            border-radius: 4px;
            box-sizing: border-box;
            /* Importante para que el padding no rompa el ancho */
            appearance: none;
            /* Elimina estilos por defecto del navegador en selects */
        }

        /* Fondo del dropdown oscuro específico */
        .form-select {
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300f3ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%205%2097.8c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095.9c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 15px top 50%;
            background-size: 12px auto;
            padding-right: 35px;
            /* Espacio para la flecha */
        }

        .form-input:focus,
        .form-select:focus {
            border-color: var(--accent-cyan);
            outline: none;
            background: rgba(0, 243, 255, 0.05);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background: var(--accent-cyan);
            color: #000;
            font-weight: 800;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            font-family: 'Geist', 'Inter', sans-serif;
            letter-spacing: 1px;
            margin-top: 10px;
            border-radius: 4px;
        }

        .btn-submit:hover {
            background: #fff;
            box-shadow: 0 0 20px var(--accent-cyan);
            transform: translateY(-2px);
        }

        /* =========================================
   ESTILOS GLOBALES DE SELECCIÓN (Deep Tech)
   ========================================= */
        /* Esto afecta a toda la página, incluido el modal */
        ::selection {
            background: rgba(0, 243, 255, 0.15);
            /* Fondo oscuro con ligero tinte Cyan */
            color: #00f3ff;
            /* Texto en Cyan brillante */
        }

        ::-moz-selection {
            /* Para Firefox */
            background: rgba(0, 243, 255, 0.15);
            color: #00f3ff;
        }

        /* =========================================
   ESTILOS EXTRA LOGO MODAL
   ========================================= */
        .modal-logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            margin-top: -10px;
            /* Ajuste fino para centrar verticalmente con el título */
        }

        .modal-logo-container img {
            max-height: 60px;
            /* Tamaño ajustado para el modal */
            width: auto;
            filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.6));
            /* Resplandor Neon Cyan */
            transition: transform 0.3s;
        }

        .modal-logo-container img:hover {
            transform: scale(1.05);
        }

        /* =========================================
   COLORES DEL DESPLEGABLE (OPTIONS)
   ========================================= */

        /* Esto cambia el color de las opciones cuando haces clic en el select */
        .form-select option {
            background-color: #02040a;
            /* Fondo oscuro para que el cian resalte bien */
            color: var(--accent-cyan);
            /* Texto en Cian (#00f3ff) */
            font-weight: 600;
            /* Un poco más grueso para legibilidad */
        }

        \n

        /* =========================================
           AUTH MODALS (Login & Signup)
           ========================================= */
        #authModal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(16px);
            z-index: 3000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .auth-container {
            background: linear-gradient(145deg, #0a0f1e 0%, #02040a 100%);
            border: 1px solid rgba(0, 243, 255, 0.15);
            border-radius: 15px;
            width: 100%;
            max-width: 450px;
            padding: 40px;
            position: relative;
            box-shadow: 0 0 50px rgba(0, 243, 255, 0.1);
            animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes modalAppear {
            from {
                transform: scale(0.9) translateY(20px);
                opacity: 0;
            }

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

        .auth-tab-header {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .auth-tab {
            background: none;
            border: none;
            color: var(--text-dim);
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            position: relative;
        }

        .auth-tab.active {
            color: var(--accent-cyan);
        }

        .auth-tab.active::after {
            content: '';
            position: absolute;
            bottom: -11px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
        }

        .auth-form {
            display: none;
        }

        .auth-form.active {
            display: block;
        }

        .auth-step {
            display: none;
        }

        .auth-step.active {
            display: block;
        }

        .auth-message {
            padding: 10px 15px;
            margin: 10px 0;
            border-radius: 6px;
            font-size: 0.85rem;
            font-family: 'Geist', 'Inter', sans-serif, monospace;
            text-align: center;
        }

        .auth-message.error {
            background: rgba(255, 0, 0, 0.15);
            color: #ff6b6b;
            border: 1px solid rgba(255, 0, 0, 0.3);
        }

        .auth-message.success {
            background: rgba(0, 230, 118, 0.15);
            color: #00e676;
            border: 1px solid rgba(0, 230, 118, 0.3);
        }

        .auth-message.info {
            background: rgba(0, 243, 255, 0.1);
            color: #00f3ff;
            border: 1px solid rgba(0, 243, 255, 0.1);
        }

        #toast-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99999;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
        }

        .toast {
            padding: 14px 24px;
            border-radius: 8px;
            font-family: 'Geist', 'Inter', sans-serif, monospace;
            font-size: 0.95rem;
            color: #fff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            pointer-events: auto;
            animation: toastIn 0.3s ease, toastOut 0.3s ease 3.7s forwards;
            max-width: 400px;
        }

        .toast-success {
            background: #00c853;
            border-left: 4px solid #00e676;
        }

        .toast-error {
            background: #d50000;
            border-left: 4px solid #ff5252;
        }

        .toast-info {
            background: #0091ea;
            border-left: 4px solid #40c4ff;
        }

        @keyframes toastIn {
            from {
                opacity: 0;
                transform: translateX(100px);
            }

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

        @keyframes toastOut {
            from {
                opacity: 1;
            }

            to {
                opacity: 0;
                transform: translateX(100px);
            }
        }

        .system-loading-overlay {
            display: none;
        }

        .auth-header {
            margin-bottom: 25px;
            text-align: center;
        }

        .auth-header h2 {
            font-family: 'Geist', 'Inter', sans-serif;
            color: #fff;
            text-transform: uppercase;
            font-size: 1.8rem;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        .auth-header p {
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        .input-box {
            position: relative;
            margin-bottom: 20px;
        }

        .input-box input,
        .input-box select {
            width: 100%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 15px;
            border-radius: 8px;
            color: #fff;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .input-box input:focus {
            border-color: var(--accent-cyan);
            background: rgba(0, 243, 255, 0.05);
            outline: none;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        }

        .input-box label {
            display: block;
            color: var(--text-dim);
            font-size: 0.75rem;
            margin-bottom: 8px;
            font-family: 'Geist', 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .auth-btn-row {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        .auth-btn {
            flex: 1;
            padding: 12px;
            border-radius: 8px;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            border: 1px solid transparent;
        }

        .auth-btn-primary {
            background: var(--accent-cyan);
            color: #000;
        }

        .auth-btn-primary:hover {
            background: #fff;
            box-shadow: 0 0 20px var(--accent-cyan);
        }

        .auth-btn-secondary {
            background: transparent;
            border-color: #444;
            color: #fff;
        }

        .auth-btn-secondary:hover {
            border-color: var(--accent-cyan);
        }

        .step-indicator {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #333;
            transition: 0.3s;
        }

        .dot.active {
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
        }

        /* =========================================
           CONTACT SECTION
           ========================================= */
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .contact-card {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(0, 243, 255, 0.1);
            padding: 30px;
            border-radius: 12px;
            transition: 0.3s;
        }

        .contact-card:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .contact-info h3 {
            font-family: 'Geist', 'Inter', sans-serif;
            color: var(--accent-cyan);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-info p {
            color: #ccc;
            font-size: 1.1rem;
        }

        /* =========================================
           FUTURE PROJECTS SECTION
           ========================================= */
        .future-projects-section {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .future-badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid #ffd700;
            color: #ffd700;
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: 4px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* =========================================
           INVESTORS SECTION
           ========================================= */
        .investors-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, transparent, rgba(0, 243, 255, 0.05), transparent);
        }

        .investment-chart-container {
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 40px;
            background: rgba(10, 15, 30, 0.8);
            border: 1px solid rgba(0, 243, 255, 0.1);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
        }

        /* =========================================
           SELECTOR DE IDIOMA PREMIUM
           ========================================= */
        .lang-switcher {
            position: relative;
            margin-left: 20px;
            z-index: 10001;
        }

        /* Language Switcher Overhaul */
        .lang-switcher {
            position: relative;
            display: flex;
            align-items: center;
        }

        .lang-trigger {
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(16px);
            padding: 8px 18px;
            border-radius: 50px;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Geist', 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .lang-trigger:hover {
            border-color: var(--accent-cyan);
            background: rgba(0, 243, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
            transform: translateY(-2px);
        }

        .lang-trigger svg {
            transition: transform 0.4s;
            opacity: 0.8;
        }

        .lang-switcher:hover .lang-trigger svg:last-child {
            transform: rotate(180deg);
        }

        .lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 15px;
            background: rgba(10, 15, 25, 0.98);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(0, 243, 255, 0.4);
            border-radius: 16px;
            padding: 8px;
            min-width: 170px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 243, 255, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px) scale(0.95);
            transform-origin: top right;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 1000;
        }

        .lang-switcher:hover .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .lang-dropdown::before {
            content: '';
            position: absolute;
            top: -7px;
            right: 25px;
            width: 14px;
            height: 14px;
            background: rgba(10, 15, 25, 1);
            border-top: 1px solid rgba(0, 243, 255, 0.4);
            border-left: 1px solid rgba(0, 243, 255, 0.4);
            transform: rotate(45deg);
        }

        .lang-option {
            padding: 12px 18px;
            margin: 4px 0;
            cursor: pointer;
            color: #ccc;
            border-radius: 10px;
            transition: all 0.3s ease;
            font-size: 0.85rem;
            font-weight: 700;
            font-family: 'Geist', 'Inter', sans-serif;
            display: flex;
            align-items: center;
            justify-content: space-between;
            letter-spacing: 1.5px;
            text-decoration: none;
        }

        .lang-option:hover {
            background: rgba(0, 243, 255, 0.15);
            color: var(--accent-cyan);
            padding-left: 22px;
        }

        .lang-option.active {
            color: var(--accent-cyan);
            background: rgba(0, 243, 255, 0.1);
            border-left: 3px solid var(--accent-cyan);
        }

        /* =========================================================================
               RESPONSIVIDAD MASTER: RESOLUCIÓN DE SOBREFLUJO PARA DISPOSITIVOS MÓVILES
               ========================================================================= */
        @media (max-width: 768px) {

            /* Prevención de desbordamiento horizontal general */
            body,
            html {
                overflow-x: hidden !important;
                width: 100% !important;
            }

            .container {
                padding: 0 15px !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }



            /* Ajustes de tipografía principal y sección Héroe */
            .hero {
                height: auto !important;
                min-height: 80vh !important;
                padding: 120px 0 60px !important;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.4rem !important;
                line-height: 1.2 !important;
                margin-bottom: 25px !important;
            }

            .hero-word {
                display: inline !important;
                margin: 0 4px;
            }

            .tagline {
                font-size: 1rem !important;
                line-height: 1.5 !important;
                padding: 0 10px !important;
                margin-bottom: 30px !important;
            }

            .hero-image-section {
                height: auto !important;
                aspect-ratio: 16 / 9 !important;
            }

            /* Sección de Soluciones y Tarjetas de Producto */
            .product-grid {
                grid-template-columns: 1fr !important;
                gap: 25px !important;
                width: 100% !important;
            }

            .product-monolith {
                height: auto !important;
                min-height: 520px !important;
                width: 100% !important;
            }

            .product-monolith.product-hero {
                flex-direction: column !important;
                aspect-ratio: auto !important;
                height: auto !important;
            }

            .product-hero .prod-visual,
            .product-hero .prod-content {
                width: 100% !important;
            }

            .product-hero .prod-visual {
                height: 250px !important;
                border-right: none !important;
                border-bottom: 1px solid rgba(0, 243, 255, 0.1) !important;
            }

            .product-hero .prod-content {
                padding: 25px !important;
            }

            .prod-title {
                font-size: 1.5rem !important;
            }

            .prod-desc {
                font-size: 0.95rem !important;
                margin-bottom: 15px !important;
            }

            /* Ajuste de Planes de Suscripción (Tarjetas) */
            .pricing-container {
                padding: 20px 0 !important;
                gap: 20px !important;
                flex-direction: column !important;
                align-items: center !important;
            }

            .card {
                width: 100% !important;
                max-width: 320px !important;
                min-height: auto !important;
                padding: 25px 20px !important;
                margin: 0 auto !important;
                box-sizing: border-box !important;
            }

            /* Panel de Inversionistas y Gráfico */
            .investment-chart-container {
                max-width: 100% !important;
                margin: 0 10px 40px !important;
                padding: 20px 15px !important;
                border-radius: 12px !important;
                box-sizing: border-box !important;
            }

            .chart-header {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 15px !important;
                margin-bottom: 25px !important;
            }

            .chart-legend {
                flex-wrap: wrap !important;
                gap: 10px !important;
            }

            .bars-container {
                height: 180px !important;
                padding-bottom: 20px !important;
            }

            .bar-wrapper {
                width: 20px !important;
            }

            .bar-label {
                font-size: 0.6rem !important;
            }

            .brand-slider-section {
                padding: 40px 0 !important;
            }

            /* Calculadora ROI */
            .calc-box {
                width: 100% !important;
                max-width: 360px !important;
                padding: 25px 20px !important;
                margin: 0 auto !important;
                box-sizing: border-box !important;
            }

            /* Escenarios de Galería (Mockups de Proyectos en Desarrollo) */
            .gallery-stage {
                height: 200px !important;
                min-height: 200px !important;
            }

            /* Escalado uniforme de interfaces simuladas para que encajen */
            .vgm-interface,
            .bio-interface,
            .spa-aisle,
            .clif-interface {
                transform: scale(0.65) !important;
                transform-origin: center center !important;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem !important;
            }

            .vgm-interface,
            .bio-interface,
            .spa-aisle,
            .clif-interface {
                transform: scale(0.5) !important;
                transform-origin: center center !important;
            }

            .gallery-stage {
                height: 160px !important;
                min-height: 160px !important;
            }

            .card {
                max-width: 290px !important;
            }
        }

        .lang-option::after {
            font-size: 1.1rem;
            opacity: 0.6;
        }

        .lang-option[onclick*="'es'"]::after {
            content: '🇪🇸';
        }

        .lang-option[onclick*="'en'"]::after {
            content: 'EN';
        }

        /* FOOTER COOKIE LINK */
        .cookie-footer-link {
            color: #fff;
            font-size: 0.95rem;
            cursor: pointer;
            text-decoration: none;
            transition: 0.3s;
            
        }

        .cookie-footer-link:hover {
            color: var(--accent-cyan);
        }

        /* --- BOTÓN DE HAMBURGUESA (MÓVIL) --- */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 10001;
            /* Above all elements */
        }

        .nav-toggle span {
            width: 100%;
            height: 2px;
            background-color: var(--text-main);
            transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
            border-radius: 2px;
        }

        /* Hover de la hamburguesa */
        .nav-toggle:hover span {
            background-color: var(--accent-cyan);
            box-shadow: 0 0 8px var(--accent-cyan);
        }

        /* Estado Activo (X) */
        .nav-toggle.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
            background-color: var(--accent-cyan);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
            background-color: var(--accent-cyan);
        }

        /* RESPONSIVIDAD NAV BAR A MENÚ DESPLEGABLE */
        @media (max-width: 1024px) {
            nav {
                padding: 15px 20px !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .logo img {
                max-height: 45px !important;
            }

            .nav-toggle {
                display: flex !important;
            }

            .nav-links {
                display: flex !important;
                position: fixed !important;
                top: 0 !important;
                right: -100% !important;
                width: 300px !important;
                height: 100vh !important;
                background: rgba(2, 4, 10, 0.98) !important;
                backdrop-filter: blur(25px) !important;
                -webkit-backdrop-filter: blur(25px) !important;
                border-left: 1px solid rgba(0, 243, 255, 0.2) !important;
                flex-direction: column !important;
                align-items: flex-start !important;
                justify-content: flex-start !important;
                padding: 100px 30px 40px !important;
                gap: 25px !important;
                z-index: 9999 !important;
                transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
                box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8) !important;
                overflow-y: auto !important;
            }

            .nav-links.active {
                right: 0 !important;
            }

            .nav-links li {
                width: 100% !important;
            }

            .nav-btn {
                width: 100% !important;
                text-align: left !important;
                font-size: 1.2rem !important;
                padding: 8px 0 !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
            }

            .nav-btn:hover {
                border-bottom-color: var(--accent-cyan) !important;
            }

            .nav-highlight {
                width: 100% !important;
                text-align: center !important;
                border-radius: 6px !important;
                margin-top: 10px !important;
                padding: 12px 20px !important;
            }

            .btn-account {
                width: 100% !important;
                justify-content: center !important;
                margin-top: 10px !important;
                padding: 12px 20px !important;
            }

            /* Selector de idioma en móvil */
            .lang-switcher {
                width: 100% !important;
                margin-top: 15px !important;
                margin-left: 0 !important;
                padding-top: 20px !important;
                border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: flex-start !important;
            }

            .lang-trigger {
                width: 100% !important;
                justify-content: space-between !important;
                padding: 12px 20px !important;
                box-sizing: border-box !important;
            }

            .lang-switcher.active .lang-dropdown {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateY(0) scale(1) !important;
                position: relative !important;
                top: 0 !important;
                margin-top: 10px !important;
                width: 100% !important;
                box-shadow: none !important;
                border-color: rgba(0, 243, 255, 0.2) !important;
            }

            .lang-switcher.active .lang-dropdown::before {
                display: none !important;
            }
        }

        /* OVERRIDE: MOCKUPS PREMIUM GLASSMORPHISM (DEEP TECH) */
        .mockup-window {
            background: rgba(5, 8, 15, 0.65) !important;
            backdrop-filter: blur(16px) !important;
            -webkit-backdrop-filter: blur(16px) !important;
            border: 1px solid rgba(0, 243, 255, 0.2) !important;
            border-radius: 12px !important;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
            transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
        }

        .product-monolith:hover .mockup-window {
            border-color: var(--accent-cyan) !important;
            transform: scale(1.02) !important;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.2) !important;
        }

        .mockup-header {
            background: linear-gradient(90deg, rgba(0, 243, 255, 0.1) 0%, rgba(2, 4, 10, 0.3) 100%) !important;
            border-bottom: 1px solid rgba(0, 243, 255, 0.2) !important;
            height: 30px !important;
        }

        .mockup-body {
            background: transparent !important; /* Para que luzca el glassmorphism del fondo */
        }

        /* RESTAURACIÓN DE FOOTER ORIGINAL Y FAQ */
        footer {
            border-top: 1px solid rgba(0, 243, 255, 0.3);
            padding: 60px 0 0 0;
            margin-top: 80px;
            font-family: 'Rajdhani', sans-serif;
            background: linear-gradient(180deg, rgba(2, 4, 10, 0.15) 0%, rgba(2, 4, 10, 0.95) 100%);
        }

        /* BANNER PROMOCIONAL DEEP TECH */
        .promo-banner {
            background: rgba(13, 18, 29, 0.6);
            border: 1px solid rgba(255, 0, 128, 0.4);
            border-radius: 8px;
            padding: 20px 30px;
            margin: 0 auto 40px auto;
            max-width: 800px;
            text-align: center;
            font-family: 'Geist', 'Inter', sans-serif;
            color: #fff;
            box-shadow: 0 0 25px rgba(255, 0, 128, 0.15), inset 0 0 15px rgba(0, 243, 255, 0.05);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(12px);
            animation: promo-pulse-border 3s infinite alternate;
        }

        .promo-banner-glow {
            position: absolute;
            top: 0; left: -100%;
            width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            animation: promo-sweep 5s infinite linear;
            pointer-events: none;
        }

        .promo-title {
            color: #00f3ff;
            text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
            font-weight: 700;
        }

        .promo-highlight {
            color: #ff0080;
            text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
            font-weight: 600;
            padding: 0 5px;
        }

        .promo-lifetime {
            color: #ffcc00;
            text-shadow: 0 0 12px rgba(255, 204, 0, 0.5);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 1px dashed #ffcc00;
        }

        @keyframes promo-sweep {
            0% { left: -100%; }
            20% { left: 200%; }
            100% { left: 200%; }
        }

        @keyframes promo-pulse-border {
            0% { 
                border-color: rgba(255, 0, 128, 0.3); 
                box-shadow: 0 0 15px rgba(255, 0, 128, 0.1); 
            }
            100% { 
                border-color: rgba(0, 243, 255, 0.6); 
                box-shadow: 0 0 30px rgba(0, 243, 255, 0.25); 
            }
        }

        .logo-tooltip-container { position: relative; display: inline-block; cursor: pointer; }
        .logo-tooltip {
            visibility: hidden; width: 280px; background-color: rgba(2, 4, 10, 0.95);
            color: #fff; text-align: center; border: 1px solid var(--accent-cyan);
            border-radius: 8px; padding: 15px; position: absolute; z-index: 1000;
            bottom: 120%; left: 50%; transform: translateX(-50%); opacity: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-size: 0.9rem; box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
            pointer-events: none; line-height: 1.4;
        }
        .logo-tooltip::after {
            content: ""; position: absolute; top: 100%; left: 50%; margin-left: -6px;
            border-width: 6px; border-style: solid;
            border-color: var(--accent-cyan) transparent transparent transparent;
        }
        .logo-tooltip-container:hover .logo-tooltip { visibility: visible; opacity: 1; bottom: 110%; transform: translateX(-50%) scale(1); }

        .footer-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; margin-bottom: 40px; }

        .live-monitor {
            background: rgba(13, 18, 29, 0.8); border: 1px solid var(--accent-cyan);
            padding: 15px; border-radius: 8px; display: flex; align-items: center;
            gap: 15px; box-shadow: 0 0 15px rgba(0, 243, 255, 0.1); width: fit-content; margin-top: 20px;
        }
        .live-dot {
            width: 10px; height: 10px; background: var(--accent-green); border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-green); animation: pulse 2s infinite;
        }

        .faq-container {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px; margin-top: 40px; align-items: start;
        }
        details {
            background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px; overflow: hidden;
            transition: background 0.3s ease, border-color 0.3s ease; /* Fixed flicker transition */
        }
        summary {
            padding: 12px 15px; cursor: pointer; color: #ccc; outline: none; list-style: none; display: flex; justify-content: space-between;
        }
        summary::after { content: '+'; color: var(--accent-cyan); font-weight: bold; }
        details:hover { border-color: var(--accent-cyan); background: rgba(0, 243, 255, 0.05); }
        details[open] { border-color: var(--accent-cyan); }
        .faq-answer { padding: 15px; color: var(--text-dim); background: rgba(0, 0, 0, 0.2); font-size: 0.85rem; }

        /* MODALES LEGALES DEEP TECH */
        .legal-modal-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            background: rgba(2, 4, 10, 0.85);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            animation: fadeInLegal 0.4s forwards;
        }

        .legal-modal-content {
            background: rgba(13, 18, 29, 0.95);
            border: 1px solid var(--accent-cyan);
            border-radius: 12px;
            width: 90%;
            max-width: 800px;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.15), inset 0 0 20px rgba(0, 243, 255, 0.05);
            transform: scale(0.95);
            animation: scaleInLegal 0.4s forwards;
        }

        .close-legal-modal {
            position: absolute;
            top: 20px; right: 25px;
            color: #aaa;
            font-size: 28px;
            cursor: pointer;
            transition: color 0.3s;
            z-index: 2;
        }

        .close-legal-modal:hover { color: var(--accent-cyan); text-shadow: 0 0 10px var(--accent-cyan); }

        .legal-header {
            padding: 30px 40px 20px 40px;
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
            position: sticky;
            top: 0;
            background: rgba(13, 18, 29, 0.98);
            z-index: 1;
        }

        .legal-header h2 {
            font-size: 1.8rem;
            color: #fff;
            margin: 0 0 5px 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }

        .legal-date { color: var(--accent-cyan); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }

        .legal-body { padding: 30px 40px; color: var(--text-dim); font-family: 'Inter', sans-serif; line-height: 1.6; }
        .legal-body h3 { color: #fff; margin-top: 25px; margin-bottom: 15px; font-size: 1.2rem; border-left: 3px solid var(--accent-cyan); padding-left: 10px; }
        .legal-body h3:first-child { margin-top: 0; }
        .legal-body p, .legal-body ul { margin-bottom: 15px; font-size: 0.95rem; }
        .legal-body ul { padding-left: 20px; }
        .legal-body li { margin-bottom: 10px; }
        .legal-body strong { color: #ddd; }

        .legal-warning-box {
            background: rgba(255, 204, 0, 0.05);
            border: 1px solid rgba(255, 204, 0, 0.3);
            border-radius: 6px;
            padding: 15px;
            margin: 20px 0;
            color: #ffcc00;
        }

        @keyframes fadeInLegal { to { opacity: 1; } }
        @keyframes scaleInLegal { to { transform: scale(1); } }
        
        /* Custom Scrollbar para Modales Legales */
        .legal-modal-content::-webkit-scrollbar { width: 8px; }
        .legal-modal-content::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); border-radius: 0 12px 12px 0; }
        .legal-modal-content::-webkit-scrollbar-thumb { background: rgba(0, 243, 255, 0.3); border-radius: 4px; }
        .legal-modal-content::-webkit-scrollbar-thumb:hover { background: rgba(0, 243, 255, 0.6); }

        /* =========================================
           CLASES RESPONSIVAS GENÉRICAS
           ========================================= */
        .responsive-grid-1-2 {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
        }
        
        .responsive-grid-2-1 {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        @media (max-width: 900px) {
            .responsive-grid-1-2,
            .responsive-grid-2-1 {
                grid-template-columns: 1fr !important;
            }
        }
