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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.coming-soon > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

.notify {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.notify h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.notify p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #666;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Waitlist Form Styles */
.waitlist-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 1rem;
    line-height: 1.4;
}

.disclaimer a {
    color: #667eea;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.success-message h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.success-message p {
    margin: 0;
}

footer {
    margin-top: 3rem;
    text-align: center;
    color: white;
}

.legal-links {
    margin-bottom: 1rem;
}

.legal-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Legal pages styling */
.legal-page {
    background: white;
    margin: 2rem 0;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-page h1 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.legal-page h2 {
    color: #444;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.legal-page h3 {
    color: #555;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.legal-page p, .legal-page li {
    margin-bottom: 0.5rem;
    color: #666;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page strong {
    color: #333;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .coming-soon {
        padding: 2rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .legal-links a {
        display: block;
        margin: 0.5rem 0;
    }
}