We are on a mission to weave artificial intelligence and spiritual intelligence into a tapestry that elevates humanity to its highest potential.
Explore Our VenturesTo bend the arc of AI’s ascent toward a world where humanity moves beyond survival into deeper creativity, connection, and meaning.
Read Our Vision
“This is about as formal as I get nowadays…”
Jeremy Gregg
Founder & President, Gregg Partners
There is nothing more obnoxious than someone writing their own bio in the third person — so here is what I would say about myself that you need to know.
I believe every second is sacred, and every pulse is a prayer.
I practice radical self-expression, self-acceptance, and non-judgment. I value the balance between sovereignty and synergy. I am devoted to illuminating the sacred within the sordid — and the profound within the profane.
And in this work, I now operate at the intersection of inner transformation & outer impact — integrating artificial intelligence with spiritual intelligence to support the builders of what comes next.
I am drawn to fellow seekers whose inner song harmonizes with my own — whose hearts beat in sync with Peter Drucker’s belief that “the best way to predict the future is to create it.”
I am grateful to walk alongside a handful of such luminaries — each embodying a rare convergence of talent, integrity, and clarity. Together, we are co-creating distinct entities woven into a shared ecosystem of soulful impact. They are partners whose presence alters the field itself.
Want to join us?
Contact me.
For more details, visit my
LinkedIn profile →






















// ── Active nav highlight ────────────────────────────────────── (function(){ var path = window.location.pathname.replace(/\/+$/, '') || '/'; var map = {'/': 'nav-home', '/vision': 'nav-vision', '/values': 'nav-values', '/ventures': 'nav-ventures', '/about': 'nav-about', '/contact': 'nav-contact'}; var id = map[path] || map[path.replace(/\/$/, '')]; if (id) { var el = document.getElementById(id); if (el) el.classList.add('active'); } })();
// ── HERO CROSSFADE ENGINE ───────────────────────────────────── var OV = 'linear-gradient(rgba(10,20,36,0.68), rgba(10,20,36,0.80))'; var slideIdx = {}; var slideTimer = {}; var activeLayer = {};
function setBg(el, url) { el.style.backgroundImage = OV + ', url("' + url + '")'; el.style.backgroundSize = 'cover'; el.style.backgroundPosition = 'center'; } function crossfade(pageId, url) { var cur = activeLayer[pageId], nxt = (cur === 'a') ? 'b' : 'a'; var curEl = document.getElementById('bg-' + pageId + '-' + cur); var nxtEl = document.getElementById('bg-' + pageId + '-' + nxt); if (!nxtEl) return; nxtEl.style.zIndex = '2'; nxtEl.style.transition = 'none'; nxtEl.style.opacity = '0'; setBg(nxtEl, url); if (curEl) curEl.style.zIndex = '1'; requestAnimationFrame(function() { requestAnimationFrame(function() { nxtEl.style.transition = 'opacity 2s ease-in-out'; nxtEl.style.opacity = '1'; }); }); activeLayer[pageId] = nxt; } function startSlideshow(pageId, imgs) { if (!imgs || !imgs.length) return; if (slideTimer[pageId]) clearInterval(slideTimer[pageId]); var seedEl = document.getElementById('bg-' + pageId + '-a'); if (seedEl) { setBg(seedEl, imgs[0]); seedEl.style.opacity = '1'; seedEl.style.zIndex = '1'; } slideIdx[pageId] = 0; activeLayer[pageId] = 'a'; slideTimer[pageId] = setInterval(function() { slideIdx[pageId] = (slideIdx[pageId] + 1) % imgs.length; crossfade(pageId, imgs[slideIdx[pageId]]); }, 7000); } function advanceSlide(pageId, dir, imgs) { if (slideTimer[pageId]) clearInterval(slideTimer[pageId]); slideIdx[pageId] = (slideIdx[pageId] + dir + imgs.length) % imgs.length; crossfade(pageId, imgs[slideIdx[pageId]]); slideTimer[pageId] = setInterval(function() { slideIdx[pageId] = (slideIdx[pageId] + 1) % imgs.length; crossfade(pageId, imgs[slideIdx[pageId]]); }, 7000); }
// ── CONTACT FORM ───────────────────────────────────────────── var gpForm = document.getElementById('gp-contact-form'); if (gpForm) { gpForm.addEventListener('submit', function(e) { e.preventDefault(); var btn = gpForm.querySelector('button[type=submit]'); btn.textContent = 'Sending...'; btn.disabled = true; var data = new FormData(); data.append('action', 'gp_contact'); data.append('nonce', (window.gpAjax || {}).nonce || ''); data.append('gp_name', gpForm.querySelector('[name=gp_name]').value); data.append('gp_email', gpForm.querySelector('[name=gp_email]').value); data.append('gp_type', gpForm.querySelector('[name=gp_type]').value); data.append('gp_msg', gpForm.querySelector('[name=gp_msg]').value); fetch((window.gpAjax || {}).url || '/wp-admin/admin-ajax.php', {method:'POST', body:data}) .then(function(r){return r.json();}) .then(function(res){ if (res.success) { gpForm.innerHTML = '
Thank you. We will be in touch.
'; } else { btn.textContent = 'Send →'; btn.disabled = false; alert(res.data && res.data.message ? res.data.message : 'Something went wrong. Please try again.'); } }).catch(function(){ btn.textContent = 'Send →'; btn.disabled = false; }); }); }