*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Circular', Arial, sans-serif;
}

html{
    scroll-behavior: smooth;
}

.hero{
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.back-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

nav .white-logo-outs{
    width: 160px;
    height: auto;
    transform: translateY(-4px)
}

nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}

nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: 500;
}

.content{
    text-align: center;
    position: relative;
    z-index: 1;
}

.content h1{
    font-size: 150px;
    color: white;
    font-weight: 500;
}

.content p{
    color: white;
    font-size: 22px;
    margin-top: 5px;
}

.content a{
    text-decoration: none;
    display: inline-block;
    color: white;
    font-size: 24px;
    border: 2px solid white;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 25px;
    transition: 0.3s;
}

.content a:hover{
    background: white;
    color: black;
}

.waitlist-section{
    min-height: 100vh;
    background: #f7f4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.form-box{
    background: white;
    width: 100%;
    max-width: 500px;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    text-align: center;
}

.form-box h2{
    font-size: 34px;
    margin-bottom: 10px;
    color: #111;
}

.form-box p{
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.form-box form{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-box input{
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.form-box input:focus{
    border-color: #111;
}

.form-box button{
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: #111;
    color: white;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}

.form-box button:hover{
    background: #333;
}

@media (max-width: 768px){
    .content h1{
        font-size: 70px;
    }

    .content p{
        font-size: 18px;
        max-width: 90%;
        margin: 10px auto 0;
    }

    nav{
        padding: 20px 5%;
    }

    nav .white-logo-outs{
        width: 70px;
    }

    nav ul li{
        margin-left: 15px;
    }

    nav ul li a{
        font-size: 13px;
    }

    .content a{
        font-size: 18px;
        padding: 12px 45px;
    }

    .form-box{
        padding: 35px 25px;
    }

    .form-box h2{
        font-size: 28px;
    }
}