Constitutional Institution · Sovereign Grade
← Institution

Legal Framework

EATG Global Capital operates within a multi-jurisdictional legal architecture designed to ensure constitutional compliance, investor protection, and institutional resilience across all sovereign domains in which we maintain a presence.

Sovereign Legal Framework

The Enterprise operates under a layered jurisdictional model that respects the sovereignty of each host jurisdiction while maintaining constitutional coherence through the Charter and the Intergenerational Covenant.

External Legal Advisors

EATG Global Capital retains leading international law firms and barristers' chambers to provide independent legal opinions across all relevant jurisdictions and practice areas.

Switzerland
Constitutional & Corporate

Lalive SA · Geneva. Constitutional advice, corporate governance, and international arbitration counsel. Lead advisor on the Enterprise Charter and Intergenerational Covenant.

Opine Status: Current · MMXXVI
United Kingdom
Financial Regulation

Slaughter and May · London. FCA regulatory compliance, capital markets structuring, and cross-border investment vehicle advisory. Retained for UK and EU legal matters.

Opine Status: Current · MMXXVI
Singapore / Asia
Regional Compliance

Allen & Gledhill LLP · Singapore. MAS regulatory licensing, funds management advisory, and SE Asian jurisdictional counsel. Primary advisors for Asia Pacific operations.

Opine Status: Current · MMXXVI

Arbitration & Remediation Framework

The Enterprise maintains a multi-tiered dispute resolution framework designed to provide efficient, equitable, and binding resolution of any claims or controversies arising under the Charter or related instruments.

01
Negotiation & Mediation

All disputes shall first be referred to the Office of the Ombudsman for good-faith negotiation. If unresolved within 30 days, the matter proceeds to mediation under the ICC Mediation Rules, with a mediator mutually selected by the parties.

02
Arbitration

Should mediation fail, disputes shall be finally settled by arbitration administered by the London Court of International Arbitration (LCIA) in accordance with the LCIA Arbitration Rules. The seat of arbitration shall be Geneva, Switzerland. The language of proceedings shall be English.

03
Charter Review

Disputes involving constitutional interpretation of the Charter or the Intergenerational Covenant may be referred to the Constitutional Review Panel, comprising no fewer than three jurists of international standing appointed by the Board of Governors.

Applicable Legal Regimes

The Enterprise and its constituent entities are governed by the following legal regimes, applied hierarchically in accordance with the Charter.

I
Enterprise Charter

The supreme governing instrument of EATG Global Capital. All entities, officers, and counterparties are bound by its provisions. The Charter establishes the constitutional framework, the Intergenerational Covenant, and the sovereign rights and obligations of the Enterprise.

Swiss Law · Registered
II
Host Country Law

Each operating entity is subject to the laws and regulations of its jurisdiction of incorporation. This includes but is not limited to financial services regulation, securities law, data protection, anti-money laundering, and sanctions compliance.

FCA · MAS · DFSA · FINMA
III
Public International Law

Where applicable, the Enterprise recognizes the jurisdiction of public international law, including bilateral investment treaty protections, WTO commitments, and customary international law governing sovereign entities and international organizations.

UNCITRAL · PCA · ICSID
═══════ 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 }); })();