function CTA({ theme }) { const [email, setEmail] = React.useState(''); const [sent, setSent] = React.useState(false); return (
Reveal · Miami · 07.24.26

Become the
first to know.

Reserve your place in the first cohort of LifeCoPilot users. No spam. Just a single email on reveal day.

{!sent ? (
{ e.preventDefault(); if (email) setSent(true); }}> setEmail(e.target.value)} required />
) : (
✓ Your seat is reserved. See you in Miami.
)}
); } window.CTA = CTA;