/* ==================================================================
   All-In-One Workspace — design system v3 (2026)
   Identity: businesslike, neutral comparison platform. Crisp white
   surfaces, generous air, one confident blue family, and the feature
   matrix as the visual centrepiece of the site.
   Constraints: system fonts only, zero external resources, zero JS.
   ================================================================== */

/* ---------------------------------------------------------------
   1. Design tokens
   --------------------------------------------------------------- */
:root {
  color-scheme: light;

  /* Neutral slate scale */
  --ink: #0f172a;          /* headings, near-black             */
  --body-c: #334155;       /* body copy                        */
  --soft: #475569;         /* secondary copy                   */
  --muted: #64748b;        /* captions, labels — AA on white   */

  --surface: #ffffff;
  --bg-soft: #f8fafc;
  --bg-tint: #f1f5f9;

  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  /* One blue family, used with intent */
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;

  /* Verdict colors for matrix cells */
  --ok: #047857;
  --no: #b91c1c;

  /* Radii + elevation */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, .07);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .10);
  --shadow-blue: 0 6px 18px rgba(29, 78, 216, .28);

  /* Fluid type scale (360px → 1280px) */
  --step--1: clamp(.8125rem, .79rem + .12vw, .875rem);
  --step-0:  clamp(1rem, .97rem + .17vw, 1.0625rem);
  --step-1:  clamp(1.125rem, 1.06rem + .33vw, 1.25rem);
  --step-2:  clamp(1.25rem, 1.16rem + .45vw, 1.45rem);
  --step-3:  clamp(1.55rem, 1.32rem + 1.15vw, 2.05rem);
  --step-4:  clamp(1.9rem, 1.45rem + 2.25vw, 2.8rem);
  --step-5:  clamp(2.15rem, 1.5rem + 3.3vw, 3.55rem);

  /* Spacing rhythm */
  --space-xs: .5rem;
  --space-s: 1rem;
  --space-m: 1.5rem;
  --space-l: clamp(2rem, 1.5rem + 2vw, 3rem);
  --space-section: clamp(3.25rem, 2.25rem + 4vw, 5.75rem);

  /* Layout */
  --container: 1140px;
  --prose: 70ch;
  --header-h: 4rem;

  --font-sans: "Segoe UI Variable Text", "Segoe UI", -apple-system,
               BlinkMacSystemFont, "Helvetica Neue", Roboto, Arial, sans-serif;
}

/* ---------------------------------------------------------------
   2. Reset & base
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--body-c);
  background: var(--surface);
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 .75em;
  font-weight: 700;
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
}

a {
  color: var(--blue-700);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--blue-800); }

strong { color: var(--ink); }

img, svg { max-width: 100%; height: auto; }

::selection { background: var(--blue-100); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 2px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ---------------------------------------------------------------
   3. Layout utilities
   --------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}
.narrow { max-width: 800px; }

section { padding-block: var(--space-section); }

/* Comfortable reading measure for running text */
section p, section li { max-width: var(--prose); }

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--blue-700);
  color: #fff;
  padding: .6rem 1.1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
}

/* ---------------------------------------------------------------
   4. Header
   --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  padding-block: .5rem;
}
.header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  white-space: nowrap;
}
.brand:hover { color: var(--blue-800); }
.brand-mark {
  display: inline-block;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background:
    linear-gradient(#fff, #fff) center / 2px 12px no-repeat,
    linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
    linear-gradient(135deg, var(--blue-600), var(--blue-800));
  box-shadow: 0 1px 3px rgba(29, 78, 216, .35);
}
.site-header nav {
  display: flex;
  gap: clamp(.9rem, 2.5vw, 1.75rem);
}
.site-header nav a {
  color: var(--soft);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.site-header nav a:hover {
  color: var(--blue-700);
  border-bottom-color: var(--blue-600);
}
.site-header nav a[aria-current="page"] {
  color: var(--blue-800);
  border-bottom-color: var(--blue-600);
  font-weight: 600;
}

/* ---------------------------------------------------------------
   5. Hero (home)
   --------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--surface);
  padding-block: clamp(3.5rem, 2.5rem + 5vw, 6.75rem) clamp(3rem, 2rem + 4vw, 5.25rem);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(44rem 24rem at 88% -12%, rgba(37, 99, 235, .11), transparent 60%),
    linear-gradient(to right, rgba(15, 23, 42, .035) 1px, transparent 1px) 0 0 / 3.25rem 100%,
    linear-gradient(to bottom, rgba(15, 23, 42, .035) 1px, transparent 1px) 0 0 / 100% 3.25rem;
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent);
  mask-image: linear-gradient(to bottom, #000 55%, transparent);
}
.hero .container { position: relative; }

.eyebrow {
  display: inline-block;
  color: var(--blue-800);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  padding: .35rem 1rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .01em;
  margin: 0 0 1.5rem;
  max-width: 100%;
}

.hero h1 {
  font-size: var(--step-5);
  line-height: 1.06;
  letter-spacing: -.025em;
  margin: 0 0 1.25rem;
  max-width: 21ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-700);
  background: linear-gradient(transparent 68%, var(--blue-100) 0);
}

.lede {
  font-size: var(--step-1);
  line-height: 1.65;
  max-width: 62ch;
  color: var(--soft);
  margin: 0 0 2rem;
}
.lede strong { color: var(--blue-800); }

.hero-cta { display: flex; gap: .85rem; flex-wrap: wrap; }

/* ---------------------------------------------------------------
   6. Buttons
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.55rem;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: .975rem;
  line-height: 1.3;
  transition: background .15s, border-color .15s, box-shadow .15s, transform .15s;
}
.btn.primary {
  background: var(--blue-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn.primary:hover {
  background: var(--blue-800);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}
.btn.outline {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--blue-700);
}
.btn.outline:hover {
  border-color: var(--blue-600);
  background: var(--blue-50);
}
.btn.large { padding: 1rem 2rem; font-size: 1.05rem; }

.cta-row {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  align-items: center;
  margin-block: 1.75rem 0;
}

/* ---------------------------------------------------------------
   7. Section headings
   --------------------------------------------------------------- */
section h2 { font-size: var(--step-3); margin-bottom: 1.25rem; }
section h3 { font-size: var(--step-2); }

/* ---------------------------------------------------------------
   8. "Why now" narrative band
   --------------------------------------------------------------- */
.why-now {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.bullets {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.bullets li {
  margin-bottom: .65rem;
  padding-left: .35rem;
}
.bullets li::marker {
  color: var(--blue-700);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------------
   9. The feature matrix (centrepiece)
   --------------------------------------------------------------- */
.ranking {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

/* Scroll container: tables never cause page-wide overflow. */
.table-wrap {
  margin-top: var(--space-m);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.table-wrap::-webkit-scrollbar { height: 8px; }
.table-wrap::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}
.table-wrap::-webkit-scrollbar-track { background: var(--bg-soft); }
.table-wrap:focus-visible { outline-offset: -3px; }

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  line-height: 1.5;
}
/* Wide matrices keep their shape and scroll inside the wrap */
.ranking-table.matrix { min-width: 840px; }
.ranking-table.matrix-sm { min-width: 640px; }
.table-wrap.fit .ranking-table { min-width: 0; }

.ranking-table th {
  background: var(--bg-soft);
  color: var(--soft);
  padding: .8rem .9rem;
  text-align: left;
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 2px solid var(--border-strong);
  white-space: nowrap;
}
.ranking-table td {
  padding: .85rem .9rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.ranking-table tbody tr:last-child td { border-bottom: none; }
.ranking-table tbody tr:hover td { background: var(--bg-soft); }

.ranking-table a {
  color: var(--blue-700);
  font-weight: 600;
  text-decoration: none;
}
.ranking-table a:hover { text-decoration: underline; }

/* Winner row */
.ranking-table .winner td {
  background: var(--blue-50);
  border-bottom-color: var(--blue-100);
}
.ranking-table .winner:hover td { background: var(--blue-50); }
.ranking-table .winner td:first-child { box-shadow: inset 3px 0 0 var(--blue-600); }
.ranking-table .winner strong,
.ranking-table .winner strong a { color: var(--blue-800); }

/* Rank indicator */
.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--soft);
  font-weight: 700;
  font-size: .8rem;
  font-variant-numeric: tabular-nums;
}
.winner .rank-num {
  background: var(--blue-700);
  color: #fff;
  box-shadow: 0 2px 6px rgba(29, 78, 216, .35);
}

/* Score badge */
td.score { white-space: nowrap; }
.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.9rem;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 700;
  font-size: .875rem;
  font-variant-numeric: tabular-nums;
}
.winner .score-badge {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #fff;
  box-shadow: 0 2px 8px rgba(29, 78, 216, .3);
}

/* Cell verdict marks */
.ranking-table td.ok { color: var(--ok); font-weight: 600; }
.ranking-table td.no { color: var(--no); font-weight: 600; }
.ranking-table td.na { color: var(--muted); }

/* ---------------------------------------------------------------
   10. Winner spotlight
   --------------------------------------------------------------- */
.winner-section {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.winner-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: var(--space-l);
  align-items: start;
}
.rank-pill {
  display: inline-block;
  background: var(--blue-700);
  color: #fff;
  padding: .35rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(29, 78, 216, .3);
}
.winner-section h3 { margin-top: 2rem; }

.pros, .cons { list-style: none; padding: 0; margin: .75rem 0 0; }
.pros li, .cons li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .7rem;
}
.pros li::before, .cons li::before {
  position: absolute;
  left: 0;
  top: .1em;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
}
.pros li::before {
  content: "✓";
  color: var(--ok);
  background: rgba(4, 120, 87, .1);
}
.cons li::before {
  content: "–";
  color: var(--soft);
  background: var(--bg-tint);
}

/* At-a-glance data card */
.data-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue-600);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.4rem, 1rem + 1.5vw, 2rem);
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
}
.data-card h3 {
  margin: 0 0 1.1rem;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-800);
}
.data-card dl { margin: 0; }
.data-card dt {
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
  margin-top: .85rem;
}
.data-card dt:first-child { margin-top: 0; }
.data-card dd {
  margin: .15rem 0 .55rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-weight: 500;
  font-size: .92rem;
}
.data-card dd:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* ---------------------------------------------------------------
   11. Alternatives, case by case
   --------------------------------------------------------------- */
.comparison-deep { background: var(--surface); }
.comparison-deep .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.comparison-deep h2 {
  grid-column: 1 / -1;
  margin-bottom: .25rem;
}
.case {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  transition: box-shadow .15s, border-color .15s, transform .15s;
}
.case:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.case h3 { margin: 0 0 .65rem; font-size: 1.15rem; }
.case h3::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 3px;
  border-radius: 2px;
  background: var(--blue-600);
  margin-top: .5rem;
}
.case p { margin: 0; font-size: .95rem; }
.case strong { color: var(--blue-800); }

/* ---------------------------------------------------------------
   12. FAQ
   --------------------------------------------------------------- */
.faq {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.35rem;
  margin-bottom: .65rem;
  transition: box-shadow .15s, border-color .15s;
}
.faq details[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
  list-style: none;
  position: relative;
  padding-right: 2.25rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: .8rem 0 0; color: var(--soft); }

/* ---------------------------------------------------------------
   13. CTA strip
   --------------------------------------------------------------- */
.cta-strip {
  background:
    radial-gradient(40rem 18rem at 15% 0%, rgba(255, 255, 255, .08), transparent 60%),
    linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
  text-align: center;
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 5.5rem);
}
.cta-strip h2 {
  color: #fff;
  font-size: var(--step-4);
  letter-spacing: -.02em;
}
.cta-strip p {
  color: var(--blue-100);
  margin: 0 auto 2rem;
  font-size: var(--step-1);
}
.cta-strip .btn.primary {
  background: #fff;
  color: var(--blue-800);
  box-shadow: var(--shadow-lg);
}
.cta-strip .btn.primary:hover { background: var(--blue-50); }
.cta-strip a { color: inherit; }
.cta-strip :focus-visible { outline-color: #fff; }

/* ---------------------------------------------------------------
   14. Footer
   --------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: #94a3b8;
  padding-block: 2.75rem;
  font-size: .9rem;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--blue-200); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer :focus-visible { outline-color: #fff; }

/* ---------------------------------------------------------------
   15. Review & sub-pages
   --------------------------------------------------------------- */
.review-hero {
  background:
    radial-gradient(36rem 16rem at 90% 0%, rgba(37, 99, 235, .08), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(3rem, 2rem + 3.5vw, 4.75rem);
}
.review-hero .badge {
  display: inline-block;
  background: var(--blue-700);
  color: #fff;
  padding: .35rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(29, 78, 216, .3);
}
.review-hero h1 {
  font-size: var(--step-4);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 1.1rem;
  max-width: 24ch;
}
.review-hero .lede { margin-bottom: 0; }

.review-meta {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.review-meta span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .35rem .95rem;
  font-size: .88rem;
  color: var(--soft);
}
.review-meta strong { color: var(--blue-800); }

/* Long-form review body: centred, comfortable reading measure */
.review-body {
  max-width: 46rem;
  margin-inline: auto;
  padding-block: var(--space-l) var(--space-section);
}
.review-body h2 {
  font-size: var(--step-3);
  margin-top: 2.75rem;
  margin-bottom: .9rem;
}
.review-body h2::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 3px;
  border-radius: 2px;
  background: var(--blue-600);
  margin-bottom: .8rem;
}
.review-body h3 { font-size: var(--step-2); margin-top: 2rem; }
.review-body ul, .review-body ol { padding-left: 1.5rem; }
.review-body li { margin-bottom: .55rem; }
.review-body li::marker { color: var(--blue-700); font-weight: 600; }
.review-body .table-wrap { margin-block: 1.25rem 1.75rem; }

/* Opening summary of a review, set apart as a verdict callout */
.summary-callout {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-left: 4px solid var(--blue-600);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--body-c);
}
.summary-callout strong { color: var(--blue-800); }

.back-link { margin-top: 3rem; }
.back-link a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  color: var(--blue-700);
  text-decoration: none;
  border-bottom: 2px solid var(--blue-100);
  padding-bottom: .1rem;
}
.back-link a:hover {
  border-bottom-color: var(--blue-600);
  color: var(--blue-800);
}

/* ---------------------------------------------------------------
   16. Responsive
   --------------------------------------------------------------- */
@media (max-width: 900px) {
  .winner-grid { grid-template-columns: 1fr; }
  .data-card { position: static; }
}
@media (max-width: 820px) {
  .comparison-deep .container { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-cta .btn, .cta-row .btn { width: 100%; }
  .review-meta span { font-size: .82rem; }
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .summary-callout { padding: 1rem 1.1rem; }
}

/* ---------------------------------------------------------------
   17. Print
   --------------------------------------------------------------- */
@media print {
  .site-header, .hero-pattern, .hero-cta, .cta-strip,
  .site-footer, .btn, .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  section {
    padding-block: 1rem;
    border: none !important;
    background: #fff !important;
  }
  .data-card, .case, .table-wrap, .faq details, .summary-callout {
    box-shadow: none !important;
    border: 1px solid #999;
    position: static;
  }
  .faq details { page-break-inside: avoid; }
  .faq details:not([open]) summary::after { content: ""; }
  .table-wrap { overflow: visible; }
  .ranking-table.matrix, .ranking-table.matrix-sm { min-width: 0; }
  a { color: #000; }
  h1, h2, h3 { color: #000; page-break-after: avoid; }
  tr, li { page-break-inside: avoid; }
}
