/* =============================================================
   early.css — Pre-launch waitlist page styles
   Append to members.css or load as a separate stylesheet
   Brand colour: #e05a00 (matches members.css)
   ============================================================= */

/* ------------------------------------------------------------------
   Page layout — full-width split
   ------------------------------------------------------------------ */
.early-page {
    min-height: 100vh;
    background: var(--bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px 64px;
}

.early-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    max-width: 1000px;
    width: 100%;
    align-items: start;
}

/* ------------------------------------------------------------------
   Left column — pitch
   ------------------------------------------------------------------ */
.early-logo {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.early-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-pale);
    color: var(--brand);
    border: 1px solid #f5cdb0;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.early-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    animation: early-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes early-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.early-headline {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.early-subhead {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 460px;
}

/* ------------------------------------------------------------------
   Early bird offer box
   ------------------------------------------------------------------ */
.early-offer-box {
    background: var(--brand);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 32px;
    max-width: 420px;
}

.early-offer-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.early-offer-text {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

/* ------------------------------------------------------------------
   Benefits list
   ------------------------------------------------------------------ */
.early-bullets {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.early-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.early-bullet-icon {
    color: var(--brand);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.early-social-proof {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* ------------------------------------------------------------------
   Right column — form card
   ------------------------------------------------------------------ */
.early-form-col {
    position: sticky;
    top: 32px;
}

.early-form-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 40px 36px;
    border-top: 4px solid var(--brand);
}

.early-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
    line-height: 1.25;
}

.early-form-sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 24px;
    line-height: 1.55;
}

.early-required {
    color: var(--brand);
}

.early-submit-btn {
    font-size: 16px;
    padding: 15px 20px;
    letter-spacing: 0.01em;
}

.early-form-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin: 8px 0 0;
    line-height: 1.5;
}

/* ------------------------------------------------------------------
   Success state
   ------------------------------------------------------------------ */
.early-success-state {
    text-align: center;
}

.early-success-icon {
    font-size: 52px;
    margin-bottom: 16px;
}

.early-success-note {
    background: var(--brand-pale);
    border: 1px solid #f5cdb0;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
    margin-top: 20px;
}

/* ------------------------------------------------------------------
   Trust signals
   ------------------------------------------------------------------ */
.early-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.early-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.early-trust-icon {
    font-size: 14px;
}

/* ------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------ */
@media (max-width: 860px) {
    .early-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .early-form-col {
        position: static;
    }

    .early-headline {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .early-headline {
        font-size: 26px;
    }

    .early-form-card {
        padding: 28px 20px;
    }

    .early-trust {
        gap: 12px;
    }
}