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

@font-face {
    font-family: 'Aeonik';
    src: url('assets/fonts/fonnts.com-Aeonik-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aeonik';
    src: url('assets/fonts/fonnts.com-Aeonik-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Aeonik', 'Inter', Arial, sans-serif;
    background-color: #000000;
    color: #fff;
    line-height: 1.5;
    min-height: 100vh;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 1rem 0; */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;

}

main {
    /* background-color: #333333; */
    display: flex;
    min-height: 90vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    /* display: flex; */
    /* align-items: center; */
    /* height: 100%;
    justify-content: center;
    max-width: 1200px;
    margin: 4rem auto;
    text-align: center;
    padding: 4rem 0; */
}



.logo {
    font-weight: 700;
    font-size: 1.5rem;
}

.contact-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}



.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* background-color: rgba(255, 255, 255, 0.1); */
    padding: 0.4rem 1rem;
    border-radius: 100px;
    border-style: solid;
    border-color: #333333;
    border-width: 1px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #ff7300;
    border-radius: 50%;
    display: inline-block;
}

/* section 1 */
.container {
    max-width: 950px;
    margin: 0 auto;
    /* background-color: #ff4d00; */
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 580;
    margin-bottom: 2rem;
    line-height: 1;
}

.subtitle {
    /* font-size: clamp(1rem, 2vw, 1.2rem); */
    font-size: 16px;
    color: rgb(191, 191, 191);
    margin-bottom: 3rem;
}

.signup-container {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.signup-form {
    display: flex;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.3rem;
    border-radius: 100px;
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 14px;
    outline: none;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

button[type="submit"] {
    background-color: #0044ff;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    opacity: 0.9;
}

button[type="submit"].joined {
    background-color: #22c55e;
    color: #fff;
    cursor: default;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.social-link {
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    cursor: pointer;
}

.social-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 16px;
    }
    .signup-form {
        flex-direction: column;
        background: none;
        gap: 1rem;
    }

    input[type="email"] {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 100px;
    }

    button[type="submit"] {
        width: 100%;
    }

    .launch-badge {
        font-size: 12px;

    }
}