/* ─────────────────────────────────────────────
   Skwirrel — Import & Export (redesign)
   Brand: Vriendelijk blauw · Technisch groen · Degelijk zwart
   Type:  Anek Latin (by Ek Type)
   Concept: "Centraal in orde" — grid as DNA
   ───────────────────────────────────────────── */

:root {
  /* Brand — exact spec uit manual */
  --blue:        #C2D5FF;   /* vriendelijk blauw (pastel) */
  --blue-soft:   #E1EAFF;   /* lichtere variant */
  --blue-deep:   #6E8DD0;   /* afgeleid: voor type/icons op wit */
  --blue-ink:    #3A5BA0;   /* contrast-tekst op blauw */

  --lime:        #DCFF6D;   /* technisch groen — accent */
  --lime-soft:   #ECFFA8;
  --lime-deep:   #8FA82D;   /* afgeleid: tekst-op-lime */

  --ink:         #2B2B2B;   /* degelijk zwart — warm charcoal */
  --ink-2:       #4a4a4a;
  --ink-3:       #6e6e6e;
  --ink-soft:    #2b2b2b14;

  --paper:       #ffffff;   /* wit is impliciete canvas */
  --paper-2:     #f7f6f1;
  --paper-3:     #ffffff;

  --line:        #2b2b2b14;
  --line-2:      #2b2b2b1f;
  --line-dark:   #ffffff1f;

  /* Type scale */
  --fs-h1: clamp(2.6rem, 5.4vw, 5.2rem);
  --fs-h2: clamp(1.9rem, 3.3vw, 3.1rem);
  --fs-h3: 1.35rem;
  --fs-lead: clamp(1.05rem, 1.2vw, 1.18rem);
  --fs-body: 1rem;

  /* Squircle radii — 20-25% van zijde */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --sh-card: 0 1px 0 #ffffff80 inset, 0 1px 2px #2b2b2b0a, 0 8px 30px #2b2b2b0a;
  --sh-soft: 0 1px 2px #2b2b2b0a, 0 12px 40px #2b2b2b0d;

  /* Layout */
  --wrap: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ─── Reset / base ─── */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Anek Latin", system-ui, sans-serif;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── Type primitives ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 6px 12px 6px 10px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  width: fit-content;
}
.eyebrow--on-dark {
  background: #ffffff14;
  border-color: var(--line-dark);
  color: #ffffffc4;
}
.eyebrow--on-blue { background: #ffffff; border-color: transparent; }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px #dcff6d4d;
}
.eyebrow__dot--green { background: var(--lime); box-shadow: 0 0 0 3px #dcff6d4d; }

.hl { color: inherit; position: relative; white-space: nowrap; }
.hl--green {
  background: var(--lime);
  padding: 0.02em 0.22em 0.06em;
  border-radius: 8px;
  color: var(--ink);
  box-shadow:
    inset 0 -3px 0 var(--lime-deep),
    0 1px 0 #2b2b2b14;
}

.section-head { max-width: 820px; margin-bottom: 56px; }
.section-head--narrow { max-width: 720px; margin-inline: auto; text-align: center; }
.section-head--row {
  max-width: none; display: flex; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px;
}
.section-head__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-head__lead {
  font-size: var(--fs-lead);
  color: #0b0e14cc;
  margin: 0;
  text-wrap: pretty;
  max-width: 60ch;
}
.section-head--narrow .section-head__lead { margin-inline: auto; }

.inline-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--lime-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.inline-link:hover { text-decoration-color: var(--ink); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: #000; }
.btn--green { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.btn--green:hover { background: var(--ink); color: var(--lime); border-color: var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--ghost-light {
  background: transparent; color: var(--paper);
  border-color: var(--paper); opacity: .9;
}
.btn--ghost-light:hover { background: var(--paper); color: var(--ink); }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-block: 14px;
}
.nav__logo img { height: 30px; width: auto; display: block; }

/* Brand-blok met logo + slogan eronder */
.nav__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
}
.nav__brand-logo { height: 30px; width: auto; display: block; }
.nav__brand-tagline {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-top: 3px;
  padding-left: 2px;
  display: block;
}
@media (max-width: 540px) { .nav__brand-tagline { display: none; } }
.nav__links { display: flex; gap: 6px; justify-self: center; }
.nav__link {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-2);
}
.nav__link:hover { background: var(--blue-soft); color: var(--ink); }
.nav__link--active { background: var(--ink); color: var(--paper); }
.nav__link--active:hover { background: var(--ink); color: var(--paper); }
.nav__caret { font-size: 10px; opacity: .6; }
.nav__right { display: flex; align-items: center; gap: 12px; }

/* Hamburger — alleen zichtbaar op mobiel (zie @media max-width:1100px) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav.is-open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobiele CTA onderaan het uitklap-paneel — verborgen op desktop */
.nav__mobile-cta { display: none; }
.lang {
  position: relative;
}
.lang > summary {
  list-style: none;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line-2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  color: var(--ink);
  user-select: none;
  transition: background .15s ease, border-color .15s ease;
}
.lang > summary::-webkit-details-marker { display: none; }
.lang > summary::marker { content: ""; }
.lang:hover > summary { background: var(--blue-soft); }
.lang[open] > summary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.lang[open] > summary .nav__caret { transform: rotate(180deg); opacity: 1; }
.lang .nav__caret { transition: transform .15s ease; }

.lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 12px 36px #2b2b2b1f, 0 2px 6px #2b2b2b0d;
  z-index: 50;
  animation: lang-fade .14s ease-out;
}
@keyframes lang-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang__opt {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.lang__opt:hover { background: var(--blue-soft); }
.lang__opt--active { background: var(--ink); color: var(--paper); }
.lang__opt--active:hover { background: var(--ink); }
.lang__opt--soon { opacity: .55; cursor: not-allowed; }
.lang__opt--soon:hover { background: transparent; }
.lang__code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: .7;
}
.lang__chip {
  width: 28px; height: 20px;
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--blue-soft);
  color: var(--ink);
}
.lang__opt--active .lang__chip { background: var(--lime); color: var(--ink); }

/* ─── MEGA-MENU (nav dropdowns) ─── */
.nav__dd { display: inline-flex; align-items: center; }
.nav__dd > summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  transition: background .15s ease, color .15s ease;
  user-select: none;
}
.nav__dd > summary::-webkit-details-marker { display: none; }
.nav__dd > summary::marker { content: ''; }
.nav__dd:hover > summary { background: var(--blue-soft); color: var(--ink); }
.nav__dd[open] > summary { background: var(--ink); color: var(--paper); }
.nav__dd[open] > summary .nav__caret { transform: rotate(180deg); }
.nav__dd > summary .nav__caret { transition: transform .15s ease; opacity: .6; font-size: 10px; }
.nav__dd > summary.nav__link--active { background: var(--ink); color: var(--paper); }

.megamenu {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 36px #2b2b2b14;
  padding: 36px 0 28px;
  z-index: 45;
  animation: mm-fade .18s ease-out;
}
@keyframes mm-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.megamenu__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}
.megamenu__col h4 {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 14px;
  font-weight: 600;
}
.megamenu__list { display: flex; flex-direction: column; gap: 2px; }
.megamenu__link {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 8px 12px;
  margin-left: -12px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  align-items: center;
  transition: background .12s ease;
}
.megamenu__link:hover { background: var(--blue-soft); }
.megamenu__link-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--paper-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.megamenu__link:hover .megamenu__link-icon { background: var(--lime); }
.megamenu__link-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}
.megamenu__link-text small {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 400;
  margin-top: 2px;
}
.megamenu__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--lime-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.megamenu__all:hover { text-decoration-color: var(--ink); }

.megamenu__cases { display: flex; flex-direction: column; gap: 10px; }
.megamenu__case {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 8px;
  margin-left: -8px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  align-items: center;
  transition: background .12s ease;
}
.megamenu__case:hover { background: var(--blue-soft); }
.megamenu__case-thumb {
  width: 56px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--blue-soft);
  display: block;
}
.megamenu__case-thumb svg { width: 100%; height: 100%; display: block; }
.megamenu__case-text {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.3;
}
.megamenu__case-text small {
  display: block;
  font-size: 11.5px;
  color: var(--ink-3);
  font-weight: 400;
  margin-top: 2px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.03em;
}

.megamenu__cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.megamenu__cta h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.megamenu__cta p {
  margin: 0 0 4px;
  font-size: 13.5px;
  color: #ffffffc4;
  line-height: 1.5;
}
.megamenu__cta .btn {
  width: 100%;
  justify-content: center;
}
.megamenu__cta-mini {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #ffffff1f;
}
.megamenu__cta-mini a {
  font-size: 13px;
  color: #ffffffc4;
  text-decoration: none;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.megamenu__cta-mini a:hover { color: var(--lime); }

/* mini variant — Over ons dropdown.
   Wordt onder de bijbehorende <details> geplaatst, niet rechts in de nav. */
.nav__dd:has(.megamenu--mini) { position: relative; }
.megamenu--mini {
  left: auto;
  right: 0;
  width: 280px;
  border: 1px solid var(--line);
  border-radius: 0 0 16px 16px;
  margin-top: 0;
  padding: 14px;
  box-shadow: 0 12px 32px #2b2b2b1f;
}
.megamenu--mini .megamenu__inner {
  display: block;
}
.megamenu--mini .megamenu__col h4 { margin-bottom: 10px; }
.megamenu--mini .megamenu__link {
  grid-template-columns: 1fr;
  padding: 8px 12px;
}
.megamenu--mini .megamenu__link-text { font-size: 14px; }

@media (max-width: 980px) {
  .megamenu__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .megamenu__cta { grid-column: 1 / -1; }
}

.hero {
  position: relative;
  padding: clamp(36px, 6vw, 80px) 0 clamp(64px, 9vw, 112px);
  overflow: hidden;
  background: var(--blue);
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, #2b2b2b33 1px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: center;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 25%, transparent 75%);
  pointer-events: none;
  opacity: 1;
  z-index: 0;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero__copy { max-width: 640px; }

.crumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #2b2b2b99;
  margin-bottom: 26px;
}
.crumbs a:hover { color: var(--ink); }
.crumbs__sep { opacity: .5; }

.hero__title {
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 6px 0 28px;
  text-wrap: balance;
}
.hero__lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: #2b2b2bd9;
  margin: 0 0 32px;
  max-width: 56ch;
  text-wrap: pretty;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 12px 22px;
  font-size: 14.5px; color: var(--ink);
}
.hero__bullets li { display: inline-flex; align-items: center; gap: 8px; }
.hero__bullets svg {
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  padding: 3px;
  width: 18px; height: 18px;
}

/* HERO FLOW */
.hero__flow {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 640px;
  justify-self: end;
}
.flow {
  position: relative; width: 100%; height: 100%;
  background: var(--paper);
  border: 1px solid #ffffffcc;
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: 0 1px 0 #ffffff inset, 0 12px 50px #2b2b2b14;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flow__rail {
  display: flex; flex-direction: column; gap: 12px;
  z-index: 2; width: 96px;
}
.flow__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2b2b2b80; margin-bottom: 2px;
}
.flow__chip {
  background: var(--paper); border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  font-size: 12.5px; font-weight: 500;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: -0.01em;
  box-shadow: 0 1px 0 #ffffff inset, 0 1px 1px #2b2b2b08;
  text-align: center;
}
.flow__chip--in  { border-left: 3px solid var(--blue-deep); }
.flow__chip--out { border-left: 3px solid var(--lime-deep); }
.flow__chip:nth-child(2) { animation: chipPulse 4s ease-in-out infinite; animation-delay: 0.0s; }
.flow__chip:nth-child(3) { animation: chipPulse 4s ease-in-out infinite; animation-delay: 0.4s; }
.flow__chip:nth-child(4) { animation: chipPulse 4s ease-in-out infinite; animation-delay: 0.8s; }
.flow__chip:nth-child(5) { animation: chipPulse 4s ease-in-out infinite; animation-delay: 1.2s; }
.flow__chip:nth-child(6) { animation: chipPulse 4s ease-in-out infinite; animation-delay: 1.6s; }
@keyframes chipPulse {
  0%, 80%, 100% { box-shadow: 0 1px 0 #ffffff inset, 0 1px 1px #2b2b2b08; }
  10%, 30% { box-shadow: 0 0 0 4px #c2d5ff80, 0 1px 1px #2b2b2b08; }
}
.flow__rail--out .flow__chip:nth-child(2) { animation: chipPulseLime 4s ease-in-out infinite; animation-delay: 0.6s; }
.flow__rail--out .flow__chip:nth-child(3) { animation: chipPulseLime 4s ease-in-out infinite; animation-delay: 1.0s; }
.flow__rail--out .flow__chip:nth-child(4) { animation: chipPulseLime 4s ease-in-out infinite; animation-delay: 1.4s; }
.flow__rail--out .flow__chip:nth-child(5) { animation: chipPulseLime 4s ease-in-out infinite; animation-delay: 1.8s; }
.flow__rail--out .flow__chip:nth-child(6) { animation: chipPulseLime 4s ease-in-out infinite; animation-delay: 2.2s; }
@keyframes chipPulseLime {
  0%, 80%, 100% { box-shadow: 0 1px 0 #ffffff inset, 0 1px 1px #2b2b2b08; }
  10%, 30% { box-shadow: 0 0 0 4px #dcff6dcc, 0 1px 1px #2b2b2b08; }
}

.flow__svg {
  position: absolute;
  inset: 24px 96px 24px 96px;
  width: calc(100% - 192px);
  height: calc(100% - 48px);
  pointer-events: none;
  z-index: 0;
}
.flow__core {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 124px; height: 124px;
  display: grid; place-items: center;
  z-index: 1;
}
.flow__core-ring,
.flow__core-ring--2 {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  animation: ringPulse 3s ease-in-out infinite;
}
.flow__core-ring--2 {
  inset: -14px; animation-delay: 1.5s; opacity: .5;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.06); opacity: 1; }
}
.flow__core-disk {
  position: relative;
  width: 86px; height: 86px;
  border-radius: 22px;       /* squircle */
  background: var(--ink);
  color: var(--lime);
  display: grid; place-items: center;
  box-shadow: 0 8px 30px #2b2b2b26, 0 0 0 6px var(--paper);
}
.flow__core-label {
  position: absolute; bottom: -42px; left: 50%; transform: translateX(-50%);
  text-align: center;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.flow__core-label span {
  font-weight: 400; font-size: 11px;
  color: #2b2b2b99; letter-spacing: 0.04em;
}

/* ─── STATS BAND ─── */
.stats { padding-block: clamp(32px, 4vw, 56px); border-block: 1px solid var(--line); background: var(--paper); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat { padding: 8px clamp(16px, 2vw, 32px); border-right: 1px solid var(--line); position: relative; }
.stat:last-child { border-right: 0; }
.stat::before {
  content: ""; position: absolute; top: 6px; left: clamp(16px, 2vw, 32px);
  width: 18px; height: 4px; border-radius: 2px;
  background: var(--lime);
}
.stat--alt::before { background: var(--blue); }
.stat__num {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 18px 0 10px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat--alt .stat__num { color: var(--ink); }
.stat__lbl {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.35;
  max-width: 28ch;
}

/* ─── HOE HET WERKT ─── */
.how { padding-block: clamp(72px, 9vw, 128px); }
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--sh-card);
}
.step--center {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.step--center .step__num { color: #ffffff66; }
.step--center .step__tags li { background: #ffffff14; color: #ffffffcc; border-color: #ffffff1a; }
.step__num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #0b0e1499;
  margin-bottom: 24px;
}
.step__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.step__icon--blue  { background: var(--blue);  color: var(--ink); }
.step__icon--green { background: var(--lime); color: var(--ink); }
.step__icon--dark  { background: var(--ink-2); color: var(--lime); }
.step__title {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.step__body {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
  color: inherit;
  opacity: .85;
}
.step__tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.step__tags li {
  font-size: 12.5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-weight: 500;
}

/* ─── FORMATS ─── */
.formats {
  padding-block: clamp(72px, 9vw, 128px);
  background: var(--blue-soft);
  border-block: 1px solid var(--line);
}
.formats__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.formats__lead .section-head__title { margin-bottom: 14px; }
.formats__lead { position: sticky; top: 88px; }
.formats__tabs {
  display: inline-flex;
  padding: 4px;
  background: var(--paper);
  border-radius: 999px;
  border: 1px solid var(--line);
  margin-top: 28px;
}
.formats__tab {
  padding: 9px 18px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .15s ease, color .15s ease;
}
.formats__tab.is-active {
  background: var(--ink);
  color: var(--paper);
}

.formats__panel { display: none; }
.formats__panel.is-active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.fmt {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 22px 22px 20px;
  box-shadow: var(--sh-soft);
  transition: transform .2s ease, border-color .2s ease;
}
.fmt:hover { transform: translateY(-2px); border-color: var(--ink-3); }
.fmt--blue { background: linear-gradient(180deg, var(--blue), #ffffff 70%); border-color: #6e8dd040; }
.fmt--green { background: linear-gradient(180deg, var(--lime), #ffffff 75%); border-color: #8fa82d40; }
.fmt--dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.fmt--dark .fmt__name { color: var(--paper); }
.fmt--dark .fmt__desc { color: #ffffffcc; }

.fmt__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}
.fmt__badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
  background: var(--paper-2); color: var(--ink-2);
  border: 1px solid var(--line);
}
.fmt__badge--green { background: var(--lime); color: var(--ink); border-color: var(--lime-deep); }
.fmt__badge--dark { background: #ffffff14; color: var(--paper); border-color: var(--line-dark); }
.fmt__ext {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  color: #0b0e1480;
}
.fmt--dark .fmt__ext { color: #ffffff80; }
.fmt__name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.fmt__desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: #0b0e14c4;
}

/* ─── PROMISE ─── */
.promise {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(72px, 9vw, 128px);
  overflow: hidden;
}
.promise__bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, #ffffff14 1px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 80% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 50%, #000 30%, transparent 75%);
  pointer-events: none;
}
.promise__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.promise__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 22px;
  text-wrap: balance;
}
.promise__lead {
  font-size: var(--fs-lead);
  color: #ffffffcc;
  margin: 0 0 32px;
  max-width: 58ch;
  text-wrap: pretty;
}
.promise__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.promise__card {
  background: #ffffff0a;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 22px;
  backdrop-filter: blur(8px);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
}
.promise__card-head {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}
.promise__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ffffff26;
}
.promise__dot--mid { background: #ffffff40; }
.promise__card-title {
  margin-left: 10px;
  font-size: 12px;
  color: #ffffffc4;
  letter-spacing: 0.04em;
}
.promise__list {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.promise__list li {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
  gap: 16px;
}
.promise__list-k { color: #ffffff99; flex-shrink: 0; }
.promise__list-v { color: var(--paper); text-align: right; min-width: 0; }
.promise__list-v--green { color: var(--lime); display: inline-flex; align-items: center; gap: 8px; }

.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); display: inline-block; }
.dot--pulse {
  box-shadow: 0 0 0 0 #dcff6dcc;
  animation: dotPulse 1.6s ease-out infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 #dcff6dcc; }
  100% { box-shadow: 0 0 0 10px #00b07a00; }
}

.promise__bar {
  margin-top: 4px;
}
.promise__bar-track {
  height: 6px; border-radius: 3px;
  background: #ffffff14;
  overflow: hidden;
  margin-bottom: 8px;
}
.promise__bar-fill {
  width: 72%; height: 100%;
  background: linear-gradient(90deg, var(--lime), #4ddca5);
  border-radius: 3px;
  animation: barShimmer 2.8s ease-in-out infinite;
}
@keyframes barShimmer {
  0%, 100% { opacity: .85; }
  50% { opacity: 1; }
}
.promise__bar-meta {
  display: flex; justify-content: space-between;
  font-size: 11px; color: #ffffff99;
  gap: 12px;
  white-space: nowrap;
}
.promise__card-foot {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  font-family: "Anek Latin", sans-serif;
  font-size: 13px;
  color: #ffffffc4;
}

/* ─── CASES ─── */
.cases { padding-block: clamp(72px, 9vw, 128px); }
.cases__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-card);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
}
.case--alt { background: linear-gradient(180deg, var(--blue), var(--paper) 100%); border-color: #6e8dd040; }
.case__role {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  padding: 4px 10px;
  background: var(--blue);
  border-radius: 999px;
  align-self: flex-start;
}
.case--alt .case__role { background: var(--paper); }
.case__title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
  text-wrap: balance;
}
.case__body { margin: 0; color: var(--ink-2); }
.case__stack {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink-3);
}

/* ─── FAQ ─── */
.faq {
  padding-block: clamp(72px, 9vw, 128px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.faq__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.faq__head { position: sticky; top: 88px; }
.faq__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.faq__q:hover { color: var(--ink); background: var(--blue-soft); }
.faq__plus {
  width: 22px; height: 22px;
  position: relative; flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; background: var(--ink);
  transition: transform .25s ease;
}
.faq__plus::before { left: 50%; top: 4px; bottom: 4px; width: 1.5px; transform: translateX(-50%); }
.faq__plus::after  { top: 50%; left: 4px; right: 4px; height: 1.5px; transform: translateY(-50%); }
.faq__item[data-open="true"] .faq__plus::before { transform: translateX(-50%) scaleY(0); }

.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  padding-inline: 24px;
}
.faq__a p {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 65ch;
}
.faq__item[data-open="true"] .faq__a { max-height: 400px; }

/* ─── CONTACT ─── */
.contact { padding-block: clamp(72px, 9vw, 128px); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact__card {
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact__card--jeroen {
  background: var(--paper);
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-card);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: start;
}
.contact__avatar { position: relative; }
.contact__avatar svg { border-radius: 50%; overflow: hidden; }
.contact__avatar-dot {
  position: absolute; bottom: 4px; right: 4px;
  width: 14px; height: 14px;
  background: var(--lime); border-radius: 50%;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 0 #dcff6dcc;
  animation: dotPulse 1.6s ease-out infinite;
}
.contact__title {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 8px 0 12px;
  text-wrap: balance;
}
.contact__title--light { color: var(--paper); }
.contact__lead {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.55;
}
.contact__lead--light { color: #ffffffcc; }

.contact__card--demo {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.contact__bullets {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.contact__bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: #ffffffcc;
}
.contact__bullets li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); flex-shrink: 0;
}

/* ─── RELATED FEATURES ─── */
.related {
  padding-block: clamp(72px, 9vw, 128px);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.related__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feat {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-card);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.feat:hover { transform: translateY(-3px); border-color: var(--ink-3); }
.feat__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
}
.feat__icon--blue { background: var(--blue); color: var(--ink); }
.feat__icon--green { background: var(--lime); color: var(--ink); }
.feat__icon--dark { background: var(--ink); color: var(--lime); }
.feat__pill {
  position: absolute; top: 22px; right: 22px;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}
.feat__title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.feat__body {
  margin: 0; color: var(--ink-2); font-size: 14.5px;
}
.feat__cta {
  margin-top: auto;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.feat:hover .feat__cta { color: var(--ink-2); }

/* ─── FINAL CTA ─── */
.final {
  padding-block: clamp(64px, 8vw, 112px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.final__grid { text-align: center; }
.final__title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 24ch;
  margin-inline: auto;
  text-wrap: balance;
}
.final__cta {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.final__logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 28px 44px;
  padding-top: 36px;
  border-top: 1px dashed var(--line-2);
}
.final__logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0b0e1466;
  font-family: "Anek Latin", sans-serif;
}
.final__logo sup { font-size: 9px; color: var(--ink-2); }

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-dark);
}
.footer__logo img {
  height: 38px; width: auto; display: block;
  filter: invert(1) brightness(1.1);
}
.footer__addr, .footer__contact {
  font-size: 14px; color: #ffffffa6; margin: 24px 0 0;
  line-height: 1.6;
}
.footer__contact a:hover { color: var(--lime); }
.footer__col h4 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin: 0 0 18px; color: #ffffff66;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  font-size: 14.5px;
  color: #ffffffc4;
}
.footer__col a:hover { color: var(--lime); }
.footer__tagline {
  font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--lime);
  margin: 0;
}
.footer__legal {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-block: 24px;
  font-size: 13px; color: #ffffff80;
}
.footer__legal a:hover { color: var(--lime); }

.feat__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; }
.feat__icon svg.monogram-s { width: 24px; height: 100%; }
.step__icon svg.monogram-s { width: 22px; height: auto; }
.flow__core-disk svg.monogram-s, .orbit__core-disk svg.monogram-s { width: auto; height: 70%; }

/* ─── Tweak hooks ─── */
body[data-accent="lime"] {
  --blue: var(--lime); --blue-soft: var(--lime-soft); --blue-deep: var(--lime-deep);
}
body[data-accent="dark"] {
  --blue: #e9e9e6; --blue-soft: #f3f2ef; --blue-deep: var(--ink-2);
}
body[data-intensity="quiet"] .hero__grid-bg,
body[data-intensity="quiet"] .promise__bg { opacity: 0.4; }
body[data-intensity="loud"] .hero__grid-bg { opacity: 1; }
body[data-grid="false"] .hero__grid-bg,
body[data-grid="false"] .promise__bg { display: none; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  /* ── Mobiele navigatie: hamburger + uitklap-paneel ─────────────────── */
  .nav__toggle { display: inline-flex; }

  /* Paneel: standaard verborgen, opengeklapt via .nav.is-open (JS) */
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    justify-self: initial;
    padding: 14px clamp(16px, 5vw, 40px) 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(0, 0, 0, .3);
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav.is-open .nav__links { display: flex; }

  .nav__links .nav__link {
    padding: 12px 12px;
    font-size: 16px;
    border-radius: 12px;
  }

  /* <details>-dropdowns worden platte accordions in het paneel */
  .nav__dd { width: 100%; }
  .nav__dd > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-2);
    border-radius: 12px;
    cursor: pointer;
    list-style: none;
  }
  .nav__dd > summary::-webkit-details-marker { display: none; }
  .nav__dd[open] > summary { color: var(--ink); }
  .nav__dd[open] .nav__caret { transform: rotate(180deg); }

  /* Megamenu: van absolute desktop-dropdown naar statische, gestackte lijst.
     Alleen tonen als de bijbehorende <details> open is (accordion-gedrag). */
  .nav__links .nav__dd[open] .megamenu {
    position: static;
    display: block;
    width: auto;
    margin: 2px 0 8px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .nav__links .megamenu__inner {
    display: block;
    padding: 0;
    max-width: none;
  }
  .nav__links .megamenu__col { padding: 6px 0 10px; border: 0; }
  .nav__links .megamenu__col + .megamenu__col { border-top: 1px solid var(--line); }
  .nav__links .megamenu__list { display: flex; flex-direction: column; gap: 2px; }
  .nav__links .megamenu__cases { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
  .nav__links .megamenu__cta { padding: 8px 0 0; }

  /* Mobiele demo-CTA onderaan het paneel */
  .nav__mobile-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 12px;
  }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__flow { max-width: 540px; margin-inline: auto; aspect-ratio: 4/3; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 24px; margin-bottom: 24px; }
  .steps { grid-template-columns: 1fr; }
  .formats__grid { grid-template-columns: 1fr; }
  .formats__lead { position: static; }
  .formats__panel.is-active { grid-template-columns: repeat(2, 1fr); }
  .promise__grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .related__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav__demo-btn { display: none; } /* CTA staat in het uitklap-paneel */
  .formats__panel.is-active { grid-template-columns: 1fr; }
  .contact__card { padding: 28px; }
  .contact__card--jeroen { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
}
