🧠
Aria
Enter your access PIN to continue.
This session is private and encrypted.
Powered by Axiom Stream Group
🧠
Aria v1.2
Tax & Accounting · Axiom Stream Group
Live
72:00:00 remaining
Usage
Aria is a research tool. All output should be reviewed by a qualified professional before client delivery.
🔒 Private session — your URL is unique to you · ASG cannot read or store your conversations · We will never use your sessions to train AI models
// ── Rex CRM Integration ────────────────────────────────────────────────── (function() { if (!location.hostname.startsWith('rex')) return document.body.classList.add('rex-active') var slug = location.pathname.replace('/', '').split('?')[0] function loadCRMData() { fetch('/api/rex-crm?slug=' + slug) .then(function(r) { return r.json() }) .then(function(data) { if (!data.connected) return // Always show as connected var nc = document.getElementById('crmNotConnected') var cc = document.getElementById('crmConnected') var badge = document.getElementById('crmProviderBadge') if (nc) nc.style.display = 'none' if (cc) cc.style.display = 'block' if (badge) badge.style.display = 'inline' // Stats var dc = document.getElementById('crmDealCount') var tv = document.getElementById('crmTotalValue') var sc = document.getElementById('crmSilentCount') if (dc) dc.textContent = data.dealCount || '0' if (tv) tv.textContent = data.totalValue ? '$' + Math.round(data.totalValue).toLocaleString() : '$0' if (sc) { sc.textContent = data.silentCount || '0' if (!data.silentCount) sc.classList.remove('alert') } // Deal list from structured data var dealSection = document.getElementById('crmDealList') if (dealSection && data.deals && data.deals.length > 0) { dealSection.innerHTML = data.deals.map(function(deal) { var isSilent = deal.daysSinceActivity > 14 var amount = deal.amount ? '$' + Math.round(deal.amount).toLocaleString() : '' return '
' + '
' + deal.name + (isSilent ? ' ⚠ ' + deal.daysSinceActivity + 'd silent' : '') + '
' + '
' + deal.stage + '' + (amount ? '' + amount + '' : '') + '
' + '
' }).join('') // Click to ask about deal document.querySelectorAll('.crm-deal[data-name]').forEach(function(el) { el.addEventListener('click', function() { var name = el.getAttribute('data-name') var input = document.getElementById('input') if (input) { input.value = 'What do we know about the ' + name + ' deal and what should my next move be?' input.dispatchEvent(new Event('input')) input.focus() } }) }) } else if (dealSection) { dealSection.innerHTML = '
No open deals found.
' } }) .catch(function(e) { console.warn('CRM load failed', e) }) } // Load after unlock document.addEventListener('rex-unlocked', loadCRMData) window._loadRexCRM = loadCRMData })()