Constitutional Institution · Sovereign Grade
← Institution

Business Lines — EATG Global Capital

A diversified portfolio of institutional financial services built on sovereign-grade compliance, intergenerational stewardship, and constitutional governance.

Intergenerational Capital Management

Stewardship

Sovereign Asset Allocation

Strategic asset allocation governed by the Intergenerational Covenant. Capital is deployed across diversified asset classes with a permanent capital horizon and strict risk limits.

Assets Under Stewardship Confidential
Protected

Capital Preservation Mandate

The primary investment objective is preservation of real capital across generations. Growth is pursued only within risk parameters that ensure capital safety.

Drawdown Limit <15% Peak-to-Trough
Strategic

Direct Investment Program

Direct investments in operating businesses, real assets, and strategic partnerships that align with the enterprise long-term mission and intergenerational objectives.

Min. Holding Period 10+ Years

Institutional-Grade Asset Servicing

Custody

Multi-Jurisdiction Custody

Assets held across regulated custodian networks in multiple jurisdictions, providing jurisdictional diversification and reducing concentration risk.

Reporting

Unified Reporting & Analytics

Consolidated position reporting, performance attribution, and risk analytics across all custodial relationships delivered through a secure institutional portal.

Governance

Independent Valuation

All assets are independently valued by third-party valuation agents on a periodic basis. Valuation methodologies are reviewed by the Audit Committee annually.

Enterprise Treasury Operations

Liquidity

Liquidity & Cash Management

Daily cash positioning, short-term liquidity deployment, and counterparty management across multiple currencies and jurisdictions. Treasury operates under a conservative mandate prioritizing capital preservation.

Risk

Foreign Exchange & Rate Risk

Active management of currency and interest rate exposures through approved hedging instruments. All treasury derivatives are centrally booked and independently risk-assessed.

Banking

Banking & Payment Infrastructure

Multi-bank payment and settlement infrastructure with automated reconciliation. Banking relationships are subject to annual due diligence and credit review.

Capital

Capital Structure Management

Ongoing management of the enterprise capital structure, including internal financing, capital calls, and distribution planning in accordance with constitutional guidelines.

Institutional Private Capital Markets

Origination

Primary Issuance & Origination

Sourcing and structuring private placement opportunities across debt, equity, and hybrid instruments. Each transaction undergoes independent credit and legal review.

Structuring

Structured Transactions

Complex transaction structuring including SPVs, co-investment vehicles, and bespoke capital solutions for institutional counterparties.

Advisory

Secondary Market Advisory

Advisory services for private placement secondary transactions, portfolio rebalancing, and liquidity solutions for institutional holders.

Strategic Institutional Advisory

Strategic

Enterprise & Governance Advisory

Advising family offices, foundations, and institutions on enterprise governance design, constitutional framework development, and intergenerational wealth structuring.

Risk

Risk & Compliance Advisory

Design and implementation of enterprise risk management frameworks, compliance programs, and AML/CFT infrastructure for institutional clients.

M&A

Transaction Advisory

M&A advisory, due diligence, valuation, and negotiation support for institutional clients pursuing strategic acquisitions, divestitures, or partnerships.

Restructuring

Restructuring & Resolution

Advisory services for enterprise restructuring, balance sheet optimization, and resolution planning with constitutional and governance integrity.

Institutional Digital Asset Services

Infrastructure

Digital Asset Custody

Institutional-grade custody for digital assets with multi-signature security, cold storage, and independent audit trails. Governance-compliant access controls.

Tokenization

Asset Tokenization

Tokenization of real-world assets using compliant digital instrument frameworks. Smart contract governance aligned with enterprise constitutional principles.

Innovation

Digital Asset Strategies

Strategic allocation to digital assets within constitutional risk parameters. Direct investment, fund vehicles, and bespoke structured exposure for institutional portfolios.

All digital asset activities operate under the same constitutional governance, compliance, and risk frameworks as every other business line of EATG Global Capital.

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