/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: linear-gradient(180deg, #f2f2ff 0%, #ffffff 100%);
    color: #333;
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navigation */
header {
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: bold;
    font-size: 1.5em;
}

.nav-links .pill {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    margin: 0 10px;
    font-size: 0.9em;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0 30px;
    max-width: 500px;
}

.hero-form {
    margin-top: 40px;
}

.hero-form .coming-soon-text {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.hero-form .email-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-form .email-form input {
    width: 280px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-link {
    color: #ff6f61;
    font-weight: bold;
}

.cta-button {
    background-color: white;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.feature-columns {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.feature {
    max-width: 300px;
}

.feature svg {
    height: 50px;
    margin-bottom: 20px;
    color: #333;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    text-align: left;
}

.faq .container {
    max-width: 800px;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
}

.faq-item summary {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 20px 0;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item p {
    padding: 0 0 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #333;
    transition: transform 0.2s ease-in-out;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}


/* Coming Soon Section */
.coming-soon {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.email-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.email-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 250px;
}

.email-form button {
    padding: 10px 20px;
    border: none;
    background-color: #333;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    padding: 20px 0;
    font-size: 0.9em;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .feature-columns {
        gap: 40px;
    }

    .nav-links {
        display: none;
    }
} 