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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2d3748;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.coming-soon-badge {
    display: inline-block;
    background: #48bb78;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Misconceptions Section */
.misconceptions .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.misconception-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.misconception-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.emphasis {
    color: #4299e1;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 1rem 0;
}

/* Features Section */
.feature-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.feature-list li {
    background: #edf2f7;
    margin: 1rem 0;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 500;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* What to Expect Section */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expect-item {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

/* CTA Section */
.cta {
    background: #2d3748;
    color: white;
    text-align: center;
}

.signup-form {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
}

.signup-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.signup-form button {
    background: #48bb78;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.signup-form button:hover {
    background: #38a169;
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .signup-form {
        flex-direction: column;
    }
    
    .signup-form button {
        width: 100%;
    }
}
