@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap');

:root {
    --primary-color: #dfff00;
    --dark-color: #000000;
    --light-color: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --border-color: #e5e7eb;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-color);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

header {
    padding: 1rem 0 3rem 0;
}

.logo {
    width: 50px;
    height: 50px;
}

/* Sections */
main > section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}
main > section:last-child {
    border-bottom: none;
}

h1, h2, h3 {
    font-weight: 900;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Hero Section */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.benefit-item {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

.benefit-item .benefit-icon {
    width: 40px;
    height: 40px;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.benefit-item p {
    margin-bottom: 0;
}


/* Social Proof Section */
.social-proof-section p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
}


/* FAQ Section */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1rem;
}
.faq-item[open] summary {
    font-weight: 700;
}
.faq-item p {
    padding-top: 1rem;
    margin-bottom: 0;
}
summary {
    font-weight: 500;
    cursor: pointer;
    list-style: none; /* Remove default marker */
}
summary::-webkit-details-marker {
    display: none; /* Hide for Chrome */
}
summary::after {
    content: '+';
    float: right;
    font-size: 1.5rem;
    line-height: 1;
}
.faq-item[open] summary::after {
    content: '−';
}


/* Lead Capture Section */
.lead-capture-section .form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 3rem;
    border-radius: 16px;
}
.lead-capture-section h2 {
    margin-bottom: 1rem;
}
#waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.form-group-checkbox label {
    margin: 0;
    font-weight: 400;
}
input[type="text"], input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}
button[type="submit"] {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}
button[type="submit"]:hover {
    background-color: #c8e600;
}
button:disabled {
    background-color: #e5e7eb;
    cursor: not-allowed;
}

.form-confirmation-message {
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 1.5rem;
}

/* Footer */
footer {
    padding-top: 4rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .page-container { padding: 1rem; }
    .benefits-grid { grid-template-columns: 1fr; }
}
