function Footer() {
  return (
    <footer className="footer">
      <div className="container">
        <div className="footer-grid">
          <div className="footer-brand">
            <img src="/assets/logo-wordmark.svg" alt="COHESION" height="24" />
            <p className="footer-tag">Governance tools audit AI. COHESION audits humans.</p>
          </div>
          <div className="footer-col">
            <div className="footer-eyebrow">Product</div>
            <a href="/enterprise/">Enterprise</a>
            <a href="/api/">Scoring API</a>
            <a href="/demo/">Live demo</a>
            <a href="/trust/">Trust &amp; security</a>
          </div>
          <div className="footer-col">
            <div className="footer-eyebrow">Research</div>
            <a href="/research/">Certification Spec v1.0</a>
            <a href="/research/#regulatory">Article 14 mapping</a>
            <a href="https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6571519">SSRN 6571519</a>
          </div>
          <div className="footer-col">
            <div className="footer-eyebrow">Company</div>
            <a href="/humanity/">Humanity</a>
            <a href="/privacy.html">Privacy</a>
            <a href="/terms.html">Terms</a>
            <a href="mailto:peyton@cohesionauth.com">peyton@cohesionauth.com</a>
          </div>
        </div>
        <div className="footer-base">
          <div>© 2026 COHESION AUTH LLC · Patent pending · Certification Spec v1.0</div>
          <div className="mono">USPTO #1414 · 31 claims · filed 13 Apr 2026</div>
        </div>
      </div>
    </footer>
  );
}
window.Footer = Footer;
