:root {
  --ink: #14364a;
  --muted: #4a7286;
  --accent: #6aa8c8;
  --accent-deep: #2f7194;
  --glass: rgba(255, 255, 255, 0.78);
  --line: rgba(106, 168, 200, 0.3);
  --sans: "Outfit", "Segoe UI", sans-serif;
  --chip-muted-bg: rgba(82, 112, 134, 0.12);
  --chip-muted-ink: #527086;
  --chip-ice-bg: rgba(122, 171, 207, 0.22);
  --chip-ice-ink: #3d6f96;
  --partial-bg: #fff4e5;
  --partial-ink: #b54708;
  --chip-registered-bg: #dceaf4;
  --chip-registered-ink: #1a3348;
  --ok-bg: #e4f3e8;
  --ok-ink: #087443;
  --chip-done-bg: #e8f0ea;
  --chip-done-ink: #3d6b50;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font: 16.5px/1.55 var(--sans);
  background:
    radial-gradient(900px 480px at 12% -10%, #d4eef6 0%, transparent 55%),
    radial-gradient(700px 420px at 90% 8%, #cfe8f2 0%, transparent 50%),
    linear-gradient(180deg, #e8f6fb 0%, #f6fcfe 42%, #eef7fb 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--accent-deep); }
button { font: inherit; }

.wrap { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }

/* Frost on ::before so Chrome does not composite text/images into the
   backdrop-filter layer (blank paint after window resize until hover). */
.site-header,
.spotlight,
.tile,
.glass-panel,
.how-step,
.exchange-card,
.pillar,
.why article,
.stats,
.zoek-paneel {
  isolation: isolate;
  --frost: 12px;
}
.spotlight,
.tile,
.glass-panel,
.how-step,
.exchange-card,
.pillar,
.why article,
.stats,
.zoek-paneel {
  position: relative;
}
.site-header::before,
.spotlight::before,
.tile::before,
.glass-panel::before,
.how-step::before,
.exchange-card::before,
.pillar::before,
.why article::before,
.stats::before,
.zoek-paneel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  backdrop-filter: blur(var(--frost));
  -webkit-backdrop-filter: blur(var(--frost));
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  --frost: 16px;
  background: rgba(247, 251, 254, 0.65);
  border-bottom: 1px solid var(--line);
}
.site-header .bar { display: flex; align-items: center; min-height: 68px; gap: 12px; flex-wrap: nowrap; }
.logo { flex-shrink: 0; display: flex; align-items: center; min-width: 0; }
.logo img {
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}
.logo .logo-full { display: block; height: 28px; }
.logo .logo-compact { display: none; height: 26px; }
.nav { display: flex; gap: 2px; margin-left: auto; align-items: center; flex-wrap: nowrap; flex-shrink: 0; }
.nav > a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 9px 6px 16px;
  position: relative;
  border-radius: 10px;
  white-space: nowrap;
  transition: color .16s ease, background .16s ease;
}
.nav > a:not(.cta)::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%);
}
.nav > a:not(.cta):hover {
  background: rgba(186, 226, 236, 0.62);
  color: var(--ink);
}
.nav > a.is-here {
  color: var(--accent-deep);
  font-weight: 600;
  background: transparent;
}
.nav > a.is-here::before { background: var(--accent-deep); }
.nav > a.is-here:hover { background: rgba(186, 226, 236, 0.42); }
.nav .cta {
  padding: 7px 14px; border-radius: 999px; background: linear-gradient(180deg, #7eb8d4, #4f93b5);
  color: #fff !important; box-shadow: 0 8px 18px -10px #2f7194;
  white-space: nowrap;
}
.nav .cta:hover { filter: brightness(1.06); }
.nav .cta.ghost {
  background: var(--glass); color: var(--accent-deep) !important;
  border: 1px solid var(--line); box-shadow: none; filter: none;
}
.nav .cta.ghost:hover { background: #fff; }
.lang {
  display: flex; align-items: center; gap: 2px;
  flex-shrink: 0; margin-left: 4px;
}
.lang a {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--ink); text-decoration: none;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.04em;
  padding: 4px 6px 6px; border-radius: 8px;
  position: relative;
}
.lang a img {
  width: 16px; height: 11px; max-width: none; flex-shrink: 0;
  object-fit: cover;
  border-radius: 1px; box-shadow: 0 0 0 1px rgba(20, 54, 74, 0.12);
}
.lang a.on::after {
  content: "";
  position: absolute;
  left: 6px; right: 6px; bottom: 2px;
  height: 1.5px;
  background: var(--accent-deep);
  border-radius: 1px;
}
.lang a:hover { background: rgba(186, 226, 236, 0.42); }
.menu-toggle {
  display: none; margin-left: auto; background: var(--glass);
  border: 1px solid var(--line); border-radius: 12px; padding: 8px 10px;
  flex-shrink: 0;
}

.site-header.is-compact-logo .bar { gap: 8px; }
.site-header.is-compact-logo .logo .logo-full { display: none; }
.site-header.is-compact-logo .logo .logo-compact { display: block; }
.site-header.is-compact-logo .lang { margin-left: 0; }
.site-header.is-compact-logo .zoek-knop { margin-left: 0; }

.site-header.is-collapsed .menu-toggle { display: block; }
.site-header.is-collapsed .bar { gap: 8px; }
/* Shrink the lockup only after the nav is a hamburger, otherwise overflow
   detection never collapses the bar. */
.site-header.is-collapsed .logo { flex: 0 1 auto; min-width: 0; }
.site-header.is-collapsed .logo .logo-full { display: none; }
.site-header.is-collapsed .logo .logo-compact { display: block; height: auto; max-height: 26px; }
.site-header.is-collapsed .logo img { max-width: 100%; }
.site-header.is-collapsed .lang { margin-left: 0; }
.site-header.is-collapsed .nav {
  display: none; position: absolute; top: 68px; right: 16px; left: auto;
  width: max-content; max-width: calc(100vw - 32px);
  background: rgba(255,255,255,0.95); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px; flex-direction: column;
  flex-wrap: nowrap; align-items: stretch; z-index: 30;
  margin-left: 0; gap: 4px;
}
.site-header.is-collapsed .nav.is-open { display: flex; }
.site-header.is-collapsed .nav > a { padding: 10px 12px 10px 22px; }
.site-header.is-collapsed .nav > a:not(.cta)::before { left: 10px; }

.hero { padding: 48px 0 24px; }
.hero h1 {
  font-size: clamp(36px, 6vw, 58px); font-weight: 500; letter-spacing: -0.04em;
  margin: 0 0 8px;
}
.hero p { margin: 0; color: var(--muted); max-width: 36em; }

.spotlight {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 0; background: var(--glass); border: 1px solid var(--line);
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(22, 50, 74, 0.45);
  text-decoration: none; color: inherit; margin-bottom: 32px;
}
.spotlight:has(img) {
  padding: 14px;
  gap: 20px;
  align-items: stretch;
}
.spotlight img {
  width: 100%; height: 100%; object-fit: cover; min-height: 300px;
  border-radius: 18px; border: 1px solid var(--line); background: #fff;
}
.spotlight .copy { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.spotlight:has(img) .copy { padding: 28px 18px 28px 8px; }
.chip {
  align-self: flex-start; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(106, 155, 209, 0.16); color: var(--accent-deep);
  padding: 5px 10px; border-radius: 999px; font-weight: 700;
}
.spotlight h2 { font-weight: 500; font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.03em; line-height: 1.2; margin: 14px 0; }
.spotlight p { color: var(--muted); margin: 0 0 16px; }
.arrow { font-weight: 600; color: var(--accent-deep); }

.mosaic {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.mosaic > .post-item { min-width: 0; }
.mosaic > .is-spotlight { grid-column: 1 / -1; }
.mosaic > .is-spotlight .spotlight { margin-bottom: 0; }
.tile {
  display: block;
  height: 100%;
  background: var(--glass); border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; text-decoration: none; color: inherit;
  --frost: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -28px rgba(22,50,74,.5); }
.tile:has(img) { padding: 12px 12px 0; }
.tile img {
  aspect-ratio: 16/11; width: 100%; object-fit: cover;
  border-radius: 16px; border: 1px solid var(--line); background: #fff;
}
.tile .copy { padding: 16px 18px 20px; }
.tile:has(img) .copy { padding: 14px 8px 18px; }
.tile time { font-size: 12px; color: var(--muted); }
.tile h3 { margin: 6px 0 8px; font-size: 18px; font-weight: 600; line-height: 1.3; }
.tile p { margin: 0; color: var(--muted); font-size: 14.5px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.load-more, a.pager_load_more {
  display: block; margin: 36px auto; cursor: pointer;
  background: var(--glass); border: 1px solid var(--line);
  border-radius: 999px; padding: 12px 28px; color: var(--accent-deep); font-weight: 600;
  text-decoration: none; text-align: center; width: max-content;
}
.load-more.is-loading, a.pager_load_more.is-loading { opacity: 0.55; pointer-events: none; }
.pager_wrapper { display: flex; justify-content: center; }

.site-footer {
  margin-top: 56px; padding: 24px 0 40px; color: var(--muted); font-size: 13.5px;
  border-top: 1px solid var(--line);
}
.site-footer .wrap {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--accent-deep); text-decoration: none; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-nav a { font-weight: 600; }
.footer-nav a:hover { text-decoration: underline; }

.article-shell { width: min(760px, calc(100% - 36px)); margin: 40px auto 80px; }
.glass-panel {
  background: var(--glass); border: 1px solid var(--line); border-radius: 28px;
  padding: 36px 40px 48px; --frost: 14px;
}
.article-shell .kicker { text-decoration: none; font-weight: 700; font-size: 13px; }
.article-shell h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.15; margin: 10px 0; }
.article-shell .meta { color: var(--muted); margin-bottom: 22px; }
.article-shell .meta:has(+ .update-note) { margin-bottom: 12px; }
.update-note {
  margin: 0 0 22px;
  padding: 10px 14px 10px 16px;
  border-radius: 12px;
  background: #e4f3f8;
  border: 1px solid var(--line);
  box-shadow: inset 4px 0 0 var(--accent-deep);
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.45;
}
.update-note p { margin: 0; }
.update-note strong { font-weight: 650; }
.article-shell .cover { border-radius: 18px; overflow: hidden; margin: 0; }
.article-shell .cover + .prose {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.article-shell .cover img { width: 100%; max-height: 380px; object-fit: cover; }
.article-shell .cover.contain img { max-height: none; object-fit: contain; background: #e8f0f6; }
.prose { font-size: 18px; line-height: 1.7; }
.prose h2 { font-size: 24px; margin: 1.5em 0 0.5em; }
.prose h3 { font-size: 20px; margin: 1.4em 0 0.4em; }
.prose p { margin: 0 0 1em; }
.prose ul, .prose ol { margin: 0 0 1em; padding-left: 1.2em; }
.prose blockquote {
  margin: 1.3em 0; padding: 14px 18px; border-radius: 14px;
  background: rgba(106,155,209,0.12); border: 1px solid var(--line);
}
.prose figure { margin: 1.4em 0; }
.prose figure img, .prose img { border-radius: 14px; }
.prose figcaption {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}
.prose img.app-shot {
  border: 1px solid var(--line);
  background: #fff;
}
.prose .exchange-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin: 0.15em 0 1.45em;
  padding: 8px 8px 8px 16px;
  width: fit-content;
  max-width: 100%;
  background: #eef4f8;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.prose .exchange-logos .partner-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  line-height: 1;
}
.prose .exchange-logos .partner-marks {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.prose .exchange-logos img {
  height: 28px;
  width: auto;
  max-width: none;
  border-radius: 0;
}
.prose img.app-shot.phone {
  max-width: 320px;
  margin-inline: auto;
  display: block;
  border-radius: 18px;
}

.prose img.app-shot.mail-shot {
  max-width: 420px;
  margin-inline: auto;
  display: block;
  border-radius: 16px;
  background: #eef4f8;
}

.mail-card {
  margin: 1.2em 0 1.5em;
  background: #eef4f8;
  border: 1px solid #c5d8e8;
  border-radius: 16px;
  overflow: hidden;
}
.mail-card .mail-meta {
  background: #f7fbfe;
  border-bottom: 1px solid #c5d8e8;
  padding: 12px 16px 11px;
  font-size: 13px;
  line-height: 1.45;
  color: #1a3348;
}
.mail-card .mail-meta p { margin: 0 0 4px; }
.mail-card .mail-meta p:last-child { margin: 0; }
.mail-card .mail-meta .lbl {
  color: #527086;
  display: inline-block;
  min-width: 5.2em;
  font-weight: 500;
}
.mail-card .mail-meta .subject { font-weight: 600; }
.mail-card .mail-meta .alias {
  background: #d7eef6;
  color: #1a3348;
  padding: 1px 4px;
  border-radius: 4px;
  font-weight: 700;
}
.mail-card .mail-body { padding: 16px 12px 18px; }
.mail-card .mail-inner {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #c5d8e8;
  border-radius: 16px;
  overflow: hidden;
}
.mail-card .mail-head {
  padding: 16px 18px 12px;
  background: #f7fbfe;
  border-bottom: 1px solid #c5d8e8;
}
.mail-card img { border-radius: 0; }
.mail-card .mail-head img { height: 26px; width: auto; }
.mail-card .mail-kicker {
  padding-top: 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #527086;
  font-weight: 600;
}
.mail-card .mail-bar {
  height: 3px;
  background: #3d6f96;
}
.mail-card .mail-table {
  margin: 16px 16px 18px;
  border: 1px solid #c5d8e8;
  border-radius: 12px;
  overflow: hidden;
  font-size: 13px;
}
.mail-card .mail-table .cap {
  background: #f3f8fc;
  color: #3d6f96;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mail-card .mail-table .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 8px 14px;
  border-top: 1px solid #e3eef6;
  color: #527086;
}
.mail-card .mail-table .row span:last-child {
  color: #1a3348;
  text-align: right;
}
.mail-card .mail-table .row.hi span:last-child {
  font-weight: 700;
}
.mail-card .mail-table .row.profit span:last-child { color: #1f7a4c; }
.mail-card + figcaption { margin-top: -0.6em; }
.app-version {
  white-space: nowrap;
  border-bottom: 2px dotted #c4a035;
  padding-bottom: 1px;
}
.site-email {
  position: relative;
  display: inline;
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  white-space: nowrap;
}
.site-email--plain {
  color: inherit;
  text-decoration: none;
  cursor: inherit;
  white-space: inherit;
}
.site-email-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.site-email.is-ready .site-email-sr {
  display: none;
}
.site-email:not(.is-ready) .site-email-rev {
  unicode-bidi: bidi-override;
  direction: rtl;
  display: inline-block;
}
.site-email:not(.is-ready) .site-email-at::before {
  content: "@";
}
a.site-email:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}
.lead { font-size: 20px; line-height: 1.55; margin: 0 0 1em; }
.lead p { margin: 0 0 0.9em; }
.lead p:last-child { margin-bottom: 0; }
.teasers {
  display: grid;
  gap: 16px;
  margin: 1.8em 0 0.6em;
}
.teaser {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.teaser:hover {
  border-color: var(--accent-deep);
  box-shadow: 0 8px 24px rgba(47, 113, 148, 0.12);
}
.teaser img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #e8f0f6;
  margin: 0;
}
.teaser .copy { padding: 4px 8px 4px 0; }
.teaser h2 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.teaser p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}
.teaser .arrow {
  font-weight: 600;
  color: var(--accent-deep);
  font-size: 15px;
}
.prose .teasers img { margin: 0; border-radius: 12px; }
.prose .teaser h2 { margin: 0 0 8px; font-size: 21px; }
.prose .teaser p { margin: 0 0 10px; font-size: 16px; }
.teaser-phone img { aspect-ratio: 4 / 3; object-position: center; }
.benefit {
  margin-top: 1.5em;
  padding: 14px 16px;
  background: rgba(186, 226, 236, 0.38);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.page-siblings {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 16px;
  margin: 1.8em 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.page-siblings a {
  font-weight: 600;
  text-decoration: none;
}
.page-siblings a:hover { text-decoration: underline; }
.page-siblings .next { margin-left: auto; }
.steps { margin: 0 0 1.2em; padding-left: 1.2em; }
.steps li { margin: 0 0 0.55em; }
.phone-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.2em 0 1.5em;
  max-width: 520px;
  margin-inline: auto;
}
.phone-row figure { margin: 0; }
.phone-row img {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.2em; font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }
.prose .status-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.2em;
  -webkit-overflow-scrolling: touch;
}
.prose .status-table-wrap table {
  margin-bottom: 0;
}
.prose .status-table td:first-child {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.prose .status-chip {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.prose .status-chip.new { background: var(--chip-muted-bg); color: var(--chip-muted-ink); }
.prose .status-chip.invite { background: var(--chip-ice-bg); color: var(--chip-ice-ink); }
.prose .status-chip.invited { background: var(--partial-bg); color: var(--partial-ink); }
.prose .status-chip.registered { background: var(--chip-registered-bg); color: var(--chip-registered-ink); }
.prose .status-chip.started { background: var(--ok-bg); color: var(--ok-ink); }
.prose .status-chip.expired,
.prose .status-chip.finished { background: var(--chip-done-bg); color: var(--chip-done-ink); }
.prose .yield-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.2em;
  -webkit-overflow-scrolling: touch;
}
.prose .yield-table-wrap table {
  margin-bottom: 0;
  width: max-content;
  min-width: 100%;
}
.prose .yield-table th:not(:first-child),
.prose .yield-table td:not(:first-child) {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.prose td.pct-high {
  background: #dceee4;
  color: #1d5c40;
  font-weight: 600;
}
.prose td.pct-low {
  background: #f4e4e6;
  color: #7a3a44;
  font-weight: 600;
}
.prose .aligncenter { margin-left: auto; margin-right: auto; }
.prose .alignleft { float: left; margin: 0 16px 12px 0; }
.prose .alignright { float: right; margin: 0 0 12px 16px; }
.prose iframe { max-width: 100%; }
.prose .wp-caption { max-width: 100%; }
.related { margin: 40px auto 80px; width: min(1180px, calc(100% - 36px)); }
.related h2 { font-size: 28px; font-weight: 500; letter-spacing: -0.03em; margin: 0 0 16px; }

.how-intro { margin: 0 0 20px; color: var(--muted); }
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0 0 28px;
}
.how-step {
  background: var(--glass); border: 1px solid var(--line); border-radius: 22px;
  padding: 20px; text-align: center;
}
.how-step img { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 10px; }
.how-step .number {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--accent-deep); margin-bottom: 6px;
}
.how-step h4 { margin: 0 0 8px; font-size: 16px; }
.how-step .desc { margin: 0; color: var(--muted); font-size: 14px; }
.exchange-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 24px; }
.exchange-card {
  background: var(--glass); border: 1px solid var(--line); border-radius: 22px;
  padding: 24px; text-align: center;
}
.exchange-card img { height: 48px; width: auto; margin: 0 auto 12px; }
.badge {
  display: inline-block; background: #2f7194; color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 10px;
}

.page-404 { text-align: center; padding: 48px 24px; }
.page-404 h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 500; margin: 0 0 12px; }

.start-copy h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 14px;
  max-width: 13ch;
  color: var(--ink);
}
.start-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 36em;
  font-size: 17px;
  line-height: 1.45;
}
.start-copy .actions { margin-top: 22px; }
.start-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 22px;
}
.start-trust img { height: 22px; width: auto; }
.start-split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 28px 44px;
  align-items: center;
  margin: 8px 0 20px;
}
/* 1024-paar (548×360) schaalt als één beeld. JS zet --duo-scale; zoom
   i.p.v. transform+cqw (Chrome laat die laag na resize leeg tot hover). */
.duo-slot {
  --duo-scale: calc(100cqw / 548px);
  position: relative;
  width: 100%;
  min-width: 0;
  container-type: inline-size;
  overflow: visible;
  /* Telefoon steekt boven Chrome uit; kleine lucht t.o.v. de header. */
  margin-top: 36px;
}
.duo-slot::before {
  content: "";
  display: block;
  height: calc(360px * var(--duo-scale));
}
.home-duo {
  position: absolute;
  top: 0;
  left: 0;
  width: 548px;
  min-height: 360px;
  padding: 8px 72px 18px 0;
  zoom: var(--duo-scale);
}
@supports not (zoom: 1) {
  .home-duo {
    transform: scale(var(--duo-scale));
    transform-origin: top left;
  }
}
.gchrome-win {
  width: 86%;
  background: #fff;
  border: 1px solid #c7cdd4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 28px 58px -30px rgba(18, 38, 58, 0.5);
}
.gchrome {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #202124;
  user-select: none;
}
.gchrome-tabs {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 36px;
  padding: 0 10px 0 12px;
  background: #dee1e6;
}
.gchrome-lights { display: flex; gap: 7px; align-items: center; height: 36px; flex: 0 0 auto; }
.gchrome-lights i {
  width: 12px; height: 12px; border-radius: 50%; display: block;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.12) inset;
}
.gchrome-lights i:nth-child(1) { background: #ff5f57; }
.gchrome-lights i:nth-child(2) { background: #febc2e; }
.gchrome-lights i:nth-child(3) { background: #28c840; }
.gchrome-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  min-width: 0;
  max-width: 220px;
  padding: 0 10px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: #3c4043;
  position: relative;
}
.gchrome-tab::before,
.gchrome-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 10px; height: 10px;
  background: radial-gradient(circle at var(--p), transparent 10px, #fff 10.5px);
}
.gchrome-tab::before { left: -10px; --p: 0 0; }
.gchrome-tab::after { right: -10px; --p: 100% 0; }
.gchrome-tab img { width: 14px; height: 14px; border-radius: 3px; object-fit: cover; background: #0b1c28; }
.gchrome-tab span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gchrome-tab b { margin-left: auto; font-weight: 400; color: #5f6368; font-size: 14px; line-height: 1; }
.gchrome-plus {
  width: 20px; height: 20px; margin: 0 0 6px 2px;
  border-radius: 50%;
  color: #5f6368;
  font-size: 16px; line-height: 18px; text-align: center;
  flex: 0 0 auto;
}
.gchrome-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 10px 0 8px;
  background: #fff;
  border-bottom: 1px solid #e8eaed;
}
.gchrome-nav { display: flex; align-items: center; gap: 2px; color: #444746; }
.gchrome-nav .ico { width: 28px; height: 28px; padding: 5px; display: block; }
.gchrome-nav .ico.dim { opacity: 0.38; }
.gchrome-omnibox {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 12px;
  background: #f1f3f4;
  border-radius: 16px;
  font-size: 13px;
  color: #202124;
}
.gchrome-omnibox .lock { width: 12px; height: 12px; color: #5f6368; flex: 0 0 auto; }
.gchrome-omnibox span {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.gchrome-end { display: flex; align-items: center; gap: 8px; }
.gchrome-profile {
  width: 24px; height: 24px; border-radius: 50%;
  background: #6aa8c8; color: #fff;
  font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}
.gchrome-win > img {
  width: 100%;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  object-position: top;
  display: block;
  background: #f4f8fb;
}
.phone-shell {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  z-index: 3;
  background: #1c1d20;
  border-radius: 28px;
  padding: 9px 8px 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 22px 44px -18px rgba(18, 38, 58, 0.55);
}
.phone-shell img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: #fff;
}
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 14.5px;
  padding: 10px 18px; border-radius: 999px;
}
.btn-fill { background: linear-gradient(180deg, #7eadd8, #5b8fc4); color: #fff !important; }
.btn-ghost { background: var(--glass); color: var(--accent-deep) !important; border: 1px solid var(--line); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.pillar, .why article, .stat {
  background: var(--glass); border: 1px solid var(--line); border-radius: 22px;
  padding: 20px;
}
.pillar h3, .why article h3 { margin: 0 0 8px; font-size: 18px; }
.pillar p, .why article p { margin: 0; color: var(--muted); font-size: 14.5px; }
.block-title { font-size: 28px; font-weight: 500; letter-spacing: -0.03em; margin: 8px 0 16px; }
.why { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 28px; }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 28px;
  background: var(--glass); border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
}
.stat { border-radius: 0; border: 0; border-right: 1px solid var(--line); background: transparent; }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 30px; font-weight: 600; letter-spacing: -0.03em; }
.stat span { color: var(--muted); font-size: 13px; }
.shots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; margin-bottom: 16px; }
.shots figure {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  padding: 8px 8px 0;
  box-shadow: 0 10px 22px -14px rgba(20, 54, 74, 0.4);
}
.shots > figure > img,
.shots .inbox-tile {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  flex: 0 0 auto;
}
.inbox-tile {
  display: flex;
  flex-direction: column;
  background: #eef4f8;
}
.inbox-tile .mail-chrome {
  flex: 0 0 auto;
  padding: 7px 10px 6px;
  background: #dceaf4;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.35;
  color: var(--ink);
}
.inbox-tile .mail-chrome .row { display: flex; gap: 6px; min-width: 0; }
.inbox-tile .mail-chrome .lbl { flex: 0 0 auto; font-weight: 600; color: var(--muted); }
.inbox-tile .mail-chrome .val {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}
.shots .inbox-tile > img {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 0;
  box-shadow: none;
}
.shots figcaption {
  position: static;
  margin: 0;
  padding: 10px 6px 12px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--muted);
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
}

.cto-search-results { padding-left: 1.2em; }

@media (max-width: 900px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight:has(img) .copy { padding: 16px 8px 12px; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .pillars, .why, .shots, .how-steps, .exchange-cards { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .start-split { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .start-copy h1 { max-width: 16ch; }
  .duo-slot { margin-top: calc(27px * var(--duo-scale)); }
}
@media (max-width: 900px) {
  .site-header .wrap { width: calc(100% - 20px); }
}
@media (max-width: 720px) {
  .menu-toggle { display: block; padding: 7px 10px; font-size: 14px; flex-shrink: 0; }
  .site-header .bar { gap: 8px; }
  .logo { flex: 0 1 auto; min-width: 0; }
  .logo img { max-width: 100%; }
  .logo .logo-full { display: none; }
  .logo .logo-compact { display: block; height: auto; max-height: 26px; }
  .lang { margin-left: 0; }
  .zoek-knop { margin-left: 0; }
  .nav {
    display: none; position: absolute; top: 68px; right: 16px; left: auto;
    width: max-content; max-width: calc(100vw - 32px);
    background: rgba(255,255,255,0.95); border: 1px solid var(--line);
    border-radius: 16px; padding: 14px; flex-direction: column;
    flex-wrap: nowrap; align-items: stretch; z-index: 30;
    margin-left: 0; gap: 4px;
  }
  .nav.is-open { display: flex; }
  .nav > a { padding: 10px 12px 10px 22px; }
  .nav > a:not(.cta)::before { left: 10px; }
  .mosaic, .pillars, .why, .stats, .shots, .how-steps, .exchange-cards { grid-template-columns: 1fr; }
  .glass-panel { padding: 24px 20px 32px; }
  .teaser { grid-template-columns: 1fr; }
  .teaser .copy { padding: 4px 4px 8px; }
  .phone-row { grid-template-columns: 1fr; max-width: 280px; }
  .lead { font-size: 18.5px; }
  .mail-card .mail-meta .lbl { display: block; min-width: 0; }
  .prose .yield-table { font-size: 13px; }
  .prose .yield-table th,
  .prose .yield-table td { padding: 7px 6px; }
  .prose .exchange-logos {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    border-radius: 16px;
    padding: 12px 14px;
    gap: 10px;
  }
  .prose .exchange-logos .partner-marks { gap: 20px; }
  .prose .exchange-logos img {
    height: 30px;
  }
}
@media (max-width: 640px) {
  .lang a span { display: none; }
  .lang a { padding: 5px; }
  .logo .logo-compact { max-height: 24px; }
}

/* Numbered home-screen map (diepblauw callouts). */
.article-shell:has(.ui-map) {
  width: min(1080px, calc(100% - 36px));
}
.ui-map {
  --marker-bg: #2f7194;
  --marker-fg: #fff;
  --marker-border: #fff;
  --marker-ptr: #2f7194;
  --marker-hot: #2f7194;
}
.ui-map .app-frame {
  margin: 0.4em 0 1.5em;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 54, 74, 0.08);
  overflow: hidden;
}
.ui-map .app-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px 7px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 251, 254, 0.9);
}
.ui-map .app-chrome i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c5d8e8;
}
.ui-map .app-chrome i:nth-child(1) { background: #d4b8c0; }
.ui-map .app-chrome i:nth-child(2) { background: #d4c9a8; }
.ui-map .app-chrome i:nth-child(3) { background: #b7cfc4; }
.ui-map .app-chrome .url {
  margin-left: 8px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 12px;
}
.ui-map .shot-wrap {
  position: relative;
  display: block;
  background: #e8f3f8;
}
.ui-map .shot-wrap img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border-radius: 0;
}
.ui-map .app-frame figcaption {
  margin: 0;
  padding: 9px 14px 12px;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
}
.ui-map .hotspot {
  position: absolute;
  border-radius: 10px;
  pointer-events: none;
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.16s ease, background 0.16s ease;
  z-index: 1;
}
.ui-map .hotspot.is-on {
  background: rgba(106, 168, 200, 0.12);
  box-shadow:
    0 0 0 2px var(--marker-hot),
    0 0 0 6px rgba(106, 168, 200, 0.28);
}
.ui-map .markers {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ui-map .marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  display: block;
  z-index: 3;
  text-decoration: none;
  color: var(--marker-fg);
}
.ui-map .marker .n {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--marker-bg);
  color: var(--marker-fg);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 0 0 2px var(--marker-border), 0 4px 12px rgba(20, 54, 74, 0.28);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.ui-map .marker .ptr {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 10px;
  margin-top: -5px;
  transform: rotate(var(--rot, 0deg));
  transform-origin: left center;
  pointer-events: none;
  z-index: 1;
}
.ui-map .marker .ptr::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 12px;
  height: 2px;
  background: var(--marker-ptr);
}
.ui-map .marker .ptr::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 1px;
  border-left: 8px solid var(--marker-ptr);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.ui-map .marker:hover .n,
.ui-map .marker:focus-visible .n,
.ui-map .marker.is-on .n {
  transform: scale(1.08);
  background: #14364a;
  box-shadow: 0 0 0 3px var(--marker-border), 0 0 0 6px rgba(106, 168, 200, 0.55);
}
.ui-map .marker:focus-visible { outline: none; }
.ui-map .legend-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -0.4em 0 1.6em;
}
.ui-map .legend-jump a {
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}
.ui-map .legend-jump a:hover,
.ui-map .legend-jump a:focus-visible,
.ui-map .legend-jump a.is-on {
  background: rgba(186, 226, 236, 0.62);
}
.ui-map .legend {
  display: grid;
  gap: 12px;
  margin: 0.4em 0 0;
}
.ui-map .legend-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 2px 14px;
  align-items: start;
  padding: 16px 18px 14px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  scroll-margin-top: 120px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.ui-map .legend-item.is-on {
  border-color: var(--marker-hot);
  background: rgba(228, 243, 248, 0.95);
  box-shadow: 0 8px 24px rgba(47, 113, 148, 0.12);
}
.ui-map .legend-item .n {
  grid-row: 1 / span 4;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--marker-bg);
  color: var(--marker-fg);
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px var(--marker-border), 0 2px 8px rgba(20, 54, 74, 0.18);
}
.ui-map .legend-item.is-on .n { background: #14364a; }
.ui-map .legend-item h2,
.prose .ui-map .legend-item h2 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.ui-map .legend-item p,
.prose .ui-map .legend-item p {
  margin: 0 0 0.7em;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.ui-map .legend-item p:last-child { margin-bottom: 0; }
.ui-map .menu-map,
.prose .ui-map .menu-map {
  margin: 0 0 0.75em;
  padding: 0;
  list-style: none;
  font-size: 15.5px;
  line-height: 1.5;
}
.ui-map .menu-map li {
  padding: 5px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.ui-map .menu-map li:first-child { border-top: 0; padding-top: 2px; }
.ui-map .menu-map strong { font-weight: 650; }
.ui-map .meer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  font-size: 14.5px !important;
}
.ui-map .meer .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 2px;
}
.ui-map .meer a {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-deep);
}
.ui-map .meer a:hover { text-decoration: underline; }
.ui-map .meer a::after {
  content: "→";
  margin-left: 4px;
  font-weight: 500;
  opacity: 0.7;
}
@media (max-width: 720px) {
  .article-shell:has(.ui-map) { width: min(760px, calc(100% - 24px)); }
  .ui-map .marker,
  .ui-map .marker .n {
    width: 22px;
    height: 22px;
  }
  .ui-map .marker { margin: -11px 0 0 -11px; }
  .ui-map .marker .n { font-size: 11px; box-shadow: 0 0 0 2px var(--marker-border), 0 2px 8px rgba(20, 54, 74, 0.28); }
  .ui-map .legend-item {
    grid-template-columns: 28px 1fr;
    padding: 14px 14px 12px 12px;
  }
  .ui-map .legend-item h2,
  .prose .ui-map .legend-item h2 { font-size: 17px; }
  .ui-map .legend-item p,
  .prose .ui-map .legend-item p { font-size: 15.5px; }
}
@media (max-width: 560px) {
  .ui-map .markers,
  .ui-map .hotspot { display: none; }
  .ui-map .legend-jump a { font-size: 12px; padding: 3px 8px; }
}

/* IJsloep search */
.zoek-knop {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; margin-left: 4px; padding: 0;
  border-radius: 50%; border: 1px solid var(--line);
  background: var(--glass); color: var(--accent-deep); cursor: pointer;
}
.zoek-knop:hover, .zoek-knop[aria-expanded="true"] {
  background: #fff; box-shadow: 0 0 0 3px rgba(106,168,200,.28);
}
.zoek-popup[hidden] { display: none !important; }
.zoek-popup {
  position: fixed; inset: 0; z-index: 80;
  display: flex; justify-content: center; align-items: flex-start;
  padding: 12vh 12px 24px;
}
.zoek-paneel {
  width: min(520px, calc(100vw - 24px));
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(20,54,74,.45);
  --frost: 18px;
  overflow: hidden;
}
.zoek-veld {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--accent-deep);
}
.zoek-veld input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font: 17px/1.3 Outfit, sans-serif; color: var(--ink);
}
.zoek-list { max-height: min(52vh, 420px); overflow: auto; padding: 8px 0; }
.zoek-hint, .zoek-leeg { margin: 8px 16px; color: var(--muted); font-size: 13.5px; }
.zoek-rij {
  display: block; padding: 10px 16px; text-decoration: none; color: inherit;
}
.zoek-rij .zoek-crumb {
  display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 600;
}
.zoek-rij strong { display: block; font-size: 15px; font-weight: 600; margin: 2px 0; }
.zoek-rij em {
  display: block; font-style: normal; color: var(--muted); font-size: 13px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.zoek-rij.is-active, .zoek-rij:hover { background: rgba(106,168,200,.22); }
body.zoek-open { overflow: hidden; }
@media (max-width: 480px) {
  .zoek-popup { padding-top: 8px; }
  .zoek-knop { width: 44px; height: 44px; }
  .site-header .bar { gap: 6px; }
  .lang a { padding: 4px; }
}
.site-header.is-collapsed .zoek-knop { display: inline-flex; }
