/* ============================================================
   STUDIED DOSE — The dose the studies used.
   One frame. One flexing accent. Warm ink on limestone,
   the check mark on everything. Tested · Dosed · Disclosed.
   ============================================================ */

:root {
  /* Limestone ground & warm-paper surfaces */
  --paper: #f1eadb;   /* Limestone — the ground */
  --paper-2: #e7ddc8;
  --paper-3: #ddd1b8;
  /* Warm ink — the house colour, the colour of the record */
  --ink: #1b1813;     /* Warm Ink */
  --ink-2: #4a4438;
  --ink-3: #7a7464;
  /* Espresso — depth & dark grounds (was the brand green; the new
     palette carries no green except Sage on glutathione) */
  --olive: #26221b;   /* Espresso — brand dark ground */
  --olive-2: #1b1813;
  --cypress: #1b1813; /* Warm Ink dark ground */
  --line: rgba(27, 24, 19, 0.14);
  --line-2: rgba(27, 24, 19, 0.08);
  --accent: #26221b; /* overridden per-product */
  --accent-ink: #fbf6ec; /* Paper — reversed type */
  --radius: 4px;
  --maxw: 1180px;
  --shadow: 0 1px 0 rgba(30, 27, 21, 0.05), 0 18px 40px -28px rgba(30, 27, 21, 0.4);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* faint uncoated-stock grain */
  background-image:
    radial-gradient(rgba(30, 27, 21, 0.022) 1px, transparent 1px),
    radial-gradient(rgba(30, 27, 21, 0.018) 1px, transparent 1px);
  background-size: 4px 4px, 7px 7px;
  background-position: 0 0, 2px 3px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.04; letter-spacing: -0.02em; margin: 0; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.lede { font-size: 1.22rem; color: var(--ink-2); line-height: 1.55; }
.editorial {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.6; }
.muted { color: var(--ink-3); }

/* ---------- the check mark (the brand mark) ---------- */
.mark {
  display: inline-grid;
  place-items: center;
  width: 1.55em; height: 1.55em;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 5px;
  font-weight: 800;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0;
  flex: none;
}
.mark span { transform: translateY(-0.04em); font-size: 1.1em; }

/* ---------- "Dose Verified ✓" / "Study Verified ✓" trust marks ---------- */
.vbadge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: "IBM Plex Mono", monospace; font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-2);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 6px 12px 6px 9px; background: var(--card);
  white-space: nowrap;
}
.vbadge .vck {
  display: inline-grid; place-items: center;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--accent, var(--olive)); color: #fff;
  line-height: 1;
}
.vbadge .vck-svg { width: 64%; height: 64%; display: block; overflow: visible; }
.vbadge .vck-svg path {
  fill: none; stroke: currentColor; stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
}
.vbadge--solid { background: var(--accent); color: var(--accent-ink); border-color: transparent; }
.vbadge--solid .vck { background: rgba(255,255,255,0.22); color: var(--accent-ink); }
.vbadges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  background: var(--accent); color: #fff; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -12px rgba(30, 27, 21, 0.6); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: rgba(30, 27, 21, 0.04); box-shadow: none; }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 30px; font-size: 1.05rem; }

/* ---------- announcement ---------- */
.announce {
  background: var(--cypress); color: #e9e2cf;
  font-family: "IBM Plex Mono", monospace; font-size: 0.7rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-align: center; padding: 9px 16px;
}
.announce b { color: #fff; font-weight: 600; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 238, 225, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brandmark { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; }
.brandmark .mark { --accent: var(--olive); font-size: 1.18rem; }
/* stacked two-line lockup: STUDIED over DOSE, flush left, tight leading */
.brandmark .wordmark {
  font-size: 1.04rem; line-height: 0.9; letter-spacing: 0.05em;
  text-transform: uppercase; font-weight: 800; display: inline-block;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 1.04rem; font-weight: 600; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 14px; align-items: center; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { padding: 92px 0 64px; }
.hero .editorial-tag {
  font-family: "Fraunces", serif; font-style: italic; font-weight: 400;
  font-size: 1.4rem; color: var(--olive); margin-bottom: 22px;
}
.hero h1 { max-width: 24ch; white-space: nowrap; }
.hero .lede { max-width: 46ch; margin-top: 22px; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 34px;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.hero-trust span {
  font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px;
}
.hero-trust span::before { content: "✓"; color: var(--olive); font-weight: 700; }

/* stacked label motif for hero */
.label-stack { position: relative; display: grid; gap: 16px; }
.label-stack .label-card:nth-child(1) { transform: rotate(-2deg); }
.label-stack .label-card:nth-child(2) { transform: rotate(1.4deg) translateX(8%); margin-top: -8%; }
.label-stack .label-card:nth-child(3) { transform: rotate(-1deg) translateX(-4%); margin-top: -8%; }

/* ---------- product label / bottle face ---------- */
.label-card {
  background: var(--accent); color: var(--accent-ink);
  border-radius: 8px; padding: 22px 22px 18px;
  display: flex; flex-direction: column; min-height: 230px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.12);
  position: relative; overflow: hidden;
}
.label-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.1), rgba(0,0,0,0.12));
  pointer-events: none;
}
.label-card .lc-top { display: flex; justify-content: space-between; align-items: flex-start; }
.label-card .lc-mark {
  width: 34px; height: 34px; border-radius: 6px; display: grid; place-items: center;
  background: rgba(255,255,255,0.16); font-weight: 800; font-size: 1.1rem;
  border: 1px solid rgba(255,255,255,0.25);
}
.label-card .lc-strength {
  font-family: "IBM Plex Mono", monospace; font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.92; text-align: right; max-width: 9ch; line-height: 1.4;
}
.label-card .lc-name {
  font-weight: 800; font-size: 1.7rem; line-height: 1.02; letter-spacing: -0.02em;
  margin-top: auto;
}
.label-card .lc-cat {
  font-family: "IBM Plex Mono", monospace; font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.85; margin-top: 8px;
}
.label-card .lc-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.22);
  font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ---------- trust strip ---------- */
.trustbar { background: var(--paper-2); color: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trustbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-top: 30px; padding-bottom: 30px; }
/* each pillar in its own clean card; a small colour cue at the top, ink text */
.trustbar .ti { position: relative; overflow: hidden; text-align: center; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 24px 20px 22px; box-shadow: 0 1px 0 rgba(27,24,19,0.03); }
.trustbar .ti::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--ti-accent, var(--accent)); }
.trustbar .ti b { display: block; font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.01em; }
.trustbar .ti span { font-size: 0.86rem; color: var(--ink-3); line-height: 1.45; }

/* ---------- section heads ---------- */
.sec-head { max-width: 60ch; margin-bottom: 44px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { color: var(--ink-2); font-size: 1.1rem; margin-top: 14px; }

/* ---------- product grid ---------- */
.grid-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line); }
.pcard .pc-face { padding: 18px; }
.pcard .pc-body { padding: 4px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.pcard .pc-name { font-weight: 800; font-size: 1.18rem; letter-spacing: -0.01em; }
.pcard .pc-cat { font-size: 0.82rem; color: var(--ink-3); margin: 3px 0 10px; }
.pcard .pc-rating { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--ink-2); margin-bottom: 10px; }
.pcard .pc-short { font-size: 0.92rem; color: var(--ink-2); line-height: 1.5; flex: 1; }
.pcard .pc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.pcard .pc-price { font-weight: 800; font-size: 1.15rem; }
.stars { color: #c8881e; letter-spacing: 1px; }

/* ---------- editorial / story ---------- */
.story { background: var(--olive); color: #f0eede; }
.story .editorial-quote {
  font-family: "Fraunces", serif; font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.32; letter-spacing: -0.01em;
  max-width: 24ch;
}
.story .attr { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 22px; color: #cfd0ad; }
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.story p { color: #ddddc8; }

/* ---------- standards ---------- */
.standards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.standard { background: var(--paper); padding: 30px 30px 34px; }
.standard .num { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.14em; color: var(--accent); }
.standard h3 { margin: 14px 0 10px; }
.standard p { color: var(--ink-2); font-size: 0.98rem; margin: 0; }

/* ---------- sourcing map (footprint) ---------- */
.sourcing { background: var(--paper-2); }
.source-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.source-row { background: var(--paper); padding: 20px 24px; display: grid; grid-template-columns: 1fr auto; gap: 6px 18px; align-items: baseline; }
.source-row .sr-ing { font-weight: 700; }
.source-row .sr-loc { font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); text-align: right; }
.source-row .sr-note { grid-column: 1 / -1; font-size: 0.9rem; color: var(--ink-3); }

/* ---------- facilities ---------- */
.facilities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.facility { border: 1px solid var(--line); border-radius: 10px; padding: 26px; background: var(--paper); }
.facility .fac-pin { font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.facility .fac-pin::before { content: "◉"; }
.facility h3 { font-size: 1.25rem; margin: 12px 0 10px; }
.facility p { font-size: 0.95rem; color: var(--ink-2); margin: 0; }

/* ---------- person ---------- */
.person { background: var(--cypress); color: #ece4d0; border-radius: 14px; overflow: hidden; }
.person-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 0; }
.person-portrait { background: linear-gradient(150deg, var(--olive), var(--olive-2)); display: grid; place-items: center; padding: 50px; min-height: 320px; }
.portrait-badge {
  width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  font-family: "Fraunces", serif; font-style: italic; font-size: 3.4rem; color: #f0eede;
}
.person-body { padding: 48px 48px; }
.person-body .p-quote { font-family: "Fraunces", serif; font-style: italic; font-size: 1.5rem; line-height: 1.4; letter-spacing: -0.01em; color: #fff; }
.person-body .p-meta { margin-top: 26px; }
.person-body .p-name { font-weight: 800; font-size: 1.2rem; }
.person-body .p-title { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: #b9c194; margin-top: 4px; }
.person-body .p-bio { font-size: 0.95rem; color: #c9c2ae; margin-top: 18px; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review { border: 1px solid var(--line); border-radius: 10px; padding: 26px; background: var(--paper); }
.review .r-stars { color: #c8881e; letter-spacing: 2px; margin-bottom: 12px; }
.review .r-text { font-family: "Fraunces", serif; font-style: italic; font-size: 1.15rem; line-height: 1.45; color: var(--ink); }
.review .r-who { margin-top: 16px; font-size: 0.85rem; }
.review .r-who b { font-weight: 700; }
.review .r-who span { color: var(--ink-3); }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { cursor: pointer; padding: 20px 0; font-weight: 700; font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-weight: 700; font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-2); padding: 0 0 22px; margin: 0; max-width: 64ch; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #c9c2b0; padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.site-footer .brandmark .wordmark { color: var(--paper); }
.site-footer .brandmark .mark { --accent: var(--olive); }
.site-footer h4 { font-size: 0.72rem; font-family: "IBM Plex Mono", monospace; letter-spacing: 0.16em; text-transform: uppercase; color: #7d7765; margin-bottom: 16px; }
.site-footer a { display: block; color: #c9c2b0; font-size: 0.95rem; padding: 5px 0; }
.site-footer a:hover { color: #fff; }
.site-footer .tagline { font-family: "Fraunces", serif; font-style: italic; color: #9a937f; margin-top: 12px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 48px; padding-top: 24px; font-size: 0.78rem; color: #7d7765; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.disclaimer { font-size: 0.74rem; color: #6f6a58; max-width: 80ch; margin-top: 16px; line-height: 1.6; }

/* ============================================================
   PDP
   ============================================================ */
.breadcrumb { font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); padding: 24px 0 0; }
.breadcrumb a:hover { color: var(--ink); }

.pdp-hero { padding: 30px 0 70px; }
.pdp-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: start; }
.pdp-visual { position: sticky; top: 90px; }
.pdp-visual .label-card { min-height: 420px; padding: 30px; }
.pdp-visual .label-card .lc-name { font-size: 2.6rem; }
.pdp-visual .vis-meta { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.chip { font-family: "IBM Plex Mono", monospace; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--line); border-radius: 100px; padding: 7px 13px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 7px; }
.chip::before { content: "✓"; color: var(--accent); }

.pdp-cat { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.pdp-title { font-size: clamp(2.4rem, 5vw, 3.4rem); margin: 14px 0 14px; }
.pdp-rating { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--ink-2); margin-bottom: 18px; }
.pdp-editorial { font-family: "Fraunces", serif; font-style: italic; font-size: 1.4rem; line-height: 1.4; color: var(--ink); max-width: 32ch; margin-bottom: 8px; }
.pdp-short { font-size: 1.08rem; color: var(--ink-2); max-width: 50ch; }

.benefit-list { display: grid; gap: 0; margin: 26px 0; border-top: 1px solid var(--line); }
.benefit-list .bi { padding: 16px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.benefit-list .bi .bdot { width: 22px; height: 22px; border-radius: 5px; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 0.7rem; font-weight: 800; margin-top: 2px; }
.benefit-list .bi b { font-size: 1.02rem; }
.benefit-list .bi p { margin: 3px 0 0; font-size: 0.94rem; color: var(--ink-2); }

/* buy box */
.buybox { border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: var(--paper); box-shadow: var(--shadow); margin-top: 8px; }
.buy-opt { display: flex; align-items: center; gap: 13px; border: 1px solid var(--line); border-radius: 8px; padding: 11px 14px; margin-bottom: 8px; cursor: pointer; transition: border-color 0.15s; }
.buy-opt.is-active { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.buy-opt .radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--ink-3); flex: none; display: grid; place-items: center; }
.buy-opt.is-active .radio { border-color: var(--accent); }
.buy-opt.is-active .radio::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.buy-opt .bo-main { flex: 1; }
.buy-opt .bo-title { font-weight: 700; font-size: 0.98rem; }
.buy-opt .bo-sub { font-size: 0.74rem; color: var(--ink-3); line-height: 1.35; }
.buy-opt .bo-price { font-weight: 800; }
.buy-opt .bo-price small { display: block; text-align: right; font-weight: 600; font-size: 0.72rem; color: var(--olive); }
/* discount pill = dark ink — contrasts with EVERY product accent (coral, saffron, etc.) so it always pops */
.save-badge { background: #1B7A4A; color: #fff; font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; font-weight: 700; }
/* strikethrough original price in the subscribe option */
.bo-was { text-decoration: line-through; color: var(--ink-3); font-weight: 700; font-size: 0.78em; margin-right: 7px; }
/* "Most popular" flag on the subscribe card (product accent) */
.buy-opt { position: relative; }
.bo-flag { position: absolute; top: -10px; right: 14px; background: #1B7A4A; color: #fff; font-family: "IBM Plex Mono", monospace; font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
/* auto-save reassurance under the CTA */
.buy-reassure { text-align: center; font-size: 0.78rem; color: var(--ink-2); margin-top: 11px; }
/* keep the red SAVE pill on one line (was wrapping "SAVE / 15%") */
.save-badge, .dx-save, .bo-flag { white-space: nowrap; display: inline-block; vertical-align: middle; }
.buy-opt .bo-title { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* compact hero-side card with larger, more legible text */
.dx-herorow-side { gap: 14px; padding: 22px 20px; }
.dx-herorow-side .vbadges { gap: 8px; margin-top: 0; }
.dx-herorow-side .vbadge { font-size: 0.74rem; padding: 7px 13px 7px 10px; }
.dx-herorow-side .dx-certs { gap: 8px; margin-top: 2px; }
.dx-herorow-side .dx-cert-link { font-size: 0.82rem; }
.dx-herorow-side .dx-cert-row { font-size: 0.8rem; }
.dx-smt { gap: 9px; margin-top: 0; padding-top: 14px; }
.smt-k { font-size: 0.76rem; }
.smt-v { font-size: 1.05rem; }

/* PDP grid: hero + content stack in col 1; sticky buy box spans col 2.
   On mobile the visual order becomes hero → buy box → content. */
.dx-grid { align-items: start; }
.dx-hero { grid-column: 1; grid-row: 1; padding: 34px 52px 0 0; border-right: 1px solid var(--line); }
.dx-main { grid-column: 1; grid-row: 2; padding: 4px 52px 36px 0; border-right: 1px solid var(--line); }
.dx-side { grid-column: 2; grid-row: 1 / 3; }
@media (max-width: 980px) {
  .dx-grid { display: flex; flex-direction: column; }
  .dx-hero { order: 1; padding: 0; border-right: none; }
  .dx-side { order: 2; padding: 6px 0 18px; }
  .dx-main { order: 3; padding: 10px 0 24px; border-right: none; }
}
.buy-foot { display: flex; flex-wrap: wrap; gap: 5px 14px; margin-top: 12px; }
.buy-foot span { font-family: "IBM Plex Mono", monospace; font-size: 0.56rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-3); display: inline-flex; gap: 5px; align-items: center; }
.buy-foot span::before { content: "✓"; color: var(--olive); }

/* supplement facts */
.factpanel { border: 2px solid var(--ink); border-radius: 6px; padding: 18px 20px; background: var(--paper); font-family: "IBM Plex Mono", monospace; }
.factpanel .fp-title { font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; font-family: "Hanken Grotesk", sans-serif; border-bottom: 8px solid var(--ink); padding-bottom: 6px; }
.factpanel .fp-serv { font-size: 0.72rem; padding: 8px 0; border-bottom: 3px solid var(--ink); display: flex; justify-content: space-between; }
.factpanel .fp-head { display: flex; justify-content: space-between; font-size: 0.62rem; letter-spacing: 0.06em; padding: 6px 0; border-bottom: 1px solid var(--ink); }
.factpanel .fp-row { display: flex; justify-content: space-between; gap: 16px; font-size: 0.78rem; padding: 9px 0; border-bottom: 1px solid var(--line); }
.factpanel .fp-row b { font-weight: 700; }
.factpanel .fp-foot { font-size: 0.64rem; color: var(--ink-2); margin-top: 12px; line-height: 1.5; }

/* generic two-col content block */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.narrow { grid-template-columns: 1.2fr 0.8fr; }

/* chain trace */
.chain { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--paper); }
.chain .step { padding: 24px 22px; border-right: 1px solid var(--line); position: relative; }
.chain .step:last-child { border-right: none; }
.chain .step .st-n { font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.chain .step .st-n::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.chain .step h4 { font-size: 1.05rem; margin: 12px 0 4px; }
.chain .step .st-loc { font-family: "IBM Plex Mono", monospace; font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.chain .step p { font-size: 0.88rem; color: var(--ink-2); margin: 0; }

/* comparison */
.compare { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.compare thead th { font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); background: var(--paper-2); }
.compare thead th.us { color: var(--accent); }
.compare td.us { font-weight: 700; }
.compare td.us::before { content: "✓ "; color: var(--accent); }
.compare td.them { color: var(--ink-3); }
.compare tr:last-child td { border-bottom: none; }

/* cross-sell */
.crosssell { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* sticky buy bar (mobile) */
.stickybuy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--paper); border-top: 1px solid var(--line); padding: 12px 18px; display: none; align-items: center; justify-content: space-between; gap: 14px; box-shadow: 0 -8px 24px -16px rgba(0,0,0,0.5); }
.stickybuy .sb-name { font-weight: 800; }
.stickybuy .sb-price { color: var(--ink-3); font-size: 0.9rem; }

/* misc */
.band { background: var(--olive); color: #f1efe2; border-radius: 14px; padding: 44px 48px; text-align: center; }
.band h2 { color: #fff; }
.band p { color: #dcdcc6; max-width: 52ch; margin: 12px auto 24px; }
.divider { height: 1px; background: var(--line); margin: 0; }

/* ============================================================
   Multi-page + refinements
   ============================================================ */
/* nav active */
.nav-links a.is-active { color: var(--ink); position: relative; }
.nav-links a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--olive); border-radius: 2px; }

/* subpage hero */
.page-hero { padding: 64px 0 26px; }
.page-hero h1 { max-width: 20ch; margin-bottom: 18px; }
.page-hero .lede { max-width: 62ch; }

/* fix hero label stack so the DOSE line is never clipped */
.label-stack { gap: 16px; }
.label-stack .label-card { min-height: 196px; }
.label-stack .label-card:nth-child(1) { transform: rotate(-2deg); margin-top: 0; }
.label-stack .label-card:nth-child(2) { transform: rotate(1.2deg) translateX(6%); margin-top: 14px; }
.label-stack .label-card:nth-child(3) { transform: rotate(-1deg) translateX(-3%); margin-top: 14px; }
.story-stack { max-width: 460px; }

/* big stats (homepage story band) */
.bigstat { display: flex; align-items: baseline; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
.bigstat b { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; line-height: 1; }
.bigstat span { color: #cdcdb4; font-size: 0.95rem; }
.story .bigstat:last-child { border-bottom: none; }

/* sourcing cards */
.source-list.compact .source-row { grid-template-columns: 1fr auto; }
.src-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.src-card { border: 1px solid var(--line); border-radius: 12px; padding: 22px; background: var(--paper); }
.src-card .src-loc { font-family: "IBM Plex Mono", monospace; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.src-card .src-loc::before { content: "◉"; }
.src-card h3 { font-size: 1.1rem; margin: 12px 0 8px; }
.src-card p { font-size: 0.9rem; color: var(--ink-2); margin: 0; }

/* triple-test flow */
.testing-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: stretch; }
.tstep { border: 1px solid var(--line); border-radius: 14px; padding: 28px 26px; background: var(--paper); }
.tstep-num { font-family: "IBM Plex Mono", monospace; font-size: 0.8rem; letter-spacing: 0.12em; color: var(--olive); font-weight: 600; }
.tstep-tag { display: inline-block; margin: 14px 0 12px; font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: var(--olive); padding: 5px 11px; border-radius: 100px; }
.tstep h3 { font-size: 1.3rem; margin: 0 0 10px; }
.tstep p { font-size: 0.95rem; color: var(--ink-2); margin: 0; }
.tstep-arrow { display: grid; place-items: center; color: var(--ink-3); font-size: 1.4rem; }

/* gripe block */
.gripe { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; padding: 30px 34px; }
.gripe .g-quote { font-family: "Fraunces", serif; font-style: italic; font-size: 4rem; line-height: 0.5; color: var(--accent); height: 26px; }
.gripe .g-text { font-size: 1.3rem; line-height: 1.5; margin: 0; letter-spacing: -0.01em; }
.gripe .g-comp { color: var(--ink-3); }

/* dosage spec block */
.dosage { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin: 22px 0 6px; }
.dose-head { display: flex; justify-content: space-between; align-items: center; background: var(--ink); color: var(--paper); padding: 12px 18px; }
.dose-label { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }
.dose-serv { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.04em; color: #cfcab8; }
.dose-row { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: baseline; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.dose-row:last-child { border-bottom: none; }
.dose-amt { font-weight: 700; font-size: 1rem; font-family: "IBM Plex Mono", monospace; color: var(--accent); min-width: 84px; }
.dose-name { color: var(--ink-2); font-size: 0.95rem; }

/* quality list (why ours) */
.qual-eyebrow { margin-top: 6px; }
.quality-list { display: grid; gap: 12px; margin: 6px 0 4px; }
.qi { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.qi-num { font-family: "IBM Plex Mono", monospace; font-weight: 600; font-size: 0.78rem; color: #fff; background: var(--accent); width: 30px; height: 30px; border-radius: 7px; display: grid; place-items: center; }
.qi-body b { font-size: 1.05rem; }
.qi-body p { margin: 4px 0 0; font-size: 0.93rem; color: var(--ink-2); }

/* studies (dark) */
.studies-sec { background: var(--cypress); color: #ece4d0; }
.studies-sec .eyebrow { color: #b9c194; }
.studies-sec h2 { color: #fff; }
.studies-sec .sec-head p { color: #cfc8b2; }
.studies-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.study { border: 1px solid rgba(255,255,255,0.16); border-radius: 12px; padding: 22px; background: rgba(255,255,255,0.03); }
.study-find { font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; color: #fff; }
.study-cite { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.02em; color: #b9c194; line-height: 1.5; }
.studies-note { font-size: 0.78rem; color: #9a937f; margin-top: 20px; max-width: 80ch; }
.studies-sec .studies-note { color: #8f9376; }
.studies-note a { color: var(--accent); text-decoration: underline; }
.studies-sec .studies-note a { color: #b9c194; }
.rating-studies { color: var(--accent); font-weight: 700; text-decoration: underline; }

/* science page library (light) */
.sci-list { display: grid; gap: 14px; }
.sci-block { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.sci-prod { display: flex; align-items: center; gap: 14px; padding: 18px 22px; background: var(--paper-2); }
.sci-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); flex: none; }
.sci-name { font-weight: 800; font-size: 1.2rem; }
.sci-count { margin-left: auto; color: var(--ink-3); }
.sci-refs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.sci-refs .study { background: var(--paper); border: none; border-radius: 0; }
.sci-refs .study-find { color: var(--ink); }
.sci-refs .study-cite { color: var(--ink-3); }

/* benefits below the fold */
.forgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.fori { background: var(--paper); padding: 22px 24px; display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.fori .bdot { width: 24px; height: 24px; border-radius: 6px; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 0.72rem; font-weight: 800; }
.fori b { font-size: 1.05rem; }
.fori p { margin: 4px 0 0; font-size: 0.93rem; color: var(--ink-2); }

/* chain trace — distinct numbered steps */
.chain { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; border: none; background: none; border-radius: 0; overflow: visible; }
.chain .step { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px; }
.chain .step .st-num { font-family: "IBM Plex Mono", monospace; font-weight: 600; font-size: 1.5rem; color: var(--accent); letter-spacing: -0.02em; }
.chain .step .st-stage { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; margin: 10px 0 6px; }
.chain .step .st-loc { font-family: "IBM Plex Mono", monospace; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: flex; align-items: center; gap: 7px; }
.chain .step .st-loc::before { content: "◉"; }
.chain .step p { font-size: 0.9rem; color: var(--ink-2); margin: 0; }

@media (max-width: 940px) {
  .src-grid, .studies-list, .sci-refs { grid-template-columns: repeat(2, 1fr); }
  .testing-flow { grid-template-columns: 1fr; }
  .testing-flow .tstep-arrow { transform: rotate(90deg); }
  .forgrid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .src-grid, .studies-list, .sci-refs { grid-template-columns: 1fr; }
  .gripe { padding: 24px; grid-template-columns: 1fr; gap: 10px; }
  .gripe .g-text { font-size: 1.12rem; }
}

/* ============================================================
   Contrast pass — white cards on warm paper, more air
   ============================================================ */
:root {
  --card: #fbf6ec; /* Paper — warm label-back surface */
  --shadow-card: 0 1px 2px rgba(27,24,19,0.04), 0 14px 34px -24px rgba(27,24,19,0.45);
}
/* lift content surfaces off the beige with true white + soft shadow */
.pcard,
.buybox,
.facility,
.src-card,
.standard,
.review,
.qi,
.dosage,
.factpanel,
.tstep,
.bottle .bo-cap { background: var(--card); }
.chain .step { background: var(--card); }
.forgrid { background: var(--line); }
.fori { background: var(--card); }

.pcard,
.facility,
.src-card,
.standard,
.review,
.qi,
.tstep,
.chain .step,
.dosage,
.buybox { box-shadow: var(--shadow-card); }

/* lighten hairline borders so white cards read clean */
.pcard, .facility, .src-card, .standard, .review, .qi, .chain .step, .tstep { border-color: rgba(30,27,21,0.09); }

/* keep tinted callouts distinct from white cards */
.gripe { background: var(--paper-3); }
.sci-prod { background: #fff; border-bottom: 1px solid var(--line); }
.sci-refs .study { background: #fff; }

/* a touch more breathing room between sections */
.section { padding: 96px 0; }
.sec-head { margin-bottom: 48px; }

/* portrait product "bottles" — homepage + story hero */
.hero-bottles { display: flex; justify-content: center; align-items: flex-end; gap: 0; padding: 8px 0; }
.bottle { position: relative; width: 35%; aspect-ratio: 0.64; background: var(--accent); color: var(--accent-ink); border-radius: 16px; box-shadow: 0 26px 50px -28px rgba(30,27,21,0.6); border: 1px solid rgba(0,0,0,0.12); padding: 22px 20px; display: flex; flex-direction: column; overflow: hidden; }
.bottle::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(0,0,0,0.14)); pointer-events: none; }
.bottle .bo-cap { display: none; }
.hero-bottles .bottle:nth-child(1) { transform: rotate(-6deg) translateX(15%) translateY(2%); z-index: 1; }
.hero-bottles .bottle:nth-child(2) { transform: translateY(-10%) scale(1.05); z-index: 3; }
.hero-bottles .bottle:nth-child(3) { transform: rotate(6deg) translateX(-15%) translateY(2%); z-index: 1; }
.hero-bottles.duo .bottle { width: 44%; }
.hero-bottles.duo .bottle:nth-child(1) { transform: rotate(-5deg) translateX(10%); }
.hero-bottles.duo .bottle:nth-child(2) { transform: rotate(5deg) translateX(-10%) translateY(-7%); }
.bottle .bo-label { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.bottle .bo-top { display: flex; justify-content: space-between; align-items: flex-start; }
.bottle .lc-mark { width: 34px; height: 34px; border-radius: 7px; display: grid; place-items: center; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28); font-weight: 800; font-size: 1.05rem; }
.bottle .bo-strength { font-family: "IBM Plex Mono", monospace; font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.92; text-align: right; max-width: 9ch; line-height: 1.4; }
.bottle .bo-name { font-weight: 800; font-size: 1.5rem; line-height: 1.02; letter-spacing: -0.02em; margin-top: auto; }
.bottle .bo-cat { font-family: "IBM Plex Mono", monospace; font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; margin-top: 8px; }
.bottle .bo-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.22); font-family: "IBM Plex Mono", monospace; font-size: 0.56rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .story-grid, .pdp-grid, .split, .split.narrow, .person-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-products { grid-template-columns: repeat(2, 1fr); }
  .trustbar .wrap { grid-template-columns: repeat(2, 1fr); }
  .standards-grid, .source-list, .reviews-grid { grid-template-columns: 1fr; }
  .facilities, .crosssell { grid-template-columns: 1fr; }
  .chain { grid-template-columns: repeat(2, 1fr); }
  .chain .step:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pdp-visual { position: static; }
  .nav-links { display: none; }
  .hero .label-stack { max-width: 380px; margin: 0 auto; }
  .stickybuy { display: flex; }
  body { padding-bottom: 70px; }
}
@media (max-width: 560px) {
  .grid-products { grid-template-columns: 1fr; }
  .chain { grid-template-columns: 1fr; }
  .chain .step { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  /* tighter vertical rhythm on mobile */
  .section { padding: 48px 0; }
  .section--tight { padding: 38px 0; }
  .accent-block { padding: 26px 22px; }
  .accent-block .split { gap: 24px; }
  h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
}

/* ============================================================
   PDP — clinical dossier (concept B + concept A pull-stats)
   Namespaced .dx-* so it never collides with shared partials.
   White cards on warm paper; var(--accent) per product.
   ============================================================ */
.dx-doc { padding: 0 0 40px; }
.dx-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  align-items: start;
}
.dx-main { min-width: 0; padding: 36px 56px 36px 0; border-right: 1px solid var(--line); }
.dx-side { position: sticky; top: 88px; align-self: start; padding: 36px 0 36px 36px; }

/* ---- hero ---- */
.dx-hero { padding: 8px 0 8px; }
.dx-filecode {
  font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 22px;
  display: flex; gap: 18px; flex-wrap: wrap;
}
.dx-filecode span { display: inline-flex; align-items: center; gap: 8px; }
.dx-filecode span + span::before { content: "·"; margin-right: 18px; color: var(--line); }
.dx-h1 { font-size: clamp(2.4rem, 4.4vw, 3.7rem); line-height: 1.0; letter-spacing: -0.025em; max-width: 15ch; }
.dx-submeta { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; margin: 18px 0 4px; font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); }
.dx-submeta span { display: inline-flex; align-items: center; gap: 7px; }
.dx-submeta span + span::before { content: ""; }
.dx-submeta .ing { color: var(--accent); font-weight: 600; }
.dx-submeta .ing .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.dx-submeta span:not(.ing) { padding-left: 18px; border-left: 1px solid var(--line); }
.dx-lede { margin-top: 18px; max-width: 50ch; font-size: 1.12rem; color: var(--ink-2); line-height: 1.55; }

/* ---- pull-stats (from concept A) ---- */
.dx-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.dx-stat { padding: 22px 24px 22px 0; border-right: 1px solid var(--line); }
.dx-stat:last-child { border-right: none; padding-right: 0; }
.dx-stat .big {
  font-weight: 800; font-size: 2.1rem; letter-spacing: -0.03em; line-height: 1; color: var(--ink);
}
/* the studies count is sometimes prose ("Multiple human RCTs…") — let it
   shrink and wrap so it never overflows the big-numeral slot. */
.dx-stat:last-child .big { font-size: 1.35rem; line-height: 1.1; }
.dx-stat .lbl {
  font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--ink-3); margin-top: 10px; line-height: 1.4;
}

/* ---- product plate (graph paper + leader chips) ---- */
.dx-plate {
  margin-top: 34px; position: relative;
  background:
    linear-gradient(var(--line-2) 1px, transparent 1px) 0 0 / 100% 28px,
    var(--card);
  border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-card);
  padding: 44px; display: grid; place-items: center; overflow: hidden;
}
.dx-plate .label-card { width: 230px; min-height: 320px; }
.dx-plate .label-card .lc-name { font-size: 2rem; }
.dx-corner { position: absolute; width: 14px; height: 14px; border: 1px solid var(--line); }
.dx-corner.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.dx-corner.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.dx-corner.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.dx-corner.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.dx-pchips { position: absolute; bottom: 18px; left: 18px; right: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.dx-pchip {
  font-family: "IBM Plex Mono", monospace; font-size: 0.6rem; letter-spacing: 0.08em;
  text-transform: uppercase; background: var(--card); border: 1px solid var(--line);
  border-radius: 100px; padding: 6px 12px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 7px;
}
.dx-pchip::before { content: "✓"; color: var(--accent); }

/* ---- numbered section frames ---- */
.dx-section { padding: 0; }
.dx-sechead {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  padding: 46px 0 22px; margin-top: 8px; border-top: 1px solid var(--line);
}
.dx-sechead .n { font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
.dx-sechead h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: 8px; }
.dx-sechead .meta {
  font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; color: var(--ink-3);
  text-align: right; letter-spacing: 0.06em; line-height: 1.6; text-transform: uppercase; flex: none;
}

/* ---- why ours cards ---- */
.dx-why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dx-wcard {
  background: var(--card); border: 1px solid rgba(30,27,21,0.09); border-radius: 12px;
  box-shadow: var(--shadow-card); padding: 22px 22px 24px;
}
.dx-wnum { font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; letter-spacing: 0.1em; color: var(--ink-3); }
.dx-wcard h3 { font-size: 1.15rem; margin: 10px 0 7px; line-height: 1.15; }
.dx-wcard p { font-size: 0.94rem; color: var(--ink-2); line-height: 1.55; margin: 0; }

/* ---- gripe — dark cypress field note ---- */
.dx-gripe {
  margin-top: 28px; background: var(--cypress); color: #ece4d0; border-radius: 14px;
  padding: 30px 34px; display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center;
}
.dx-gripe .lab {
  font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: #b9c194; writing-mode: vertical-rl; transform: rotate(180deg);
  border-right: 1px solid rgba(255,255,255,0.2); padding-right: 14px;
}
.dx-gripe p { font-size: 1.2rem; line-height: 1.5; margin: 0; max-width: 62ch; }
.dx-gripe p .comp { color: #9fa489; }
.dx-gripe p b { color: #fff; font-weight: 600; }

/* ---- supplement facts ---- */
.dx-facts {
  display: grid; grid-template-columns: 340px 1fr; gap: 0;
  border: 1px solid var(--ink); border-radius: 8px; overflow: hidden; background: var(--card);
}
.dx-label { background: var(--card); border-right: 1px solid var(--ink); padding: 20px 22px; font-family: "IBM Plex Mono", monospace; }
.dx-ftitle { font-family: "Hanken Grotesk", sans-serif; font-size: 1.25rem; font-weight: 800; border-bottom: 7px solid var(--ink); padding-bottom: 5px; letter-spacing: -0.02em; }
.dx-fserv { font-size: 0.72rem; border-bottom: 1px solid var(--ink); padding: 7px 0; display: flex; justify-content: space-between; }
.dx-fhead { font-size: 0.62rem; text-align: right; border-bottom: 3px solid var(--ink); padding: 5px 0; letter-spacing: 0.04em; text-transform: uppercase; }
.dx-fln { font-size: 0.78rem; border-bottom: 1px solid var(--line); padding: 9px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; line-height: 1.4; }
.dx-fln b { font-weight: 700; white-space: nowrap; }
.dx-ffoot { font-size: 0.62rem; color: var(--ink-2); padding-top: 10px; line-height: 1.5; }
.dx-read { padding: 26px 28px; background: var(--card); }
.dx-dir { font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.dx-read h3 { font-size: 1.3rem; margin-bottom: 12px; letter-spacing: -0.01em; }
.dx-read p { font-size: 0.98rem; color: var(--ink-2); line-height: 1.6; margin: 0; }
.dx-annorow { margin-top: 20px; display: grid; gap: 12px; }
.dx-annorow div { display: grid; grid-template-columns: auto 1fr; gap: 14px; font-size: 0.9rem; align-items: baseline; color: var(--ink-2); }
.dx-annorow .v { font-family: "IBM Plex Mono", monospace; color: var(--accent); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.02em; white-space: nowrap; }

/* ---- benefits ---- */
.dx-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.dx-bi { background: var(--card); padding: 22px 24px; display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.dx-bdot { width: 24px; height: 24px; border-radius: 6px; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 0.72rem; font-weight: 800; }
.dx-bi b { font-size: 1.05rem; }
.dx-bi p { margin: 4px 0 0; font-size: 0.92rem; color: var(--ink-2); }

/* ---- research / studies ---- */
.dx-research-lede { font-size: 1.05rem; color: var(--ink-2); max-width: 62ch; margin: 0 0 18px; }
.dx-note {
  font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; color: var(--ink-2);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 8px;
  padding: 12px 16px; margin-bottom: 14px; letter-spacing: 0.01em; line-height: 1.5;
}
.dx-cite {
  display: grid; grid-template-columns: 44px 1fr auto; gap: 18px; align-items: center;
  padding: 18px 6px; border-bottom: 1px solid var(--line); transition: background 0.15s;
}
.dx-cite:hover { background: color-mix(in srgb, var(--accent) 5%, transparent); }
.dx-cite .idx { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; color: var(--accent); }
.dx-cite .topic { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; display: block; }
.dx-cite .src { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; color: var(--ink-3); margin-top: 4px; display: block; }
.dx-cite .ext {
  font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; letter-spacing: 0.04em;
  color: var(--ink-2); border: 1px solid var(--line); border-radius: 5px; padding: 7px 12px; white-space: nowrap;
}
.dx-cite:hover .ext { border-color: var(--accent); color: var(--accent); }
.dx-studies-note { font-size: 0.78rem; color: var(--ink-3); margin-top: 18px; max-width: 80ch; }
.dx-studies-note a { color: var(--accent); text-decoration: underline; }

/* ---- chain of custody ---- */
.dx-chain { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dx-step { position: relative; background: var(--card); border: 1px solid rgba(30,27,21,0.09); border-radius: 14px; box-shadow: var(--shadow-card); padding: 24px 22px; }
.dx-geo { font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 7px; }
.dx-geo::before { content: "◉"; }
.dx-sn { font-family: "IBM Plex Mono", monospace; font-size: 1.5rem; color: var(--accent); font-weight: 600; margin: 8px 0 12px; display: block; letter-spacing: -0.02em; }
.dx-step h4 { font-size: 1.1rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.dx-step p { font-size: 0.88rem; color: var(--ink-2); line-height: 1.5; margin: 0; }
.dx-arr { position: absolute; top: 50%; right: -12px; width: 22px; height: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 0.8rem; color: var(--accent); z-index: 2; transform: translateY(-50%); }
.dx-chain-foot { font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; color: var(--ink-3); margin-top: 14px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---- comparison ---- */
.dx-compare { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--card); }
.dx-compare table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.dx-compare th, .dx-compare td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.dx-compare thead th { font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); background: var(--paper-2); font-weight: 500; }
.dx-compare thead th.us { color: var(--accent); background: var(--accent-ink); }
.dx-compare tbody td:first-child { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; color: var(--ink-3); letter-spacing: 0.02em; }
.dx-compare td.us { font-weight: 700; color: var(--ink); background: color-mix(in srgb, var(--accent) 5%, transparent); }
.dx-compare td.us::before { content: "● "; color: var(--accent); font-size: 0.7rem; vertical-align: middle; }
.dx-compare td.them { color: var(--ink-2); }
.dx-compare tbody tr:last-child td { border-bottom: none; }

/* ---- sticky spec sidebar (reuses .buybox base) ---- */
.dx-spec { margin-top: 0; }
.dx-spec-head { font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.dx-price-row { display: flex; align-items: baseline; gap: 10px; margin: 4px 0 2px; }
.dx-price { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.dx-price-strike { font-size: 0.95rem; color: var(--ink-3); text-decoration: line-through; }
.dx-save { font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; background: #1B7A4A; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.dx-rating { display: flex; align-items: center; gap: 8px; margin: 8px 0 18px; font-size: 0.82rem; color: var(--ink-2); }
.dx-spectable { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 12px; font-family: "IBM Plex Mono", monospace; }
.dx-spectable .row { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px dotted var(--line); font-size: 0.7rem; }
.dx-spectable .row:last-child { border-bottom: none; }
.dx-spectable .row span:first-child { color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; }
.dx-spectable .row span:last-child { text-align: right; color: var(--ink); }

/* ---- science-page study link affordance ---- */
.sci-refs .study { display: flex; flex-direction: column; }
.sci-refs .study-link { font-family: "IBM Plex Mono", monospace; font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-top: 12px; }

/* ---- PDP responsive ---- */
@media (max-width: 980px) {
  /* sticky mobile buy bar slides in once the main buy box scrolls away */
  .stickybuy { transform: translateY(115%); transition: transform .28s ease; will-change: transform; }
  .stickybuy.is-visible { transform: none; }
  /* mobile order: hero → buy box → content */
  .dx-grid { display: flex; flex-direction: column; }
  .dx-hero { order: 1; padding: 0; border-right: none; }
  .dx-side { order: 2; position: static; padding: 8px 0 20px; }
  .dx-main { order: 3; padding: 10px 0 24px; border-right: none; }
  .dx-facts { grid-template-columns: 1fr; }
  .dx-label { border-right: none; border-bottom: 1px solid var(--ink); }
}
@media (max-width: 720px) {
  .dx-why, .dx-benefits { grid-template-columns: 1fr; }
  .dx-chain { grid-template-columns: 1fr; }
  .dx-arr { display: none; }
  .dx-stats { grid-template-columns: 1fr; }
  .dx-stat { border-right: none; border-bottom: 1px solid var(--line); padding: 18px 0; }
  .dx-stat:last-child { border-bottom: none; }
  .dx-gripe { grid-template-columns: 1fr; gap: 12px; }
  .dx-gripe .lab { writing-mode: horizontal-tb; transform: none; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 0 0 10px; }
  .dx-cite { grid-template-columns: 30px 1fr; }
  .dx-cite .ext { display: none; }
  .dx-plate { padding: 28px; }
}

/* ============================================================
   Round 3 — carousel, certs, studies, dropdowns, clarity
   ============================================================ */

/* dropdown nav */
.navitem.has-menu { position: relative; }
.navitem.has-menu::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
.navtop { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; font-size: 0.95rem; font-weight: 600; color: var(--ink-2); }
.navtop:hover, .navtop.is-active { color: var(--ink); }
.navtop .caret { font-size: 0.62em; opacity: 0.55; transition: transform 0.15s; }
.dropdown { position: absolute; top: 100%; left: 0; margin-top: 10px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-card); padding: 14px; min-width: 230px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity 0.15s, transform 0.15s, visibility 0.15s; z-index: 60; }
.navitem.has-menu:hover .dropdown, .navitem.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.navitem.has-menu:hover .navtop .caret { transform: rotate(180deg); }
.dropdown a { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 8px; font-size: 0.92rem; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.dropdown a:hover { background: var(--paper); color: var(--ink); }
.dropdown--wide { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 26px; min-width: 440px; }
.dd-h { font-family: "IBM Plex Mono", monospace; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); padding: 8px 10px 4px; }
.dd-h--mt { margin-top: 8px; }
.dd-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }

/* PDP hero submeta already defined above; carousel */
.dx-carousel { position: relative; width: 100%; }
.dxc-viewport { overflow: hidden; border-radius: 12px; aspect-ratio: 1 / 1; background: var(--card); }
.dxc-track { display: flex; height: 100%; transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.dxc-slide { min-width: 100%; height: 100%; display: flex; }
.dxc-svg { width: 100%; height: 100%; }
.dxc-svg svg { width: 100%; height: 100%; display: block; }
.dxc-front .label-card { width: 100%; min-height: 100%; border-radius: 12px; }
.dxc-ph { width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: 9px; padding: 30px; background: color-mix(in srgb, var(--accent) 8%, #fff); border: 1px dashed color-mix(in srgb, var(--accent) 40%, var(--line)); border-radius: 12px; }
.dxc-ph-tag { font-family: "IBM Plex Mono", monospace; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); background: #fff; padding: 5px 11px; border-radius: 100px; border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line)); }
.dxc-ph-icon { font-size: 2.6rem; line-height: 1; color: color-mix(in srgb, var(--accent) 55%, var(--ink-3)); }
.dxc-ph-t { font-weight: 800; font-size: 1.35rem; letter-spacing: -0.01em; }
.dxc-ph-d { color: var(--ink-2); font-size: 0.95rem; max-width: 32ch; }
.dxc-ph-note { margin-top: auto; font-family: "IBM Plex Mono", monospace; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.dxc-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-card); cursor: pointer; font-size: 1.4rem; line-height: 1; color: var(--ink); display: grid; place-items: center; z-index: 2; padding: 0; }
.dxc-arrow.prev { left: 10px; } .dxc-arrow.next { right: 10px; }
.dxc-arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.dxc-dots { display: flex; gap: 7px; justify-content: center; margin-top: 14px; }
.dxc-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; transition: 0.2s; }
.dxc-dot.is-active { background: var(--accent); width: 22px; border-radius: 5px; }

/* cert badges */
.dx-certs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.dx-cert { display: inline-flex; align-items: center; gap: 7px; font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: 8px 13px; }
.dx-cert:not(.is-link)::before { content: "✓"; color: var(--olive); font-weight: 700; }
.dx-cert.is-link { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); cursor: pointer; text-decoration: none; font-weight: 600; }
.dx-cert.is-link:hover { background: color-mix(in srgb, var(--accent) 8%, #fff); }
.dx-cert .go { color: var(--ink-3); border-left: 1px solid var(--line); padding-left: 8px; margin-left: 2px; }
.dx-cert.is-link:hover .go { color: var(--accent); }

/* chain — clearer stage + location */
.dx-step-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.dx-step-head .dx-sn { position: static; font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; font-weight: 600; color: #fff; background: var(--accent); width: 24px; height: 24px; border-radius: 6px; display: grid; place-items: center; }
.dx-stage { font-weight: 800; font-size: 1.08rem; letter-spacing: -0.01em; }
.dx-chain .dx-geo { display: inline-flex; align-items: center; gap: 6px; font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 10px; }
.dx-chain .dx-geo svg { color: var(--accent); flex: none; }

/* section-head meta — clearer */
.dx-sechead .meta { color: var(--ink-2); font-weight: 500; opacity: 1; background: var(--paper-2); border: 1px solid var(--line); border-radius: 8px; padding: 9px 13px; font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; letter-spacing: 0.05em; line-height: 1.7; text-align: right; }

/* studies library */
.studyfilters { display: grid; gap: 16px; margin-bottom: 26px; }
.filtgroup { display: flex; gap: 14px; align-items: flex-start; flex-wrap: wrap; }
.filtlabel { font-family: "IBM Plex Mono", monospace; font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); min-width: 78px; padding-top: 9px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 14px; border-radius: 100px; border: 1px solid var(--line); background: var(--card); cursor: pointer; color: var(--ink-2); transition: 0.15s; }
.pill:hover { border-color: var(--ink-3); }
.pill.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
#prodPills .pill.is-active { background: var(--accent, var(--ink)); border-color: var(--accent, var(--ink)); color: #fff; }
.studyrows { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--card); box-shadow: var(--shadow-card); }
.studyrow { display: grid; grid-template-columns: 14px 1.1fr auto 1.5fr 1.7fr auto; gap: 18px; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--line); color: var(--ink); }
.studyrow:last-child { border-bottom: none; }
.studyrow:hover { background: var(--paper); }
.sr-dot { width: 11px; height: 11px; border-radius: 50%; }
.sr-prod { font-weight: 700; font-size: 0.95rem; }
.sr-use { font-family: "IBM Plex Mono", monospace; font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: color-mix(in srgb, var(--accent) 13%, transparent); padding: 5px 9px; border-radius: 100px; justify-self: start; }
.sr-find { color: var(--ink); font-size: 0.95rem; }
.sr-cite { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; color: var(--ink-3); }
.sr-go { font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; color: var(--accent); white-space: nowrap; }

/* science block actions */
.sci-block { background: var(--card); }
.sci-actions { display: flex; gap: 10px; padding: 16px 20px; border-top: 1px solid var(--line); background: var(--paper); flex-wrap: wrap; }

/* shop outcome filter bar */
.shop-filterbar { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); }
.shop-filterbar b { color: var(--olive); }
.shop-filterbar a { color: var(--ink-3); text-decoration: underline; }

/* story three-up */
.threeup { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.threeup-card { display: block; border: 1px solid var(--line); border-radius: 14px; padding: 26px; background: var(--card); box-shadow: var(--shadow-card); transition: transform 0.18s; }
.threeup-card:hover { transform: translateY(-3px); }
.threeup-card h3 { font-size: 1.18rem; margin-top: 8px; }

@media (max-width: 860px) {
  .studyrow { grid-template-columns: 14px 1fr auto; gap: 7px 14px; }
  .sr-find, .sr-cite { grid-column: 2 / 4; }
  .sr-go { grid-column: 2 / 4; justify-self: start; }
  .threeup { grid-template-columns: 1fr; }
  .dropdown--wide { min-width: 0; grid-template-columns: 1fr; }
}

/* ============================================================
   Legibility pass — more contrast, larger, less thin
   ============================================================ */
:root {
  --ink-2: #433e31;   /* darker secondary text */
  --ink-3: #5c5747;   /* muted text was too light */
}
body { font-size: 18px; }

.lede { color: var(--ink-2); font-weight: 500; }
.muted { color: var(--ink-3); }
.mono, .eyebrow { font-weight: 500; }
.eyebrow { font-size: 0.74rem; }
.sec-head p, .page-hero .lede { color: var(--ink-2); }

/* citations + captions: darker, bigger, heavier */
.sr-cite, .study-cite, .dx-cite .src, .sci-refs .study-cite,
.factpanel .fp-foot, .dx-ffoot, .studies-note, .dx-studies-note { color: var(--ink-2); }
.sr-cite, .study-cite, .dx-cite .src { font-size: 0.8rem; font-weight: 500; }

/* tiny mono labels — a notch heavier so they're not whispery */
.announce { font-size: 0.74rem; }
.dx-cert, .pill, .sr-use, .chip, .dx-pchip, .filtlabel,
.lc-strength, .bo-strength, .lc-cat, .bo-cat { font-weight: 500; }
.dx-cert { font-size: 0.66rem; }

/* product card support text darker */
.pcard .pc-cat, .pcard .pc-rating { color: var(--ink-2); }
.pcard .pc-short { color: var(--ink-2); }

/* PDP filecode (LOT / category / strength) — much bigger + darker */
.dx-filecode { font-size: 0.84rem !important; color: var(--ink-2) !important; letter-spacing: 0.09em; font-weight: 600; }
.dx-filecode span + span::before { color: var(--ink-3); }

/* PDP research lede darker */
.dx-research-lede { color: var(--ink-2); font-weight: 500; }

/* PDP carousel was far too big */
.dx-plate { max-width: 440px; }
.dxc-viewport { aspect-ratio: 1 / 1; }

/* sourcing world map */
.sourcemap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 34px; align-items: center; background: var(--cypress); border-radius: 18px; padding: 34px; }
.sourcemap-svg { width: 100%; height: auto; display: block; }
.sourcemap-legend { display: grid; gap: 9px; }
.ml-h { font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: #aab089; margin-bottom: 2px; }
.ml-h--mt { margin-top: 14px; }
.ml { display: flex; gap: 12px; align-items: center; }
.ml-dot { width: 13px; height: 13px; border-radius: 50%; flex: none; border: 1px solid rgba(255,255,255,0.25); }
.ml b { display: block; font-size: 0.92rem; color: #fff; font-weight: 600; }
.ml span { font-family: "IBM Plex Mono", monospace; font-size: 0.64rem; letter-spacing: 0.05em; text-transform: uppercase; color: #b3b994; }
@media (max-width: 860px) { .sourcemap { grid-template-columns: 1fr; gap: 24px; padding: 24px; } }

/* carousel height fix — front slide was stretching way too tall */
.dx-plate { max-width: 380px; }
.dxc-viewport { aspect-ratio: auto; height: 380px; overflow: hidden; }
.dxc-track { height: 100%; }
.dxc-slide { min-width: 100%; height: 380px; }
.dxc-front .label-card { width: 100%; height: 100%; min-height: 0; }
.dxc-ph { height: 100%; }

/* ============================================================
   Round 5 — contrast, one-line title, filecode band, study cards
   ============================================================ */
:root {
  --line: rgba(30, 27, 21, 0.20);   /* crisper edges so cards don't melt into beige */
  --shadow-card: 0 1px 2px rgba(30,27,21,0.05), 0 16px 36px -22px rgba(30,27,21,0.55);
}

/* PDP title on one line */
.dx-h1 { font-size: clamp(2rem, 3.2vw, 2.6rem); line-height: 1.05; letter-spacing: -0.02em; max-width: none; }

/* contrast band behind the LOT / category / strength row */
.dx-filecode {
  display: inline-flex; flex-wrap: wrap; align-items: center;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 16px !important; margin-bottom: 18px;
}

/* research citations as white cards (were blending into the page) */
.dx-studies { display: block; }
.dx-cite {
  background: var(--card); border: 1px solid var(--line) !important;
  border-radius: 12px; padding: 18px 22px !important; margin-bottom: 10px;
  box-shadow: var(--shadow-card);
}
.dx-cite:hover { border-color: var(--accent) !important; }

/* study library rows + science refs: a touch more separation */
.studyrow { border-bottom: 1px solid var(--line); }
.sci-refs { gap: 1px; }

/* ============================================================
   Round 6 — hero sub-copy, made-in callout, bigger trust chips
   ============================================================ */
.hero .lede, .hero-lede { font-size: 1.04rem; max-width: 46ch; }
.hero-made { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px 10px; margin-top: 18px; font-weight: 600; font-size: 1rem; color: var(--ink); }
.hero-made .usa { font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; background: var(--olive); color: #fff; padding: 6px 11px; border-radius: 100px; font-weight: 600; }
.hero-made b { font-weight: 800; }

/* hero trust badges -> clearer white chips */
.hero-trust { gap: 9px 10px; padding-top: 28px; }
.hero-trust span { font-size: 0.72rem; color: var(--ink); font-weight: 600; letter-spacing: 0.04em; background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: 8px 13px; }
.hero-trust span::before { color: var(--olive); font-weight: 700; }

/* hero made-in line -> pin items (drop the redundant USA badge styling) */
.hero-made { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; margin-top: 18px; font-size: 0.96rem; color: var(--ink-2); font-weight: 500; }
.hero-made .hm-item { display: inline-flex; align-items: center; gap: 7px; }
.hero-made .pin { color: var(--olive); flex: none; }
.hero-made b { color: var(--ink); font-weight: 700; }

/* ============================================================
   Flip to white canvas (keep warm accents + tinted panels)
   ============================================================ */
:root {
  --paper: #ffffff;
  --paper-2: #f3eee2;   /* warm tint for grouped panels */
  --paper-3: #ece5d5;
  --card: #ffffff;
  --line: rgba(30, 27, 21, 0.15);
  --shadow-card: 0 1px 2px rgba(30,27,21,0.04), 0 14px 30px -20px rgba(30,27,21,0.5);
}
body { background: #ffffff; background-image: none; }   /* drop the beige grain */
.site-header { background: rgba(255, 255, 255, 0.86); }
/* warm tinted section keeps rhythm against white */
.sourcing { background: var(--paper-2); }
.hero-trust span { background: #fff; }

/* more contrast on the LOT/category band + mono labels */
.dx-filecode { color: var(--ink) !important; background: var(--paper-2); border-color: rgba(30,27,21,0.20) !important; font-weight: 600; }
.dx-filecode span + span::before { color: var(--ink-3); }
.lc-foot, .bo-foot, .lc-cat, .bo-cat, .lc-strength, .bo-strength { color: rgba(255,255,255,0.92); }

/* ============================================================
   Round 7 — mobile nav, mobile fixes, interactive map, color pops
   ============================================================ */

/* ---- mobile hamburger + menu ---- */
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; }
.mnav-sub { display: flex; flex-direction: column; }

/* ---- interactive sourcing map ---- */
.sourcemap-figure { position: relative; }
.mp { cursor: pointer; }
.mp-halo { opacity: 0.18; transition: opacity .15s; }
.mp-dot { transition: r .15s; }
.mp:hover .mp-dot, .mp:focus .mp-dot, .mp.is-hot .mp-dot { r: 4.4; }
.mp:hover .mp-halo, .mp:focus .mp-halo, .mp.is-hot .mp-halo { opacity: 0.45; }
.mp:focus { outline: none; }
.map-tip { position: absolute; transform: translate(-50%, calc(-100% - 14px)); background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; width: 232px; box-shadow: 0 14px 34px -8px rgba(0,0,0,.55); pointer-events: none; z-index: 6; }
.map-tip::after { content: ""; position: absolute; left: 50%; bottom: -7px; transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.map-tip .mt-name { display: block; font-weight: 800; font-size: 0.98rem; }
.map-tip .mt-place { display: block; font-family: "IBM Plex Mono", monospace; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); margin: 4px 0 7px; }
.map-tip .mt-note { display: block; font-size: 0.84rem; color: var(--ink-2); line-height: 1.45; }
.ml { cursor: pointer; border-radius: 8px; padding: 5px 7px; margin: -5px -7px; transition: background .15s; }
.ml.is-hot, .ml:hover, .ml:focus { background: rgba(255,255,255,0.07); outline: none; }
.ml-hint { font-family: "IBM Plex Mono", monospace; font-size: 0.56rem; letter-spacing: 0.08em; color: #8f9576; margin-left: 8px; text-transform: lowercase; }

/* ---- pops of color (brighter palette, warm undertones) ---- */
.bigstat b { color: #e3b454; }
.threeup-card:nth-child(1) { border-top: 3px solid #C24634; }
.threeup-card:nth-child(2) { border-top: 3px solid #3E8C77; }
.threeup-card:nth-child(3) { border-top: 3px solid #4A6FA5; }
.facilities .facility:nth-child(1) { border-top: 3px solid #C24634; }
.facilities .facility:nth-child(2) { border-top: 3px solid #C98A14; }
.facilities .facility:nth-child(3) { border-top: 3px solid #3E8C77; }
.standards-grid .standard:nth-child(1) .num { color: #C24634; }
.standards-grid .standard:nth-child(2) .num { color: #C98A14; }
.standards-grid .standard:nth-child(3) .num { color: #3E8C77; }
.standards-grid .standard:nth-child(4) .num { color: #4A6FA5; }
/* colour cue is the card's top accent bar, not the heading text */
.trustbar .ti:nth-child(1) { --ti-accent: #C97E1A; } /* saffron */
.trustbar .ti:nth-child(2) { --ti-accent: #CF4326; } /* coral */
.trustbar .ti:nth-child(3) { --ti-accent: #2C6A87; } /* aegean */
.trustbar .ti:nth-child(4) { --ti-accent: #6E7D5C; } /* sage */

/* ---- mobile fixes ---- */
@media (max-width: 940px) {
  html, body { overflow-x: hidden; }
  /* nav */
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav { display: block; position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-card); padding: 14px 24px 22px; max-height: 82vh; overflow-y: auto; z-index: 49; }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav > a { display: block; padding: 13px 0; font-size: 1.08rem; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); }
  .mnav-sub a { display: block; padding: 9px 0 9px 14px; font-size: 1rem; font-weight: 500; color: var(--ink-2); }
  .mnav-h { font-family: "IBM Plex Mono", monospace; font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin: 16px 0 4px; }

  /* hero overflow */
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-grid > * { min-width: 0; }
  .hero-lede { max-width: 100%; }
  .hero-made { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-bottles { min-width: 0; max-width: 100%; }
  .hero-bottles .bottle { min-width: 0; }

  /* PDP carousel width */
  .dx-plate { max-width: 100%; }
  .dx-carousel, .dxc-viewport { width: 100%; max-width: 100%; overflow-x: hidden; }
  .dxc-track { width: 100%; }
  .dxc-slide { flex: 0 0 100%; min-width: 0; max-width: 100%; box-sizing: border-box; }

  /* bundle + any inline split collapse */
  .split { grid-template-columns: 1fr !important; }
  #bundleSummary { position: static !important; }

  /* sticky buy bar footer clearance + title truncate */
  body { padding-bottom: 112px; }
  .stickybuy .sb-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 60vw; }

  /* tap targets */
  .btn { min-height: 44px; }
  .sci-actions .btn { flex: 1 1 100%; }

  /* bigger, friendlier map pins on touch */
  .mp-dot { r: 3.4; }
  .mp-halo { r: 8; }
}
@media (max-width: 560px) {
  .announce { letter-spacing: 0.05em; font-size: 0.66rem; padding: 8px 12px; line-height: 1.5; }
  .dx-filecode { flex-direction: column; align-items: flex-start; gap: 6px; }
  .dx-filecode span + span::before { display: none; }
}

/* external-proof study count on product cards */
.pc-proof { font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 2px 0 11px; display: inline-flex; align-items: center; gap: 6px; }
.pc-proof::before { content: "✦"; font-size: 0.8em; }

/* tighten vertical rhythm — too much dead space on white */
.section { padding: 72px 0; }
.section--tight { padding: 44px 0; }
.sec-head { margin-bottom: 36px; }
.hero { padding: 70px 0 54px; }
@media (max-width: 740px) {
  .section { padding: 52px 0; }
  .section--tight { padding: 36px 0; }
  .sec-head { margin-bottom: 28px; }
  .hero { padding: 40px 0 44px; }
}

/* study-count: make it a hero proof point on cards, not fine print */
.pc-proof {
  display: inline-flex; align-items: center; gap: 7px;
  margin: 6px 0 12px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0; text-transform: none;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  border-radius: 100px; padding: 8px 14px;
  white-space: nowrap;
}
.pc-proof::before { content: "✦"; font-size: 0.95em; }

/* ============================================================
   PDP streamline + ingredient pages
   ============================================================ */
/* hero category eyebrow (replaced the heavy filecode band) */
.dx-cat-eyebrow { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-weight: 600; }
/* "what it helps with" subhead inside What's-in-it */
.dx-helps-h { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin: 30px 0 16px; }
/* proof chip as a topper above the card */
.pcard { display: flex; flex-direction: column; }
.pcard .pc-proof { margin: 16px 18px 0; align-self: flex-start; }
/* ingredient link in PDP submeta */
.dx-submeta a.ing-link { text-decoration: none; cursor: pointer; }
.dx-submeta .ing-learn { color: var(--ink-3); }
.dx-submeta a.ing-link:hover .ing-learn { color: var(--accent); }
.dx-submeta a.ing-link:hover .ing { color: var(--accent); }

/* ingredient page: source map + body */
.ing-map { background: var(--cypress); border-radius: 14px; padding: 16px; }
.ing-map svg { width: 100%; height: auto; display: block; }
.ing-source { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; }
.ing-source-body .ing-loc { display: inline-flex; align-items: center; gap: 8px; font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.ing-source-body p { color: var(--ink-2); margin: 0 0 12px; }
.ing-source-body p.muted { color: var(--ink-3); font-size: 0.95rem; }
@media (max-width: 860px) { .ing-source { grid-template-columns: 1fr; gap: 22px; } }

/* ============================================================
   Design System v3 — synthesized from 10 design-system vets
   one scale · accent=actions only · whitespace over dividers ·
   flat (one shadow) · mono=data only · progressive disclosure
   ============================================================ */
:root {
  --paper: #FBFAF5;            /* warm off-white, not pure white */
  --card: #ffffff;
  --ink: #211f17; --ink-2: #5d584a; --ink-3: #8a8473;
  --line: rgba(33, 31, 23, 0.11);
}
body { background: var(--paper); }

/* eyebrows: quiet labels, not loud accent-mono */
.dx-cat-eyebrow, .dx-sechead .n {
  color: var(--ink-3) !important;
  font-family: "Hanken Grotesk", sans-serif; font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* provenance: drop vertical pipes → middots */
.dx-submeta { gap: 6px 14px; }
.dx-submeta span:not(.ing) { border-left: none !important; padding-left: 0 !important; }
.dx-submeta span + span::before { content: "·" !important; color: var(--ink-3); margin-right: 10px; }

/* pull-stats: no dividers, mono numbers, ink (not accent) */
.dx-stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dx-stat { border-right: none !important; padding: 18px 28px 18px 0 !important; }
.dx-stat .big { font-family: "IBM Plex Mono", monospace; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.dx-stat .lbl { color: var(--ink-3); }

/* flatten content cards → whitespace + one hairline */
.dx-why { gap: 0; }
.dx-wcard { background: transparent !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; padding: 20px 28px 20px 0 !important; border-top: 1px solid var(--line) !important; }
.dx-why .dx-wcard:nth-child(-n+2) { border-top: none !important; }
.dx-wnum { color: var(--ink-3) !important; background: transparent !important; }
.forgrid { background: transparent !important; border: none !important; }
.dx-bi { background: transparent !important; border-bottom: 1px solid var(--line); padding: 18px 0 !important; }
.dx-bdot { background: var(--ink) !important; }

/* studies citation rows: flat hairline rows */
.dx-cite { background: transparent !important; border: none !important; border-bottom: 1px solid var(--line) !important; border-radius: 0 !important; box-shadow: none !important; padding: 16px 0 !important; }
.dx-cite:hover { background: transparent !important; border-color: var(--ink-3) !important; }
.dx-cite .idx { color: var(--ink-3); }

/* accordions — progressive disclosure, hairline only */
.dx-accs { border-top: 1px solid var(--line); }
.dx-acc { border-bottom: 1px solid var(--line); }
.dx-acc > summary { list-style: none; cursor: pointer; display: block; padding: 22px 0; }
.dx-acc > summary::-webkit-details-marker { display: none; }
.dx-acc-row { display: flex; align-items: center; gap: 16px; }
.dx-acc-plus { flex: none; }
.dx-acc-plus::after { content: "+"; color: var(--ink-3); font-size: 1.5rem; line-height: 1; transition: color 0.15s ease; }
.dx-acc[open] .dx-acc-plus::after { content: "–"; }
.dx-acc > summary:hover .dx-acc-t,
.dx-acc > summary:hover .dx-acc-plus::after { color: var(--accent); }
.dx-acc-teaser { display: block; margin-top: 9px; color: var(--ink-3); font-size: 1rem; line-height: 1.5; max-width: 66ch; }
.dx-acc[open] .dx-acc-teaser { display: none; }
.dx-acc-t { font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em; }
.dx-acc-meta { margin-left: auto; font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }
.dx-acc-body { padding: 2px 0 28px; }

/* one shadow on the page — the buy box. flatten product image frame */
.dx-plate { box-shadow: none; }

/* ============================================================
   Hero tighten + roll design system across the whole site
   ============================================================ */
/* PDP hero: fewer gaps, less whitespace */
.dx-cat-eyebrow { margin-bottom: 9px; }
.dx-h1 { margin-bottom: 6px; }
.dx-submeta { margin: 8px 0 0; }
.dx-stats { margin-top: 20px; }
.dx-stat { padding-top: 14px !important; padding-bottom: 14px !important; }

/* quiet eyebrows site-wide (mono is reserved for data only now) */
.eyebrow { color: var(--ink-3); font-family: "Hanken Grotesk", sans-serif; font-weight: 600; font-size: 0.74rem; letter-spacing: 0.1em; }
.eyebrow::before { display: none; }
/* dark sections keep a light eyebrow */
.story .eyebrow, .studies-sec .eyebrow, .band .eyebrow, .person .eyebrow { color: #b9c194; }

/* hero eyebrow + ingredient link: stronger contrast (don't blend into canvas) */
.dx-cat-eyebrow { color: var(--ink-2) !important; font-weight: 700; }
.dx-submeta { color: var(--ink-2); }
.dx-submeta a.ing-link { color: var(--accent); font-weight: 600; }
.dx-submeta a.ing-link .ing-learn { color: var(--accent); border-bottom: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); padding-bottom: 1px; transition: border-color .15s; }
.dx-submeta a.ing-link:hover .ing-learn { border-bottom-color: var(--accent); }

/* hero claim line — triple-tested + clinically-backed */
.hero-claim { font-size: 1.02rem; color: var(--ink); font-weight: 500; max-width: 46ch; margin: 14px 0 0; line-height: 1.5; }
.hero-claim b { font-weight: 700; }

/* hero: anchor the category with a small accent rule; ingredient as a defined pill button */
.dx-cat-eyebrow { display: flex; align-items: center; gap: 11px; color: var(--ink) !important; }
.dx-cat-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); flex: none; border-radius: 2px; }
.dx-submeta { margin-top: 16px; }
.ing-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px; border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line)); border-radius: 100px; background: color-mix(in srgb, var(--accent) 7%, #fff); color: var(--accent); font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; transition: background .15s, border-color .15s; }
.ing-pill:hover { background: color-mix(in srgb, var(--accent) 14%, #fff); border-color: var(--accent); }
.ing-pill .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }
.ing-pill .ing-sep { opacity: 0.45; }

/* fix: neutralize the provenance middot rule inside the ingredient pill */
.ing-pill span + span::before { content: none !important; margin: 0 !important; }

/* ============================================================
   Pure white + accent pops + facility modal + hero two-col + compact stats
   ============================================================ */
:root { --paper: #ffffff; --card: #ffffff; }
body { background: #ffffff; }

/* lean on accent so copy pops on white (fix flatness) */
.dx-cat-eyebrow { color: var(--accent) !important; }
.dx-cat-eyebrow::before { background: var(--accent); }
.eyebrow { color: var(--accent); }
.dx-sechead .n { color: var(--accent) !important; }
.dx-wnum { color: var(--accent) !important; background: transparent !important; }
.dx-acc-meta { color: var(--accent); }
.dx-bdot { background: var(--accent) !important; }
.dx-acc-t { color: var(--ink); }
/* dark sections keep a light eyebrow */
.story .eyebrow, .studies-sec .eyebrow, .band .eyebrow, .person .eyebrow { color: #cdd3a8; }

/* compact one-line stats (number + label inline) */
.dx-stats { display: flex; flex-wrap: wrap; gap: 8px 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; margin: 0; align-items: baseline; }
.dx-stat { display: flex; align-items: baseline; gap: 7px; padding: 0 !important; border: none !important; font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.dx-stat b { font-family: "IBM Plex Mono", monospace; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; color: var(--accent); }
.dx-stat .lbl { font-size: 0.72rem; color: var(--ink-3); }

/* hero two-column: carousel left, stats/certs right (use the whitespace) */
.dx-herorow { display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: 36px; align-items: start; margin-top: 22px; }
.dx-herorow .dx-plate { max-width: none; margin: 0; }
.dx-herorow-side { display: flex; flex-direction: column; gap: 22px; }
.dx-herorow-side .dx-stats { flex-direction: column; align-items: flex-start; gap: 16px; border: none; padding: 0; }
@media (max-width: 860px) { .dx-herorow { grid-template-columns: 1fr; gap: 22px; } }

/* "See the facility" button + pop-out modal */
.dx-fac-btn { margin-top: 12px; background: none; border: none; padding: 0; color: var(--accent); font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; cursor: pointer; }
.dx-fac-btn:hover { text-decoration: underline; }
.facmodal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; }
.facmodal[hidden] { display: none; }
.facmodal-bg { position: absolute; inset: 0; background: rgba(20, 18, 12, 0.5); }
.facmodal-card { position: relative; background: #fff; border-radius: 16px; max-width: 460px; width: 100%; padding: 32px 30px 26px; box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.45); }
.facmodal-x { position: absolute; top: 12px; right: 16px; border: none; background: none; font-size: 1.7rem; line-height: 1; color: var(--ink-3); cursor: pointer; }
.fm-eyebrow { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.fm-stage { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; }
.fm-place { display: flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.fm-kind { font-size: 0.95rem; color: var(--ink-2); margin-bottom: 14px; }
.fm-detail { color: var(--ink-2); line-height: 1.6; margin: 0 0 16px; }
.fm-note { font-size: 0.85rem; color: var(--ink-3); border-top: 1px solid var(--line); padding-top: 14px; }

/* hero side: frame it + center the content vertically in the whitespace */
.dx-herorow { align-items: stretch; }
.dx-herorow-side {
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px;
  background: color-mix(in srgb, var(--accent) 3.5%, #fff);
}
.dx-herorow-side .vbadges { justify-content: center; }
/* sourced → made → tested callout to fill the side panel */
.dx-smt { width: 100%; margin-top: 4px; padding-top: 18px; border-top: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line)); display: grid; gap: 11px; }
.smt-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.smt-k { font-family: "IBM Plex Mono", monospace; font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.smt-v { font-size: 0.86rem; color: var(--ink-2); font-weight: 600; text-align: right; }

/* title + ingredient pill on one row (drop the 3rd line) */
.dx-titlerow { display: flex; align-items: center; gap: 12px 22px; flex-wrap: wrap; }
.dx-titlerow .dx-h1 { margin: 0; }

/* chain cards: equal height, "See the facility" pinned to the same baseline */
.dx-chain .dx-step { display: flex; flex-direction: column; height: 100%; }
.dx-chain .dx-step > p { margin-bottom: 0; }
.dx-chain .dx-fac-btn { margin-top: auto; padding-top: 18px; }

/* declutter side panel: quiet testing link + one cert line (no pills) */
.dx-certs { display: flex; flex-direction: column; gap: 12px; }
.dx-cert-link { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; text-decoration: none; }
.dx-cert-link .go { color: var(--ink-3); font-weight: 400; }
.dx-cert-link:hover .go { color: var(--accent); }
.dx-cert-row { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
/* a touch more air between the panel's stats + certs */
.dx-herorow-side .dx-stats { gap: 18px; }

/* widen side panel a touch + keep cert line tidy on one row */
.dx-herorow { grid-template-columns: minmax(0, 1fr) 250px; }
.dx-cert-link { font-size: 0.7rem; letter-spacing: 0.04em; }
.dx-cert-row { font-size: 0.7rem; letter-spacing: 0.04em; }

/* real product photography in the carousel */
.dxc-viewport { height: auto !important; aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden; }
.dxc-img { width: 100%; height: 100%; object-fit: cover; display: block; background: #f0eeea; }
.dxc-ph { display: none; }

/* FIX: hero must stack on mobile (a later desktop rule had overridden the collapse) */
@media (max-width: 860px) {
  .dx-herorow { grid-template-columns: 1fr !important; gap: 18px; }
  .dx-herorow .dx-plate { max-width: 100%; }
  .dxc-viewport { aspect-ratio: 1 / 1; }
}

/* small at-a-glance trust row under the title */
.dx-trustrow { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 14px; margin-top: 14px; font-size: 0.86rem; color: var(--ink-2); }
.dx-trustrow .tr-stars { color: var(--accent); letter-spacing: 1px; }
.dx-trustrow .tr-rate b { color: var(--ink); font-weight: 700; }
.dx-trustrow .tr-rev { color: var(--ink-3); }
.dx-trustrow .tr-item { color: var(--ink-2); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.dx-trustrow .tr-item::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); display: inline-block; }
.dx-trustrow a.tr-item:hover { color: var(--accent); }

/* announce bar → single-line slow marquee (no more 3-line wrap) */
.announce { overflow: hidden; white-space: nowrap; }
.announce-track { display: inline-flex; will-change: transform; animation: ann-marquee 48s linear infinite; }
.announce:hover .announce-track { animation-play-state: paused; }
.announce-set { display: inline-flex; align-items: center; flex: none; }
.announce-set .ann-item { padding: 0 18px; }
.announce-set .ann-dot { opacity: 0.4; }
@keyframes ann-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .announce-track { animation: none; } }

/* side-panel stats: stack label under the number, consistent rhythm */
.dx-herorow-side .dx-stats { gap: 22px; }
.dx-herorow-side .dx-stat { flex-direction: column; align-items: flex-start; gap: 3px; line-height: 1.15; }
.dx-herorow-side .dx-stat .lbl { line-height: 1.35; }
.dx-herorow-side { gap: 26px; padding: 28px 24px; }
.dx-herorow-side .dx-certs { gap: 10px; }

/* clean up carousel: drop the dossier frame/lines/corners → just a clean rounded image */
.dx-plate { background: #fff !important; padding: 0 !important; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: none !important; }
.dx-corner { display: none !important; }
.dxc-viewport { border-radius: 0 !important; }
/* tighten hero rhythm */
.dx-trustrow { margin-top: 12px; }
.dx-herorow { margin-top: 18px; }

/* vibrancy: small colored accent tick before section eyebrows (color follows --accent) */
.eyebrow::before { content: ""; display: inline-block; width: 18px; height: 2px; background: var(--accent); vertical-align: middle; margin-right: 10px; border-radius: 2px; }
.sec-head.center .eyebrow::before { display: none; }

/* "What the research lets us say" — claims tied to the studies */
.dx-claims { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.dx-claims-h { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.dx-claims-lede { color: var(--ink-2); margin: 0 0 16px; max-width: 60ch; }
.dx-claims-list { list-style: none; padding: 0; margin: 0 0 16px; }
.dx-claims-list li { position: relative; padding: 12px 0 12px 28px; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.dx-claims-list li::before { content: "✓"; position: absolute; left: 0; top: 12px; color: var(--accent); font-weight: 700; }
.dx-claims-list li b { color: var(--ink); }
.dx-claims-note { font-size: 0.84rem; color: var(--ink-3); line-height: 1.5; margin: 0; }
/* on the ingredient page the studies block sits on dark — keep claims readable on light below it */
.studies-sec + .dx-claims, .studies-sec .dx-claims { }

/* "The studies behind it" subhead (below the claims) */
.dx-studies-h { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin: 28px 0 4px; }

/* center the bottle render in the frame (it sits high in the square source) */
.dxc-img--bottle { transform: translateY(5%); }

/* stop the plate stretching taller than the image (that was adding the framing padding) */
.dx-herorow { align-items: start; }
.dx-plate { align-self: start; }

/* overlay carousel dots on the image (remove the bottom padding they added) */
.dxc-dots { position: absolute; left: 0; right: 0; bottom: 12px; margin: 0; z-index: 3; }

/* FIX: carousel slides must match the square viewport (stale height:380px caused the bottom whitespace) */
.dxc-viewport { aspect-ratio: 1 / 1 !important; height: auto !important; }
.dxc-track { height: 100% !important; }
.dxc-slide { height: 100% !important; min-height: 100% !important; }
.dxc-img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block; }

/* ============================================================
   v3 — Atmosphere & motion. The site verifies itself.
   On-brand restraint: real uncoated-stock grain (felt, not seen),
   one orchestrated hero load, and the check mark signing itself on.
   Explicitly NOT: centered defaults, gradients, glows, glass, fade-up-
   everything. Each gesture is brand-meaningful or it isn't here.
   ============================================================ */

/* Uncoated stock — a fractal-noise grain a competitor can't screenshot.
   Tuned low (multiply) so it reads as paper tooth, never as visible noise. */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* The check signs itself on when its badge row enters view.
   No-JS / no-motion safe: checks are drawn (offset 0) unless JS opts in. */
.vbadge .vck-svg path {
  stroke-dasharray: 27; stroke-dashoffset: 0;
}
html.js .vbadges:not(.is-in) .vck-svg path { stroke-dashoffset: 27; }

@media (prefers-reduced-motion: no-preference) {
  .vbadges .vck-svg path {
    transition: stroke-dashoffset 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .vbadges.is-in .vck-svg path { stroke-dashoffset: 0; }
  /* each check signs a beat after the last — a row being verified in sequence */
  .vbadges .vbadge:nth-child(2) .vck-svg path { transition-delay: 0.13s; }
  .vbadges .vbadge:nth-child(3) .vck-svg path { transition-delay: 0.26s; }

  /* The product label lifts off the card on hover — warm shadow, no glow. */
  .pcard .pc-face .label-card { transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease; }
  .pcard:hover .pc-face .label-card { transform: translateY(-5px) rotate(-0.5deg); box-shadow: 0 1px 0 rgba(27,24,19,0.05), 0 26px 46px -26px rgba(27,24,19,0.5); }
  /* hero bottles breathe, slightly out of sync, like they're sitting on a shelf */
  .hero-bottles .bottle { transition: transform 0.4s ease; }
}

/* founder portrait uses a photo slot instead of the initials medallion */
.person-portrait--photo { padding: 0; background: none; min-height: 0; }
.person-portrait--photo .photo-slot { width: 100%; height: 100%; }

/* ============================================================
   Photography slots — art-directed placeholders (re-added).
   ============================================================ */
.photo-slot {
  position: relative; aspect-ratio: var(--ar, 4 / 5);
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(135deg, rgba(27,24,19,0.028) 0 1px, transparent 1px 12px);
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px 20px; color: var(--ink-3);
}
.photo-slot .ps-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; position: relative; z-index: 1; }
.photo-slot .ps-kind {
  font-family: "IBM Plex Mono", monospace; font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px;
}
.photo-slot .ps-kind::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent, var(--olive)); flex: none; }
.photo-slot .ps-ar { font-family: "IBM Plex Mono", monospace; font-size: 0.58rem; letter-spacing: 0.12em; opacity: 0.75; }
.photo-slot .ps-brief {
  font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 400;
  font-size: 1.04rem; line-height: 1.38; color: var(--ink-2); max-width: 40ch;
  position: relative; z-index: 1;
}
.photo-slot .ps-aperture { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); color: var(--ink-3); opacity: 0.32; }
.photo-slot .ps-c { position: absolute; width: 12px; height: 12px; border: 1px solid var(--ink-3); opacity: 0.45; }
.photo-slot .ps-c.tl { top: 9px; left: 9px; border-right: 0; border-bottom: 0; }
.photo-slot .ps-c.tr { top: 9px; right: 9px; border-left: 0; border-bottom: 0; }
.photo-slot .ps-c.bl { bottom: 9px; left: 9px; border-right: 0; border-top: 0; }
.photo-slot .ps-c.br { bottom: 9px; right: 9px; border-left: 0; border-top: 0; }
.photo-band .photo-slot { border-radius: 10px; }
.photo-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
@media (max-width: 720px) { .photo-trio { grid-template-columns: 1fr; } }
.dxc-slide .photo-slot { aspect-ratio: auto; width: 100%; height: 100%; border-radius: 12px; border: none; }

/* two-up lifestyle + ingredient band on the PDP */
.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 720px) { .photo-duo { grid-template-columns: 1fr; } }

/* real photos fill the slot frame (object-fit cover), no placeholder chrome */
.photo-slot.has-img { padding: 0; background: var(--paper-3); border-color: var(--line); }
.photo-slot.has-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* explicit claims lead + compliance note (PDP "What it's good for") */
.dx-claim-lead { font-size: 1.08rem; line-height: 1.55; color: var(--ink-2); max-width: 64ch; margin: 0 0 22px; }
.dx-claim-lead b { color: var(--ink); }
.dx-claim-note { font-size: 0.8rem; line-height: 1.5; color: var(--ink-3); max-width: 70ch; margin: 22px 0 0; }

/* ============================================================
   Review module (sample) — PDP
   ============================================================ */
.rv-head { display: grid; grid-template-columns: auto 1fr auto; gap: 44px; align-items: center; padding: 4px 0 30px; border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.rv-summary { display: flex; align-items: center; gap: 18px; }
.rv-big { font-size: 3.4rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.rv-stars-lg { color: #E0922A; font-size: 1.25rem; letter-spacing: 2px; }
.rv-count { color: var(--ink-3); font-size: 0.9rem; margin-top: 5px; }
.rv-dist { display: flex; flex-direction: column; gap: 6px; max-width: 380px; width: 100%; }
.rv-distrow { display: flex; align-items: center; gap: 10px; font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; color: var(--ink-3); }
.rv-dl { width: 26px; flex: none; }
.rv-bar { flex: 1; height: 7px; background: var(--paper-3); border-radius: 100px; overflow: hidden; }
.rv-bar > span { display: block; height: 100%; background: #E0922A; border-radius: 100px; }
.rv-dp { width: 38px; text-align: right; flex: none; }
.rv-cta { white-space: nowrap; }
.rv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rv-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 20px 21px; }
.rv-hidden { display: none; }
.rv-toprow { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.rv-av { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.82rem; flex: none; }
.rv-name { font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.rv-verified { color: #3E7C68; font-family: "IBM Plex Mono", monospace; font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.rv-meta { font-size: 0.78rem; color: var(--ink-3); margin-top: 3px; }
.rv-cstars { color: #E0922A; letter-spacing: 1px; }
.rv-body { font-size: 0.95rem; line-height: 1.55; color: var(--ink-2); margin: 0; }
.rv-tag { display: inline-block; margin-top: 13px; font-family: "IBM Plex Mono", monospace; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line)); border-radius: 100px; padding: 4px 9px; }
.rv-more-wrap { text-align: center; margin-top: 28px; }
@media (max-width: 900px) { .rv-grid { grid-template-columns: 1fr 1fr; } .rv-head { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 600px) { .rv-grid { grid-template-columns: 1fr; } }

/* always-visible "What it supports" claims in the sticky order-spec sidebar —
   a contained tinted card so it reads as a module, not floating text */
.dx-spec-claims { margin-top: 14px; padding: 15px 16px; border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line)); border-radius: 10px; background: color-mix(in srgb, var(--accent) 5%, var(--paper)); }
.dx-sc-h { font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 11px; }
.dx-sc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.dx-sc-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.9rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.dx-sc-list li::before { content: "✓"; color: var(--accent); font-weight: 800; font-size: 0.82rem; margin-top: 1px; flex: none; }
.dx-sc-note { margin-top: 12px; font-size: 0.68rem; line-height: 1.42; color: var(--ink-3); }

/* ============================================================
   COLOR USAGE — our palette, applied to more surfaces
   (borrowed from Micro Ingredients: color-blocked promo panel,
    rationed accent on cards). Appended last so it wins prior rounds.
   ============================================================ */
/* Color-blocked CTA panel: flat accent fill, reversed type, tonal button */
.band--pop { background: var(--accent); border: none; }
.band--pop h2 { color: #fff; }
.band--pop p { color: rgba(255,255,255,0.88); }
.btn--on-pop { background: #f4ecdc; color: var(--accent); border: none; font-weight: 700; }
.btn--on-pop:hover { background: #fff; color: var(--accent); }
/* "Tested three times" steps: accent the numeral, tag pill, and a top cap */
.tstep { border-top: 3px solid var(--accent); }
.tstep-num { color: var(--accent); }
.tstep-tag { background: var(--accent); color: #fff; }

/* ============================================================
   SECTION RHYTHM — alternating chapter backgrounds so the page
   reads as distinct sections, not one continuous scroll.
   ============================================================ */
.section--tint { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--tint2 { background: var(--paper-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--ink { background: var(--olive); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #d8d4c6; }
.section--ink .eyebrow { color: #cdd3a8; }
.section--ink .btn--ghost { color: #f3efe4; border-color: rgba(255,255,255,.3); }
.section--ink .btn--ghost:hover { background: rgba(255,255,255,.08); }
/* per-accent tint chapter (PDP): wash of the product's own accent */
.section--accent { background: color-mix(in srgb, var(--accent) 7%, var(--paper)); border-top: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line)); border-bottom: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line)); }
/* one loud, saturated accent block per page (stat/guarantee beat) */
.accent-block { background: var(--accent); color: #fff; border-radius: 16px; padding: 36px 40px; }
.accent-block h2, .accent-block h3, .accent-block b { color: #fff; }
.accent-block p { color: rgba(255,255,255,.9); }
/* full-bleed image band: edge-to-edge, no card chrome */
.photo-cinema { padding: 0 !important; }
.photo-cinema .photo-slot { border-radius: 0; border: none; }
/* mono eyebrow for use inside accent/dark blocks */
.ab-eyebrow { font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-bottom: 14px; }
.accent-block .split { align-items: center; gap: 48px; margin: 0; }
.accent-block .photo-slot { border: none; box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.accent-block h2 { letter-spacing: -0.02em; }
@media (max-width: 760px){ .accent-block { padding: 28px 24px; } }

/* ============================================================
   PDP — bold color SECTIONS with real contrast (product accent)
   white content → SATURATED accent → DARK → SATURATED → white
   ============================================================ */
.dx-bi { background: color-mix(in srgb, var(--accent) 12%, #fff); }
.dx-wnum { color: var(--accent); }
/* loud saturated beat — full-width accent stat band.
   accent mixed with ink so white text stays legible on light accents (sky/sage) */
.pdp-statband { background: color-mix(in srgb, var(--accent) 74%, #1b1813); color: #fff; }
.pdp-statband .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 46px 0; }
.psb b { display: block; font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: #fff; }
.psb span { display: block; margin-top: 9px; font-size: 0.88rem; color: rgba(255,255,255,.9); line-height: 1.4; }
@media (max-width: 760px){ .pdp-statband .wrap { grid-template-columns: 1fr 1fr; gap: 24px; } }
/* purposeful image+text bands as full color SECTIONS */
.pdp-band--accent { background: color-mix(in srgb, var(--accent) 74%, #1b1813); }
.pdp-band--ink { background: var(--olive); }
.pdp-band--accent h2, .pdp-band--ink h2 { color: #fff; }
.pdp-band--accent p, .pdp-band--ink p { color: rgba(255,255,255,.92); }
.pdp-band--accent .split, .pdp-band--ink .split { align-items: center; gap: 48px; }
.pdp-band--accent .photo-slot, .pdp-band--ink .photo-slot { border: none; box-shadow: 0 18px 46px rgba(0,0,0,.26); }
.pdp-band--accent .ab-eyebrow, .pdp-band--ink .ab-eyebrow { color: rgba(255,255,255,.82); }
/* cross-sell on a clear accent tint */
.pdp-stacks { background: color-mix(in srgb, var(--accent) 10%, #fff); border-top: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line)); border-bottom: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line)); }

/* ============================================================
   Colored CTA buttons + fixes
   ============================================================ */
:root { --cta: #CF4326; }              /* default CTA = coral */
.dx-doc { --cta: var(--accent); }       /* PDP CTAs use the product accent */
/* every CTA is a solid, filled color so it pops — coral by default, product accent on PDP */
.btn:not(.btn--ink):not(.btn--on-pop):not(.btn--soft) { background: var(--cta); border-color: transparent; color: #fff; }
.btn--ghost { background: var(--cta); color: #fff; border-color: transparent; }
.btn--ghost:hover { background: color-mix(in srgb, var(--cta) 88%, #000); box-shadow: 0 10px 24px -12px rgba(0,0,0,.55); }
/* soft secondary — a quiet color fill for primary+secondary pairings (e.g. hero) */
.btn--soft { background: color-mix(in srgb, var(--cta) 15%, #fff); color: var(--cta); border-color: transparent; }
.btn--soft:hover { background: color-mix(in srgb, var(--cta) 24%, #fff); box-shadow: none; }

/* PDP accordions → distinct, clickable color cards (accent tint + border + "+") */
.dx-accs { border-top: none; display: grid; gap: 14px; }
.dx-acc { border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line)); border-radius: 12px; background: color-mix(in srgb, var(--accent) 5%, #fff); padding: 0 24px; transition: background .15s ease, border-color .15s ease; }
.dx-acc:hover { border-color: color-mix(in srgb, var(--accent) 48%, var(--line)); }
.dx-acc[open] { background: color-mix(in srgb, var(--accent) 9%, #fff); border-color: color-mix(in srgb, var(--accent) 42%, var(--line)); }
.dx-acc-plus::after { color: var(--accent); }
.dx-acc-body { padding: 2px 0 24px; }

/* homepage reviews slider */
.rslider { position: relative; margin-top: 28px; }
.rslide-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 2px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.rslide-track::-webkit-scrollbar { display: none; }
.rslide-track .review { scroll-snap-align: start; flex: 0 0 clamp(280px, 31%, 380px); }
.rslide-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-card); cursor: pointer; font-size: 1.5rem; line-height: 1; color: var(--ink); display: grid; place-items: center; transition: color .15s ease, box-shadow .15s ease; }
.rslide-arrow.prev { left: -16px; } .rslide-arrow.next { right: -16px; }
.rslide-arrow:hover { color: var(--accent); box-shadow: 0 12px 28px -10px rgba(30,27,21,.5); }
@media (max-width: 720px){ .rslide-arrow { display: none; } .rslide-track .review { flex-basis: 84%; } }
/* dark band: white step-cards must keep dark, legible text (was bleeding light) */
.section--ink .tstep h3 { color: var(--ink); }
.section--ink .tstep p { color: var(--ink-2); }
/* contained PDP stat block (2×2, sits high in the product column) */
.pdp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 30px; margin-top: 30px; }
.pdp-stats .psb b { display: block; font-size: 1.85rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: #fff; }
.pdp-stats .psb span { display: block; margin-top: 7px; font-size: 0.85rem; color: rgba(255,255,255,.9); line-height: 1.4; }
