:root {
    --primary: #6366f1; /* Violeta Eléctrico */
    --secondary: #ff3366; /* Rosa Neón */
    --accent: #00f2fe; /* Cian Brillante */
    --dark: #0f172a;
    --light: #f8fafc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* --- FONDO DE GRADIENTES ANIMADOS --- */
.gradient-bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: move 20s infinite alternate;
}

.blob-1 { background: var(--primary); top: -100px; left: -100px; }
.blob-2 { background: var(--secondary); bottom: -150px; right: -100px; animation-delay: -5s; }
.blob-3 { background: var(--accent); top: 50%; left: 50%; animation-duration: 15s; }

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 50px) scale(1.2); }
}

/* --- CONTENIDO PRINCIPAL --- */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.brand-logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-text { margin-top: 4rem; }

.headline {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}

.outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--light);
}

.subline {
    font-size: 1.2rem;
    max-width: 500px;
    opacity: 0.8;
    line-height: 1.6;
}

/* --- BARRA DE CARGA --- */
.loader-container { margin-top: 3rem; max-width: 400px; }

.loader-bar {
    height: 4px;
    width: 100%;
    background: rgba(255,255,255,0.1);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    box-shadow: 0 0 15px var(--primary);
}

.loader-text {
    margin-top: 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
}

.footer {
    padding: 2rem 10%;
    font-size: 0.8rem;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 768px) {
    .hero { padding: 0 5%; text-align: center; justify-content: center; }
    .subline { margin: 0 auto; }
}