// Final CTA — waitlist
function FinalCTA({ ctaStyle = "ink" }) {
  const ctaClass = "snd-btn lg " + (ctaStyle === "fern" ? "fern" : "primary");
  return (
    <section className="cta-section" id="waitlist">
      <h2>The next email you send could be the one that&nbsp;<em>lands the role</em>.</h2>
      <p className="lede">Join the waitlist to get early access when Sendorai opens. We'll send one email, when it's ready.</p>
      <div className="actions">
        <a
          className={ctaClass}
          href={window.WAITLIST_URL}
          target="_blank"
          rel="noopener noreferrer"
          style={{ textDecoration: "none" }}
        >
          Join the waitlist <Icon.Arrow size={18}/>
        </a>
      </div>
      <div className="meta">Launching soon · No spam, just a launch note</div>
    </section>
  );
}
Object.assign(window, { FinalCTA });
