// ReceptionRecord — authoritative platform reception-stats block.
//
// SOURCE OF TRUTH: Amos Project vault _index/reception/PLATFORM-STATS-CURRENT.md
// (machine-readable: _index/reception/platform-stats.json). Current as of 2026-06-16.
// Regenerable from citations.json after any ledger change.
//
// Two tiers are kept DELIBERATELY DISTINCT and must never be merged:
//   • translation-level VERIFIED share (18.5%)
//   • original-language-confirmed (344) — the father's own Greek/Latin verbatim.
// The OT is a LIVE PILOT (Isaiah), not complete; NT study counts are ai-draft
// pending scholar sign-off. Both caveats are surfaced in the footer.
window.ReceptionRecord = function ReceptionRecord({ variant }) {
  const Stat = (n, l) => React.createElement('div', { className: 'rr-stat' },
    React.createElement('div', { className: 'rr-n' }, n),
    React.createElement('div', { className: 'rr-l' }, l)
  );
  return React.createElement('section', { className: 'reception-record' + (variant ? ' ' + variant : '') },
    React.createElement('div', { className: 'rr-eyebrow' },
      React.createElement('span', null, 'Reception Record'),
      React.createElement('span', { className: 'rr-asof' }, 'New Testament')
    ),

    // Tier 1 — translation-level
    React.createElement('div', { className: 'rr-row' },
      Stat('5,691', 'Ledger citations'),
      Stat('916', 'NT pericope studies'),
      Stat('18.5%', 'Verified · translation level')
    ),

    // Tier 2 — the differentiator, its own callout (NOT blended into the row above)
    React.createElement('div', { className: 'rr-callout' },
      React.createElement('div', { className: 'rr-callout-badge' }, '★ Original-language tier'),
      React.createElement('div', { className: 'rr-callout-body' },
        React.createElement('div', { className: 'rr-callout-lead' },
          React.createElement('strong', null, '344'),
          ' citations independently confirmed in the father’s own Greek or Latin'
        ),
        React.createElement('div', { className: 'rr-callout-sub' },
          '323 Greek · 21 Latin — verbatim, machine-verified and independently audited.'
        )
      )
    ),

    // Footer — ai-draft honesty (the campaign-status line was internal talk)
    React.createElement('div', { className: 'rr-foot' },
      React.createElement('span', { className: 'rr-note' }, 'Study counts are AI drafts, pending scholar sign-off.')
    )
  );
};
