@charset "utf-8";
/* CSS Document */

	/* Estilos globales */
    :root {
            --bg-dark: #070913;
            --primary-glow: rgba(99, 102, 241, 0.15);
            --secondary-glow: rgba(168, 85, 247, 0.15);
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --accent: #6366f1;
            --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        /* Fondo creativo y abstracto con gradientes y animación (Inspirado en a.webp) */
        .background-glows {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }

        .glow-1 {
            position: absolute;
            top: -20%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatGlow 12s ease-in-out infinite alternate;
        }

        .glow-2 {
            position: absolute;
            bottom: -10%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatGlow 8s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatGlow {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(40px, 30px) scale(1.1); }
        }

        /* Líneas de cuadrícula sutiles para el toque tecnológico */
        .tech-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 2;
        }

        /* Contenedor Principal */
        .container {
            position: relative;
            z-index: 3;
            text-align: center;
            padding: 2rem;
            max-width: 650px;
            width: 100%;
        }

        /* Logo simulado con estilo futurista */
        .logo-container {
            margin-bottom: 3rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--accent-gradient);
            border-radius: 8px;
            position: relative;
            transform: rotate(45deg);
            animation: pulseLogo 3s ease-in-out infinite;
        }

        @keyframes pulseLogo {
            0%, 100% { transform: rotate(45deg) scale(1); }
            50% { transform: rotate(45deg) scale(1.08); box-shadow: 0 0 20px rgba(99, 102, 241, 0.5); }
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(180deg, #fff 0%, #bbb 100%);
            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;
        }

        /* Header Creativo */
        .tagline {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 4rem;
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(to bottom, #ffffff, #cbd5e1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .description {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 3rem;
        }

        /* Formulario de Suscripción Ultra-Limpio */
        .subscribe-form {
            display: flex;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 6px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-bottom: 4rem;
        }

        .subscribe-form:focus-within {
            border-color: rgba(99, 102, 241, 0.4);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
        }

        .subscribe-form input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            padding: 0 20px;
            color: var(--text-main);
            font-size: 1rem;
        }

        .subscribe-form input::placeholder {
            color: #475569;
        }

        .subscribe-form button {
            background: var(--text-main);
            color: var(--bg-dark);
            border: none;
            padding: 12px 26px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .subscribe-form button:hover {
            background: #e2e8f0;
            transform: translateY(-1px);
        }

        /* Footer / Redes Sociales */
        .footer-info {
            font-size: 0.85rem;
            color: #475569;
            letter-spacing: 0.5px;
        }

        /* Adaptabilidad (Responsive) */
        @media (max-width: 600px) {
            h1 { font-size: 2.8rem; letter-spacing: -1px; }
            .subscribe-form { flex-direction: column; border-radius: 16px; gap: 10px; background: transparent; border: none; box-shadow: none; padding: 0;}
            .subscribe-form input { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); padding: 16px 20px; border-radius: 30px; }
            .subscribe-form button { padding: 16px; }
        }