*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#fff;
    line-height:1.6;
}

section{
    padding:90px 20px;
}

/* HERO */

.hero{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.logo{
    width:220px;
    margin-bottom:40px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:20px;
}

.hero p{
    color:#a0a0a0;
    max-width:650px;
    margin:auto;
    margin-bottom:40px;
}

.waitlist{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.waitlist input{
    width:320px;
    padding:16px;
    background:#111;
    border:1px solid #222;
    color:#fff;
    border-radius:12px;
    outline:none;
    font-size:16px;
}

.waitlist input:focus{
    border-color:#555;
}

.waitlist button{
    padding:16px 28px;
    background:#fff;
    color:#000;
    border:none;
    border-radius:12px;
    cursor:pointer;
    font-weight:bold;
    font-size:16px;
    transition:.2s;
}

.waitlist button:hover{
    transform:translateY(-2px);
}

/* WAITLIST COUNT */

.counter{
    background:#0d0d0d;
    text-align:center;
}

.counter h2{
    margin-bottom:20px;
}

.count span{
    font-size:72px;
    font-weight:bold;
}

.count p{
    margin-top:10px;
    color:#888;
}

/* FEATURES */

.features{
    max-width:1200px;
    margin:auto;
}

.features h2{
    text-align:center;
    margin-bottom:50px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:#101010;
    border:1px solid #222;
    border-radius:18px;
    padding:30px;
    transition:.25s;
}

.card:hover{
    transform:translateY(-5px);
    border-color:#444;
}

.card h3{
    margin-bottom:15px;
    font-size:22px;
}

.card p{
    color:#999;
}

/* DISCORD */

.discord{
    text-align:center;
    background:#0d0d0d;
}

.discord h2{
    margin-bottom:15px;
}

.discord p{
    color:#999;
}

.discordBtn{
    display:inline-block;
    margin-top:30px;
    padding:16px 36px;
    background:#5865F2;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:bold;
    transition:.2s;
}

.discordBtn:hover{
    transform:translateY(-2px);
}

/* FAQ */

.faq{
    max-width:850px;
    margin:auto;
}

.faq h2{
    text-align:center;
    margin-bottom:50px;
}

.faqItem{
    background:#101010;
    border:1px solid #222;
    border-radius:14px;
    overflow:hidden;
    margin-bottom:18px;
}

.faqQuestion{
    width:100%;
    background:none;
    border:none;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 24px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
}

.faqQuestion span:last-child{
    font-size:28px;
    transition:.3s;
}

.faqAnswer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faqAnswer p{
    padding:0 24px 22px;
    color:#999;
}

.faqItem.active .faqAnswer{
    max-height:200px;
}

.faqItem.active .faqQuestion span:last-child{
    transform:rotate(45deg);
}

/* FOOTER */

footer{
    border-top:1px solid #1a1a1a;
    padding:35px 20px;
    text-align:center;
    color:#666;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#050505;
}

::-webkit-scrollbar-thumb{
    background:#333;
    border-radius:999px;
}

::-webkit-scrollbar-thumb:hover{
    background:#555;
}

/* RESPONSIVE */

@media (max-width:768px){

    .hero h1{
        font-size:2.8rem;
    }

    .logo{
        width:170px;
    }

    .waitlist{
        flex-direction:column;
    }

    .waitlist input{
        width:100%;
        max-width:400px;
    }

    .waitlist button{
        width:100%;
        max-width:400px;
    }

    .count span{
        font-size:56px;
    }

    .faqQuestion{
        font-size:16px;
    }

}