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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    background-image: url('background-pattern.svg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

/* Left Section Styles */
.left-section {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(245, 245, 245, 0.7);
}

.branding {
    margin-bottom: 2rem;
}



.logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.logo-subtitle {
    font-size: 2.6rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 2.5rem;
}

.tagline h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}

.beta-indicator {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #00a67e;
    margin-top: 2rem;
}

.beta-indicator .icon {
    margin-right: 0.5rem;
}

/* Right Section Styles */
.right-section {
    flex: 1;
    padding: 3rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
}

.feature.checked {
    background-color: #f8f8f8;
}

.check-icon {
    color: #00a67e;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Waitlist Form Section */
.waitlist-container {
    margin-top: 2rem;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.main-header {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #222;
    line-height: 1.3;
    text-align: left;
    width: 100%;
}

.sub-header {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-align: left;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

input[type="email"] {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

button {
    padding: 0.9rem 2rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
    width: 100%;
}

button:hover {
    background-color: #555;
}

/* Confirmation Message */
#confirmation-message {
    padding: 0.8rem;
    background-color: #e8f5e9;
    border-radius: 4px;
    color: #2e7d32;
}

.hidden {
    display: none;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-top: 2.5rem;
}

.social-link {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: #f0f0f0;
}

.social-link:hover {
    color: #000;
    background-color: #e8e8e8;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }
    
    .left-section, .right-section {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    form {
        flex-direction: column;
    }
}
