@layer clone {
:root {
            --ink: #0f0e0d;
            --ink-mid: #3a3632;
            --ink-soft: #6b6560;
            --cream: #faf8f4;
            --cream-warm: #f5f0e8;
            --amber: #c17d2a;
            --amber-light: #e8a84a;
            --sage: #3d6b4f;
            --sage-light: #4f8964;
            --rust: #b34a2a;
            --rust-dark: #8f3a1f;
            --border: #e2ddd5;
            --border-strong: #c8c0b4;
            --white: #ffffff;
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Lora', Georgia, serif;
            background: var(--cream);
            color: var(--ink);
            line-height: 1.8;
            font-size: 18px;
        }

        /* ── SPONSOR BAR ── */
        .sponsor-bar {
            background: var(--ink);
            text-align: center;
            padding: 8px 16px;
            font-family: 'Manrope', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
        }

        /* ── MASTHEAD ── */
        .masthead {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 0 24px;
            display: flex;
            align-items: stretch;
            justify-content: space-between;
        }
        .masthead-brand { display: flex; align-items: center; padding: 16px 0; }
        .brand-name {
            font-family: 'Libre Baskerville', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -0.3px;
            text-decoration: none;
        }
        .brand-name em { font-style: normal; color: var(--rust); }
        .masthead-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
            gap: 2px;
        }
        .masthead-date { font-family: 'Manrope', sans-serif; font-size: 11px; color: var(--ink-soft); }
        .masthead-section {
            font-family: 'Manrope', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--rust);
        }

        /* ── HERO ── */
        .hero { background: var(--white); border-bottom: 3px solid var(--ink); }
        .hero-inner {
            max-width: 860px;
            margin: 0 auto;
            padding: 52px 24px 44px;
            animation: fadeUp .6s ease both;
        }
        .hero-kicker {
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--rust);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hero-kicker::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border-strong);
            max-width: 60px;
        }
        .hero h1 {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(28px, 4.5vw, 52px);
            font-weight: 700;
            line-height: 1.13;
            color: var(--ink);
            margin-bottom: 22px;
            letter-spacing: -0.5px;
        }
        .hero h1 em { font-style: italic; color: var(--rust); }
        .hero-deck {
            font-family: 'Lora', serif;
            font-size: clamp(17px, 2.2vw, 21px);
            color: var(--ink-mid);
            font-style: italic;
            line-height: 1.6;
            max-width: 720px;
            margin-bottom: 28px;
            border-left: 3px solid var(--amber);
            padding-left: 20px;
        }
        .hero-meta {
            font-family: 'Manrope', sans-serif;
            font-size: 12px;
            color: var(--ink-soft);
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
        .hero-meta strong { color: var(--ink); font-weight: 700; }

        /* ── PAGE BODY ── */
        .page-wrap { max-width: 780px; margin: 0 auto; padding: 0 24px 80px; }

        p { font-size: 18px; color: var(--ink-mid); margin-bottom: 22px; line-height: 1.8; }

        h2 {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 700;
            color: var(--ink);
            line-height: 1.25;
            margin: 52px 0 18px;
            letter-spacing: -0.3px;
        }
        h3 {
            font-family: 'Manrope', sans-serif;
            font-size: 16px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--ink);
            margin: 32px 0 12px;
        }
        strong { color: var(--ink); font-weight: 700; }
        .highlight { background: linear-gradient(120deg, #fef08a 0%, #fde68a 100%); padding: 0 3px; }

        /* ── SECTION RULE ── */
        .section-rule { display: flex; align-items: center; gap: 16px; margin: 56px 0 40px; }
        .section-rule::before, .section-rule::after { content: ''; flex: 1; height: 1px; background: var(--border-strong); }
        .section-label {
            font-family: 'Manrope', sans-serif;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--ink-soft);
            white-space: nowrap;
        }

        /* ── PULL QUOTE ── */
        .pull-quote {
            margin: 36px 0;
            padding: 24px 28px 24px 32px;
            border-left: 4px solid var(--rust);
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
        }
        .pull-quote p { font-size: 20px; font-style: italic; color: var(--ink); margin: 0; line-height: 1.65; }

        /* ── SCIENCE BOX ── */
        .science-box {
            background: #eef3f8;
            border-left: 4px solid #2563a8;
            border-radius: 0 6px 6px 0;
            padding: 22px 24px;
            margin: 32px 0;
        }
        .science-label {
            font-family: 'Manrope', sans-serif;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #2563a8;
            margin-bottom: 10px;
        }
        .science-box p { font-size: 15px; color: #2a3a50; margin: 0; line-height: 1.7; }

        /* ── MECHANISM VISUAL ── */
        .mechanism-wrap {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 28px;
            margin: 32px 0;
            text-align: center;
        }
        .mechanism-caption {
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--ink-soft);
            margin-top: 16px;
        }

        /* ── INGREDIENT GRID ── */
        .ingredient-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
        @media(max-width:560px){ .ingredient-grid { grid-template-columns: 1fr; } }
        .ingredient-card { border: 1px solid var(--border); border-radius: 4px; padding: 18px 16px; background: var(--white); }
        .ing-name { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
        .ing-dose { font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700; color: var(--sage); margin-bottom: 8px; }
        .ingredient-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

        /* ── BENEFIT LIST ── */
        .benefit-list { list-style: none; margin: 22px 0; padding: 0; }
        .benefit-list li {
            padding: 12px 0 12px 42px;
            border-bottom: 1px solid var(--border);
            position: relative;
            font-size: 17px;
            color: var(--ink-mid);
        }
        .benefit-list li::before {
            content: '✓';
            position: absolute;
            left: 0; top: 12px;
            width: 26px; height: 26px;
            background: var(--sage);
            color: #fff;
            font-size: 12px;
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            line-height: 26px; text-align: center;
        }

        /* ── SUPPLEMENT FACTS ── */
        .supp-facts { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 24px; margin: 28px 0; font-family: 'Manrope', sans-serif; }
        .supp-facts-title { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; }
        .supp-facts table { width: 100%; border-collapse: collapse; font-size: 13px; }
        .supp-facts thead tr { border-bottom: 2px solid var(--ink); }
        .supp-facts thead th { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); padding: 6px 4px; text-align: left; }
        .supp-facts thead th:last-child, .supp-facts thead th:nth-child(2) { text-align: right; }
        .supp-facts tbody tr { border-bottom: 1px solid var(--border); }
        .supp-facts tbody td { padding: 9px 4px; color: var(--ink-mid); }
        .supp-facts tbody td:first-child { font-weight: 600; color: var(--ink); }
        .supp-facts tbody td:nth-child(2) { text-align: right; }
        .supp-facts tbody td:last-child { text-align: right; color: var(--ink-soft); }
        .supp-facts-note { font-size: 11px; color: var(--ink-soft); margin-top: 12px; }

        /* ── OFFER BOX ── */
        .offer-wrap { background: var(--ink); border-radius: 8px; padding: 40px 32px; margin: 48px 0; color: #fff; }
        .offer-wrap h2 { color: #fff; font-size: clamp(22px,3vw,28px); margin: 0 0 8px; font-family: 'Libre Baskerville', serif; }
        .offer-subtitle { font-family: 'Manrope', sans-serif; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 28px; }

        .pricing-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
        .price-card { flex: 1; min-width: 140px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 20px 16px; text-align: center; font-family: 'Manrope', sans-serif; }
        .price-card.best { border: 2px solid var(--amber-light); background: rgba(232,168,74,0.08); position: relative; }
        .price-card.best::before {
            content: 'BEST VALUE';
            position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
            background: var(--amber-light); color: var(--ink);
            font-size: 9px; font-weight: 800; letter-spacing: 1.5px;
            padding: 3px 10px; border-radius: 2px;
        }
        .pc-qty { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
        .pc-price { font-family: 'Libre Baskerville', serif; font-size: 34px; font-weight: 700; color: #fff; line-height: 1; }
        .pc-per { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; }
        .pc-old { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: line-through; margin-top: 6px; }

        .trust-row { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; margin-bottom: 22px; }
        .trust-item { font-family: 'Manrope', sans-serif; font-size: 12px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 6px; }
        .trust-item .icon { font-size: 16px; }

        .btn-primary {
            display: block;
            background: linear-gradient(135deg, var(--sage-light), var(--sage));
            color: #fff; text-decoration: none;
            padding: 20px 36px;
            font-family: 'Manrope', sans-serif;
            font-size: 15px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
            border-radius: 4px; text-align: center;
            max-width: 520px; margin: 0 auto 12px;
            border-bottom: 3px solid #2a5c36;
            box-shadow: 0 8px 28px rgba(63,138,100,0.35);
            transition: transform .1s, box-shadow .1s;
        }
        .btn-primary:hover { box-shadow: 0 12px 34px rgba(63,138,100,0.45); }
        .btn-primary:active { transform: translateY(2px); border-bottom-width: 1px; box-shadow: none; }

        .urgency-note { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--amber-light); font-weight: 700; text-align: center; }

        .product-visual-wrap { text-align: center; margin-bottom: 28px; }

        /* ── BONUSES ── */
        .bonus-section { margin: 32px 0 8px; }
        .bonus-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
        .bonus-num { flex-shrink: 0; width: 38px; height: 38px; background: var(--amber); color: #fff; font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 900; border-radius: 4px; display: flex; align-items: center; justify-content: center; }
        .bonus-title { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
        .bonus-value { font-family: 'Manrope', sans-serif; font-size: 11px; color: var(--sage-light); font-weight: 700; margin-bottom: 4px; }
        .bonus-desc { font-family: 'Manrope', sans-serif; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }

        /* ── GUARANTEE ── */
        .guarantee-box { border: 2px solid var(--sage); border-radius: 6px; padding: 28px; margin: 40px 0; display: flex; gap: 20px; align-items: flex-start; background: var(--white); }
        .guarantee-icon { font-size: 48px; flex-shrink: 0; line-height: 1; }
        .guarantee-box h3 { font-family: 'Libre Baskerville', serif; font-size: 18px; font-weight: 700; color: var(--sage); text-transform: none; letter-spacing: 0; margin: 0 0 10px; }
        .guarantee-box p { font-size: 15px; color: var(--ink-mid); margin: 0; }

        /* ── FAQ ── */
        .faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
        .faq-q { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
        .faq-q::before { content: 'Q: '; color: var(--rust); }
        .faq-a { font-size: 16px; color: var(--ink-mid); line-height: 1.75; }

        /* ── FINAL CTA ── */
        .final-cta { background: var(--cream-warm); border: 1px solid var(--border); border-top: 4px solid var(--rust); padding: 44px 32px; margin: 52px 0 24px; text-align: center; border-radius: 0 0 6px 6px; }
        .final-cta h2 { margin-top: 0; font-size: clamp(20px,3vw,28px); margin-bottom: 14px; }
        .final-cta p { font-size: 16px; color: var(--ink-mid); max-width: 540px; margin: 0 auto 24px; }
        .btn-final {
            display: block;
            background: linear-gradient(135deg, var(--rust), var(--rust-dark));
            color: #fff; text-decoration: none;
            padding: 20px 36px;
            font-family: 'Manrope', sans-serif;
            font-size: 14px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
            border-radius: 4px; text-align: center;
            max-width: 520px; margin: 0 auto 12px;
            border-bottom: 3px solid #6f2a14;
            box-shadow: 0 8px 28px rgba(179,74,42,0.3);
            transition: transform .1s, box-shadow .1s;
        }
        .btn-final:hover { box-shadow: 0 12px 34px rgba(179,74,42,0.45); }
        .btn-final:active { transform: translateY(2px); border-bottom-width: 1px; box-shadow: none; }
        .trust-icons-row { font-family: 'Manrope', sans-serif; font-size: 12px; color: var(--ink-soft); margin-top: 14px; }

        /* ── REFERENCES ── */
        .references { margin-top: 40px; padding: 22px 24px; background: #eef3f8; border-left: 3px solid #2563a8; border-radius: 0 6px 6px 0; font-family: 'Manrope', sans-serif; font-size: 12px; color: #3a4a60; }
        .references-title { font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: #2563a8; margin-bottom: 14px; display: block; }
        .references p { font-size: 12px; color: #5a6a80; margin-bottom: 10px; }
        .ref-entry { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(37,99,168,0.12); line-height: 1.65; }
        .ref-entry:last-child { border-bottom: none; margin-bottom: 0; }
        .ref-entry a { color: #2563a8; text-decoration: underline; }

        /* ── FOOTER ── */
        .site-footer { background: var(--ink); color: rgba(255,255,255,0.45); font-family: 'Manrope', sans-serif; font-size: 11px; line-height: 1.9; padding: 36px 24px; text-align: center; }
        .site-footer p { margin-bottom: 10px; color: rgba(255,255,255,0.4); font-size: 11px; }
        .site-footer strong { color: rgba(255,255,255,0.65); }
        .site-footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
        .site-footer a:hover { text-decoration: underline; color: rgba(255,255,255,0.8); }
        .footer-copyright { color: rgba(255,255,255,0.6); font-weight: 700; margin-bottom: 14px; }
        .footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); }
        .footer-nav a { font-size: 12px; color: rgba(255,255,255,0.55); text-decoration: none; }
        .footer-nav a:hover { color: rgba(255,255,255,0.9); }

        @keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
        @media(max-width:600px){ .guarantee-box { flex-direction: column; } .offer-wrap { padding: 28px 20px; } .final-cta { padding: 32px 20px; } .masthead { padding: 0 14px; } .page-wrap { padding: 0 16px 60px; } }

        /* ── IMAGE STYLES ── */
        .editorial-img {
            width: 100%;
            border-radius: 4px;
            display: block;
            object-fit: cover;
        }
        .img-wrap {
            margin: 32px 0;
            position: relative;
        }
        .img-caption {
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            color: var(--ink-soft);
            margin-top: 8px;
            font-style: italic;
            text-align: center;
            letter-spacing: 0.3px;
        }
        /* Float image right for editorial feel */
        .img-float-right {
            float: right;
            width: 42%;
            min-width: 200px;
            margin: 0 0 24px 28px;
            border-radius: 4px;
        }
        .img-float-left {
            float: left;
            width: 42%;
            min-width: 200px;
            margin: 0 28px 24px 0;
            border-radius: 4px;
        }
        .clearfix::after { content: ''; display: table; clear: both; }
        /* Full-width editorial image with overlay caption */
        .img-full {
            position: relative;
            margin: 36px 0;
            border-radius: 6px;
            overflow: hidden;
        }
        .img-full img { width: 100%; display: block; height: 100%; object-fit: cover; object-position: center top; }
        .img-full-caption {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(transparent, rgba(15,14,13,0.75));
            padding: 32px 20px 16px;
            font-family: 'Manrope', sans-serif;
            font-size: 12px;
            color: rgba(255,255,255,0.85);
            font-style: italic;
        }
        /* Product hero image in offer box */
        .product-photo-wrap {
            text-align: center;
            margin-bottom: 28px;
            padding: 20px 0;
        }
        .product-photo-wrap img {
            max-width: 380px;
            width: 100%;
            display: inline-block;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
            transition: transform .3s ease;
        }
        .product-photo-wrap img:hover { transform: scale(1.03); }
        /* Science illustration box */
        .science-img-box {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 6px;
            overflow: hidden;
            margin: 32px 0;
        }
        .science-img-box img { width: 100%; display: block; height: 100%; object-fit: cover; object-position: center; }
        .science-img-label {
            padding: 12px 18px;
            background: #eef3f8;
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2563a8;
            border-top: 1px solid #d8e4f0;
        }
        @media(max-width:600px){
            .img-float-right, .img-float-left { float: none; width: 100%; margin: 0 0 20px 0; }
            .img-full img { height: 200px; }
            .product-photo-wrap img { max-width: 280px; }
        }
html body { font-family: 'Lora', Georgia, serif; background: var(--cream); color: var(--ink); }
}

/* hp legal modals */
.hp-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.hp-modal-overlay.open {
  display: flex;
}
.hp-modal-box {
  background: #fff;
  color: #222;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow: auto;
  border-radius: 10px;
  padding: 28px 24px 24px;
  position: relative;
  text-align: left;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  font-family: 'Manrope', system-ui, sans-serif;
}
.hp-modal-box h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #1a1a1a;
  font-weight: 700;
}
.hp-modal-box .hp-modal-sub {
  font-size: 13px;
  color: #888;
  margin: 0 0 16px;
}
.hp-modal-box p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px;
  color: #333;
}
.hp-modal-box p:last-child {
  margin-bottom: 0;
}
.hp-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 4px 8px;
}
.site-footer .footer-nav a[role="button"] {
  cursor: pointer;
}

[data-delay-vturb] {
  display: none !important;
}
  