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

html{
    scroll-behavior:smooth;
}

body{
    background:
    radial-gradient(circle at top, #181818 0%, #000 50%);
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
}

header{
    position:fixed;
    top:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 8%;

    backdrop-filter:blur(15px);
    background:rgba(0,0,0,.2);

    z-index:1000;
}

.logo{
    font-size:1.2rem;
    font-weight:900;
    letter-spacing:3px;
}

.nav-links{
    display:flex;
    gap:15px;
}

.nav-btn{
    text-decoration:none;
    background:#111;
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    border:1px solid #333;
    transition:.3s;
}

.nav-btn:hover{
    transform:translateY(-3px);
    border-color:#fff;
    box-shadow:0 0 30px rgba(255,255,255,.15);
}

.nav-btn:hover{
    transform:translateY(-3px);
}

.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero-content{
    animation:fadeUp 1s ease;
}

.tag{
    letter-spacing:4px;
    opacity:.7;
    margin-bottom:20px;
}

.hero h1{
    font-size:7rem;
    line-height:.9;
}

.hero-text{
    margin-top:25px;
    line-height:2;
    opacity:.8;
}

.btn{
    display:inline-block;
    margin-top:40px;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:50px;
    border:1px solid #333;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-5px);
    border-color:#fff;
    box-shadow:0 0 30px rgba(255,255,255,.15);
}

.btn:hover{
    transform:translateY(-5px);
}

.btn,
.nav-btn,
.contact-btn,
#waitlist button{
    box-shadow:0 0 25px rgba(255,255,255,.08);
}

section{
    padding:120px 10%;
}

.about{
    text-align:center;
}

.about p{
    max-width:700px;
    margin:auto;
    margin-top:20px;
    line-height:1.8;
    opacity:.8;
}

.drop{
    text-align:center;
}
.future-drop{
    text-align:center;
}

.future-drop img{
    width:100%;
    max-width:500px;
    height:auto;
    display:block;
    margin:40px auto;
    border-radius:20px;
    transition:.4s;
}

.future-drop img:hover{
    transform:scale(1.03);
}

.future-drop p{
    opacity:.8;
}
.future-projects{
    text-align:center;
}

.future-projects img{
    width:100%;
    max-width:500px;
    height:auto;
    display:block;
    margin:40px auto;
    border-radius:20px;
    transition:.4s;
}

.future-projects img:hover{
    transform:scale(1.03);
}

.future-projects p{
    opacity:.8;
}
.coming-soon{
    display:inline-block;
    margin-top:20px;
    padding:10px 20px;
    border:1px solid #333;
    border-radius:50px;
    letter-spacing:2px;
    font-size:.8rem;
    opacity:.8;
}
.drop img{
    width:100%;
    max-width:500px;
    height:auto;
    display:block;
    margin:40px auto;
    border-radius:20px;
    transition:.4s;
}

.drop img:hover{
    transform:scale(1.03);
}

.drop p{
    opacity:.8;
}

/* FEATURES */

.features{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

.feature-card{
    background:#111;
    border:1px solid #222;
    padding:20px 25px;
    border-radius:15px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
    border-color:#444;
}

#waitlist{
    text-align:center;
}

#waitlist p{
    margin:20px 0 40px;
    opacity:.8;
}
.waitlist-count{
    margin-bottom:25px;
    letter-spacing:2px;
    font-size:.9rem;
    opacity:.7;
    font-weight:bold;
}
#waitlist form{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

#waitlist input{
    width:400px;
    max-width:90%;
    padding:18px;
    border:none;
    border-radius:50px;
    background:#111;
    color:white;
    outline:none;
}
#waitlist button{
    padding:18px 35px;
    border:1px solid #333;
    border-radius:50px;
    background:#111;
    color:#fff;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

#waitlist button:hover{
    transform:translateY(-5px);
    border-color:#fff;
    box-shadow:0 0 30px rgba(255,255,255,.15);
}

#waitlist button:hover{
    transform:translateY(-5px);
}

/* CONTACTO */

#contact{
    text-align:center;
}

#contact p{
    margin-top:20px;
    opacity:.8;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.contact-btn{
    text-decoration:none;
    background:#111;
    color:#fff;
    padding:18px 35px;
    border-radius:50px;
    border:1px solid #333;
    font-weight:bold;
    transition:.3s;
}

.contact-btn:hover{
    transform:translateY(-5px);
    border-color:#fff;
    box-shadow:0 0 30px rgba(255,255,255,.15);
}

.contact-btn:hover{
    transform:translateY(-5px);
}

/* ANIMACIONES SCROLL */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:.8s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

footer{
    text-align:center;
    padding:50px;
    border-top:1px solid #222;
    opacity:.6;
}

.success-message{
    font-size:1.2rem;
    padding:30px;
    border:1px solid #333;
    border-radius:20px;
    max-width:600px;
    margin:auto;
    background:#0a0a0a;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }

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

@media(max-width:768px){

    .hero h1{
        font-size:4rem;
    }

    .logo{
        font-size:1rem;
    }

    .nav-btn{
        padding:10px 18px;
    }

    .nav-links{
        gap:10px;
    }

    .contact-buttons{
        flex-direction:column;
        align-items:center;
    }

    .contact-btn{
        width:250px;
    }
}
