/* ============================================================
   Score Bench / Gluco Renu review — global stylesheet
   Driven by design/tokens.md and design/components.md.
   No CSS framework. Hand-written, single file.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Backgrounds */
  --bg:             #F7FAFE;
  --bg-soft:        #EFF5F6;
  --bg-section-alt: #FFFFFF;
  --bg-card:        #FFFFFF;
  --footer-bg:      #1F476F;

  /* Text */
  --ink:            #1C4770;
  --ink-soft:       #3A6086;
  --ink-on-dark:    #FFFFFF;

  /* Brand colours */
  --accent:         #43B2D6;
  --accent-deep:    #2992AA;
  --rule:           #43B2D6;
  --cta-shop:       #4ACE8A;
  --cta-shop-deep:  #36B176;
  --highlight:      #FFFF00;

  /* Warning / coral */
  --warn:           #FF7272;
  --warn-bg:        #FFF6F6;

  /* Grade bands (also used by score ring + comparison table) */
  --grade-a:        #659F3B;
  --grade-b:        #FFB43E;
  --grade-cd:       #FF7272;

  /* Type */
  --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

main { display: block; }

/* ---------- Highlight ----------
   <mark class="hl"> is the only element painted yellow. The bare <mark>
   tag is left at its browser default to preserve semantics where the
   visual highlight isn't desired. */
mark { background: transparent; color: inherit; }
mark.hl {
  background: var(--highlight);
  color: var(--ink);
  font-weight: 700;
  padding: 0 0.15em;
  border-radius: 2px;
}

/* ---------- Container helper ---------- */
.container,
.hero__inner,
.intro__inner,
.benefits__inner,
.lookfor__inner,
.avoid__inner,
.compare__inner,
.closing__inner,
.faq__inner,
.legal__inner,
.site-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 64px 0; }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  background: var(--bg-soft);
  padding: 64px 0;
}
.hero__title {
  text-align: center;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 16px;
}
.hero__subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--ink);
  margin: 0 auto 32px;
  max-width: 760px;
}
.hero__disclosure {
  background: var(--bg-card);
  border: 1px solid var(--ink);
  border-radius: 10px;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 28px;
  text-align: center;
}
.hero__disclosure-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.hero__disclosure-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}
.hero__disclosure-link {
  color: var(--ink);
  text-decoration: underline;
}

/* ============================================================
   2. INTRO ("What Is X?")
   ============================================================ */
.intro { background: var(--bg-section-alt); }
.intro__title {
  text-align: center;
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 32px;
}
.intro__title-lead   { color: var(--ink); }
.intro__title-accent { color: var(--accent); }
.intro__body {
  max-width: 880px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
}

/* ============================================================
   3. BENEFITS row
   ============================================================ */
.benefits { background: var(--bg-section-alt); }
.benefits__title {
  text-align: center;
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 32px;
}
.benefits__title-lead   { color: var(--ink); }
.benefits__title-accent { color: var(--accent); }
.benefits__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  display: grid;
  gap: 12px;
}
.benefits__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 18px 24px;
}
.benefits__icon {
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.benefits__icon img { width: 24px; height: 24px; }
.benefits__heading {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

/* ============================================================
   4. LOOK FOR cards
   ============================================================ */
.lookfor { background: var(--bg-soft); }
.lookfor__title {
  text-align: center;
  font-size: 40px;
  margin: 0 0 24px;
}
.lookfor__lead {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.6;
}
.lookfor__list {
  display: grid;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.lookfor__card {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.lookfor__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lookfor__icon img { width: 32px; height: 32px; }
.lookfor__heading {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--ink);
}
.lookfor__copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}

/* ============================================================
   5. AVOID cards
   ============================================================ */
.avoid { background: var(--bg-section-alt); }
.avoid__title {
  text-align: center;
  font-size: 40px;
  color: var(--warn);
  margin: 0 0 32px;
}
.avoid__list {
  display: grid;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.avoid__card {
  background: var(--warn-bg);
  border-radius: 10px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.avoid__icon { display: inline-flex; align-items: center; justify-content: center; }
.avoid__icon img { width: 32px; height: 32px; }
.avoid__heading { font-size: 20px; margin: 0 0 8px; color: var(--ink); }
.avoid__copy    { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink); }

/* ============================================================
   6. RANKED PRODUCT card
   ============================================================ */
.ranked {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 32px;
  margin: 24px auto;
  max-width: 1080px;
  position: relative;
}
.ranked--featured {
  border: 2px solid var(--rule);
  padding: 40px;
}
/* Whole ranked-section sits on the soft bg. We use a wrapper class
   .ranked-band that page templates wrap around the cards. */
.ranked-band { background: var(--bg-soft); padding: 64px 0; }

.ranked__ribbon {
  position: absolute;
  top: -8px;
  right: 24px;
  width: 64px;
  height: 80px;
}
.ranked__ribbon img {
  width: 64px;
  height: 80px;
  display: block;
}
.ranked__ribbon-rank {
  position: absolute;
  top: 22px;
  left: 0;
  width: 64px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
}

.ranked__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-right: 80px;
}
.ranked__title {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 4px;
  color: var(--ink);
}
.ranked__num     { color: var(--ink); }
.ranked__footnote {
  font-size: 14px;
  vertical-align: super;
  margin-left: 4px;
  color: var(--accent);
}
.ranked__brand {
  margin: 0;
  font-size: 22px;
  color: var(--ink);
}
.ranked__brand-name { color: var(--accent); font-weight: 700; }

.ranked__sponsored {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
  padding-top: 8px;
}
.ranked__sponsored-info { width: 14px; height: 14px; }

/* Triplet row: image / score / grade */
.ranked__triplet {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.ranked__panel {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ranked__panel--image img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
}
.ranked__panel-label {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-align: center;
}

.ranked__grade {
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
.ranked__grade--a  { color: var(--grade-a); }
.ranked__grade--b  { color: var(--grade-b); }
.ranked__grade--cd { color: var(--grade-cd); }

/* Pair row: pros-cons + bottom line */
.ranked__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.ranked__panel--proscons,
.ranked__panel--bottom {
  align-items: stretch;
  text-align: left;
}
.ranked__panel--bottom {
  flex-direction: column;
}
.ranked__panel--bottom p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.ranked__pros, .ranked__cons {
  width: 100%;
}
.ranked__pros { margin-bottom: 16px; }

.ranked__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.ranked__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  color: var(--ink);
}
.ranked__list-icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}
.ranked__list--cons li { color: var(--ink); }

/* CTA pill */
.ranked__cta-row {
  text-align: center;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  min-height: 56px;
  transition: background-color 120ms ease;
}
.cta:hover { text-decoration: none; }
.cta--shop  { background: var(--cta-shop); }
.cta--shop:hover  { background: var(--cta-shop-deep); }
.cta--learn { background: var(--accent); }
.cta--learn:hover { background: var(--accent-deep); }
.ranked__cta-chevron { width: 18px; height: 18px; filter: brightness(0) invert(1); }

/* ============================================================
   SCORE RING
   ============================================================ */
.score-ring {
  width: 180px;
  height: 180px;
  display: block;
}
.score-ring__bg  { stroke: currentColor; opacity: 0.1; }
.score-ring__arc { stroke: currentColor; }
.score-ring__value {
  font-family: var(--font-sans);
  font-size: 60px;
  font-weight: 700;
  fill: var(--ink);
}
.score-ring__suffix {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  fill: var(--ink-soft);
}
.score-ring--a  { color: var(--grade-a); }
.score-ring--b  { color: var(--grade-b); }
.score-ring--cd { color: var(--grade-cd); }

/* ============================================================
   COMPARISON TABLE (Option A only)
   ============================================================ */
.compare { background: var(--bg-soft); }
.compare__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 32px;
}
.compare__scroll { overflow-x: auto; }
.compare__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  font-size: 15px;
}
.compare__table th,
.compare__table td {
  padding: 16px 14px;
  text-align: left;
  vertical-align: top;
}
.compare__table thead th {
  background: var(--ink);
  color: var(--ink-on-dark);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare__table tbody tr:nth-child(odd)  { background: var(--bg-section-alt); }
.compare__table tbody tr:nth-child(even) { background: var(--bg-soft); }
.compare__table tbody th {
  font-weight: 700;
  color: var(--ink);
}
.compare__score { font-weight: 700; }
.compare__grade { font-weight: 700; font-size: 18px; }
.compare__grade--a  { color: var(--grade-a); }
.compare__grade--b  { color: var(--grade-b); }
.compare__grade--cd { color: var(--grade-cd); }

/* ============================================================
   7. CLOSING block
   ============================================================ */
.closing { background: var(--bg-section-alt); }
.closing__inner {
  border: 2px solid var(--rule);
  border-radius: 12px;
  padding: 40px;
  background: var(--bg-card);
}
.closing__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 32px;
}
.closing__title-lead   { color: var(--ink); }
.closing__title-accent { color: var(--accent); }
.closing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.closing__image img {
  max-height: 360px;
  width: auto;
  margin: 0 auto;
}
.closing__copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 16px;
}
/* Verdict balance bullets — Option A only. List sits between the
   "what it does well is balance:" lead and the practical/reason recap. */
.closing__bullets {
  list-style: disc;
  padding: 0 0 0 22px;
  margin: 0 0 16px;
  color: var(--ink);
}
.closing__bullets li {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 6px;
}
.closing__trust {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.closing__trust li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  max-width: 110px;
}
.closing__trust li img { width: 40px; height: 40px; margin-bottom: 8px; }
.closing__cta-row {
  text-align: center;
  margin-top: 32px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-soft); }
.faq__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 32px;
}
.faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq__item {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 16px 24px;
}
.faq__question {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+";
  float: right;
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
}
.faq__item[open] .faq__question::after { content: "−"; }
.faq__answer {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.faq__answer p { margin: 0; }

/* ============================================================
   LEGAL pages
   ============================================================ */
.legal { background: var(--bg-section-alt); padding: 48px 0; }
.legal__inner h1 {
  font-size: 36px;
  margin: 0 0 24px;
}
.legal__inner h2 {
  font-size: 22px;
  margin: 24px 0 12px;
}
.legal__inner p,
.legal__inner li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--footer-bg);
  color: var(--ink-on-dark);
  padding: 48px 0;
  margin-top: 48px;
}
.site-footer__links {
  text-align: center;
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-on-dark);
}
.site-footer__links a {
  color: var(--ink-on-dark);
  text-decoration: none;
  margin: 0 6px;
}
.site-footer__links a:hover { text-decoration: underline; }
.site-footer__disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  margin: 0 auto 12px;
  max-width: 880px;
}
.site-footer__disclaimer a { color: var(--ink-on-dark); text-decoration: underline; }

/* ============================================================
   MOBILE — single breakpoint at 640px.
   Ranked product card collapses to a 2-col hybrid:
     row A: image + score (side by side)
     row B: grade (full width)
     row C: pros/cons (full width)
     row D: bottom line (full width)
     row E: CTA pill
   ============================================================ */
@media (max-width: 880px) {
  .closing__grid { grid-template-columns: 1fr; }
  .closing__trust { justify-content: center; }
}

@media (max-width: 640px) {
  section { padding: 48px 0; }
  .container,
  .hero__inner,
  .intro__inner,
  .benefits__inner,
  .lookfor__inner,
  .avoid__inner,
  .compare__inner,
  .closing__inner,
  .faq__inner,
  .legal__inner,
  .site-footer__inner {
    padding: 0 16px;
  }

  .hero { padding: 48px 0; }
  .hero__title { font-size: 32px; }
  .hero__subtitle { font-size: 16px; }
  .intro__title,
  .benefits__title,
  .lookfor__title,
  .avoid__title,
  .compare__title,
  .closing__title,
  .faq__title { font-size: 28px; }

  .ranked, .ranked--featured { padding: 24px; }

  /* Triplet → hybrid: image + score in row 1, grade full width in row 2. */
  .ranked__triplet {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "image score"
      "grade grade";
  }
  .ranked__panel--image { grid-area: image; }
  .ranked__panel--score { grid-area: score; }
  .ranked__panel--grade { grid-area: grade; }

  .ranked__pair { grid-template-columns: 1fr; }
  .ranked__title { font-size: 28px; }
  .ranked__brand { font-size: 18px; }
  .ranked__grade { font-size: 72px; }

  .ranked__header {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }
  .ranked__ribbon { right: 16px; top: -8px; }

  .closing__inner { padding: 28px 20px; }
  .closing__title { font-size: 26px; }

  .lookfor__card,
  .avoid__card { padding: 20px; gap: 14px; }

  .compare__table { font-size: 13px; }
  .compare__table th, .compare__table td { padding: 10px 8px; }
}

/* ============================================================
   MD-FAITHFUL SECTIONS (Option A only)
   ----------------------------------------------------------------
   Components introduced by the rewrite from docs/gluco renu seo.md.
   Each section uses tokens from the :root block above — no new
   palette values. Backgrounds alternate soft/white through the
   page so adjacent bands don't run into each other.
   ============================================================ */

.glance__inner,
.whatis__inner,
.howitworks__inner,
.ingredients__inner,
.bullet-section__inner,
.compare-md__inner,
.breakdown__inner,
.practical__inner,
.proscons__inner,
.wheretobuy__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 1. Glance ---------- */
.glance { background: var(--bg-section-alt); }
.glance__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 24px;
  color: var(--ink);
}
.glance__lead,
.glance__intro,
.glance__close {
  max-width: 880px;
  margin: 0 auto 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}
.glance__intro {
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 16px;
}
.glance__list {
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 28px 32px;
  background: var(--bg-soft);
  border-radius: 10px;
  list-style: none;
  display: grid;
  gap: 12px;
}
.glance__item { font-size: 16px; line-height: 1.5; color: var(--ink); }
.glance__label { font-weight: 700; color: var(--ink); }
.glance__value { color: var(--ink); }
.glance__close { font-style: italic; color: var(--ink-soft); }
.glance__hero {
  margin: 0 auto 24px;
  max-width: 340px;
  text-align: center;
}
.glance__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: var(--bg-card);
}

/* ---------- 2. WhatIs ---------- */
.whatis { background: var(--bg-soft); }
.whatis__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 24px;
}
.whatis__title-lead   { color: var(--ink); }
.whatis__title-accent { color: var(--accent); }
.whatis__para {
  max-width: 880px;
  margin: 0 auto 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}
.whatis__list {
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 24px 32px;
  background: var(--bg-card);
  border-radius: 10px;
  list-style: disc inside;
  display: grid;
  gap: 8px;
  text-align: left;
}
.whatis__list li { font-size: 16px; line-height: 1.6; color: var(--ink); }

/* ---------- 3. HowItWorks ---------- */
.howitworks { background: var(--bg-section-alt); }
.howitworks__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 16px;
}
.howitworks__title-lead   { color: var(--ink); }
.howitworks__title-accent { color: var(--accent); }
.howitworks__lead,
.howitworks__close {
  max-width: 880px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}
.howitworks__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1024px;
  margin: 0 auto 24px;
}
.howitworks__card {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 28px 24px;
}
.howitworks__heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.howitworks__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* ---------- 4. Ingredients ---------- */
.ingredients { background: var(--bg-soft); }
.ingredients__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 16px;
}
.ingredients__title-lead   { color: var(--ink); }
.ingredients__title-accent { color: var(--accent); }
.ingredients__lead {
  max-width: 880px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}
.ingredients__panel {
  margin: 0 auto 28px;
  max-width: 320px;
  text-align: center;
}
.ingredients__panel-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: var(--bg-card);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.ingredients__panel-caption {
  margin: 10px auto 0;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.4;
}
.ingredients__group {
  text-align: center;
  font-size: 22px;
  color: var(--ink);
  margin: 24px 0 16px;
}
.ingredients__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1024px;
  margin: 0 auto 32px;
}
.ingredients__card {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 24px 28px;
}
.ingredients__heading {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--ink);
}
.ingredients__body,
.ingredients__link-lead {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.ingredients__link-row { margin: 0; font-size: 14px; word-break: break-all; }
.ingredients__link-row a { color: var(--accent); text-decoration: underline; }

.ingredients__take {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 28px 32px;
  max-width: 880px;
  margin: 0 auto;
}
.ingredients__take-heading {
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 12px;
}
.ingredients__take-lead,
.ingredients__take-mid,
.ingredients__take-close {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 12px;
}
.ingredients__take-list {
  margin: 0 0 12px;
  padding-left: 1.25em;
  display: grid;
  gap: 6px;
}
.ingredients__take-list li { font-size: 16px; line-height: 1.5; color: var(--ink); }

/* ---------- 5. BulletSection (used 4×) ---------- */
.bullet-section--neutral { background: var(--bg-section-alt); }
.bullet-section--warn    { background: var(--bg-section-alt); }
.bullet-section__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 16px;
}
.bullet-section--warn .bullet-section__title { color: var(--warn); }
.bullet-section--neutral .bullet-section__title { color: var(--ink); }
.bullet-section__title-lead { color: inherit; }
.bullet-section__title-accent { color: var(--accent); }
.bullet-section__lead,
.bullet-section__close {
  max-width: 880px;
  margin: 0 auto 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}
.bullet-section__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 16px;
  max-width: 760px;
  display: grid;
  gap: 12px;
}
.bullet-section__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 22px;
  border-radius: 10px;
}
.bullet-section--neutral .bullet-section__item { background: var(--bg-soft); }
.bullet-section--warn    .bullet-section__item { background: var(--warn-bg); }
.bullet-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.bullet-section__icon img { width: 22px; height: 22px; display: block; }
.bullet-section__text { font-size: 16px; line-height: 1.5; color: var(--ink); }
.bullet-section__label { font-weight: 700; color: var(--ink); }
.bullet-section__body  { display: inline-block; margin-top: 4px; color: var(--ink); }

/* ---------- 6. CompareMD ---------- */
.compare-md { background: var(--bg-soft); }
.compare-md__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 16px;
}
.compare-md__title-lead   { color: var(--ink); }
.compare-md__title-accent { color: var(--accent); }
.compare-md__lead {
  max-width: 880px;
  margin: 0 auto 12px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}
.compare-md__intro-list {
  list-style: disc inside;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 600px;
  display: grid;
  gap: 6px;
  font-size: 16px;
  color: var(--ink);
}
.compare-md__scroll { overflow-x: auto; }
.compare-md__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  font-size: 15px;
}
.compare-md__table th,
.compare-md__table td {
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  color: var(--ink);
}
.compare-md__table thead th {
  background: var(--ink);
  color: var(--ink-on-dark);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.compare-md__table tbody tr:nth-child(odd)  { background: var(--bg-section-alt); }
.compare-md__table tbody tr:nth-child(even) { background: var(--bg-soft); }
.compare-md__table tbody th { font-weight: 700; }
.compare-md__thumb-row th {
  background: var(--ink) !important;
  padding: 14px 10px 10px !important;
  text-align: center !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-md__thumb {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
@media (max-width: 640px) {
  .compare-md__thumb { width: 80px; height: 80px; padding: 5px; }
  .compare-md__thumb-row th { padding: 10px 6px 8px !important; }
}

/* ---------- 7. Breakdown ---------- */
.breakdown { background: var(--bg-section-alt); }
.breakdown__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 24px;
}
.breakdown__title-lead   { color: var(--ink); }
.breakdown__title-accent { color: var(--accent); }
.breakdown__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1024px;
  margin: 0 auto;
}
.breakdown__card {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 24px 24px;
}
.breakdown__heading {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--accent);
}
.breakdown__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* ---------- 8. Practical ---------- */
.practical { background: var(--bg-soft); }
.practical__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 16px;
}
.practical__title-lead   { color: var(--ink); }
.practical__title-accent { color: var(--accent); }
.practical__lead {
  max-width: 880px;
  margin: 0 auto 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}
.practical__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 720px;
  display: grid;
  gap: 12px;
}
.practical__list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  background: var(--bg-card);
  border-radius: 10px;
  padding: 16px 22px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.practical__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.practical__icon img { width: 22px; height: 22px; }
.practical__close {
  max-width: 880px;
  margin: 0 auto 12px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}
.practical__close--emphasis { font-weight: 700; }

/* ---------- 9. ProsCons ---------- */
.proscons { background: var(--bg-section-alt); }
.proscons__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 24px;
}
.proscons__title-lead   { color: var(--ink); }
.proscons__title-accent { color: var(--accent); }
.proscons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.proscons__col {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 28px 32px;
}
.proscons__col--cons { background: var(--warn-bg); }
.proscons__heading {
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.proscons__col--cons .proscons__heading { color: var(--warn); }
.proscons__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.proscons__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.proscons__icon { width: 20px; height: 20px; margin-top: 2px; }

/* ---------- 10. WhereToBuy CTA ---------- */
.wheretobuy { background: var(--bg-soft); }
.wheretobuy__title {
  text-align: center;
  font-size: 36px;
  margin: 0 0 16px;
}
.wheretobuy__title-lead   { color: var(--ink); }
.wheretobuy__title-accent { color: var(--accent); }
.wheretobuy__lead,
.wheretobuy__close {
  max-width: 880px;
  margin: 0 auto 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}
.wheretobuy__cta-row {
  text-align: center;
  margin: 24px 0;
}

/* ============================================================
   MOBILE — extends the existing 640px breakpoint above.
   New section grids collapse to single column, headings shrink.
   ============================================================ */
@media (max-width: 880px) {
  .howitworks__list,
  .ingredients__list,
  .breakdown__list { grid-template-columns: 1fr; }
  .proscons__grid  { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .glance__inner,
  .whatis__inner,
  .howitworks__inner,
  .ingredients__inner,
  .bullet-section__inner,
  .compare-md__inner,
  .breakdown__inner,
  .practical__inner,
  .proscons__inner,
  .wheretobuy__inner {
    padding: 0 16px;
  }
  .glance__title,
  .whatis__title,
  .howitworks__title,
  .ingredients__title,
  .bullet-section__title,
  .compare-md__title,
  .breakdown__title,
  .practical__title,
  .proscons__title,
  .wheretobuy__title { font-size: 28px; }

  .glance__list,
  .whatis__list,
  .ingredients__take,
  .proscons__col,
  .ingredients__card { padding: 20px; }

  .compare-md__table { font-size: 13px; }
  .compare-md__table th,
  .compare-md__table td { padding: 10px 8px; }
}
