function Footer() {
  return (
    <footer style={{ background: 'var(--bg)', borderTop: '1px solid var(--line)' }}>
      <div style={{ maxWidth: 1200, margin: '0 auto', padding: '48px 32px' }}>
        <div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', gap: 24, flexWrap: 'wrap' }}>
          <div style={{ fontFamily: 'var(--font-sans)', fontSize: 13, color: 'var(--fg-subtle)' }}>© usegenz, inc. 2026</div>
          <div style={{ display: 'flex', gap: 24, alignItems: 'center' }}>
            {['privacy', 'terms', 'soc 2'].map(i => (
              <a key={i} href="#" style={{ fontFamily: 'var(--font-sans)', fontSize: 13, color: 'var(--fg-subtle)', textDecoration: 'none' }}>{i}</a>
            ))}
            <a
              href="https://instagram.com/nataalfaa"
              target="_blank"
              rel="noopener noreferrer"
              aria-label="Instagram"
              style={{
                display: 'inline-flex', alignItems: 'center', justifyContent: 'center',
                width: 32, height: 32, borderRadius: 8,
                color: 'var(--fg-subtle)',
                transition: 'color 150ms ease, background 150ms ease',
              }}
              onMouseEnter={(e) => { e.currentTarget.style.color = 'var(--fg)'; e.currentTarget.style.background = 'color-mix(in oklab, var(--fg) 6%, transparent)'; }}
              onMouseLeave={(e) => { e.currentTarget.style.color = 'var(--fg-subtle)'; e.currentTarget.style.background = 'transparent'; }}
            >
              <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.75" strokeLinecap="round" strokeLinejoin="round" aria-hidden="true">
                <rect x="3" y="3" width="18" height="18" rx="5"></rect>
                <circle cx="12" cy="12" r="4"></circle>
                <circle cx="17.5" cy="6.5" r="0.6" fill="currentColor" stroke="none"></circle>
              </svg>
            </a>
          </div>
        </div>
      </div>
    </footer>
  );
}
window.Footer = Footer;
