/* ============ FUND PAGE (simplified) ============ */

function Fund() {
  return (
    <div data-screen-label="07 Fund">
      <section className="sci-hero">
        <div className="eyebrow">The D1 Fund</div>
        <h1>Don't delay <em>motherhood</em>.</h1>
        <p>D1 members can apply for direct financial support toward specific donors. Genetic excellence shouldn't be gated by income.</p>
      </section>

      <section className="fund-simple">
        <ol className="fund-simple-steps">
          <li><span className="n">01</span><span>Become a member — it's free.</span></li>
          <li><span className="n">02</span><span>Shortlist the donor you want.</span></li>
          <li><span className="n">03</span><span>Apply. Hear back in 7 days.</span></li>
        </ol>

        <div className="fund-simple-cta">
          <button className="btn btn-primary btn-lg">Apply to the Fund</button>
          <button className="btn btn-outline btn-lg">Donate to the Fund</button>
          <span className="fund-simple-meta">Need-based · No credit checks · No strings</span>
        </div>
      </section>
    </div>);

}

window.Fund = Fund;