/* Design tokens — mirrored from web-design-mansfield.co.uk so the dijitul
   properties read as one family. Values captured from that site's live
   computed styles rather than eyeballed.

   The block at the bottom aliases the older Material-3 variable names to these
   values, because roughly 1,700 generated pages carry inline styles referencing
   them. Aliasing keeps the swap to one stylesheet instead of a template rewrite. */
:root {
  /* brand */
  --accent: #1254EC;
  --accent-dark: #0C43C4;
  --accent-deep: #003EBC;
  --accent-tint: #DCE1FF;
  --accent-wash: #F1F3FE;
  --on-accent: #FFFFFF;

  --teal: #0D9488;
  --teal-deep: #00554E;
  --teal-wash: #F0FDFA;

  /* ink & surface */
  --ink: #1F2125;
  --ink-soft: #434655;
  --muted: #686B74;
  --muted-soft: #737687;
  --canvas: #F5F5F2;
  --surface: #FFFFFF;
  --surface-alt: #EBEDF8;
  --line: #E4E4DF;
  --line-strong: #CDCEC6;
  --inverse: #1F2125;
  --inverse-text: #EEF0FB;

  --error: #BA1A1A;
  --error-wash: #FFDAD6;

  /* type */
  --font-sans: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --t-h1: clamp(2.375rem, 4.2vw + 1.2rem, 3.5rem);
  --t-h2: clamp(1.875rem, 2.4vw + 1.2rem, 2.5rem);
  --t-h3: clamp(1.5rem, 1vw + 1.25rem, 1.75rem);
  --t-h4: 1.375rem;
  --t-title: 1.1875rem;
  --t-lead: 1.125rem;
  --t-base: 0.9375rem;
  --t-sm: 0.8125rem;
  --t-label: 0.6875rem;
  --t-label-lg: 0.875rem;

  /* shape */
  --r-xs: 0.25rem;
  --r-sm: 0.375rem;
  --r: 0.5rem;
  --r-lg: 0.75rem;
  --r-full: 9999px;

  /* elevation */
  --e1: 0 2px 8px -2px rgb(31 33 37 / .04), 0 1px 3px -1px rgb(31 33 37 / .02);
  --e2: 0 16px 32px -8px rgb(31 33 37 / .08), 0 4px 12px -2px rgb(31 33 37 / .03);
  --e3: 0 24px 48px -12px rgb(31 33 37 / .16);
  --ease: cubic-bezier(.4, 0, .2, 1);

  /* space */
  --s-xxs: 0.25rem;
  --s-xs: 0.5rem;
  --s-sm: 0.75rem;
  --s-md: 1rem;
  --s-lg: 1.5rem;
  --s-xl: 2rem;
  --s-2xl: 3rem;
  --s-3xl: 4.5rem;
  --s-4xl: 6rem;
  --section: clamp(3rem, 6vw, 6rem);

  --wrap: 80rem;
  --wrap-narrow: 46rem;
  --measure: 68ch;

  /* ---------------------------------------------------------------------
     Back-compat aliases. Templates generated before the rebrand reference
     these inline; mapping them here avoids touching every page.
     --------------------------------------------------------------------- */
  --s1: var(--s-xxs);
  --s2: var(--s-xs);
  --s3: var(--s-sm);
  --s4: var(--s-md);
  --s5: var(--s-lg);
  --s6: var(--s-xl);
  --s7: var(--s-2xl);
  --s8: var(--s-3xl);
  --s9: var(--s-4xl);

  --r-md: var(--r-sm);
  --r-xl: var(--r-lg);

  --primary: var(--accent);
  --primary-container: var(--accent-dark);
  --on-primary: var(--on-accent);
  --on-primary-container: var(--on-accent);
  --primary-fixed: var(--accent-tint);
  --primary-fixed-dim: var(--accent-tint);
  --on-primary-fixed: var(--accent-deep);
  --on-primary-fixed-variant: var(--accent-dark);
  --inverse-primary: var(--accent-tint);

  --secondary: var(--teal);
  --secondary-container: var(--teal-wash);
  --on-secondary: #FFFFFF;
  --on-secondary-container: var(--teal-deep);
  --secondary-fixed: var(--accent-wash);
  --on-secondary-fixed: var(--accent-deep);

  --tertiary: var(--teal);
  --tertiary-container: var(--teal-wash);
  --tertiary-fixed: #FFDF93;
  --on-tertiary-fixed: #241A00;

  --on-error: #FFFFFF;
  --error-container: var(--error-wash);
  --on-error-container: #93000A;

  --background: var(--canvas);
  --on-background: var(--ink);
  --on-surface: var(--ink);
  --on-surface-variant: var(--muted);
  --surface-variant: var(--surface-alt);
  --surface-dim: var(--line);
  --surface-bright: var(--surface);
  --surface-container-lowest: var(--surface);
  --surface-container-low: #FAFAF8;
  --surface-container: #EFEFEA;
  --surface-container-high: #E9E9E3;
  --surface-container-highest: var(--line);
  --outline: var(--line-strong);
  --outline-variant: var(--line);
  --inverse-surface: var(--ink);
  --inverse-on-surface: var(--inverse-text);
  --surface-tint: var(--accent);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-sans);
  font-size: var(--t-base);
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
p, li { text-wrap: pretty; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-weight: 600; text-wrap: balance; }
h1 { font-size: var(--t-h1); line-height: 1.14; letter-spacing: -0.03em; }
h2 { font-size: var(--t-h2); line-height: 1.2;  letter-spacing: -0.02em; }
h3 { font-size: var(--t-h3); line-height: 1.28; letter-spacing: -0.015em; }
h4 { font-size: var(--t-h4); line-height: 1.3; }

.lead { font-size: var(--t-lead); line-height: 1.56; color: var(--muted); max-width: 54ch; font-weight: 400; }
.muted { color: var(--muted); }
.measure { max-width: var(--measure); }

.eyebrow {
  font-size: var(--t-label); font-weight: 600; line-height: 1.45;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent);
}

/* ---------- links ---------- */
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--accent-dark); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--r-xs); }

.skip-link {
  position: absolute; left: var(--s-md); top: -100%;
  background: var(--ink); color: #fff;
  padding: var(--s-sm) var(--s-lg); border-radius: 0 0 var(--r) var(--r);
  z-index: 100; font-weight: 500; text-decoration: none;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 3vw, 3rem); }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: clamp(1rem, 3vw, 3rem); }
.section { padding-block: var(--section); }
.section-tight { padding-block: clamp(2rem, 4vw, 3rem); }

.prose > * + * { margin-top: var(--s-md); }
.prose h2 { margin-top: var(--s-2xl); }
.prose h3 { margin-top: var(--s-lg); }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: var(--s-xs); }

.grid { display: grid; gap: var(--s-lg); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 12.5rem), 1fr)); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-xs);
  height: 2.75rem;
  padding-inline: 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--r);
  font-size: var(--t-label-lg);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .15s var(--ease), border-color .15s var(--ease),
              color .15s var(--ease), transform .15s var(--ease);
}
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-dark); color: var(--on-accent); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2D3038; color: #fff; }

/* .btn-outline is the legacy name for what the sister site calls .btn-ghost */
.btn-ghost, .btn-outline { border-color: var(--line-strong); background: transparent; color: var(--ink); }
.btn-ghost:hover, .btn-outline:hover { background: var(--surface); border-color: var(--ink); color: var(--ink); }

.btn-light { background: rgb(255 255 255 / .1); color: #fff; border-color: rgb(255 255 255 / .28); }
.btn-light:hover { background: rgb(255 255 255 / .18); color: #fff; }

.btn-lg { height: 3.25rem; padding-inline: 1.75rem; font-size: 1rem; }
.btn-sm { height: 2.25rem; padding-inline: .875rem; font-size: var(--t-sm); }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--s-sm); }

/* ---------- pills / chips ---------- */
.pill, .chip {
  display: inline-flex; align-items: center; gap: .375rem;
  height: 1.5rem; padding-inline: .625rem;
  border-radius: var(--r-xs);
  font-size: var(--t-label); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--accent-wash); color: var(--accent-deep);
  text-decoration: none;
}
.pill-accent { background: var(--accent-wash); color: var(--accent-deep); }
.pill-teal   { background: var(--teal-wash);   color: var(--teal); }
a.chip:hover { background: var(--accent-tint); color: var(--accent-deep); }

/* ---------- cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  box-shadow: var(--e1);
  transition: box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
a.card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
a.card:hover { box-shadow: var(--e2); transform: translateY(-3px); border-color: var(--line-strong); }
a.card:hover h3, a.card:hover h4 { color: var(--accent); }
.card h3 { font-size: var(--t-title); transition: color .2s var(--ease); }
.card p { color: var(--muted); font-size: var(--t-sm); }

/* Alternating sections read better as clean white against the warm canvas.
   --surface-alt (#EBEDF8) is reserved for smaller accents, where it works;
   at full-section width it overpowers the palette. */
.tonal, .tonal-low {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(245 245 242 / .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: var(--s-lg); padding-block: var(--s-sm); }
.brand { display: flex; align-items: center; gap: var(--s-sm); text-decoration: none; color: inherit; flex-shrink: 0; }
.brand-mark {
  width: 2.25rem; height: 2.25rem; border-radius: var(--r);
  background: var(--ink); color: #fff;
  display: grid; place-items: center; font-weight: 600; font-size: .8125rem;
  flex-shrink: 0; letter-spacing: -0.02em;
}
.brand-name { font-weight: 600; font-size: 1rem; letter-spacing: -0.02em; line-height: 1.15; }
.brand-sub { font-size: var(--t-label); color: var(--muted); letter-spacing: .02em; }

.site-nav { display: flex; gap: .25rem; margin-left: auto; align-items: center; }
.site-nav a {
  display: flex; align-items: center; height: 2.5rem;
  padding: 0 .7rem; border-radius: var(--r-sm);
  color: var(--ink-soft); text-decoration: none;
  font-size: var(--t-base); font-weight: 500;
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.site-nav a:hover { color: var(--accent); background: var(--accent-wash); }
.site-nav a[aria-current="page"] { color: var(--accent); }

.header-cta { display: flex; align-items: center; gap: var(--s-md); }
.header-phone { font-weight: 700; font-size: var(--t-base); letter-spacing: -0.01em; text-decoration: none; color: var(--ink); white-space: nowrap; }
.header-phone:hover { color: var(--accent); }
.header-cta .btn { height: 2.25rem; padding-inline: .875rem; }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); padding: .45rem .7rem; font-size: var(--t-sm); font-weight: 500;
}

@media (max-width: 980px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; inset: 100% 0 auto; background: var(--canvas);
    padding: var(--s-sm) clamp(1rem, 3vw, 3rem) var(--s-lg); gap: .125rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--e2);
  }
  .header-phone { display: none; }
}

/* ---------- breadcrumbs ---------- */
.breadcrumbs { padding-block: var(--s-md) 0; font-size: var(--t-sm); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: var(--s-xs); list-style: none; padding: 0; }
.breadcrumbs li { display: flex; align-items: center; gap: var(--s-xs); color: var(--muted); }
.breadcrumbs li + li::before { content: "/"; color: var(--line-strong); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); text-decoration: underline; }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(58rem 30rem at 12% -12%, var(--accent-wash) 0%, transparent 62%),
    radial-gradient(46rem 26rem at 96% -4%, var(--surface-alt) 0%, transparent 58%),
    var(--canvas);
  border-bottom: 1px solid var(--line);
}

/* ---------- FAQ ---------- */
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: var(--s-md) var(--s-lg);
  box-shadow: var(--e1);
}
.faq details + details { margin-top: var(--s-sm); }
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-md);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.375rem; color: var(--accent); line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "\2212"; }
.faq details > p { margin-top: var(--s-sm); color: var(--muted); }

/* ---------- steps / ticks ---------- */
.steps { list-style: none; padding: 0; counter-reset: step; }
.steps li { counter-increment: step; padding-left: 3.25rem; position: relative; }
.steps li + li { margin-top: var(--s-lg); }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: -0.1rem;
  width: 2.25rem; height: 2.25rem; border-radius: var(--r);
  background: var(--accent-wash); color: var(--accent-deep);
  display: grid; place-items: center; font-weight: 600; font-size: var(--t-label-lg);
}
.ticks { list-style: none; padding: 0; }
.ticks li { padding-left: 1.6rem; position: relative; }
.ticks li + li { margin-top: var(--s-sm); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .5rem; height: .5rem; border-radius: var(--r-xs);
  background: var(--accent);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); color: #fff;
  padding: clamp(2.25rem, 4vw, 3.25rem);
  border-radius: var(--r-lg);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: -40% -10% auto auto;
  width: 38rem; height: 38rem;
  background: radial-gradient(circle, rgb(18 84 236 / .28), transparent 62%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgb(255 255 255 / .68); max-width: 48ch; }
.cta-band .btn-primary { background: var(--accent); color: #fff; }
.cta-band .btn-primary:hover { background: #2C6BF5; color: #fff; }
.cta-band .btn-outline, .cta-band .btn-ghost {
  background: rgb(255 255 255 / .1); color: #fff; border-color: rgb(255 255 255 / .28);
}
.cta-band .btn-outline:hover, .cta-band .btn-ghost:hover { background: rgb(255 255 255 / .18); color: #fff; border-color: rgb(255 255 255 / .4); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink); color: rgb(255 255 255 / .72);
  padding-block: var(--s-3xl) var(--s-xl);
  margin-top: var(--s-4xl);
  font-size: var(--t-base);
}
.footer-grid { display: grid; gap: var(--s-xl); grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.site-footer h2 {
  font-size: var(--t-label); text-transform: uppercase; letter-spacing: .06em;
  color: rgb(255 255 255 / .55); margin-bottom: var(--s-sm); font-weight: 600;
}
.site-footer p { color: rgb(255 255 255 / .62); }
.site-footer .muted { color: rgb(255 255 255 / .62); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li + li { margin-top: var(--s-xs); }
.site-footer a { color: rgb(255 255 255 / .78); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  margin-top: var(--s-xl); padding-top: var(--s-md);
  border-top: 1px solid rgb(255 255 255 / .12);
  display: flex; flex-wrap: wrap; gap: var(--s-sm) var(--s-lg);
  justify-content: space-between; color: rgb(255 255 255 / .5); font-size: var(--t-sm);
}

/* ---------- forms ---------- */
.field { display: grid; gap: var(--s-xs); }
.field label { font-weight: 500; font-size: var(--t-label-lg); }
.field input, .field textarea, .field select {
  padding: .7rem var(--s-md);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--surface);
  width: 100%;
  font-size: var(--t-base);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(18 84 236 / .15);
}
.field .hint { font-size: var(--t-sm); color: var(--muted); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.notice { padding: var(--s-md); border-radius: var(--r); border: 1px solid; font-size: var(--t-base); }
.notice-ok { background: var(--teal-wash); border-color: var(--teal); color: var(--teal-deep); }
.notice-err { background: var(--error-wash); border-color: var(--error); color: #93000A; }

/* ---------- stats ---------- */
.stat {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--s-md) var(--s-lg); box-shadow: var(--e1);
}
.stat dt, .stat em {
  display: block; font-style: normal; font-size: var(--t-label);
  text-transform: uppercase; letter-spacing: .06em; font-weight: 600; color: var(--muted);
}
.stat dd, .stat strong {
  display: block; font-size: 2rem; font-weight: 600; letter-spacing: -0.03em;
  color: var(--accent); line-height: 1.1; margin: 0;
}

/* ---------- misc ---------- */
.columns-list { columns: 3 13rem; column-gap: var(--s-lg); list-style: none; padding: 0; }
.columns-list li { break-inside: avoid; margin-bottom: var(--s-xs); }
.columns-list a { color: var(--ink-soft); text-decoration: none; font-size: var(--t-sm); }
.columns-list a:hover { color: var(--accent); text-decoration: underline; }

table { width: 100%; border-collapse: collapse; font-size: var(--t-base); }
.table-scroll { overflow-x: auto; }
th, td { text-align: left; padding: var(--s-sm) var(--s-md); border-bottom: 1px solid var(--line); }
th { font-weight: 600; background: var(--surface-alt); font-size: var(--t-sm); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* Tool-specific styles only.
   The build concatenates tokens.css + global.css + this file into tool.css,
   so the design system stays a single source of truth shared with the Astro site. */

.score-card {
  display: grid;
  gap: var(--s5);
  grid-template-columns: auto 1fr;
  align-items: center;
}
@media (max-width: 640px) {
  .score-card { grid-template-columns: 1fr; }
}

.score-dial {
  --size: 8.5rem;
  width: var(--size);
  height: var(--size);
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  background: conic-gradient(var(--dial-colour) calc(var(--pct) * 1%), var(--surface-container-high) 0);
  position: relative;
}
.score-dial::after {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border-radius: var(--r-full);
  background: var(--surface-container-lowest);
}
.score-dial > span {
  position: relative;
  z-index: 1;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--on-surface);
}
.score-dial > span small { display: block; font-size: 0.75rem; font-weight: 500; color: var(--on-surface-variant); }

.verdict { font-size: 1.5rem; font-weight: 700; }
.verdict.ok   { color: var(--teal-deep); }
.verdict.warn { color: #8A6100; }
.verdict.bad  { color: var(--error); }

.pill {
  display: inline-block;
  padding: 0.1875rem 0.625rem;
  border-radius: var(--r-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pill.ok   { background: var(--teal-wash); color: var(--teal-deep); }
.pill.warn { background: #FFF3D6; color: #6B4B00; }
.pill.bad  { background: var(--error-wash); color: #93000A; }

.checks td:first-child { font-weight: 600; }
.checks tr.bad  td:first-child { color: var(--on-error-container); }

.url-box {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8125rem;
  word-break: break-all;
  background: var(--surface-container);
  padding: var(--s3) var(--s4);
  border-radius: var(--r-md);
}

.check-form { display: flex; gap: var(--s3); flex-wrap: wrap; }
.check-form input[type="url"] {
  flex: 1 1 20rem;
  padding: 0.875rem var(--s4);
  border: 1px solid var(--outline);
  border-radius: var(--r-md);
  background: var(--surface-container-lowest);
  font-size: 1rem;
}
.check-form input[type="url"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 22%, transparent);
}

@media (max-width: 640px) {
  .checks thead { display: none; }
  .checks tr { display: block; border-bottom: 1px solid var(--outline-variant); padding: var(--s3) 0; }
  .checks td { display: block; border: 0; padding: var(--s1) 0; }
  .checks td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--on-surface-variant);
  }
}
