0
Skip to Content
Home
What We Do
Contact Us
Open Menu
Close Menu
Home
What We Do
Contact Us
Open Menu
Close Menu
Home
What We Do
Contact Us
Actionable Insights
At Your Fingertips
The right information, right now
document.addEventListener('DOMContentLoaded', () => { // Mobile nav (simple open/close showing links inline) const toggle = document.querySelector('.mobile-toggle'); const links = document.querySelector('.nav__links'); if (toggle && links) { toggle.addEventListener('click', () => { const open = links.style.display === 'flex'; links.style.display = open ? 'none' : 'flex'; toggle.setAttribute('aria-expanded', String(!open)); }); } // Copy code buttons document.querySelectorAll('[data-copy]').forEach(btn => { btn.addEventListener('click', () => { const target = document.querySelector(btn.getAttribute('data-copy')); if (!target) return; const text = target.innerText; navigator.clipboard.writeText(text).then(() => { const original = btn.textContent; btn.textContent = 'Copied'; setTimeout(() => btn.textContent = original, 1200); }); }); }); // Footer year const y = document.getElementById('year'); if (y) y.textContent = new Date().getFullYear(); });