* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    overflow-x: hidden;
    background-color: #0a0a14;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Video de fondo */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay para legibilidad */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 20, 0.45);
    pointer-events: none;
    z-index: 1;
}

body > * {
    position: relative;
    z-index: 2;
}

/* HEADER - ESTÁTICO */
header {
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 18px 36px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* logo y nav (visibles al 100% por defecto) */
.header-logo a {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.hl-1 {
    color: #a8ff00;
}

.header-nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.header-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-nav a:hover {
    color: #a8ff00;
}

/* MAIN / HERO */
main.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
    min-height: calc(100vh - 160px);
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 0.9s ease-out;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, #a8ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 18px rgba(168,255,0,0.15);
    letter-spacing: 1.5px;
}

.subtitle {
    font-size: 22px;
    color: #a8ff00;
    margin-bottom: 18px;
    font-weight: 600;
}

.description {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* botones */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.22s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #a8ff00;
    color: #000;
}

.btn-primary:hover {
    filter: brightness(1.03);
    box-shadow: 0 0 28px rgba(168,255,0,0.25);
}

.btn-secondary {
    background: transparent;
    color: #a8ff00;
    border-color: #a8ff00;
}

.btn-secondary:hover {
    background: #a8ff00;
    color: #000;
}

/* FOOTER - ESTÁTICO */
footer {
    background: rgba(10, 10, 20, 0.95);
    color: #e0e0e0;
    padding: 36px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 120;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer-section h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #a8ff00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    list-style: none;
    padding: 0;
}

.social-links li {
    margin-bottom: 8px;
}

.social-links a,
.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.18s ease;
}

.social-links a:hover,
.footer-section a:hover {
    color: #a8ff00;
}

.footer-bottom {
    max-width: 1200px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 12px;
    color: #999;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 880px) {
    .hero-content h1 { font-size: 44px; }
    .subtitle { font-size: 18px; }
    .header-nav ul { gap: 18px; }
    .footer-content { grid-template-columns: 1fr; gap: 18px; }
}