// CtaPanel.jsx — cream "Try Mira today" panel
function CtaPanel() {
  return (
    <section className="cta-panel" data-screen-label="06 Try Mira CTA">
      <div>
        <p className="cta-panel__eye">Autoscience —</p>
        <h2 className="cta-panel__title">
          Build your machine learning model <em>at machine speed</em>.
        </h2>
        <p className="cta-panel__body">
          Mira drops into your stack, reads your codebase, and starts shipping verified improvements within a week. Pilot with our research team alongside.
        </p>
        <div className="cta-panel__ctas">
          <a className="btn btn--dark" href="/get-started">
            Get started <span className="arr">→</span>
          </a>
          <a className="btn btn--lightghost" href="/mira">
            Learn more
          </a>
        </div>
      </div>
      <div className="cta-panel__eclipse" aria-hidden="true">
        <div className="eclipse__big" />
        <div className="eclipse__small" />
      </div>
    </section>);

}
window.CtaPanel = CtaPanel;