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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #806E61;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 20px;
    font-style: italic;
    color: #FFF5ED;
    margin-bottom: 48px;
    font-weight: 300;
}

.heading {
    font-size: 24px;
    font-weight: 400;
    color: #FFF5ED;
    margin-bottom: 40px;
    line-height: 1.4;
    white-space: nowrap;
}

.waitlist-form {
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    text-align: left;
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: white;
    margin-bottom: 8px;
    font-weight: 400;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background-color: #F5F1E8;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #403730;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    font-family: inherit;
    transition: opacity 0.2s;
}

.submit-button:hover {
    opacity: 0.9;
}

.submit-button:active {
    opacity: 0.8;
}

.privacy-text {
    font-size: 14px;
    color: white;
    opacity: 0.9;
    font-weight: 300;
}

@media (max-width: 640px) {
    .product-name {
        font-size: 48px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .heading {
        font-size: 20px;
        white-space: normal;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

