Constitutional Institution · Sovereign Grade
← Institution

Risk Committee

The Risk Committee is responsible for overseeing the enterprise-wide risk management framework of EATG Global Capital. It ensures that risks are identified, measured, monitored, and controlled within the risk appetite established by the Board of Governors, and that a strong risk culture permeates the organization.

Enterprise Risk Management Framework

Three Lines of Defense

The Committee operates within a three-lines-of-defense model: business units own and manage risk (first line); the Risk Management function provides independent oversight and challenge (second line); and Internal Audit provides independent assurance (third line). The Committee oversees the effectiveness of all three lines.

First Line: Business unit risk owners
Second Line: Independent Risk Management
Third Line: Internal Audit assurance

Risk Taxonomy

The Enterprise maintains a comprehensive risk taxonomy covering six primary risk categories, each with defined sub-categories, metrics, and limits. The Committee reviews the taxonomy annually and approves any changes proposed by management.

Market Risk Credit Risk Liquidity Risk Operational Risk Strategic Risk Reputational Risk

Risk Governance Structure

Tier 1
Board of Governors
Ultimate Risk Oversight
Tier 2
Risk Committee
Risk Framework Oversight
Tier 3
Management Risk Committees
Operational Risk Management
Tier 4
Business Units
First Line Risk Ownership

Risk Appetite Statement & Limits

The Board-approved Risk Appetite Statement defines the types and quantum of risk the Enterprise is willing to accept in pursuit of its strategic objectives. The Committee monitors adherence to appetite limits and recommends adjustments as the risk environment evolves.

Market Risk VAR 95%
Current: 62%Limit: 85%
Credit Risk Exposure Ratio
Current: 74%Limit: 80%
Liquidity Risk LCR
Current: 45% above thresholdMin: 30%
Operational Risk RCSA Score
Current: 38%Limit: 65%

Committee Structure

C
Chair

Independent Board member with risk management expertise. Appointed by the Board of Governors.

M
Membership

Chief Risk Officer, Chief Investment Officer, CFO, General Counsel, and three independent Board members.

Q
Quorum

Majority of members including the Chair or designated alternate. At least one independent member required.

F
Frequency

Eight regular meetings per year. Special meetings may be called by the Chair or at Board request.

Monitoring, Stress Testing & Reporting

Historical

Stress Testing Program

Comprehensive stress testing program covering historical scenarios, hypothetical macroeconomic shocks, and reverse stress tests. Results inform capital planning, limit setting, and contingency planning.

Scenarios24
FrequencyQuarterly
Ongoing

Risk Limit Monitoring

Real-time monitoring of risk limits across all risk categories. Automated alerts at 75%, 90%, and 100% of limit utilization. Breaches escalated to the Committee within 24 hours.

Limits Tracked142
Breaches (YTD)0
Quarterly

Risk Reporting

Quarterly risk report to the full Board covering risk profile changes, limit utilization, emerging risks, stress test results, and control environment assessment. Monthly reporting to Management Committee.

Reports6 per annum
DistributionBoard & Mgmt

Horizon Scanning & Emerging Risk Assessment

Emerging Risk Categories

Geopolitical Risk
Climate Transition Risk
Cybersecurity Threat Evolution
AI & Technology Disruption
Regulatory Fragmentation
Market Structure Evolution

Committee Dashboard

92%
Risk Framework Maturity
24
Active Risk Indicators
0
Limit Breaches (YTD)
100%
Risk Training Complete
═══════ const railData = [ { sym: 'COMPLIANCE', status: 'ACTIVE' }, { sym: 'AML/CFT', status: 'OPERATIONAL' }, { sym: 'SANCTIONS', status: 'MONITORED' }, { sym: 'REGULATORY', status: 'COMPLIANT' }, { sym: 'TESTING', status: '100%' }, { sym: 'TRAINING', status: '100%' }, { sym: 'SARS', status: '142' }, { sym: 'ALERTS', status: '2,847' }, { sym: 'INTEGRITY', status: '99.99%' }, { sym: 'CCO', status: 'INDEPENDENT' }, ]; function buildRail() { const track = document.getElementById('railTrack'); if (!track) return; const render = () => railData.map(r => `
${r.sym}${r.status}
` ).join(''); track.innerHTML = render() + render(); } buildRail(); // ═══════════ LIVE DATA SIMULATION ═══════════ function updateDataValue(id, value) { const el = document.getElementById(id); if (!el) return; const old = el.textContent; if (old !== value) { el.textContent = value; el.classList.remove('flash-up', 'flash-down'); void el.offsetWidth; el.classList.add(Math.random() > 0.5 ? 'flash-up' : 'flash-down'); } } setInterval(() => { const alerts = 2840 + Math.floor(Math.random() * 20); updateDataValue('amlAlerts', alerts.toLocaleString()); const sars = 140 + Math.floor(Math.random() * 5); updateDataValue('sarsFiled', sars.toString()); const highRisk = 0; updateDataValue('highRisk', highRisk.toString()); const testing = 100; updateDataValue('testingCompletion', testing.toString() + '%'); }, 5000); // ═══════════ SMOOTH SCROLL ═══════════ document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { const target = document.querySelector(this.getAttribute('href')); if (target) { e.preventDefault(); target.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }); }); (function() { 'use strict'; const triggers = document.querySelectorAll('.sov-trigger'); const megas = document.querySelectorAll('.sov-mega'); const nav = document.getElementById('sovNav'); const mobileToggle = document.getElementById('mobileToggle'); const mobileDrawer = document.getElementById('mobileDrawer'); const mobileTriggers = document.querySelectorAll('.sov-mobile-trigger'); let activeMega = null; let closeTimeout = null; let isMobile = window.innerWidth <= 1024; function openMega(name) { if (isMobile) return; clearTimeout(closeTimeout); megas.forEach(m => m.classList.remove('is-visible')); triggers.forEach(t => t.classList.remove('is-open')); const mega = document.getElementById('mega-' + name); const trigger = document.querySelector('[data-mega="' + name + '"]'); if (mega && trigger) { mega.classList.add('is-visible'); trigger.classList.add('is-open'); trigger.querySelector('.sov-trigger-btn').setAttribute('aria-expanded', 'true'); activeMega = name; } } function closeAllMegas() { megas.forEach(m => m.classList.remove('is-visible')); triggers.forEach(t => { t.classList.remove('is-open'); t.querySelector('.sov-trigger-btn').setAttribute('aria-expanded', 'false'); }); activeMega = null; } function scheduleClose() { clearTimeout(closeTimeout); closeTimeout = setTimeout(closeAllMegas, 180); } triggers.forEach(trigger => { const name = trigger.getAttribute('data-mega'); trigger.addEventListener('mouseenter', () => { openMega(name); }); trigger.addEventListener('mouseleave', () => { scheduleClose(); }); }); megas.forEach(mega => { mega.addEventListener('mouseenter', () => { clearTimeout(closeTimeout); }); }); document.addEventListener('click', (e) => { if (!e.target.closest('.sov-trigger') && !e.target.closest('.sov-mega')) { closeAllMegas(); } }); document.addEventListener('keydown', (e) => { if (e.key === 'Escape') { closeAllMegas(); closeMobileDrawer(); } }); function openMobileDrawer() { mobileDrawer.classList.add('is-open'); mobileToggle.classList.add('is-open'); document.body.style.overflow = 'hidden'; } function closeMobileDrawer() { mobileDrawer.classList.remove('is-open'); mobileToggle.classList.remove('is-open'); document.body.style.overflow = ''; mobileTriggers.forEach(t => { t.classList.remove('is-open'); const links = t.nextElementSibling; if (links) links.classList.remove('is-open'); }); } mobileToggle.addEventListener('click', () => { if (mobileDrawer.classList.contains('is-open')) { closeMobileDrawer(); } else { openMobileDrawer(); } }); mobileTriggers.forEach(trigger => { trigger.addEventListener('click', () => { const isOpen = trigger.classList.contains('is-open'); mobileTriggers.forEach(t => { t.classList.remove('is-open'); const links = t.nextElementSibling; if (links) links.classList.remove('is-open'); }); if (!isOpen) { trigger.classList.add('is-open'); const links = trigger.nextElementSibling; if (links) links.classList.add('is-open'); } }); }); mobileDrawer.addEventListener('click', (e) => { if (e.target.classList.contains('sov-mobile-link')) { closeMobileDrawer(); } }); function checkResponsive() { const wasMobile = isMobile; isMobile = window.innerWidth <= 1024; if (wasMobile && !isMobile) { closeMobileDrawer(); } else if (!wasMobile && isMobile) { closeAllMegas(); } } let resizeTimer; window.addEventListener('resize', () => { clearTimeout(resizeTimer); resizeTimer = setTimeout(checkResponsive, 150); }); let lastScroll = 0; window.addEventListener('scroll', () => { const currentScroll = window.pageYOffset; if (currentScroll > 100) { nav.style.background = 'rgba(5, 7, 10, 0.95)'; } else { nav.style.background = 'rgba(5, 7, 10, 0.88)'; } lastScroll = currentScroll; }, { passive: true }); })();