/* ============================================================
   NEXT GROWTH V2 — "SYSTEM" core
   Donker, technisch, precies. Meetlat: Linear / Vercel.
   ============================================================ */

:root {
  --bg: #0B0A08;
  --bg-raise: #131109;
  --bg-raise-2: #1A1712;
  --cream: #F2EFE7;
  --cream-2: #FFFFFF;
  --cream-ink: #1E1B15;
  --cream-ink-2: rgba(30,27,21,.68);
  --cream-line: rgba(30,27,21,.12);
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .14);
  --text: #F5F6F7;
  --text-2: rgba(245, 246, 247, .68);
  --text-3: rgba(245, 246, 247, .42);
  --accent: #C9A45F;
  --accent-strong: #B8914A;
  --accent-dim: rgba(201,164,95,.14);
  --glow: rgba(201,164,95,.32);
  --warn: #FBBF24;
  --danger: #F87171;

  --font: "Inter", system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.3, .64, 1);
  --r: 12px;
}

/* ---------- reset ---------- */

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

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

body {
  font-family: var(--font);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { color: var(--text); font-weight: 700; letter-spacing: -.02em; text-wrap: balance; }

::selection { background: var(--accent-strong); color: #201709; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

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

/* ---------- typografie ---------- */

.h1 {
  font-family: var(--serif);
  font-size: clamp(2.9rem, 6.4vw, 5rem);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.08;
}
.h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -.005em;
  line-height: 1.14;
}
.h1 em, .h2 em { font-style: normal; color: var(--accent); }
.lede { font-size: clamp(1.02rem, 1.4vw, 1.2rem); max-width: 36em; }

.mono {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

.grad-text {
  background: linear-gradient(120deg, #E7CA8E 10%, var(--accent) 60%, #9A7638);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- layout ---------- */

.wrap { width: min(100%, 1200px); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

.sectie { padding-block: clamp(4.5rem, 10vh, 7.5rem); border-top: 1px solid var(--line); }

.sectie-kop { max-width: 44rem; margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.sectie-kop .eyebrow { margin-bottom: .9rem; }
.sectie-kop p { margin-top: .9rem; }

.skip {
  position: fixed; top: .75rem; left: .75rem; z-index: 400;
  padding: .6rem 1rem; background: var(--accent-strong); color: var(--bg);
  font-weight: 600; font-size: .85rem; border-radius: 8px; text-decoration: none;
  transform: translateY(-300%); transition: transform .2s var(--ease);
}
.skip:focus-visible { transform: none; }

.sr-only { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }

/* ---------- knoppen & chips ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.5rem;
  background: linear-gradient(180deg, #DDBA7C, #B8914A);
  color: #201709;
  font-weight: 600; font-size: .9rem; letter-spacing: -.01em;
  border-radius: 999px; text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 0 0 1px rgba(201,164,95,.4), 0 10px 30px -8px var(--glow); }
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { box-shadow: none; border-color: rgba(255,255,255,.28); background: var(--bg-raise); }
.btn--sm { padding: .5rem 1rem; font-size: .84rem; }

.pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .38rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  font-size: .8rem; font-weight: 500; color: var(--text-2);
  text-decoration: none;
  transition: border-color .18s var(--ease);
}
.pill:hover { border-color: var(--line-strong); }
.pill .dot { flex: none; }

.kbd {
  display: inline-flex; align-items: center;
  padding: .1rem .45rem;
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 5px;
  background: var(--bg-raise-2);
  font-family: var(--mono); font-size: .68rem; color: var(--text-2);
}

.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; background: var(--text-3); }
.dot--ok { background: var(--accent); box-shadow: 0 0 8px var(--glow); }
.dot--warn { background: var(--warn); }
.dot--danger { background: var(--danger); }

/* ---------- kaarten & lagen ---------- */

.card {
  position: relative;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
/* cursor-aware spotlight: JS zet --mx/--my op .card--hover en .app */
.card--hover::after, .app::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(201,164,95,.10), transparent 65%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.card--hover:hover::after, .app:hover::after { opacity: 1; transition-duration: .08s; }
.app { position: relative; }
/* soepel touch-scrollen voor de app-tabellen op mobiel */
.tbl-scroll, .rank-tbl-wrap { -webkit-overflow-scrolling: touch; }
.card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 1px;
  border-radius: var(--r) var(--r) 0 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  pointer-events: none;
}
.card--hover:hover { transform: translateY(-3px); border-color: var(--line-strong); transition-duration: .08s; }

.g-border {
  position: relative;
  border-radius: calc(var(--r) + 1px);
  background:
    linear-gradient(var(--bg-raise), var(--bg-raise)) padding-box,
    linear-gradient(140deg, rgba(201,164,95,.5), rgba(255,255,255,.10) 40%, rgba(201,164,95,.18)) border-box;
  border: 1px solid transparent;
}

.glow-field {
  position: absolute;
  width: min(72vw, 54rem); aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse at center, var(--glow), transparent 65%);
  filter: blur(48px);
  opacity: .5;
  pointer-events: none;
}

/* ---------- KPI's & logo-rij ---------- */

.kpi { display: grid; gap: .3rem; }
.kpi b {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.kpi b em { font-style: normal; color: var(--accent); }
.kpi b span { font: inherit; color: inherit; }
.kpi > span { font-size: .85rem; color: var(--text-3); }

.logo-row {
  display: flex; flex-wrap: wrap; gap: 1.2rem 2.8rem;
  align-items: center; justify-content: center;
}
.logo-row li {
  font-weight: 600; font-size: .95rem; letter-spacing: -.01em;
  color: var(--text-3);
  transition: color .3s var(--ease);
  text-align: center;
}
.logo-row li:hover { color: var(--text-2); transition-duration: .08s; }
.logo-row .logo-metric {
  display: block;
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--accent);
  margin-top: .2rem;
  opacity: .85;
}

/* telefoon-frame voor verticale reels */
.phone {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: var(--bg-raise);
  padding: 8px;
  overflow: hidden;
}
.phone::before {
  content: "";
  position: absolute; top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 5px;
  border-radius: 99px;
  background: rgba(255,255,255,.14);
  z-index: 2;
}
.phone video { display: block; width: 100%; border-radius: 15px; background: var(--bg); }

/* flow-stappen lichten sequentieel op (JS zet --fi en .is-run) */
html.js .flow-steps .flow-step {
  opacity: .35;
  transform: translateY(6px);
  transition: opacity .5s var(--ease), transform .5s var(--ease-spring);
  transition-delay: calc(320ms * var(--fi, 0));
}
html.js .flow-steps .flow-verbinder {
  opacity: .25;
  transition: opacity .5s var(--ease);
  transition-delay: calc(320ms * var(--fi, 0) + 160ms);
}
html.js .flow-steps.is-run .flow-step { opacity: 1; transform: none; }
html.js .flow-steps.is-run .flow-verbinder { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  html.js .flow-steps .flow-step, html.js .flow-steps .flow-verbinder { opacity: 1; transform: none; }
}

/* ---------- navigatie ---------- */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 300;
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav__in {
  display: flex; align-items: center; gap: 1.5rem;
  height: 60px;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 600; font-size: .82rem; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text); text-decoration: none;
  white-space: nowrap;
}
.nav__links { display: flex; gap: .25rem; margin-inline: auto; }
.nav__links a {
  padding: .45rem .62rem;
  font-size: .88rem; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  border-radius: 7px;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav__links a[aria-current="page"] { color: var(--accent); }
.nav__cta { display: flex; gap: .6rem; }
.nav__burger { display: none; }

@media (max-width: 1180px) {
  .nav__links {
    position: fixed; top: 60px; left: 0; right: 0;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    z-index: 250;
    flex-direction: column; gap: .1rem;
    padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
    background: var(--bg);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    padding: .95rem .4rem; font-size: 1.25rem; font-family: var(--serif); font-weight: 400;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a[aria-current="page"] { color: var(--accent); }
  .nav__cta .nav__demo { display: none; }
  .nav__burger {
    display: grid; gap: 5px; padding: .6rem .2rem .6rem .6rem;
  }
  .nav__burger i { width: 20px; height: 1.6px; background: var(--text); border-radius: 2px; transition: transform .2s var(--ease); transform-origin: center; }
  .nav__burger[aria-expanded="true"] i:first-child { transform: translateY(3.3px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] i:last-child { transform: translateY(-3.3px) rotate(-45deg); }
}

/* ---------- footer ---------- */

.foot { border-top: 1px solid var(--line); }
.foot__cta {
  text-align: center;
  padding-block: clamp(4rem, 9vh, 6.5rem);
}
.foot__cta h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.03em; }
.foot__cta p { margin-top: .8rem; color: var(--text-2); }
.foot__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

.foot__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  padding-block: 3rem;
  border-top: 1px solid var(--line);
}
.foot__brand { font-weight: 700; color: var(--text); letter-spacing: -.02em; }
.foot__meta { margin-top: .7rem; color: var(--text-3); line-height: 1.9; }
.foot__grid nav { display: grid; gap: .45rem; align-content: start; }
.foot__grid h3 { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); font-weight: 500; margin-bottom: .35rem; }
.foot__grid nav a { font-size: .88rem; color: var(--text-2); text-decoration: none; }
.foot__grid nav a:hover { color: var(--text); }
.foot__base {
  display: flex; align-items: center; gap: .6rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--text-3);
}
@media (max-width: 720px) {
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__grid > div { grid-column: 1 / -1; }
}

/* ---------- lichte (crème) sectie ---------- */

.sectie--licht {
  background: var(--cream);
  color: var(--cream-ink-2);
  border-top: 0;
}
.sectie--licht h1, .sectie--licht h2, .sectie--licht h3, .sectie--licht h4 { color: var(--cream-ink); }
.sectie--licht .lede { color: var(--cream-ink-2); }
.sectie--licht .mono, .sectie--licht .kpi > span { color: rgba(30,27,21,.5); }
.sectie--licht .kpi b { color: var(--cream-ink); }
.sectie--licht .eyebrow { color: #A07E3E; }
.sectie--licht .card {
  background: var(--cream-2);
  border-color: var(--cream-line);
  color: var(--cream-ink-2);
}
.sectie--licht .card::before { background: none; }
.sectie--licht .btn--ghost { color: var(--cream-ink); border-color: rgba(30,27,21,.25); }
.sectie--licht .btn--ghost:hover { background: rgba(30,27,21,.05); }

/* ---------- reveals (alleen verborgen mét JS) ---------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .55s var(--ease-spring);
  transition-delay: calc(60ms * var(--i, 0));
}
html.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   NG/OS — app-mockups (fotorealistisch niveau)
   ============================================================ */

.app {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  font-size: .8rem;
  color: var(--text-2);
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 24px 60px -30px rgba(0,0,0,.8);
}

.app--tilt {
  transform: perspective(1400px) rotateX(14deg) scale(.98);
  transform-origin: top center;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .app--tilt { transform: none; }
}
/* op mobiel geen scheve tilt — recht en rustig */
@media (max-width: 720px) {
  .app--tilt { transform: none !important; }
}

.app-chrome {
  display: flex; align-items: center; gap: .9rem;
  padding: .6rem .9rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.app-chrome .dots { display: flex; gap: 5px; }
.app-chrome .dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.12); }
.app-chrome .route {
  font-family: var(--mono); font-size: .68rem; color: var(--text-3);
  padding: .18rem .7rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: 6px;
}

.app-body { display: grid; grid-template-columns: 200px 1fr; min-height: 0; }
@media (max-width: 720px) {
  .app-body { grid-template-columns: 1fr; }
  .app-body .app-side.app-side { display: none; }
}

.app-side {
  border-right: 1px solid var(--line);
  padding: .8rem .6rem;
  display: flex; flex-direction: column; gap: .12rem;
  background: rgba(255,255,255,.015);
}
.app-side .side-label {
  font-family: var(--mono); font-size: .6rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-3);
  padding: .7rem .6rem .3rem;
}
.side-item {
  display: flex; align-items: center; gap: .55rem;
  padding: .42rem .6rem;
  border-radius: 7px;
  font-size: .78rem; font-weight: 500; color: var(--text-2);
  white-space: nowrap;
}
.side-item svg { flex: none; opacity: .75; }
.side-item:hover { background: rgba(255,255,255,.04); }
.side-item.is-active { background: var(--accent-dim); color: var(--accent); }
.side-item.is-active svg { opacity: 1; }
.side-item .count { margin-left: auto; font-family: var(--mono); font-size: .62rem; color: var(--text-3); }
.app-side .side-user {
  margin-top: auto;
  display: flex; align-items: center; gap: .55rem;
  padding: .6rem .6rem .2rem;
  border-top: 1px solid var(--line);
  font-size: .74rem; color: var(--text-2);
}

.app-top {
  display: flex; align-items: center; gap: 1rem;
  padding: .55rem .9rem;
  border-bottom: 1px solid var(--line);
}
.app-search {
  display: flex; align-items: center; gap: .5rem;
  flex: 1; max-width: 260px; min-width: 0;
  padding: .32rem .6rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: 7px;
  color: var(--text-3); font-size: .74rem;
  white-space: nowrap; overflow: hidden;
}
.app-search .kbd { margin-left: auto; }
.app-top .app-actions { margin-left: auto; display: flex; align-items: center; gap: .6rem; }

.app-main { padding: 1rem; display: grid; gap: 1rem; align-content: start; min-width: 0; }
.app-main h4 { font-size: .95rem; font-weight: 600; letter-spacing: -.01em; }

/* avatars */
.avatar {
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-dim); color: var(--accent);
  font-size: .58rem; font-weight: 700; letter-spacing: 0;
  border: 1px solid rgba(201,164,95,.25);
  flex: none;
}
.avatar--b { background: rgba(251,191,36,.14); color: var(--warn); border-color: rgba(251,191,36,.25); }
.avatar--c { background: rgba(255,255,255,.08); color: var(--text-2); border-color: var(--line-strong); }
.avatar-stack { display: flex; }
.avatar-stack .avatar { margin-left: -7px; box-shadow: 0 0 0 2px var(--bg-raise); }
.avatar-stack .avatar:first-child { margin-left: 0; }

/* badges */
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .12rem .55rem;
  border-radius: 999px;
  font-size: .66rem; font-weight: 600; letter-spacing: .01em;
  background: rgba(255,255,255,.06); color: var(--text-2);
  white-space: nowrap;
}
.badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.badge--ok { background: var(--accent-dim); color: var(--accent); }
.badge--warn { background: rgba(251,191,36,.12); color: var(--warn); }
.badge--danger { background: rgba(248,113,113,.12); color: var(--danger); }
.badge--muted { background: rgba(255,255,255,.06); color: var(--text-3); }

/* datatabel */
.tbl { width: 100%; border-collapse: collapse; font-size: .78rem; }
.tbl th {
  font-family: var(--mono); font-size: .6rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--text-3); text-align: left;
  padding: .45rem .7rem;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.tbl td {
  padding: .55rem .7rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-2);
  white-space: nowrap;
  vertical-align: middle;
}
.tbl tr:last-child td { border-bottom: 0; }
.tbl tbody tr { transition: background .15s var(--ease); }
.tbl tbody tr:hover { background: rgba(255,255,255,.025); }
.tbl td:first-child { color: var(--text); font-weight: 500; }
.tbl .num { font-family: var(--mono); font-size: .72rem; font-variant-numeric: tabular-nums; }

/* grafieken */
.chart { width: 100%; height: auto; display: block; }
.chart .grid-line { stroke: var(--line); stroke-width: 1; }
.chart .area { fill: url(#chartFill); }
.chart .lijn { fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; }
.chart .punt { fill: var(--accent); }
.chart text { font-family: var(--mono); font-size: 8.5px; fill: var(--text-3); }

.bars { display: flex; align-items: flex-end; gap: 5px; height: 52px; }
.bars i {
  flex: 1; min-width: 4px;
  height: calc(1% * var(--v, 40));
  background: linear-gradient(to top, rgba(201,164,95,.25), var(--accent));
  border-radius: 3px 3px 0 0;
  opacity: .9;
}
.bars i.dim { background: rgba(255,255,255,.10); }

/* product-video in app-frame */
.app > video { display: block; width: 100%; background: var(--bg); }
.app-chrome .badge { margin-left: auto; }

figure.bewijs { margin: 0; display: grid; gap: .7rem; }
figure.bewijs figcaption {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--text-3);
  display: flex; align-items: center; gap: .55rem;
  flex-wrap: wrap;
}
figure.bewijs figcaption .dot { flex: none; }
figure.bewijs figcaption a { color: var(--accent); text-decoration: none; }
figure.bewijs figcaption a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* stat-tegel binnen app */
.app-kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: .8rem; }
.app-kpi {
  padding: .75rem .85rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: 9px;
  display: grid; gap: .15rem;
}
.app-kpi b { font-size: 1.15rem; font-weight: 700; color: var(--text); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.app-kpi span { font-size: .64rem; color: var(--text-3); }
.app-kpi .delta { font-family: var(--mono); font-size: .62rem; color: var(--accent); }
.app-kpi .delta--down { color: var(--danger); }
