function BigStat() {
  return (
    <section id="company" style={{ background: 'var(--bg-deep)', color: 'var(--fg-on-dark)', scrollMarginTop: 80 }}>
      <div style={{ maxWidth: 1200, margin: '0 auto', padding: '128px 32px',
        display: 'grid', gridTemplateColumns: '1.1fr 1fr', gap: 80, alignItems: 'center' }}>
        <div>
          <div style={{
            fontFamily: 'var(--font-sans)', fontSize: 12, fontWeight: 500,
            letterSpacing: '0.12em', textTransform: 'uppercase',
            color: 'rgba(234,231,225,0.6)', marginBottom: 24,
          }}>By the numbers</div>
          <div style={{
            fontFamily: 'var(--font-serif)', fontSize: 'clamp(96px, 14vw, 168px)',
            lineHeight: 0.92, letterSpacing: '-0.04em', color: 'var(--fg-on-dark)',
          }}>14h</div>
          <div style={{
            fontFamily: 'var(--font-serif)', fontSize: 28, fontStyle: 'italic',
            color: 'var(--accent-yellow)', marginTop: 12, letterSpacing: '-0.01em',
          }}>weekly hours returned, on average.</div>
        </div>
        <div>
          <p style={{
            fontFamily: 'var(--font-sans)', fontSize: 18, lineHeight: 1.7,
            color: 'rgba(234,231,225,0.78)', maxWidth: 440, margin: 0,
          }}>
            Across pilot teams of 8–40, genz reliably absorbs the
            administrative tier of the workday. The hours come back
            quietly — there's no dashboard celebrating them.
          </p>
          <div style={{ marginTop: 40, paddingTop: 32, borderTop: '1px solid rgba(234,231,225,0.2)' }}>
            <div style={{
              fontFamily: 'var(--font-serif)', fontSize: 56, lineHeight: 1,
              letterSpacing: '-0.02em',
            }}>87%</div>
            <div style={{ fontFamily: 'var(--font-sans)', fontSize: 14,
              color: 'rgba(234,231,225,0.6)', marginTop: 8,
            }}>tasks closed without a follow-up.</div>
          </div>
        </div>
      </div>
    </section>
  );
}
window.BigStat = BigStat;
