/** Shopify CDN: Minification failed

Line 1238:2 Unexpected "{"
Line 1238:3 Expected identifier but found "%"
Line 1238:18 Unexpected "568"
Line 1240:81 Expected identifier but found "%"
Line 1262:2 Unexpected "{"
Line 1262:3 Expected identifier but found "%"
Line 1262:91 Expected identifier but found whitespace
Line 1263:57 Expected identifier but found "%"
Line 1265:2 Unexpected "{"
Line 1265:3 Expected identifier but found "%"
... and 6 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-cl-announcement (INDEX:14) */
.cl-announce{position:relative;min-height:30px;background:var(--cl-navy-fill);display:flex;align-items:center;justify-content:center;overflow:hidden;padding:4px var(--cl-gap-sm)}
  .cl-announce__msg{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;margin:0;padding:4px var(--cl-gap-sm);font-family:var(--cl-font-body);font-size:var(--cl-type-body-sm);font-weight:400;line-height:1.2;color:var(--cl-text-inverse);text-align:center;opacity:0;animation:cl-announce-rotate 12s infinite}
  .cl-announce__msg--1{position:relative;animation-delay:0s}
  .cl-announce__msg--2{animation-delay:4s}
  .cl-announce__msg--3{animation-delay:8s}
  @keyframes cl-announce-rotate{0%{opacity:0}1%{opacity:1}31%{opacity:1}32.5%{opacity:0}100%{opacity:0}}
  @media (prefers-reduced-motion: reduce){
    .cl-announce__msg{animation:none;opacity:0}
    .cl-announce__msg--1{opacity:1}
  }
  @media (max-width: 767px){
    .cl-announce{min-height:34px}
    .cl-announce__msg{font-size:11px;letter-spacing:0;line-height:1.15;padding:4px 12px;white-space:nowrap}
  }
  @media (max-width: 400px){
    .cl-announce__msg{font-size:10px}
  }
/* END_SECTION:custom-cl-announcement */

/* START_SECTION:custom-cl-bodymap (INDEX:17) */
.cl-bm {
  background: var(--cl-bg-white, #ffffff);
}
.cl-bm__inner {
  max-width: var(--cl-container, 1600px);
  margin: 0 auto;
  padding: var(--cl-section-y, 100px) var(--cl-gutter, 24px);
}

/* ---- header ---- */
.cl-bm__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--cl-gap-title, 8px);
  max-width: 720px;
  margin: 0 auto var(--cl-gap-lg, 30px);
}
.cl-bm__title {
  margin: 0;
  font-family: var(--cl-font-display, sans-serif);
  font-weight: var(--cl-weight-display, 400);
  color: var(--cl-ink, #00026e);
  font-size: var(--cl-type-h2, 48px);
  line-height: var(--cl-lh-snug, 1.2);
  letter-spacing: var(--cl-track-display, -1px);
  text-wrap: balance;
}
.cl-bm__sub {
  margin: 0;
  max-width: 520px;
  font-size: var(--cl-type-body, 16px);
  font-weight: 400;
  color: var(--cl-ink-2, #33358b);
  line-height: var(--cl-lh-body, 1.3);
}

/* ---- pill-tab row (Fatty15 pattern, sky-accent per brief) ---- */
.cl-bm__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--cl-space-2, 8px);
  max-width: 720px;
  margin: 0 auto var(--cl-gap-lg, 30px);
}
.cl-bm__pill {
  font-family: var(--cl-font-body, sans-serif);
  font-size: var(--cl-type-body-sm, 14px);
  font-weight: var(--cl-weight-body, 400);
  color: var(--cl-ink, #00026e);
  background: var(--cl-cream, #FEFBF9);
  border: 1px solid var(--cl-border, rgba(0,2,110,0.12));
  border-radius: var(--cl-r-pill, 60px);
  padding: 9px 18px;
  cursor: pointer;
  transition: var(--cl-transition-base, all 0.2s ease-out);
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .cl-bm__pill:hover {
    background: var(--cl-sky-top, #eef6ff);
    border-color: var(--cl-sky-bottom, #9ecbff);
  }
}
/* Active pill = sky accent (retokened Fatty15 lime → Cellova sky, per brief) */
.cl-bm__pill[aria-expanded="true"] {
  background: var(--cl-sky-solid, #aad5fd);
  border-color: var(--cl-sky-bottom, #9ecbff);
  color: var(--cl-ink, #00026e);
}
.cl-bm__pill:focus-visible {
  outline: 2.5px solid var(--cl-ink, #00026e);
  outline-offset: 2px;
}

/* ---- image + dot canvas ---- */
.cl-bm__canvas {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: var(--cl-r-panel);
  overflow: hidden;
  background: var(--cl-cream, #FEFBF9);
  aspect-ratio: 4 / 5;
}
@media screen and (min-width: 749px) {
  .cl-bm__canvas { aspect-ratio: 1120 / 620; }
}
.cl-bm__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 749px) {
  /* Shift cover-crop so a standing figure sits framed; JS reads object-position
     and re-projects dots to match (Bettr port). */
  .cl-bm__image { object-position: center 58%; }
}
/* ---- no-image mode: header + pills only, no canvas/void (Viktor fix) ---- */
.cl-bm--no-image .cl-bm__inner {
  padding-top: var(--cl-section-y-tight, clamp(48px, 2vw + 43px, 72px));
  padding-bottom: var(--cl-section-y-tight, clamp(48px, 2vw + 43px, 72px));
}
/* In no-image mode the pill row is the terminal element — drop its bottom
   margin and give it a touch more presence so it reads as intentional topic
   tabs, not an orphaned filter bar. */
.cl-bm--no-image .cl-bm__head {
  margin-bottom: var(--cl-gap-xl, 40px);
}
.cl-bm--no-image .cl-bm__pills {
  margin-bottom: 0;
  max-width: 760px;
}
.cl-bm--no-image .cl-bm__pill {
  padding: 11px 20px;
}

/* ---- dots: disc + shockwave ring (Fatty15 26px white disc, retokened) ---- */
.cl-bm__dot {
  position: absolute;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 3;
  -webkit-tap-highlight-color: transparent;
}
.cl-bm__dot-disc,
.cl-bm__dot-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .cl-bm__dot-disc,
  .cl-bm__dot-ring { width: 22px; height: 22px; }
}
.cl-bm__dot-disc {
  background: var(--cl-cloud, #ffffff);
  box-shadow:
    0 0 0 1px rgba(0, 2, 110, 0.10),
    0 2px 6px rgba(0, 2, 110, 0.28),
    0 0 12px rgba(255, 255, 255, 0.45);
  z-index: 2;
  animation: cl-bm-disc-pulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transition: background-color .25s ease-out, box-shadow .25s ease-out, transform .25s ease-out;
}
.cl-bm__dot-ring {
  background: transparent;
  border: 1.5px solid var(--cl-sky-bottom, #9ecbff);
  z-index: 1;
  opacity: 0;
  animation: cl-bm-shockwave 2.4s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  transition: border-color .25s ease-out;
}
/* stagger up to 5 rings so they don't ping in lockstep */
.cl-bm__dot:nth-child(5n+1) .cl-bm__dot-ring { animation-delay: 0s; }
.cl-bm__dot:nth-child(5n+2) .cl-bm__dot-ring { animation-delay: -0.9s; }
.cl-bm__dot:nth-child(5n+3) .cl-bm__dot-ring { animation-delay: -0.4s; }
.cl-bm__dot:nth-child(5n+4) .cl-bm__dot-ring { animation-delay: -1.5s; }
.cl-bm__dot:nth-child(5n+5) .cl-bm__dot-ring { animation-delay: -0.6s; }

@media (hover: hover) {
  .cl-bm__dot:hover .cl-bm__dot-disc {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow:
      0 0 0 1px rgba(0, 2, 110, 0.14),
      0 3px 8px rgba(0, 2, 110, 0.30),
      0 0 16px rgba(255, 255, 255, 0.55);
  }
}
/* active dot = sky-tinted disc + sky ring (mobile recolor parity w/ Fatty15) */
.cl-bm__dot[aria-expanded="true"] .cl-bm__dot-disc {
  background: var(--cl-sky-solid, #aad5fd);
  box-shadow:
    0 0 0 1.5px var(--cl-sky-bottom, #9ecbff),
    0 2px 8px rgba(0, 2, 110, 0.30),
    0 0 16px rgba(158, 203, 255, 0.7);
}
.cl-bm__dot[aria-expanded="true"] .cl-bm__dot-ring {
  border-color: var(--cl-sky-bottom, #9ecbff);
}
.cl-bm__dot:focus-visible { outline: none; }
.cl-bm__dot:focus-visible .cl-bm__dot-disc {
  box-shadow:
    0 0 0 2px var(--cl-cloud, #ffffff),
    0 0 0 4px var(--cl-ink, #00026e),
    0 2px 6px rgba(0, 2, 110, 0.28);
}

@keyframes cl-bm-disc-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes cl-bm-shockwave {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  70%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(3); }
}
@media (prefers-reduced-motion: reduce) {
  .cl-bm__dot-disc,
  .cl-bm__dot-ring { animation: none; transition: none; }
  .cl-bm__dot-ring { opacity: 0.5; transform: translate(-50%, -50%) scale(1.6); }
}

/* ---- dot hover label (desktop only) ---- */
.cl-bm__dot-label {
  position: absolute;
  bottom: calc(100% - 6px);
  left: 50%;
  padding: 6px 12px;
  background: var(--cl-ink, #00026e);
  color: var(--cl-text-inverse, #ffffff);
  font-family: var(--cl-font-body, sans-serif);
  font-size: var(--cl-type-body-sm);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  border-radius: var(--cl-r-pill, 60px);
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  transition: opacity .16s ease-out, transform .16s ease-out;
  pointer-events: none;
  z-index: 4;
}
.cl-bm__dot-label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--cl-ink, #00026e);
}
@media (hover: hover) {
  .cl-bm__dot:hover .cl-bm__dot-label,
  .cl-bm__dot:focus-visible .cl-bm__dot-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@media (hover: none) {
  .cl-bm__dot-label { display: none; }
}
.cl-bm__dot[aria-expanded="true"] .cl-bm__dot-label { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .cl-bm__dot-label { transition: opacity .01s; transform: translateX(-50%); }
}

/* ============================================================
   MODAL — desktop right side-panel / mobile bottom sheet (Bettr port)
   ============================================================ */
.cl-bm-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cl-ink, #00026e);
  font-family: var(--cl-font-body, sans-serif);
  z-index: 9999;
  opacity: 0;
  transition: opacity 220ms ease-out;
}
.cl-bm-modal::backdrop { background: transparent; }
.cl-bm-modal[open].is-open { opacity: 1; }

/* overlay — specificity boost beats Dawn's div:empty { display:none } */
.cl-bm-modal .cl-bm-modal__overlay {
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(0, 2, 110, 0.45);
  cursor: pointer;
}

.cl-bm-modal__panel {
  position: fixed;
  background: var(--cl-bg-white, #ffffff);
  box-shadow: var(--cl-shadow-modal);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform .32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* MOBILE — bottom sheet */
@media screen and (max-width: 749px) {
  .cl-bm-modal__panel {
    inset: auto 0 0 0;
    width: 100%;
    max-height: 88vh;
    border-radius: var(--cl-r-panel) var(--cl-r-panel) 0 0;
    transform: translateY(100%);
  }
  .cl-bm-modal.is-open .cl-bm-modal__panel { transform: translateY(0); }
  .cl-bm-modal .cl-bm-modal__overlay { background: rgba(0, 2, 110, 0.5); }
}

/* DESKTOP — right side panel */
@media screen and (min-width: 750px) {
  .cl-bm-modal__panel {
    inset: 0 0 0 auto;
    width: min(520px, 100vw);
    max-width: 520px;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    transform: translateX(100%);
  }
  .cl-bm-modal.is-open .cl-bm-modal__panel { transform: translateX(0); }
  .cl-bm-modal .cl-bm-modal__overlay { background: rgba(0, 2, 110, 0.32); }
  .cl-bm-modal__media { display: none; }
}

.cl-bm-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 30;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--cl-border, rgba(0,2,110,0.12));
  border-radius: 50%;
  background: var(--cl-bg-white, #ffffff);
  color: var(--cl-ink, #00026e);
  cursor: pointer;
  transition: var(--cl-transition-base, all 0.2s ease-out);
}
.cl-bm-modal__close:hover { background: var(--cl-cream, #FEFBF9); }
.cl-bm-modal__close:focus-visible { outline: 2.5px solid var(--cl-ink, #00026e); outline-offset: 2px; }
.cl-bm-modal__close svg { width: 18px; height: 18px; }
@media screen and (min-width: 750px) {
  .cl-bm-modal__close { top: 18px; right: 18px; }
}

/* zoom-to-dot media (mobile only) */
.cl-bm-modal__media {
  position: relative;
  width: 100%;
  height: 260px;
  background: var(--cl-cream, #FEFBF9);
  flex-shrink: 0;
  overflow: hidden;
}
.cl-bm-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform-origin: center;
  transition: transform .35s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

/* content pane */
.cl-bm-modal__stack {
  flex: 1;
  padding: 60px var(--cl-space-6, 24px) var(--cl-space-6, 24px);
}
@media screen and (min-width: 750px) {
  .cl-bm-modal__stack { padding: 72px var(--cl-gap-xl, 40px) var(--cl-space-8, 32px); }
}
.cl-bm-modal__content[hidden] { display: none; }

/* G: comprehension graphic (methyl donor → system) replaces the eyebrow */
.cl-bm-modal__gfx { display: block; margin-bottom: var(--cl-gap-md, 20px); }
.cl-bm-modal__gfxsvg { display: block; width: 100%; max-width: 300px; height: auto; font-family: var(--cl-font-body, sans-serif); }

.cl-bm-modal__title {
  margin: 0 0 var(--cl-gap-sm, 16px);
  font-family: var(--cl-font-display, sans-serif);
  font-weight: 500;
  font-size: var(--cl-type-h2-sm, 30px);
  line-height: var(--cl-lh-snug, 1.2);
  letter-spacing: var(--cl-track-display, -1px);
  color: var(--cl-ink, #00026e);
}
.cl-bm-modal__body {
  font-size: var(--cl-type-body-lg, 19px);
  font-weight: 400;
  line-height: var(--cl-lh-body, 1.3);
  color: var(--cl-ink-2, #33358b);
}
.cl-bm-modal__body p { margin: 0 0 var(--cl-gap-sm, 16px); }
.cl-bm-modal__body p:last-child { margin-bottom: 0; }
.cl-bm-modal__body strong { color: var(--cl-ink, #00026e); font-weight: 500; }

.cl-bm-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cl-space-2, 8px);
  margin-top: var(--cl-gap-md, 20px);
}
.cl-bm-modal__chip {
  font-family: var(--cl-font-body, sans-serif);
  font-size: var(--cl-type-body-sm, 14px);
  font-weight: 500;
  color: var(--cl-ink-2, #33358b);
  background: var(--cl-tint-green, #F7F9EC);
  border-radius: var(--cl-r-pill, 60px);
  padding: 6px 14px;
}

.cl-bm-modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--cl-gap-lg, 30px);
  font-family: var(--cl-font-body, sans-serif);
  font-size: var(--cl-type-button, 15px);
  font-weight: 500;
  color: var(--cl-ink, #00026e);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--cl-border-strong, rgba(0,2,110,0.22));
  border-radius: var(--cl-r-pill, 60px);
  padding: 11px 22px;
  transition: var(--cl-transition-base, all 0.2s ease-out);
}
.cl-bm-modal__cta:hover {
  background: var(--cl-ink, #00026e);
  border-color: var(--cl-ink, #00026e);
  color: var(--cl-text-inverse, #ffffff);
}
.cl-bm-modal__cta-arrow { display: inline-flex; }

/* footer nav */
.cl-bm-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px var(--cl-space-6, 24px);
  border-top: 1px solid var(--cl-border, rgba(0,2,110,0.12));
  background: var(--cl-bg-white, #ffffff);
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
}
@media screen and (min-width: 750px) {
  .cl-bm-modal__footer { padding: 20px var(--cl-gap-xl, 40px); }
}
.cl-bm-modal__nav {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--cl-border, rgba(0,2,110,0.12));
  border-radius: 50%;
  background: var(--cl-bg-white, #ffffff);
  color: var(--cl-ink, #00026e);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--cl-transition-base, all 0.2s ease-out);
}
.cl-bm-modal__nav:hover { background: var(--cl-cream, #FEFBF9); border-color: var(--cl-border-strong, rgba(0,2,110,0.22)); }
.cl-bm-modal__nav:active { transform: scale(0.95); }
.cl-bm-modal__nav:focus-visible { outline: 2.5px solid var(--cl-ink, #00026e); outline-offset: 2px; }
.cl-bm-modal__nav svg { width: 16px; height: 16px; }
.cl-bm-modal__counter {
  font-family: var(--cl-font-body, sans-serif);
  font-size: var(--cl-type-body-sm, 14px);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0; /* no-letter-spacing law */
  color: var(--cl-ink-3, #62639f);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .cl-bm-modal,
  .cl-bm-modal__panel,
  .cl-bm-modal__image,
  .cl-bm-modal__nav,
  .cl-bm-modal__close { transition: none; }
}
/* END_SECTION:custom-cl-bodymap */

/* START_SECTION:custom-cl-lmp-cta (INDEX:36) */
.custom-cl-lmp-cta {
    background-color: var(--cl-cream, #FEFBF9);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-lmp-cta__container {
    width: 100%;
    max-width: var(--cl-wrap-text, 760px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--cl-gap-title, 8px);
  }
  .custom-cl-lmp-cta__heading {
    font-family: var(--cl-font-display);
    font-weight: 500;
    font-size: var(--cl-type-h2-sm, 34px);
    line-height: var(--cl-lh-snug, 1.2);
    letter-spacing: var(--cl-track-display, -1px);
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-lmp-cta__heading { font-size: var(--cl-type-h2, 48px); }
  }
  .custom-cl-lmp-cta__sub {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-lead, 19px);
    font-weight: 400;
    line-height: var(--cl-lh-body, 1.3);
    color: var(--cl-ink-2, #33358b);
    margin: var(--cl-space-3, 12px) 0 0;
    max-width: 48ch;
    text-wrap: balance;
  }
  /* Two CTAs stack: secondary directly below the primary, never beside it. */
  .custom-cl-lmp-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--cl-space-3, 12px);
    margin-top: var(--cl-gap-lg, 30px);
  }
  .custom-cl-lmp-cta__actions .cl-btn--ghost {
    border: 0;
    padding: 4px 8px;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
  }
  .custom-cl-lmp-cta__guarantee {
    display: inline-flex;
    align-items: center;
    gap: var(--cl-space-2, 8px);
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--cl-ink-3, #62639f);
    margin: var(--cl-gap-md, 20px) 0 0;
  }
  .custom-cl-lmp-cta__guarantee svg { flex: 0 0 auto; }
/* END_SECTION:custom-cl-lmp-cta */

/* START_SECTION:custom-cl-lmp-dose-grid (INDEX:37) */
.custom-cl-lmp-dose {
    background-color: var(--cl-cream, #FEFBF9);
    padding-top: var(--cl-section-y-tight, clamp(48px, 2vw + 43px, 72px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    --cl-lmp-stage: var(--cl-tint-neutral, #F5F5F7);
  }
  .custom-cl-lmp-dose__container {
    width: 100%;
    max-width: var(--cl-container, 1600px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }

  /* GRID — mobile 2×2, desktop 4-across. */
  .custom-cl-lmp-dose__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--cl-gap-sm, 16px);
  }
  @media screen and (min-width: 750px) {
    .custom-cl-lmp-dose__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--cl-gap-md, 20px); }
  }

  /* CARD — whole card is the link; flat, no border box, hover lifts the photo ring only. */
  .custom-cl-lmp-dose__card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }

  /* PHOTO — square stage, rounded, chip + optional tag overlaid. */
  .custom-cl-lmp-dose__photo {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--cl-r-panel, 12px);
    background-color: var(--cl-lmp-stage, #F5F5F7);
    overflow: hidden;
    transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  }
  .custom-cl-lmp-dose__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .custom-cl-lmp-dose__card:hover .custom-cl-lmp-dose__photo {
    box-shadow: var(--cl-shadow-card, 0 2px 16px rgba(0, 2, 110, 0.07));
  }

  /* "НАЙ-ПРОДАВАН" merch tag: navy pill, top-right, over the photo (5mg only).
     NB: the "Подпомага 100+ жизнени процеса" chip is BAKED INTO the product
     featured_image (as in the Replo original) — no HTML chip overlay (avoids a
     double chip + a 4-line overflow box on mobile). The НАЙ-ПРОДАВАН tag is NOT
     baked in, so it stays an overlay. */
  .custom-cl-lmp-dose__tag {
    position: absolute;
    top: var(--cl-space-3, 12px);
    right: var(--cl-space-3, 12px);
    font-family: var(--cl-font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--cl-text-inverse, #ffffff);
    background: var(--cl-navy-fill, #010071);
    border-radius: var(--cl-r-pill, 60px);
    padding: 5px 9px;
  }

  /* stars + rating */
  .custom-cl-lmp-dose__meta {
    display: flex;
    align-items: center;
    gap: var(--cl-space-2, 8px);
    margin-top: var(--cl-space-4, 16px);
  }
  .custom-cl-lmp-dose__stars {
    display: inline-flex;
    color: var(--cl-star, #FFCF2A);
    gap: 1px;
  }
  .custom-cl-lmp-dose__rating {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: var(--cl-weight-strong, 600);
    color: var(--cl-ink-2, #33358b);
    font-variant-numeric: tabular-nums;
  }

  .custom-cl-lmp-dose__name {
    font-family: var(--cl-font-display);
    font-weight: var(--cl-weight-display, 400);
    font-size: var(--cl-type-body, 16px);
    line-height: var(--cl-lh-snug, 1.2);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: var(--cl-space-2, 8px) 0 0;
  }
  .custom-cl-lmp-dose__for {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: var(--cl-weight-body, 400);
    line-height: 1.45;
    color: var(--cl-ink-2, #33358b);
    margin: var(--cl-space-2, 8px) 0 0;
  }

  @media screen and (min-width: 750px) {
    .custom-cl-lmp-dose__name { font-size: var(--cl-type-h4, 20px); }
    .custom-cl-lmp-dose__for { font-size: var(--cl-type-body, 16px); }
  }
  /* 390: the tag sat over the caption baked into the 5mg product photo (G4 2026-08-26) —
     drop it to the bottom-right corner on phones; the captions live at the top. */
  @media screen and (max-width: 749px) {
    .custom-cl-lmp-dose__tag { top: auto; bottom: var(--cl-space-3, 12px); }
  }
  @media (prefers-reduced-motion: reduce) {
    .custom-cl-lmp-dose__photo { transition: none; }
  }
/* END_SECTION:custom-cl-lmp-dose-grid */

/* START_SECTION:custom-cl-lmp-hero (INDEX:39) */
.custom-cl-lmp-hero {
    background-color: var(--cl-cream, #FEFBF9);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y-tight, clamp(48px, 2vw + 43px, 72px));
  }
  .custom-cl-lmp-hero__container {
    width: 100%;
    max-width: var(--cl-container, 1600px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    text-align: center;
  }
  .custom-cl-lmp-hero__nb { white-space: nowrap; }
  .custom-cl-lmp-hero__title {
    font-family: var(--cl-font-display);
    font-weight: var(--cl-weight-display, 400);
    /* was --cl-type-h2-sm (34): the page h1 rendered SMALLER than every section h2 (48) once
       this hub gained proof/compare/experts/guarantee bands. Display keeps h1 on top at both steps. */
    font-size: var(--cl-type-display, 60px);
    line-height: var(--cl-lh-snug, 1.2);
    letter-spacing: var(--cl-track-display, -1px);
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
  }
  .custom-cl-lmp-hero__body {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-lead, 19px);
    font-weight: var(--cl-weight-body, 400);
    line-height: 1.45;
    color: var(--cl-ink-2, #33358b);
    max-width: 64ch;
    margin: var(--cl-gap-md, 20px) auto 0;
    text-wrap: pretty;
  }
  .custom-cl-lmp-hero__quiz {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body, 16px);
    font-weight: var(--cl-weight-body, 400);
    line-height: 1.5;
    color: var(--cl-ink-2, #33358b);
    max-width: 64ch;
    margin: var(--cl-gap-md, 20px) auto 0;
  }
  .custom-cl-lmp-hero__quizlink {
    color: var(--cl-ink, #00026e);
    font-weight: var(--cl-weight-strong, 600);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease-out;
  }
  .custom-cl-lmp-hero__quizlink:hover { color: var(--cl-ink-2, #33358b); }

  @media screen and (min-width: 750px) {
    .custom-cl-lmp-hero__container { text-align: left; }
    .custom-cl-lmp-hero__body,
    .custom-cl-lmp-hero__quiz { margin-left: 0; margin-right: 0; }
  }
/* END_SECTION:custom-cl-lmp-hero */

/* START_SECTION:custom-cl-lp-announce (INDEX:42) */
.cl-lpann{min-height:30px;background:var(--cl-navy-fill);display:flex;align-items:center;justify-content:center;padding:4px var(--cl-gap-sm)}
  .cl-lpann--link{text-decoration:none}
  .cl-lpann__text{margin:0;font-family:var(--cl-font-body);font-size:var(--cl-type-body-sm);font-weight:var(--cl-weight-body);line-height:1.2;color:var(--cl-text-inverse);text-align:center}
  .cl-lpann--link:hover .cl-lpann__text{text-decoration:underline;text-underline-offset:2px}
  @media (max-width: 767px){
    .cl-lpann{min-height:34px;padding:4px 12px}
    .cl-lpann__text{font-size:11px;letter-spacing:0;line-height:1.15;white-space:nowrap}
  }
  @media (max-width: 400px){
    .cl-lpann__text{font-size:10px}
  }
/* END_SECTION:custom-cl-lp-announce */

/* START_SECTION:custom-cl-sci-blockers (INDEX:72) */
.custom-cl-sci-blk {
    background-color: var(--cl-bg-white, #ffffff);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-blk__container {
    width: 100%;
    max-width: var(--cl-wrap-card, 1120px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }
  .custom-cl-sci-blk__header { max-width: 760px; margin: 0 0 var(--cl-space-12, 48px); }
  .custom-cl-sci-blk__eyebrow {
    display: inline-block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-gap-title, 8px);
  }
  .custom-cl-sci-blk__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-blk__heading { font-size: 48px; }
  }
  .custom-cl-sci-blk__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--cl-space-6, 24px);
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-blk__grid { grid-template-columns: repeat(2, 1fr); gap: var(--cl-space-8, 32px); }
  }
  .custom-cl-sci-blk__cat {
    padding: var(--cl-space-6, 24px);
    background-color: var(--cl-cream, #FEFBF9);
    border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-radius: var(--cl-r-card, 4px);
  }
  .custom-cl-sci-blk__cat-h {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h4, 18px);
    font-weight: 600;
    line-height: var(--cl-lh-snug, 1.2);
    color: var(--cl-ink, #00026e);
    margin: 0 0 var(--cl-space-4, 16px);
    padding-bottom: var(--cl-space-3, 12px);
    border-bottom: 1px solid var(--cl-border, rgba(0, 2, 110, 0.10));
  }
  .custom-cl-sci-blk__list { list-style: none; margin: 0; padding: 0; }
  .custom-cl-sci-blk__item {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: var(--cl-space-3, 12px);
    align-items: baseline;
    padding: var(--cl-space-2, 8px) 0;
  }
  .custom-cl-sci-blk__marker {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--cl-border-strong, rgba(0, 2, 110, 0.22));
    margin-top: 8px;
    align-self: start;
  }
  .custom-cl-sci-blk__text {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 400;
    line-height: 1.45;
    color: var(--cl-ink-2, #33358b);
    margin: 0;
    text-wrap: pretty;
  }
  .custom-cl-sci-blk__code {
    font-weight: 600;
    color: var(--cl-ink, #00026e);
  }
/* END_SECTION:custom-cl-sci-blockers */

/* START_SECTION:custom-cl-sci-cofactors (INDEX:73) */
.custom-cl-sci-cof {
    background-color: var(--cl-cream, #FEFBF9);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-cof__container {
    width: 100%;
    max-width: var(--cl-wrap-card, 1120px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }
  .custom-cl-sci-cof__header { max-width: 760px; margin: 0 0 var(--cl-space-12, 48px); }
  .custom-cl-sci-cof__eyebrow {
    display: inline-block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-gap-title, 8px);
  }
  .custom-cl-sci-cof__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-cof__heading { font-size: 48px; }
  }
  .custom-cl-sci-cof__groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--cl-space-8, 32px);
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-cof__groups { grid-template-columns: repeat(2, 1fr); gap: var(--cl-space-12, 48px); }
  }
  .custom-cl-sci-cof__group-h {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h4, 18px);
    font-weight: 600;
    line-height: var(--cl-lh-snug, 1.2);
    color: var(--cl-ink, #00026e);
    margin: 0 0 var(--cl-space-4, 16px);
    padding-bottom: var(--cl-space-3, 12px);
    border-bottom: 1px solid var(--cl-border-strong, rgba(0, 2, 110, 0.22));
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-cof__group-h { font-size: 20px; }
  }
  .custom-cl-sci-cof__list { list-style: none; margin: 0; padding: 0; }
  .custom-cl-sci-cof__item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: var(--cl-space-3, 12px);
    align-items: baseline;
    padding: var(--cl-space-3, 12px) 0;
    border-bottom: 1px solid var(--cl-border, rgba(0, 2, 110, 0.10));
  }
  .custom-cl-sci-cof__item:last-child { border-bottom: none; }
  .custom-cl-sci-cof__marker {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--cl-accent, #0000D3);
    margin-top: 8px;
    align-self: start;
  }
  .custom-cl-sci-cof__text {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body, 16px);
    font-weight: 400;
    line-height: 1.45;
    color: var(--cl-ink-2, #33358b);
    margin: 0;
    text-wrap: pretty;
  }
  .custom-cl-sci-cof__term {
    font-weight: 600;
    color: var(--cl-ink, #00026e);
  }
/* END_SECTION:custom-cl-sci-cofactors */

/* START_SECTION:custom-cl-sci-consequences (INDEX:74) */
.custom-cl-sci-conseq {
    background-color: var(--cl-tint-neutral, #F5F5F7);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-conseq__container {
    width: 100%;
    max-width: var(--cl-wrap-card, 1120px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }
  .custom-cl-sci-conseq__header { text-align: center; max-width: 760px; margin: 0 auto var(--cl-space-12, 48px); }
  .custom-cl-sci-conseq__eyebrow {
    display: inline-block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-gap-title, 8px);
  }
  .custom-cl-sci-conseq__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-conseq__heading { font-size: 48px; }
  }
  .custom-cl-sci-conseq__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--cl-space-4, 16px);
    align-items: start;
  }
  @media screen and (min-width: 600px) {
    .custom-cl-sci-conseq__grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media screen and (min-width: 990px) {
    .custom-cl-sci-conseq__grid { grid-template-columns: repeat(4, 1fr); }
  }
  /* Collapsed cards must read as one row. The grid is `align-items:start` (so an expanded card
     never stretches its siblings), which leaves labels of 2 vs 3 lines ragged — reserve the
     tallest label box at the multi-column breakpoints only. */
  @media screen and (min-width: 600px) {
    .custom-cl-sci-conseq__card--exp .custom-cl-sci-conseq__label { min-height: 3.6em; }
  }
  .custom-cl-sci-conseq__card {
    display: flex;
    flex-direction: column;
    gap: var(--cl-space-3, 12px);
    padding: var(--cl-space-6, 24px);
    background-color: var(--cl-bg-white, #ffffff);
    border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-radius: var(--cl-r-card, 4px);
  }
  .custom-cl-sci-conseq__icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-accent, #0000D3);
  }
  .custom-cl-sci-conseq__icon svg { width: 28px; height: 28px; }
  .custom-cl-sci-conseq__label {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h4, 18px);
    font-weight: 600;
    line-height: var(--cl-lh-snug, 1.2);
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
    /* Dawn's base carries `word-break: break-word` onto headings — it snaps long Cyrillic
       words mid-word ("Неврологичн|ото"). Wrap at spaces only. */
    word-break: normal;
    overflow-wrap: normal;
  }
  .custom-cl-sci-conseq__note {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 400;
    line-height: 1.45;
    color: var(--cl-ink-3, #62639f);
    margin: 0;
    text-wrap: pretty;
  }
  /* Expandable variant (icon + label + collapsible body) — matches the original §8 accordion */
  .custom-cl-sci-conseq__card--exp { padding: 0; }
  .custom-cl-sci-conseq__card--exp[open] { border-color: var(--cl-accent, #0000D3); }
  .custom-cl-sci-conseq__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: var(--cl-space-3, 12px);
    padding: var(--cl-space-6, 24px);
    -webkit-tap-highlight-color: rgba(0, 0, 211, 0.15);
  }
  .custom-cl-sci-conseq__summary::-webkit-details-marker { display: none; }
  .custom-cl-sci-conseq__summary:focus-visible { outline: 2px solid var(--cl-accent, #0000D3); outline-offset: 2px; border-radius: 2px; }
  .custom-cl-sci-conseq__labelrow { display: flex; align-items: center; gap: var(--cl-space-3, 12px); }
  .custom-cl-sci-conseq__labelrow .custom-cl-sci-conseq__label { flex: 1 1 auto; }
  .custom-cl-sci-conseq__chev { flex-shrink: 0; color: var(--cl-accent, #0000D3); transition: transform 0.25s ease-out; }
  .custom-cl-sci-conseq__card--exp[open] .custom-cl-sci-conseq__chev { transform: rotate(45deg); }
  .custom-cl-sci-conseq__notewrap { padding: 0 var(--cl-space-6, 24px) var(--cl-space-6, 24px); }
  .custom-cl-sci-conseq__notewrap p {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--cl-ink-3, #62639f);
    margin: 0 0 var(--cl-space-2, 8px);
    text-wrap: pretty;
  }
  .custom-cl-sci-conseq__notewrap p:last-child { margin-bottom: 0; }
  @media (prefers-reduced-motion: reduce) { .custom-cl-sci-conseq__chev { transition: none; } }
/* END_SECTION:custom-cl-sci-consequences */

/* START_SECTION:custom-cl-sci-cta (INDEX:75) */
.custom-cl-sci-cta {
    background: var(--cl-grad-navy, radial-gradient(120% 140% at 20% 0%, #0a0f6b 0%, var(--cl-navy) 55%));
    background-color: var(--cl-bg-navy, #00026e);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-cta__container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    text-align: center;
  }
  .custom-cl-sci-cta__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-text-inverse, #ffffff);
    margin: 0;
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-cta__heading { font-size: 48px; }
  }
  .custom-cl-sci-cta__sub {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-lead, 19px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--cl-text-inverse-soft, rgba(255, 255, 255, 0.82));
    margin: var(--cl-space-5, 20px) auto 0;
    max-width: 560px;
    text-wrap: pretty;
  }
  /* Reassurance sits UNDER the button, never in the heading — the headline
     sells the next step, the guarantee only backs it up. */
  .custom-cl-sci-cta__note {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--cl-text-inverse-soft, rgba(255, 255, 255, 0.82));
    margin: var(--cl-space-4, 16px) auto 0;
  }
  .custom-cl-sci-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--cl-space-3, 12px);
    justify-content: center;
    margin-top: var(--cl-space-8, 32px);
  }
  .custom-cl-sci-cta__btn {
    background: var(--cl-bg-white, #ffffff);
    color: var(--cl-ink, #00026e);
  }
  .custom-cl-sci-cta__btn:hover { background: var(--cl-cream, #FEFBF9); }
  .custom-cl-sci-cta__btn:focus-visible {
    outline: 2.5px solid var(--cl-text-inverse, #ffffff);
    outline-offset: 2px;
  }
/* END_SECTION:custom-cl-sci-cta */

/* START_SECTION:custom-cl-sci-cycle (INDEX:76) */
.custom-cl-sci-cycle {
    background-color: var(--cl-cream, #FEFBF9);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-cycle__container {
    width: 100%;
    max-width: var(--cl-wrap-card, 1120px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }
  .custom-cl-sci-cycle__header { max-width: 760px; margin: 0 0 var(--cl-space-12, 48px); }
  .custom-cl-sci-cycle__eyebrow {
    display: inline-block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-gap-title, 8px);
  }
  .custom-cl-sci-cycle__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-cycle__heading { font-size: 48px; }
  }
  .custom-cl-sci-cycle__body {
    display: flex;
    flex-direction: column;
    gap: var(--cl-space-12, 48px);
  }
  {%- comment -%} 568 = the figure's 520 + 24 padding each side. The native figure's labels are
      sized against a 520px render (the same width the home molecule caps at); stretched to the
      old 980 they would render at ~32px and the figure would read as a poster. {%- endcomment -%}
  .custom-cl-sci-cycle__figwrap { width: 100%; max-width: 568px; margin: 0 auto; }
  .custom-cl-sci-cycle__steps-wrap { width: 100%; max-width: var(--cl-wrap-text, 760px); margin: 0 auto; }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-cycle__steps { display: grid; grid-template-columns: 1fr 1fr; column-gap: var(--cl-space-16, 64px); }
  }
  /* Count-gate (data-count = section.blocks.size): 3 steps in the 1fr 1fr grid leave an
     empty 2×2 quadrant at desktop. Give the odd count a single 3-col row on the wider card
     wrap. 4-step keeps the default 2×2 (data-count="4" — these rules are inert). */
  .custom-cl-sci-cycle__steps-wrap[data-count="3"] { max-width: var(--cl-wrap-card, 1120px); }
  @media screen and (min-width: 990px) {
    .custom-cl-sci-cycle__steps[data-count="3"] { grid-template-columns: repeat(3, 1fr); column-gap: var(--cl-space-8, 40px); }
  }
  /* Figure */
  .custom-cl-sci-cycle__figure {
    margin: 0;
    border-radius: var(--cl-r-panel, 12px);
    overflow: hidden;
    background-color: var(--cl-bg-white, #ffffff);
    border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
  }
  .custom-cl-sci-cycle__figure img { display: block; width: 100%; height: auto; }
  {%- comment -%} The raster filled its box edge-to-edge because its margins were baked in.
      A drawn figure has none — give it the air back. {%- endcomment -%}
  .custom-cl-sci-cycle__figure:has(.cl-scifig) { padding: var(--cl-space-6, 24px); }
  {%- comment -%} On mobile the ~340px column is already tight; drop the box padding so the ring
      renders wider and the badges/CH₃ clear the 12px floor. {%- endcomment -%}
  @media screen and (max-width: 749px) {
    .custom-cl-sci-cycle__figure:has(.cl-scifig) { padding: var(--cl-space-3, 12px); }
  }
  /* Count-gate (data-steps = section.blocks.size): the built-in cycle figure carries interior
     ①②③④ badges keyed to /pages/science's 4 numbered steps. The 3-step LP shows no numbered list
     beside the ring, so those numerals read as orphaned. Hide the WHOLE badge — the numeral text
     (.cl-scifig__badget) AND its outline ring (the interior r=13 circle group) — on 3-step
     instances only, so the ring keeps just its station labels + gold arc + CH₃ token (a clean
     cycle diagram, no empty leftover circles). data-steps="4" (science) leaves both rules inert
     → badges stay. */
  .custom-cl-sci-cycle[data-steps="3"] .cl-scifig__badget { display: none; }
  .custom-cl-sci-cycle[data-steps="3"] .cl-scifig--cycle g:has(> circle[r="13"]) { display: none; }
  .custom-cl-sci-cycle__caption {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--cl-ink-3, #62639f);
    margin: var(--cl-space-4, 16px) 0 0;
    text-wrap: pretty;
  }
  /* Steps */
  .custom-cl-sci-cycle__steps { list-style: none; margin: 0; padding: 0; counter-reset: cyc; }
  .custom-cl-sci-cycle__step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: var(--cl-space-4, 16px);
    align-items: start;
    padding: var(--cl-space-4, 16px) 0;
    border-bottom: 1px solid var(--cl-border, rgba(0, 2, 110, 0.10));
  }
  .custom-cl-sci-cycle__step:last-child { border-bottom: none; }
  .custom-cl-sci-cycle__num {
    counter-increment: cyc;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--cl-accent-tint, rgba(0, 0, 211, 0.08));
    color: var(--cl-accent, #0000D3);
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-body, 16px);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
  }
  .custom-cl-sci-cycle__num::before { content: counter(cyc); }
  .custom-cl-sci-cycle__step-body { padding-top: 6px; }
  .custom-cl-sci-cycle__step-title {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h4, 18px);
    font-weight: 600;
    line-height: var(--cl-lh-snug, 1.2);
    color: var(--cl-ink, #00026e);
    margin: 0;
  }
  .custom-cl-sci-cycle__step-note {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--cl-ink-3, #62639f);
    margin: 4px 0 0;
  }
/* END_SECTION:custom-cl-sci-cycle */

/* START_SECTION:custom-cl-sci-faq (INDEX:77) */
.custom-cl-sci-faq {
    background-color: var(--cl-cream, #FEFBF9);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-faq__container {
    width: 100%;
    max-width: var(--cl-wrap-text, 760px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }
  .custom-cl-sci-faq__header { text-align: center; margin: 0 0 var(--cl-space-8, 32px); }
  .custom-cl-sci-faq__eyebrow {
    display: inline-block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-gap-title, 8px);
  }
  .custom-cl-sci-faq__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-faq__heading { font-size: 48px; }
  }
  .custom-cl-sci-faq__list {
    border-top: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
  }
  .custom-cl-sci-faq__all { margin: var(--cl-gap-lg, 30px) 0 0; text-align: center; font-size: var(--cl-type-body-sm, 14px); }
  .custom-cl-sci-faq__all a { color: var(--cl-ink-2); font-weight: 500; text-decoration: none; }
  .custom-cl-sci-faq__all a:hover { color: var(--cl-ink); }
  .custom-cl-sci-faq__item {
    border-bottom: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-left: 2px solid transparent;
    padding-left: var(--cl-space-4, 16px);
    margin-left: calc(var(--cl-space-4, 16px) * -1);
    transition: border-left-color 0.2s ease-out;
  }
  .custom-cl-sci-faq__item[open] { border-left-color: var(--cl-accent, #0000D3); }
  .custom-cl-sci-faq__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--cl-space-4, 16px);
    min-height: 48px;
    padding: var(--cl-space-5, 20px) 0;
    -webkit-tap-highlight-color: rgba(0, 0, 211, 0.15);
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h4, 18px);
    font-weight: 600;
    line-height: var(--cl-lh-snug, 1.2);
    color: var(--cl-ink, #00026e);
  }
  .custom-cl-sci-faq__q::-webkit-details-marker { display: none; }
  .custom-cl-sci-faq__q:focus-visible {
    outline: 2px solid var(--cl-accent, #0000D3);
    outline-offset: 2px;
    border-radius: 2px;
  }
  .custom-cl-sci-faq__q > span { flex: 1 1 auto; }
  .custom-cl-sci-faq__chev {
    flex-shrink: 0;
    color: var(--cl-accent, #0000D3);
    transition: transform 0.25s ease-out;
  }
  .custom-cl-sci-faq__item[open] .custom-cl-sci-faq__chev { transform: rotate(45deg); }
  .custom-cl-sci-faq__a {
    padding: 0 0 var(--cl-space-5, 20px);
  }
  .custom-cl-sci-faq__a p {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body, 16px);
    font-weight: 400;
    line-height: 1.55;
    color: var(--cl-ink-2, #33358b);
    margin: 0;
    max-width: 64ch;
    text-wrap: pretty;
  }
  @media (prefers-reduced-motion: reduce) {
    .custom-cl-sci-faq__item, .custom-cl-sci-faq__chev { transition: none; }
  }
/* END_SECTION:custom-cl-sci-faq */

/* START_SECTION:custom-cl-sci-hero (INDEX:78) */
.custom-cl-sci-hero {
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px)) 0;
  background: var(--cl-grad-sky, linear-gradient(180deg, #f4f8fd 0%, #fefbf9 100%));
}
.custom-cl-sci-hero--grad_cream {
  background: var(--cl-grad-cream, linear-gradient(180deg, #fbf9f5 0%, #ffffff 100%));
}
.custom-cl-sci-hero--cream {
  background-color: var(--cl-cream, #FEFBF9);
}
.custom-cl-sci-hero__container {
  width: 100%;
  max-width: var(--cl-wrap-card, 1120px);
  margin: 0 auto;
  padding: 0 var(--cl-gutter, clamp(20px, 6.5vw, 96px));
}
.custom-cl-sci-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.custom-cl-sci-hero__eyebrow {
  display: inline-block;
  font-family: var(--cl-font-body);
  font-size: var(--cl-type-caption, 12px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cl-accent, #0000D3);
  background-color: var(--cl-accent-tint, rgba(0, 0, 211, 0.08));
  padding: 8px 16px;
  border-radius: var(--cl-r-pill, 60px);
  line-height: 1.3;
  margin: 0 0 var(--cl-space-4, 16px);
}
.custom-cl-sci-hero__title {
  font-family: var(--cl-font-display);
  font-size: var(--cl-type-display, 48px);
  font-weight: 600;
  line-height: var(--cl-lh-tight, 1.1);
  letter-spacing: var(--cl-track-tight, -0.01em);
  color: var(--cl-ink, #00026e);
  margin: 0;
  max-width: 16ch;
  text-wrap: balance;
}
.custom-cl-sci-hero__subhead {
  font-family: var(--cl-font-body);
  font-size: var(--cl-type-lead, 19px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--cl-ink-2, #33358b);
  margin: var(--cl-space-5, 20px) 0 0;
  max-width: 640px;
  text-wrap: pretty;
}
.custom-cl-sci-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px var(--cl-space-3, 12px);
  margin: var(--cl-space-6, 24px) 0 0;
  max-width: 640px;
  font-family: var(--cl-font-body);
  font-size: var(--cl-type-body-sm, 14px);
  line-height: 1.4;
  color: var(--cl-ink-3, #62639f);
}
.custom-cl-sci-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.custom-cl-sci-hero__meta-item--time {
  font-weight: 600;
  color: var(--cl-ink-2, #33358b);
}
.custom-cl-sci-hero__meta-icon {
  flex-shrink: 0;
  color: var(--cl-accent, #0000D3);
}
.custom-cl-sci-hero__meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--cl-border-strong, rgba(0, 2, 110, 0.22));
  flex-shrink: 0;
}
/* Two CTAs stack: secondary directly below the primary, never beside it —
   same grammar as the home hero and the closing CTA. */
.custom-cl-sci-hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--cl-space-3, 12px);
  margin-top: var(--cl-space-8, 32px);
}
.custom-cl-sci-hero__buttons .cl-btn--ghost {
  border: 0;
  padding: 4px 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}
.custom-cl-sci-hero__btn:focus-visible {
  outline: 2px solid var(--cl-accent, #0000D3);
  outline-offset: 2px;
}
/* END_SECTION:custom-cl-sci-hero */

/* START_SECTION:custom-cl-sci-mthfr (INDEX:79) */
.custom-cl-sci-mthfr {
    background-color: var(--cl-bg-white, #ffffff);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-mthfr__container {
    width: 100%;
    max-width: var(--cl-wrap-card, 1120px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }
  .custom-cl-sci-mthfr__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--cl-space-8, 32px);
    align-items: center;
  }
  @media screen and (min-width: 990px) {
    .custom-cl-sci-mthfr__grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: var(--cl-space-16, 64px); }
  }
  .custom-cl-sci-mthfr__eyebrow {
    display: inline-block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-gap-title, 8px);
  }
  .custom-cl-sci-mthfr__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0 0 var(--cl-space-5, 20px);
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-mthfr__heading { font-size: 48px; }
  }
  .custom-cl-sci-mthfr__body {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-lg, 19px);
    font-weight: 400;
    line-height: 1.55;
    color: var(--cl-ink-2, #33358b);
    margin: 0;
    text-wrap: pretty;
  }
  .custom-cl-sci-mthfr__body p { margin: 0 0 var(--cl-space-4, 16px); }
  .custom-cl-sci-mthfr__body p:last-child { margin-bottom: 0; }
  .custom-cl-sci-mthfr__body strong { font-weight: 600; color: var(--cl-ink, #00026e); }
  /* Figure */
  .custom-cl-sci-mthfr__figure {
    margin: 0;
    order: -1;
    border-radius: var(--cl-r-panel, 12px);
    overflow: hidden;
    border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    background-color: var(--cl-cream, #FEFBF9);
  }
  @media screen and (min-width: 990px) { .custom-cl-sci-mthfr__figure { order: 0; } }
  .custom-cl-sci-mthfr__figure img { display: block; width: 100%; height: auto; }
  {%- comment -%} Below 990 the grid collapses to one column and the figure would stretch to the
      full ~990 container — at that scale its labels render ~38px. Cap it. {%- endcomment -%}
  .custom-cl-sci-mthfr__figure:has(.cl-scifig) { padding: var(--cl-space-5, 20px); }
  .custom-cl-sci-mthfr__figure .cl-scifig { max-width: 460px; }
  /* Solution card (right column when no image) */
  .custom-cl-sci-mthfr__solution {
    order: -1;
    padding: var(--cl-space-8, 32px);
    background-color: var(--cl-accent-tint, rgba(0, 0, 211, 0.08));
    border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-radius: var(--cl-r-panel, 12px);
  }
  @media screen and (min-width: 990px) { .custom-cl-sci-mthfr__solution { order: 0; } }
  .custom-cl-sci-mthfr__solution-label {
    display: block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-space-3, 12px);
  }
  .custom-cl-sci-mthfr__solution-text {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h3, 24px);
    font-weight: 600;
    line-height: var(--cl-lh-snug, 1.2);
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
  }
  /* When a figure is present, the solution renders as an inline callout under the body text */
  .custom-cl-sci-mthfr__inline-solution {
    margin: var(--cl-space-6, 24px) 0 0;
    padding: var(--cl-space-5, 20px) var(--cl-space-6, 24px);
    background-color: var(--cl-accent-tint, rgba(0, 0, 211, 0.08));
    border-radius: var(--cl-r-card, 4px);
  }
  .custom-cl-sci-mthfr__inline-solution .custom-cl-sci-mthfr__solution-text { font-size: var(--cl-type-lead, 19px); }
/* END_SECTION:custom-cl-sci-mthfr */

/* START_SECTION:custom-cl-sci-outcomes (INDEX:80) */
.custom-cl-sci-outcomes {
    background-color: var(--cl-bg-white, #ffffff);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-outcomes__container {
    width: 100%;
    max-width: var(--cl-wrap-card, 1120px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }
  .custom-cl-sci-outcomes__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--cl-space-12, 48px);
  }
  .custom-cl-sci-outcomes__eyebrow {
    display: inline-block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-gap-title, 8px);
  }
  /* --cl-type-h2 is already responsive (48px, 34px at <=767px) — no media
     override here, or the 750-767px window renders 48 where the token says 34. */
  .custom-cl-sci-outcomes__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
  }

  .custom-cl-sci-outcomes__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--cl-space-3, 12px);
  }
  @media screen and (min-width: 600px) {
    .custom-cl-sci-outcomes__grid { grid-template-columns: repeat(2, 1fr); gap: var(--cl-space-4, 16px); }
  }
  @media screen and (min-width: 990px) {
    .custom-cl-sci-outcomes__grid { grid-template-columns: repeat(3, 1fr); }
  }
  .custom-cl-sci-outcomes__item {
    display: flex;
    align-items: center;
    gap: var(--cl-space-4, 16px);
    padding: var(--cl-space-5, 20px);
    background-color: var(--cl-cream, #FEFBF9);
    border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-radius: var(--cl-r-card, 4px);
  }
  .custom-cl-sci-outcomes__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--cl-r-panel, 12px);
    background-color: var(--cl-accent-tint, rgba(0, 0, 211, 0.08));
    color: var(--cl-accent, #0000D3);
  }
  .custom-cl-sci-outcomes__icon svg { width: 22px; height: 22px; }
  .custom-cl-sci-outcomes__label {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body, 16px);
    font-weight: 500;
    line-height: 1.3;
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
    /* Dawn's base puts `word-break: break-word` on headings — snaps Cyrillic mid-word. */
    word-break: normal;
    overflow-wrap: normal;
  }

  /* The measurable anchor. Rendered at --cl-type-stat rather than as body
     copy: it is the one testable number behind the felt outcomes above, and
     it gives this section a scale step (stat/body) instead of a flat grid. */
  .custom-cl-sci-outcomes__measure {
    margin: var(--cl-space-12, 48px) auto 0;
    max-width: 760px;
    padding-top: var(--cl-space-12, 48px);
    border-top: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    text-align: center;
  }
  .custom-cl-sci-outcomes__stat {
    display: block;
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-stat, 48px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0 0 var(--cl-space-2, 8px);
  }
  .custom-cl-sci-outcomes__measure-label {
    margin: 0 auto;
    max-width: 46ch;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body, 16px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--cl-ink-3, #62639f);
    text-wrap: pretty;
  }
/* END_SECTION:custom-cl-sci-outcomes */

/* START_SECTION:custom-cl-sci-products (INDEX:81) */
.custom-cl-sci-prod {
    background-color: var(--cl-bg-white, #ffffff);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-prod__container {
    width: 100%;
    max-width: var(--cl-wrap-card, 1120px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }
  .custom-cl-sci-prod__header { text-align: center; max-width: 760px; margin: 0 auto var(--cl-space-12, 48px); }
  .custom-cl-sci-prod__eyebrow {
    display: inline-block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-gap-title, 8px);
  }
  .custom-cl-sci-prod__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0 0 var(--cl-gap-title, 8px);
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-prod__heading { font-size: 48px; }
  }
  .custom-cl-sci-prod__sub {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-lead, 19px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--cl-ink-2, #33358b);
    margin: 0;
  }
  .custom-cl-sci-prod__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--cl-space-5, 20px);
  }
  @media screen and (min-width: 600px) {
    .custom-cl-sci-prod__grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media screen and (min-width: 990px) {
    .custom-cl-sci-prod__grid { grid-template-columns: repeat(4, 1fr); }
  }
  .custom-cl-sci-prod__card {
    display: flex;
    flex-direction: column;
    background-color: var(--cl-cream, #FEFBF9);
    border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-radius: var(--cl-r-card, 4px);
    padding: var(--cl-space-4, 16px);
    text-decoration: none;
    transition: border-color 0.2s ease-out;
  }
  @media (hover: hover) {
    .custom-cl-sci-prod__card:hover { border-color: var(--cl-border-strong, rgba(0, 2, 110, 0.22)); }
  }
  .custom-cl-sci-prod__card:focus-visible {
    outline: 2.5px solid var(--cl-ink, #00026e);
    outline-offset: 2px;
    border-radius: var(--cl-r-panel);
  }
  .custom-cl-sci-prod__imgbox {
    aspect-ratio: 1 / 1;
    border-radius: var(--cl-r-card, 4px);
    overflow: hidden;
    background-color: var(--cl-bg-white, #ffffff);
    margin-bottom: var(--cl-space-4, 16px);
  }
  .custom-cl-sci-prod__img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .custom-cl-sci-prod__rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: var(--cl-space-2, 8px);
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 600;
    color: var(--cl-ink, #00026e);
  }
  .custom-cl-sci-prod__stars { display: inline-flex; color: var(--cl-star, #FFCF2A); gap: 1px; }
  .custom-cl-sci-prod__name {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h4, 18px);
    font-weight: 600;
    line-height: var(--cl-lh-snug, 1.2);
    color: var(--cl-ink, #00026e);
    margin: 0 0 var(--cl-space-2, 8px);
  }
  .custom-cl-sci-prod__desc {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 400;
    line-height: 1.45;
    color: var(--cl-ink-2, #33358b);
    margin: 0 0 var(--cl-space-4, 16px);
    text-wrap: pretty;
    flex: 1 1 auto;
  }
  .custom-cl-sci-prod__pricerow {
    display: flex;
    align-items: baseline;
    gap: var(--cl-space-2, 8px);
    margin-bottom: var(--cl-space-4, 16px);
  }
  .custom-cl-sci-prod__price {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-lead, 19px);
    font-weight: 600;
    color: var(--cl-ink, #00026e);
    font-variant-numeric: tabular-nums;
  }
  .custom-cl-sci-prod__compare {
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 400;
    color: var(--cl-ink-3, #62639f);
  }
  .custom-cl-sci-prod__cta {
    width: 100%;
    min-height: 44px;
  }
/* END_SECTION:custom-cl-sci-products */

/* START_SECTION:custom-cl-sci-protocol (INDEX:82) */
.custom-cl-sci-prot {
    background-color: var(--cl-cream, #FEFBF9);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-prot__container {
    width: 100%;
    max-width: var(--cl-wrap-card, 1120px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }
  .custom-cl-sci-prot__header { text-align: center; max-width: 760px; margin: 0 auto var(--cl-space-12, 48px); }
  .custom-cl-sci-prot__eyebrow {
    display: inline-block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-gap-title, 8px);
  }
  .custom-cl-sci-prot__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0 0 var(--cl-space-5, 20px);
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-prot__heading { font-size: 48px; }
  }
  .custom-cl-sci-prot__lead {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-lead, 19px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--cl-ink-2, #33358b);
    margin: 0;
    text-wrap: pretty;
  }
  /* Formula card */
  .custom-cl-sci-prot__formula {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: var(--cl-space-3, 12px);
    max-width: var(--cl-wrap-text, 760px);
    margin: 0 auto;
    padding: var(--cl-space-8, 32px);
    background-color: var(--cl-bg-white, #ffffff);
    border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-radius: var(--cl-r-panel, 12px);
  }
  .custom-cl-sci-prot__chip {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 64px;
    padding: var(--cl-space-4, 16px) var(--cl-space-5, 20px);
    background-color: var(--cl-cream-2, #fbf9f5);
    border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-radius: var(--cl-r-card, 4px);
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body, 16px);
    font-weight: 500;
    line-height: 1.3;
    color: var(--cl-ink, #00026e);
  }
  .custom-cl-sci-prot__op {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h3, 24px);
    font-weight: 600;
    color: var(--cl-ink-3, #62639f);
    padding: 0 var(--cl-space-1, 4px);
  }
  .custom-cl-sci-prot__chip--result {
    flex: 1 1 220px;
    background-color: var(--cl-accent, #0000D3);
    border-color: var(--cl-accent, #0000D3);
    color: var(--cl-text-inverse, #ffffff);
    font-weight: 600;
  }
  @media screen and (max-width: 599px) {
    .custom-cl-sci-prot__chip, .custom-cl-sci-prot__chip--result { flex-basis: 100%; }
    .custom-cl-sci-prot__op { width: 100%; padding: var(--cl-space-1, 4px) 0; }
  }
  .custom-cl-sci-prot__figwrap { width: 100%; max-width: 420px; margin: 0 auto var(--cl-space-10, 40px); }
  .custom-cl-sci-prot__figure { margin: 0; border-radius: var(--cl-r-panel, 12px); overflow: hidden; border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12)); background-color: var(--cl-bg-white, #ffffff); }
  .custom-cl-sci-prot__figure img { display: block; width: 100%; height: auto; }
  .custom-cl-sci-prot__figure:has(.cl-scifig) { padding: var(--cl-space-5, 20px); }
  /* Dosing detail (reinstated "Оптимален протокол" row) */
  .custom-cl-sci-prot__detail {
    max-width: var(--cl-wrap-text, 760px);
    margin: var(--cl-space-4, 16px) auto 0;
    border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-radius: var(--cl-r-panel, 12px);
    background-color: var(--cl-bg-white, #ffffff);
  }
  .custom-cl-sci-prot__detail[open] { border-color: var(--cl-accent, #0000D3); }
  .custom-cl-sci-prot__detail-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--cl-space-4, 16px);
    min-height: 48px;
    padding: var(--cl-space-5, 20px) var(--cl-space-6, 24px);
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h4, 18px);
    font-weight: 600;
    color: var(--cl-ink, #00026e);
    -webkit-tap-highlight-color: rgba(0, 0, 211, 0.15);
  }
  .custom-cl-sci-prot__detail-summary::-webkit-details-marker { display: none; }
  .custom-cl-sci-prot__detail-summary:focus-visible { outline: 2px solid var(--cl-accent, #0000D3); outline-offset: 2px; border-radius: 2px; }
  .custom-cl-sci-prot__detail-chev { flex-shrink: 0; color: var(--cl-accent, #0000D3); transition: transform 0.25s ease-out; }
  .custom-cl-sci-prot__detail[open] .custom-cl-sci-prot__detail-chev { transform: rotate(45deg); }
  .custom-cl-sci-prot__detail-body { padding: 0 var(--cl-space-6, 24px) var(--cl-space-6, 24px); }
  .custom-cl-sci-prot__detail-body p {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body, 16px);
    font-weight: 400;
    line-height: 1.55;
    color: var(--cl-ink-2, #33358b);
    margin: 0 0 var(--cl-space-3, 12px);
    max-width: 68ch;
    text-wrap: pretty;
  }
  .custom-cl-sci-prot__detail-body p:last-child { margin-bottom: 0; }
  @media (prefers-reduced-motion: reduce) { .custom-cl-sci-prot__detail-chev { transition: none; } }
/* END_SECTION:custom-cl-sci-protocol */

/* START_SECTION:custom-cl-sci-statbar (INDEX:83) */
.custom-cl-sci-statbar {
    background-color: var(--cl-cream, #FEFBF9);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-statbar__container {
    width: 100%;
    max-width: var(--cl-wrap-card, 1120px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }
  .custom-cl-sci-statbar__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--cl-space-12, 48px);
  }
  .custom-cl-sci-statbar__eyebrow {
    display: inline-block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-gap-title, 8px);
  }
  .custom-cl-sci-statbar__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-statbar__heading { font-size: 48px; }
  }

  .custom-cl-sci-statbar__grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-bottom: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-statbar__grid { grid-template-columns: repeat(3, 1fr); }
  }
  .custom-cl-sci-statbar__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--cl-space-12, 48px) var(--cl-space-4, 16px);
    border-bottom: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
  }
  .custom-cl-sci-statbar__cell:last-child { border-bottom: none; }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-statbar__cell {
      padding: var(--cl-space-16, 64px) var(--cl-space-6, 24px);
      border-bottom: none;
      border-right: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    }
    .custom-cl-sci-statbar__cell:last-child { border-right: none; }
  }
  .custom-cl-sci-statbar__number {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-stat, 48px);
    font-weight: 600;
    line-height: 1;
    color: var(--cl-accent, #0000D3);
    font-variant-numeric: tabular-nums;
    letter-spacing: var(--cl-track-tight, -0.01em);
    margin: 0 0 var(--cl-space-4, 16px);
    white-space: nowrap;
  }
  @media screen and (min-width: 990px) {
    .custom-cl-sci-statbar__number { font-size: 60px; }
  }
  .custom-cl-sci-statbar__label {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body, 16px);
    font-weight: 400;
    line-height: var(--cl-lh-body, 1.45);
    color: var(--cl-ink-2, #33358b);
    margin: 0;
    max-width: 34ch;
    text-wrap: pretty;
  }
  .custom-cl-sci-statbar__footer {
    text-align: center;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--cl-ink-3, #62639f);
    margin: var(--cl-space-8, 32px) auto 0;
    max-width: 640px;
  }
  .custom-cl-sci-statbar__banner { margin: var(--cl-space-12, 48px) 0 0; border-radius: var(--cl-r-panel, 12px); overflow: hidden; }
  .custom-cl-sci-statbar__banner img { display: block; width: 100%; height: auto; }
  /* The native figure has no background of its own — it draws straight onto the band, the way the
     home molecule does. Nothing to round or clip. */
  /* DNA ships as an editorial two-column PLATE: the landscape composition fills the banner on
     desktop; the stacked composition (shown <=749px) is capped + centred so it never becomes a
     sliver. Both carry .cl-scifig, so scope the width cap to each. */
  .custom-cl-sci-statbar__banner .cl-scifig--dnawide { max-width: 980px; }
  .custom-cl-sci-statbar__banner .cl-scifig--dna { max-width: 400px; }
/* END_SECTION:custom-cl-sci-statbar */

/* START_SECTION:custom-cl-sci-studies (INDEX:84) */
.custom-cl-sci-stud {
    background-color: var(--cl-bg-white, #ffffff);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-stud__container {
    width: 100%;
    max-width: var(--cl-wrap-text, 760px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }
  .custom-cl-sci-stud__header { text-align: center; margin: 0 0 var(--cl-space-8, 32px); }
  .custom-cl-sci-stud__eyebrow {
    display: inline-block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-gap-title, 8px);
  }
  .custom-cl-sci-stud__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0 0 var(--cl-gap-title, 8px);
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-stud__heading { font-size: 48px; }
  }
  .custom-cl-sci-stud__sub {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body, 16px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--cl-ink-3, #62639f);
    margin: 0;
  }
  .custom-cl-sci-stud__list {
    margin-top: var(--cl-space-8, 32px);
    border-top: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
  }
  .custom-cl-sci-stud__item {
    border-bottom: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-left: 2px solid transparent;
    padding-left: var(--cl-space-4, 16px);
    margin-left: calc(var(--cl-space-4, 16px) * -1);
    transition: border-left-color 0.2s ease-out;
  }
  .custom-cl-sci-stud__item[open] { border-left-color: var(--cl-accent, #0000D3); }
  .custom-cl-sci-stud__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--cl-space-4, 16px);
    min-height: 48px;
    padding: var(--cl-space-4, 16px) 0;
    -webkit-tap-highlight-color: rgba(0, 0, 211, 0.15);
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h4, 18px);
    font-weight: 600;
    line-height: var(--cl-lh-snug, 1.2);
    color: var(--cl-ink, #00026e);
  }
  .custom-cl-sci-stud__q::-webkit-details-marker { display: none; }
  .custom-cl-sci-stud__q:focus-visible {
    outline: 2px solid var(--cl-accent, #0000D3);
    outline-offset: 2px;
    border-radius: 2px;
  }
  .custom-cl-sci-stud__q > span { flex: 1 1 auto; }
  .custom-cl-sci-stud__chev {
    flex-shrink: 0;
    color: var(--cl-accent, #0000D3);
    transition: transform 0.25s ease-out;
  }
  .custom-cl-sci-stud__item[open] .custom-cl-sci-stud__chev { transform: rotate(45deg); }
  .custom-cl-sci-stud__a { padding: 0 0 var(--cl-space-5, 20px); }
  .custom-cl-sci-stud__summary {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body, 16px);
    font-weight: 400;
    line-height: 1.55;
    color: var(--cl-ink-2, #33358b);
    margin: 0;
    max-width: 64ch;
    text-wrap: pretty;
  }
  .custom-cl-sci-stud__cite {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--cl-ink-3, #62639f);
    margin: var(--cl-space-3, 12px) 0 0;
    padding-top: var(--cl-space-3, 12px);
    border-top: 1px solid var(--cl-border, rgba(0, 2, 110, 0.10));
    max-width: 64ch;
  }
  .custom-cl-sci-stud__cite::before {
    content: "Източници: ";
    font-weight: 600;
    color: var(--cl-ink-2, #33358b);
  }
  @media (prefers-reduced-motion: reduce) {
    .custom-cl-sci-stud__item, .custom-cl-sci-stud__chev { transition: none; }
  }
/* END_SECTION:custom-cl-sci-studies */

/* START_SECTION:custom-cl-sci-toc (INDEX:85) */
/* The Shopify-generated wrapper is the sticky element, not the inner
   <nav> — promoting sticky to the wrapper gives it full scroll runway. */
.shopify-section.custom-cl-sci-toc-section {
  position: sticky;
  top: var(--cl-header-height, 88px);
  z-index: 30;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}
.custom-cl-sci-toc {
  position: static;
}
.custom-cl-sci-toc__container {
  width: 100%;
  max-width: var(--cl-wrap-card, 1120px);
  margin: 0 auto;
  padding: 0 var(--cl-gutter, clamp(20px, 6.5vw, 96px));
}

/* ── Mobile/tablet: collapsed current-section dropdown ── */
.custom-cl-sci-toc__details {
  margin: 0;
  position: relative;
}
.custom-cl-sci-toc__summary {
  list-style: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 211, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--cl-space-3, 12px);
  min-height: 52px;
  padding: var(--cl-space-3, 12px) 0;
}
.custom-cl-sci-toc__summary::-webkit-details-marker { display: none; }
.custom-cl-sci-toc__summary:focus-visible {
  outline: 2px solid var(--cl-accent, #0000D3);
  outline-offset: -2px;
  border-radius: 4px;
}
.custom-cl-sci-toc__summary-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.custom-cl-sci-toc__summary-eyebrow {
  font-family: var(--cl-font-body);
  font-size: var(--cl-type-caption, 12px);
  font-weight: 400;
  color: var(--cl-ink-3, #62639f);
}
.custom-cl-sci-toc__summary-current {
  font-family: var(--cl-font-body);
  font-size: var(--cl-type-nav, 15px);
  font-weight: 600;
  color: var(--cl-ink, #00026e);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.custom-cl-sci-toc__chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--cl-ink-3, #62639f);
  transition: transform 0.25s ease-out;
}
.custom-cl-sci-toc__details[open] .custom-cl-sci-toc__chevron {
  transform: rotate(180deg);
}
.custom-cl-sci-toc__panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--cl-bg-white, #ffffff);
  border-bottom: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
  box-shadow: var(--cl-shadow-card, 0 2px 16px rgba(0, 2, 110, 0.07));
  max-height: calc(100vh - var(--cl-header-height, 88px) - 100px);
  overflow-y: auto;
  padding: var(--cl-space-2, 8px) var(--cl-gutter, clamp(20px, 6.5vw, 96px)) var(--cl-space-3, 12px);
}
.custom-cl-sci-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-cl-sci-toc__item {
  margin: 0;
}
.custom-cl-sci-toc__link {
  display: flex;
  align-items: center;
  gap: var(--cl-space-3, 12px);
  padding: var(--cl-space-3, 12px) 0;
  font-family: var(--cl-font-body);
  font-size: var(--cl-type-nav, 15px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--cl-ink-2, #33358b);
  text-decoration: none;
  border-bottom: 1px solid var(--cl-border, rgba(0, 2, 110, 0.08));
  transition: color 0.15s ease-out;
  min-height: 44px;
}
.custom-cl-sci-toc__item:last-child .custom-cl-sci-toc__link { border-bottom: none; }
.custom-cl-sci-toc__link::before {
  content: "";
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background-color: transparent;
  transition: background-color 0.15s ease-out;
  flex-shrink: 0;
}
@media (hover: hover) {
  .custom-cl-sci-toc__link:hover { color: var(--cl-ink, #00026e); }
  .custom-cl-sci-toc__link:hover::before { background-color: var(--cl-border-strong, rgba(0, 2, 110, 0.22)); }
}
.custom-cl-sci-toc__link.is-active {
  color: var(--cl-ink, #00026e);
  font-weight: 600;
}
.custom-cl-sci-toc__link.is-active::before {
  background-color: var(--cl-accent, #0000D3);
}
.custom-cl-sci-toc__link:focus-visible {
  outline: 2px solid var(--cl-accent, #0000D3);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Desktop (≥1024px): horizontal pill bar ── */
@media screen and (min-width: 1024px) {
  .custom-cl-sci-toc__details { pointer-events: none; }
  .custom-cl-sci-toc__summary { display: none; }
  .custom-cl-sci-toc__panel {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    padding: 0;
    pointer-events: auto;
  }
  .custom-cl-sci-toc__list {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: var(--cl-space-3, 12px) 0;
  }
  .custom-cl-sci-toc__list::-webkit-scrollbar { display: none; }
  .custom-cl-sci-toc__item { flex: 0 0 auto; }
  .custom-cl-sci-toc__link {
    padding: 8px 16px;
    border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-radius: var(--cl-r-pill, 60px);
    font-size: var(--cl-type-nav, 14px);
    min-height: 38px;
    white-space: nowrap;
  }
  .custom-cl-sci-toc__link::before { display: none; }
  @media (hover: hover) {
    .custom-cl-sci-toc__link:hover { background-color: var(--cl-accent-tint, rgba(0, 0, 211, 0.08)); }
  }
  .custom-cl-sci-toc__link.is-active {
    background-color: var(--cl-accent, #0000D3);
    color: var(--cl-text-inverse, #ffffff);
    border-color: var(--cl-accent, #0000D3);
  }
  .custom-cl-sci-toc__link.is-active::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .shopify-section.custom-cl-sci-toc-section { transition: none; }
  .custom-cl-sci-toc__chevron, .custom-cl-sci-toc__link { transition: none; }
}
/* END_SECTION:custom-cl-sci-toc */

/* START_SECTION:custom-cl-sci-what (INDEX:86) */
.custom-cl-sci-what {
    background-color: var(--cl-bg-white, #ffffff);
    padding-top: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
    padding-bottom: var(--cl-section-y, clamp(80px, 5vw + 44px, 132px));
  }
  .custom-cl-sci-what__container {
    width: 100%;
    max-width: var(--cl-wrap-card, 1120px);
    margin: 0 auto;
    padding-left: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
    padding-right: var(--cl-gutter, clamp(20px, 6.5vw, 96px));
  }
  .custom-cl-sci-what__header { max-width: 760px; margin: 0 0 var(--cl-space-12, 48px); }
  .custom-cl-sci-what__eyebrow {
    display: inline-block;
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-caption, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-accent, #0000D3);
    margin: 0 0 var(--cl-gap-title, 8px);
  }
  .custom-cl-sci-what__heading {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h2, 34px);
    font-weight: 600;
    line-height: var(--cl-lh-tight, 1.1);
    letter-spacing: var(--cl-track-tight, -0.01em);
    color: var(--cl-ink, #00026e);
    margin: 0 0 var(--cl-space-5, 20px);
    text-wrap: balance;
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-what__heading { font-size: 48px; }
  }
  .custom-cl-sci-what__lead {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-lead, 19px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--cl-ink-2, #33358b);
    margin: 0;
    max-width: 68ch;
    text-wrap: pretty;
  }
  .custom-cl-sci-what__sub {
    font-family: var(--cl-font-display);
    font-size: var(--cl-type-h4, 18px);
    font-weight: 600;
    line-height: var(--cl-lh-snug, 1.2);
    color: var(--cl-ink, #00026e);
    margin: 0 0 var(--cl-space-6, 24px);
  }
  @media screen and (min-width: 750px) {
    .custom-cl-sci-what__sub { font-size: 20px; }
  }
  .custom-cl-sci-what__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--cl-space-3, 12px);
  }
  @media screen and (min-width: 600px) {
    .custom-cl-sci-what__grid { grid-template-columns: repeat(2, 1fr); gap: var(--cl-space-4, 16px); }
  }
  @media screen and (min-width: 990px) {
    .custom-cl-sci-what__grid { grid-template-columns: repeat(3, 1fr); }
  }
  .custom-cl-sci-what__item {
    display: flex;
    align-items: center;
    gap: var(--cl-space-4, 16px);
    padding: var(--cl-space-5, 20px);
    background-color: var(--cl-cream, #FEFBF9);
    border: 1px solid var(--cl-border, rgba(0, 2, 110, 0.12));
    border-radius: var(--cl-r-card, 4px);
  }
  .custom-cl-sci-what__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--cl-r-panel, 12px);
    background-color: var(--cl-accent-tint, rgba(0, 0, 211, 0.08));
    color: var(--cl-accent, #0000D3);
  }
  .custom-cl-sci-what__icon svg { width: 22px; height: 22px; }
  .custom-cl-sci-what__label {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body, 16px);
    font-weight: 500;
    line-height: 1.3;
    color: var(--cl-ink, #00026e);
    margin: 0;
    text-wrap: balance;
    /* Dawn's base puts `word-break: break-word` on headings — snaps Cyrillic mid-word. */
    word-break: normal;
    overflow-wrap: normal;
  }
  /* Expandable variant (label + collapsible body) */
  .custom-cl-sci-what__item--exp { flex-direction: column; align-items: stretch; gap: 0; padding: 0; }
  .custom-cl-sci-what__item--exp[open] { border-color: var(--cl-accent, #0000D3); }
  .custom-cl-sci-what__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--cl-space-4, 16px);
    padding: var(--cl-space-5, 20px);
    -webkit-tap-highlight-color: rgba(0, 0, 211, 0.15);
  }
  .custom-cl-sci-what__summary::-webkit-details-marker { display: none; }
  .custom-cl-sci-what__summary:focus-visible { outline: 2px solid var(--cl-accent, #0000D3); outline-offset: 2px; border-radius: 2px; }
  .custom-cl-sci-what__summary .custom-cl-sci-what__label { flex: 1 1 auto; }
  .custom-cl-sci-what__chev { flex-shrink: 0; color: var(--cl-accent, #0000D3); transition: transform 0.25s ease-out; }
  .custom-cl-sci-what__item--exp[open] .custom-cl-sci-what__chev { transform: rotate(45deg); }
  .custom-cl-sci-what__note { padding: 0 var(--cl-space-5, 20px) var(--cl-space-5, 20px) calc(var(--cl-space-5, 20px) + 40px + var(--cl-space-4, 16px)); }
  .custom-cl-sci-what__note p {
    font-family: var(--cl-font-body);
    font-size: var(--cl-type-body-sm, 14px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--cl-ink-3, #62639f);
    margin: 0 0 var(--cl-space-2, 8px);
    text-wrap: pretty;
  }
  .custom-cl-sci-what__note p:last-child { margin-bottom: 0; }
  @media (prefers-reduced-motion: reduce) { .custom-cl-sci-what__chev { transition: none; } }
/* END_SECTION:custom-cl-sci-what */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:136) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:137) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */