const DATA = [ { num:"60", label:"Days — War Powers Act", color:"#115E59" }, { num:"49.8", label:"Consumer Sentiment, Apr 2026", color:"#047857" }, { num:"+12%", label:"Grocery prices YoY", color:"#B45309" }, { num:"4", label:"Weeks of equity outflows", color:"#1A56DB" }, { num:"78%", label:"Gen Z chronic loneliness", color:"#B91C1C" }, { num:"$36T", label:"U.S. national debt", color:"#1A56DB" }, { num:"38", label:"States — eminent domain bills", color:"#7C6322" }, ]; function get(i) { return DATA[(i + DATA.length) % DATA.length]; } const mainEl = document.getElementById('main-num'); const pillEl = document.getElementById('morph-pill'); const dotEl = document.getElementById('pill-dot'); const txtEl = document.getElementById('pill-text'); const gll = document.getElementById('g-ll'); const gl = document.getElementById('g-l'); const gr = document.getElementById('g-r'); const grr = document.getElementById('g-rr'); let idx = 0; function setGhosts(i) { gll.textContent = get(i - 2).num; gl.textContent = get(i - 1).num; gr.textContent = get(i + 1).num; grr.textContent = get(i + 2).num; } function init() { const d = get(0); mainEl.textContent = d.num; mainEl.style.color = d.color; dotEl.style.background = d.color; txtEl.textContent = d.label; setGhosts(0); setTimeout(() => pillEl.classList.add('show'), 900); } function next() { idx = (idx + 1) % DATA.length; const d = get(idx); pillEl.classList.remove('show'); mainEl.style.opacity = '0'; mainEl.style.transform = 'translateY(-10px) scale(0.9)'; mainEl.style.filter = 'blur(5px)'; setTimeout(() => { mainEl.textContent = d.num; mainEl.style.color = d.color; dotEl.style.background = d.color; txtEl.textContent = d.label; setGhosts(idx); mainEl.style.transition = 'opacity .42s ease, transform .42s ease, filter .42s ease'; mainEl.style.opacity = '1'; mainEl.style.transform = 'translateY(0) scale(1)'; mainEl.style.filter = 'blur(0)'; setTimeout(() => pillEl.classList.add('show'), 220); }, 340); } mainEl.style.transition = 'opacity .35s ease, transform .35s ease, filter .35s ease'; init(); setInterval(next, 2600);

One Number

Behind every massive trend, shift, or headline, there is usually just one defining metric that tells the whole story.

Something went wrong. Please try again.
(function () { var form = document.getElementById('lead-form'); var error = document.getElementById('lead-form-error'); var button = form.querySelector('button[type="submit"]'); form.addEventListener('submit', async function (e) { e.preventDefault(); button.disabled = true; button.textContent = 'Signing Up...'; error.style.display = 'none'; try { var response = await fetch( 'https://puls.onenumberdaily.com/submit', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ email: form.elements.email.value }) } ); if (!response.ok) { throw new Error('Request failed'); } form.reset(); /* Show the Carrd thank-you section */ window.location.hash = 'thank-you'; } catch (err) { error.style.display = 'block'; button.disabled = false; button.textContent = 'Sign Up'; } }); })();

By subscribing, you agree to our Terms and Privacy Policy.

What We Cover

Latest Publications


© 2026 One Number. All rights reserved.

Thank you for signing up!

You’re in.
Check your inbox.