/* ==========================================================================
   GlycoBalance — Design System
   Original palette: deep forest teal + warm amber, warm paper neutrals.
   Typography: Fraunces (display serif) + Inter (body/UI).
   ========================================================================== */

:root {
  /* Color: core */
  --forest-950: #0b2420;
  --forest-900: #0e2f28;
  --forest-800: #123c33;
  --forest-700: #175042;
  --forest-600: #1f6552;
  --forest-500: #2c8069;
  --forest-400: #4a9d81;
  --mint-100: #e7f3ec;
  --mint-50: #f2f8f4;

  --amber-600: #b5750f;
  --amber-500: #d99323;
  --amber-400: #eaa93c;
  --amber-300: #f2c169;
  --amber-100: #fbeed0;

  --paper-0: #fffdf9;
  --paper-50: #fbf7ef;
  --paper-100: #f5efe1;

  --ink-900: #1b201d;
  --ink-700: #38423c;
  --ink-500: #5c6960;
  --ink-300: #8b968c;
  --ink-100: #d9e0da;

  --red-600: #b3432f;

  /* Semantic */
  --color-bg: var(--paper-0);
  --color-bg-alt: var(--paper-50);
  --color-bg-deep: var(--forest-900);
  --color-text: var(--ink-900);
  --color-text-muted: var(--ink-500);
  --color-text-on-deep: #f2f7f4;
  --color-text-on-deep-muted: #b7c9c0;
  --color-primary: var(--forest-600);
  --color-primary-dark: var(--forest-700);
  --color-accent: var(--amber-500);
  --color-accent-dark: var(--amber-600);
  --color-border: var(--ink-100);
  --color-card-bg: var(--paper-0);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container-w: 1160px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20, 30, 24, 0.06), 0 1px 1px rgba(20,30,24,0.04);
  --shadow-md: 0 8px 24px rgba(15, 40, 32, 0.10);
  --shadow-lg: 0 20px 48px rgba(15, 40, 32, 0.16);
  --sticky-cta-h: 68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}
section { position: relative; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (min-width: 640px) { .container { padding: 0 32px; } }

/* ---------- Typography ---------- */
h1, h2, h3, .h1, .h2, .h3 { font-family: var(--font-display); font-weight: 600; color: var(--color-text); line-height: 1.15; letter-spacing: -0.01em; }
h1, .h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 600; }
h2, .h2 { font-size: clamp(1.65rem, 3.2vw, 2.35rem); }
h3, .h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--color-primary-dark);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--color-accent); border-radius: 2px; }
.lede { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--color-text-muted); line-height: 1.65; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 10px; }
.section-head p { margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: var(--radius-pill); border: none;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  line-height: 1; white-space: nowrap; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-primary {
  background: linear-gradient(180deg, var(--amber-400), var(--amber-500));
  color: var(--forest-950);
  box-shadow: 0 10px 24px rgba(185, 130, 20, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(185, 130, 20, 0.42); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--color-text-on-deep);
  border: 1.5px solid rgba(242, 247, 244, 0.35);
}
.btn-ghost:hover { background: rgba(242, 247, 244, 0.08); }
.btn-outline {
  background: transparent; color: var(--color-primary-dark);
  border: 1.5px solid var(--forest-500);
}
.btn-outline:hover { background: var(--mint-50); }
.btn-block { width: 100%; }
.btn-sm { padding: 12px 22px; font-size: 0.92rem; }
.btn-sub { display: block; margin-top: 10px; font-size: 0.78rem; color: var(--color-text-muted); text-align: center; }
.btn-sub.on-deep { color: var(--color-text-on-deep-muted); }

/* ---------- Top trust bar ---------- */
.trust-bar {
  background: var(--forest-950);
  color: var(--color-text-on-deep-muted);
  font-size: 0.82rem;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}
.trust-bar strong { color: var(--amber-300); font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--forest-800); }
.brand .mark { width: 34px; height: 34px; flex-shrink: 0; }
.main-nav { display: none; }
.main-nav ul { display: flex; gap: 30px; }
.main-nav a { font-size: 0.95rem; font-weight: 600; color: var(--ink-700); transition: color .15s ease; }
.main-nav a:hover { color: var(--forest-700); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn-outline { display: none; }
@media (min-width: 480px) { .header-cta .btn-outline { display: inline-flex; } }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--color-border);
  background: var(--paper-0);
}
.nav-toggle svg { width: 20px; height: 20px; }
@media (min-width: 900px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--color-border);
  background: var(--paper-0);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; padding: 10px 20px 18px; }
.mobile-nav a { display: block; padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--color-border); }
@media (min-width: 900px) { .mobile-nav { display: none !important; } }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--mint-50) 0%, var(--paper-0) 72%); padding: 52px 0 60px; overflow: hidden; }
.hero .container { display: grid; gap: 40px; align-items: center; }
.hero-copy .eyebrow { margin-bottom: 16px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--forest-600); }
.hero-sub { font-size: 1.08rem; color: var(--ink-700); max-width: 540px; margin-bottom: 26px; }
.hero-points { display: grid; gap: 12px; margin-bottom: 30px; }
.hero-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.96rem; font-weight: 600; color: var(--ink-900); }
.hero-points svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--forest-600); margin-top: 1px; }
.hero-cta-row { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--color-border); }
.hero-trust-row img { height: 40px; width: auto; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual .badge-float {
  position: absolute; top: 10px; right: 6px; background: var(--paper-0); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 10px 14px; display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; color: var(--forest-700);
}
.hero-visual img { border-radius: var(--radius-lg); }
.hero-visual .glow {
  position: absolute; inset: 8% 14%; background: radial-gradient(circle, rgba(76,157,129,0.28), transparent 65%);
  filter: blur(30px); z-index: -1;
}
@media (min-width: 860px) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; }
  .hero-cta-row { flex-direction: row; align-items: center; gap: 18px; }
}

/* ---------- Benefit strip ---------- */
.benefit-strip { padding: 44px 0; background: var(--forest-900); color: var(--color-text-on-deep); }
.benefit-grid { display: grid; gap: 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.benefit-item .icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(234, 169, 60, 0.16);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-item .icon svg { width: 22px; height: 22px; color: var(--amber-300); }
.benefit-item h3 { font-family: var(--font-body); font-size: 0.98rem; font-weight: 700; color: var(--color-text-on-deep); }
.benefit-item p { font-size: 0.86rem; color: var(--color-text-on-deep-muted); margin-top: 4px; }
@media (min-width: 720px) { .benefit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- Generic section paddings ---------- */
.section { padding: 76px 0; }
.section-alt { background: var(--paper-50); }
.section-deep { background: var(--forest-950); color: var(--color-text-on-deep); }
.section-deep h2, .section-deep h3 { color: var(--color-text-on-deep); }
.section-deep .lede, .section-deep p { color: var(--color-text-on-deep-muted); }

/* ---------- Problem / Desire ---------- */
.flow-steps { display: grid; gap: 14px; margin: 30px 0 36px; }
.flow-steps li {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px;
  background: var(--paper-0); border: 1px solid var(--color-border); border-radius: var(--radius-md);
}
.flow-steps .num {
  width: 32px; height: 32px; border-radius: 999px; background: var(--forest-600); color: #fff;
  font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.flow-steps h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 2px; }
.flow-steps p { font-size: 0.88rem; color: var(--color-text-muted); }

/* ---------- Two-col intro ---------- */
.split { display: grid; gap: 40px; align-items: center; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-reverse .split-media { order: -1; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split-reverse .split-media { order: 2; }
}
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--radius-pill);
  background: var(--mint-100); color: var(--forest-700); font-size: 0.82rem; font-weight: 700;
}

/* ---------- Ingredient cards ---------- */
.ingredient-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-top: 34px; }
.ingredient-card {
  background: var(--paper-0); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.ingredient-card .tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-600); }
.ingredient-card h3 { margin-top: 6px; font-size: 1.05rem; }
.ingredient-card .role { margin-top: 10px; font-size: 0.86rem; color: var(--color-text-muted); }
.ingredient-card .role strong { display: block; color: var(--ink-900); font-size: 0.8rem; font-weight: 700; margin-bottom: 2px; }
.ingredient-card .role + .role { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--color-border); }
.research-note {
  margin-top: 34px; padding: 20px 22px; border-radius: var(--radius-md); background: var(--amber-100);
  border: 1px solid var(--amber-300); font-size: 0.88rem; color: var(--forest-900);
}
.research-note strong { color: var(--forest-900); }

/* ---------- How it works ---------- */
.works-grid { display: grid; gap: 26px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 40px; counter-reset: step; }
.works-item { text-align: center; }
.works-item .step-badge {
  width: 56px; height: 56px; border-radius: 999px; background: var(--forest-600); color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem;
}
.works-item h3 { font-size: 1rem; margin-bottom: 6px; }
.works-item p { font-size: 0.86rem; color: var(--color-text-muted); }
.works-arrow { display: none; color: var(--ink-300); }
@media (min-width: 720px) { .works-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- Comparison / stands out ---------- */
.compare-table-wrap { overflow-x: auto; margin-top: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--paper-0); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--color-border); }
.compare-table thead th { background: var(--forest-900); color: #fff; font-weight: 700; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--ink-900); width: 34%; }
.compare-table .yes { color: var(--forest-600); font-weight: 700; }
.compare-table .yes svg { width: 16px; height: 16px; vertical-align: -3px; margin-right: 5px; }

/* ---------- Value / pricing ---------- */
.pricing-grid { display: grid; gap: 22px; margin-top: 40px; }
.price-card {
  position: relative; background: var(--paper-0); border: 1.5px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center; transition: transform .15s ease, box-shadow .15s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--amber-400); box-shadow: var(--shadow-lg); }
.price-card .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber-500); color: var(--forest-950); font-size: 0.72rem; font-weight: 800;
  padding: 6px 16px; border-radius: var(--radius-pill); letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap;
}
.price-card .plan-name { font-weight: 700; font-size: 0.95rem; color: var(--forest-700); }
.price-card .plan-supply { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 2px; }
.price-card img { margin: 18px auto; max-height: 150px; width: auto; }
.price-card .price-per { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--forest-900); }
.price-card .price-per span { font-size: 1rem; font-weight: 600; color: var(--ink-500); }
.price-card .price-total { font-size: 0.84rem; color: var(--color-text-muted); margin: 4px 0 18px; }
.price-card .price-total del { color: var(--ink-300); margin-right: 6px; }
.value-note { margin-top: 26px; text-align: center; font-size: 0.82rem; color: var(--color-text-muted); }
@media (min-width: 860px) { .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---------- Trust grid ---------- */
.trust-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 36px; }
.trust-item { background: var(--paper-0); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px; min-width: 0; }
.trust-item img { height: 46px; width: auto; margin-bottom: 14px; }
.trust-item h3 { font-size: 0.98rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.85rem; color: var(--color-text-muted); }
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- Guarantee ---------- */
.guarantee-panel {
  display: grid; gap: 30px; align-items: center; background: var(--mint-50); border: 1px solid var(--mint-100);
  border-radius: var(--radius-lg); padding: 40px 30px;
}
.guarantee-panel img { width: 130px; margin: 0 auto; }
@media (min-width: 760px) { .guarantee-panel { grid-template-columns: 160px 1fr; padding: 44px 46px; } }

/* ---------- Objections ---------- */
.objection-grid { display: grid; gap: 16px; margin-top: 34px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.objection-item { background: var(--paper-0); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 20px 22px; }
.objection-item h3 { font-size: 0.96rem; margin-bottom: 8px; display: flex; gap: 8px; }
.objection-item h3 svg { width: 18px; height: 18px; color: var(--forest-600); flex-shrink: 0; margin-top: 2px; }
.objection-item p { font-size: 0.86rem; color: var(--color-text-muted); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 30px; border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  background: none; border: none; padding: 20px 4px; text-align: left; font-weight: 700; font-size: 0.98rem; color: var(--ink-900);
}
.faq-q .icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px; border: 1.5px solid var(--forest-500); display: flex; align-items: center; justify-content: center; transition: transform .2s ease; }
.faq-q .icon svg { width: 12px; height: 12px; color: var(--forest-600); }
.faq-item[data-open="true"] .faq-q .icon { transform: rotate(45deg); background: var(--forest-600); }
.faq-item[data-open="true"] .faq-q .icon svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 30px 20px 4px; font-size: 0.9rem; color: var(--color-text-muted); }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(160deg, var(--forest-950), var(--forest-800)); color: #fff; padding: 70px 0; text-align: center; }
.final-cta .container { max-width: 720px; }
.final-cta img { width: 160px; margin: 0 auto 26px; }
.final-cta h2 { color: #fff; }
.final-cta p { color: var(--color-text-on-deep-muted); margin-top: 16px; }
.final-cta .btn-primary { margin-top: 30px; }

/* ---------- Disclosure ---------- */
.disclosure { background: var(--paper-100); padding: 30px 0; font-size: 0.8rem; color: var(--color-text-muted); }
.disclosure p + p { margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-950); color: var(--color-text-on-deep-muted); padding: 50px 0 100px; font-size: 0.86rem; }
.footer-grid { display: grid; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.footer-brand .mark { width: 28px; height: 28px; }
.footer-cols { display: grid; gap: 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-cols h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.footer-cols li { margin-bottom: 8px; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.78rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.2fr 2fr; } .footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--paper-0); border-top: 1px solid var(--color-border);
  box-shadow: 0 -6px 20px rgba(15,40,32,0.12);
  padding: 10px 16px; display: flex; gap: 10px; align-items: center;
  transform: translateY(100%); transition: transform .25s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .info { flex: 1; min-width: 0; }
.sticky-cta .info strong { display: block; font-size: 0.82rem; color: var(--ink-900); }
.sticky-cta .info span { font-size: 0.72rem; color: var(--color-text-muted); }
.sticky-cta .btn { padding: 12px 20px; font-size: 0.88rem; }
@media (min-width: 900px) { .sticky-cta { display: none !important; } }
body.has-sticky-cta { padding-bottom: var(--sticky-cta-h); }
@media (min-width: 900px) { body.has-sticky-cta { padding-bottom: 0; } }

/* ---------- Blog ---------- */
.breadcrumb { font-size: 0.8rem; color: var(--color-text-muted); padding: 18px 0; }
.breadcrumb a { color: var(--forest-700); font-weight: 600; }
.breadcrumb span[aria-hidden] { margin: 0 6px; color: var(--ink-300); }
.blog-hub-hero { background: var(--mint-50); padding: 56px 0 44px; text-align: center; }
.blog-hub-hero .section-head { max-width: 640px; margin: 0 auto; }
.blog-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 10px; }
.blog-card { background: var(--paper-0); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.blog-card .tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--amber-600); }
.blog-card h3 { font-size: 1.1rem; margin: 8px 0 10px; }
.blog-card p { font-size: 0.88rem; color: var(--color-text-muted); flex: 1; }
.blog-card .read-more { margin-top: 14px; font-size: 0.86rem; font-weight: 700; color: var(--forest-700); }
.article-header { padding: 20px 0 10px; max-width: 760px; margin: 0 auto; }
.article-header .eyebrow { margin-bottom: 14px; }
.article-header h1 { margin-bottom: 12px; }
.article-meta { font-size: 0.82rem; color: var(--color-text-muted); margin-top: 10px; }
.article-body { max-width: 760px; margin: 30px auto 0; padding-bottom: 20px; }
.article-body h2 { margin-top: 40px; margin-bottom: 14px; font-size: 1.5rem; }
.article-body h3 { margin-top: 26px; margin-bottom: 10px; }
.article-body p { margin-top: 14px; color: var(--ink-700); font-size: 1rem; }
.article-body ul, .article-body ol { margin-top: 14px; padding-left: 22px; list-style: disc; color: var(--ink-700); }
.article-body ol { list-style: decimal; }
.article-body li { margin-top: 8px; }
.article-body li::marker { color: var(--forest-500); }
.callout {
  margin: 32px 0; padding: 22px 24px; border-radius: var(--radius-md); background: var(--mint-50);
  border: 1px solid var(--mint-100);
}
.callout h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 800; color: var(--forest-800); margin-bottom: 6px; }
.callout p { margin-top: 0; font-size: 0.9rem; color: var(--ink-700); }
.callout a { color: var(--forest-700); font-weight: 700; text-decoration: underline; }
.article-disclaimer { margin-top: 36px; padding: 16px 20px; border-left: 3px solid var(--amber-400); background: var(--paper-50); font-size: 0.82rem; color: var(--color-text-muted); }
.related-section { background: var(--paper-50); padding: 56px 0; margin-top: 20px; }
.related-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 26px; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.badge-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.badge-row img { height: 44px; width: auto; }
