/* IMPACT — identity-led UI (navy / rood / lichtblauw, organische blobs, logo-SVG) */

:root {
  --navy: #152238;
  --navy-mid: #1e3554;
  --navy-soft: #2a4a6e;
  --ink: #152238;
  --ink-soft: #2c3f56;
  --muted: #5a6b82;
  --line: rgba(21, 34, 56, 0.09);
  --bg: #e9ecef;
  --bg-page: #dfe3e8;
  --bg-tint: #e4e8ee;
  --white: #ffffff;
  --accent: #d62839;
  --accent-deep: #b01f2e;
  --accent-glow: rgba(214, 40, 57, 0.35);
  --hand: #7ec8ea;
  --hand-deep: #5ab0db;
  --scope: #141414;
  --sky: #3d8ec9;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-blob: 58% 42% 62% 38% / 48% 55% 45% 52%;
  --shadow: 0 22px 60px rgba(21, 34, 56, 0.1);
  --shadow-sm: 0 10px 30px rgba(21, 34, 56, 0.07);
  --shadow-lift: 0 28px 70px rgba(21, 34, 56, 0.14);
  --max: 1140px;
  --font: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Montserrat", var(--font);
  --serif: "Instrument Serif", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .blob,
  .hero-ring,
  .hero-mesh,
  .hero-logo-img,
  .card,
  .tag {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: linear-gradient(165deg, var(--bg-page) 0%, var(--bg) 42%, #eef1f5 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--sky);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  max-width: 100%;
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, calc(100% - 40px));
}

/* ---- Logo (JPEG in /logo/) ---- */
.brand-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
}

.hero-logo-img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(300px, 78vw);
  max-height: min(340px, 48vh);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(214, 40, 57, 0.18));
  animation: logo-float 7s ease-in-out infinite;
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1.5deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(233, 236, 239, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  overflow-x: clip;
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  flex-wrap: wrap;
  row-gap: 10px;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 961px) {
  .header-inner {
    flex-wrap: nowrap;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  min-width: 48px;
  max-width: 148px;
  height: 52px;
  padding: 4px 10px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--white) 0%, #f3f6f9 100%);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-4deg) scale(1.04);
  box-shadow: var(--shadow), 0 0 0 1px rgba(126, 200, 234, 0.35) inset;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: var(--navy);
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
  flex: 1 1 auto;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.72rem;
  padding: 6px 0;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .site-nav a {
    font-size: 0.82rem;
  }

  .site-nav--compact a {
    font-size: 0.92rem;
  }
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white) !important;
  padding: 11px 18px !important;
  border-radius: 999px;
  margin-left: 4px;
  box-shadow: 0 4px 18px rgba(21, 34, 56, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

body.nav-open .nav-toggle-bar:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    max-width: none;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    white-space: normal;
    font-size: 0.95rem;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
    margin-top: 10px;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 8vw, 100px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(165deg, #dde3ea 0%, var(--bg) 45%, #eef2f6 100%);
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: -30% -20%;
  background:
    radial-gradient(ellipse 50% 40% at 70% 20%, rgba(126, 200, 234, 0.45), transparent 55%),
    radial-gradient(ellipse 45% 35% at 15% 60%, rgba(214, 40, 57, 0.18), transparent 50%),
    radial-gradient(ellipse 35% 30% at 85% 75%, rgba(30, 53, 84, 0.12), transparent 45%);
  animation: mesh-shift 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes mesh-shift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  40% {
    transform: translate(-3%, 2%) scale(1.05);
    opacity: 0.92;
  }

  70% {
    transform: translate(2%, -2%) scale(1.02);
    opacity: 1;
  }
}

.blob {
  position: absolute;
  border-radius: var(--radius-blob);
  filter: blur(0.5px);
  opacity: 0.85;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.blob-1 {
  width: min(520px, 90vw);
  height: min(420px, 70vw);
  left: -12%;
  top: -18%;
  background: radial-gradient(circle at 40% 40%, rgba(126, 200, 234, 0.55), rgba(126, 200, 234, 0.08) 70%);
  animation: blob-a 14s ease-in-out infinite;
}

.blob-2 {
  width: min(380px, 65vw);
  height: min(340px, 55vw);
  right: -8%;
  top: 5%;
  background: radial-gradient(circle at 55% 45%, rgba(214, 40, 57, 0.22), rgba(214, 40, 57, 0.04) 68%);
  animation: blob-b 16s ease-in-out infinite;
  animation-delay: -4s;
}

.blob-3 {
  width: min(440px, 80vw);
  height: min(360px, 60vw);
  left: 25%;
  bottom: -25%;
  background: radial-gradient(circle at 50% 50%, rgba(30, 53, 84, 0.14), transparent 65%);
  animation: blob-c 20s ease-in-out infinite;
  animation-delay: -7s;
}

@keyframes blob-a {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(4%, 6%) rotate(8deg);
  }
}

@keyframes blob-b {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  50% {
    transform: translate(-5%, 4%) rotate(-6deg) scale(1.06);
  }
}

@keyframes blob-c {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-6%, -4%);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  max-width: 100%;
  margin-inline: auto;
  min-width: 0;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 200px;
  }
}

.hero-copy {
  min-width: 0;
}

.hero-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

.hero-title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.1;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--navy);
  max-width: 20ch;
  letter-spacing: -0.03em;
}

.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0;
}

.hero-acronym {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--navy);
}

.hero-lead {
  margin: 0 0 20px;
  max-width: 58ch;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.nowrap {
  white-space: nowrap;
}

.hero-slogan {
  margin: 0 0 26px;
  padding: 18px 22px 18px 24px;
  border-left: 5px solid var(--accent);
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.72) 100%);
  border-radius: 4px 22px 22px 4px;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2.1vw, 1.42rem);
  font-style: italic;
  color: var(--navy);
  max-width: 50ch;
  backdrop-filter: blur(6px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--white);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px var(--accent-glow);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  border-color: rgba(21, 34, 56, 0.12);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--hand-deep);
  background: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hero-stats dt {
  font-size: 0.68rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 8px;
}

.hero-stats dd {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.35;
}

@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  min-width: 0;
}

.hero-ring {
  position: absolute;
  width: min(340px, 75vw);
  height: min(340px, 75vw);
  border-radius: 48% 52% 51% 49% / 46% 48% 52% 54%;
  border: 2px solid rgba(126, 200, 234, 0.35);
  animation: ring-pulse 5s ease-in-out infinite;
}

.hero-ring--delayed {
  width: min(380px, 82vw);
  height: min(380px, 82vw);
  border-color: rgba(214, 40, 57, 0.15);
  animation-delay: -2.5s;
  animation-duration: 6.5s;
}

@keyframes ring-pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.06) rotate(4deg);
    opacity: 0.55;
  }
}

/* ---- Sections ---- */
.section {
  position: relative;
  padding: clamp(56px, 7vw, 100px) 0;
}

.section-tint {
  background: linear-gradient(180deg, var(--bg-tint) 0%, #e8ecf2 100%);
}

.section-deco {
  overflow-x: clip;
}

.section-deco::before,
.section-deco::after {
  content: "";
  position: absolute;
  border-radius: var(--radius-blob);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.section-deco::before {
  width: min(400px, 70vw);
  height: min(320px, 50vw);
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(126, 200, 234, 0.35), transparent 68%);
  animation: blob-a 18s ease-in-out infinite;
}

.section-deco::after {
  width: min(360px, 60vw);
  height: min(280px, 45vw);
  bottom: -60px;
  left: -40px;
  background: radial-gradient(circle, rgba(214, 40, 57, 0.12), transparent 65%);
  animation: blob-b 20s ease-in-out infinite;
}

.section-deco--alt::before {
  right: auto;
  left: -50px;
  background: radial-gradient(circle, rgba(30, 53, 84, 0.1), transparent 70%);
}

.section-deco .container,
.section-deco .container.narrow {
  position: relative;
  z-index: 1;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 42%, #0f1a2c 100%);
  color: #c5d2e5;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(126, 200, 234, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(214, 40, 57, 0.15), transparent 50%);
  pointer-events: none;
}

.section-dark .container {
  position: relative;
  z-index: 1;
}

.section-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-title.light {
  color: var(--white);
}

.section-lead {
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: var(--muted);
}

.section-lead.center {
  text-align: center;
  max-width: 70ch;
  margin-inline: auto;
}

.section-lead.light {
  color: #a8bad4;
}

.section p {
  margin: 0 0 1rem;
}

.grid {
  display: grid;
  gap: 22px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .cards-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.3s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--hand), var(--navy-soft));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.card-border {
  box-shadow: none;
  border: 1px solid var(--line);
  background: var(--white);
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  max-width: 820px;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  font-size: 1.03rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 40% 60% 55% 45%;
  background: linear-gradient(135deg, var(--hand-deep), var(--accent));
  box-shadow: 0 0 0 4px rgba(126, 200, 234, 0.2);
}

.fine-print {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--muted);
}

.fine-print.light {
  color: #8fa3bd;
}

.membership {
  text-align: center;
}

.membership-price {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6vw, 3.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.membership-price .currency {
  font-size: 0.5em;
  vertical-align: super;
  margin-right: 2px;
  color: var(--accent);
}

.membership-price .per {
  font-size: 0.32em;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.board-grid {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.board-grid li {
  background: linear-gradient(145deg, var(--white) 0%, #f6f8fb 100%);
  border: 1px solid var(--line);
  border-radius: 18px 22px 20px 24px;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.board-grid li:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-sm);
}

.subheading {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.support-text {
  margin: 0;
  max-width: 75ch;
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0f1828 0%, var(--navy) 100%);
  color: #94a8c2;
  padding: 40px 0 48px;
  font-size: 0.92rem;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -20%;
  width: 50%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(214, 40, 57, 0.2), transparent 70%);
  pointer-events: none;
}

.site-footer strong {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}

.footer-tag {
  margin: 8px 0 0;
  color: #7d90ab;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

@media (max-width: 600px) {
  .footer-links {
    text-align: left;
  }
}

.list-plain {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.list-plain li {
  margin-bottom: 10px;
}

/* ---- Uitbreiding: skip link, callout, tags, FAQ, footer, terug naar boven ---- */

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 16px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 8px;
  z-index: 100;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--hand);
  outline-offset: 2px;
}

.callout {
  margin-top: 32px;
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214, 40, 57, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 245, 0.75) 100%);
  box-shadow: var(--shadow-sm);
}

.callout-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.callout p {
  margin: 0;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  max-width: 900px;
  margin-inline: auto;
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(21, 34, 56, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tag:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 200, 234, 0.6);
  box-shadow: 0 6px 20px rgba(126, 200, 234, 0.2);
}

.grid-spaced-top {
  margin-top: 22px;
}

.lead-narrow {
  max-width: 56ch;
  margin-inline: auto;
}

.narrow-footnote {
  max-width: 62ch;
  margin-inline: auto;
  margin-top: 24px;
  text-align: center;
}

.center {
  text-align: center;
}

.horizon-list {
  margin: 0;
  padding: 0 0 0 1.2rem;
  max-width: 58ch;
}

.horizon-list li {
  margin-bottom: 12px;
  padding-left: 4px;
}

.horizon-list li::marker {
  color: var(--accent);
}

.card--on-dark {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.card--on-dark h3 {
  color: var(--white);
}

.card--on-dark p {
  color: #c5d4e8;
}

.card--on-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(126, 200, 234, 0.35);
}

.card--on-dark::before {
  background: linear-gradient(90deg, var(--accent), var(--hand), rgba(255, 255, 255, 0.4));
}

.faq {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.faq-heading {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  padding: 14px 18px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 40;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(21, 34, 56, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--white);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--hand);
  outline-offset: 3px;
}

/* ---- Multi-page: compacte nav, subkop, teaserkaarten ---- */

.site-nav--compact {
  gap: 8px 16px;
  max-width: none;
}

.site-nav--compact a {
  font-size: 0.86rem;
}

.site-nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--accent);
}

.site-nav .nav-cta[aria-current="page"] {
  color: var(--white) !important;
  box-shadow: 0 0 0 2px rgba(126, 200, 234, 0.65);
}

.page-hero {
  padding: clamp(36px, 6vw, 56px) 0 clamp(28px, 4vw, 44px);
  background: linear-gradient(180deg, #dde3ea 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.page-hero-lead {
  margin: 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

.home-teasers .card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-action {
  margin-top: auto;
  align-self: flex-start;
}

.home-secondary-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

.home-secondary-cta--tight {
  margin-top: 20px;
}

.section-cta-intro {
  margin-bottom: 0;
}

.card-title-sm {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.page-next-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
