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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1a2332;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    width: 280px;
    height: auto;
    max-width: 90vw;
}

.tagline {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 3rem;
    max-width: 1000px;
    color: #ffffff;
}

.cta-button {
    background-color: #e6481b;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 4rem;
}

.cta-button:hover {
    background-color: #b12409;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.footer {
    padding: 2rem;
    text-align: right;
}

.company-info {
    max-width: 1200px;
    margin: 0 auto;
}

.company-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.company-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .tagline {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .logo {
        width: 200px;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .footer {
        text-align: center;
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 150px;
    }
}

.waitlist-form {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-input {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-align: center;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: #e6481b;
    background-color: rgba(255, 255, 255, 0.15);
}

.submit-button {
    background-color: #e6481b;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #b12409;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background-color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    transform: none;
}

.form-message {
    font-size: 0.9rem;
    text-align: center;
    min-height: 1.2rem;
}

.form-message.success {
    color: #4caf50;
}

.form-message.error {
    color: #f44336;
}