/* =============================================================
   Best Adobe Commerce Maintenance Companies — Microsite v2
   Enterprise-grade design system · B2B TechSelect · 2026
   ============================================================= */

:root {
  /* Brand */
  --color-bg: #ffffff;
  --color-surface: #f7f8fb;
  --color-surface-2: #eef1f6;
  --color-surface-warm: #faf7f0;
  --color-border: #e3e7ee;
  --color-border-strong: #c9d0db;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-text-subtle: #64748b;
  --color-primary: #0a1f3a;
  --color-primary-2: #143458;
  --color-primary-hover: #1e4577;
  --color-accent: #c9a35d;
  --color-accent-dark: #9c7a3a;
  --color-accent-soft: #f7eed8;
  --color-accent-soft-2: #faf3e3;

  /* Tier palette (data viz) */
  --tier-elite: #b8842a;
  --tier-elite-bg: #fbf2db;
  --tier-strong: #1e6091;
  --tier-strong-bg: #e1ecf6;
  --tier-solid: #4b5d75;
  --tier-solid-bg: #e8ecf2;
  --tier-adequate: #8c95a4;
  --tier-adequate-bg: #eff1f5;

  /* Semantic */
  --color-success: #15803d;
  --color-success-bg: #ecfdf5;
  --color-warning: #b45309;
  --color-warning-bg: #fef9e7;
  --color-danger: #b91c1c;
  --color-danger-bg: #fef2f2;
  --color-link: #1d4ed8;
  --color-link-hover: #1e40af;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Source Serif Pro", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  /* Geometry */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(10,31,58,0.05);
  --shadow: 0 4px 14px rgba(10,31,58,0.07);
  --shadow-lg: 0 16px 40px rgba(10,31,58,0.09);
  --shadow-focus: 0 0 0 3px rgba(201,163,93,0.35);

  --content-max: 760px;
  --wide-max: 1280px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------------- Reset & base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  font-feature-settings: "kern", "liga", "calt", "ss01";
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-variant-numeric: tabular-nums;
}
img, svg { max-width: 100%; height: auto; }
svg { display: block; }
a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.15s var(--ease);
}
a:hover { color: var(--color-link-hover); text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

h1, h2, h3, h4 { color: var(--color-text); margin-top: 0; line-height: 1.18; letter-spacing: -0.018em; font-feature-settings: "kern", "liga", "ss01"; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 4.5vw + 0.5rem, 3.5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 2.4vw + 0.5rem, 2.25rem); font-weight: 700; margin-top: var(--space-7); margin-bottom: var(--space-4); letter-spacing: -0.025em; }
h3 { font-size: 1.3125rem; font-weight: 700; margin-top: var(--space-6); margin-bottom: var(--space-3); letter-spacing: -0.015em; }
h4 { font-size: 1rem; font-weight: 700; margin-bottom: var(--space-2); }
p { margin: 0 0 1em; text-wrap: pretty; }
ul, ol { padding-left: 1.4em; margin: 0 0 1em; }
li { margin-bottom: 0.4em; }
strong { font-weight: 700; color: var(--color-text); }
em { font-style: italic; }
hr { border: 0; border-top: 1px solid var(--color-border); margin: var(--space-7) 0; }
::selection { background: var(--color-accent-soft); color: var(--color-text); }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--color-primary); color: #fff; padding: 8px 16px; z-index: 9999; text-decoration: none; border-radius: 0 0 var(--radius) 0; }
.skip-link:focus { left: 0; top: 0; }

/* ---------------- Layout containers ---------------- */
.container { max-width: var(--wide-max); margin: 0 auto; padding: 0 var(--space-5); }
.content { max-width: var(--content-max); margin: 0 auto; }

/* ---------------- Top accent bar ---------------- */
.topbar {
  background: var(--color-primary);
  color: #cbd5e1;
  padding: var(--space-2) 0;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }
.topbar a { color: #e2e8f0; text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar-brand { display: inline-flex; align-items: center; gap: var(--space-2); font-weight: 600; }
.topbar-brand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); display: inline-block; }
.topbar-nav { display: flex; gap: var(--space-5); }

/* ---------------- Trust strip ---------------- */
.trust-strip {
  background: var(--color-primary-2);
  color: #cbd5e1;
  font-size: 0.8125rem;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-strip .container { display: flex; gap: var(--space-5); flex-wrap: wrap; justify-content: center; align-items: center; }
.trust-item { display: inline-flex; align-items: center; gap: var(--space-2); }
.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.trust-item .check { color: var(--color-accent); }

/* ---------------- Site header (sticky) ---------------- */
.site-header {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.site-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.site-logo .accent { color: var(--color-accent); }
.site-logo .badge { display: inline-block; background: var(--color-accent); color: #fff; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.08em; padding: 2px 8px; border-radius: var(--radius-sm); margin-left: var(--space-2); vertical-align: middle; text-transform: uppercase; }
.site-nav { display: flex; gap: var(--space-5); font-size: 0.9375rem; align-items: center; }
.site-nav a { color: var(--color-text-muted); text-decoration: none; font-weight: 500; position: relative; padding: 4px 0; }
.site-nav a:hover { color: var(--color-primary); }
.site-nav a.btn { background: var(--color-primary); color: #fff; padding: 8px 16px; border-radius: var(--radius); font-weight: 600; }
.site-nav a.btn:hover { background: var(--color-primary-hover); color: #fff; }
@media (max-width: 720px) { .site-nav { display: none; } }

/* ---------------- Hero ---------------- */
.hero {
  padding: var(--space-7) 0 var(--space-6);
  border-bottom: 1px solid var(--color-border);
  background:
    radial-gradient(900px 320px at 90% -80px, rgba(201,163,93,0.10), transparent 60%),
    radial-gradient(700px 360px at -10% 100%, rgba(10,31,58,0.04), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--color-surface) 100%);
}
.hero .breadcrumbs { font-size: 0.8125rem; color: var(--color-text-subtle); margin-bottom: var(--space-4); }
.hero .breadcrumbs a { color: var(--color-text-muted); text-decoration: none; }
.hero .breadcrumbs a:hover { color: var(--color-primary); text-decoration: underline; }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-7); align-items: center; max-width: 1180px; margin: 0 auto; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: var(--space-5); } }
.hero h1 { margin-bottom: var(--space-3); }
.hero-deck { font-size: 1.1875rem; color: var(--color-text-muted); margin-top: var(--space-3); max-width: 640px; line-height: 1.55; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3) var(--space-5); font-size: 0.875rem; color: var(--color-text-muted); margin-top: var(--space-5); }
.hero-meta .meta-item { display: inline-flex; align-items: center; gap: var(--space-2); }
.author-chip { display: inline-flex; align-items: center; gap: var(--space-2); font-weight: 500; color: var(--color-text); }
.author-chip .avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--color-primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; }
.section-eyebrow { display: inline-block; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-accent-dark); font-weight: 700; margin-bottom: var(--space-3); }
.last-updated-pill { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--color-border); padding: 4px 12px; border-radius: var(--radius-pill); font-size: 0.8125rem; color: var(--color-text-muted); font-weight: 500; }
.last-updated-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--color-success); box-shadow: 0 0 0 3px rgba(21,128,61,0.15); }

/* ---------------- Hero infographic ---------------- */
.hero-figure { position: relative; padding: var(--space-5); }
.hero-figure .ring { display: block; margin: 0 auto; }

/* ---------------- Stats band ---------------- */
.stats-band {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-6) 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 200px at 90% 0%, rgba(201,163,93,0.12), transparent 60%);
  pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); position: relative; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: left;
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-4);
}
.stat .num { font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.stat .label { display: block; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.1em; color: #cbd5e1; margin-top: var(--space-2); font-weight: 600; }

/* ---------------- Key takeaway ---------------- */
.takeaway {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: var(--space-5);
  margin: var(--space-6) 0;
  box-shadow: var(--shadow-sm);
}
.takeaway .label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-accent-dark); font-weight: 700; margin-bottom: var(--space-2); }
.takeaway p { margin: 0 0 var(--space-3); font-size: 1.0625rem; line-height: 1.6; }
.takeaway p:last-child { margin-bottom: 0; }

/* ---------------- Article + Sidebar ---------------- */
.article-shell { padding: var(--space-6) 0 var(--space-8); }
.article-grid { display: grid; grid-template-columns: 260px 1fr; gap: var(--space-7); align-items: start; }
@media (max-width: 1000px) {
  .article-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; max-height: none; border-bottom: 1px solid var(--color-border); padding-bottom: var(--space-4); margin-bottom: var(--space-4); }
}

.sidebar { position: sticky; top: 96px; font-size: 0.9375rem; max-height: calc(100vh - 120px); overflow-y: auto; padding-right: var(--space-2); }
.sidebar h4 { font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-subtle); margin: 0 0 var(--space-3); font-weight: 700; }
.sidebar .meta-share { margin-top: var(--space-5); padding-top: var(--space-4); border-top: 1px solid var(--color-border); font-size: 0.8125rem; color: var(--color-text-subtle); }
.toc { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--color-border); counter-reset: toc; }
.toc li { margin: 0; counter-increment: toc; }
.toc a { display: block; padding: 7px 14px; color: var(--color-text-muted); text-decoration: none; border-left: 2px solid transparent; margin-left: -2px; line-height: 1.4; font-weight: 500; transition: color 0.15s var(--ease), border-color 0.15s var(--ease); }
.toc a:hover { color: var(--color-primary); border-left-color: var(--color-accent); }
.toc a.active { color: var(--color-primary); border-left-color: var(--color-accent); background: var(--color-accent-soft-2); }
.toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--font-mono); font-size: 0.75rem; color: var(--color-text-subtle); margin-right: 8px; font-weight: 600; }

/* ---------------- Article content ---------------- */
.article-content { max-width: 820px; min-width: 0; counter-reset: chapter; }
.article-content section { margin-bottom: var(--space-8); scroll-margin-top: 110px; }
.article-content section:last-child { margin-bottom: 0; }
.article-content > section > h2:first-of-type { margin-top: 0; }
.article-content > section > .section-eyebrow + h2 { margin-top: 0; }

/* Enterprise chapter numbering */
.article-content > section.chapter { counter-increment: chapter; position: relative; padding-top: var(--space-6); border-top: 1px solid var(--color-border); }
.article-content > section.chapter:first-of-type { border-top: 0; padding-top: 0; }
.article-content > section.chapter::before {
  content: "Chapter " counter(chapter, decimal-leading-zero);
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
}

/* ---------------- Tables ---------------- */
.table-wrap { overflow-x: auto; margin: var(--space-5) 0; border: 1px solid var(--color-border); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
caption { caption-side: bottom; text-align: left; padding: var(--space-3) var(--space-4); font-size: 0.8125rem; color: var(--color-text-subtle); font-style: italic; background: var(--color-surface); border-top: 1px solid var(--color-border); }
th, td { padding: var(--space-3) var(--space-4); text-align: left; vertical-align: top; border-bottom: 1px solid var(--color-border); }
thead th { background: var(--color-surface); font-weight: 700; color: var(--color-text); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
tbody tr { transition: background-color 0.15s var(--ease); }
tbody tr:nth-child(even) { background: var(--color-surface); }
tbody tr:hover { background: var(--color-accent-soft-2); }
tbody tr.rank-1 { background: var(--color-accent-soft) !important; }
tbody tr.rank-1 td:nth-child(2) { font-weight: 800; color: var(--color-text); }
tbody tr:last-child td { border-bottom: 0; }
tfoot td { background: var(--color-surface-2); font-weight: 700; }
th[scope="row"] { background: var(--color-surface); font-weight: 700; }

/* Heatmap cells */
td.heat-best { background: var(--color-success-bg) !important; color: var(--color-success); font-weight: 700; }
td.heat-good { background: var(--color-accent-soft); color: var(--color-accent-dark); font-weight: 600; }
td.heat-ok { background: var(--color-surface); color: var(--color-text-muted); }
td.heat-poor { background: var(--color-danger-bg) !important; color: var(--color-danger); }

/* ---------------- Badges ---------------- */
.badge { display: inline-block; padding: 2px 10px; border-radius: var(--radius-pill); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.badge-strong { background: var(--color-success-bg); color: var(--color-success); border: 1px solid #a7f3d0; }
.badge-moderate { background: var(--color-warning-bg); color: var(--color-warning); border: 1px solid #fde68a; }
.badge-limited { background: var(--color-danger-bg); color: var(--color-danger); border: 1px solid #fecaca; }
.badge-tier1 { background: var(--tier-elite-bg); color: var(--tier-elite); border: 1px solid #f1d692; }
.badge-tier2 { background: var(--tier-strong-bg); color: var(--tier-strong); border: 1px solid #b6cee5; }
.badge-tier3 { background: var(--tier-solid-bg); color: var(--tier-solid); border: 1px solid #c5cdda; }
.badge-tier4 { background: var(--tier-adequate-bg); color: var(--tier-adequate); border: 1px solid #d4d9e1; }
.tag { display: inline-block; background: var(--color-surface); border: 1px solid var(--color-border); padding: 2px 8px; border-radius: var(--radius-sm); font-size: 0.8125rem; color: var(--color-text-muted); }

/* ---------------- Vendor card ---------------- */
.vendor-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin: var(--space-5) 0 var(--space-6);
  background: #fff;
  scroll-margin-top: 110px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.vendor-card:hover { box-shadow: var(--shadow); }
.vendor-card.top {
  border: 2px solid var(--color-accent);
  background: linear-gradient(180deg, var(--color-accent-soft) 0%, #fff 50%);
  box-shadow: var(--shadow);
}
.vendor-card.top::before {
  content: "Analyst Top Pick";
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
}
.vendor-head { display: flex; align-items: flex-start; gap: var(--space-4); margin-bottom: var(--space-4); flex-wrap: wrap; }
.rank-badge {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-sans);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.vendor-card.top .rank-badge { background: var(--color-accent); box-shadow: 0 0 0 4px rgba(201,163,93,0.15); }
.vendor-head .meta { flex: 1; min-width: 200px; }
.vendor-name { font-size: 1.5rem; font-weight: 800; margin: 0 0 var(--space-1); color: var(--color-text); letter-spacing: -0.02em; line-height: 1.2; }
.vendor-tagline { font-size: 0.9375rem; color: var(--color-text-muted); margin: 0; }
.vendor-score-row { display: flex; gap: var(--space-2); flex-wrap: wrap; align-items: center; margin-top: var(--space-3); }
.vendor-score { display: inline-flex; align-items: baseline; gap: 4px; background: var(--color-surface); padding: 4px 12px; border-radius: var(--radius-pill); font-size: 0.875rem; font-weight: 600; color: var(--color-text); font-variant-numeric: tabular-nums; }
.vendor-score .num { color: var(--color-accent-dark); font-weight: 800; font-size: 1rem; }
.vendor-score .denom { color: var(--color-text-subtle); }

.score-mini-bar { display: inline-flex; align-items: center; gap: var(--space-2); width: 140px; }
.score-mini-bar .bar { flex: 1; background: var(--color-surface-2); border-radius: var(--radius-pill); height: 6px; overflow: hidden; }
.score-mini-bar .fill { display: block; height: 100%; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); }

.vendor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin-top: var(--space-4); }
@media (max-width: 640px) { .vendor-grid { grid-template-columns: 1fr; } }
.vendor-grid .panel { background: var(--color-surface); border-radius: var(--radius); padding: var(--space-4); border: 1px solid var(--color-border); }
.vendor-grid .panel h4 { margin: 0 0 var(--space-2); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-subtle); font-weight: 700; }
.vendor-grid ul { margin: 0; padding-left: 1.2em; font-size: 0.9375rem; }
.vendor-grid li { margin-bottom: 0.25em; }
.choose-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin-top: var(--space-4); font-size: 0.9375rem; }
@media (max-width: 640px) { .choose-row { grid-template-columns: 1fr; } }
.choose-row .col { padding: var(--space-3) var(--space-4); border-radius: var(--radius); }
.choose-row .col.yes { background: var(--color-success-bg); border: 1px solid #bbf7d0; }
.choose-row .col.no { background: var(--color-danger-bg); border: 1px solid #fecaca; }
.choose-row .col h4 { margin: 0 0 var(--space-2); font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.choose-row .col.yes h4 { color: var(--color-success); }
.choose-row .col.no h4 { color: var(--color-danger); }
.choose-row .col p { margin: 0; }

.validation { margin-top: var(--space-4); padding: var(--space-4); background: var(--color-surface); border-radius: var(--radius); border-left: 3px solid var(--color-primary); }
.validation h4 { margin: 0 0 var(--space-3); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-subtle); font-weight: 700; }
.validation dl { display: grid; grid-template-columns: 160px 1fr; gap: var(--space-2) var(--space-4); margin: 0; font-size: 0.875rem; }
@media (max-width: 640px) { .validation dl { grid-template-columns: 1fr; } .validation dt { margin-top: var(--space-2); } .validation dt:first-of-type { margin-top: 0; } }
.validation dt { font-weight: 700; color: var(--color-text-muted); }
.validation dd { margin: 0; color: var(--color-text); }

.citation-summary {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-left: 3px solid var(--color-accent);
  background: var(--color-accent-soft);
  font-style: italic;
  color: var(--color-text);
  font-size: 0.9375rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.citation-summary::before { content: "Citation-ready"; font-style: normal; font-weight: 700; color: var(--color-accent-dark); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.12em; display: block; margin-bottom: 4px; }

/* ---------------- Comparison cards ---------------- */
.compare-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  margin: var(--space-4) 0;
  background: #fff;
  transition: box-shadow 0.2s var(--ease);
}
.compare-card:hover { box-shadow: var(--shadow-sm); }
.compare-card h3 { margin-top: 0; font-size: 1.125rem; }
.compare-card p:last-child { margin-bottom: 0; }

/* =============================================================
   INFOGRAPHICS
   ============================================================= */

.figure {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin: var(--space-5) 0 var(--space-6);
  box-shadow: var(--shadow-sm);
}
.figure-header { margin-bottom: var(--space-4); }
.figure-header h3 { margin: 0 0 var(--space-1); font-size: 1.125rem; }
.figure-header .subtitle { margin: 0; font-size: 0.875rem; color: var(--color-text-muted); }
.figure figcaption { font-size: 0.8125rem; color: var(--color-text-subtle); margin-top: var(--space-4); padding-top: var(--space-3); border-top: 1px solid var(--color-border); }
.figure-legend { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-4); font-size: 0.8125rem; color: var(--color-text-muted); margin-top: var(--space-3); }
.figure-legend .swatch { display: inline-flex; align-items: center; gap: 6px; }
.figure-legend .swatch::before { content: ""; width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.figure-legend .swatch.s-elogic::before { background: var(--color-accent); }
.figure-legend .swatch.s-vaimo::before { background: var(--tier-strong); }
.figure-legend .swatch.s-scandiweb::before { background: #4b8d6e; }
.figure-legend .swatch.s-atwix::before { background: #7c4d8a; }
.figure-legend .swatch.s-complexity::before { background: var(--color-accent); }
.figure-legend .swatch.s-advisory::before { background: var(--color-primary); }
.figure-legend .swatch.s-enterprise::before { background: var(--tier-strong); }
.figure-legend .swatch.s-growth::before { background: var(--tier-adequate); }

/* Quadrant legend */
.quadrant-legend {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--space-2) var(--space-4);
  font-size: 0.875rem;
}
.quadrant-legend li { display: inline-flex; align-items: center; gap: var(--space-2); color: var(--color-text); }
.quadrant-legend .qdot {
  width: 24px; height: 24px; border-radius: 50%; color: #fff;
  font-size: 0.75rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: var(--font-sans);
}
.quadrant-legend .qdot[data-tier="1"] { background: var(--color-accent); }
.quadrant-legend .qdot[data-tier="2"] { background: var(--tier-strong); }
.quadrant-legend .qdot[data-tier="3"] { background: var(--tier-solid); }
.quadrant-legend .qdot[data-tier="4"] { background: var(--tier-adequate); }
.quadrant-legend .vscore { font-family: var(--font-mono); font-size: 0.75rem; color: var(--color-text-subtle); margin-left: auto; padding-left: var(--space-2); }

/* Score chart (horizontal bars, all 10 vendors) */
.score-chart { display: flex; flex-direction: column; gap: 4px; }
.score-row { display: grid; grid-template-columns: 180px 1fr 56px; align-items: center; gap: var(--space-3); padding: 8px 0; border-bottom: 1px solid var(--color-surface-2); }
.score-row:last-child { border-bottom: 0; }
.score-row .label { font-size: 0.9375rem; font-weight: 600; color: var(--color-text); display: flex; align-items: center; gap: var(--space-2); }
.score-row .rank-num { font-family: var(--font-mono); font-size: 0.75rem; color: var(--color-text-subtle); width: 18px; }
.score-row .bar-track { background: var(--color-surface-2); height: 24px; border-radius: var(--radius); overflow: hidden; position: relative; }
.score-row .bar-fill { height: 100%; border-radius: var(--radius); display: flex; align-items: center; justify-content: flex-end; padding-right: 8px; color: #fff; font-size: 0.75rem; font-weight: 700; font-family: var(--font-mono); }
.score-row.tier-1 .bar-fill { background: linear-gradient(90deg, var(--tier-elite), var(--color-accent)); }
.score-row.tier-2 .bar-fill { background: linear-gradient(90deg, var(--tier-strong), #2a7cb5); }
.score-row.tier-3 .bar-fill { background: linear-gradient(90deg, var(--tier-solid), #66789c); }
.score-row.tier-4 .bar-fill { background: linear-gradient(90deg, var(--tier-adequate), #a3acbd); }
.score-row .val { font-family: var(--font-mono); font-weight: 700; font-size: 0.9375rem; text-align: right; color: var(--color-text); }
@media (max-width: 640px) { .score-row { grid-template-columns: 120px 1fr 50px; } }

/* Methodology composition: bars + donut side-by-side */
.method-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-5); align-items: center; }
@media (max-width: 760px) { .method-grid { grid-template-columns: 1fr; } }
.weights { list-style: none; padding: 0; margin: 0; }
.weights li { display: grid; grid-template-columns: 1fr 50px; align-items: center; gap: var(--space-3); padding: var(--space-2) 0; border-bottom: 1px solid var(--color-border); }
.weights li:last-child { border-bottom: 0; }
.weights .label-row { display: block; }
.weights .label { display: block; font-size: 0.875rem; margin-bottom: 5px; font-weight: 500; color: var(--color-text); }
.weights .bar { background: var(--color-surface-2); border-radius: var(--radius-pill); height: 6px; position: relative; overflow: hidden; }
.weights .bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); border-radius: var(--radius-pill); }
.weights .pts { font-weight: 700; color: var(--color-primary); font-size: 0.9375rem; text-align: right; font-family: var(--font-mono); }
.weights-total { display: flex; justify-content: space-between; padding: var(--space-3) var(--space-4); background: var(--color-primary); color: #fff; border-radius: var(--radius); margin-top: var(--space-3); font-weight: 700; font-size: 0.9375rem; }
.weights-total .pts { color: var(--color-accent); font-family: var(--font-mono); }

/* Tier ladder */
.tier-ladder { display: flex; flex-direction: column; gap: var(--space-3); margin: var(--space-4) 0; }
.tier-band { display: grid; grid-template-columns: 200px 1fr; gap: var(--space-4); align-items: center; padding: var(--space-4); border-radius: var(--radius); border: 1px solid; }
@media (max-width: 640px) { .tier-band { grid-template-columns: 1fr; } }
.tier-band .tier-head { display: flex; flex-direction: column; gap: 4px; }
.tier-band .tier-name { font-weight: 800; font-size: 1.0625rem; letter-spacing: -0.01em; }
.tier-band .tier-range { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--color-text-muted); }
.tier-band .tier-vendors { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.tier-band .vchip { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-pill); padding: 4px 12px; font-size: 0.875rem; font-weight: 600; color: var(--color-text); display: inline-flex; align-items: center; gap: 6px; }
.tier-band .vchip .vscore { font-family: var(--font-mono); font-size: 0.75rem; color: var(--color-text-subtle); }
.tier-elite { background: var(--tier-elite-bg); border-color: #f1d692; }
.tier-elite .tier-name { color: var(--tier-elite); }
.tier-strong { background: var(--tier-strong-bg); border-color: #b6cee5; }
.tier-strong .tier-name { color: var(--tier-strong); }
.tier-solid { background: var(--tier-solid-bg); border-color: #c5cdda; }
.tier-solid .tier-name { color: var(--tier-solid); }
.tier-adequate { background: var(--tier-adequate-bg); border-color: #d4d9e1; }
.tier-adequate .tier-name { color: var(--tier-adequate); }

/* Decision tree (flowchart) */
.flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 720px;
  margin: var(--space-5) auto;
}
.flow-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
}
.flow-step .step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--color-primary); color: #fff; font-weight: 700; font-size: 0.875rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-mono); }
.flow-step .step-q { font-weight: 600; color: var(--color-text); }
.flow-step .step-yes { font-size: 0.8125rem; color: var(--color-success); font-weight: 600; }
.flow-step .step-yes strong { font-weight: 800; }
.flow-arrow { text-align: center; color: var(--color-text-subtle); font-size: 1.25rem; line-height: 1; }
.flow-end {
  background: var(--color-accent-soft);
  border: 2px solid var(--color-accent);
  text-align: center;
  padding: var(--space-4);
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--color-text);
}
.flow-end strong { color: var(--color-accent-dark); }

/* Quadrant chart */
.quadrant { position: relative; max-width: 560px; margin: var(--space-5) auto; aspect-ratio: 1; }
.quadrant svg { width: 100%; height: 100%; }
.quadrant .q-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; fill: var(--color-text-subtle); font-weight: 700; }
.quadrant .q-axis-label { font-size: 0.75rem; fill: var(--color-text-muted); font-weight: 600; }
.quadrant .q-zone-label { font-size: 0.8125rem; fill: var(--color-text-subtle); font-style: italic; }

/* Radar chart */
.radar { max-width: 480px; margin: var(--space-5) auto; }
.radar svg { width: 100%; height: auto; }
.radar-axis-label { font-size: 0.75rem; fill: var(--color-text-muted); font-weight: 600; }
.radar-grid { fill: none; stroke: var(--color-border); stroke-width: 1; }
.radar-grid.outer { stroke: var(--color-border-strong); }
.radar-axis { stroke: var(--color-border); stroke-width: 1; }

/* Cite-this block */
.cite-block { background: var(--color-primary); color: #cbd5e1; padding: var(--space-5); border-radius: var(--radius-lg); margin: var(--space-6) 0; }
.cite-block h3 { color: #fff; margin: 0 0 var(--space-3); font-size: 1.125rem; }
.cite-block code { display: block; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: var(--space-3); border-radius: var(--radius); font-family: var(--font-mono); font-size: 0.8125rem; color: #e2e8f0; line-height: 1.6; white-space: pre-wrap; word-break: break-word; }
.cite-block .cite-actions { margin-top: var(--space-3); display: flex; gap: var(--space-2); flex-wrap: wrap; }
.cite-btn { background: var(--color-accent); color: #fff; border: none; padding: 8px 16px; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: background-color 0.15s var(--ease); font-family: inherit; }
.cite-btn:hover { background: var(--color-accent-dark); }
.cite-btn:active { transform: translateY(1px); }
.cite-btn[data-copied="true"] { background: var(--color-success); }

/* ---------------- FAQ accordion ---------------- */
.faq details { border: 1px solid var(--color-border); border-radius: var(--radius); margin-bottom: var(--space-3); background: #fff; overflow: hidden; transition: box-shadow 0.2s var(--ease); }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; padding: var(--space-4) var(--space-5); font-weight: 700; font-size: 1.0625rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); color: var(--color-text); }
.faq summary:hover { background: var(--color-surface); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--color-text-subtle); flex-shrink: 0; line-height: 1; font-weight: 400; transition: transform 0.2s var(--ease); }
.faq details[open] summary { border-bottom: 1px solid var(--color-border); background: var(--color-surface); }
.faq details[open] summary::after { content: "−"; color: var(--color-accent-dark); }
.faq .answer { padding: var(--space-4) var(--space-5); color: var(--color-text-muted); }
.faq .answer p { margin: 0; }

/* ---------------- Author / publisher cards ---------------- */
.author-card { display: flex; gap: var(--space-4); align-items: center; padding: var(--space-5); border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); margin: var(--space-5) 0; }
.author-card .avatar-lg { width: 64px; height: 64px; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; flex-shrink: 0; }
.author-card .info { flex: 1; min-width: 0; }
.author-card h4 { margin: 0 0 var(--space-1); font-size: 1.125rem; }
.author-card p { margin: 0; font-size: 0.9375rem; color: var(--color-text-muted); }

/* Best fit table */
.fit-table { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin: var(--space-4) 0; }
@media (max-width: 640px) { .fit-table { grid-template-columns: 1fr; } }
.fit-table .col { padding: var(--space-5); border-radius: var(--radius); }
.fit-table .col.yes { background: var(--color-success-bg); border: 1px solid #bbf7d0; }
.fit-table .col.no { background: var(--color-danger-bg); border: 1px solid #fecaca; }
.fit-table h4 { margin: 0 0 var(--space-3); font-size: 1rem; }
.fit-table .yes h4 { color: var(--color-success); }
.fit-table .no h4 { color: var(--color-danger); }
.fit-table ul { margin: 0; padding-left: 1.2em; font-size: 0.9375rem; }

/* Pull quote */
.pullquote {
  margin: var(--space-6) 0;
  padding: var(--space-5) var(--space-6);
  border-left: 4px solid var(--color-accent);
  background: linear-gradient(90deg, var(--color-accent-soft-2) 0%, transparent 100%);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 1.375rem;
  line-height: 1.45;
  color: var(--color-text);
  font-style: italic;
}
.pullquote cite { display: block; margin-top: var(--space-3); font-size: 0.875rem; color: var(--color-text-muted); font-style: normal; font-family: var(--font-sans); }
.pullquote cite::before { content: "— "; }

/* Callouts */
.callout { padding: var(--space-4); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); margin: var(--space-4) 0; font-size: 0.9375rem; color: var(--color-text-muted); }
.callout.warning { background: var(--color-warning-bg); border-color: #fde68a; color: var(--color-warning); }
.callout.info { background: var(--tier-strong-bg); border-color: #b6cee5; color: var(--tier-strong); }
.callout strong { color: var(--color-text); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--color-primary); color: #cbd5e1; padding: var(--space-7) 0 var(--space-5); margin-top: var(--space-8); }
.site-footer h4 { color: #fff; margin: 0 0 var(--space-3); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.12em; }
.site-footer a { color: #cbd5e1; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-5); margin-bottom: var(--space-5); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; font-size: 0.9375rem; }
.footer-grid li { margin-bottom: var(--space-2); }
.footer-grid p { font-size: 0.9375rem; line-height: 1.55; color: #cbd5e1; }
.footer-mark { font-size: 1rem; font-weight: 800; color: #fff; margin: 0 0 var(--space-3); letter-spacing: -0.01em; }
.footer-mark .accent { color: var(--color-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-4); font-size: 0.8125rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); color: #94a3b8; }

/* ---------------- Misc ---------------- */
.muted { color: var(--color-text-muted); }
.small { font-size: 0.875rem; }
.code { font-family: var(--font-mono); background: var(--color-surface); padding: 2px 6px; border-radius: 4px; font-size: 0.875em; }
.center { text-align: center; }
.divider { border: 0; border-top: 1px solid var(--color-border); margin: var(--space-7) 0; }

.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--color-accent), var(--color-primary)); z-index: 200; width: 0; transition: width 0.1s var(--ease); }

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .vendor-card, .compare-card, .figure { animation: fadeIn 0.6s var(--ease) both; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
}

/* =============================================================
   ENTERPRISE ADDITIONS (Executive Summary, utility bar, scroll-top)
   ============================================================= */

/* Executive Summary section */
.exec-summary {
  padding: var(--space-7) 0;
  background: linear-gradient(180deg, var(--color-surface) 0%, #fff 100%);
  border-bottom: 1px solid var(--color-border);
}
.exec-summary .container { max-width: 1180px; }
.exec-summary-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-5), 3vw, var(--space-7));
  box-shadow: var(--shadow);
  position: relative;
}
.exec-summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.exec-header {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.exec-header .exec-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-accent-dark); font-weight: 700; }
.exec-header h2 { margin: var(--space-1) 0 0; font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem); flex: 1; min-width: 260px; }
.exec-header .meta { font-size: 0.8125rem; color: var(--color-text-subtle); font-family: var(--font-mono); letter-spacing: 0.04em; }
.findings { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5) var(--space-6); }
@media (max-width: 760px) { .findings { grid-template-columns: 1fr; } }
.findings li { display: grid; grid-template-columns: 56px 1fr; gap: var(--space-4); align-items: start; }
.findings .finding-num { font-family: var(--font-mono); font-size: 2rem; font-weight: 800; color: var(--color-accent); line-height: 0.9; letter-spacing: -0.02em; padding-top: 0.15em; }
.findings h3 { font-size: 1.0625rem; margin: 0 0 var(--space-2); font-weight: 700; letter-spacing: -0.01em; color: var(--color-text); }
.findings p { margin: 0; font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.55; }

/* Sidebar utility actions */
.sidebar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.sidebar-actions h4 { flex-basis: 100%; }
.uaction {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 5px 10px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: border-color 0.15s var(--ease), color 0.15s var(--ease), background-color 0.15s var(--ease);
}
.uaction:hover { border-color: var(--color-accent); color: var(--color-accent-dark); background: var(--color-accent-soft-2); }
.uaction:active { transform: translateY(1px); }
.uaction svg { width: 13px; height: 13px; flex-shrink: 0; }
.uaction[data-copied="true"] { border-color: var(--color-success); color: var(--color-success); background: var(--color-success-bg); }

/* Scroll-to-top floating button */
.scroll-top {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), background-color 0.15s var(--ease);
  box-shadow: var(--shadow);
  text-decoration: none;
  z-index: 90;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--color-primary-hover); }
.scroll-top:focus-visible { box-shadow: var(--shadow-focus); outline: none; }
.scroll-top svg { width: 18px; height: 18px; }

/* Refined vendor card hover lift */
@media (prefers-reduced-motion: no-preference) {
  .vendor-card { transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
  .vendor-card:hover:not(.top) { transform: translateY(-2px); box-shadow: var(--shadow); }
}

/* Source attribution under figures */
.figure figcaption::before { content: "Source · "; color: var(--color-accent-dark); font-weight: 700; font-style: normal; letter-spacing: 0.04em; }

/* Tighter, more confident link rhythm in body */
.article-content p a, .article-content li a { color: var(--color-primary-hover); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-content p a:hover, .article-content li a:hover { color: var(--color-accent-dark); text-decoration-color: var(--color-accent); }

/* Vendor profile divider rhythm */
.article-content > #company-profiles > article.vendor-card + article.vendor-card { margin-top: var(--space-6); }

/* Print */
@media print {
  .topbar, .trust-strip, .site-header, .sidebar, .site-footer, .progress-bar, .cite-actions, .cite-btn, .scroll-top, .exec-summary-card::before, .vendor-card.top::before { display: none !important; }
  .article-grid { grid-template-columns: 1fr; }
  body { font-size: 10.5pt; line-height: 1.55; background: #fff; color: #000; }
  a { color: #000; text-decoration: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
  .vendor-card, .figure, .compare-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
  h1, h2, h3 { break-after: avoid; color: #000; }
  .stats-band, .cite-block { background: #fff !important; color: #000 !important; border: 1px solid #ccc; }
  .stats-band .num, .stats-band .label { color: #000 !important; }
  .article-content > section.chapter { border-top: 1px solid #ccc; }
  .article-content > section.chapter::before { color: #555; }
  .findings .finding-num { color: #555; }
  thead th { background: #f5f5f5 !important; }
  .exec-summary-card { box-shadow: none; border: 1px solid #ccc; }
}
