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

:root {
    --blue: #185FA5;
    --blue-light: #E6F1FB;
    --blue-dark: #0C447C;
    --text-primary: #1a1a1a;
    --text-secondary: #6b6b6b;
    --border: #e5e5e5;
    --bg-secondary: #f7f7f5;
    --success: #3B6D11;
    --success-light: #EAF3DE;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: #fff;
}

/* ── Navigation ── */
.nav {
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.nav-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}

.nav-badge {
    font-size: 12px;
    background: var(--blue-light);
    color: var(--blue-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}

/* ── Container ── */
.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Hero ── */
.hero {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border);
}

.eyebrow {
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.highlight {
    color: var(--blue);
}

.hero-body {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 620px;
    margin-bottom: 2.5rem;
}

/* ── Stats ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ── How it works ── */
.how-it-works {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.how-it-works h2,
.faq h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-sub {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue-dark);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Checklist offer ── */
.checklist-offer {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.checklist-box {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.checklist-icon {
    font-size: 28px;
    color: var(--blue);
    font-weight: 600;
    min-width: 36px;
    text-align: center;
}

.checklist-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.checklist-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ── Waitlist ── */
.waitlist {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.waitlist-box {
    background: var(--blue);
    border-radius: 12px;
    padding: 2.5rem;
    color: #fff;
}

.waitlist-box h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.waitlist-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.form-row {
    display: flex;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    outline: none;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.25);
}

.waitlist-box button {
    background: #fff;
    color: var(--blue);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.waitlist-box button:hover {
    opacity: 0.9;
}

.form-error {
    font-size: 13px;
    color: #ffcccc;
    margin-bottom: 0.5rem;
}

.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0 !important;
}

/* ── FAQ ── */
.faq {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.faq-list {
    margin-top: 1.5rem;
}

.faq-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Confirm / Already signed up ── */
.confirm {
    padding: 5rem 0;
}

.confirm-box {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.confirm-icon {
    font-size: 48px;
    color: var(--blue);
    margin-bottom: 1rem;
}

.confirm-box h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.confirm-box p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.confirm-box a {
    color: var(--blue);
}

.confirm-note {
    font-size: 13px !important;
    color: #999 !important;
}

/* ── Footer ── */
.footer {
    padding: 2rem 0;
    margin-top: 1rem;
}

.footer-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-inner p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 2;
}

.footer-disclaimer {
    margin-top: 0.5rem;
    font-size: 12px !important;
    color: #aaa !important;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 26px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .waitlist-box {
        padding: 1.5rem;
    }

    .checklist-box {
        flex-direction: column;
        text-align: center;
    }
}