// Wrap existing text in #metabolic with for animation document.addEventListener("DOMContentLoaded", function () { let textElement = document.getElementById("metabolic"); let text = textElement.innerText.trim(); // Get text content textElement.innerHTML = ""; // Clear existing text // Wrap each letter in a span with --i index text.split("").forEach((char, index) => { let span = document.createElement("span"); span.style.setProperty("--i", index + 1); span.textContent = char; textElement.appendChild(span); }); });
document.addEventListener("DOMContentLoaded", function () { let heroButton = document.getElementById("herobutton"); let popup = document.getElementById("popup"); let overlay = document.getElementById("popup-overlay"); if (heroButton) { heroButton.addEventListener("click", function () { popup.style.display = "flex"; popup.style.flexDirection = "column"; /* Keeps title on top */ overlay.style.display = "block"; }); } overlay.addEventListener("click", function () { popup.style.display = "none"; overlay.style.display = "none"; }); });

Precision health

Magnesium
vitamin K
Protein
Omega-3
Fiber / Omega 3 / Protein
Sulfer-Rich // Fiber
Fiber / magnesium
Protein / Fiber / Magnesium
Sulfer-Rich // Fiber
Sulfer-Rich // Fiber
Fiber / vitamin C
Vitamin C
Fiber / folate / potassium
omega-3 / protein / vitamin D
Fiber / vitamin C / probiotics

This expert-curated nutrition plan is designed to optimize metabolic health, gut function, and longevity with foods rich in protein, magnesium, fiber, omega-3s, and essential vitamins. Every nutrient supports energy, digestion, immunity, and overall strength. Fuel your body the right way and build a foundation for lifelong health.

Delivered To Your Home

$300

Single Person


Powered by

+
let lastScrollY = window.scrollY; let timeout; const navbar = document.querySelector(".navbar"); // Event listener for scroll behavior (show/hide navbar with smooth opacity transition) window.addEventListener("scroll", function () { clearTimeout(timeout); if (window.scrollY > lastScrollY) { navbar.style.top = "-50px"; // Hide navbar on scroll down navbar.style.opacity = "0"; // Fade out navbar } else { navbar.style.top = "0"; // Show navbar on scroll up navbar.style.opacity = "1"; // Fade in navbar } lastScrollY = window.scrollY; timeout = setTimeout(() => { navbar.style.top = "0"; // Reappear after scrolling stops navbar.style.opacity = "1"; // Ensure opacity is restored }, 300); // Delay for reappearance after scroll stops });

1 Person

$99.00


Family

$250

Delivered to your home

let lastScrollY = window.scrollY; let timeout; const navbar = document.querySelector(".navbar"); // Event listener for scroll behavior (show/hide navbar with smooth opacity transition) window.addEventListener("scroll", function () { clearTimeout(timeout); if (window.scrollY > lastScrollY) { navbar.style.top = "-50px"; // Hide navbar on scroll down navbar.style.opacity = "0"; // Fade out navbar } else { navbar.style.top = "0"; // Show navbar on scroll up navbar.style.opacity = "1"; // Fade in navbar } lastScrollY = window.scrollY; timeout = setTimeout(() => { navbar.style.top = "0"; // Reappear after scrolling stops navbar.style.opacity = "1"; // Ensure opacity is restored }, 300); // Delay for reappearance after scroll stops });
// Function to scroll to the #home section function goToHome() { document.querySelector("#home").scrollIntoView({ behavior: "smooth" }); }
let lastScrollY = window.scrollY; let timeout; const navbar = document.querySelector(".navbar"); const navLinks = document.querySelectorAll('.navbar a'); // Active link indicator function function setActiveLink() { navLinks.forEach(link => { link.classList.remove('active'); // Remove active class from all links }); const currentLink = document.querySelector(`.navbar a[href="${window.location.hash}"]`); if (currentLink) { currentLink.classList.add('active'); // Add active class to the clicked link } } // Event listener for scroll behavior (show/hide navbar) window.addEventListener("scroll", function () { clearTimeout(timeout); if (window.scrollY > lastScrollY) { navbar.style.top = "-50px"; // Hide navbar on scroll down } else { navbar.style.top = "0"; // Show navbar on scroll up } lastScrollY = window.scrollY; timeout = setTimeout(() => { navbar.style.top = "0"; // Reappear after scrolling stops }, 300); // Delay for reappearance after scroll stops }); // Event listener for when the page hash changes (clicking a link) window.addEventListener('hashchange', setActiveLink); // Initial check on page load setActiveLink();