@font-face {
  font-family: 'Amaranth';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/amaranth/v19/KtkpALODe433f0j1zMF-OMWl42H9FYud.woff2) format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --bg: #0b0f17;
  --border: rgba(255,255,255,.12);
  --border-hover: rgba(255,255,255,.22);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --muted2: rgba(255,255,255,.55);
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 14px;
  --max: 1120px;
  --accent: rgb(244, 150, 59);
  --accent-soft: rgba(244, 150, 59, .16);
  --accent-border: rgba(244, 150, 59, .45);
  --focus: rgba(244, 150, 59, .55);
  --font-brand: 'Amaranth', "DM Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* { box-sizing: border-box }
html { min-height: 100% }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}
.container { flex: 1; }

a { color: inherit }
.container { flex: 1; max-width: var(--max); width: 100%; margin: 0 auto; padding: 28px 18px 64px }
.header {
  display: flex; gap: 16px; align-items: flex-start; justify-content: space-between; flex-wrap: wrap;
  padding: 10px 0 18px;
}
.title {
  display: flex; flex-direction: column; gap: 6px;
}
.title h1 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  font-family: var(--font-brand);
  font-weight: 700;
}
.title p { margin: 0; color: var(--muted); max-width: 100ch; line-height: 1.45 }

.toolbar {
  margin: 14px 0 18px;
}
.toolbarWithDiagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 16px;
  align-items: flex-start;
}
.toolbarLeft {
  display: grid;
  gap: 10px;
  max-width: 380px;
}

/* Gecombineerde 980px breakpoint */
@media (max-width: 980px) {
  .toolbarWithDiagram { grid-template-columns: 1fr; }
  .toolbarLeft { max-width: none; }
  .radialDiagram { order: -1; margin-bottom: 10px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .controls { grid-template-columns: 1fr; }
  .controls > :first-child { grid-column: auto; }
}
@media (max-width: 620px) {
  .grid { grid-template-columns: 1fr; }
}

.yearSwitch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  padding: 2px;
  width: fit-content;
}
.yearBtn {
  padding: 8px 14px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}
.yearBtn:hover { color: var(--text); }
.yearBtn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.yearBtn.active {
  background: rgba(255,255,255,.1);
  color: var(--text);
}
.controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.controls > :first-child {
  grid-column: 1 / span 2;
}
.input, .select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline: none;
}
/* Dropdown-lijst (opties) thema: donkere achtergrond, lichte tekst */
.select option {
  background: var(--bg);
  color: var(--text);
}
.input:focus, .select:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.kpis {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
}
.chips { display: flex; gap: 8px; flex-wrap: wrap }
.legendChip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.legendChip:hover {
  border-color: var(--border-hover);
}
.legendChip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.legendChip[aria-pressed="true"] {
  box-shadow: 0 0 0 2px var(--accent-soft) inset;
}
.legendChip:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.legendChip--new2026 {
  border-color: rgba(147, 214, 255, .45);
  background: rgba(147, 214, 255, .1);
  color: rgba(210, 238, 255, .95);
}
.legendChip--inactive2026 {
  border-color: rgba(170, 177, 191, .5);
  background: rgba(170, 177, 191, .16);
  color: rgba(204, 212, 224, .95);
}
.legendChip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(147, 214, 255);
  box-shadow: 0 0 0 3px rgba(147, 214, 255, .2);
  flex-shrink: 0;
}
.legendChip--inactive2026 .legendChip-dot {
  background: rgba(170, 177, 191, .96);
  box-shadow: 0 0 0 3px rgba(170, 177, 191, .24);
}
.legendChip-label { line-height: 1.2; }
.chip {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}
.removedInitiativesSection {
  margin-top: 16px;
}
.removedInitiativesSection h4 {
  margin: 0 0 8px;
}
.removedInitiativesList {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
.removedInitiativeItem {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 10px 12px;
  text-align: left;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.removedInitiativeTitle {
  font-family: var(--font-brand);
  font-size: 15px;
  line-height: 1.3;
}
.removedInitiativeReason {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.chip:hover {
  border-color: var(--accent-border);
  color: var(--text);
}
.chip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.radialDiagram {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  padding: 12px;
  min-height: 340px;
}
.radialDiagram svg {
  width: 100%;
  height: auto;
  display: block;
}
.radialDiagram .diagramItem {
  cursor: pointer;
}

.card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .08s ease, border-color .12s ease;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover { transform: translateY(-2px); border-color: var(--border-hover); }
.card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
  font-family: var(--font-brand);
  margin-bottom: 6px;
}
.cardTitle--new2026 {
  color: rgb(147, 214, 255);
}
.cardTitle--inactive2026 {
  color: rgba(170, 177, 191, .96);
}
.meta {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  color: var(--muted2);
  font-size: 12px;
}
.badge {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  color: var(--muted);
}
.badgeStatus { font-weight: 500; }
.badgeStatus--active {
  border-color: rgba(100, 180, 120, .5);
  background: rgba(100, 180, 120, .14);
  color: rgba(160, 220, 175, .95);
}
.badgeStatus--pilot {
  border-color: rgba(100, 165, 200, .5);
  background: rgba(100, 165, 200, .12);
  color: rgba(170, 210, 235, .95);
}
.badgeStatus--completed {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
}
.badgeStatus--default {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: var(--muted);
}
.summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 13px;
}
.footerRow {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.link {
  color: rgba(170, 215, 255, .92);
  font-size: 13px;
  text-decoration: none;
}
.link:hover { text-decoration: underline; }

.empty {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
}

/* Drawer (side modal) */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  z-index: 50;
}
.overlay.open { display: block }

.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(520px, 92vw);
  background: rgba(15,20,32,.92);
  border-left: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transform: translateX(104%);
  transition: transform .18s ease;
  z-index: 60;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }

.drawerHeader {
  padding: 14px 14px 10px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 10px; align-items: flex-start;
}
.drawerHeader h2 {
  margin: 0;
  font-size: 18px;
  font-family: var(--font-brand);
  font-weight: 700;
}
.drawerHeader .sub { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.35 }
.iconBtn {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 11px;
  cursor: pointer;
}
.iconBtn:focus { outline: 2px solid var(--accent-soft); outline-offset: 2px; }

.iconBtn--drawerClose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  line-height: 0;
}
.iconBtn--drawerClose .drawerCloseIcon {
  display: block;
  opacity: 0.88;
}
.iconBtn--drawerClose:hover .drawerCloseIcon { opacity: 1; }

.drawerBody {
  padding: 14px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius2);
  padding: 12px;
}
.section + .section { margin-top: 14px; }
.section h4 { margin: 0 0 10px; font-size: 13px; color: var(--muted) }

/* Drawer (zijbalk): zelfde ritme als quick reference (.kv) — titel lichtgrijs, tekst wit, 13px */
.drawer .section h4 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.drawer .summary {
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}
.drawer .drawerProse {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
}
.drawer .drawerSubheading {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--muted);
}
.drawer .drawerSubheading:first-child {
  margin-top: 0;
}
.drawer .drawerList {
  margin: 6px 0 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  list-style-position: outside;
}
.drawer .drawerList li {
  color: var(--text);
}
.drawer .developmentHighlights li {
  color: var(--text);
}
.drawer .developmentHighlights strong {
  color: var(--text);
  font-weight: 650;
}
.drawer .section ul.list:not(.drawerList) {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}
.drawer .section ul.list:not(.drawerList) li {
  color: var(--text);
}
.drawer .drawerReferentie-label {
  color: var(--muted);
  font-weight: 600;
}

.kv {
  display: grid;
  grid-template-columns: minmax(140px, 36%) minmax(0, 1fr);
  gap: 8px 10px;
  font-size: 13px;
}
.kv .k,
.kv .v {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.kv .k { color: var(--muted) }
.kv .v { color: var(--text) }
.list { margin: 8px 0 0; padding-left: 18px; color: var(--muted); font-size: 13px; line-height: 1.5 }
.developmentHighlights { margin-top: 8px; }
.developmentHighlights li { margin-bottom: 8px; }
.developmentDate { color: var(--muted2); font-size: 12px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
}
.button.primary {
  background: var(--accent-soft);
  border-color: var(--accent-border);
  color: var(--accent);
}
.button:hover { border-color: var(--border-hover); }
.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.small { font-size: 12px; color: var(--muted); }

.pageBack {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent);
  text-decoration: none;
}
.pageBack:hover { text-decoration: underline }
.pageBack + .header { margin-top: 12px; }

hr.sep {
  border: none; border-top: 1px solid var(--border);
  margin: 10px 0;
}

/* Top navigation */
.siteHeader {
  background: var(--bg);
  color: var(--text);
  border-bottom: 1px solid rgba(15,23,42,.7);
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.siteHeader-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.siteBrand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-brand);
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
}
.siteLogo {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.siteBrand-sub {
  opacity: .9;
}
.siteNav {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
}
.siteNav-link {
  position: relative;
  padding: 6px 4px;
  font-size: 18px;
  color: rgba(248,250,252,.78);
  font-family: var(--font-brand);
  font-weight: 700;
  text-decoration: none;
}
.siteNav-link:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.siteNav-link.is-active {
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 700px) {
  .siteHeader-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .siteNav {
    gap: 10px;
  }
}

/* Dropdown navigatie */
.navItem {
  position: relative;
  display: flex;
  align-items: center;
}
.navItem--dropdown > .siteNav-link::after,
.navItem--dropdown > .navTrigger::after {
  content: ' ▾';
  font-size: 11px;
  opacity: 0.55;
}
.navTrigger {
  all: unset;
  cursor: pointer;
  position: relative;
  padding: 6px 4px;
  font-size: 18px;
  color: rgba(248,250,252,.78);
  font-family: var(--font-brand);
  font-weight: 700;
}
.navTrigger:hover {
  color: var(--accent);
}
.navTrigger.is-active {
  color: var(--accent);
}
.navTrigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Onzichtbare brug tussen trigger en dropdown — voorkomt dat het menu
   sluit als de muis de gap oversteekt van trigger naar dropdown. */
.navItem--dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 199;
}

.navDropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: rgba(12, 17, 28, 0.97);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  backdrop-filter: blur(12px);
  z-index: 200;
  padding: 6px;
  flex-direction: column;
  gap: 2px;
}
.navItem--dropdown:hover .navDropdown,
.navItem--dropdown:focus-within .navDropdown {
  display: flex;
}
.navDropdown-link {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}
.navDropdown-link:hover {
  color: var(--text);
  background: rgba(255,255,255,.07);
}
.navDropdown-link.is-active {
  color: var(--accent);
  background: rgba(244, 150, 59, .08);
}

/* Op mobiel: dropdown statisch in de stroom tonen */
@media (max-width: 700px) {
  .navItem { width: 100%; }
  .navDropdown {
    display: flex;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 4px 0 0 14px;
    gap: 0;
    min-width: 0;
  }
  .navDropdown-link {
    font-size: 13px;
    padding: 5px 8px;
  }
  .navItem--dropdown > .siteNav-link::after,
  .navItem--dropdown > .navTrigger::after { display: none; }
}

/* Footer */
.siteFooter {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  flex-shrink: 0;
}
.siteFooter-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.siteFooter-title {
  margin: 0;
  font-family: var(--font-brand);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.siteFooter-subtitle {
  margin: 5px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.siteFooter-credit {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--muted2);
  max-width: 55ch;
  line-height: 1.5;
}
.siteFooter-link {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  padding-top: 4px;
}
.siteFooter-link:hover {
  color: var(--text);
  text-decoration: underline;
}

/* Homepagina — hero */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 460px;
  min-height: 220px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,15,23,1) 0%,
    rgba(11,15,23,.75) 40%,
    rgba(11,15,23,.25) 80%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
}
.hero-text {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 18px 36px;
}
.hero-title {
  margin: 0 0 8px;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
}
.hero-subtitle {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 20px);
  color: rgba(255,255,255,.72);
  font-family: var(--font-brand);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Homepagina — introductieblok */
.intro-section {
  display: flex;
  gap: 36px;
  align-items: center;
}
.intro-body {
  flex: 1;
  min-width: 0;
}
/* Licht paneel: logo-PNG’s bevatten zwart; die verdwijnt op donkere pagina-achtergrond */
.intro-logos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 20px;
  align-items: stretch;
  flex-shrink: 0;
  width: 168px;
  padding: 22px 20px;
  background: #FFFFFF;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  opacity: 0.9;
}
.intro-logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 640px) {
  .intro-section { flex-direction: column; }
  .intro-logos {
    flex-direction: row;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 24px;
    padding: 20px 22px;
  }
  .intro-logo {
    width: 132px;
    flex: 0 0 auto;
  }
}
.intro-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.intro-text a {
  color: rgba(170,215,255,.92);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.intro-text a:hover {
  color: #fff;
}

/* Homepagina — navigatiekaarten */
.nav-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 820px) {
  .nav-buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .nav-buttons { grid-template-columns: 1fr; }
}
.navCard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  text-decoration: none;
  color: var(--text);
  transition: transform .1s ease, border-color .12s ease, background .12s ease;
}
.navCard:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
}
.navCard-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navCard-icon svg {
  width: 22px;
  height: 22px;
}
.navCard-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: .55;
}
.navCard-title {
  margin: 0;
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.navCard-desc {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.navCard-arrow {
  margin-top: auto;
  font-size: 13px;
  opacity: .45;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Icon kleurthema's (navCards) */
.icon--amber  { background: rgba(244,150,59,.16); color: rgb(244,150,59); }
.icon--blue   { background: rgba(96,165,250,.14); color: rgb(96,165,250); }
.icon--teal   { background: rgba(45,212,191,.13); color: rgb(45,212,191); }
.icon--green  { background: rgba(74,222,128,.13); color: rgb(74,222,128); }
.icon--purple { background: rgba(167,139,250,.14); color: rgb(167,139,250); }
.icon--rose   { background: rgba(251,113,133,.13); color: rgb(251,113,133); }

/* Reflectie aanbevelingen 2023 — visualisatie */
.recsLayout {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recsLegend {
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.legendItem {
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legendStatusPill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  padding: 6px 10px;
  width: fit-content;
  font-size: 12px;
  color: var(--muted);
}

.legendStatusPill--realized { border-color: rgba(100, 180, 120, .5); background: rgba(100,180,120,.12); color: rgba(160,220,175,.95); }
.legendStatusPill--partial  { border-color: rgba(100, 165, 200, .5); background: rgba(100,165,200,.10); color: rgba(170,210,235,.95); }
.legendStatusPill--none     { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); color: var(--muted); }

.legendStatusIcon { font-weight: 700; }
.legendDesc { color: var(--muted); font-size: 12px; line-height: 1.45; }

.recsColumns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 980px) {
  .recsColumns { grid-template-columns: 1fr; }
  .recsLegend { grid-template-columns: 1fr; }
}

.recsColumn { min-width: 0; }

.recsMainCard {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}

.recsMainHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.recsMainTitle {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  font-size: 16px;
}

.recsMainOverall { flex-shrink: 0; }

.recsSubList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recsSubButton {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .08s ease, border-color .12s ease, background .12s ease;
}

.recsSubButton:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,.05);
  transform: translateY(-1px);
}

.recsSubButton:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.recsSubButton-status { display: inline-flex; }

.recsSubButton-text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
}

.statusDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid transparent;
  flex-shrink: 0;
}

.statusDot--realized { background: rgba(100, 180, 120, .95); border-color: rgba(100,180,120,.55); box-shadow: 0 0 0 3px rgba(100,180,120,.14); }
.statusDot--partial  { background: rgba(100, 165, 200, .95); border-color: rgba(100,165,200,.55); box-shadow: 0 0 0 3px rgba(100,165,200,.12); }
.statusDot--none     { background: rgba(255,255,255,.45); border-color: rgba(255,255,255,.25); box-shadow: 0 0 0 3px rgba(255,255,255,.05); }

.recsDrawerText { color: var(--text); font-size: 13px; line-height: 1.45; }
.recsDrawerBlock { white-space: pre-wrap; }

.recsDrawerStatusText { color: var(--text); font-weight: 500; font-size: 13px; }

/* Use-cases: 3 filterselects naast elkaar in compact blok */
.toolbarLeft--useCases {
  max-width: 595px;
}
.controls--useCases {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.controls--useCases > :first-child {
  grid-column: 1 / span 2;
}
.controls--interop {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.controls--interop > :first-child {
  grid-column: 1 / span 3;
}
.toolbarLeft--interop {
  max-width: 760px;
}

.barChartPanel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  padding: 12px;
}
.barChartTitle {
  margin: 0;
  font-size: 15px;
  font-family: var(--font-brand);
}
.barChartHint {
  margin: 6px 0 10px;
}
.barChartList {
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}
.barRow {
  width: 100%;
  display: grid;
  gap: 6px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  border-radius: 12px;
  padding: 8px 10px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.barRow:hover {
  border-color: var(--border-hover);
}
.barRow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.barRow.is-active {
  border-color: var(--accent-border);
  background: rgba(244, 150, 59, .1);
}
.barRowTop {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.barLabel {
  font-size: 12px;
  color: var(--muted);
}
.barValue {
  font-size: 12px;
  color: var(--text);
}
.barTrack {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.barFill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(244,150,59,.62), rgba(244,150,59,.95));
}

