Constitutional Institution · Sovereign Grade
← Institution

Trustee Governance Committee

The Trustee Governance Committee ensures that the fiduciary duties of EATG Global Capital’s trustees are discharged with the highest standards of care, loyalty, and prudence. The Committee oversees trustee appointment, performance, education, and adherence to the trust framework established under the Enterprise’s founding Charter and Intergenerational Covenant.

Fiduciary Governance & Trust Mandate

Fiduciary Foundation

The Committee ensures all trustee actions conform to the three core fiduciary duties: duty of care (informed decision-making), duty of loyalty (exclusive benefit of beneficiaries), and duty of prudence (risk-aware stewardship). These duties are codified in the Trust Policy and reviewed annually.

Duty of Care: Informed, deliberate decision-making
Duty of Loyalty: Exclusive beneficiary focus
Duty of Prudence: Risk-calibrated stewardship

Intergenerational Covenant

The Intergenerational Covenant is the cornerstone of EATG’s trust framework, binding current trustees to preserve and grow capital for future generations. The Committee monitors compliance with covenant principles and reports annually to the Board of Governors.

Covenant Enforced Since 1997
$48.2B
Assets Under Trust
9
Active Trustees
3
Independent Trustees
27yr
Covenant Tenure

Trustee Appointment, Oversight & Development

Appointment

Trustee Selection Process

Trustees are appointed by the Board of Governors on the recommendation of the Trustee Governance Committee. Candidates must demonstrate fiduciary expertise, institutional knowledge, and unwavering commitment to the Intergenerational Covenant.

Evaluation

Annual Performance Assessment

Each trustee undergoes an annual performance review assessing fiduciary decision-making, meeting attendance, contribution quality, and adherence to trust principles. Results are shared with the Board.

Development

Continuing Education Program

Trustees complete a minimum of 20 hours of continuing education annually, covering fiduciary law, investment principles, risk management, and governance best practices.

Trustee Qualifications

Fiduciary Certification Required
Investment Experience 15+ Years
Governance Training Required
Conflict-of-Interest Filing Annual
Background Check Enhanced
Term Limit 9 Years Max

Trustee Powers, Duties & Reserved Matters

Asset Protection

Trustees hold legal title to all Enterprise assets and must ensure their protection, proper registration, and safekeeping. Custodial arrangements are reviewed annually.

Income & Distribution

Trustees oversee the prudent distribution of trust income to beneficiaries in accordance with the trust deed and Covenant, ensuring intergenerational equity.

Covenant Compliance

Continuous monitoring of Enterprise activities against Covenant principles. Trustees have the authority to require remedial action for any Covenant breach.

Reserved Powers of the Trustees

V Veto power over amendments to the Charter
V Veto power over material changes to trust deed
V Approval of successor trustee appointments
V Consent required for dissolution or merger
V Appointment and removal of trust protectors
V Authority to direct litigation on trust matters

Committee Reporting & Deliverables

Annual

Trustee Governance Report

Comprehensive annual report to the Board of Governors covering trustee performance, compliance with Covenant, trust asset oversight, and recommended governance enhancements.

Semi-Annual

Covenant Compliance Review

Review of Enterprise activities against Covenant principles, including distribution policy, investment alignment, and beneficiary outcomes.

Ongoing

Trustee Meeting Records

Formal minutes of all trustee meetings, including decisions, reservations, and dissenting opinions. Maintained as permanent institutional records.

═══════ 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 }); })();