// ContactV4.jsx — dedicated contact page. Routes, offices, and what to send.

function ContactV4() {
  return (
    <section className="contact4" data-screen-label="Contact">
      <div className="wrap">
        <header className="contact4-hd">
          <span className="sec-eyebrow">Contact</span>
          <h1>Share what you&rsquo;re building.</h1>
          <p>We back technical founders early, and we prefer to hear from you before the round is priced. A paragraph is enough to start.</p>
        </header>

        <div className="contact4-grid">
          <div className="contact4-routes">
            <article className="c4route c4route--solo reveal">
              <div className="c4route-body">
                <div className="c4route-k">Founders, press, and co-investors</div>
                <a className="c4route-e" href="mailto:info@axv.vc">info@axv.vc <span className="arr">&rarr;</span></a>
                <p className="c4route-s">One inbox. Send a short written summary or a deck. We read every note and respond to all of them, including the ones that aren&rsquo;t a fit.</p>
              </div>
            </article>
          </div>

          <aside className="contact4-side">
            <div className="c4block">
              <h4>What to include</h4>
              <ul className="c4list">
                <li>What you&rsquo;re building, in one paragraph</li>
                <li>Where the technical risk actually sits</li>
                <li>Team background, and why this team</li>
                <li>Stage, raise size, and timing</li>
              </ul>
            </div>
            <div className="c4block">
              <h4>Response time</h4>
              <p className="c4note">Within five business days. If we pass, we say why.</p>
            </div>
          </aside>
        </div>
      </div>
    </section>
  );
}
window.ContactV4 = ContactV4;
