/* ==========================================================================
   Vectraxis — vectraxis.app
   --------------------------------------------------------------------------
   Eén stylesheet voor de hele site. Bewust geen framework en geen enkele
   externe verbinding: de lettertypes staan in /fonts/ op deze server. Dat is
   geen esthetische keuze maar een inhoudelijke — de privacyverklaring belooft
   dat er niets naar derden gaat, en een webfont van een CDN stuurt het
   IP-adres van elke bezoeker naar die derde partij.

   Kleurgebruik: Vectraxis zelf is neutraal — inkt op papier, haarlijnen,
   cijfers in mono. De kléúr komt van het product. RekenAppie zet daarom
   --product op zijn eigen blauw; een volgend product zet er iets anders neer.
   ========================================================================== */

/* --- Lettertypes (zelf gehost) ------------------------------------------- */

@font-face {
  font-family: 'Plex Sans';
  src: url('/fonts/ibm-plex-sans-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plex Sans';
  src: url('/fonts/ibm-plex-sans-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plex Sans';
  src: url('/fonts/ibm-plex-sans-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plex Serif';
  src: url('/fonts/ibm-plex-serif-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plex Serif';
  src: url('/fonts/ibm-plex-serif-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('/fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('/fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* --- Tokens -------------------------------------------------------------- */

:root {
  /* Papier en inkt. Het papier heeft een lichte koele slag, als kalkpapier. */
  --paper:      #f3f6f5;
  --surface:    #ffffff;
  --surface-2:  #fafbfb;
  --ink:        #121a1e;
  --ink-2:      #38464b;
  --muted:      #6a777c;
  --rule:       #dbe2e1;
  --rule-soft:  #e9eeed;
  --grid:       rgba(18, 26, 30, 0.055);

  /* Productkleur — pagina's van een product overschrijven deze twee. */
  --product:      #2f6f4f;
  --product-deep: #1f5138;
  --product-wash: rgba(47, 111, 79, 0.08);

  --sans:  'Plex Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Plex Serif', Georgia, 'Times New Roman', serif;
  --mono:  'Plex Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;

  --measure: 34rem;   /* ±68 tekens leesregel */
  --page:    68rem;   /* breedte van de paginakolom */
}

/* De donkere variant moet in drie situaties kloppen: expliciet licht,
   expliciet donker, en de standaardstand waarin het besturingssysteem
   beslist. Daarom alleen tokens herdefiniëren, nooit componenten. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --paper:      #0d1214;
    --surface:    #141c1f;
    --surface-2:  #111819;
    --ink:        #e6ecea;
    --ink-2:      #b6c3c3;
    --muted:      #8a999d;
    --rule:       #24312f;
    --rule-soft:  #1b2426;
    --grid:       rgba(230, 236, 234, 0.05);
    --product:      #63b389;
    --product-deep: #8fd0ab;
    --product-wash: rgba(99, 179, 137, 0.12);
  }
}

:root[data-theme='dark'] {
  --paper:      #0d1214;
  --surface:    #141c1f;
  --surface-2:  #111819;
  --ink:        #e6ecea;
  --ink-2:      #b6c3c3;
  --muted:      #8a999d;
  --rule:       #24312f;
  --rule-soft:  #1b2426;
  --grid:       rgba(230, 236, 234, 0.05);
  --product:      #63b389;
  --product-deep: #8fd0ab;
  --product-wash: rgba(99, 179, 137, 0.12);
}

/* --- Basis --------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: 'kern' 1;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--product-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover { text-decoration-thickness: 2px; }

:focus-visible {
  outline: 2px solid var(--product-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Paginaraster -------------------------------------------------------- */

.page { max-width: var(--page); margin: 0 auto; padding: 0 24px; }
.prose { max-width: var(--measure); }

/* --- Kop- en navigatiebalk ----------------------------------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.topbar__inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.wordmark {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.wordmark:hover { color: var(--ink); }

/* Het merkteken: twee assen en een punt in het eerste kwadrant. Vectraxis =
   vector + axis; dit is het enige sierelement op de hele site. */
.mark {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--ink);
}

.topnav { margin-left: auto; display: flex; gap: 22px; align-items: center; }
.topnav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.topnav a:hover { color: var(--ink); }
.topnav a[aria-current='page'] {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--product-deep);
}

@media (max-width: 620px) {
  .topbar__inner { height: auto; padding-top: 10px; padding-bottom: 10px;
    flex-wrap: wrap; gap: 8px 18px; }
  .topnav { margin-left: 0; width: 100%; gap: 16px; flex-wrap: wrap; }
  .topnav a { font-size: 0.85rem; }
}

/* --- Hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: var(--surface-2);
}
/* Millimeterpapier: het raster waarop je een vector uitzet. Vier lagen —
   fijne verdeling, en elke vijfde lijn iets sterker. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid) 1px, transparent 1px),
    linear-gradient(to right, var(--grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
  background-size: 22px 22px, 22px 22px, 110px 110px, 110px 110px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: var(--page);
  margin: 0 auto;
  padding: 84px 24px 72px;
}
@media (max-width: 620px) { .hero__inner { padding: 52px 24px 44px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.2vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 20px;
  max-width: 17ch;
}
.hero .lead {
  font-size: 1.14rem;
  color: var(--ink-2);
  max-width: 40rem;
  margin: 0 0 28px;
}

/* --- Knoppen ------------------------------------------------------------- */

.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover { background: var(--ink-2); color: var(--paper); }
.btn--ghost {
  border-color: var(--rule);
  color: var(--ink);
  background: var(--surface);
}
.btn--ghost:hover { border-color: var(--muted); color: var(--ink); }

/* --- Secties ------------------------------------------------------------- */

.section { padding-block: 64px; border-top: 1px solid var(--rule-soft); }
.section:first-of-type { border-top: 0; }
.section--tight { padding-block: 44px; }

h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.62rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0 0 14px;
}
h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.35;
  margin: 0 0 6px;
}
h4 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

p, ul, ol { margin: 0 0 17px; }
ul, ol { padding-left: 1.25em; }
li { margin-bottom: 7px; }
li::marker { color: var(--muted); }

strong { font-weight: 600; }

.lead-in {
  font-size: 1.06rem;
  color: var(--ink-2);
  max-width: var(--measure);
}

/* --- Kaartenraster ------------------------------------------------------- */

.grid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
.grid > * {
  background: var(--surface);
  padding: 22px 22px 24px;
}
.grid p:last-child { margin-bottom: 0; }
.grid p { font-size: 0.95rem; color: var(--ink-2); }

/* --- Cijferstrook -------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
  gap: 1px;
  background: var(--rule);
  border-block: 1px solid var(--rule);
}
.stat { background: var(--paper); padding: 20px 18px; }
.stat__value {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: block;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-top: 5px;
}

/* --- Productkaart (homepage) --------------------------------------------- */

.product {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--product);
  border-radius: 4px;
  padding: 26px 26px 28px;
}
.product__icon {
  width: 92px; height: 92px;
  border-radius: 18px;
  border: 1px solid var(--rule-soft);
}
.product h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.product__meta {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
@media (max-width: 560px) {
  .product { grid-template-columns: 1fr; gap: 16px; }
  .product__icon { width: 68px; height: 68px; }
}

/* --- Beeldstroken -------------------------------------------------------- */

.shots {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}
.shot { flex: 0 0 208px; scroll-snap-align: start; }
.shot img {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 12px;
  display: block;
  background: var(--surface);
}
.shot figcaption {
  font-size: 0.83rem;
  color: var(--muted);
  margin-top: 9px;
  line-height: 1.45;
}

/* --- Uitgelicht blok ----------------------------------------------------- */

.note {
  border-left: 3px solid var(--product);
  background: var(--product-wash);
  padding: 18px 20px;
  border-radius: 0 4px 4px 0;
  margin: 0 0 22px;
}
.note p:last-child { margin-bottom: 0; }
.note--plain {
  background: var(--surface);
  border-left-color: var(--rule);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--muted);
}

/* --- Tabellen ------------------------------------------------------------ */

.table-scroll { overflow-x: auto; margin: 0 0 22px; }
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.94rem;
  min-width: 30rem;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: top;
}
thead th {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
}
td.num { font-variant-numeric: tabular-nums; font-family: var(--mono); }

/* --- Changelog ----------------------------------------------------------- */

.release {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid var(--rule-soft);
}
.release:first-of-type { border-top: 0; padding-top: 6px; }
.release__side { position: sticky; top: 78px; align-self: start; }
.version {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 1rem;
  font-weight: 500;
  display: block;
}
.release__date {
  font-size: 0.82rem;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.tag {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 2px 7px;
}
.release h3 { margin-bottom: 8px; }
.release ul { margin-bottom: 0; }
.release li { font-size: 0.95rem; color: var(--ink-2); }
@media (max-width: 700px) {
  .release { grid-template-columns: 1fr; gap: 10px; }
  .release__side { position: static; }
  .tag { margin-top: 0; margin-left: 8px; }
}

/* --- Documentkop (privacy, voorwaarden, visie, changelog) ---------------- */

.doc-head {
  border-bottom: 1px solid var(--rule);
  background: var(--surface-2);
}
.doc-head__inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 52px 24px 40px;
}
.doc-head h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 12px;
  max-width: 22ch;
}
.doc-head .lead { font-size: 1.08rem; color: var(--ink-2); max-width: 40rem; margin: 0; }
.meta {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 18px 0 0;
}
.doc { padding-block: 48px 24px; }
.doc h2 { margin-top: 42px; }
.doc h2:first-child { margin-top: 0; }

/* Kruimelpad terug naar het product. */
.crumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 20px;
}
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--ink); }

/* --- Inhoudsopgave ------------------------------------------------------- */

.toc {
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--surface);
  padding: 20px 22px;
  margin: 0 0 34px;
}
.toc ol { margin: 0; padding-left: 1.15em; }
.toc li { font-size: 0.94rem; margin-bottom: 5px; }

/* --- Voet ---------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--rule);
  margin-top: 40px;
  background: var(--surface-2);
}
.site-footer__inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 36px 24px 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--muted);
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--ink); text-decoration: underline; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }

/* --- Kleine hulpklassen -------------------------------------------------- */

.mono { font-family: var(--mono); }
.nowrap { white-space: nowrap; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 22px; }

/* --- Productthema's ------------------------------------------------------
   Een productpagina zet zijn eigen accentkleur door deze klasse op <body>
   (of op één kaart) te plaatsen. Zo blijft de Vectraxis-schil neutraal en
   draagt elk product zijn eigen kleur — ook in de donkere variant, waar een
   accent lichter moet zijn om leesbaar te blijven. */

.t-rekenappie {
  --product:      #2196f3;
  --product-deep: #1565c0;
  --product-wash: rgba(33, 150, 243, 0.09);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .t-rekenappie {
    --product:      #55b0f8;
    --product-deep: #86c8fb;
    --product-wash: rgba(85, 176, 248, 0.13);
  }
}
:root[data-theme='dark'] .t-rekenappie {
  --product:      #55b0f8;
  --product-deep: #86c8fb;
  --product-wash: rgba(85, 176, 248, 0.13);
}

/* --- Juridische pagina's ------------------------------------------------
   Privacyverklaring en voorwaarden zijn doorlopende tekst met tabellen. Ze
   krijgen een iets ruimere kolom dan .prose, omdat een tabel op 34rem niet
   te lezen valt. */

.doc-body { max-width: 46rem; }
.doc-body h2 { margin-top: 40px; }
.doc-body h2:first-child { margin-top: 0; }
.doc-body table tr:first-child th {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
}

/* Ouder blokje uit de juridische pagina's; zelfde behandeling als .note. */
.callout {
  border-left: 3px solid var(--product);
  background: var(--product-wash);
  padding: 18px 20px;
  border-radius: 0 4px 4px 0;
  margin: 0 0 24px;
}
.callout p:last-child { margin-bottom: 0; }

/* --- Correcties na visuele controle -------------------------------------
   De releasetekst liep over de volle paginabreedte (±130 tekens per regel).
   Dat leest niet; een changelog wordt gescand, maar de bullets worden wel
   gelezen. Terug naar een normale leesregel. */

.release > div:last-child { max-width: 44rem; }

/* De cijferstrook staat in de paginakolom. De buitenste cellen laten hun
   zijpadding vallen, zodat de getallen exact uitlijnen met de lopende tekst
   in plaats van er 18px naast te staan. */
.stats > .stat:first-child { padding-left: 0; }
.stats > .stat:last-child  { padding-right: 0; }

/* De productkaart is breed omdat het icoon links staat, maar de tekst ernaast
   moet een normale leesregel houden — anders loopt hij tot 135 tekens door. */
.product > div > p { max-width: 42rem; }

/* --- v1.32: hero met telefoon, domeintegels, grotere schermen ----------- */

/* Tekst links, het toestel rechts. Op smal scherm gewoon onder elkaar. */
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 40px;
  align-items: center;
}
@media (max-width: 760px) {
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__grid .phone { max-width: 220px; margin: 0 auto; }
}

/* Een toestel van louter CSS: donkere rand, ronde hoeken, de schermafbeelding
   erin. Geen plaatje van een telefoon dat je moet meeleveren en dat bij het
   volgende model weer oud is. */
.phone {
  position: relative;
  max-width: 250px;
  margin: 0 0 0 auto;
  padding: 12px;
  border-radius: 34px;
  background: #16211f;
  box-shadow:
    0 30px 60px -30px rgba(18, 26, 30, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: rotate(-2deg);
}
.phone::after {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  width: 84px; height: 6px;
  margin-left: -42px;
  border-radius: 0 0 8px 8px;
  background: #16211f;
}
.phone img {
  display: block;
  width: 100%;
  border-radius: 24px;
  background: var(--surface);
}
@media (prefers-reduced-motion: no-preference) {
  .phone { transition: transform 300ms ease; }
  .phone:hover { transform: rotate(0deg); }
}

/* De vier rekendomeinen als tegels, elk met de kleur die de app zelf gebruikt
   — dezelfde vier die een kind op het startscherm ziet. */
.domains {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 720px) { .domains { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.domain {
  border: 1px solid var(--rule);
  border-top: 4px solid var(--domain, var(--product));
  border-radius: 10px;
  background: var(--surface);
  padding: 16px 16px 14px;
}
.domain__icon { font-size: 1.5rem; line-height: 1; display: block; margin-bottom: 10px; }
.domain h3 { font-size: 1rem; margin: 0 0 6px; }
.domain p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.5; }
.domain--getallen    { --domain: #1565c0; }
.domain--verhoudingen{ --domain: #2e7d32; }
.domain--meten       { --domain: #ef6c00; }
.domain--verbanden   { --domain: #6a1b9a; }

/* Schermen: iets groter, met een zachte schaduw, zodat het niet als een rij
   postzegels oogt. */
.shot { flex: 0 0 236px; }
.shot img {
  border-radius: 18px;
  box-shadow: 0 18px 40px -26px rgba(18, 26, 30, 0.5);
}

/* Vijf cijfers in twee kolommen laat op een telefoon één lege cel over; de
   laatste neemt dan de hele breedte. */
@media (max-width: 720px) {
  .stats > .stat:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
