// Footer

function Foot() {
  return (
    <footer className="foot">
      <div className="wrap">
        <div className="foot__top">
          <div className="foot__col">
            <div style={{ marginBottom: 14 }}>
              <Wordmark size={26} />
            </div>
            <p style={{ margin: 0, color: 'var(--fg-3)', fontSize: 13.5, lineHeight: 1.6, maxWidth: 36 + 'ch' }}>
              A new paradigm for cardiopulmonary bypass.<br />
              Engineered by NephraTech.
            </p>
          </div>
          <div className="foot__col">
            <h6>Product</h6>
            <a href="#device">Device</a>
            <a href="#mechanism">How it works</a>
            <a href="#evidence">Evidence</a>
            <a href="#contact">Request demo</a>
          </div>
          <div className="foot__col">
            <h6>Company</h6>
            <a href="#team">Our team</a>
            <a href="#">News & press</a>
            <a href="mailto:blakedenison@nephratech.com">Contact</a>
          </div>
          <div className="foot__col">
            <h6>Regulatory</h6>
            <a href="#">Indications & limitations</a>
            <a href="#">Quality system</a>
            <a href="#">Investor relations</a>
            <a href="privacy.html">Privacy</a>
          </div>
        </div>

        <div className="foot__bot">
          <span>© 2026 NEPHRATECH, INC.</span>
          <span>AUSTIN, TX </span>
          <span>BUILT BY CLINICIANS, FOR CLINICIANS</span>
        </div>

        <p className="foot__legal">
          CAUTION: Investigational device. Limited by federal (United States) law to
          investigational use. Not available for sale. The Nephros system is undergoing
          pre-clinical evaluation; performance figures cited reflect bench and animal study
          results and are not predictive of human clinical performance. Consult full
          regulatory disclosures before use.
        </p>
      </div>
    </footer>);

}

window.Foot = Foot;