@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,700&display=swap');

/* ==========================================================================
   LANGUAGE SWITCHER — bandeirinha fixa no canto sup. direito
   ========================================================================== */
.lang-switcher {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  text-decoration: none;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  user-select: none;
}
.lang-switcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}
.lang-switcher:active { transform: translateY(0); }
.lang-switcher .lang-flag {
  font-size: 18px;
  line-height: 1;
  filter: saturate(1.1);
}
.lang-switcher .lang-code {
  letter-spacing: 0.08em;
}

/* Dark theme variant — when not on supp-page */
body:not(.supp-page) .lang-switcher {
  background: rgba(26, 32, 40, 0.94);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e8edf2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
body:not(.supp-page) .lang-switcher:hover {
  background: #1a2028;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

@media (max-width: 700px) {
  .lang-switcher {
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
  }
  .lang-switcher .lang-flag { font-size: 16px; }
}

/* ==========================================================================
   SITE HEADER — minimalist top bar (plain text links + lang switcher)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  /* 3-column grid: home (left), nav (center), lang (right) */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

/* Plain text "Home" link — traditional header style */
.site-nav-home {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 0.18s ease;
  justify-self: start;
}
.site-nav-home:hover { opacity: 0.55; }

/* Center nav — main page links, perfectly centered on the page */
.site-nav-main {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-self: center;
}
.site-nav-main .site-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 0.18s ease;
  white-space: nowrap;
}
.site-nav-main .site-nav-link:hover { opacity: 0.55; }

/* Language switcher slot — right column */
.site-header-lang {
  display: inline-flex;
  align-items: center;
  justify-self: end;
}

/* When .lang-switcher is injected into the header, render as plain text
   + flag (no pill border) — minimalist, matching the "Home" link style. */
.site-header .lang-switcher,
.site-header .lang-switcher:hover {
  position: static;
  top: auto;
  right: auto;
  z-index: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  text-decoration: none;
  transform: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: opacity 0.18s ease;
}
.site-header .lang-switcher:hover {
  opacity: 0.55;
}
.site-header .lang-switcher .lang-flag { font-size: 18px; line-height: 1; }
.site-header .lang-switcher .lang-code { letter-spacing: 0.05em; }

/* Dark theme variant — for pages without body.supp-page */
body:not(.supp-page) .site-header {
  background: rgba(15, 20, 25, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
body:not(.supp-page) .site-nav-home,
body:not(.supp-page) .site-nav-main .site-nav-link,
body:not(.supp-page) .site-header .lang-switcher,
body:not(.supp-page) .site-header .lang-switcher:hover {
  color: #e8edf2;
}

/* Tablet — narrower gap between center nav links */
@media (max-width: 1000px) {
  .site-nav-main { gap: 18px; }
  .site-nav-main .site-nav-link { font-size: 13px; }
}

/* Mobile — hide center nav, keep Home + lang only.
   Home link → landing page where all main links are visible. */
@media (max-width: 760px) {
  .site-nav-main { display: none; }
  .site-header-inner {
    grid-template-columns: 1fr 1fr;
    padding: 12px 20px;
  }
  .site-nav-home,
  .site-header .lang-switcher { font-size: 13px; }
  .site-header .lang-switcher .lang-flag { font-size: 16px; }
}

:root {
  --bg: #0f1419;
  --bg-card: #1a2028;
  --bg-card-hover: #222933;
  --text: #e8edf2;
  --text-dim: #9aa5b1;
  --text-muted: #6b7785;
  --accent: #4ade80;
  --accent-2: #60a5fa;
  --border: #2a3440;
  --border-light: #374252;
  --evidence-a: #22c55e;
  --evidence-b: #84cc16;
  --evidence-c: #eab308;
  --evidence-d: #f97316;
  --evidence-e: #ef4444;
  --shadow: 0 4px 12px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--accent-2); }

/* HEADER (index hero) */
header.hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74, 222, 128, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #151b22 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 96px 24px 56px;
  text-align: center;
  position: relative;
}
header.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
header.hero h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  line-height: 1.05;
  background: linear-gradient(135deg, #4ade80 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
header.hero .subtitle {
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}
header.hero .meta {
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 12px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* PAGE HEADER (subpages) */
header.page-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  background: linear-gradient(180deg, #1a2028 0%, transparent 100%);
}
header.page-header .container-narrow {
  max-width: 900px;
  margin: 0 auto;
}
.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 12px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--accent); }
header.page-header h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
header.page-header .alias {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 16px;
  font-style: italic;
}
header.page-header .subtitle {
  color: var(--text-dim);
  font-size: 15px;
  margin-top: 8px;
}

/* CONTAINERS */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}

/* SECTIONS */
section.category { margin-bottom: 40px; }
section.category h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
section.category > p {
  color: var(--text-dim);
  margin-bottom: 18px;
  font-size: 14.5px;
}

/* SUPPLEMENT CARD */
article.supp {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 20px;
  transition: border-color 0.15s;
}
article.supp:hover { border-color: var(--border-light); }
article.supp h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
article.supp .alias {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 14px;
  font-style: italic;
}

/* BADGES */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 16px;
}
.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.badge-a { background: rgba(34,197,94,0.15); color: var(--evidence-a); border: 1px solid rgba(34,197,94,0.3); }
.badge-b { background: rgba(132,204,22,0.15); color: var(--evidence-b); border: 1px solid rgba(132,204,22,0.3); }
.badge-c { background: rgba(234,179,8,0.15); color: var(--evidence-c); border: 1px solid rgba(234,179,8,0.3); }
.badge-d { background: rgba(249,115,22,0.15); color: var(--evidence-d); border: 1px solid rgba(249,115,22,0.3); }
.badge-e { background: rgba(239,68,68,0.15); color: var(--evidence-e); border: 1px solid rgba(239,68,68,0.3); }
.badge-tag {
  background: rgba(96,165,250,0.12);
  color: var(--accent-2);
  border: 1px solid rgba(96,165,250,0.25);
}
.badge-chronic { background: rgba(168,85,247,0.15); color: #a855f7; border: 1px solid rgba(168,85,247,0.3); }
.badge-acute { background: rgba(236,72,153,0.15); color: #ec4899; border: 1px solid rgba(236,72,153,0.3); }

/* SUPP GRID (facts) */
.supp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 16px 0;
  padding: 14px;
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
}
.supp-fact { display: flex; flex-direction: column; gap: 2px; }
.supp-fact .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}
.supp-fact .value {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

article.supp h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 18px 0 8px;
  font-weight: 700;
}
article.supp p { color: var(--text-dim); margin-bottom: 10px; font-size: 14.5px; }
article.supp ul { padding-left: 22px; margin: 8px 0; color: var(--text-dim); font-size: 14.5px; }
article.supp ul li { margin-bottom: 4px; }
article.supp strong { color: var(--text); font-weight: 600; }

/* EVIDENCE LIST */
.evidence-list { list-style: none; padding: 0; margin: 8px 0; }
.evidence-list li {
  padding: 8px 12px;
  background: rgba(96,165,250,0.05);
  border-left: 3px solid var(--accent-2);
  margin-bottom: 6px;
  border-radius: 0 6px 6px 0;
  font-size: 13.5px;
}
.evidence-list li a { color: var(--accent-2); text-decoration: none; font-weight: 500; }
.evidence-list li a:hover { text-decoration: underline; }
.evidence-list .source {
  color: var(--text-muted);
  font-size: 11px;
  margin-left: 6px;
  font-family: 'JetBrains Mono', monospace;
}

/* WARN / TIP */
.warn {
  background: rgba(249,115,22,0.08);
  border-left: 3px solid var(--evidence-d);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  font-size: 13.5px;
  color: #fdba74;
  margin: 10px 0;
}
.tip {
  background: rgba(34,197,94,0.08);
  border-left: 3px solid var(--accent);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  font-size: 13.5px;
  color: #86efac;
  margin: 10px 0;
}

/* LEGEND */
.legend {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 32px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.02) inset;
}
.legend h3 {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.legend-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 24px;
}
.legend-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.legend-item .badge { flex-shrink: 0; margin-top: 1px; }
.legend-item strong { color: var(--text); font-weight: 600; }

/* SUMMARY TABLE */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  margin: 20px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.02) inset, 0 4px 16px rgba(0,0,0,0.15);
}
table.summary {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 1200px;
}
table.summary thead {
  background: rgba(96,165,250,0.06);
  border-bottom: 1px solid var(--border-light);
}
table.summary th {
  text-align: left;
  padding: 16px 14px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  font-weight: 600;
  white-space: nowrap;
}
table.summary td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  vertical-align: top;
  letter-spacing: -0.005em;
}
table.summary tr {
  transition: background 0.12s ease;
}
table.summary tr:hover td { background: rgba(255,255,255,0.025); }
table.summary tr:last-child td { border-bottom: none; }
table.summary td:first-child {
  white-space: nowrap;
}
table.summary td:first-child a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
  letter-spacing: -0.005em;
}
table.summary td:first-child a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}
table.summary td.center { text-align: center; }
table.summary .small { font-size: 12px; color: var(--text-muted); }

/* Produto column — produtos definidos destacados; placeholders muted */
table.summary td.produto {
  font-size: 12.5px;
  color: var(--accent);
  font-weight: 500;
  white-space: nowrap;
  vertical-align: top;
}

/* Sub-produto (alternativa ao produto primário) */
table.summary td .alt {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  font-style: italic;
  opacity: 0.7;
  margin-top: 4px;
}
table.summary td.produto-empty {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 400;
  text-align: center;
}

/* Price columns */
table.summary td.preco {
  font-size: 12.5px;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}
table.summary td.preco-empty {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 400;
}
table.summary td.preco-dose {
  font-size: 12px;
  color: var(--accent);
  white-space: nowrap;
  font-weight: 500;
}

/* Evidence-level summary box — compact, fully centered + distinct total row */
#resumo-evidencia table.summary { min-width: 0; }
#resumo-evidencia table.summary th,
#resumo-evidencia table.summary td {
  text-align: center;
  vertical-align: middle;
}
#resumo-evidencia table.summary tr.evidence-total td {
  border-top: 2px solid var(--border-light);
  background: rgba(96,165,250,0.05);
  color: var(--text);
  font-weight: 700;
}

/* CATEGORY ROW IN TABLE */
.category-row td {
  background: rgba(96,165,250,0.04) !important;
  color: var(--accent-2) !important;
  font-weight: 600;
  padding: 12px 16px !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border) !important;
}
.category-row:first-child td { border-top: none; }
.category-row:hover td { background: rgba(96,165,250,0.04) !important; }

/* CATEGORY SECTION (subtable per group) */
.category-section {
  margin-bottom: 56px;
}
.category-section .category-header {
  margin-bottom: 18px;
}
.category-section .category-header h2 {
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--text);
}
.category-section .category-intro {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
  max-width: 760px;
}

/* FILTER BAR */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  align-items: center;
}
.filter-bar input[type="search"] {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--text);
  font-size: 14px;
  flex: 1;
  min-width: 240px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
  letter-spacing: -0.005em;
}
.filter-bar input[type="search"]::placeholder {
  color: var(--text-muted);
}
.filter-bar input[type="search"]:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.12);
}
.filter-bar .filter-chip {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.filter-bar .filter-chip:hover {
  border-color: var(--text-dim);
  color: var(--text);
  background: var(--bg-card);
}
.filter-bar .filter-chip.active {
  background: rgba(74,222,128,0.12);
  border-color: var(--accent);
  color: var(--accent);
}
.filter-bar .reset-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
  font-weight: 500;
}
.filter-bar .reset-btn:hover {
  color: var(--text);
  border-color: var(--text-dim);
}

/* QUICK LINKS GRID */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.quick-link {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.quick-link::after {
  content: '→';
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--text-muted);
  font-size: 16px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.quick-link:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.quick-link:hover::after {
  transform: translateX(4px);
  color: var(--accent);
}
.quick-link .ql-icon { font-size: 24px; line-height: 1; margin-bottom: 4px; }
.quick-link .ql-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.quick-link .ql-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.45;
  letter-spacing: -0.005em;
}

/* DISCLAIMER */
.disclaimer {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 24px 0;
  color: var(--text-dim);
  font-size: 13.5px;
}
.disclaimer strong { color: #fca5a5; }

/* BREADCRUMB / NAV BETWEEN PAGES */
.page-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.page-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.15s;
  display: inline-block;
}
.page-nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.page-nav .empty { visibility: hidden; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 60px;
}
footer a { color: var(--accent-2); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 600px) {
  header.hero { padding: 40px 20px 30px; }
  .container, .container-narrow { padding: 24px 16px 40px; }
  article.supp { padding: 20px; }
  article.supp h3 { font-size: 19px; }
}

h3.anchor::before {
  content: '';
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}

/* ==========================================================================
   GLOBAL TYPOGRAPHY UPGRADE — Inter font for all pages
   ========================================================================== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

/* ==========================================================================
   EDITORIAL THEME — Supplement detail pages (Maurten-inspired)
   Apply via <body class="supp-page">
   ========================================================================== */
body.supp-page {
  --bg: #fafaf7;
  --bg-card: transparent;
  --bg-card-hover: transparent;
  --text: #1a1a1a;
  --text-dim: #6b6b6b;
  --text-muted: #999;
  --accent: #1a1a1a;
  --accent-2: #2d5f3e;
  --border: #e8e6df;
  --border-light: #f0eee8;
  --evidence-a: #2d5f3e;
  --evidence-b: #4a7c4f;
  --evidence-c: #8b7a3c;
  --evidence-d: #a5612e;
  --evidence-e: #8b3a3a;

  background: var(--bg);
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
  font-feature-settings: 'kern', 'liga', 'calt', 'cv02', 'cv03';
}

/* Header acts as hero (not sticky) — Maurten editorial style */
body.supp-page .page-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 96px;
  position: relative;
}

body.supp-page .page-header .container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

body.supp-page .back-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-block;
  margin-bottom: 64px;
  padding: 6px 0;
  transition: color 0.15s ease;
}

body.supp-page .back-link:hover { color: var(--text); }

body.supp-page .page-header h1 {
  font-family: 'Fraunces', 'Inter', -apple-system, serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}

body.supp-page .page-header h1 .alias {
  display: block;
  font-size: 0.42em;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dim);
  margin-top: 18px;
  letter-spacing: -0.01em;
  font-family: 'Fraunces', serif;
}

body.supp-page .page-header .subtitle {
  font-size: 21px;
  color: var(--text-dim);
  line-height: 1.45;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 580px;
  letter-spacing: -0.005em;
}

/* Main reading column */
body.supp-page main {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px 120px;
}

/* Article container */
body.supp-page article.supp {
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 0;
}

/* Body paragraphs */
body.supp-page article.supp p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 28px;
  color: var(--text);
  letter-spacing: -0.005em;
}

/* Section dividers (h4) */
body.supp-page article.supp h4 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-top: 80px;
  margin-bottom: 24px;
  color: var(--text);
  text-transform: none;
}

body.supp-page article.supp h4:first-of-type {
  margin-top: 56px;
}

/* Lists — clean, no bullets */
body.supp-page article.supp ul {
  list-style: none;
  padding-left: 0;
  margin: 24px 0 32px;
}

body.supp-page article.supp ul li {
  font-size: 17px;
  line-height: 1.6;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  color: var(--text);
}

body.supp-page article.supp ul li:last-child {
  border-bottom: none;
}

body.supp-page article.supp ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  width: 14px;
  height: 1px;
  background: var(--text);
}

body.supp-page article.supp ul li strong {
  color: var(--text);
  font-weight: 700;
}

/* Nested ul (inside warn/tip/li) */
body.supp-page article.supp .warn ul,
body.supp-page article.supp .tip ul {
  margin: 12px 0 0;
}

body.supp-page article.supp .warn ul li,
body.supp-page article.supp .tip ul li {
  padding: 6px 0 6px 16px;
  border-bottom: none;
  font-size: 16px;
}

body.supp-page article.supp .warn ul li::before,
body.supp-page article.supp .tip ul li::before {
  top: 18px;
  width: 8px;
}

/* Badges — minimal hairline pills */
body.supp-page article.supp .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 48px;
}

body.supp-page article.supp .badge {
  background: transparent;
  border: 1px solid;
  border-radius: 0;
  padding: 6px 14px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.supp-page article.supp .badge-a { border-color: var(--evidence-a); color: var(--evidence-a); }
body.supp-page article.supp .badge-b { border-color: var(--evidence-b); color: var(--evidence-b); }
body.supp-page article.supp .badge-c { border-color: var(--evidence-c); color: var(--evidence-c); }
body.supp-page article.supp .badge-d { border-color: var(--evidence-d); color: var(--evidence-d); }
body.supp-page article.supp .badge-e { border-color: var(--evidence-e); color: var(--evidence-e); }
body.supp-page article.supp .badge-tag { border-color: var(--text-dim); color: var(--text-dim); background: transparent; }
body.supp-page article.supp .badge-chronic { border-color: #5d3f7c; color: #5d3f7c; background: transparent; }
body.supp-page article.supp .badge-acute { border-color: #b8447c; color: #b8447c; background: transparent; }

/* Supp-grid: 2-column horizontal info bar */
body.supp-page article.supp .supp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 32px 0 56px;
  background: transparent;
  border-top: 1px solid var(--text);
  border-bottom: 1px solid var(--text);
  padding: 0;
  border-radius: 0;
}

body.supp-page article.supp .supp-fact {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--border);
}

body.supp-page article.supp .supp-fact:nth-child(odd) {
  border-right: 1px solid var(--border);
  padding-right: 24px;
}

body.supp-page article.supp .supp-fact:nth-child(even) {
  padding-left: 24px;
}

body.supp-page article.supp .supp-fact:nth-last-child(-n+2) {
  border-bottom: none;
}

body.supp-page article.supp .supp-fact .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 8px;
}

body.supp-page article.supp .supp-fact .value {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* Tip & warn boxes — minimal, no fill */
/* Standalone .tip (e.g. directly under main, not inside article.supp) on the
   editorial light theme — the base .tip uses a light-green text meant for the
   dark theme, which is illegible on the cream background. Use the site's dark
   forest green for proper contrast while keeping the green identity. */
body.supp-page .tip {
  background: rgba(45, 95, 62, 0.07);
  border-left: 3px solid #2d5f3e;
  color: #235030;
}
body.supp-page .tip strong {
  color: #1c4026;
}

body.supp-page article.supp .tip,
body.supp-page article.supp .warn {
  background: transparent;
  border: none;
  border-left: 2px solid;
  padding: 8px 0 8px 24px;
  margin: 36px 0;
  font-size: 17px;
  line-height: 1.6;
  border-radius: 0;
  color: var(--text);
}

body.supp-page article.supp .tip {
  border-color: var(--evidence-a);
}

body.supp-page article.supp .warn {
  border-color: var(--evidence-d);
}

body.supp-page article.supp .tip strong,
body.supp-page article.supp .warn strong {
  color: var(--text);
  font-weight: 700;
}

/* ============================================================
   MEAL NUTRITION — per-meal macro card in the daily protocol
   ============================================================ */
body.supp-page article.supp .meal-nutrition {
  margin: 18px 0 28px;
  padding: 20px 24px;
  background: rgba(45, 95, 62, 0.05);
  border-left: 3px solid #2d5f3e;
}
body.supp-page article.supp .meal-nutrition .mn-foods {
  /* Meal composition hidden — only the macro summary is shown.
     Remove this display:none to bring the food list back. */
  display: none;
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 16px;
  line-height: 1.55;
  font-family: 'Inter', sans-serif;
}
body.supp-page article.supp .meal-nutrition .mn-foods strong {
  color: #2d5f3e;
  font-weight: 600;
}
body.supp-page article.supp .meal-nutrition .mn-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 14px;
}
body.supp-page article.supp .meal-nutrition .mn-cell {
  display: flex;
  flex-direction: column;
}
body.supp-page article.supp .meal-nutrition .mn-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
body.supp-page article.supp .meal-nutrition .mn-unit {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-top: 5px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
body.supp-page article.supp .meal-nutrition .mn-detail {
  font-size: 12.5px;
  color: var(--text-dim);
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  letter-spacing: 0.005em;
}
/* Daily total — emphasized variant */
body.supp-page article.supp .meal-nutrition.daily-total {
  background: transparent;
  border: 1px solid #2d5f3e;
  border-left: 3px solid #2d5f3e;
  margin-top: 40px;
}
body.supp-page article.supp .meal-nutrition.daily-total .mn-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2d5f3e;
  margin: 0 0 16px;
}
@media (max-width: 600px) {
  body.supp-page article.supp .meal-nutrition .mn-grid { gap: 20px; }
  body.supp-page article.supp .meal-nutrition .mn-num { font-size: 23px; }
}

/* Tables — minimal editorial */
body.supp-page article.supp .table-wrap {
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 32px 0;
  overflow-x: auto;
}

body.supp-page article.supp table.summary {
  font-size: 15px;
  border-collapse: collapse;
  min-width: 0;
  width: 100%;
}

body.supp-page article.supp table.summary thead {
  background: transparent;
  border-bottom: 2px solid var(--text);
}

body.supp-page article.supp table.summary th {
  text-align: left;
  padding: 14px 18px 14px 0;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  font-weight: 600;
}

body.supp-page article.supp table.summary td {
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
  vertical-align: top;
  font-size: 15px;
  font-weight: 400;
}

body.supp-page article.supp table.summary td:first-child {
  font-weight: 600;
  color: var(--text);
}

body.supp-page article.supp table.summary tr:hover td {
  background: transparent;
}

/* ============================================================
   RACE TABLE — intra-race feeding cadence schedule
   (editorial style: more breathing room, clearer row separation,
    subtle phase-coded backgrounds, cumulative cadence model)
   ============================================================ */
body.supp-page article.supp p.race-table-intro {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 760px;
}
body.supp-page article.supp p.race-table-intro em {
  font-style: italic;
  color: var(--text);
}
body.supp-page article.supp table.summary.race-table {
  font-size: 14.5px;
  margin: 20px 0 32px;
  /* Standardize column widths — all columns share table width equally. */
  table-layout: fixed;
  width: 100%;
}
body.supp-page article.supp table.summary.race-table th {
  width: calc(100% / 8); /* 8 columns, evenly distributed */
}

/* Race-strategy page only — the article containing the cadence table
   widens to ~1000px so the table breathes, while text inside (paragraphs,
   list items, headings) keeps the readable 816px max-width. */
body.supp-page main.container-narrow > article:has(.race-table) {
  max-width: 1000px;
}
body.supp-page main.container-narrow > article:has(.race-table) > p,
body.supp-page main.container-narrow > article:has(.race-table) > h4,
body.supp-page main.container-narrow > article:has(.race-table) > ul,
body.supp-page main.container-narrow > article:has(.race-table) > ol {
  max-width: 816px;
}
body.supp-page article.supp .table-wrap:has(.race-table) {
  max-width: 1000px;
  margin-left: 0;
  margin-right: 0;
}

/* Race-table total row — sums cadenced doses across the entered race duration */
body.supp-page article.supp table.summary.race-table tr.race-total-row td {
  background: rgba(96, 165, 250, 0.06);
  border-top: 2px solid var(--text);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding-top: 24px;
  padding-bottom: 24px;
}
body.supp-page article.supp table.summary.race-table tr.race-total-row td:first-child {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0;
}
body.supp-page article.supp table.summary.race-table .race-hours-input {
  width: 48px;
  padding: 4px 6px;
  margin: 0 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--text);
  border-radius: 4px;
  -moz-appearance: textfield;
}
body.supp-page article.supp table.summary.race-table .race-hours-input::-webkit-outer-spin-button,
body.supp-page article.supp table.summary.race-table .race-hours-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.supp-page article.supp table.summary.race-table .race-hours-input:focus {
  outline: 2px solid var(--accent, #60a5fa);
  outline-offset: 1px;
}
/* Visual warning when value exceeds the realistic max (46h) — the HTML5
   max attribute drives the :invalid pseudo-class without blocking input. */
body.supp-page article.supp table.summary.race-table .race-hours-input:invalid {
  border-color: #dc2626;
  color: #dc2626;
}
body.supp-page article.supp table.summary.race-table .race-hours-input:invalid:focus {
  outline-color: #dc2626;
}
body.supp-page article.supp table.summary.race-table th {
  padding: 18px 14px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  border-bottom: 1.5px solid var(--text);
  text-align: center;
  vertical-align: middle;
}
body.supp-page article.supp table.summary.race-table td {
  padding: 22px 14px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
  text-align: center;
  line-height: 1.5;
}
body.supp-page article.supp table.summary.race-table td:first-child {
  font-weight: 600;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: -0.005em;
}
body.supp-page article.supp table.summary.race-table tr:last-child td {
  border-bottom: none;
}

/* Phase indicators — subtle left-edge tint for pre-race, ultra, finish */
body.supp-page article.supp table.summary.race-table tr.phase-pre td {
  background: linear-gradient(to right, rgba(96, 165, 250, 0.04), transparent 60%);
}
body.supp-page article.supp table.summary.race-table tr.phase-ultra td {
  background: linear-gradient(to right, rgba(168, 85, 247, 0.04), transparent 60%);
}
body.supp-page article.supp table.summary.race-table tr.phase-final td {
  background: linear-gradient(to right, rgba(236, 72, 153, 0.045), transparent 60%);
}

/* Phase-tag chip — small label under the hour number (ultra / long ultra) */
body.supp-page article.supp table.summary.race-table .phase-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: transparent;
  padding: 2px 0 0;
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
}

/* Stronger separator at the start of the in-race section (Hour 1 row) */
body.supp-page article.supp table.summary.race-table tr.phase-pre + tr:not(.phase-pre) td {
  border-top: 1.5px solid var(--text);
  padding-top: 28px;
}
/* Stronger separator at the start of long-ultra & finish sections */
body.supp-page article.supp table.summary.race-table tr:not(.phase-ultra) + tr.phase-ultra:first-of-type td,
body.supp-page article.supp table.summary.race-table tr:not(.phase-final) + tr.phase-final td {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

/* Mobile — tighter padding, wrap first column */
@media (max-width: 760px) {
  body.supp-page article.supp table.summary.race-table {
    font-size: 13px;
  }
  body.supp-page article.supp table.summary.race-table th,
  body.supp-page article.supp table.summary.race-table td {
    padding: 14px 12px 14px 0;
  }
  body.supp-page article.supp table.summary.race-table td:first-child {
    white-space: normal;
    min-width: 90px;
    padding-right: 14px;
  }
}

/* Evidence list — clean references */
body.supp-page article.supp .evidence-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  border-top: 1px solid var(--text);
}

body.supp-page article.supp .evidence-list li {
  padding: 18px 0;
  border-left: none;
  border-bottom: 1px solid var(--border-light);
  background: transparent;
  font-size: 15px;
  color: var(--text);
  border-radius: 0;
}

body.supp-page article.supp .evidence-list li::before {
  display: none;
}

body.supp-page article.supp .evidence-list a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  font-weight: 500;
  transition: color 0.15s;
}

body.supp-page article.supp .evidence-list a:hover {
  color: var(--evidence-a);
  text-decoration-color: var(--evidence-a);
}

body.supp-page article.supp .evidence-list .source {
  display: inline-block;
  margin-left: 12px;
  color: var(--text-dim);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  vertical-align: middle;
}

/* Page nav at bottom */
body.supp-page .page-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid var(--text);
  font-size: 14px;
}

body.supp-page .page-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: opacity 0.15s ease;
  padding: 8px 0;
}

body.supp-page .page-nav a:hover { opacity: 0.55; }

/* Footer */
body.supp-page footer {
  background: transparent;
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 32px 24px;
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 0;
}

body.supp-page footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.005em;
}

body.supp-page footer a:hover { text-decoration: underline; }

/* All inline links inside article */
body.supp-page article.supp a:not(.evidence-list a) {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  font-weight: 500;
  transition: color 0.15s ease;
}

body.supp-page article.supp a:not(.evidence-list a):hover {
  color: var(--evidence-a);
  text-decoration-color: var(--evidence-a);
}

/* Selection */
body.supp-page ::selection {
  background: var(--text);
  color: var(--bg);
}

/* Responsive */
@media (max-width: 700px) {
  body.supp-page main { padding: 64px 24px 96px; }
  body.supp-page main h1 { font-size: 36px; }
  body.supp-page main .subtitle { font-size: 18px; margin-bottom: 40px; }
  body.supp-page article.supp h4 { font-size: 24px; margin-top: 60px; }
  body.supp-page article.supp p,
  body.supp-page article.supp ul li { font-size: 16px; }
  body.supp-page article.supp .supp-grid { grid-template-columns: 1fr; }
  body.supp-page article.supp .supp-fact:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  body.supp-page article.supp .supp-fact:nth-child(even) { padding-left: 0; }
  body.supp-page article.supp .supp-fact:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }
  body.supp-page article.supp .supp-fact:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   EDITORIAL OVERRIDES — Non-detail pages (index, strategy, travel)
   Adapta hero, legend, filters, quick-links, summary table ao tema claro.
   ========================================================================== */

/* Hero do index em modo editorial */
body.supp-page header.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 96px 0 80px;
  text-align: left;
  position: relative;
}

body.supp-page header.hero::after {
  display: none;
}

/* Inner wrapper — matches .container exactly so hero text aligns
   vertically with the body content below (categories, etc.) */
body.supp-page header.hero .hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

body.supp-page header.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 0 24px;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: var(--text);
  background-clip: unset;
  max-width: 880px;
}

body.supp-page header.hero .subtitle {
  font-size: 21px;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

body.supp-page header.hero .meta {
  margin: 40px 0 0;
  color: var(--text-muted);
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 700px) {
  body.supp-page header.hero { padding: 56px 0 48px; }
  body.supp-page header.hero .hero-inner { padding: 0 20px; }
}

/* Container for index/dashboard pages */
body.supp-page .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 120px;
}

/* Override main on dashboard-like pages — wider for tables */
body.supp-page main.container-narrow {
  /* Wrapper stretches to match .hero-inner (1280px), so the article column
     aligns with the hero left edge. Inner article is still narrow for readability. */
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 120px;
}
/* Constrain direct children (article, tip box, page-nav, etc.) to a readable
   width and left-align them so they sit flush under the hero. */
body.supp-page main.container-narrow > * {
  max-width: 816px;  /* 880 - 64 padding = effective narrow column */
  margin-left: 0;
  margin-right: auto;
}

/* H2 - section titles on dashboards */
body.supp-page section.category h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

body.supp-page section.category > p {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.55;
  max-width: 680px;
}

body.supp-page section.category {
  margin-bottom: 80px;
}

/* Legend */
body.supp-page .legend {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 28px 32px;
  margin-bottom: 56px;
  box-shadow: none;
}

body.supp-page .legend h3 {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
}

body.supp-page .legend-items {
  gap: 16px 32px;
}

body.supp-page .legend-item {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}

body.supp-page .legend-item strong { color: var(--text); }

body.supp-page .legend-item .badge {
  background: transparent;
  border: 1px solid;
  border-radius: 0;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.supp-page .badge-a { border-color: var(--evidence-a); color: var(--evidence-a); }
body.supp-page .badge-b { border-color: var(--evidence-b); color: var(--evidence-b); }
body.supp-page .badge-c { border-color: var(--evidence-c); color: var(--evidence-c); }
body.supp-page .badge-d { border-color: var(--evidence-d); color: var(--evidence-d); }
body.supp-page .badge-e { border-color: var(--evidence-e); color: var(--evidence-e); }

/* Filter bar */
body.supp-page .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
  align-items: center;
}

body.supp-page .filter-bar input[type="search"] {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  flex: 1;
  min-width: 240px;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.15s ease;
}

body.supp-page .filter-bar input[type="search"]::placeholder {
  color: var(--text-muted);
}

body.supp-page .filter-bar input[type="search"]:focus {
  border-color: var(--text);
  box-shadow: none;
}

body.supp-page .filter-bar .filter-chip {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 8px 14px;
  font-size: 11px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

body.supp-page .filter-bar .filter-chip:hover {
  border-color: var(--text);
  color: var(--text);
  background: transparent;
}

body.supp-page .filter-bar .filter-chip.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

body.supp-page .filter-bar .reset-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 8px 14px;
  border-radius: 0;
  font-size: 11px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.15s ease;
}

body.supp-page .filter-bar .reset-btn:hover {
  color: var(--text);
  border-color: var(--text);
}

/* Summary table — editorial style for dashboard */
body.supp-page .table-wrap {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  margin: 0 0 64px;
  box-shadow: none;
  overflow-x: auto;
}

body.supp-page table.summary {
  background: #ffffff;
}

body.supp-page table.summary thead {
  background: transparent;
  border-bottom: 1px solid var(--text);
}

body.supp-page table.summary th {
  text-align: left;
  padding: 18px 18px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

body.supp-page table.summary td {
  padding: 18px 18px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
  vertical-align: top;
  font-size: 14px;
  letter-spacing: -0.005em;
}

body.supp-page table.summary tr:hover td {
  background: rgba(0,0,0,0.02);
}

body.supp-page table.summary tr:last-child td {
  border-bottom: none;
}

body.supp-page table.summary td:first-child a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  border-bottom: none;
  letter-spacing: -0.005em;
  transition: color 0.15s ease;
}

body.supp-page table.summary td:first-child a:hover {
  color: var(--evidence-a);
  text-decoration-color: var(--evidence-a);
}

/* Category row in summary table */
body.supp-page .category-row td {
  background: #f5f3ec !important;
  color: var(--text) !important;
  font-weight: 600 !important;
  padding: 14px 18px !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.16em !important;
  border-top: 1px solid var(--text) !important;
  border-bottom: 1px solid var(--text) !important;
  font-family: 'Inter', sans-serif !important;
}

body.supp-page .category-row:hover td {
  background: #f5f3ec !important;
}

/* CATEGORY SECTION (subtable per group) — editorial theme */
body.supp-page .category-section {
  margin-bottom: 72px;
  padding-top: 8px;
}
body.supp-page .category-section + .category-section {
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
body.supp-page .category-section .category-header {
  margin-bottom: 28px;
  max-width: 760px;
}
body.supp-page .category-section .category-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--text);
}
body.supp-page .category-section .category-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
  font-family: 'Inter', sans-serif;
}
body.supp-page .category-section .category-intro em {
  font-style: italic;
  color: var(--text);
}

/* Produto / preco cells in summary table */
body.supp-page table.summary td.produto,
body.supp-page table.summary td.product {
  color: var(--evidence-a);
  font-weight: 600;
}

body.supp-page table.summary td.produto-empty {
  color: var(--text-muted);
  font-weight: 400;
}

/* Multi-option items — substance/function/food/evidence are a single merged
   cell (rowspan) like Excel; each product option gets its own row for
   product + price + price/dose. */
body.supp-page table.summary td[rowspan] {
  vertical-align: middle;
}
/* Remove the internal divider between option rows of the same item so the
   group reads as one unit; only the final option row keeps a bottom border. */
body.supp-page table.summary tr.multi-option-first > td:not([rowspan]) {
  border-bottom: none;
}
/* When the multi-option group is the last in its table, the merged (rowspan)
   cells should also drop their bottom border to match the clean last-row
   treatment of the non-merged cells. The general sibling (~) covers groups
   with 3+ option rows, not just two. */
body.supp-page table.summary tr.multi-option-first:has(~ tr.multi-option-rest:last-child) td[rowspan] {
  border-bottom: none;
}
/* Groups with 3+ options — drop the divider between every consecutive option
   row so the whole group reads as a single merged unit. */
body.supp-page table.summary tr.multi-option-rest:has(+ tr.multi-option-rest) > td {
  border-bottom: none;
}

body.supp-page table.summary td .alt {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dim);
  opacity: 1;
  margin-top: 4px;
}

body.supp-page table.summary td.preco {
  color: var(--text);
  font-weight: 700;
  text-align: right;
  font-feature-settings: 'tnum';
}

body.supp-page table.summary td.preco-empty {
  color: var(--text-muted);
}

body.supp-page table.summary td.preco-dose {
  color: var(--evidence-a);
  font-weight: 600;
  font-feature-settings: 'tnum';
}

/* Quick links — editorial cards */
body.supp-page .quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--text);
}

body.supp-page .quick-link {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: background 0.2s ease;
}

body.supp-page .quick-link:nth-child(3n) {
  border-right: none;
}

body.supp-page .quick-link::after {
  content: '→';
  position: absolute;
  top: 32px;
  right: 28px;
  color: var(--text-dim);
  font-size: 18px;
  transition: transform 0.2s ease;
}

body.supp-page .quick-link:hover {
  background: #f5f3ec;
  border-color: var(--border);
  transform: none;
  box-shadow: none;
}

body.supp-page .quick-link:hover::after {
  transform: translateX(6px);
  color: var(--text);
}

body.supp-page .quick-link .ql-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

body.supp-page .quick-link .ql-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

body.supp-page .quick-link .ql-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin-top: 4px;
}

/* Disclaimer */
body.supp-page .disclaimer {
  background: transparent;
  border: 1px solid var(--evidence-d);
  border-radius: 0;
  padding: 24px 28px;
  margin: 32px 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

body.supp-page .disclaimer strong { color: var(--evidence-d); }

/* Page header for non-supp pages (estrategia, viagem) */
body.supp-page header.page-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 96px;
}

body.supp-page header.page-header .container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

body.supp-page header.page-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--text);
}

body.supp-page header.page-header .alias,
body.supp-page header.hero .alias {
  display: block;
  font-size: 0.4em;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dim);
  margin-top: 14px;
  letter-spacing: -0.01em;
  font-family: 'Fraunces', serif;
}

body.supp-page header.page-header .subtitle {
  font-size: 19px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
  max-width: 620px;
  letter-spacing: -0.005em;
}

/* Article styling for non-supp pages */
body.supp-page main.container-narrow article.supp {
  background: transparent;
  padding: 0;
  border: none;
}

/* ==========================================================================
   LANDING PAGE — index.html (Maurten Education style)
   Hero compact + 2-column grid: sticky sidebar tabs + main content
   ========================================================================== */

/* HERO — compact (intro brief, links logo abaixo) */
body.supp-page.landing .landing-hero {
  padding: 64px 0 64px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

body.supp-page.landing .landing-hero .hero-narrow {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

body.supp-page.landing .landing-hero .eyebrow {
  font-size: 11px;
  text-transform: lowercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

body.supp-page.landing .landing-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 20px;
  color: var(--text);
  max-width: 920px;
}

body.supp-page.landing .landing-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--evidence-a);
}

body.supp-page.landing .landing-hero .subtitle {
  font-size: 19px;
  color: var(--text-dim);
  line-height: 1.45;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 720px;
  letter-spacing: -0.005em;
}

/* MAIN — 2-column grid (sidebar + content) */
body.supp-page.landing .landing-main {
  background: var(--bg);
  /* Override generic body.supp-page main (max-width: 720px) — landing uses full width */
  max-width: none;
  margin: 0;
  padding: 0;
}

body.supp-page.landing .landing-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 96px;
  align-items: start;
}

/* SIDEBAR TABS (sticky) */
body.supp-page.landing .sidebar-tabs {
  position: sticky;
  top: 32px;
  align-self: start;
  font-family: 'Inter', sans-serif;
}

body.supp-page.landing .sidebar-tabs h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0 14px;
  padding: 0;
}

body.supp-page.landing .sidebar-tabs h4:not(:first-of-type) {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

body.supp-page.landing .sidebar-tabs .tabs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  border: none;
}

body.supp-page.landing .sidebar-tabs .tabs-list li {
  padding: 0;
  border: none;
  margin: 0;
}

body.supp-page.landing .sidebar-tabs .tabs-list li::before {
  display: none;
}

body.supp-page.landing .sidebar-tabs .tab-link {
  display: block;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--text);
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 14px;
  margin-left: -14px;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

body.supp-page.landing .sidebar-tabs .tab-link:hover {
  border-left-color: var(--text);
  color: var(--text);
  background: transparent;
  text-decoration: none;
}

body.supp-page.landing .sidebar-tabs .tab-link.active {
  border-left-color: var(--evidence-a);
  color: var(--evidence-a);
}

body.supp-page.landing .sidebar-tabs .tabs-categories .tab-link {
  font-size: 12.5px;
  color: var(--text-dim);
  padding: 6px 0 6px 14px;
}

body.supp-page.landing .sidebar-tabs .tabs-categories .tab-link:hover {
  color: var(--text);
}

/* MAIN CONTENT */
body.supp-page.landing .landing-content {
  max-width: 720px;
  background: transparent;
  padding: 0;
  border: none;
}

/* Lead — magazine-style intro */
body.supp-page.landing .landing-content .lead {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 64px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Sections inside content */
body.supp-page.landing .landing-content .section {
  margin: 0 0 64px;
  scroll-margin-top: 48px;
}

body.supp-page.landing .landing-content .section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--text);
}

body.supp-page.landing .landing-content .section p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 20px;
  color: var(--text);
}

/* Quick-links — first section */
body.supp-page.landing .landing-content .quick-links {
  margin: 24px 0 0;
  border-top: 1px solid var(--text);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

body.supp-page.landing .landing-content .quick-link {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}

body.supp-page.landing .landing-content .quick-link:nth-child(2n) {
  border-right: none;
}

/* Creators */
body.supp-page.landing .creators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
}

body.supp-page.landing .creator h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--text);
}

body.supp-page.landing .creator .role {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-weight: 600;
  margin: 0 0 14px;
  font-family: 'Inter', sans-serif;
}

body.supp-page.landing .creator p:not(.role) {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* Lists in landing main */
body.supp-page.landing .landing-content .section ul {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}

body.supp-page.landing .landing-content .section ul li {
  font-size: 16px;
  line-height: 1.6;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  color: var(--text);
}

body.supp-page.landing .landing-content .section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 12px;
  height: 1px;
  background: var(--text);
}

/* Disclaimer */
body.supp-page.landing .disclaimer {
  margin-top: 32px;
  padding: 24px 28px;
  font-size: 14.5px;
  line-height: 1.6;
  background: #f5f3ec;
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
}

body.supp-page.landing .disclaimer strong {
  color: var(--evidence-d);
  font-weight: 700;
}

/* Footer branded */
body.supp-page.landing footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  background: var(--bg);
  margin-top: 0;
}

body.supp-page.landing footer p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
}

body.supp-page.landing footer p strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
}

/* Lang-switcher position adjustment when there's a sidebar */
body.supp-page.landing .lang-switcher {
  z-index: 1100; /* above sticky sidebar */
}

/* Responsive — collapse sidebar on tablet/mobile */
@media (max-width: 900px) {
  body.supp-page.landing .landing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 80px;
  }
  body.supp-page.landing .sidebar-tabs {
    position: static;
    padding: 24px 0 0;
    border-top: 1px solid var(--border);
    order: 2;
  }
  body.supp-page.landing .sidebar-tabs h4 { margin-top: 0; padding-top: 0; border-top: none; }
  body.supp-page.landing .sidebar-tabs h4:not(:first-of-type) {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  body.supp-page.landing .landing-content { order: 1; }
}

@media (max-width: 700px) {
  body.supp-page.landing .landing-hero { padding: 48px 0 48px; }
  body.supp-page.landing .landing-hero .hero-narrow { padding: 0 24px; }
  body.supp-page.landing .landing-hero h1 { font-size: 34px; }
  body.supp-page.landing .landing-hero .subtitle { font-size: 17px; }
  body.supp-page.landing .landing-content .lead { font-size: 18px; margin-bottom: 48px; }
  body.supp-page.landing .creators { grid-template-columns: 1fr; gap: 32px; }
  body.supp-page.landing .landing-content .quick-links { grid-template-columns: 1fr; }
  body.supp-page.landing .landing-content .quick-link { border-right: none !important; }
}

body.supp-page main.container-narrow > h2,
body.supp-page main.container-narrow article > h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 64px 0 24px;
}

/* Lists in main (non-article) */
body.supp-page main.container-narrow > ul,
body.supp-page main.container-narrow > article > ul {
  list-style: none;
  padding-left: 0;
  margin: 24px 0 32px;
}

body.supp-page main.container-narrow > ul li,
body.supp-page main.container-narrow > article > ul li {
  font-size: 17px;
  line-height: 1.6;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  color: var(--text);
}

body.supp-page main.container-narrow > ul li::before,
body.supp-page main.container-narrow > article > ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  width: 14px;
  height: 1px;
  background: var(--text);
}

/* Section headers (h2) inside dashboard pages */
body.supp-page section.category h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Footer light */
body.supp-page footer {
  background: transparent;
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 40px 24px;
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 80px;
}

body.supp-page footer a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.supp-page footer p { margin-bottom: 4px; }

/* TOC sidebar (if any) */
body.supp-page aside.toc {
  background: transparent;
}

body.supp-page aside.toc h3 {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

body.supp-page aside.toc a {
  color: var(--text-dim);
  font-size: 13px;
  border-left: 2px solid transparent;
  padding: 6px 12px;
}

body.supp-page aside.toc a:hover {
  background: transparent;
  color: var(--text);
  border-left-color: var(--text);
}

body.supp-page aside.toc .toc-section {
  color: var(--text);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   EVIDENCE TOGGLE (clickable badge in summary table)
   ============================================================ */
button.evidence-toggle {
  /* Button reset → behaves like the original .badge span */
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  display: inline-block;
  appearance: none;
  -webkit-appearance: none;
  /* .badge already provides padding, border, background, color, radius */
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
button.evidence-toggle:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
button.evidence-toggle:focus-visible {
  outline: 2px solid var(--accent, #60a5fa);
  outline-offset: 2px;
}
button.evidence-toggle[aria-expanded="true"] {
  box-shadow: 0 0 0 2px currentColor;
}

/* Editorial light theme — small adjustment so the focus ring contrasts */
body.supp-page button.evidence-toggle:focus-visible {
  outline-color: var(--text);
}

/* ============================================================
   EVIDENCE POPOVER (floating description on click)
   ============================================================ */
.evidence-popover {
  position: absolute;
  z-index: 9999;
  max-width: 320px;
  min-width: 220px;
  padding: 14px 16px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-card, #1a1f2e);
  border: 1px solid var(--border, #2a3142);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45),
              0 2px 8px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}
.evidence-popover[hidden] { display: none; }
.evidence-popover strong {
  display: block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim, #b8bcc8);
  margin-bottom: 6px;
}

/* Editorial light theme version */
body.supp-page .evidence-popover {
  background: #fffdf8;
  color: var(--text);
  border: 1px solid var(--text);
  box-shadow: 0 12px 28px rgba(20, 18, 14, 0.18),
              0 2px 8px rgba(20, 18, 14, 0.08);
}
body.supp-page .evidence-popover strong {
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
