* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    height: 99px;
    width: auto;
}

.nav-button {
    background-color: #02d578;
    color: #000000;
    border: 1px solid #02d578;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s;
    font-size: 18px;
    text-decoration: auto;
}

.nav-button:hover {
    background-color: #fff;
    color: #000;
}

main {
    min-height: calc(100vh - 160px);
    padding: 40px 0;
    position: relative;
}

.hero-content {
    max-width: 750px;
}

.hero-visual {
    position: fixed;
    top: -47px;
    right: -287px;
    width: 58%;
    max-width: 788px;
    height: 100vh;
    z-index: 1;
}

.visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.8rem;
}

p.terms.policy {
    font-size: 14px;
    line-height: 1rem;
}

.email-form {
    width: 100%;
    max-width: 600px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.email-input {
    flex: 1;
    padding: 15px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 1rem;
}

.email-input::placeholder {
    color: #999;
}

.signup-button {
    padding: 15px 30px;
    background-color: #02d578;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.signup-button:hover {
    background-color: #ddd;
}

.terms {
    font-size: 0.8rem;
    color: #777;
    max-width: 600px;
}

@media (max-width: 1024px) {
    .hero-visual {
        width: 50%;
    }
    
    .hero-content {
        background-color: rgba(0, 0, 0, 0.7);
        padding: 20px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-visual {
        width: 100%;
        right: 0;
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    
    header {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .email-input, .signup-button {
        padding: 12px;
    }
    
    .hero-visual {
        display: block;
        width: 100%;
        opacity: 0.2;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .signup-button {
        width: 100%;
    }
    
    .container {
        padding: 15px;
    }
}

.thank-you-message {
    background-color: rgba(2, 213, 120, 0.2);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    animation: fadeIn 0.5s ease-in-out;
}

.thank-you-message h2 {
    color: #02d578;
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


a {
    color: white;
    text-decoration: underline;
}