        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --neon-red: #D32F2F;
            --neon-blue: #0091EA;
            --neon-purple: #AA00FF;
            --cyber-dark: #FFFFFF;
            --cyber-darker: #F5F5F5;
            --glass-bg: rgba(0, 0, 0, 0.03);
            --glass-border: rgba(0, 0, 0, 0.15);
            --text-color: #1A1A1A;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #FFFFFF;
            color: #1A1A1A;
            overflow-x: hidden;
            position: relative;
        }

        /* ANIMATED BACKGROUND */
        .cyber-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            background: #FFFFFF;
        }

        /* GRADIENT MESH EFFECT - WOW */
        .cyber-bg::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            top: -25%;
            left: -25%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(211, 47, 47, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(170, 0, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 145, 234, 0.02) 0%, transparent 50%);
            animation: meshMove 20s ease-in-out infinite;
        }

        @keyframes meshMove {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(5%, -5%) rotate(1deg); }
            66% { transform: translate(-5%, 5%) rotate(-1deg); }
        }

        .grid-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(211, 47, 47, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(211, 47, 47, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--neon-red);
            border-radius: 50%;
            opacity: 0.4;
            animation: float 15s infinite;
            box-shadow: 0 0 8px var(--neon-red);
        }

        /* BURBUJAS FLOTANTES - EFECTO WOW (Versión Light) */
        .bubble {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(211, 47, 47, 0.2), rgba(211, 47, 47, 0.05));
            opacity: 0.4;
            animation: bubbleFloat 20s infinite ease-in-out;
            box-shadow: inset 0 0 20px rgba(211, 47, 47, 0.1), 0 0 30px rgba(211, 47, 47, 0.15);
            border: 1px solid rgba(211, 47, 47, 0.1);
        }

        @keyframes bubbleFloat {
            0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
            25% { transform: translateY(-100px) translateX(50px) scale(1.1); opacity: 0.6; }
            50% { transform: translateY(-200px) translateX(-30px) scale(0.9); opacity: 0.5; }
            75% { transform: translateY(-100px) translateX(-50px) scale(1.05); opacity: 0.6; }
        }

        .bubble:nth-child(1) { width: 80px; height: 80px; left: 10%; bottom: -80px; animation-delay: 0s; animation-duration: 15s; }
        .bubble:nth-child(2) { width: 60px; height: 60px; left: 20%; bottom: -60px; animation-delay: 2s; animation-duration: 18s; }
        .bubble:nth-child(3) { width: 100px; height: 100px; right: 15%; bottom: -100px; animation-delay: 4s; animation-duration: 20s; }
        .bubble:nth-child(4) { width: 70px; height: 70px; right: 30%; bottom: -70px; animation-delay: 1s; animation-duration: 16s; }
        .bubble:nth-child(5) { width: 50px; height: 50px; left: 50%; bottom: -50px; animation-delay: 3s; animation-duration: 17s; }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { 
                transform: translateY(-100vh) translateX(50px);
                opacity: 0;
            }
        }

        /* Gradient orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
            animation: orbFloat 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--neon-red) 0%, transparent 70%);
            top: -10%;
            left: -10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
            bottom: -10%;
            right: -10%;
            animation-delay: 5s;
        }

        .orb-3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
            top: 40%;
            right: 10%;
            animation-delay: 10s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(100px, -100px) scale(1.1); }
            66% { transform: translate(-100px, 100px) scale(0.9); }
        }

        /* MAIN CONTENT */
        .container {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 20px;
            position: relative;
        }

        .coming-soon-badge {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, rgba(211, 47, 47, 0.15), rgba(170, 0, 255, 0.15));
            border: 1px solid rgba(211, 47, 47, 0.5);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 40px;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(211, 47, 47, 0.2);
            color: #D32F2F;
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(255, 23, 68, 0.3);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 50px rgba(255, 23, 68, 0.5);
            }
        }

        .logo-hero {
            max-width: 700px;
            margin: 0 auto 60px;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01));
            padding: 60px 100px;
            border-radius: 30px;
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
        }

        .logo-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(211, 47, 47, 0.2) 50%,
                transparent 70%
            );
            animation: shimmer 3s infinite;
        }

        .logo-hero::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, transparent, rgba(211, 47, 47, 0.1), transparent);
            border-radius: 30px;
            opacity: 0;
            transition: opacity 0.6s;
        }

        .logo-hero:hover::after {
            opacity: 1;
            animation: rotate 3s linear infinite;
        }

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

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .logo-hero img {
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            color: #1A1A1A;
            text-shadow: 0 2px 20px rgba(211, 47, 47, 0.2);
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero .tagline {
            font-size: clamp(1.3rem, 3vw, 2rem);
            color: #424242;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
            font-weight: 400;
        }

        .hero .tagline .highlight {
            color: var(--neon-red);
            font-weight: 700;
        }

        /* CTA SECTION */
        .cta-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 80px;
        }

        .btn-primary {
            position: relative;
            padding: 20px 50px;
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            background: linear-gradient(135deg, var(--neon-red), #D32F2F);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(255, 23, 68, 0.4);
            transition: all 0.3s ease;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(255, 23, 68, 0.6);
        }

        .btn-secondary {
            padding: 20px 50px;
            font-size: 1.2rem;
            font-weight: 700;
            color: #1A1A1A;
            background: rgba(0, 0, 0, 0.03);
            border: 2px solid rgba(0, 0, 0, 0.15);
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(211, 47, 47, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-secondary:hover::before {
            width: 400px;
            height: 400px;
        }

        .btn-secondary:hover {
            background: rgba(211, 47, 47, 0.08);
            border-color: var(--neon-red);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 30px rgba(211, 47, 47, 0.2);
            color: var(--neon-red);
        }

        /* COUNTDOWN */
        .countdown {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin-top: 60px;
        }

        .countdown-item {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px 40px;
            min-width: 120px;
            position: relative;
            overflow: hidden;
        }

        .countdown-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(211, 47, 47, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .countdown-item:hover::before {
            opacity: 1;
        }

        .countdown-item:hover {
            transform: translateY(-5px);
            border-color: rgba(211, 47, 47, 0.3);
            box-shadow: 0 10px 30px rgba(211, 47, 47, 0.15);
        }

        .countdown-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--neon-red);
            display: block;
            text-shadow: 0 0 20px rgba(255, 23, 68, 0.5);
        }

        .countdown-label {
            font-size: 0.9rem;
            color: rgba(0, 0, 0, 0.6);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 10px;
        }

        /* FEATURES GRID */
        .features {
            padding: 120px 20px;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            text-align: center;
            margin-bottom: 80px;
            color: #1A1A1A;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 30px;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            perspective: 1000px;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }

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

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-red), var(--neon-purple), var(--neon-blue));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-15px);
            border-color: rgba(255, 23, 68, 0.5);
            box-shadow: 0 30px 80px rgba(255, 23, 68, 0.3);
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            display: block;
            filter: drop-shadow(0 0 20px rgba(211, 47, 47, 0.3));
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            color: var(--neon-red);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2) rotate(5deg);
            filter: drop-shadow(0 0 30px rgba(211, 47, 47, 0.6));
        }

        .feature-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1A1A1A;
        }

        .feature-description {
            color: #424242;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .feature-tag {
            display: inline-block;
            background: rgba(255, 23, 68, 0.2);
            border: 1px solid rgba(255, 23, 68, 0.4);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 20px;
            color: var(--neon-red);
        }

        /* WAITLIST FORM */
        .waitlist {
            padding: 120px 20px;
            text-align: center;
        }

        .waitlist-container {
            max-width: 700px;
            margin: 0 auto;
            background: var(--glass-bg);
            backdrop-filter: blur(30px);
            border: 1px solid var(--glass-border);
            border-radius: 40px;
            padding: 80px 60px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        }

        .waitlist h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 900;
            color: #1A1A1A;
        }

        .waitlist p {
            color: #424242;
            font-size: 1.2rem;
            margin-bottom: 40px;
        }

        .form-group {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .form-input {
            flex: 1;
            padding: 20px 30px;
            font-size: 1.1rem;
            background: rgba(0, 0, 0, 0.03);
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 50px;
            color: #1A1A1A;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--neon-red);
            box-shadow: 0 0 30px rgba(211, 47, 47, 0.2);
        }

        .form-input::placeholder {
            color: rgba(0, 0, 0, 0.4);
        }

        .social-proof {
            margin-top: 40px;
            color: rgba(0, 0, 0, 0.5);
            font-size: 0.95rem;
        }

        .social-proof strong {
            color: var(--neon-red);
            font-weight: 700;
        }

        /* FOOTER */
        .footer {
            padding: 60px 20px;
            text-align: center;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .footer-logo {
            max-width: 200px;
            margin: 0 auto 30px;
            opacity: 0.7;
        }

        .footer-text {
            color: rgba(0, 0, 0, 0.5);
            font-size: 1rem;
        }

        .footer-links {
            margin-top: 20px;
            display: flex;
            gap: 30px;
            justify-content: center;
        }

        .footer-links a {
            color: rgba(0, 0, 0, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--neon-red);
        }

        /* MOBILE */
        @media (max-width: 768px) {
            .logo-hero {
                padding: 40px 30px;
            }

            .countdown {
                flex-wrap: wrap;
            }

            .countdown-item {
                min-width: 100px;
                padding: 20px 25px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .waitlist-container {
                padding: 50px 30px;
            }

            .form-group {
                flex-direction: column;
            }

            .cta-group {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
            }
        }
    </style>
            <style>
                .hero h1 {
                    background: linear-gradient(to right, #1A1A1A 50%, rgba(211, 47, 47, 0.3) 50%);
                    background-size: 200% 100%;
                    background-position: 100%;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                    animation: titleReveal 2s ease-out forwards;
                }

                @keyframes titleReveal {
                    to {
                        background-position: 0%;
                    }
                }
