novos_labs
NOVOS Core Clinical
In stock · Sold by Athletonic
About this product
(function() {
const buttonText = “Proceed to Checkout”;
const processingText = “Processing”;
const paramName = “multiple-add-to-cart”;
function init() {
const buttons = document.querySelectorAll(
‘form.cart .single_add_to_cart_button, ‘ +
‘.product-single-wrap.single-product form.cart .product-addtocart .wp-block-button__link, ‘ +
‘.product-single-wrap.single-product form.cart .product-addtocart .novariation’
);
buttons.forEach(function(button) {
const textNode = Array.from(button.childNodes).find(node => node.nodeType === Node.TEXT_NODE);
if (textNode) {
textNode.textContent = buttonText;
} else {
button.textContent = buttonText;
}
const newButton = button.cloneNode(true);
button.parentNode.replaceChild(newButton, button);
newButton.addEventListener(‘click’, function(e) {
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();
const form = newButton.closest(‘form.cart’);
let productId = 0;
const variationField = form ? form.querySelector(‘input[name=”variation_id”]’) : null;
if (variationField) {
productId = parseInt(variationField.value, 10) || 0;
}
if (!productId) {
const productField = form ? form.querySelector(‘input[name=”product_id”]’) : null;
const addToCartField = form ? form.querySelector(‘[name=”add-to-cart”]’) : null;
productId = parseInt(
(productField && productField.value) ||
(addToCartField && addToCartField.value) ||
(newButton.dataset && newButton.dataset.product_id) ||
‘0’,
10
);
}
if (variationField && !productId) {
alert(‘Please select product options’);
return false;
}
if (!productId) {
return false;
}
newButton.disabled = true;
newButton.classList.add(‘processing’);
const processTextNode = Array.from(newButton.childNodes).find(node => node.nodeType === Node.TEXT_NODE);
if (processTextNode) {
processTextNode.textContent = processingText;
} else {
newButton.textContent = processingText;
}
const ids = [productId];
const upsellCheckbox = document.querySelector(‘input.novos-upsell-checkbox:checked’);
if (upsellCheckbox && upsellCheckbox.value) {
try {
const parsed = JSON.parse(upsellCheckbox.value);
const upsellId = parseInt(parsed.upsell_id, 10);
if (upsellId > 0) {
ids.push(upsellId);
}
} catch (e) {}
}
const url = new URL(window.location.href);
url.searchParams.set(paramName, ids.join(‘,’));
url.searchParams.set(‘redirect_to’, ‘checkout’);
window.location.href = url.toString();
return false;
}, true);
});
}
if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, init);
} else {
init();
}
})();
#product-247857 { overflow: visible !important }
.sticky-cart-button-wrap .content-wrap figure {
width: 70px !important;
}
.sticky-cart-button-wrap { padding-top: 5px !important; padding-bottom: 5px; }
.novos-bulletin, header.site-header {
display: none !important;
}
body {
padding-top: 0px !important;
}
.section-mini-slider {
color: #1F1B18 !important;
}
.section-atf-right {
min-width: 450px;
}
@media (max-width: 992px) {
.novos-core-container-rel {
flex-wrap: wrap !important;
}
.novos-product-left { padding: 0px !important; }
.section-atf-left, .section-atf-right { flex-basis: 100% !important; min-width:1px !important; width:100% !important; }
}
.is-style-pdp-cart, .is-style-pdp-cart p, .is-style-pdp-cart ul, form.cart, .product-selector-1 {
font-family: ‘Inter Tight’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Arial, sans-serif !important;
color: #1F1B18 !important;
}
.whats-happening-2 .splide__slide {height: auto !important;}
.section-targets-12-aging {
margin-bottom: 30px;
}
.section-targets-12-aging img {
width: auto !important;
max-width: 100%;
max-height: 100% !important;
}
.section-targets-12-aging .wp-block-buttons {
display: none !important;
}
.section-what-youll-feel-like .inner-slide .content-wrapper { padding-top: 30px; padding-bottom: 30px; }
/* Show on mobile, hide on desktop */
.novos-mobile-only {
display: block;
}
@media (min-width: 768px) {
.novos-mobile-only {
display: none !important;
}
}
/* Hide on mobile, show on desktop */
.novos-desktop-only {
display: none;
}
@media (min-width: 768px) {
.novos-desktop-only {
display: block;
}
}
body .accordion-wrap .single-accordion .accordion-label {
padding: 7px 30px 5px 0px;
}
body.single-product .after-add-to-cart-container .truemed-instructions .truemed-entry-text-bold,
body.single-product .after-add-to-cart-container .truemed-instructions .truemed-entry-text,
body.single-product .after-add-to-cart-container .truemed-entry-link {
color: #1F1B18 !important;
}
form.cart .product-option-wrap .single-purchase-option {
border: 1px solid #1F1B18 !important;
}
form.cart .product-option-wrap .attribute-select-wrap .flavor-select-box {
border: 1px solid #1F1B18 !important;
}
form.cart .product-option-wrap .single-purchase-option label .single-purchase-option-inside .pricing .per-label {
font-weight: bold;
}
form.cart .product-option-wrap .single-purchase-option label .single-purchase-option-inside .pricing .price-wrap {
display: none;
}
form.cart .product-option-wrap .single-purchase-option label .radio .checkmark {
height: 16px !important;
width: 16px !important;
}
body .accordion-wrap .single-accordion {
border-top: none !important;
border-bottom: none !important;
}
body.single-product .add-to-cart .cards-icon-container .single_add_to_cart_button {
color: #fff !important;
}
h2.section-the-first-heading {
font-size: 32px !important;
line-height: 1.4 !important;
}
.section-targets-12-aging {
margin-top: 40px;
}
.section-targets-12-aging h2,
.section-targets-12-aging h3 {
font-weight: 400 !important;
font-style: normal !important;
line-height: 1.1;
margin: 0 0 30px 0 !important;
padding: 0 !important;
text-transform: none !important;
letter-spacing: -0.02em !important;
background: none !important;
color: #222222 !important;
-webkit-text-fill-color: #222222 !important;
}
.section-targets-12-aging h2 {
font-family: ‘Source Serif Pro’, Georgia, serif !important;
font-size: 32px !important;
}
.section-targets-12-aging h3 {
font-family: ‘Inter Tight’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Arial, sans-serif !important;
font-size: 20px !important;
color: #f25a1c !important;
}
.section-targets-12-aging p {
font-family: ‘Inter Tight’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Arial, sans-serif !important;
color: #222222 !important;
}
.lp-primary-title {
font-family: ‘Source Serif Pro’, ‘Source Serif 4’, Georgia, ‘Times New Roman’, Times, serif !important;
font-weight: 600 !important;
font-style: normal !important;
font-size: clamp(32px, 5vw, 48px) !important;
line-height: 1.3 !important;
color: #222222 !important;
-webkit-text-fill-color: #222222 !important;
background: none !important;
margin: 0 0 30px 0 !important;
padding: 0 0 var(–title-padding-bottom, 30px) 0 !important;
border-bottom: var(–title-border-bottom, 1px solid #e0e0e0) !important;
text-transform: none !important;
letter-spacing: -0.01em !important;
}
@media (max-width: 782px) {
.lp-primary-title {
text-align: center !important;
}
.lp-desktop-disclaimer {
display: none !important;
}
}
.lp-logos-section {
border-top: 1px solid #e0e0e0 !important;
padding-top: 30px !important;
margin-top: auto !important;
margin-bottom: 30px !important;
}
.lp-logos-grid {
display: grid !important;
grid-template-columns: 0.4fr 1fr !important;
gap: 40px !important;
}
.lp-logos-column {
min-width: 0 !important;
}
.lp-logos-heading {
font-family: ‘Inter Tight’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Arial, sans-serif !important;
font-size: 13px !important;
font-weight: 600 !important;
color: #1a1a1a !important;
margin: 0 0 20px 0 !important;
padding: 0 !important;
}
.lp-member-logos,
.lp-available-logos {
display: var(–logos-display, flex) !important;
flex-wrap: var(–logos-wrap, wrap) !important;
gap: var(–logos-gap, 20px) !important;
align-items: center !important;
}
.lp-logo-img {
height: 70px !important;
width: auto !important;
object-fit: contain !important;
display: block !important;
}
.lp-desktop-disclaimer {
font-family: ‘Inter Tight’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Arial, sans-serif !important;
font-size: 10px !important;
color: #999 !important;
margin: 20px 0 0 0 !important;
padding: 0 !important;
line-height: 1.4 !important;
}
.lp-reviews-section {
margin-bottom: 30px !important;
}
.lp-reviews-layout {
display: flex !important;
align-items: flex-start !important;
justify-content: space-between !important;
gap: 20px !important;
}
.lp-reviews-summary {
flex: 1 !important;
min-width: 200px !important;
}
.lp-reviews-stars {
display: flex !important;
align-items: center !important;
gap: 12px !important;
margin-bottom: 8px !important;
flex-wrap: wrap !important;
}
.lp-stars-icon {
color: #f4b400 !important;
font-family: ‘Inter Tight’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Arial, sans-serif !important;
font-size: 20px !important;
line-height: 1 !important;
letter-spacing: 1px !important;
}
.lp-reviews-count {
font-family: ‘Inter Tight’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Arial, sans-serif !important;
font-weight: 700 !important;
font-size: 16px !important;
color: #1a1a1a !important;
display: inline-block !important;
}
.lp-reviews-text {
font-family: ‘Inter Tight’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Arial, sans-serif !important;
font-size: 14px !important;
color: #666 !important;
margin: 0 !important;
padding: 0 !important;
font-weight: bold;
}
.lp-patent-badge {
flex: 0 0 auto !important;
align-self: center !important;
max-width: 160px;
}
.lp-patent-img {
display: block !important;
width: 100% !important;
height: auto !important;
max-width: 220px !important;
}
@media (max-width: 782px) {
.lp-reviews-count {
font-size: 13px !important;
}
.lp-logos-grid {
grid-template-columns: 1fr 0.45fr !important;
}
.lp-logos-column:first-child {
order: 2 !important;
}
.lp-logos-column:last-child {
order: 1 !important;
}
.lp-member-logos,
.lp-available-logos {
gap: var(–logos-gap, 5px) !important;
}
}
.mobile-award-label:before, .mobile-award-label:after {
background: url(‘https://novoslabs.com/wp-content/uploads/2026/02/roman-things-right.png’) no-repeat;
width: 14px;
height: 24px;
content: “”;
}
.mobile-award-label:before {
transform: scaleX(-1);
}
First-Of-Its-Kind Clinically Studied Longevity Solution
-
•
NOVOS Core Clinical demonstrated statistically significant support for biological systems predictive of lifespan and healthspan* -
•
Developed with scientists & MDs from Harvard Medical School & MIT -
•
Now available at the Mayo Clinic Store & recommended by 1,500+ MDs and clinicians -
•
Backed by 7+ years of R&D
3000+ REVIEWS
Over 10 million doses served
Member of:
Available at:
Mayo Clinic, Mayo Clinic Store, Erewhon, Equinox, The Four Seasons, and Sunlife Organics are trademarks of their respective owners.
*Claims are based on randomized, placebo-controlled human clinical research on the finished NOVOS Core Clinical formulation, along with mechanistic and preclinical studies. In vitro and animal studies are not indicative of impact on humans.
These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Mayo Clinic, Mayo Clinic Store, Erewhon, Equinox, The Four Seasons, and Sunlife Organics are trademarks of their respective owners.
*Claims are based on randomized, placebo-controlled human clinical research on the finished NOVOS Core Clinical formulation, along with mechanistic and preclinical studies. In vitro and animal studies are not indicative of impact on humans.
These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Chris, Founder of NOVOS, explains the effect sizes and significance of the NOVOS Core Clinical placebo-controlled clinical study.
NOVOS Core Clinical
Read the Science
Chris, Founder of NOVOS, explains the effect sizes and significance of the NOVOS Core Clinical placebo-controlled clinical study.
NOVOS Core Clinical
See the Science
@import url(‘https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&family=Source+Serif+4:wght@400;600;700&display=swap’);
/* Desktop: Show right content, hide mobile elements */
@media (min-width: 769px) {
.right-content {
display: block !important;
}
.mobile-product-image,
.mobile-disclaimer,
.mobile-video {
display: none !important;
}
}
/* Mobile: Stack layout */
@media (max-width: 768px) {
.content-wrapper {
flex-direction: column !important;
}
.right-content {
display: none !important;
}
.mobile-product-image,
.mobile-disclaimer,
.mobile-video {
display: block !important;
}
/* Hide desktop disclaimer on mobile */
.desktop-disclaimer {
display: none !important;
}
.left-content {
width: 100% !important;
max-width: 100% !important;
flex: none !important;
}
.mobile-product-image {
–mobile-product-image-bg: transparent;
–mobile-product-image-padding: 0;
}
.left-content h2 {
font-size: clamp(28px, 7vw, 34px) !important;
line-height: 1.2 !important;
margin-bottom: 20px !important;
–title-padding-bottom: 0px;
–title-border-bottom: none;
}
.reviews-layout {
flex-direction: column !important;
align-items: center !important;
gap: 15px !important;
}
.reviews-summary {
text-align: center !important;
width: 100% !important;
}
.reviews-stars {
justify-content: center !important;
}
.patent-badge {
align-self: center !important;
}
.mobile-cta-buttons a {
width: 100% !important;
}
.mobile-award-label {
–mobile-award-border: none;
}
.logos-grid {
grid-template-columns: 1fr 1fr !important;
gap: 20px !important;
}
.available-logos,
.member-logos {
–logos-display: grid;
–logos-wrap: initial;
–logos-gap: 12px;
grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
align-items: start !important;
justify-items: start !important;
}
}
/* Video hover effect */
.novos-video-container:hover .novos-play-button {
transform: translate(-50%, -50%) scale(1.1) !important;
}
document.addEventListener(‘DOMContentLoaded’, function() {
const videoContainers = document.querySelectorAll(‘.novos-video-container’);
videoContainers.forEach(container => {
const video = container.querySelector(‘.novos-video’);
const playButton = container.querySelector(‘.novos-play-button’);
const playIcon = container.querySelector(‘.play-icon’);
const pauseIcon = container.querySelector(‘.pause-icon’);
container.addEventListener(‘click’, function(e) {
if (video.paused) {
video.play();
playIcon.style.display = ‘none’;
pauseIcon.style.display = ‘block’;
setTimeout(() => {
playButton.style.opacity = ‘0’;
}, 500);
} else {
video.pause();
playIcon.style.display = ‘block’;
pauseIcon.style.display = ‘none’;
playButton.style.opacity = ‘1’;
}
});
container.addEventListener(‘mouseenter’, function() {
if (!video.paused) {
playButton.style.opacity = ‘1’;
}
});
container.addEventListener(‘mouseleave’, function() {
if (!video.paused) {
playButton.style.opacity = ‘0’;
}
});
video.addEventListener(‘ended’, function() {
playIcon.style.display = ‘block’;
pauseIcon.style.display = ‘none’;
playButton.style.opacity = ‘1’;
});
});
});
.lp-testimonial-section {
padding: 68px 20px !important;
text-align: center !important;
}
.lp-testimonial-container {
max-width: 1180px !important;
margin: 0 auto !important;
}
.lp-testimonial-heading {
max-width: 1140px !important;
font-family: ‘Source Serif Pro’, Georgia, ‘Times New Roman’, Times, serif !important;
font-weight: 400 !important;
font-style: normal !important;
font-size: 40px !important;
line-height: 52px !important;
letter-spacing: 0 !important;
text-align: center !important;
color: #1f181d !important;
margin: 0 auto 24px auto !important;
padding: 0 !important;
text-transform: none !important;
background: none !important;
-webkit-text-fill-color: #1f181d !important;
}
.lp-testimonial-highlight {
font-weight: 600 !important;
color: #f25a1c !important;
-webkit-text-fill-color: #f25a1c !important;
}
.lp-testimonial-bold {
font-weight: 600 !important;
}
.lp-testimonial-attribution {
font-family: ‘Source Serif Pro’, Georgia, ‘Times New Roman’, Times, serif !important;
font-style: italic !important;
font-weight: 400 !important;
font-size: 40px !important;
line-height: 52px !important;
letter-spacing: 0 !important;
color: #1f181d !important;
margin: 0 !important;
}
@media (max-width: 782px) {
.lp-testimonial-heading, .lp-testimonial-attribution {
font-size: 24px !important;
line-height: 30px !important;
}
}
“In a sea of generic supplement suppliers with just a packaging and marketing department,
NOVOS’ commitment to research is a clear outlier.”
– Forbes
NOVOS Core Clinical
The first formulation designed to address all 12 biological Hallmarks of Aging — now supported by randomized, placebo-controlled human clinical research showing statistically significant results over placebo across validated functional markers of vascular aging and overall aging, alongside years of mechanistic and preclinical lifespan research.
} @media (min-width: 768px) { .novos-background-block_2e30a8928dbdf828e55fe6814df2e174 { border-radius: 1110px;rnopacity: 0.2;rnbackground: #FFA14Frnfilter: blur(200px);rnwidth: 1108px;rnheight: 1110px;rnz-index: -1;
} } @media (min-width: 1024px) { .novos-background-block_2e30a8928dbdf828e55fe6814df2e174 { border-radius: 1110px;rnopacity: 0.2;rnbackground: #FFA14Frnfilter: blur(200px);rnwidth: 1108px;rnheight: 1110px;rnz-index: -1;
} }
Available at:
Member of:
Disclaimer: Mayo Clinic and Mayo Clinic Store are trademarks of their respective owners. No endorsement implied.
“It has been a pleasure to watch NOVOS take a disciplined, biology-first approach in a space that too often prioritizes hype over evidence. What stood out to us was the seriousness of the scientific framework—mechanistic grounding, preclinical data, and an emerging human evidence base—combined with a willingness to engage in rigorous evaluation rather than shortcuts.”
– Dr. Doina Kulick, Lead Physician, Longevity Medicine Program at Mayo Clinic Arizona
NOVOS Core Clinical
The first formulation designed to address all 12 biological Hallmarks of Aging— now supported by randomized, placebo-controlled human clinical research showing statistically significant results over placebo across validated functional markers of vascular aging and overall aging, alongside years of mechanistic and preclinical lifespan research.
NOVOS Core Clinical is the first formulation designed around all 12 biological Hallmarks of Aging, developed with leading longevity scientists and physicians specializing in aging biology.
Backed by more than seven years of R&D, it has been evaluated in randomized, double-blind, placebo-controlled human clinical research demonstrating statistically significant effects across validated measures of endothelial function, arterial flexibility, and systolic blood pressure in the normal range, with effect sizes among the largest reported in published human research for a supplement, nutritional, or lifestyle intervention.
Built as a coordinated, multi-pathway system rather than a single-ingredient solution, NOVOS Core Clinical is designed to support multiple aging-related systems at once. In addition to vascular outcomes, research has observed favorable shifts in biological age markers measured epigenetically and improvements in skin firmness in preliminary human studies, alongside customer-reported benefits such as steadier energy, mental clarity, mood balance, and sleep consistency†. The formulation is further supported by mechanistic studies and preclinical lifespan research, providing multi-level scientific evidence that NOVOS Core Clinical supports foundational aspects of healthy aging biology.*
†Customer-reported outcomes and small scale studies. Individual results will vary.
A system designed to support the biology of aging itself
Aging doesn’t happen in one place. It emerges from interconnected biological processes that influence vascular function, cellular energy production, tissue renewal, and resilience across the body.
NOVOS Core Clinical was intentionally designed around the biology of aging itself — not individual symptoms — by supporting all 12 biological Hallmarks of Aging simultaneously. Developed with scientists and physicians affiliated with institutions including Harvard Medical School, MIT, and the Salk Institute, the formulation is built as a coordinated system designed for ingredient synergy rather than a collection of isolated or trendy ingredients.
Because these foundational systems shape how the body functions day to day, supporting them can influence performance, resilience, and overall well-being long before later-life outcomes become relevant.
Built on evidence, not theory
NOVOS Core Clinical is supported by multiple layers of research:
- Mechanistic studies to understand how it influences aging-related biological pathways
- Preclinical lifespan studies in mice, where animals receiving NOVOS Core Clinical Clinical lived over 18% longer on average (animal models do not predict human outcomes and are not indicative of impact on humans)
- Randomized, placebo-controlled human clinical research using validated functional biomarkers commonly applied in cardiovascular and aging science
This multi-level approach reflects an uncommon standard of scientific validation for a nutritional formulation — testing the complete system rather than relying on individual ingredient claims.
What the formulation is designed to support
Cellular energy & metabolic efficiency
Supports mitochondrial and metabolic pathways involved in cellular energy production to help maintain stamina, clarity, and daily recovery.
Healthy cellular renewal
Supports the body’s natural renewal and turnover processes that help maintain tissue function over time.
Cellular resilience & stability
Supports DNA stability, cellular stress-response pathways, and healthy inflammatory balance to promote long-term cellular function.
Protein quality & cellular communication
Supports proteostasis, extracellular matrix structure, and intercellular signaling — helping tissues remain coordinated and responsive with age.
Why this approach is different
Most supplements focus on isolated ingredients or single outcomes, while few are rigorously evaluated as complete formulations in randomized, placebo-controlled human clinical trials using validated functional biomarkers.
NOVOS Core Clinical was designed to support the biology of aging as a connected system and evaluated as a complete formulation through mechanistic research, preclinical lifespan studies, and human clinical trials — not trends, theories, or ingredient-by-ingredient claims.*
Few dietary supplements are evaluated this way, testing the complete finished formula in humans rather than relying on ingredient-level assumptions.
*These statements have not been evaluated by the Food and Drug Administration. This product/information is not intended to diagnose, treat, cure, or prevent any disease.
Each ingredient in NOVOS Core Clinical was selected based on scientific evidence and is either naturally present in human biology or derived from compounds found in nature. Together, they were chosen for their roles in aging-related biological pathways and for their established safety profiles in human research.
1. Calcium Alpha-Ketoglutarate (Ca-AKG) - A compound naturally present in human metabolism that supports mitochondrial energy production and cellular resilience.
2. Fisetin - A polyphenol found in strawberries and other fruits that supports cellular renewal and healthy inflammatory balance.
3. Pterostilbene - An antioxidant compound found in blueberries that supports vascular and metabolic health.
4. Glucosamine Sulfate – Naturally occurring in connective tissues, supports joint and extracellular matrix integrity.
5. Glycine – An amino acid abundant in collagen that supports recovery, detoxification, and restorative sleep.
6. Magnesium Malate – A form of magnesium involved in ATP production that supports energy metabolism and muscle function.
7. L-Theanine – An amino acid found in green tea that supports calm focus and stress resilience.
8. Rhodiola Rosea – An adaptogenic root traditionally used to support stamina, mental performance, and stress response.
9. Gingerols & Shogaols – Bioactive compounds from ginger that support healthy inflammatory signaling and digestive comfort.
10. Hyaluronic Acid – A molecule naturally present in skin and joints that supports hydration, elasticity, and tissue resilience.
11. Vitamin C – An essential nutrient found in fruits and vegetables that supports collagen production, antioxidant protection, and synergizes with CaAKG.
12. Micro-dosed Lithium – A trace mineral found naturally in water and foods that supports neuronal signaling and mood balance.
These statements have not been evaluated by the Food and Drug Administration. This product/information is not intended to diagnose, treat, cure, or prevent any disease.
Placebo-Controlled Human Clinical Trial Cardiovascular function was selected as the first human system to measure because vascular biology changes early with age and reflects whole-body resilience.
NOVOS Core Clinical was evaluated in a randomized, double-blind, placebo-controlled human clinical trial conducted by university researchers in adults aged 40+. The study assessed validated functional biomarkers commonly used in cardiovascular and aging research.
Compared with placebo, NOVOS Core Clinical demonstrated statistically significant differences across multiple measures of vascular function:
- +3.4% improvement in endothelial function (Flow-Mediated Dilation, FMD) observed shortly after the first dose and sustained over six months
- −1.18 m/s difference in arterial stiffness (Pulse Wave Velocity) at six months
- −8.5 mmHg difference in systolic blood pressure, supporting healthy levels already within the normal range
Effect sizes across these independent vascular biomarkers are among the largest reported in published human research for a nutritional intervention, supplement, or lifestyle modification, including aerobic exercise, providing rare human evidence that a multi-pathway formulation can measurably influence aging-related physiology.*
👉 Read the clinical trial summary
Individual responses vary. Not every person will experience the same magnitude of change.
Preclinical Lifespan Study (Animal Model)
In a controlled mouse lifespan study, animals receiving NOVOS Core Clinical lived over 18% longer on average than controls.
While animal studies do not predict human outcomes, lifespan models are a foundational step in aging research for evaluating long-term, system-level biological effects before human trials.
👉 View the lifespan study
Mechanistic Research (Formulation Design)
NOVOS Core Clinical was developed through mechanistic research examining how ingredient combinations interact with aging-related biological pathways, including DNA protection, cellular senescence, cellular inflammation protection.
This work confirmed formulation design, dosing, and ingredient synergy, ensuring the product was built as an integrated system rather than a collection of isolated compounds.
👉 Explore the mechanistic studies
Epigenetic Aging Analysis
NOVOS has supported independent DNA methylation–based epigenetic age testing, which measures patterns in your DNA that scientists use to estimate biological age over time.
In an exploratory analysis of first-time NOVOS Core Clinical users tested before and after six months of use, follow-up results showed favorable directional shifts in these validated epigenetic biomarkers, consistent with a slower pace of age-related biological change. These tests are research tools used to study aging biology and do not diagnose disease or predict lifespan.*
This was an observational, real-world evaluation rather than a controlled clinical trial.
👉 Learn about our epigenetic research
Skin Elasticity Study (Instrument-Measured)
In a preliminary human study using an indentometer — a scientific device that objectively measures skin firmness — participants showed an average 22% increase in skin elasticity after six months, with some reporting visible improvements within weeks.
These findings suggest that supporting foundational biological pathways may also help maintain skin firmness, structure, and resilience over time.*
This was a small pilot evaluation intended to generate preliminary signals.
👉 View the skin study details
Why This Approach Is Different
Most supplements rely on ingredient-level claims. NOVOS Core Clinical has been rigorously evaluated as a complete formulation across mechanistic research, preclinical lifespan studies, and randomized, placebo-controlled human clinical research, reflecting how aging actually works: as an interconnected biological system rather than isolated symptoms.
*These statements have not been evaluated by the Food and Drug Administration. This product/information is not intended to diagnose, treat, cure, or prevent any disease.
const u='https://novoslabs.com/wp-content/uploads/2026/02/Frame-2087326650.png', h='Scientifically Developed. Clinically Evaluated. Trusted by Doctors.'; const o=new MutationObserver(()=>{const e=document.querySelector('.after-cart-text'); if(!e) return; if(!e.previousElementSibling?.classList?.contains('lp-mini-title')) e.insertAdjacentHTML('beforebegin',`
${h}
`); const d=document.createElement('div'); d.className='after-cart-frontrow'; d.innerHTML=``; e.replaceWith(d); o.disconnect(); }); o.observe(document.documentElement,{subtree:1,childList:1});
.wcpay-express-checkout-wrapper { display: none !important; }h4.lp-mini-title { text-align: center; color: #1E1E1E; font-weight: 500; line-height: 150%; font-size: 32px; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important; }
@media (max-width: 782px) { h4.lp-mini-title { font-size: 20px; } }
.after-cart-frontrow { margin: 15px 0px; } .after-cart-frontrow img { display: block; width: auto; max-width: 100%; height: auto; }
.truemed-instructions{ border-top: 2px solid #8E8A84; border-bottom: 2px solid #8E8A84; padding-bottom: 15px; }
.product-slider-icons-core .inner-section-wrap { background: #F4F2EE !important; padding: 10px !important; border-radius: 15px !important; } ul.bar-text-wrap { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; background-color: #F4F2EE; border-radius: 10px; margin: 20px 0px; padding: 20px; }
ul.bar-text-wrap li { font-size: 13px; font-weight: 500; color: #1a1a1a; padding: 0; margin: 0; }
ul.bar-text-wrap li span { font-weight: normal; }
ul.bar-text-wrap::before { content: ''; position: absolute; left: 50%; top: 20px; bottom: 20px; width: 1px; background-color: #d1d1d1; transform: translateX(-50%); }
ul.bar-text-wrap { position: relative; }
@media (max-width: 782px) { ul.bar-text-wrap { grid-template-columns: 1fr; gap: 10px; }
ul.bar-text-wrap::before { display: none; } }
- 🫀 Vascular Aging Support (Clinically Studied)
- 🧬 12 Hallmarks of Aging Addressed
- ⚡ Cellular Energy & Recovery
- 🧠 Brain Function & Emotional Balance
- ✨ Skin Structure & Renewal
- 🛡️ Whole-Body Longevity Resilience
/* Add to Cart Button and Security Text */ .product-selector-1 .add-to-cart, .product-selector-1 .product-single-wrap.type-block .add-to-cart { position: relative; display: flex; flex-direction: column; align-items: stretch; gap: 0; } .product-selector-1 .add-to-cart .novos-security-text, .product-selector-1 .product-single-wrap.type-block .add-to-cart .novos-security-text { display: block; text-align: center; color: rgba(0, 0, 0, 0.6); font-size: 14px; line-height: 1.5; margin-top: 12px; font-weight: 400; order: 2; width: 100%; } @media (min-width: 783px) { .product-selector-1 .add-to-cart .novos-security-text, .product-selector-1 .product-single-wrap.type-block .add-to-cart .novos-security-text { font-size: 15px; margin-top: 16px; } } /* Hide quantity selector */ .product-selector-1 .add-to-cart .quantity, .product-selector-1 .product-single-wrap.type-block .add-to-cart .quantity { display: none !important; } .product-selector-1 .add-to-cart .cards-icon-container, .product-selector-1 .product-single-wrap.type-block .add-to-cart .cards-icon-container { order: 1; width: 100%; } .product-selector-1 .single_add_to_cart_button, .product-selector-1 .product-single-wrap.type-block .single_add_to_cart_button { font-size: 0 !important; display: flex !important; align-items: center; justify-content: center; gap: 8px; width: 100% !important; } .product-selector-1 .single_add_to_cart_button::before, .product-selector-1 .product-single-wrap.type-block .single_add_to_cart_button::before { content: "Proceed to checkout"; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important; color: #fff; font-size: 18px; font-weight: 600; line-height: 1; } @media (min-width: 783px) { .product-selector-1 .single_add_to_cart_button::before, .product-selector-1 .product-single-wrap.type-block .single_add_to_cart_button::before { font-size: 20px; color: #fff; } } .product-selector-1 .single_add_to_cart_button::after, .product-selector-1 .product-single-wrap.type-block .single_add_to_cart_button::after { content: "→"; font-size: 22px; line-height: 1; } @media (max-width: 782px) { .product-selector-1 .single_add_to_cart_button::before, .product-selector-1 .product-single-wrap.type-block .single_add_to_cart_button::before { font-size: 15px; } .product-selector-1 .single_add_to_cart_button::after, .product-selector-1 .product-single-wrap.type-block .single_add_to_cart_button::after { font-size: 18px; } } @media (max-width: 420px) { .product-selector-1 .add-to-cart::after, .product-selector-1 .product-single-wrap.type-block .add-to-cart::after { font-size: 12px; } .product-selector-1 .single_add_to_cart_button::before, .product-selector-1 .product-single-wrap.type-block .single_add_to_cart_button::before { font-size: 14px; } .product-selector-1 .single_add_to_cart_button::after, .product-selector-1 .product-single-wrap.type-block .single_add_to_cart_button::after { font-size: 18px; } }
jQuery(document).ready(function ($) { (function() { const $group = $('.product-selector-1'); const $wrapper = $group.find('.product-option-wrap:has(> .separator)');
if (!$group.length || $wrapper.length label.multiple-subscription-option)'); if ($activeOption.length) { const $radio = $activeOption.find('.plan-radio'); if ($radio.length) { return $radio.attr('data-billing-period') || null; } } return null; }
function getDefaultSubtitle(period) { if (!period) { return 'Auto ships every 12 months'; }
const periodLower = period.toLowerCase();
if (periodLower.includes('year') || periodLower.includes('annual') || periodLower.includes('12')) { return 'Auto ships every 12 months'; }
if (periodLower.includes('6')) { return 'Auto ships every 6 months'; }
if (periodLower.includes('month') && (periodLower.includes('1') || !periodLower.match(/\d/))) { return 'Auto ships every month'; }
return 'Auto ships every 12 months'; }
function normalizePeriodKey(period) { if (!period) return null; const periodLower = period.toLowerCase(); if (periodLower.includes('year') || periodLower.includes('annual') || periodLower.includes('12')) { return 12; } if (periodLower.includes('6')) { return 6; } if (periodLower.includes('month') && (periodLower.includes('1') || !periodLower.match(/\d/))) { return 1; } return null; }
function applyContent() { const period = getSelectedPeriod(); const periodKey = normalizePeriodKey(period); let subtitle = staticSubtitle || getDefaultSubtitle(period); let benefits = staticBenefits;
if (dynamicConfig && periodKey && dynamicConfig[periodKey]) { if (dynamicConfig[periodKey].subtitle) { subtitle = dynamicConfig[periodKey].subtitle; } if (dynamicConfig[periodKey].benefits) { benefits = Array.isArray(dynamicConfig[periodKey].benefits) ? dynamicConfig[periodKey].benefits.join('\\A') : dynamicConfig[periodKey].benefits.replace(/\n/g, '\\A'); } }
updateContent(subtitle, benefits); }
function find12MonthOption($scope) { const $searchRoot = $scope && $scope.length ? $scope : $group; let $found = null; $searchRoot.find('.single-purchase-option:has(> label.multiple-subscription-option)').each(function() { const $option = $(this); if ($option.css('display') === 'none' || $option.is(':hidden')) { return true; // continue. } const $radio = $option.find('.plan-radio'); if ($radio.length) { const period = $radio.attr('data-billing-period') || ''; const periodLower = period.toLowerCase(); if (periodLower.includes('year') || periodLower.includes('annual') || periodLower.includes('12')) { $found = $option; return false; // break. } } }); return $found; }
function getPrimaryRadio($option) { const $checkedRadio = $option.find('.plan-radio:checked'); if ($checkedRadio.length) { return $checkedRadio.first(); } const $billingRadio = $option.find('.plan-radio[data-billing-period]:enabled'); if ($billingRadio.length) { return $billingRadio.first(); } const $enabledRadio = $option.find('.plan-radio:enabled'); if ($enabledRadio.length) { return $enabledRadio.first(); } return $option.find('.plan-radio').first(); }
function markUserPlanInteraction() { userHasSelectedPlan = true; }
function findFirstVisibleSubscriptionOption($scope) { const $searchRoot = $scope && $scope.length ? $scope : $group; let $found = null;
$searchRoot.find('> .single-purchase-option:has(> label.multiple-subscription-option)').each(function() { const $option = $(this); if ($option.css('display') === 'none' || $option.is(':hidden')) { return true; // continue. } $found = $option; return false; // break. });
return $found; }
function enforceAnnualDefaultSelection($scope, forceSelection) { const $wrappers = $scope && $scope.length ? $scope : $group.find('.product-option-wrap:has(> .separator)');
$wrappers.each(function() { const $currentWrapper = $(this); const $individualOption = $currentWrapper.find('> .separator ~ .single-purchase-option:has(> label.individual-purchase)'); const $subscriptionOptions = $currentWrapper.find('> .single-purchase-option:has(> label.multiple-subscription-option)');
const $annualOption = find12MonthOption($currentWrapper); const $targetOption = ($annualOption && $annualOption.length) ? $annualOption : findFirstVisibleSubscriptionOption($currentWrapper);
if (!$targetOption || !$targetOption.length) { return; }
const hasIndividualChecked = $individualOption.find('.plan-radio:checked').length > 0; const targetChecked = $targetOption.find('.plan-radio:checked').length > 0; const targetActive = $targetOption.hasClass('active');
if (!forceSelection) { if (userHasSelectedPlan || hasIndividualChecked || (targetChecked && targetActive)) { return; } }
$individualOption.find('.plan-radio').prop('checked', false); $subscriptionOptions.find('.plan-radio').prop('checked', false); $individualOption.removeClass('active'); $subscriptionOptions.removeClass('active');
const $targetRadio = getPrimaryRadio($targetOption); if ($targetRadio.length) { $targetRadio.prop('checked', true).trigger('change'); } $targetOption.addClass('active');
syncActiveClasses($currentWrapper); applyContent(); handleIndividualPricing($currentWrapper); }); }
function ensureSubscriptionRadioFallback($scope) { const $wrappers = $scope && $scope.length ? $scope : $group.find('.product-option-wrap:has(> .separator)');
$wrappers.each(function() { const $currentWrapper = $(this); $currentWrapper.addClass('novos-has-radio-fallback');
if (!$currentWrapper.children('.novos-subscription-radio-fallback').length) { $currentWrapper.append(''); } }); }
function syncWrapperSelectionClasses($scope) { const $wrappers = $scope && $scope.length ? $scope : $group.find('.product-option-wrap:has(> .separator)'); ensureSubscriptionRadioFallback($wrappers);
$wrappers.each(function() { const $currentWrapper = $(this); const $individualOption = $currentWrapper.find('> .separator ~ .single-purchase-option:has(> label.individual-purchase)'); const $subscriptionOptions = $currentWrapper.find('> .single-purchase-option:has(> label.multiple-subscription-option)');
const hasIndividualChecked = $individualOption.find('.plan-radio:checked').length > 0; const hasSubscriptionChecked = $subscriptionOptions.find('.plan-radio:checked').length > 0; const hasIndividualActive = $individualOption.hasClass('active'); const hasSubscriptionActive = $subscriptionOptions.filter('.active').length > 0;
let selectedType = null; if (hasIndividualChecked || (!hasSubscriptionChecked && hasIndividualActive)) { selectedType = 'individual'; } else if (hasSubscriptionChecked || hasSubscriptionActive) { selectedType = 'subscription'; }
$currentWrapper.toggleClass('novos-individual-selected', selectedType === 'individual'); $currentWrapper.toggleClass('novos-subscription-selected', selectedType === 'subscription'); }); }
function handleIndividualPricing($scope) { const $wrappers = $scope && $scope.length ? $scope : $group.find('.product-option-wrap:has(> .separator)');
$wrappers.each(function() { const $currentWrapper = $(this); const $subscriptionOptions = $currentWrapper.find('> .single-purchase-option:has(> label.multiple-subscription-option)'); const $individualOption = $currentWrapper.find('> .separator ~ .single-purchase-option:has(> label.individual-purchase)');
const isIndividualActive = $individualOption.hasClass('active') || $individualOption.find('.plan-radio:checked').length > 0;
$subscriptionOptions.removeClass('show-fallback-pricing');
if (isIndividualActive) { const $twelveMonth = find12MonthOption($currentWrapper); if ($twelveMonth && $twelveMonth.length) { $twelveMonth.addClass('show-fallback-pricing'); } } }); }
function syncActiveClasses($scope) { const $wrappers = $scope && $scope.length ? $scope : $group.find('.product-option-wrap:has(> .separator)');
$wrappers.each(function() { const $currentWrapper = $(this);
// Find which radio button is actually checked in this wrapper only const $individualOption = $currentWrapper.find('> .separator ~ .single-purchase-option:has(> label.individual-purchase)'); const $subscriptionOptions = $currentWrapper.find('> .single-purchase-option:has(> label.multiple-subscription-option)');
const hadIndividualActive = $individualOption.hasClass('active'); const $hadActiveSubscription = $subscriptionOptions.filter('.active').first();
const $checkedIndividual = $individualOption.find('.plan-radio:checked'); const $checkedSubscription = $subscriptionOptions.find('.plan-radio:checked');
// Remove all active classes first $individualOption.removeClass('active'); $subscriptionOptions.removeClass('active');
// Add active class to the option with checked radio if ($checkedIndividual.length > 0) { $individualOption.addClass('active'); return; }
if ($checkedSubscription.length > 0) { $checkedSubscription.closest('.single-purchase-option').addClass('active'); return; }
// Fallback when markup updates delayed checked state but active state was already set. if (hadIndividualActive) { const $fallbackIndividualRadio = getPrimaryRadio($individualOption); if ($fallbackIndividualRadio.length) { $fallbackIndividualRadio.prop('checked', true); } $individualOption.addClass('active'); return; }
if ($hadActiveSubscription.length) { const $fallbackSubscriptionRadio = getPrimaryRadio($hadActiveSubscription); if ($fallbackSubscriptionRadio.length) { $fallbackSubscriptionRadio.prop('checked', true); } $hadActiveSubscription.addClass('active'); } });
syncWrapperSelectionClasses($wrappers); }
$group.on('click', '.single-purchase-option:has(> label.multiple-subscription-option)', function() { markUserPlanInteraction();
const $clicked = $(this); const $currentWrapper = $clicked.closest('.product-option-wrap:has(> .separator)'); const $individualOption = $currentWrapper.find('> .separator ~ .single-purchase-option:has(> label.individual-purchase)'); const $subscriptionOptions = $currentWrapper.find('> .single-purchase-option:has(> label.multiple-subscription-option)');
// Uncheck individual radio button const $individualRadio = $individualOption.find('.plan-radio'); if ($individualRadio.length) { $individualRadio.prop('checked', false); }
// Remove active class from individual option when subscription is clicked $individualOption.removeClass('active');
// Remove active class from all subscription options $subscriptionOptions.removeClass('active');
// Add active class to clicked subscription option $clicked.addClass('active');
// Ensure the radio button in the clicked option is checked const $clickedRadio = getPrimaryRadio($clicked); if ($clickedRadio.length) { $clickedRadio.prop('checked', true).trigger('change'); }
setTimeout(applyContent, 10); setTimeout(function() { syncActiveClasses($currentWrapper); handleIndividualPricing($currentWrapper); }, 10); });
$group.on('change', '.plan-radio', function() { const $currentWrapper = $(this).closest('.product-option-wrap:has(> .separator)'); setTimeout(function() { syncActiveClasses($currentWrapper); applyContent(); handleIndividualPricing($currentWrapper); }, 10); });
$group.on('click', '.variation-dropdown-option', function() { const $currentWrapper = $(this).closest('.product-option-wrap:has(> .separator)'); setTimeout(function() { syncActiveClasses($currentWrapper); applyContent(); handleIndividualPricing($currentWrapper); }, 10); });
$group.on('click', '.single-purchase-option:has(> label.individual-purchase)', function() { markUserPlanInteraction();
const $individualOption = $(this).closest('.product-option-wrap:has(> .separator)') .find('> .separator ~ .single-purchase-option:has(> label.individual-purchase)'); const $currentWrapper = $individualOption.closest('.product-option-wrap:has(> .separator)'); const $subscriptionOptions = $currentWrapper.find('> .single-purchase-option:has(> label.multiple-subscription-option)');
// Uncheck all subscription radio buttons $subscriptionOptions.find('.plan-radio').prop('checked', false);
// Remove active class from subscription options when individual is clicked $subscriptionOptions.removeClass('active');
// Ensure the individual option gets the active class $individualOption.addClass('active');
// Ensure the individual radio is checked const $individualRadio = getPrimaryRadio($individualOption); if ($individualRadio.length) { $individualRadio.prop('checked', true).trigger('change'); }
setTimeout(function() { syncActiveClasses($currentWrapper); handleIndividualPricing($currentWrapper); }, 10); });
$group.on('click', 'ul.flavor-dropdown li', function() { const $currentWrapper = $(this).closest('.product-option-wrap:has(> .separator)'); setTimeout(function() { syncActiveClasses($currentWrapper); applyContent(); handleIndividualPricing($currentWrapper); enforceAnnualDefaultSelection($currentWrapper, false); }, 50); });
$group.on('click', '.flavor-option', function() { const $currentWrapper = $(this).closest('.product-option-wrap:has(> .separator)'); setTimeout(function() { syncActiveClasses($currentWrapper); applyContent(); handleIndividualPricing($currentWrapper); enforceAnnualDefaultSelection($currentWrapper, false); }, 50); });
$group.on('change', 'select[name="attribute_flavor"]', function() { const $currentWrapper = $(this).closest('.product-option-wrap:has(> .separator)'); setTimeout(function() { syncActiveClasses($currentWrapper); applyContent(); handleIndividualPricing($currentWrapper); enforceAnnualDefaultSelection($currentWrapper, false); }, 50); });
// Make the entire subscription wrapper card clickable $group.on('click', '.product-option-wrap:has(> .separator)', function(e) { markUserPlanInteraction();
const $currentWrapper = $(this);
// Don't trigger if clicking on a specific subscription option or individual purchase if ($(e.target).closest('.single-purchase-option:has(> label.multiple-subscription-option)').length || $(e.target).closest('.single-purchase-option:has(> label.individual-purchase)').length) { return; }
// Find the 12-month option and select it const $twelveMonth = find12MonthOption($currentWrapper); if ($twelveMonth && $twelveMonth.length) { const $radio = getPrimaryRadio($twelveMonth); if ($radio.length) { // Uncheck individual radio $currentWrapper.find('> .separator ~ .single-purchase-option:has(> label.individual-purchase) .plan-radio').prop('checked', false);
$radio.prop('checked', true).trigger('change'); $currentWrapper.find('> .single-purchase-option:has(> label.multiple-subscription-option)').removeClass('active'); $currentWrapper.find('> .separator ~ .single-purchase-option:has(> label.individual-purchase)').removeClass('active'); $twelveMonth.addClass('active'); setTimeout(applyContent, 10); setTimeout(function() { syncActiveClasses($currentWrapper); handleIndividualPricing($currentWrapper); }, 10); } } });
window.NovosSubscriptionCustomizer = { setSubtitle: function(subtitle) { staticSubtitle = subtitle; applyContent(); },
setBenefits: function(benefits) { staticBenefits = Array.isArray(benefits) ? benefits.join('\\A') : benefits.replace(/\n/g, '\\A'); applyContent(); },
setDynamicContent: function(config) { dynamicConfig = config; applyContent(); },
reset: function() { staticSubtitle = null; staticBenefits = null; dynamicConfig = null; applyContent(); },
getConfig: function() { return { staticSubtitle: staticSubtitle, staticBenefits: staticBenefits, dynamicConfig: dynamicConfig, currentPeriod: getSelectedPeriod() }; } };
ensureSubscriptionRadioFallback($wrapper); applyContent(); syncActiveClasses($wrapper); handleIndividualPricing();
// Add security text below add-to-cart button if not already present const $addToCart = $group.find('.add-to-cart'); if ($addToCart.length && !$addToCart.find('.novos-security-text').length) { $addToCart.append('
'); }
// Force annual (12-month) option as default selected/highlighted on initial load. setTimeout(function() { enforceAnnualDefaultSelection($wrapper, true); }, 100);
// Extra pass for production pages where product finder hydration is delayed. setTimeout(function() { enforceAnnualDefaultSelection($wrapper, true); }, 450); })(); } );
.product-selector-1.novos-upsell-redesign .novos-pdp-upsell { margin-top: 15px; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-inner { padding: 20px !important; border-radius: 43px !important; border: 2px solid #f4a87a !important; position: relative; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card:hover .novos-upsell-card-inner { border-color: #f25f1b !important; background-color: #fffcfa; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card input.novos-upsell-checkbox:checked + .novos-upsell-card-inner { background-color: #fff8f5 !important; border-color: #f25f1b !important; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card input.novos-upsell-checkbox:checked + .novos-upsell-card-inner .novos-upsell-card-checkbox { background-color: #f25f1b; border-color: #f25f1b; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card input.novos-upsell-checkbox:checked + .novos-upsell-card-inner .novos-upsell-card-checkbox::after { opacity: 1; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card input.novos-upsell-checkbox:checked + .novos-upsell-card-inner .novos-upsell-card-header-yes { color: #16a34a; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-inner { align-items: stretch !important; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-media { width: 160px; display: flex; align-items: stretch; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-media img { width: 160px; height: 100% !important; border-radius: 26px !important; object-fit: cover; }.product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-header { display: flex; align-items: center; margin-bottom: 2px; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-header-yes { font-size: 16px; font-weight: 700; color: #000; text-transform: uppercase; transition: color 0.15s ease; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-header-separator { font-size: 16px; color: #000; margin: 0 6px; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-header-action { font-size: 16px; font-weight: 700; color: #000; text-transform: uppercase; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-subtitle { font-size: 14px; color: #6b7280; margin-bottom: 8px; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-price { font-size: 20px; font-weight: 700; color: #000; margin-bottom: 10px; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-price-unit { font-size: 16px; font-weight: 400; color: #1f2937; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-title { display: none !important; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-description { font-size: 14px; line-height: 1.5; color: #4b5563; margin: 0 !important; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-description strong { font-weight: 700; color: #1f2937; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-action { display: none !important; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-checkbox { position: absolute; top: 20px; right: 20px; width: 24px; height: 24px; border: 2px solid #FFA25F; border-radius: 8px; cursor: pointer; transition: all 0.15s ease; background: #fff; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-checkbox:hover { border-color: #f25f1b; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-checkbox::after { content: ''; position: absolute; top: 3px; left: 7px; width: 6px; height: 12px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); opacity: 0; transition: opacity 0.15s ease; } @media (max-width: 576px) { .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-inner { padding: 16px !important; gap: 12px !important; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-media, .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-media img { width: 90px; }
.product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-header-yes, .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-header-separator, .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-header-action { font-size: 14px; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-subtitle, .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-description { font-size: 13px; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-price { font-size: 18px; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-price-unit { font-size: 14px; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-checkbox { top: 16px; right: 16px; width: 22px; height: 22px; } .product-selector-1.novos-upsell-redesign .novos-pdp-upsell .novos-upsell-card .novos-upsell-card-checkbox::after { top: 2px; left: 6px; width: 5px; height: 11px; } }
(function() { function initUpsellRedesign() { var $ = jQuery; var $groups = $('.product-selector-1'); if (!$groups.length) return;
$groups.each(function() { var $group = $(this); var $upsell = $group.find('.novos-pdp-upsell').first(); if (!$upsell.length) return;
// Prevent running twice per scoped group if ($group.hasClass('novos-upsell-redesign')) return; $group.addClass('novos-upsell-redesign');
// Move upsell below add to cart button inside this scoped group var $addToCart = $group.find('.add-to-cart').first(); if ($addToCart.length) $upsell.insertAfter($addToCart);
var $content = $upsell.find('.novos-upsell-card-content'); var $inner = $upsell.find('.novos-upsell-card-inner'); if (!$content.length || !$inner.length) return;
var productName = $upsell.find('.novos-upsell-card-title').text().trim() || 'NOVOS BOOST';
$content.prepend( '
' + '
' + '
' );
$upsell.find('.novos-upsell-card-description').html( 'Enhance your results with NOVOS NMN, designed to complement NOVOS Core Clinical and further support pathways associated with the 12 biological Hallmarks of Aging. Each capsule delivers 250 mg of high-purity NMN to support cellular energy metabolism and healthy NAD+ production — key processes involved in energy, resilience, and overall cellular function.' );
// Add visible checkbox $inner.append( '
' );
// Checkbox click handler $inner.on('click', '.novos-upsell-card-checkbox', function(e) { e.preventDefault(); e.stopPropagation(); var $checkbox = $upsell.find('.novos-upsell-checkbox'); $checkbox.prop('checked', !$checkbox.prop('checked')).trigger('change'); }); }); }
// Try immediately if (typeof jQuery !== 'undefined') { if (document.readyState === 'complete') { initUpsellRedesign(); } else { jQuery(document).ready(initUpsellRedesign); } } else { // Wait for jQuery document.addEventListener('DOMContentLoaded', function() { if (typeof jQuery !== 'undefined') { initUpsellRedesign(); } }); } })();
Member of:
Available at:
Real People. Real Routines. Aging, Done Differently.
Biotechnology rigor. 7+ years of R&D. A higher standard for longevity.
.core-promo-videos { position: relative; }.core-promo-videos .video-wrapper { position: relative; display: inline-block; width: 100%; }
.core-promo-videos .play-pause-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.core-promo-videos .play-pause-btn { background: rgba(255, 255, 255, 0.9); border: none; border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s, background 0.3s; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); pointer-events: auto; }
.core-promo-videos .play-pause-btn:hover { transform: scale(1.1); background: rgba(255, 255, 255, 1); }
.core-promo-videos .play-pause-btn svg { width: 24px; height: 24px; fill: #333; }
.core-promo-videos .pause-icon { display: none; }
.core-promo-videos .play-pause-overlay.playing .play-icon { display: none; }
.core-promo-videos .play-pause-overlay.playing .pause-icon { display: block; }
document.addEventListener('DOMContentLoaded', function() { const container = document.querySelector('.core-promo-videos'); if (!container) return;
const videos = container.querySelectorAll('video'); const allOverlays = [];
videos.forEach((video, index) => { // Wrap video if not already wrapped if (!video.parentElement.classList.contains('video-wrapper')) { const wrapper = document.createElement('div'); wrapper.className = 'video-wrapper'; video.parentNode.insertBefore(wrapper, video); wrapper.appendChild(video); }
// Create overlay const overlay = document.createElement('div'); overlay.className = 'play-pause-overlay'; overlay.innerHTML = ` `;
video.parentElement.appendChild(overlay); allOverlays.push(overlay);
// Handle click const btn = overlay.querySelector('.play-pause-btn'); btn.addEventListener('click', function(e) { e.stopPropagation();
if (video.paused) { // Pause all other videos videos.forEach((otherVideo, otherIndex) => { if (otherVideo !== video && !otherVideo.paused) { otherVideo.pause(); } });
video.play(); overlay.classList.add('playing'); } else { video.pause(); overlay.classList.remove('playing'); } });
// Sync state when video plays (e.g., from other controls) video.addEventListener('play', function() { // Pause all other videos videos.forEach((otherVideo) => { if (otherVideo !== video && !otherVideo.paused) { otherVideo.pause(); } }); overlay.classList.add('playing'); });
video.addEventListener('pause', function() { overlay.classList.remove('playing'); });
video.addEventListener('ended', function() { overlay.classList.remove('playing'); }); }); });
// Initialize the novos_slider_settings object if it doesn't exist if (typeof window.novos_slider_settings === 'undefined') { window.novos_slider_settings = {}; } window.novos_slider_settings['block_c06ae61955c4d356c04f6518abf314ed'] = {"autoplay":true,"arrows":true,"pagination":false,"perPage":4,"speed":400,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","peek_slide":false,"gap":"20px","direction":"ltr","height":0,"padding_css":"","autoWidth":true,"labelAsDots":false,"breakpoints":{"1024":{"autoplay":true,"arrows":true,"pagination":false,"perPage":1,"speed":400,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","peek_slide":false,"gap":"20px","direction":"ltr","height":0,"padding_css":"","autoWidth":true,"labelAsDots":false},"768":{"autoplay":true,"arrows":false,"pagination":false,"perPage":1,"speed":400,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","peek_slide":false,"gap":"10px","direction":"ltr","height":0,"padding_css":"","autoWidth":true,"labelAsDots":false}}};
Your browser does not support the video tag.
Your browser does not support the video tag.
.novos-pdp-faq .accordion-label::after { display: none !important; }
/* Rotate chevron up when open */ .novos-pdp-faq .single-accordion.active .accordion-label::before { transform: translateY(-50%) rotate(-135deg) !important; top: 55% !important; }
/* Make accordion titles black */ .novos-pdp-faq .accordion-label { color: #1E1E1E !important; background: black !important; background-clip: text !important; }
.novos-pdp-faq .accordion-content { color: #1E1E1E !important; }
.novos-pdp-faq .accordion-wrap.is-style-accordion-variation-1 .single-accordion .accordion-label { background: black; background-clip: text; }
/* Mobile-only font size */ @media (max-width: 767px) { .novos-pdp-faq .accordion-label { font-size: 16px !important; } }
FAQ
NOVOS Core Clinical is a dietary supplement, not a medication. If you take prescription medications or manage a medical condition, consult your healthcare professional before use, especially if you are pregnant or nursing, managing blood pressure, bleeding or clotting, or any chronic condition.
NOVOS Core Clinical is the daily foundation. It’s a comprehensive longevity formulation designed to support multiple aging-related biological pathways as a complete system.
Other NOVOS products are designed as targeted add-ons — for example, additional NAD+ or mitochondrial support — and can be layered on top of NOVOS Core Clinical depending on your goals.
Timelines vary by individual.
Some people report noticing day-to-day changes first, such as steadier energy or improved sleep consistency, within the first few weeks. Broader, longer-horizon changes associated with healthy aging biology typically build gradually over weeks to months and depend on baseline health and consistent use.
NOVOS Core Clinical is intended for adults. If you’re under 18, pregnant, or breastfeeding, consult a healthcare professional before use.
NOVOS Core Clinical is designed for one sachet daily. Some individuals choose to take up to two sachets per day. If increasing your intake, consider starting with one sachet for at least a week and consult your healthcare professional if you are sensitive to supplements.
There are two practical ways many people evaluate progress:
How you feel
Some people notice day-to-day changes such as steadier energy, sleep consistency, mood improvements, or overall resilience over time.
What you can measure
NOVOS Core Clinical is designed to support underlying biological systems associated with healthy aging, effects that may not always be immediately perceptible but can be observed through objective measures. In human clinical research, NOVOS Core Clinical demonstrated statistically significant benefits across validated functional biomarkers of cardiovascular function, including endothelial responsiveness, arterial flexibility, and support for healthy blood pressure already within the normal range.*
If you already track general wellness metrics, you may choose to monitor markers such as resting heart rate, sleep patterns, blood pressure, or routine labs with your clinician.
Because these changes reflect foundational physiology, benefits are often gradual and cumulative rather than instant.
NOVOS Core Clinical replaces the need to source and dose multiple individual supplements. Instead of assembling a complex stack, you get a single, research-driven formulation developed and evaluated as a complete system. You’re investing in clinical research, quality controls, and formulation design — often at a comparable or lower total cost than buying similar ingredients separately.
#product-247857 {
background: #fff !important;
}
The Science That Puts
Core Clinical in a Class of Its Own
Supported by over 7 years of research, 400+ ingredient studies, and a rapidly expanding body of clinical and preclinical evidence.
/* =========================== FONT FAMILY =========================== */ .whats-happening-2 { font-family: 'Inter Tight', sans-serif !important; letter-spacing: 0 !important; }
/* =========================== DESKTOP STYLES (1024px and up) =========================== */ @media (min-width: 1024px) { /* Slider track and list setup */ .whats-happening-2 .splide__track { padding: 0 !important; }
.whats-happening-2 .splide__list { display: flex !important; gap: 15px !important; }
/* Each slide takes 50% width minus half the gap */ .whats-happening-2 .splide__slide { width: calc(50% - 7.5px) !important; min-width: 0 !important; max-width: none !important; flex-shrink: 0 !important; }
/* Card container with border radius */ .whats-happening-2 .splide__slide .inner-slide, .whats-happening-2 .splide__slide--clone .inner-slide, .whats-happening-2 .inner-slide { border-radius: 24px !important; overflow: hidden !important; width: 100% !important; height: 100% !important; display: flex !important; flex-direction: row-reverse !important; background: #F4F2EE !important; }
/* Image wrapper - right side, 35% width */ .whats-happening-2 .splide__slide .image-wrapper, .whats-happening-2 .splide__slide--clone .image-wrapper, .whats-happening-2 .image-wrapper { width: 35% !important; flex-shrink: 0 !important; border-radius: 0 24px 24px 0 !important; overflow: hidden !important; position: relative !important; height: 100% !important; }
/* Image styling - full height coverage */ .whats-happening-2 .image-wrapper img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; display: block !important; }
/* Content area - left side, auto width */ .whats-happening-2 .inner-slide > *:not(.image-wrapper), .whats-happening-2 .content-wrapper { flex: 1 !important; padding: 48px 50px !important; /*display: flex !important; flex-direction: column !important; justify-content: center !important;*/ background: #F4F2EE !important; }
/* FIRST SLIDE ONLY - Dark background */ .whats-happening-2 .splide__slide:first-child .inner-slide { background: #4A4643 !important; }
.whats-happening-2 .splide__slide:first-child .inner-slide > *:not(.image-wrapper), .whats-happening-2 .splide__slide:first-child .content-wrapper { background: #4A4643 !important; }
/* FIRST SLIDE ONLY - White text */ .whats-happening-2 .splide__slide:first-child .inner-slide h1, .whats-happening-2 .splide__slide:first-child .inner-slide h2, .whats-happening-2 .splide__slide:first-child .inner-slide h3, .whats-happening-2 .splide__slide:first-child .inner-slide p, .whats-happening-2 .splide__slide:first-child .inner-slide li { color: #FFFFFF !important; }
/* Typography and content spacing */ .whats-happening-2 .inner-slide h1, .whats-happening-2 .inner-slide h2 { margin-top: 0 !important; margin-bottom: 16px !important; font-size: 36px !important; line-height: 1.2 !important; font-weight: 400 !important; letter-spacing: 0 !important; }
.whats-happening-2 .inner-slide h3 { margin-top: 32px !important; margin-bottom: 16px !important; font-size: 18px !important; font-weight: 600 !important; letter-spacing: 0 !important; }
.whats-happening-2 .inner-slide p { margin-bottom: 0 !important; line-height: 1.6 !important; font-size: 12px !important; color: #666 !important; letter-spacing: 0 !important; }
.whats-happening-2 .inner-slide ul { margin: 24px 0 !important; padding-left: 20px !important; }
.whats-happening-2 .inner-slide li { margin-bottom: 12px !important; line-height: 1.5 !important; font-size: 12px !important; letter-spacing: 0 !important; }
/* Button wrapper if exists */ .whats-happening-2 .button-wrapper { margin-top: auto !important; padding-top: 24px !important; } }
/* =========================== TABLET STYLES (768px - 1023px) =========================== */ @media (min-width: 768px) and (max-width: 1023px) { /* Slider track and list setup */ .whats-happening-2 .splide__track { padding: 0 !important; }
.whats-happening-2 .splide__list { display: flex !important; gap: 15px !important; }
/* Full width slide on tablet */ .whats-happening-2 .splide__slide { width: 100% !important; min-width: 0 !important; max-width: none !important; flex-shrink: 0 !important; }
/* Card container with border radius */ .whats-happening-2 .splide__slide .inner-slide, .whats-happening-2 .splide__slide--clone .inner-slide, .whats-happening-2 .inner-slide { border-radius: 24px !important; overflow: hidden !important; width: 100% !important; height: 100% !important; display: flex !important; flex-direction: row-reverse !important; background: #F4F2EE !important; }
/* Image wrapper - right side */ .whats-happening-2 .splide__slide .image-wrapper, .whats-happening-2 .splide__slide--clone .image-wrapper, .whats-happening-2 .image-wrapper { width: 40% !important; flex-shrink: 0 !important; border-radius: 0 24px 24px 0 !important; overflow: hidden !important; position: relative !important; height: 100% !important; }
/* Image styling - full height coverage */ .whats-happening-2 .image-wrapper img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; display: block !important; }
/* Content area - left side */ .whats-happening-2 .inner-slide > *:not(.image-wrapper), .whats-happening-2 .content-wrapper { flex: 1 !important; padding: 40px !important; display: flex !important; flex-direction: column !important; justify-content: center !important; background: #F4F2EE !important; }
/* FIRST SLIDE ONLY - Dark background */ .whats-happening-2 .splide__slide:first-child .inner-slide { background: #4A4643 !important; }
.whats-happening-2 .splide__slide:first-child .inner-slide > *:not(.image-wrapper), .whats-happening-2 .splide__slide:first-child .content-wrapper { background: #4A4643 !important; }
/* FIRST SLIDE ONLY - White text */ .whats-happening-2 .splide__slide:first-child .inner-slide h1, .whats-happening-2 .splide__slide:first-child .inner-slide h2, .whats-happening-2 .splide__slide:first-child .inner-slide h3, .whats-happening-2 .splide__slide:first-child .inner-slide p, .whats-happening-2 .splide__slide:first-child .inner-slide li { color: #FFFFFF !important; }
/* Typography */ .whats-happening-2 .inner-slide h1, .whats-happening-2 .inner-slide h2 { margin-top: 0 !important; margin-bottom: 16px !important; font-size: 32px !important; line-height: 1.2 !important; font-weight: 400 !important; letter-spacing: 0 !important; }
.whats-happening-2 .inner-slide p { margin-bottom: 0 !important; line-height: 1.6 !important; font-size: 12px !important; color: #666 !important; letter-spacing: 0 !important; }
.whats-happening-2 .inner-slide li { font-size: 12px !important; letter-spacing: 0 !important; } }
/* =========================== MOBILE STYLES (Below 768px) =========================== */ @media (max-width: 767px) { /* Full width slide on mobile */ .whats-happening-2 .splide__slide { width: 100% !important; min-width: 0 !important; }
/* Card container with border radius */ .whats-happening-2 .splide__slide .inner-slide, .whats-happening-2 .splide__slide--clone .inner-slide, .whats-happening-2 .inner-slide { border-radius: 20px !important; overflow: hidden !important; width: 100% !important; display: flex !important; flex-direction: column !important; background: #F4F2EE !important; }
/* Image wrapper - full width on top */ .whats-happening-2 .splide__slide .image-wrapper, .whats-happening-2 .splide__slide--clone .image-wrapper, .whats-happening-2 .image-wrapper { width: 100% !important; border-radius: 20px 20px 0 0 !important; overflow: hidden !important; aspect-ratio: 16/9 !important; }
/* Image styling */ .whats-happening-2 .image-wrapper img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; }
/* Content area - below image with increased padding */ .whats-happening-2 .inner-slide > *:not(.image-wrapper), .whats-happening-2 .content-wrapper { padding: 32px 32px !important; background: #F4F2EE !important; }
/* FIRST SLIDE ONLY - Dark background */ .whats-happening-2 .splide__slide:first-child .inner-slide { background: #4A4643 !important; }
.whats-happening-2 .splide__slide:first-child .inner-slide > *:not(.image-wrapper), .whats-happening-2 .splide__slide:first-child .content-wrapper { background: #4A4643 !important; }
/* FIRST SLIDE ONLY - White text */ .whats-happening-2 .splide__slide:first-child .inner-slide h1, .whats-happening-2 .splide__slide:first-child .inner-slide h2, .whats-happening-2 .splide__slide:first-child .inner-slide h3, .whats-happening-2 .splide__slide:first-child .inner-slide p, .whats-happening-2 .splide__slide:first-child .inner-slide li { color: #FFFFFF !important; }
/* Typography and content spacing */ .whats-happening-2 .inner-slide h1, .whats-happening-2 .inner-slide h2 { margin-top: 0 !important; margin-bottom: 16px !important; font-size: 24px !important; line-height: 1.2 !important; letter-spacing: 0 !important; }
.whats-happening-2 .inner-slide h3 { margin-top: 24px !important; margin-bottom: 12px !important; font-size: 16px !important; font-weight: 600 !important; letter-spacing: 0 !important; }
.whats-happening-2 .inner-slide p { margin-bottom: 12px !important; line-height: 1.5 !important; font-size: 12px !important; letter-spacing: 0 !important; }
.whats-happening-2 .inner-slide ul { margin-bottom: 16px !important; padding-left: 18px !important; }
.whats-happening-2 .inner-slide li { margin-bottom: 8px !important; line-height: 1.4 !important; font-size: 12px !important; letter-spacing: 0 !important; }
/* Button wrapper if exists */ .whats-happening-2 .button-wrapper { margin-top: 16px !important; border-bottom-left-radius: 20px !important; border-bottom-right-radius: 20px !important; } }
/* =========================== COMMON STYLES (All Devices) =========================== */
/* Ensure smooth transitions */ .whats-happening-2 .splide__slide { transition: transform 0.3s ease !important; }
/* Remove any default margins/padding that might interfere */ .whats-happening-2 .inner-slide { margin: 0 !important; }
/* Ensure proper spacing between slides */ .whats-happening-2 .splide__list { align-items: stretch !important; }
/* Remove default paragraph margins */ .whats-happening-2 .inner-slide > p:first-of-type { margin-top: 0 !important; }
.whats-happening-2 .inner-slide > p:last-child { margin-bottom: 0 !important; }
// Initialize the novos_slider_settings object if it doesn't exist if (typeof window.novos_slider_settings === 'undefined') { window.novos_slider_settings = {}; } window.novos_slider_settings['block_896c1744431e6b78564cef817da4f996'] = {"autoplay":false,"arrows":false,"pagination":true,"perPage":2,"speed":400,"interval":5000,"pauseOnHover":false,"type":"slide","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"8px","direction":"ltr","height":0,"padding_css":"","autoWidth":false,"labelAsDots":false,"breakpoints":{"1024":{"autoplay":true,"arrows":false,"pagination":true,"perPage":1,"speed":400,"interval":5000,"pauseOnHover":false,"type":"slide","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"8px","direction":"ltr","height":0,"padding_css":"","autoWidth":true,"labelAsDots":false},"768":{"autoplay":false,"arrows":false,"pagination":true,"perPage":1,"speed":400,"interval":5000,"pauseOnHover":false,"type":"slide","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"6px","direction":"ltr","height":0,"padding_css":"","autoWidth":false,"labelAsDots":false}}}; window.novos_slider_settings['block_896c1744431e6b78564cef817da4f996-mobile'] = {"autoplay":false,"arrows":false,"pagination":true,"perPage":2,"speed":400,"interval":5000,"pauseOnHover":false,"type":"slide","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"8px","direction":"ltr","height":0,"padding_css":"","autoWidth":false,"labelAsDots":false,"breakpoints":{"1024":{"autoplay":true,"arrows":false,"pagination":true,"perPage":1,"speed":400,"interval":5000,"pauseOnHover":false,"type":"slide","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"8px","direction":"ltr","height":0,"padding_css":"","autoWidth":true,"labelAsDots":false},"768":{"autoplay":false,"arrows":false,"pagination":true,"perPage":1,"speed":400,"interval":5000,"pauseOnHover":false,"type":"slide","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"6px","direction":"ltr","height":0,"padding_css":"","autoWidth":false,"labelAsDots":false}}};
Placebo-Controlled Human Clinical Trial
CLINICALLY OBSERVED SHIFTS IN VASCULAR AGING MARKERS
- What they did: Independent university investigators conducted a randomized, double-blind, placebo-controlled human clinical trial in adults 40+, evaluating NOVOS Core Clinical as a complete formulation over six months using validated vascular biomarkers.
- What they found: Compared with placebo, NOVOS Core Clinical showed statistically significant improvements in:
• endothelial function (+3.4% FMD)
• arterial flexibility (-1.18 m/s PWV)
• systolic blood pressure (-8.5 mmHg)
Effect sizes were larger than those typically reported for commonly studied supplements and lifestyle approaches, including beetroot/nitrates, cocoa flavanols, omega-3s, DASH-style diets, and aerobic or HIIT exercise. - Why that matters: Randomized human trials demonstrating measurable changes across multiple aging-related systems are exceptionally rare in the supplement category, providing first-of-its-kind human evidence of simultaneous, positive effects on endothelial function, arterial flexibility, and healthy blood pressure already within the normal range from a single, multi-component nutritional intervention.*
Read full clinical summary here
Preclinical Lifespan Study
MOUSE LIFESPAN STUDY
- What they did: Researchers evaluated NOVOS Core Clinical in a controlled preclinical mouse model across the full adult lifespan.
- What they found: Mice receiving NOVOS Core Clinical lived over 18% longer on average than controls — a magnitude of effect uncommon for multi-ingredient formulations and more typically associated with interventions studied in aging biology research.
- Why that matters: Lifespan studies in animals are a foundational step in aging science for assessing whole-body biological effects. While results in animal models do not necessarily predict human outcomes, these findings, alongside mechanistic and human clinical research, provide additional evidence of system-level biological activity in vivo.*
Read full study details here
Epigenetic Aging Analysis
EPIGENETIC AGING ASSESSMENT
- What was done: A group of first-time NOVOS Core Clinical customers completed DNA methylation–based epigenetic age testing through an independent third-party laboratory before and after six months of use, while maintaining their usual diet and lifestyle.
- What was observed: Follow-up testing showed favorable directional shifts in validated epigenetic aging biomarkers, including DunedinPACE, corresponding on average to approximately one month per year in a slower pace of biological aging across the group.
- Why that matters: Epigenetic clocks are widely used research tools that estimate biological aging by analyzing DNA methylation patterns. While these observational results are exploratory and not diagnostic or predictive of individual outcomes, they provide additional real-world data on how NOVOS Core Clinical may support aging-related biology over time.*
Learn more about epigenetic analysis and biological age measurement here
Skin Elasticity Assessment
SKIN HEALTH & FIRMNESS
EVALUATION
- What they did: In a small preliminary pilot evaluation, individuals took NOVOS Core Clinical daily for six months. Skin firmness and elasticity were measured using an indentometer, an objective device commonly used to assess skin mechanical properties.
- What they found: Indentometer measurements showed increases in skin firmness ranging from 12% to 40%, with an average improvement of 22% across the group.
- Why that matters: Indentometer testing provides quantifiable insight into structural skin properties over time. While preliminary, these results suggest that supporting foundational biological pathways may also help maintain skin firmness and resilience.*
Learn more about the skin health assessment here
In Vitro Study
REDUCTION IN DNA STRAND
BREAKS FROM CHEMICAL STRESSORS*
- What they did: University of Bologna researchers evaluated NOVOS Core Clinical in a controlled 3D human skin-cell model exposed to chemical stress, measuring laboratory markers associated with DNA damage and oxidative stress.
- What they found: Cells pre-treated with NOVOS showed lower laboratory signals associated with DNA strand breaks and oxidative stress compared with untreated stressed cells.
- Why that matters: DNA integrity and oxidative stress response are fundamental processes studied in aging biology. These laboratory findings provide mechanistic evidence of cellular resilience, but do not represent effects in humans.*
Read full study here
*Laboratory research only. These findings are from in vitro (cell-based) studies and do not demonstrate effects in humans. Results from laboratory models may not reflect how the product performs in the human body. This product is not intended to diagnose, treat, cure, or prevent any disease.
In Vitro Study
INFLAMMATION SIGNAL MODULATION*
- What they did: Researchers at the Salk Institute for Biological Studies evaluated NOVOS Core Clinical ingredient combinations in controlled neuronal and microglial cell models, measuring laboratory markers associated with cellular stress and inflammatory signaling.
- What they found: The combined formulation demonstrated stronger activity than individual ingredients and favorably reduced nitric oxide output in activated microglial cells — a common laboratory readout used to assess inflammatory signaling in vitro.
- Why that matters: Cellular stress and inflammatory signaling pathways are widely studied in aging biology. These laboratory findings provide mechanistic support for how coordinated ingredient combinations may influence cellular resilience, but do not represent human outcomes.*
Read full study here
*Laboratory research only. These findings are from in vitro (cell-based) studies and do not demonstrate effects in humans. Results from laboratory models may not reflect how the product performs in the human body. This product is not intended to diagnose, treat, cure, or prevent any disease.
In Vitro Study
SENESCENT
CELL SUPPORT*
- What they did: Researchers at Newcastle University tested NOVOS Core Clinical ingredient combinations in human cells grown in the lab that displayed characteristics of cellular senescence — a state where older, stressed cells stop functioning optimally and cause inflammation.
- What they found: The combined formulation showed positive effects on senescent cells, reducing their size by approximately 50%, while healthy, non-senescent cells were not measurably affected.
- Why that matters: Cellular senescence is one of the recognized hallmarks of aging. These laboratory findings help explain how coordinated ingredients may support cellular resilience, but they do not represent effects in humans.*
Read full study here
*Laboratory research only. These findings are from in vitro (cell-based) studies and do not demonstrate effects in humans. Results from laboratory models may not reflect how the product performs in the human body. This product is not intended to diagnose, treat, cure, or prevent any disease.
In Vitro Study
REDUCTION IN
DNA OXIDATIVE DAMAGE*
- What they did: An independent laboratory evaluated NOVOS Core Clinical ingredient combinations in human endothelial cells exposed to irradiation, measuring 8-OHdG — a widely used laboratory marker measuring oxidative DNA damage.
- What they found: Cells pre-treated with the NOVOS Core Clinical formulation showed substantially lower 8-OHdG levels across multiple doses, with laboratory markers up to 77% lower (68% lower on average) compared with untreated stressed cells.
- Why that matters: DNA integrity and oxidative stress responses are fundamental processes studied in aging biology. These laboratory findings provide mechanistic insight into cellular resilience under stress, but do not represent effects in humans.*
Read full study here
*Laboratory research only. These findings are from in vitro (cell-based) studies and do not demonstrate effects in humans. Results from laboratory models may not reflect how the product performs in the human body. This product is not intended to diagnose, treat, cure, or prevent any disease.
Placebo-Controlled Human Clinical Trial
CLINICALLY OBSERVED SHIFTS IN VASCULAR AGING MARKERS
- What they did: Independent university investigators conducted a randomized, double-blind, placebo-controlled human clinical trial in adults 40+, evaluating NOVOS Core Clinical as a complete formulation over six months using validated vascular biomarkers.
- What they found: Compared with placebo, NOVOS Core Clinical showed statistically significant improvements in:
• endothelial function (+3.4% FMD)
• arterial flexibility (-1.18 m/s PWV)
• systolic blood pressure (-8.5 mmHg)
Effect sizes were larger than those typically reported for commonly studied supplements and lifestyle approaches, including beetroot/nitrates, cocoa flavanols, omega-3s, DASH-style diets, and aerobic or HIIT exercise. - Why that matters: Randomized human trials demonstrating measurable changes across multiple aging-related systems are exceptionally rare in the supplement category, providing first-of-its-kind human evidence of simultaneous, positive effects on endothelial function, arterial flexibility, and healthy blood pressure already within the normal range from a single, multi-component nutritional intervention.*
Read full clinical summary here
Preclinical Lifespan Study
MOUSE LIFESPAN STUDY
- What they did: Researchers evaluated NOVOS Core Clinical in a controlled preclinical mouse model across the full adult lifespan.
- What they found: Mice receiving NOVOS Core Clinical lived over 18% longer on average than controls — a magnitude of effect uncommon for multi-ingredient formulations and more typically associated with interventions studied in aging biology research.
- Why that matters: Lifespan studies in animals are a foundational step in aging science for assessing whole-body biological effects. While results in animal models do not necessarily predict human outcomes, these findings, alongside mechanistic and human clinical research, provide additional evidence of system-level biological activity in vivo.*
Read full study details here
Epigenetic Aging Analysis
EPIGENETIC AGING ASSESSMENT
- What was done: A group of first-time NOVOS Core Clinical customers completed DNA methylation–based epigenetic age testing through an independent third-party laboratory before and after six months of use, while maintaining their usual diet and lifestyle.
- What was observed: Follow-up testing showed favorable directional shifts in validated epigenetic aging biomarkers, including DunedinPACE, corresponding on average to approximately one month per year in a slower pace of biological aging across the group.
- Why that matters: Epigenetic clocks are widely used research tools that estimate biological aging by analyzing DNA methylation patterns. While these observational results are exploratory and not diagnostic or predictive of individual outcomes, they provide additional real-world data on how NOVOS Core Clinical may support aging-related biology over time.*
Learn more about epigenetic analysis and biological age measurement here
Skin Elasticity Assessment
SKIN HEALTH & FIRMNESS
EVALUATION
- What they did: In a small preliminary pilot evaluation, individuals took NOVOS Core Clinical daily for six months. Skin firmness and elasticity were measured using an indentometer, an objective device commonly used to assess skin mechanical properties.
- What they found: Indentometer measurements showed increases in skin firmness ranging from 12% to 40%, with an average improvement of 22% across the group.
- Why that matters: Indentometer testing provides quantifiable insight into structural skin properties over time. While preliminary, these results suggest that supporting foundational biological pathways may also help maintain skin firmness and resilience.*
Learn more about the skin health assessment here
In Vitro Study
REDUCTION IN DNA STRAND
BREAKS FROM CHEMICAL STRESSORS*
- What they did: University of Bologna researchers evaluated NOVOS Core Clinical in a controlled 3D human skin-cell model exposed to chemical stress, measuring laboratory markers associated with DNA damage and oxidative stress.
- What they found: Cells pre-treated with NOVOS showed lower laboratory signals associated with DNA strand breaks and oxidative stress compared with untreated stressed cells.
- Why that matters: DNA integrity and oxidative stress response are fundamental processes studied in aging biology. These laboratory findings provide mechanistic evidence of cellular resilience, but do not represent effects in humans.*
Read full study here
*Laboratory research only. These findings are from in vitro (cell-based) studies and do not demonstrate effects in humans. Results from laboratory models may not reflect how the product performs in the human body. This product is not intended to diagnose, treat, cure, or prevent any disease.
In Vitro Study
INFLAMMATION SIGNAL MODULATION*
- What they did: Researchers at the Salk Institute for Biological Studies evaluated NOVOS Core Clinical ingredient combinations in controlled neuronal and microglial cell models, measuring laboratory markers associated with cellular stress and inflammatory signaling.
- What they found: The combined formulation demonstrated stronger activity than individual ingredients and favorably reduced nitric oxide output in activated microglial cells — a common laboratory readout used to assess inflammatory signaling in vitro.
- Why that matters: Cellular stress and inflammatory signaling pathways are widely studied in aging biology. These laboratory findings provide mechanistic support for how coordinated ingredient combinations may influence cellular resilience, but do not represent human outcomes.*
Read full study here
*Laboratory research only. These findings are from in vitro (cell-based) studies and do not demonstrate effects in humans. Results from laboratory models may not reflect how the product performs in the human body. This product is not intended to diagnose, treat, cure, or prevent any disease.
In Vitro Study
SENESCENT
CELL SUPPORT*
- What they did: Researchers at Newcastle University tested NOVOS Core Clinical ingredient combinations in human cells grown in the lab that displayed characteristics of cellular senescence — a state where older, stressed cells stop functioning optimally and cause inflammation.
- What they found: The combined formulation showed positive effects on senescent cells, reducing their size by approximately 50%, while healthy, non-senescent cells were not measurably affected.
- Why that matters: Cellular senescence is one of the recognized hallmarks of aging. These laboratory findings help explain how coordinated ingredients may support cellular resilience, but they do not represent effects in humans.*
Read full study here
*Laboratory research only. These findings are from in vitro (cell-based) studies and do not demonstrate effects in humans. Results from laboratory models may not reflect how the product performs in the human body. This product is not intended to diagnose, treat, cure, or prevent any disease.
In Vitro Study
REDUCTION IN
DNA OXIDATIVE DAMAGE*
- What they did: An independent laboratory evaluated NOVOS Core Clinical ingredient combinations in human endothelial cells exposed to irradiation, measuring 8-OHdG — a widely used laboratory marker measuring oxidative DNA damage.
- What they found: Cells pre-treated with the NOVOS Core Clinical formulation showed substantially lower 8-OHdG levels across multiple doses, with laboratory markers up to 77% lower (68% lower on average) compared with untreated stressed cells.
- Why that matters: DNA integrity and oxidative stress responses are fundamental processes studied in aging biology. These laboratory findings provide mechanistic insight into cellular resilience under stress, but do not represent effects in humans.*
Read full study here
*Laboratory research only. These findings are from in vitro (cell-based) studies and do not demonstrate effects in humans. Results from laboratory models may not reflect how the product performs in the human body. This product is not intended to diagnose, treat, cure, or prevent any disease.
Start now
Human Clinical Trial Results
In a randomized, double-blind, placebo-controlled human clinical trial, NOVOS Core Clinical demonstrated statistically significant improvements versus placebo across validated cardiovascular biomarkers used in aging research.*
// Initialize the novos_slider_settings object if it doesn't exist if (typeof window.novos_slider_settings === 'undefined') { window.novos_slider_settings = {}; } window.novos_slider_settings['block_4bf3f4ff173fe445d50aa1500ef0dde6'] = {"autoplay":false,"arrows":false,"pagination":false,"perPage":3,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"slide","mediaQuery":"max","smooth_scroll":true,"peek_slide":false,"gap":"8px","direction":"ltr","height":0,"padding_css":"","drag":"free","autoScroll":{"speed":1,"rewind":true},"autoWidth":false,"labelAsDots":false,"breakpoints":{"1024":{"autoplay":false,"arrows":true,"pagination":false,"perPage":2,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","smooth_scroll":true,"peek_slide":false,"add_gap":false,"gap":0,"direction":"ltr","height":0,"padding_css":"","drag":"free","autoScroll":{"speed":1,"rewind":true},"autoWidth":false,"labelAsDots":false},"768":{"autoplay":false,"arrows":true,"pagination":false,"perPage":1,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","smooth_scroll":true,"peek_slide":false,"add_gap":false,"gap":0,"direction":"ltr","height":0,"padding_css":"","drag":"free","autoScroll":{"speed":1,"rewind":true},"autoWidth":false,"labelAsDots":false}}};
Endothelial Function (Circulation)
NOVOS Core Clinical supported healthy endothelial responsiveness with sustained effects measuring approximately 1.26x to 4.65x of leading studied supplements, outperforming tea polyphenols, cocoa flavanols, beetroot nitrates, and demonstrating effects comparable to those reported for weight loss, aerobic exercise, and resistance training.* Learn more.
Arterial Flexibility (Blood Vessels)
NOVOS Core Clinical helped support healthy arterial flexibility with effect sizes exceeding those reported for magnesium and omega-3s, and comparable to published results for weight loss, DASH heart health diets, and structured exercise — an effect rarely observed with dietary supplements.* Learn more.
Systolic Blood Pressure Support
Supported ~8.5–8.7 mmHg differences in systolic blood pressure vs. placebo in adults already in the normal range, exceeding effect sizes reported for common supplements including beetroot/nitrate and potassium, and demonstrating magnitudes of support comparable to those observed for Mediterranean and DASH-style diets and High Intensity Interval Training (HIIT).* Learn more.
*These statements have not been evaluated by the FDA. This product is not intended to diagnose, treat, cure, or prevent any disease.
The first to design a formulation addressing
all 12 biological hallmarks of aging,
years ahead of the field.
/* Force equal height on track and list */ .biological-hallmark-core .splide__track, .biological-hallmark-core .splide__list { display: flex !important; align-items: stretch !important; }
/* Make all slides equal height */ .biological-hallmark-core .splide__slide { height: auto !important; display: flex !important; flex-direction: column !important; }
/* Ensure inner wrapper stretches */ .biological-hallmark-core .splide__slide > div { height: 100%; display: flex; flex-direction: column; }
/* Target content-wrapper for background and border radius */ .biological-hallmark-core .content-wrapper { background-color: #F4F2EE !important; border-radius: 0 0 30px 30px !important; overflow: hidden; display: flex !important; flex-direction: column !important; flex: 1 !important; padding: 32px 40px 40px; gap: 16px; }
.biological-hallmark-core p { background: white !important; padding: 10px !important; border-radius: 20px !important; justify-content: center !important; display: inline-flex !important; margin-bottom: 0px !important; }
/* Image styling - at the top */ .biological-hallmark-core .splide__slide img { width: 100%; height: auto; display: block; border-radius: 16px 16px 0 0; }
/* Heading */ .biological-hallmark-core h4 { font-family: 'Inter Tight', sans-serif; margin: 0 0 24px 0; font-size: 20px; font-weight: 600; text-align: center; }
/* Plain text spans - NO white background */ .biological-hallmark-core .content-wrapper > span { background: none !important; border-radius: 0 !important; padding: 0 !important; text-align: left !important; font-family: 'Inter Tight', sans-serif !important; font-size: 16px !important; font-weight: 400 !important; color: #5C4D42 !important; width: 100% !important; box-sizing: border-box !important; letter-spacing: 0 !important; display: block !important; white-space: normal !important; line-height: 1.5 !important; }
/* Remove any p tag styling */ .biological-hallmark-core .novos-slider-wrap.is-style-extended-variant-1 .inner-slide .content-wrapper p { background: none !important; border-radius: 0 !important; padding: 0 !important; margin: 0 0 16px 0 !important; text-align: left; color: #5C4D42; font-size: 16px; }
// Initialize the novos_slider_settings object if it doesn't exist if (typeof window.novos_slider_settings === 'undefined') { window.novos_slider_settings = {}; } window.novos_slider_settings['block_e4ae89b614c0b8cda38b5fc8a0a39fbd'] = {"autoplay":false,"arrows":false,"pagination":false,"perPage":3,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":1,"rewind":true},"grid":"[[1,1]]","smooth_scroll":true,"peek_slide":false,"gap":"8px","direction":"ltr","height":0,"drag":"free","autoWidth":true,"labelAsDots":false,"padding":{"left":"8.6%","right":"8.6%"},"breakpoints":{"1024":{"autoplay":false,"arrows":false,"pagination":false,"perPage":2,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":1,"rewind":true},"grid":"[[1,1]]","smooth_scroll":true,"peek_slide":false,"gap":"8px","direction":"ltr","height":0,"drag":"free","autoWidth":true,"labelAsDots":false,"padding":{"left":"8.6%","right":"8.6%"}},"768":{"autoplay":false,"arrows":false,"pagination":false,"perPage":1,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":1,"rewind":true},"grid":"[[1,1]]","smooth_scroll":true,"peek_slide":false,"gap":"6px","direction":"ltr","height":0,"drag":"free","autoWidth":true,"labelAsDots":false,"padding":{"left":"36px","right":"36px"}}}}; window.novos_slider_settings['block_e4ae89b614c0b8cda38b5fc8a0a39fbd-mobile'] = {"autoplay":false,"arrows":false,"pagination":false,"perPage":3,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":1,"rewind":true},"grid":"[[1,1]]","smooth_scroll":true,"peek_slide":false,"gap":"8px","direction":"ltr","height":0,"drag":"free","autoWidth":true,"labelAsDots":false,"padding":{"left":"8.6%","right":"8.6%"},"breakpoints":{"1024":{"autoplay":false,"arrows":false,"pagination":false,"perPage":2,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":1,"rewind":true},"grid":"[[1,1]]","smooth_scroll":true,"peek_slide":false,"gap":"8px","direction":"ltr","height":0,"drag":"free","autoWidth":true,"labelAsDots":false,"padding":{"left":"8.6%","right":"8.6%"}},"768":{"autoplay":false,"arrows":false,"pagination":false,"perPage":1,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":1,"rewind":true},"grid":"[[1,1]]","smooth_scroll":true,"peek_slide":false,"gap":"6px","direction":"ltr","height":0,"drag":"free","autoWidth":true,"labelAsDots":false,"padding":{"left":"36px","right":"36px"}}}};
Cellular Cleanup & Quality Control
1. Cellular senescence balance
2. Protein quality control (proteostasis)
3. Autophagy & cellular recycling
Energy & Metabolic Function
4. Mitochondrial energy production
5. Nutrient sensing pathways
6. Gut microbiome balance
Genomic & Epigenetic Stability
7. DNA integrity & maintenance
8. Epigenetic regulation
9. Stem cell health & renewal potential
Inflammation & Tissue Communication
10. Healthy inflammatory balance
11. Intercellular communication
12. Extracellular matrix & tissue structure
Cellular Cleanup & Quality Control
1. Cellular senescence balance
2. Protein quality control (proteostasis)
3. Autophagy & cellular recycling
Energy & Metabolic Function
4. Mitochondrial energy production
5. Nutrient sensing pathways
6. Gut microbiome balance
Genomic & Epigenetic Stability
7. DNA integrity & maintenance
8. Epigenetic regulation
9. Stem cell health & renewal potential
Inflammation & Tissue Communication
10. Healthy inflammatory balance
11. Intercellular communication
12. Extracellular matrix & tissue structure
Start now
What You’ll Actually Feel
& What’s Happening
When you support the fundamental drivers of aging, you optimize how your cells function — and how you look and feel today and for years to come.
/* =========================== DESKTOP STYLES (1024px and up) =========================== */ @media (min-width: 1024px) { /* Slider track and list setup */ .whats-happening .splide__track { padding: 0 !important; }
.whats-happening .splide__list { display: flex !important; gap: 15px !important; }
/* Each slide takes 50% width minus half the gap */ .whats-happening .splide__slide { width: calc(50% - 7.5px) !important; min-width: 0 !important; max-width: none !important; flex-shrink: 0 !important; }
/* Card container with border radius */ .whats-happening .splide__slide .inner-slide, .whats-happening .splide__slide--clone .inner-slide, .whats-happening .inner-slide { border-radius: 24px !important; overflow: hidden !important; width: 100% !important; height: 100% !important; display: flex !important; flex-direction: row !important; background: #ffffff !important; }
/* Image wrapper - left side, 40% width */ .whats-happening .splide__slide .image-wrapper, .whats-happening .splide__slide--clone .image-wrapper, .whats-happening .image-wrapper { width: 40% !important; flex-shrink: 0 !important; border-radius: 24px 0 0 24px !important; overflow: hidden !important; position: relative !important; height: 100% !important; }
/* Image styling - full height coverage */ .whats-happening .image-wrapper img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; display: block !important; }
/* Content area - right side, auto width */ .whats-happening .inner-slide > *:not(.image-wrapper) { /* flex: 1 !important; padding: 48px 50px !important; display: flex !important; flex-direction: column !important; justify-content: center !important;*/ background: #F4F2EE !important; }
/* Typography and content spacing */ .whats-happening .inner-slide h1, .whats-happening .inner-slide h2 { margin-top: 0 !important; margin-bottom: 16px !important; font-size: 36px !important; line-height: 1.2 !important; font-weight: 400 !important; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; letter-spacing: 0px !important; }
.whats-happening .inner-slide h3 { margin-top: 32px !important; margin-bottom: 16px !important; font-size: 18px !important; font-weight: 600 !important; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; letter-spacing: 0px !important; }
.whats-happening .inner-slide p { margin-bottom: 0 !important; line-height: 1.6 !important; font-size: 16px !important; color: #666 !important; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; letter-spacing: 0px !important; }
.whats-happening .inner-slide ul { padding-left: 20px !important; }
.whats-happening .inner-slide li { margin-bottom: 12px !important; line-height: 1.5 !important; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; letter-spacing: 0px !important; }
/* Button wrapper if exists */ .whats-happening .button-wrapper { margin-top: auto !important; padding-top: 24px !important; } }
/* =========================== TABLET STYLES (768px - 1023px) =========================== */ @media (min-width: 768px) and (max-width: 1023px) { /* Slider track and list setup */ .whats-happening .splide__track { padding: 0 !important; }
.whats-happening .splide__list { display: flex !important; gap: 15px !important; }
/* Full width slide on tablet */ .whats-happening .splide__slide { width: 100% !important; min-width: 0 !important; max-width: none !important; flex-shrink: 0 !important; }
/* Card container with border radius */ .whats-happening .splide__slide .inner-slide, .whats-happening .splide__slide--clone .inner-slide, .whats-happening .inner-slide { border-radius: 24px !important; overflow: hidden !important; width: 100% !important; height: 100% !important; display: flex !important; flex-direction: row !important; background: #ffffff !important; }
/* Image wrapper - left side */ .whats-happening .splide__slide .image-wrapper, .whats-happening .splide__slide--clone .image-wrapper, .whats-happening .image-wrapper { width: 40% !important; flex-shrink: 0 !important; border-radius: 24px 0 0 24px !important; overflow: hidden !important; position: relative !important; height: 100% !important; }
/* Image styling - full height coverage */ .whats-happening .image-wrapper img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; display: block !important; }
/* Content area - right side */ .whats-happening .inner-slide > *:not(.image-wrapper) { flex: 1 !important; padding: 40px !important; display: flex !important; flex-direction: column !important; justify-content: center !important; background: #F4F2EE !important; }
/* Typography */ .whats-happening .inner-slide h1, .whats-happening .inner-slide h2 { margin-top: 0 !important; margin-bottom: 16px !important; font-size: 32px !important; line-height: 1.2 !important; font-weight: 400 !important; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; letter-spacing: 0px !important; }
.whats-happening .inner-slide p { margin-bottom: 0 !important; line-height: 1.6 !important; font-size: 15px !important; color: #666 !important; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; letter-spacing: 0px !important; } }
/* =========================== MOBILE STYLES (Below 768px) =========================== */ @media (max-width: 767px) { /* Full width slide on mobile */ .whats-happening .splide__slide { width: 100% !important; min-width: 0 !important; height: auto !important; }
/* Ensure all slides have equal height */ .whats-happening .splide__list { display: flex !important; align-items: stretch !important; }
/* Card container with border radius */ .whats-happening .splide__slide .inner-slide, .whats-happening .splide__slide--clone .inner-slide, .whats-happening .inner-slide { border-radius: 20px !important; overflow: hidden !important; width: 100% !important; height: 100% !important; display: flex !important; flex-direction: column !important; }
/* Image wrapper - full width on top */ .whats-happening .splide__slide .image-wrapper, .whats-happening .splide__slide--clone .image-wrapper, .whats-happening .image-wrapper { width: 100% !important; border-radius: 20px 20px 0 0 !important; overflow: hidden !important; aspect-ratio: 16/9 !important; flex-shrink: 0 !important; }
/* Image styling */ .whats-happening .image-wrapper img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; }
/* Content area - below image */ .whats-happening .inner-slide > *:not(.image-wrapper) { width: 100% !important; padding: 24px 20px !important; background: #F4F2EE !important; flex: 1 !important; display: flex !important; flex-direction: column !important; }
/* Typography and content spacing */ .whats-happening .inner-slide h1, .whats-happening .inner-slide h2 { margin-top: 0 !important; margin-bottom: 16px !important; font-size: 24px !important; line-height: 1.2 !important; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; letter-spacing: 0px !important; }
.whats-happening .inner-slide h3 { margin-top: 24px !important; margin-bottom: 12px !important; font-size: 16px !important; font-weight: 600 !important; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; letter-spacing: 0px !important; }
.whats-happening .inner-slide p { margin-bottom: 12px !important; line-height: 1.5 !important; font-size: 14px !important; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; letter-spacing: 0px !important; }
.whats-happening .inner-slide ul { margin-bottom: 16px !important; padding-left: 18px !important; }
.whats-happening .inner-slide li { line-height: 1.4 !important; font-size: 14px !important; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; letter-spacing: 0px !important; }
/* Button wrapper if exists */ .whats-happening .button-wrapper { margin-top: 16px !important; border-bottom-left-radius: 20px !important; border-bottom-right-radius: 20px !important; } }
/* =========================== COMMON STYLES (All Devices) =========================== */
/* Ensure smooth transitions */ .whats-happening .splide__slide { transition: transform 0.3s ease !important; }
/* Remove any default margins/padding that might interfere */ .whats-happening .inner-slide { margin: 0 !important; }
/* Ensure proper spacing between slides */ .whats-happening .splide__list { align-items: stretch !important; }
/* Remove default paragraph margins */ .whats-happening .inner-slide > p:first-of-type { margin-top: 0 !important; }
.whats-happening .inner-slide > p:last-child { margin-bottom: 0 !important; }
/* Apply Inter Tight font and letter spacing to all text elements */ .whats-happening .inner-slide, .whats-happening .inner-slide *, .whats-happening .content-wrapper, .whats-happening .content-wrapper * { font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; letter-spacing: 0px !important; }
// Initialize the novos_slider_settings object if it doesn't exist if (typeof window.novos_slider_settings === 'undefined') { window.novos_slider_settings = {}; } window.novos_slider_settings['block_253ef87a31783f9f90870ed72e5b1908'] = {"autoplay":true,"arrows":false,"pagination":true,"perPage":2,"speed":400,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"8px","direction":"ltr","height":0,"padding_css":"","autoWidth":false,"labelAsDots":false,"breakpoints":{"1024":{"autoplay":true,"arrows":false,"pagination":true,"perPage":1,"speed":400,"interval":5000,"pauseOnHover":false,"type":"slide","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"8px","direction":"ltr","height":0,"padding_css":"","autoWidth":true,"labelAsDots":false},"768":{"autoplay":false,"arrows":false,"pagination":true,"perPage":1,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":1,"rewind":true},"grid":"[[1,1]]","smooth_scroll":true,"peek_slide":false,"gap":"6px","direction":"ltr","height":0,"padding_css":"","drag":"free","autoWidth":true,"labelAsDots":false}}}; window.novos_slider_settings['block_253ef87a31783f9f90870ed72e5b1908-mobile'] = {"autoplay":true,"arrows":false,"pagination":true,"perPage":2,"speed":400,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"8px","direction":"ltr","height":0,"padding_css":"","autoWidth":false,"labelAsDots":false,"breakpoints":{"1024":{"autoplay":true,"arrows":false,"pagination":true,"perPage":1,"speed":400,"interval":5000,"pauseOnHover":false,"type":"slide","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"8px","direction":"ltr","height":0,"padding_css":"","autoWidth":true,"labelAsDots":false},"768":{"autoplay":false,"arrows":false,"pagination":true,"perPage":1,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":1,"rewind":true},"grid":"[[1,1]]","smooth_scroll":true,"peek_slide":false,"gap":"6px","direction":"ltr","height":0,"padding_css":"","drag":"free","autoWidth":true,"labelAsDots":false}}};
Heart Health
Clinically Studied in a Placebo-Controlled Human Trial
Benefits†
- Support vascular resilience and flexibility
- Help maintain healthy blood flow and blood pressure already within the normal range
- Clinically demonstrated support for key markers of vascular aging
Aging Pathways Supported
- Endothelial function
- Arterial elasticity
- Healthy blood pressure balance
- Cellular resilience & metabolic signaling
†Based on a randomized double-blind placebo controlled human clinical study that measured statistically significant improvements vs. placebo for functional markers of blood flow (FMD), blood vessel elasticity (PWV), and maintenance of blood pressure already in the normal range. This statement has not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Energy & Stamina
Benefits†
- More consistent, steady energy throughout the day
- Supports stamina and physical capacity
- Many people notice changes within the first few weeks, with continued benefits over time†
Aging Pathways Supported
- Mitochondrial energy production
- Nutrient sensing & metabolic efficiency
- Cellular repair and stress response
†Based on customer-reported outcomes and human clinical research of individual component ingredients of the formulation. This statement has not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Brain & Mood
Benefits†
- Supports focus and clear thinking
- Helps maintain memory and cognitive function
- Supports balanced mood and emotional well-being
Aging Pathways Supported
- Healthy inflammatory balance
- Cellular communication & synaptic function
- Cellular resilience & stress response
†Based on customer-reported outcomes and human clinical research of individual component ingredients of the formulation. This statement has not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Skin Health
Benefits†
- Supports skin firmness, elasticity, and resilience
- Helps improve the look and feel of skin over time
- Many people notice visible changes within weeks, with continued improvements over months†
Aging Pathways Supported
- Collagen structure & extracellular matrix integrity
- Skin barrier function & hydration balance
- Cellular energy & metabolic processes
†Based on customer-reported outcomes and human clinical research of individual component ingredients of the formulation. This statement has not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Healthy Aging & Longevity
Benefits†
- Supports long-term vitality and performance as you age
- Coordinated support across multiple biological systems
- One complete daily formula instead of complex supplement stacks
Aging Pathways Supported
- Designed around all 12 biological hallmarks of aging
- Cellular maintenance & resilience
- System-wide metabolic & signaling balance
†Based on a placebo controlled human clinical study that observed statistically significant nutritional support vs. placebo for biological systems predictive of lifespan and healthspan. This statement has not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Heart Health
Clinically Studied in a Placebo-Controlled Human Trial
Benefits†
- Support vascular resilience and flexibility
- Help maintain healthy blood flow and blood pressure already within the normal range
- Clinically demonstrated support for key markers of vascular aging
Aging Pathways Supported
- Endothelial function
- Arterial elasticity
- Healthy blood pressure balance
- Cellular resilience & metabolic signaling
†Based on a randomized double-blind placebo controlled human clinical study that measured statistically significant improvements vs. placebo for functional markers of blood flow (FMD), blood vessel elasticity (PWV), and maintenance of blood pressure already in the normal range. This statement has not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Energy & Stamina
Benefits†
- More consistent, steady energy throughout the day
- Supports stamina and physical capacity
- Many people notice changes within the first few weeks, with continued benefits over time†
Aging Pathways Supported
- Mitochondrial energy production
- Nutrient sensing & metabolic efficiency
- Cellular repair and stress response
†Based on customer-reported outcomes and human clinical research of individual component ingredients of the formulation. This statement has not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Brain & Mood
Benefits†
- Supports focus and clear thinking
- Helps maintain memory and cognitive function
- Supports balanced mood and emotional well-being
Aging Pathways Supported
- Healthy inflammatory balance
- Cellular communication & synaptic function
- Cellular resilience & stress response
†Based on customer-reported outcomes and human clinical research of individual component ingredients of the formulation. This statement has not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Skin Health
Benefits†
- Supports skin firmness, elasticity, and resilience
- Helps improve the look and feel of skin over time
- Many people notice visible changes within weeks, with continued improvements over months†
Aging Pathways Supported
- Collagen structure & extracellular matrix integrity
- Skin barrier function & hydration balance
- Cellular energy & metabolic processes
†Based on customer-reported outcomes and human clinical research of individual component ingredients of the formulation. This statement has not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Healthy Aging & Longevity
Benefits†
- Supports long-term vitality and performance as you age
- Coordinated support across multiple biological systems
- One complete daily formula instead of complex supplement stacks
Aging Pathways Supported
- Designed around all 12 biological hallmarks of aging
- Cellular maintenance & resilience
- System-wide metabolic & signaling balance
†Based on a placebo controlled human clinical study that observed statistically significant nutritional support vs. placebo for biological systems predictive of lifespan and healthspan. This statement has not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Timeline
of Change
Clinically observed biological shifts begin early
and build with consistent daily use.
Grounded in human clinical research and supported by mechanistic,
preclinical lifespan, and epigenetic studies.
/* Add border radius to ALL card containers (including clones) */ .timeline-of-change .splide__slide .inner-slide, .timeline-of-change .splide__slide--clone .inner-slide, .timeline-of-change .inner-slide { overflow: hidden !important; display: flex !important; flex-direction: column !important; height: 100% !important; }
/* Ensure all slides have equal height */ .timeline-of-change .splide__slide { height: auto !important; }
.timeline-of-change .splide__list { display: flex !important; align-items: stretch !important; }
/* Ensure image stays rounded at top on ALL slides */ .timeline-of-change .splide__slide .image-wrapper, .timeline-of-change .splide__slide--clone .image-wrapper, .timeline-of-change .image-wrapper { border-radius: 30px 30px 0 0 !important; flex-shrink: 0 !important; }
/* Content wrapper styling */ .timeline-of-change .content-wrapper { background: #F4F2EE !important; border-radius: 0 0 30px 30px !important; flex: 1 !important; display: flex !important; flex-direction: column !important; }
/* Badge Styling - Full width pill with centered text */ .timeline-of-change .badge { margin-bottom: 20px !important; width: 100% !important; display: block !important; }
.timeline-of-change .badge .badge-inner { background: #EBE8E1 !important; border-radius: 30px !important; height: auto !important; border: none !important; padding: 10px 24px !important; backdrop-filter: none !important; width: 100% !important; display: flex !important; justify-content: center !important; align-items: center !important; text-align: center !important; }
.timeline-of-change .badge .badge-content { color: #4A2C1A !important; font-size: 18px !important; font-weight: 600 !important; line-height: 1.2 !important; letter-spacing: 0px !important; text-align: center !important; width: 100% !important; font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; }
/* Ensure bottom border radius on ALL slides */ .timeline-of-change .splide__slide .button-wrapper, .timeline-of-change .splide__slide--clone .button-wrapper, .timeline-of-change .button-wrapper { border-bottom-left-radius: 30px !important; border-bottom-right-radius: 30px !important; }
/* Apply Inter Tight font and letter spacing to all text elements */ .timeline-of-change .title-wrapper, .timeline-of-change .description-wrapper, .timeline-of-change .splide__slide, .timeline-of-change .inner-slide { font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; letter-spacing: 0px !important; }
/* Make description wrapper flexible to push button to bottom */ .timeline-of-change .description-wrapper { flex: 1 !important; }
/* Force letter-spacing on all text elements inside cards */ .timeline-of-change .inner-slide *, .timeline-of-change .content-wrapper *, .timeline-of-change .title-wrapper *, .timeline-of-change .description-wrapper *, .timeline-of-change .badge *, .timeline-of-change h1, .timeline-of-change h2, .timeline-of-change h3, .timeline-of-change h4, .timeline-of-change h5, .timeline-of-change h6, .timeline-of-change p, .timeline-of-change span, .timeline-of-change div { letter-spacing: 0px !important; }
// Initialize the novos_slider_settings object if it doesn't exist if (typeof window.novos_slider_settings === 'undefined') { window.novos_slider_settings = {}; } window.novos_slider_settings['block_c024f11af2b32b9eccab8856505ac96d'] = {"autoplay":true,"arrows":false,"pagination":false,"perPage":3,"speed":400,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"8px","direction":"ltr","height":0,"autoWidth":true,"labelAsDots":false,"padding":{"left":"8.6%","right":"8.6%"},"breakpoints":{"1024":{"autoplay":true,"arrows":false,"pagination":false,"perPage":2,"speed":400,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"8px","direction":"ltr","height":0,"autoWidth":true,"labelAsDots":false,"padding":{"left":"8.6%","right":"8.6%"}},"768":{"autoplay":false,"arrows":false,"pagination":false,"perPage":1,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":1,"rewind":true},"grid":"[[1,1]]","smooth_scroll":true,"peek_slide":false,"gap":"6px","direction":"ltr","height":0,"drag":"free","autoWidth":true,"labelAsDots":false,"padding":{"left":"36px","right":"36px"}}}}; window.novos_slider_settings['block_c024f11af2b32b9eccab8856505ac96d-mobile'] = {"autoplay":true,"arrows":false,"pagination":false,"perPage":3,"speed":400,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"8px","direction":"ltr","height":0,"autoWidth":true,"labelAsDots":false,"padding":{"left":"8.6%","right":"8.6%"},"breakpoints":{"1024":{"autoplay":true,"arrows":false,"pagination":false,"perPage":2,"speed":400,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":"1"},"grid":"[[1,1]]","peek_slide":false,"gap":"8px","direction":"ltr","height":0,"autoWidth":true,"labelAsDots":false,"padding":{"left":"8.6%","right":"8.6%"}},"768":{"autoplay":false,"arrows":false,"pagination":false,"perPage":1,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"loop","mediaQuery":"max","clones":10,"preloadPages":4,"cloneStatus":true,"autoScroll":{"speed":1,"rewind":true},"grid":"[[1,1]]","smooth_scroll":true,"peek_slide":false,"gap":"6px","direction":"ltr","height":0,"drag":"free","autoWidth":true,"labelAsDots":false,"padding":{"left":"36px","right":"36px"}}}};
Within 2 hours: Clinical research observed early changes in vascular function biomarkers, including endothelial responsiveness and systolic blood pressure signaling.
Feel: Some users report subtle increases in mental clarity and drive after initial use.
Cellular support: Ingredients begin engaging antioxidant and cellular stress-response pathways that support system-level resilience.
Daily energy: More consistent energy as cellular energy pathways adapt to regular use.
Recovery & comfort: Users often report improved day-to-day physical comfort and easier recovery from activity.
Inflammatory balance: Supports healthy inflammatory signaling tied to resilience and repair.
Heart & vessels: Randomized, placebo-controlled human research demonstrated statistically significant differences in vascular aging biomarkers, including arterial flexibility (PWV) and support for healthy blood pressure already within the normal range.
Skin appearance: In a pilot human assessment using objective instrument measurements, participants showed measurable improvements in skin firmness and elasticity over six months, consistent with healthier-looking, more resilient skin.
System-wide longevity support: Ongoing use supports multiple core biological pathways associated with healthy aging through a coordinated, multi-system approach.
Pace of aging*: In epigenetic research testing, participants showed directional changes consistent with a slower pace of biological aging over time.
*Epigenetic analyses are research tools and do not diagnose disease or predict lifespan.
Within 2 hours: Clinical research observed early changes in vascular function biomarkers, including endothelial responsiveness and systolic blood pressure signaling.
Feel: Some users report subtle increases in mental clarity and drive after initial use.
Cellular support: Ingredients begin engaging antioxidant and cellular stress-response pathways that support system-level resilience.
Daily energy: More consistent energy as cellular energy pathways adapt to regular use.
Recovery & comfort: Users often report improved day-to-day physical comfort and easier recovery from activity.
Inflammatory balance: Supports healthy inflammatory signaling tied to resilience and repair.
Heart & vessels: Randomized, placebo-controlled human research demonstrated statistically significant differences in vascular aging biomarkers, including arterial flexibility (PWV) and support for healthy blood pressure already within the normal range.
Skin appearance: In a pilot human assessment using objective instrument measurements, participants showed measurable improvements in skin firmness and elasticity over six months, consistent with healthier-looking, more resilient skin.
System-wide longevity support: Ongoing use supports multiple core biological pathways associated with healthy aging through a coordinated, multi-system approach.
Pace of aging*: In epigenetic research testing, participants showed directional changes consistent with a slower pace of biological aging over time.
*Epigenetic analyses are research tools and do not diagnose disease or predict lifespan.
Start now
60-Second Ritual with
Compounding Longevity Benefits
Designed for once-a-day simplicity
Gentle on the stomach, easy to remember
Dissolves easily. No pills. No stacking.
Start now
Why No Other Longevity Product Comes Close
/* Main container */ .novos-core-comparision { max-width: 1280px !important; margin: 0 auto !important; padding: 0 20px !important; }
/* Title above the table */ .novos-core-comparision h2, .novos-core-comparision .comparison-title { font-size: 36px !important; font-weight: 400 !important; color: #1A1A1A !important; margin-bottom: 32px !important; text-align: left !important; line-height: 1.3 !important; font-family: 'Inter Tight', sans-serif !important; letter-spacing: 0px !important; }
/* Main table wrapper */ .novos-core-comparision .novos-comparison-table { background: transparent !important; border-radius: 24px !important; overflow: visible !important; border: 1px solid #D0D0D0 !important; }
/* Comparison container - holds all columns */ .novos-core-comparision .comparison-container { display: flex !important; width: 100% !important; background: transparent !important; }
/* Individual column */ .novos-core-comparision .column { display: flex !important; flex-direction: column !important; border-right: none !important; border-left: none !important; border-top: none !important; border-bottom: none !important; background: #FFFFFF !important; flex-shrink: 0 !important; }
/* First column - much narrower */ .novos-core-comparision .column.first { flex: 0 0 18% !important; max-width: 18% !important; min-width: 18% !important; background: #F8F8F8 !important; border-top-left-radius: 24px !important; border-bottom-left-radius: 24px !important; }
/* Other columns - equal width and wider */ .novos-core-comparision .column:not(.first) { flex: 1 !important; background: #FFFFFF !important; border-radius: 0 !important; }
.novos-core-comparision .column:last-child { border-right: none !important; border-top-right-radius: 24px !important; border-bottom-right-radius: 24px !important; border-top-left-radius: 0 !important; border-bottom-left-radius: 0 !important; }
/* Featured column - peachy orange background */ .novos-core-comparision .column.featured { background: #FFD3A1 !important; border-radius: 0 !important; }
/* Heading wrapper */ .novos-core-comparision .heading-wrapper { padding: 24px 28px !important; background: transparent !important; border-bottom: 1px solid #D0D0D0 !important; height: auto !important; min-height: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important; text-align: center !important; }
/* Featured column heading background */ .novos-core-comparision .column.featured .heading-wrapper { background: transparent !important; border-bottom: 1px solid #D0D0D0 !important; }
/* First column heading */ .novos-core-comparision .column.first .heading-wrapper { background: transparent !important; justify-content: center !important; text-align: center !important; padding: 24px 16px !important; border-bottom: 1px solid #D0D0D0 !important; }
/* Heading text */ .novos-core-comparision .heading-wrapper .heading, .novos-core-comparision .heading-wrapper h3 { font-size: 20px !important; font-weight: 700 !important; color: #000000 !important; max-width: unset !important; margin: 0 !important; padding: 0 !important; line-height: 1.3 !important; letter-spacing: 0px !important; text-transform: uppercase !important; font-family: 'Inter Tight', sans-serif !important; }
.novos-core-comparision .heading-wrapper .text { font-size: 20px !important; font-weight: 700 !important; color: #000000 !important; margin: 0 !important; padding: 0 !important; line-height: 1.3 !important; letter-spacing: 0px !important; text-transform: uppercase !important; font-family: 'Inter Tight', sans-serif !important; }
/* Row container */ .novos-core-comparision .row-container { flex: 1 !important; display: flex !important; flex-direction: column !important; background: transparent !important; }
/* Individual row */ .novos-core-comparision .row { padding: 24px 28px !important; margin: 0 !important; font-size: 16px !important; line-height: 1.5 !important; color: #2D2D2D !important; border-bottom: 1px solid #D0D0D0 !important; border-left: none !important; border-right: none !important; border-top: none !important; flex: 1 1 0 !important; min-height: 0 !important; display: flex !important; align-items: center !important; background: transparent !important; font-family: 'Inter Tight', sans-serif !important; letter-spacing: 0px !important; }
.novos-core-comparision .row:last-child { border-bottom: 1px solid #D0D0D0 !important; }
/* First column rows */ .novos-core-comparision .column.first .row { align-items: center !important; padding: 24px 16px !important; font-weight: 700 !important; color: #000000 !important; font-size: 14px !important; letter-spacing: 0px !important; line-height: 1.3 !important; border-bottom: 1px solid #D0D0D0 !important; font-family: 'Inter Tight', sans-serif !important; }
.novos-core-comparision .column.first .row:last-child { border-bottom: 1px solid #D0D0D0 !important; }
/* Button container in featured column */ .novos-core-comparision .wp-block-buttons { padding: 24px 28px !important; border-top: none !important; border-bottom: none !important; border-left: none !important; border-right: none !important; background: transparent !important; display: flex !important; align-items: center !important; justify-content: center !important; min-height: 0 !important; }
/* Responsive Design */
/* Large tablets and small desktops (1199px and below) */ @media (max-width: 1199px) { .novos-core-comparision h2, .novos-core-comparision .comparison-title { font-size: 30px !important; margin-bottom: 28px !important; }
.novos-core-comparision .column.first { flex: 0 0 20% !important; max-width: 20% !important; min-width: 20% !important; }
.novos-core-comparision .heading-wrapper { padding: 18px 24px !important; min-height: 72px !important; }
.novos-core-comparision .column.first .heading-wrapper { padding: 18px 14px !important; }
.novos-core-comparision .heading-wrapper .heading, .novos-core-comparision .heading-wrapper h3, .novos-core-comparision .heading-wrapper .text { font-size: 16px !important; }
.novos-core-comparision .row { padding: 18px 24px !important; font-size: 15px !important; min-height: 72px !important; }
.novos-core-comparision .column.first .row { padding: 18px 14px !important; font-size: 13px !important; }
.novos-core-comparision .wp-block-buttons { padding: 18px 24px !important; min-height: 72px !important; } }
/* Tablets (991px and below) */ @media (max-width: 991px) { .novos-core-comparision { padding: 0 16px !important; }
.novos-core-comparision .novos-comparison-table { border-radius: 20px !important; }
.novos-core-comparision h2, .novos-core-comparision .comparison-title { font-size: 30px !important; margin-bottom: 24px !important; text-align: center !important; }
.novos-core-comparision .column.first { flex: 0 0 22% !important; max-width: 22% !important; min-width: 22% !important; }
.novos-core-comparision .heading-wrapper { padding: 16px 20px !important; min-height: 65px !important; }
.novos-core-comparision .column.first .heading-wrapper { padding: 16px 12px !important; }
.novos-core-comparision .heading-wrapper .heading, .novos-core-comparision .heading-wrapper h3, .novos-core-comparision .heading-wrapper .text { font-size: 14px !important; }
.novos-core-comparision .row { padding: 16px 20px !important; font-size: 14px !important; min-height: 65px !important; }
.novos-core-comparision .column.first .row { padding: 16px 12px !important; font-size: 12px !important; }
.novos-core-comparision .wp-block-buttons { padding: 16px 20px !important; min-height: 65px !important; } }
/* Mobile devices (767px and below) */ @media (max-width: 767px) { .novos-core-comparision { padding: 0 12px !important; }
.novos-core-comparision .novos-comparison-table { border-radius: 16px !important; overflow-x: auto !important; overflow-y: visible !important; -webkit-overflow-scrolling: touch !important; display: block !important; }
.novos-core-comparision h2, .novos-core-comparision .comparison-title { font-size: 30px !important; margin-bottom: 20px !important; text-align: center !important; }
/* Enable horizontal scrolling on mobile */ .novos-core-comparision .comparison-container { display: flex !important; min-width: max-content !important; width: auto !important; }
.novos-core-comparision .column { flex-shrink: 0 !important; }
.novos-core-comparision .column.first { flex: 0 0 130px !important; max-width: 130px !important; min-width: 130px !important; }
.novos-core-comparision .column:not(.first) { flex: 0 0 285px !important; min-width: 285px !important; max-width: 285px !important; }
.novos-core-comparision .heading-wrapper { padding: 14px 16px !important; min-height: 56px !important; }
.novos-core-comparision .column.first .heading-wrapper { padding: 14px 10px !important; }
.novos-core-comparision .heading-wrapper .heading, .novos-core-comparision .heading-wrapper h3, .novos-core-comparision .heading-wrapper .text { font-size: 12px !important; }
.novos-core-comparision .row { padding: 14px 16px !important; font-size: 13px !important; min-height: 56px !important; }
.novos-core-comparision .column.first .row { padding: 14px 10px !important; font-size: 11px !important; }
.novos-core-comparision .wp-block-buttons { padding: 14px 16px !important; min-height: 56px !important; } }
/* Small mobile devices (480px and below) */ @media (max-width: 480px) { .novos-core-comparision h2, .novos-core-comparision .comparison-title { font-size: 30px !important; margin-bottom: 20px !important; text-align: center !important; }
.novos-core-comparision .comparison-container { display: flex !important; min-width: max-content !important; }
.novos-core-comparision .column { flex-shrink: 0 !important; }
.novos-core-comparision .column.first { flex: 0 0 120px !important; max-width: 120px !important; min-width: 120px !important; }
.novos-core-comparision .column:not(.first) { flex: 0 0 265px !important; min-width: 265px !important; max-width: 265px !important; }
.novos-core-comparision .heading-wrapper { padding: 12px 14px !important; min-height: 52px !important; }
.novos-core-comparision .column.first .heading-wrapper { padding: 12px 8px !important; }
.novos-core-comparision .heading-wrapper .heading, .novos-core-comparision .heading-wrapper h3, .novos-core-comparision .heading-wrapper .text { font-size: 11px !important; }
.novos-core-comparision .row { padding: 12px 14px !important; font-size: 12px !important; min-height: 52px !important; }
.novos-core-comparision .column.first .row { padding: 12px 8px !important; font-size: 10px !important; }
.novos-core-comparision .wp-block-buttons { padding: 12px 14px !important; min-height: 52px !important; } }
/* Print styles */ @media print { .novos-core-comparision .novos-comparison-table { box-shadow: none !important; border: 2px solid #D0D0D0 !important; } }
NOVOS Core Clinical
Typical Longevity Supplements
.longevity-hero-section { display: flex !important; justify-content: space-between !important; align-items: center; gap: 60px !important; }
.longevity-hero-heading-wrapper { flex: 1 !important; }
.longevity-hero-title { font-family: 'Source Serif Pro', Georgia, serif !important; font-weight: 400 !important; font-style: normal !important; font-size: clamp(36px, 6vw, 48px) !important; line-height: 1.2 !important; margin: 0 !important; padding: 0 !important; text-transform: none !important; letter-spacing: -0.02em !important; }
.longevity-hero-text-orange { font-family: 'Source Serif Pro', Georgia, serif !important; color: #f25a1c !important; display: block !important; -webkit-text-fill-color: #f25a1c !important; background: none !important; margin-bottom: 0.1em !important; }
.longevity-hero-text-black { font-family: 'Source Serif Pro', Georgia, serif !important; color: #222222 !important; display: block !important; -webkit-text-fill-color: #222222 !important; background: none !important; }
.longevity-hero-tagline { font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; font-weight: 400 !important; font-style: normal !important; font-size: clamp(14px, 2vw, 16px) !important; line-height: 1.6 !important; color: #666666 !important; text-transform: none !important; letter-spacing: normal !important; max-width: 280px !important; margin: 0 0 0 auto !important; padding: 0 !important; text-align: right !important; background: none !important; -webkit-text-fill-color: #666666 !important; flex-shrink: 0 !important; }
/* Mobile stacking */ @media (max-width: 768px) { .longevity-hero-section { display: block !important; }
.longevity-hero-tagline { margin-left: 0 !important; text-align: center !important; max-width: 100% !important; } }
12 Longevity Ingredients.
1 Clinical-Strength Formula.
The Most Effective Longevity
Drink On The Market
Calcium Alpha-Ketoglutarate (Ca-AKG)
Calcium Alpha-Ketoglutarate (Ca-AKG)
A naturally occurring metabolic intermediate involved in mitochondrial energy production. Studied for cellular protection, metabolic health, and epigenetic support, with lifespan and healthspan benefits demonstrated in animals*
Fisetin
Fisetin
A plant polyphenol studied in aging research for its role in supporting cellular senescence balance and healthy inflammatory signaling. In animal models, fisetin has been associated with lifespan extension*
Glycine
Glycine
An amino acid naturally present in collagen and metabolism. Higher glycine levels are associated with cardiovascular health, balanced inflammatory signaling, and healthy glucose metabolism. Lifespan benefits have been observed in multiple species*
Pterostilbene
Pterostilbene
A compound found in blueberries with higher bioavailability than resveratrol. Supports healthy inflammatory balance, DNA stability, and epigenetic regulation. Related compounds have demonstrated lifespan effects in animal models*
Rhodiola Rosea
Rhodiola Rosea
An adaptogenic botanical containing salidroside and other bioactives studied for cellular stress resilience. Research suggests support for mitochondrial function, AMPK and sirtuin pathways, and healthy cellular aging processes*
Micro-dosed Lithium
Micro-dosed Lithium
Trace amounts of lithium naturally occur in food and water. Epidemiological and human studies associate low-dose lithium exposure with healthy brain aging and longevity trends. Lifespan effects have also been observed in multiple species*
Magnesium Malate
Magnesium Malate
Magnesium supports hundreds of enzymatic reactions involved in energy production and metabolic health, while malate participates in the Krebs cycle. Together they support cellular energy and resilience*
Glucosamine Sulfate
Glucosamine Sulfate
Commonly known for joint health, glucosamine is also studied for its role in healthy inflammatory balance and metabolic pathways that resemble calorie-restriction biology. Lifespan associations have been observed in animals and population studies*
Hyaluronic Acid
Hyaluronic Acid
A naturally occurring structural molecule that supports skin hydration and elasticity. Oral supplementation has been shown to improve skin appearance and texture over time*
L-Theanine
L-Theanine
A green tea amino acid that promotes calm focus and healthy stress response. Studied for supporting antioxidant defenses and longevity-related cellular pathways in preclinical research*
Vitamin C
Vitamin C
An essential antioxidant that supports collagen formation, cellular protection, and epigenetic enzyme activity. Works synergistically with other nutrients to maintain cellular integrity*
Ginger Extract (Gingerols)
Ginger Extract (Gingerols)
Bioactive compounds from ginger that support healthy inflammatory balance, metabolic function, and cellular antioxidant defenses*
Calcium Alpha-Ketoglutarate (Ca-AKG)
A naturally occurring metabolic intermediate involved in mitochondrial energy production. Studied for cellular protection, metabolic health, and epigenetic support, with lifespan and healthspan benefits demonstrated in animals*
Fisetin
A plant polyphenol studied in aging research for its role in supporting cellular senescence balance and healthy inflammatory signaling. In animal models, fisetin has been associated with lifespan extension*
Glycine
An amino acid naturally present in collagen and metabolism. Higher glycine levels are associated with cardiovascular health, balanced inflammatory signaling, and healthy glucose metabolism. Lifespan benefits have been observed in multiple species*
Pterostilbene
A compound found in blueberries with higher bioavailability than resveratrol. Supports healthy inflammatory balance, DNA stability, and epigenetic regulation. Related compounds have demonstrated lifespan effects in animal models*
Rhodiola Rosea
An adaptogenic botanical containing salidroside and other bioactives studied for cellular stress resilience. Research suggests support for mitochondrial function, AMPK and sirtuin pathways, and healthy cellular aging processes*
Micro-dosed Lithium
Trace amounts of lithium naturally occur in food and water. Epidemiological and human studies associate low-dose lithium exposure with healthy brain aging and longevity trends. Lifespan effects have also been observed in multiple species*
Magnesium Malate
Magnesium supports hundreds of enzymatic reactions involved in energy production and metabolic health, while malate participates in the Krebs cycle. Together they support cellular energy and resilience*
Glucosamine Sulfate
Commonly known for joint health, glucosamine is also studied for its role in healthy inflammatory balance and metabolic pathways that resemble calorie-restriction biology. Lifespan associations have been observed in animals and population studies*
Hyaluronic Acid
A naturally occurring structural molecule that supports skin hydration and elasticity. Oral supplementation has been shown to improve skin appearance and texture over time*
L-Theanine
A green tea amino acid that promotes calm focus and healthy stress response. Studied for supporting antioxidant defenses and longevity-related cellular pathways in preclinical research*
Vitamin C
An essential antioxidant that supports collagen formation, cellular protection, and epigenetic enzyme activity. Works synergistically with other nutrients to maintain cellular integrity*
Ginger Extract (Gingerols)
Bioactive compounds from ginger that support healthy inflammatory balance, metabolic function, and cellular antioxidant defenses*
Start now
/* Individual slide styling */ .novos-blogs-1 .splide__slide, .novos-blogs-1 .glide__slide { display: flex !important; flex-direction: column; align-items: flex-start; text-align: left; height: auto !important; }
/* Remove card styling from inner-slide */ .novos-blogs-1 .inner-slide { border: none !important; border-radius: 0 !important; background: none !important; background-color: transparent !important; }
/* Image container */ .novos-blogs-1 .splide__slide a, .novos-blogs-1 .glide__slide a { display: block; margin-bottom: 24px; }
.novos-blogs-1 .splide__slide img, .novos-blogs-1 .glide__slide img { width: 100%; height: auto; border-radius: 20px; display: block; }
/* Title text styling */ .novos-blogs-1 span[style*="font-size: 48px"], .novos-blogs-1 span[style*="48px"] { display: inline !important; font-size: 32px !important; line-height: 1.3 !important; font-weight: 400 !important; color: #4A4A4A !important; font-family: 'Inter Tight', sans-serif !important; }
/* Make the last word (ending with period) orange */ .novos-blogs-1 span[style*="font-size: 48px"]:last-of-type, .novos-blogs-1 span[style*="48px"]:last-of-type { color: #FF6B35 !important; font-weight: 600 !important; font-family: 'Inter Tight', sans-serif !important; }
/* Alternative approach - target specific text */ .novos-blogs-1 .splide__slide span:nth-of-type(2), .novos-blogs-1 .glide__slide span:nth-of-type(2) { color: #FF6B35 !important; font-weight: 600 !important; font-family: 'Inter Tight', sans-serif !important; }
/* Description text styling */ .novos-blogs-1 span[style*="font-size: 24px"], .novos-blogs-1 span[style*="24px"] { display: block !important; font-size: 18px !important; line-height: 1.6 !important; font-weight: 400 !important; color: #4A4A4A !important; margin-top: 12px; font-family: 'Inter Tight', sans-serif !important; }
/* Responsive adjustments */ @media (max-width: 1199px) { .novos-blogs-1 span[style*="font-size: 48px"], .novos-blogs-1 span[style*="48px"] { font-size: 28px !important; }
.novos-blogs-1 span[style*="font-size: 24px"], .novos-blogs-1 span[style*="24px"] { font-size: 16px !important; } }
@media (max-width: 991px) { .novos-blogs-1 span[style*="font-size: 48px"], .novos-blogs-1 span[style*="48px"] { font-size: 26px !important; }
.novos-blogs-1 span[style*="font-size: 24px"], .novos-blogs-1 span[style*="24px"] { font-size: 15px !important; }
.novos-blogs-1 .splide__slide a, .novos-blogs-1 .glide__slide a { margin-bottom: 20px; } }
@media (max-width: 767px) { .novos-blogs-1 span[style*="font-size: 48px"], .novos-blogs-1 span[style*="48px"] { font-size: 24px !important; }
.novos-blogs-1 span[style*="font-size: 24px"], .novos-blogs-1 span[style*="24px"] { font-size: 14px !important; }
.novos-blogs-1 .splide__slide a, .novos-blogs-1 .glide__slide a { margin-bottom: 16px; } }
// Initialize the novos_slider_settings object if it doesn't exist if (typeof window.novos_slider_settings === 'undefined') { window.novos_slider_settings = {}; } window.novos_slider_settings['block_c044df319859abe307082b8811cea05e'] = {"autoplay":false,"arrows":true,"pagination":true,"perPage":3,"speed":5000,"interval":5000,"pauseOnHover":false,"type":"slide","mediaQuery":"max","smooth_scroll":true,"peek_slide":true,"add_gap":false,"gap":0,"direction":"ltr","height":0,"padding_css":"","drag":"free","autoScroll":{"speed":1,"rewind":true},"autoWidth":false,"labelAsDots":true,"breakpoints":{"1024":{"autoplay":false,"arrows":true,"pagination":false,"perPage":2,"speed":400,"interval":5000,"pauseOnHover":false,"type":"slide","mediaQuery":"max","peek_slide":true,"add_gap":false,"gap":0,"direction":"ltr","height":0,"padding_css":"","autoWidth":false,"labelAsDots":false},"768":{"autoplay":false,"arrows":true,"pagination":false,"perPage":1,"speed":400,"interval":5000,"pauseOnHover":false,"type":"slide","mediaQuery":"max","peek_slide":true,"add_gap":false,"gap":0,"direction":"ltr","height":0,"padding_css":"","autoWidth":false,"labelAsDots":false}}};
Developed by Scientists.
Formulated by a team of 7 scientists and physicians specializing in aging biology, with backgrounds at Harvard Medical School, MIT, and leading research institutions.
Trusted by Doctors.
Recommended by more than 1,500 MDs and clinicians, including physicians affiliated with Mayo Clinic.
Respected by the Press.
Featured by The Wall Street Journal as a longevity brand helping define the future of the field.
Recognized by Awards.
Recipient of multiple consumer and industry awards for innovation in science-based longevity.
Loved by our Community.
More than 10 million doses enjoyed worldwide by our growing global community.
Built and studied by world-class scientists and MD researchers dedicated to advancing the science of longevity and human healthspan.
Dr. George Church, PhD
Dr. Satomi Miwa
Dr. Pamela Maher, PhD
Dr. J. Pedro Magalhães, PhD
Dr. Robert Lufkin, MD
Start now
.people-in-grid { display: block; position: relative; padding: 0; overflow: visible;
.splide { padding: 0 !important; position: relative; width: 100%; }
.splide__track { width: 100%; position: relative; }
.splide__list { display: flex !important; align-items: stretch; gap: 0; margin: 0 !important; padding: 0 !important; list-style: none !important; transition: transform 0.8s cubic-bezier(0.45, 0, 0.25, 1) !important; }
.splide__slide { display: flex !important; flex-direction: column; width: 100%; flex-shrink: 0; padding: 0 8px; box-sizing: border-box; position: relative; transition: opacity 0.8s ease, transform 0.8s ease !important; }
.people-in-grid-member { background: #1F1B1805; display: flex; flex-direction: column; border-radius: 30px; box-shadow: 0 0 8px rgba(0, 0, 0, 0.02); overflow: hidden; height: 100%; width: 100%; transition: transform 0.3s ease, box-shadow 0.3s ease;
.image-wrapper { background: #F1F3F7; position: relative; height: 280px; width: 100%; overflow: hidden; flex-shrink: 0;
img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: bottom; transition: transform 0.3s ease; } }
.content-wrapper { flex: 1; display: flex; flex-direction: column; }
.title-wrapper { margin: 0; padding: 24px 24px 16px; font-size: 20px; font-style: normal; font-weight: 600; line-height: 25px; letter-spacing: -1px; background: linear-gradient(91deg, #2F1706 -3.65%, #C18972 94.11%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.description-wrapper { padding: 0 24px 20px; color: #7E6860; font-size: 14px; font-style: normal; font-weight: 400; line-height: 20px; letter-spacing: -0.56px; flex: 1; }
.sub-title-wrapper { padding: 0 24px 24px; display: flex; flex-direction: row; gap: 8px; align-items: center;
.icon { display: flex;
img { height: 25px; width: 25px; } }
.sub-title-text { color: #B6ADA9; font-size: 16px; font-style: normal; font-weight: 600; line-height: 18px; letter-spacing: -0.64px; } }
&.hide-mobile, &.hide-tablet, &.hide-desktop { display: flex !important; } }
.splide__slide.is-active .people-in-grid-member:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); }
.splide__nav-wrapper { display: flex !important; align-items: center; justify-content: center; gap: 40px; padding: 32px 0 0; width: 100%; margin: 0 auto; visibility: visible !important; opacity: 1 !important;
.splide__arrow { background: none !important; border: none !important; width: auto !important; height: auto !important; display: flex !important; align-items: center !important; justify-content: center !important; position: static !important; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; transform: none !important; cursor: pointer !important; padding: 8px !important; margin: 0 !important; box-shadow: none !important; transition: color 0.3s ease, transform 0.3s ease !important; flex-shrink: 0 !important; opacity: 1 !important; pointer-events: auto !important; font-size: 40px !important; color: #2F1706 !important; font-weight: bold !important; line-height: 1 !important;
&:hover:not(:disabled) { color: #C18972 !important; transform: scale(1.15) !important; }
&:disabled { opacity: 0.2 !important; cursor: not-allowed !important; } } }
.splide__pagination { display: none !important; } }
@media (max-width: 767px) { .people-in-grid { .people-in-grid-member { .image-wrapper { height: 220px; } }
.splide__slide { padding: 0 6px; }
.splide__nav-wrapper { gap: 32px; padding: 24px 0 0;
.splide__arrow { padding: 6px !important; font-size: 32px !important; } } } }
@media (min-width: 768px) and (max-width: 1199px) { .people-in-grid { .people-in-grid-member { .image-wrapper { height: 240px; } }
.splide__slide { padding: 0 8px; }
.splide__nav-wrapper { gap: 36px; padding: 28px 0 0;
.splide__arrow { padding: 7px !important; font-size: 36px !important; } } } }
@media (min-width: 1200px) { .people-in-grid { .people-in-grid-member { .image-wrapper { height: 280px; }
.title-wrapper { padding: 32px 32px 20px; font-size: 22px; line-height: 28px; }
.description-wrapper { padding: 0 32px 24px; font-size: 14px; line-height: 22px; }
.sub-title-wrapper { padding: 0 32px 32px; } }
.splide__slide { padding: 0 8px; }
.splide__nav-wrapper { gap: 40px; padding: 32px 0 0;
.splide__arrow { padding: 8px !important; font-size: 40px !important; } } } }
@media (min-width: 1440px) { .people-in-grid { .people-in-grid-member { .image-wrapper { height: 300px; } }
.splide__nav-wrapper { gap: 48px; padding: 36px 0 0;
.splide__arrow { padding: 10px !important; font-size: 44px !important; } } } } }
(function () { var INTERVAL = 4000;
function isTarget(el) { return !!(el && el.closest && (el.closest('.novos-sceintist-clinical') || el.closest('.novos-scientist-clinical'))); }
function addPauseHandlers(el, instance) { var holding = false;
el.addEventListener('mousedown', function () { holding = true; try { instance.Components.Autoplay.pause(); } catch (e) {} });
el.addEventListener('touchstart', function () { holding = true; try { instance.Components.Autoplay.pause(); } catch (e) {} }, { passive: true });
document.addEventListener('mouseup', function () { if (!holding) return; holding = false; try { instance.Components.Autoplay.play(); } catch (e) {} });
document.addEventListener('touchend', function () { if (!holding) return; holding = false; try { instance.Components.Autoplay.play(); } catch (e) {} }); }
// Patch Splide.prototype.mount so our interval is set BEFORE autoplay starts function patchSplide() { if (!window.Splide || Splide.prototype._novosPatched) return; Splide.prototype._novosPatched = true;
var orig = Splide.prototype.mount; Splide.prototype.mount = function (Components, Extensions) { if (isTarget(this.root)) { // Set interval before components initialize — autoplay picks this up on mount this.options.interval = INTERVAL; this.options.pauseOnHover = true; this.options.pauseOnFocus = true; } var result = orig.call(this, Components, Extensions); if (isTarget(this.root)) { addPauseHandlers(this.root, this); } return result; }; }
patchSplide();
// Also patch on DOMContentLoaded in case Splide loads late document.addEventListener('DOMContentLoaded', patchSplide); })();
/** * Novos Scientist Clinical - Splide Slider Initialization * Desktop: 3 cards, Tablet: 2 cards, Mobile: 1 card * With peek effect, smooth sliding animations, and auto-play */
(function() { 'use strict';
function ensureBottomArrows(splide, splideWrapper) { if (!splide || !splideWrapper) { return; }
var navWrapper = splideWrapper.querySelector('.splide__nav-wrapper'); if (!navWrapper) { navWrapper = document.createElement('div'); navWrapper.className = 'splide__nav-wrapper'; navWrapper.style.display = 'flex'; navWrapper.style.alignItems = 'center'; navWrapper.style.justifyContent = 'center'; navWrapper.style.gap = '40px'; navWrapper.style.padding = '32px 0 0'; splideWrapper.appendChild(navWrapper); }
var prevButton = navWrapper.querySelector('.splide__arrow--prev'); var nextButton = navWrapper.querySelector('.splide__arrow--next');
if (!prevButton) { prevButton = document.createElement('button'); prevButton.type = 'button'; prevButton.className = 'splide__arrow splide__arrow--prev'; prevButton.setAttribute('aria-label', 'Previous'); prevButton.innerHTML = '←'; prevButton.style.cssText = 'background:none!important;border:none!important;font-size:40px!important;color:#2F1706!important;font-weight:bold!important;cursor:pointer!important;padding:8px!important;margin:0!important;'; navWrapper.appendChild(prevButton); }
if (!nextButton) { nextButton = document.createElement('button'); nextButton.type = 'button'; nextButton.className = 'splide__arrow splide__arrow--next'; nextButton.setAttribute('aria-label', 'Next'); nextButton.innerHTML = '→'; nextButton.style.cssText = 'background:none!important;border:none!important;font-size:40px!important;color:#2F1706!important;font-weight:bold!important;cursor:pointer!important;padding:8px!important;margin:0!important;'; navWrapper.appendChild(nextButton); }
if (!prevButton.dataset.boundClick) { prevButton.addEventListener('click', function(e) { e.preventDefault(); splide.go(''); }); nextButton.dataset.boundClick = '1'; }
function updateDisabled() { var perPage = (splide.options && splide.options.perPage) ? splide.options.perPage : 1; var endIndex = splide.length - perPage; if (endIndex perPage; navWrapper.style.display = shouldShow ? 'flex' : 'none';
var isPrevDisabled = splide.index = endIndex;
prevButton.disabled = isPrevDisabled; nextButton.disabled = isNextDisabled; prevButton.style.opacity = isPrevDisabled ? '0.2' : '1'; nextButton.style.opacity = isNextDisabled ? '0.2' : '1'; }
updateDisabled();
if (!splideWrapper.dataset.boundNavEvents) { splide.on('mounted', updateDisabled); splide.on('moved', updateDisabled); splide.on('updated', updateDisabled); splide.on('resized', updateDisabled); splideWrapper.dataset.boundNavEvents = '1'; } }
function initNovosSlider() { if (typeof Splide === 'undefined') { setTimeout(initNovosSlider, 100); return; }
var wrappers = document.querySelectorAll('.novos-sceintist-clinical, .novos-scientist-clinical');
if (!wrappers.length) { return; }
var grids = []; wrappers.forEach(function(wrapper) { var grid = wrapper.querySelector('.people-in-grid'); if (grid) { grids.push(grid); } });
if (!grids.length) { return; }
grids.forEach(function(grid, index) { if (grid.classList.contains('splide-initialized')) { return; }
var members = grid.querySelectorAll('.people-in-grid-member');
if (!members.length) { return; }
var splideWrapper = document.createElement('div'); splideWrapper.className = 'splide'; splideWrapper.id = 'novos-scientist-slider-' + index;
var splideTrack = document.createElement('div'); splideTrack.className = 'splide__track';
var splideList = document.createElement('ul'); splideList.className = 'splide__list';
members.forEach(function(member) { var slide = document.createElement('li'); slide.className = 'splide__slide'; slide.appendChild(member.cloneNode(true)); splideList.appendChild(slide); });
splideTrack.appendChild(splideList); splideWrapper.appendChild(splideTrack);
grid.innerHTML = ''; grid.appendChild(splideWrapper);
try { var isMobile = window.innerWidth <= 767; var splide = new Splide('#' + splideWrapper.id, { type: 'loop', perPage: 3, perMove: 1, gap: '16px', padding: { right: '10%' }, pagination: false, arrows: false, drag: true, speed: 800, easing: 'cubic-bezier(0.25, 0.1, 0.25, 1)', focus: 0, trimSpace: false, autoplay: true, interval: 3000, pauseOnHover: true, pauseOnFocus: true, breakpoints: { 1199: { perPage: 3, gap: '16px', padding: { right: '8%' }, autoplay: true, interval: 3500 }, 991: { perPage: 2, gap: '12px', padding: { right: '12%' }, autoplay: true, interval: 3000 }, 767: { perPage: 1, gap: '8px', padding: { left: '5%', right: '15%' }, autoplay: true, interval: 2500, pauseOnHover: false } } }); splide.mount(); setTimeout(function() { ensureBottomArrows(splide, splideWrapper); }, 100); splide.on('mounted', function() { ensureBottomArrows(splide, splideWrapper); }); splide.on('updated', function() { ensureBottomArrows(splide, splideWrapper); }); splide.on('resized', function() { ensureBottomArrows(splide, splideWrapper); }); grid.classList.add('splide-initialized'); } catch (error) { // Silent error handling } }); } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', function() { setTimeout(initNovosSlider, 500); }); } else { setTimeout(initNovosSlider, 500); } })();
Invest in your health with NOVOS Core Clinical
a clinically studied longevity formulation among the most rigorously studied in humans, globally.
When it comes to your future health, proof matters.
Core Clinical is science you can trust and results you can feel.
Start now
Questions, answered.
NOVOS Core Clinical contains 12 research-backed longevity ingredients:
- Vitamin C
- Magnesium Malate
- Calcium Alpha-Ketoglutarate
- Glycine
- Glucosamine Sulfate
- Rhodiola
- L-Theanine
- Hyaluronic Acid
- Fisetin
- Gingerol
- Pterostilbene
- Micro-dosed Lithium
The Orange flavor also includes erythritol, malic acid, stevia, and natural flavors. Core is vegan, non-GMO, sugar-free, and free from artificial colors and preservatives.
NOVOS Core Clinical is designed for adults of all ages who want to proactively support healthy aging.
- Younger users benefit from early support, while older adults may notice more immediate short-term effects.
NOVOS Core Clinical is free from:
- Dairy, gluten, soy, nuts, and shellfish
- Sugar, calories, and GMOs
- Preservatives and 14 EFSA-listed allergens
It suits vegan, vegetarian, Mediterranean, keto, gluten-free, and NOVOS Longevity Diet guidelines.
A small percentage of users experience temporary stomach discomfort when starting Core. Taking it with food, splitting the dose, or mixing it with extra water typically resolves this within a few weeks.
NOVOS recommends avoiding Core during pregnancy and breastfeeding as a precaution.
No. Store Core Clinical at room temperature in a cool, dry place.
Longevity Hackers: A Documentary on How to Stop Aging
NOVOS CEO Chris Mirabile joins Tony Robbins, Mark Cuban, and leading longevity scientists in Longevity Hackers, a groundbreaking documentary that uncovers the science and biohacking secrets adding not just years but healthy, fulfilled years to life.
*These statements have not been evaluated by the Food and Drug Administration. This product/information is not intended to diagnose, treat, cure, or prevent any disease. *All statements reflect support for normal, healthy biological function and are not intended to diagnose, treat, cure, or prevent disease.
Details
- Brand
- novos_labs
- Category
- Daily health
- Reference
- novos-core-clinical-lp