// Pitch — the rich hero copy lifted out of the header into its own section.
function Pitch({ accent = "orange", mediaImg }) {
  return (
    <section className="pitch">
      <div className="container">
        <div className="pitch-split">
          <div className="pitch-media" aria-hidden={!mediaImg}>
            {mediaImg && <img src={mediaImg} alt=""/>}
          </div>
          <div className="pitch-card">
            <div className="pitch-card-top">
              <h2>
                Asset Management That Moves Your Money Forward.
              </h2>
              <p className="pitch-card-sub">
                Your money shouldn&apos;t sit still. Build a portfolio that works, compounds, and stays ahead of inflation.
              </p>
            </div>
            <div className="pitch-card-actions">
              <button className="btn btn-primary"
                      onClick={() => window.dispatchEvent(new CustomEvent("open-get-started"))}>
                Get Started
              </button>
            </div>
          </div>
        </div>
      </div>
    </section>
  );
}
window.Pitch = Pitch;
