// Footer.jsx
function Footer() {
  return (
    <footer style={{
      background: 'var(--aq-deep)', padding: '72px 40px 48px',
      borderTop: '1px solid rgba(216,228,220,.14)',
    }}>
      <div style={{
        maxWidth: 1200, margin: '0 auto',
        display: 'grid', gridTemplateColumns: '1.4fr 1fr 1fr 1fr', gap: 48, alignItems: 'start',
      }}>
        <div>
          <div style={{
            fontFamily: 'var(--font-display)', fontWeight: 400, fontSize: 28,
            color: 'var(--aq-parchment)', letterSpacing: '-0.01em',
          }}>
            Accio<span style={{ fontFamily: 'var(--font-body)', fontWeight: 500, color: 'var(--aq-teal)' }}>IQ</span>
          </div>
          <div style={{
            fontFamily: 'var(--font-display)', fontStyle: 'italic', fontSize: 18,
            color: 'var(--aq-sage)', marginTop: 10, maxWidth: 28 + 'ch',
          }}>
            AI from the inside out — until the capability is yours.
          </div>
        </div>
        {[
          { h: 'Philosophy', links: ['Inside Out Method', 'Core beliefs', 'Honest limits'] },
          { h: 'Engagement', links: ['90-day engagement', 'Six elements of prompting', 'Learning labs'] },
          { h: 'Firm',       links: ['Team', 'Use cases', 'Request a consultation'] },
        ].map(col => (
          <div key={col.h}>
            <div className="aq-eyebrow" style={{ color: 'var(--aq-teal)', marginBottom: 16 }}>{col.h}</div>
            <ul style={{ listStyle: 'none', padding: 0, margin: 0, display: 'flex', flexDirection: 'column', gap: 10 }}>
              {col.links.map(l => (
                <li key={l}>
                  <a href="#" style={{
                    fontFamily: 'var(--font-body)', fontWeight: 300, fontSize: 14,
                    color: 'var(--aq-parchment)', textDecoration: 'none',
                  }}>{l}</a>
                </li>
              ))}
            </ul>
          </div>
        ))}
      </div>
      <div style={{
        maxWidth: 1200, margin: '72px auto 0',
        borderTop: '1px solid rgba(216,228,220,.14)', paddingTop: 24,
        display: 'flex', justifyContent: 'space-between', alignItems: 'center',
        fontFamily: 'var(--font-body)', fontSize: 11, letterSpacing: '0.22em',
        textTransform: 'uppercase', color: 'var(--aq-sage)',
      }}>
        <div>© 2026 AccioIQ · Confidential</div>
        <div style={{ display: 'flex', gap: 28 }}>
          <a href="#" style={{ color: 'var(--aq-sage)', textDecoration: 'none' }}>LinkedIn</a>
          <a href="#" style={{ color: 'var(--aq-sage)', textDecoration: 'none' }}>Privacy</a>
          <a href="mailto:hello@accioiq.com" style={{ color: 'var(--aq-sage)', textDecoration: 'none' }}>hello@accioiq.com</a>
        </div>
      </div>
    </footer>
  );
}
window.Footer = Footer;
