/* Self-hosted Outfit variable (300–800), latin + latin-ext: avoids render-blocking Google CSS chain. */
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../assets/fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../assets/fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Remco van der Schans, executive banner (navy / gold / grain); typography matches logo mark: geometric sans, confident weights, tight headlines.
   Premium layer is bundled at end of this file (first-paint stable). */

:root {
  --li-in: #0a66c2;
  --li-in-hover: #378fe9;
  --li-in-muted: rgba(10, 102, 194, 0.35);
  --li-blue: #6bb6ff;
  --li-blue-hover: #9ed0ff;
  --li-blue-soft: rgba(10, 102, 194, 0.14);
  --li-violet: #8fa8d4;
  --li-magenta: #c9a87a;
  --li-cyan: #0a66c2;
  --li-page: #02050c;
  --li-ink: #050b14;
  --li-card: rgba(12, 16, 24, 0.78);
  --li-card-solid: rgba(10, 14, 22, 0.94);
  --li-border: rgba(255, 255, 255, 0.07);
  --li-border-glow: rgba(10, 102, 194, 0.45);
  --li-text: rgba(248, 250, 252, 0.97);
  --li-text-secondary: rgba(203, 213, 225, 0.78);
  --li-text-muted: rgba(148, 163, 184, 0.82);
  --li-gold: #d4b896;
  --li-gold-soft: rgba(212, 188, 142, 0.14);
  --li-gold-line: rgba(212, 188, 142, 0.42);
  --li-radius: 1.25rem;
  --li-radius-tight: 0.75rem;
  --li-radius-pill: 999px;
  /* Executive art (navy + gold sweeps + grain): used across motion, hero, banners, sections */
  --li-executive-banner: url("../assets/linkedin-executive-banner.png");
  /* Optional photo banner for profile-only tweaks; primary threaded look uses executive art */
  --li-photographic-cover: url("../assets/linkedin-cover.jpg");
  --li-banner-image: var(--li-executive-banner);
  --li-cover-bg: var(--li-executive-banner);
  --font-sans: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* Display = same family as logo / UI for one coherent modern stack */
  --font-display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --type-tracking-body: -0.011em;
  --type-tracking-headline: -0.038em;
  --type-tracking-title: -0.028em;
  --type-tracking-sub: -0.018em;
  --max: 1180px;
  --space-fab: 96px;
  --glass-blur: 24px;
  --glass-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --page-gutter: clamp(0.75rem, 4vw, 1.5rem);
  --touch-min: 2.75rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  color-scheme: dark;
}

:focus-visible {
  outline: 2px solid var(--li-in-hover);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 0.28vw + 0.84rem, 0.95rem);
  line-height: 1.58;
  letter-spacing: var(--type-tracking-body);
  color: var(--li-text);
  background-color: var(--li-page);
  background-image: radial-gradient(ellipse 130% 90% at 50% 100%, rgba(12, 28, 52, 0.45) 0%, transparent 58%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: clip;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

/*
 * Before site-shell.js injects .site-header, #main-content would otherwise paint from y=0
 * and then jump down when the sticky bar mounts. Reserve a matching band until :has(.site-header).
 */
@supports selector(:has(.site-header)) {
  body:not(:has(.site-header)) #main-content {
    padding-top: clamp(3.65rem, 10vw, 5.35rem);
  }
}

a {
  color: var(--li-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
  color: var(--li-blue-hover);
  text-shadow: none;
}

.wrap {
  width: min(100% - 2 * var(--page-gutter), var(--max));
  max-width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Full-viewport motion background */
.motion-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.motion-field__base {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 3, 9, 0.96) 0%, rgba(2, 5, 12, 0.55) 40%, rgba(1, 4, 10, 0.9) 100%),
    var(--li-executive-banner) center 100% / cover no-repeat,
    radial-gradient(ellipse 100% 70% at 0% 0%, rgba(10, 102, 194, 0.16) 0%, transparent 52%),
    radial-gradient(ellipse 85% 55% at 100% 100%, rgba(212, 188, 142, 0.06) 0%, transparent 48%),
    linear-gradient(168deg, #020408 0%, #070f18 38%, #030508 100%);
}

.motion-field__cover {
  position: absolute;
  inset: -12%;
  background-image: var(--li-cover-bg);
  background-size: cover;
  background-position: 50% 92%;
  background-repeat: no-repeat;
  opacity: 0.2;
  filter: none;
  mix-blend-mode: normal;
  transform: translateZ(0) scale(1.06);
  /* Transform-only: animating background-position here repainted the full layer every frame (visible flicker). */
  animation: cover-drift 72s ease-in-out infinite alternate;
  will-change: transform;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 38%, black 0%, transparent 72%);
}

@keyframes cover-drift {
  0% {
    transform: translateZ(0) scale(1.04) translate(-1%, 0.2%);
  }
  100% {
    transform: translateZ(0) scale(1.07) translate(1%, 0.8%);
  }
}

@media (max-width: 768px) {
  .motion-field__cover {
    opacity: 0.11;
    filter: none;
  }

  .motion-field__mesh {
    opacity: 0.5;
    filter: blur(48px);
  }

  .motion-field__rivers {
    opacity: 0.35;
  }
}

.motion-field__cover.motion-field__cover--echo {
  display: none;
}

.motion-field__mesh {
  position: absolute;
  inset: -38%;
  background:
    radial-gradient(ellipse 72% 58% at 12% 32%, rgba(10, 102, 194, 0.42) 0%, transparent 54%),
    radial-gradient(ellipse 58% 68% at 90% 22%, rgba(196, 165, 116, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 52% 52% at 46% 90%, rgba(20, 48, 96, 0.4) 0%, transparent 58%),
    radial-gradient(ellipse 44% 48% at 76% 46%, rgba(10, 102, 194, 0.26) 0%, transparent 52%);
  filter: blur(56px);
  opacity: 0.55;
  mix-blend-mode: normal;
  transform: translateZ(0) translate(2%, -3%) scale(1.05);
  animation: mesh-morph 96s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes mesh-morph {
  0% {
    transform: translateZ(0) translate(-5%, 4%) rotate(0deg) scale(1);
  }
  50% {
    transform: translateZ(0) translate(6%, -4%) rotate(5deg) scale(1.06);
  }
  100% {
    transform: translateZ(0) translate(2%, -9%) rotate(-4deg) scale(1.1);
  }
}

.motion-field__rivers {
  position: absolute;
  inset: -8% -24%;
  background-image:
    linear-gradient(104deg, transparent 38%, rgba(255, 255, 255, 0.045) 50%, transparent 62%),
    repeating-linear-gradient(
      122deg,
      transparent 0,
      transparent 76px,
      rgba(10, 102, 194, 0.065) 76px,
      rgba(10, 102, 194, 0.065) 78px
    ),
    linear-gradient(86deg, transparent 0%, rgba(212, 188, 142, 0.06) 48%, transparent 100%);
  background-size: 220% 220%, auto, 160% 160%;
  background-position: 50% 50%, 70px 50px, 40% 52%;
  opacity: 0.4;
  mix-blend-mode: normal;
  animation: none;
  mask-image: radial-gradient(ellipse 98% 88% at 50% 42%, black 12%, transparent 76%);
}

@keyframes rivers-sheen {
  0% {
    background-position: 0% 35%, 0 0, 100% 50%;
  }
  100% {
    background-position: 100% 65%, 140px 100px, 0% 55%;
  }
}

.motion-field__aurora {
  position: absolute;
  inset: -20%;
  background: conic-gradient(
    from 220deg at 50% 40%,
    rgba(10, 102, 194, 0.2) 0deg,
    rgba(15, 40, 72, 0.15) 140deg,
    rgba(10, 102, 194, 0.12) 280deg,
    rgba(10, 102, 194, 0.18) 360deg
  );
  /* Conic rotation repainted a huge blurred layer every frame; static read is enough. */
  animation: none;
  opacity: 0.3;
  filter: blur(64px);
  mix-blend-mode: normal;
  transform: translateZ(0) rotate(18deg);
  transform-origin: 50% 42%;
  will-change: auto;
}

.motion-field__aurora.motion-field__aurora--b {
  display: none;
}

.motion-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  mix-blend-mode: normal;
  opacity: 0.45;
  transform: translateZ(0);
}

.motion-blob--a {
  width: min(68vw, 560px);
  height: min(68vw, 560px);
  left: -18%;
  top: 8%;
  background: radial-gradient(circle at 35% 35%, rgba(10, 102, 194, 0.55) 0%, rgba(7, 20, 48, 0.35) 50%, transparent 72%);
  animation: blob-a 52s ease-in-out infinite alternate;
  will-change: transform;
}

.motion-blob--b {
  width: min(78vw, 640px);
  height: min(78vw, 640px);
  right: -22%;
  top: 42%;
  background: radial-gradient(circle at 55% 45%, rgba(30, 64, 120, 0.45) 0%, rgba(10, 102, 194, 0.2) 55%, transparent 70%);
  animation: blob-b 60s ease-in-out infinite alternate;
  will-change: transform;
}

.motion-blob--c {
  width: min(58vw, 480px);
  height: min(58vw, 480px);
  left: 30%;
  bottom: -18%;
  background: radial-gradient(circle at 50% 50%, rgba(196, 165, 116, 0.18) 0%, rgba(10, 102, 194, 0.15) 45%, transparent 74%);
  animation: blob-c 44s ease-in-out infinite alternate;
  will-change: transform;
}

.motion-field__rings {
  position: absolute;
  inset: -50%;
  opacity: 0.5;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    transparent 0,
    transparent 48px,
    rgba(255, 255, 255, 0.025) 48px,
    rgba(255, 255, 255, 0.025) 49px
  );
  animation: rings-pulse 64s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
  will-change: transform;
}

.motion-field__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(96deg, transparent 47px, rgba(10, 102, 194, 0.04) 47px, rgba(10, 102, 194, 0.04) 48px, transparent 48px);
  background-size: 56px 56px, 56px 56px, 96px 96px;
  background-position: 28px 28px, -28px 28px, 48px 48px;
  animation: none;
  mask-image: radial-gradient(ellipse 88% 72% at 50% 42%, black 18%, transparent 78%);
  opacity: 0.28;
}

/* Static grain: animating noise was causing full-screen flicker (repaint every 0.5s). */
.motion-field__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes aurora-spin {
  to {
    transform: translateZ(0) rotate(360deg);
  }
}

@keyframes blob-a {
  0% {
    transform: translateZ(0) translate(2%, 4%) scale(1.02);
  }
  100% {
    transform: translateZ(0) translate(10%, 14%) scale(1.1);
  }
}

@keyframes blob-b {
  0% {
    transform: translateZ(0) translate(-4%, -2%) scale(1.03);
  }
  100% {
    transform: translateZ(0) translate(-14%, -7%) scale(1);
  }
}

@keyframes blob-c {
  0% {
    transform: translateZ(0) translate(-3%, -8%) scale(1.02);
  }
  100% {
    transform: translateZ(0) translate(-8%, -18%) scale(1.12);
  }
}

@keyframes rings-pulse {
  0%,
  100% {
    transform: translateZ(0) scale(1);
  }
  50% {
    transform: translateZ(0) scale(1.018);
  }
}

@keyframes grid-drift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 48px 48px, -48px 48px, 80px 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .li-hero--signature::before,
  .li-hero--convert::before {
    animation: none !important;
  }

  .motion-field__aurora,
  .motion-field__aurora--b,
  .motion-blob,
  .motion-field__rings,
  .motion-field__grid,
  .motion-field__grain,
  .motion-field__cover,
  .motion-field__cover--echo,
  .motion-field__mesh,
  .motion-field__rivers,
  .li-banner,
  .li-banner--motion::after,
  .page-hero::before {
    animation: none !important;
  }

  .motion-field__cover {
    transform: scale(1.05);
    opacity: 0.14;
  }

  .motion-field__cover.motion-field__cover--echo {
    opacity: 0.08;
    transform: scale(1.08);
  }

  .motion-field__mesh {
    transform: translate(2%, -2%) scale(1.04);
    opacity: 0.45;
  }

  .motion-field__rivers {
    opacity: 0.25;
  }

  .motion-blob--a {
    transform: translate(5%, 8%);
  }

  .motion-blob--b {
    transform: translate(-8%, -5%);
  }

  .motion-blob--c {
    transform: translate(-5%, -10%);
  }
}

/* header: one row — logo | nav | actions (desktop); logo | actions when nav drawer closed) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  /* Opaque bar instead of backdrop-filter: compositing over animated fixed layers caused constant flicker on several browsers. */
  background: linear-gradient(180deg, rgba(2, 5, 12, 0.98) 0%, rgba(2, 4, 10, 0.96) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgba(10, 102, 194, 0.25), rgba(212, 188, 142, 0.35), rgba(10, 102, 194, 0.25), transparent 92%);
  pointer-events: none;
  opacity: 0.65;
}

.header-shell {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 0.85rem;
  padding: 0.55rem 0;
  min-width: 0;
  position: relative;
  isolation: isolate;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.header-actions__tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-right: 0.5rem;
  margin-right: 0.15rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 421px) {
  .header-actions {
    gap: 0.55rem;
  }

  .header-actions__tools {
    gap: 0.45rem;
    padding-right: 0.65rem;
  }
}

.header-cta {
  flex-shrink: 0;
  min-height: max(2.25rem, var(--touch-min));
  padding: 0.4rem 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(2, 6, 14, 0.45),
    0 4px 20px rgba(10, 102, 194, 0.28);
}

.header-cta:focus-visible {
  outline: 2px solid rgba(212, 188, 142, 0.55);
  outline-offset: 2px;
}

.header-cta__short {
  display: none;
}

@media (max-width: 420px) {
  .header-cta__long {
    display: none;
  }

  .header-cta__short {
    display: inline;
  }

  .header-cta {
    padding-inline: 0.75rem;
  }
}

.header-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.header-icon-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.header-icon-link:focus-visible {
  outline: 2px solid var(--li-in);
  outline-offset: 2px;
}

.header-icon-link__svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(0.82rem, 2.2vw, 0.95rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--li-text);
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark__sig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  border-radius: 0.7rem;
}

.logo-mark__img {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  border-radius: 0.65rem;
  object-fit: contain;
}

.logo-mark__name {
  min-width: 0;
}

.logo-mark__van {
  color: var(--li-text-secondary);
  font-weight: 500;
}

.logo-mark--lockup {
  gap: 0;
  line-height: 0;
  text-transform: none;
  letter-spacing: normal;
  justify-content: flex-start;
  align-items: center;
}

.logo-mark__lockup {
  display: block;
  height: clamp(2.45rem, 6.5vw, 3.65rem);
  width: auto;
  aspect-ratio: 115 / 80;
  max-width: min(5.5rem, 40vw);
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(226, 232, 240, 0.72);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.42rem 0.65rem;
  border-radius: 0.5rem;
  transition: color 0.18s ease, background 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-tap-highlight-color: rgba(10, 102, 194, 0.25);
}

.nav-links a:hover {
  color: var(--li-text);
  background: rgba(255, 255, 255, 0.06);
}

#site-nav {
  min-width: 0;
}

@media (min-width: 1025px) {
  .header-shell {
    padding: 0.5rem 0;
    gap: 0.65rem 1rem;
  }

  /* Toolbar after nav in DOM — stays above nav for overlap; nav stays interactive (no z-index:0) */
  #site-nav {
    position: relative;
    z-index: 1;
  }

  .header-shell__nav {
    display: flex !important;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: none;
  }

  .header-shell__nav .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.08rem 0.15rem;
    max-width: 100%;
    position: relative;
    z-index: 1;
  }

  .header-actions .nav-burger {
    display: none !important;
  }

  .nav-links__item--hide-desktop {
    display: none;
  }

  .header-shell__nav .nav-links a {
    font-size: 0.68rem;
    letter-spacing: 0.055em;
    padding: 0.45rem 0.65rem;
    min-height: 2.4rem;
  }

  /* Left column: keep logo above centred nav flex hit-testing when widths collide */
  .header-shell > .logo-mark {
    position: relative;
    z-index: 2;
  }
}

/* hero / profile */
main {
  position: relative;
  z-index: 1;
}

.li-hero {
  padding: clamp(1rem, 4vw, 1.75rem) 0 0.5rem;
  position: relative;
  z-index: 1;
}

.li-hero--signature::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(52vh, 28rem);
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(180deg, rgba(2, 4, 10, 0.2) 0%, rgba(2, 4, 10, 0.82) 72%, transparent 100%), var(--li-cover-bg);
  background-size: cover, cover;
  background-position: center, 50% 88%;
  opacity: 0.42;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 96% 78%, 88% 84%, 50% 94%, 12% 84%, 4% 76%, 0 68%);
  filter: saturate(1.05);
  animation: none;
}

@media (max-width: 640px) {
  .li-hero--signature::before {
    opacity: 0.3;
    height: min(38vh, 15rem);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
}

.li-hero--signature .li-hero-inner {
  position: relative;
  z-index: 1;
}

.li-hero--signature .li-hero-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.5rem;
  width: min(42%, 280px);
  height: 3px;
  background: linear-gradient(90deg, var(--li-gold), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.li-hero-inner {
  width: 100%;
  max-width: var(--max);
}

/* --- Home: full conversion hero (responsive split) --- */
.li-hero--convert {
  padding: clamp(0.75rem, 2.8vw, 1.25rem) 0 clamp(1rem, 3.2vw, 1.65rem);
  position: relative;
  z-index: 1;
}

.li-hero--fullscreen {
  --hero-header-band: clamp(4.5rem, 10vh, 5.75rem);
  min-height: calc(100svh - var(--hero-header-band));
  min-height: calc(100dvh - var(--hero-header-band));
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding-block: clamp(1.25rem, 4vh, 2.75rem);
  isolation: isolate;
}

.li-hero--home-pro.li-hero--fullscreen {
  --hero-header-band: clamp(3.35rem, 9vh, 4.35rem);
}

.li-hero--fullscreen > .wrap.hero-convert-layout--fullscreen {
  flex: 1 1 auto;
  min-height: 0;
}

/* Home: do not stretch inner wrap — keeps block vertically centered in viewport */
.li-hero--home-pro.li-hero--fullscreen > .wrap.home-hero-pro {
  flex: 0 1 auto;
  align-self: center;
  width: 100%;
}

.li-hero--convert::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(38vh, 20rem);
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(180deg, rgba(2, 4, 10, 0.14) 0%, rgba(2, 4, 10, 0.68) 70%, transparent 100%), var(--li-cover-bg);
  background-size: cover, cover;
  background-position: center, 50% 88%;
  opacity: 0.32;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 96% 78%, 88% 84%, 50% 94%, 12% 84%, 4% 76%, 0 68%);
  filter: saturate(1.05);
}

.li-hero--fullscreen::before {
  inset: 0;
  height: auto;
  opacity: 0.48;
  clip-path: none;
  background-image:
    radial-gradient(ellipse 90% 70% at 50% -5%, rgba(10, 102, 194, 0.2), transparent 58%),
    radial-gradient(ellipse 55% 50% at 95% 85%, rgba(212, 188, 142, 0.1), transparent 52%),
    radial-gradient(ellipse 45% 45% at 5% 60%, rgba(10, 102, 194, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(2, 4, 12, 0.55) 0%, rgba(2, 5, 10, 0.2) 42%, rgba(2, 5, 10, 0.65) 100%),
    var(--li-cover-bg);
  background-size: auto, auto, auto, auto, cover;
  background-position: center, center, center, center, 50% 88%;
  filter: saturate(1.04);
}

.li-hero--fullscreen::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(3.5rem, 12vh, 6rem);
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3, 6, 14, 0.92));
}

@media (max-width: 640px) {
  .li-hero--convert:not(.li-hero--fullscreen)::before {
    opacity: 0.22;
    height: min(28vh, 11rem);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }

  .li-hero--fullscreen::before {
    opacity: 0.4;
  }
}

.hero-convert-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.25rem, 3.5vw, 2rem);
  align-items: start;
}

.hero-convert-layout--fullscreen {
  flex: 1;
  min-height: 0;
  align-content: center;
  align-items: center;
}

.hero-convert-layout::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.35rem;
  width: min(48%, 320px);
  height: 3px;
  background: linear-gradient(90deg, var(--li-gold), transparent);
  opacity: 0.88;
  pointer-events: none;
}

@media (min-width: 960px) {
  .hero-convert-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(240px, 0.88fr);
    gap: clamp(1.35rem, 2.8vw, 2.75rem);
    align-items: stretch;
  }

  .hero-convert-layout--fullscreen {
    align-items: center;
  }
}

/* --- Home: conversion hero with orbit graphic + portrait stage --- */
.home-hero-pro {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
}

.home-hero-pro::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.35rem;
  width: min(52%, 360px);
  height: 3px;
  background: linear-gradient(90deg, var(--li-gold), transparent);
  opacity: 0.88;
  pointer-events: none;
}

.home-hero-pro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.li-hero--home-pro.li-hero--fullscreen .home-hero-pro__grid {
  align-content: center;
}

.home-hero-pro__copy {
  min-width: 0;
  padding-top: 0.35rem;
}

.hero-proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  list-style: none;
  margin: 0 0 0.65rem;
  padding: 0;
}

.hero-proof-chips__item {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.88);
  border-radius: var(--li-radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 188, 142, 0.2);
  box-shadow: 0 0 0 1px rgba(10, 102, 194, 0.08);
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin: 0;
  max-width: 22rem;
}

.hero-cta-stack__primary.btn-cta-mega {
  width: 100%;
  max-width: none;
  min-height: max(2.85rem, var(--touch-min));
  padding: 0.85rem 1.2rem;
  font-size: clamp(0.74rem, 1.6vw, 0.84rem);
}

.hero-cta-stack__secondary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
}

.hero-cta-stack__ghost {
  flex: 1 1 auto;
  min-width: min(100%, 10rem);
  min-height: max(2.5rem, var(--touch-min));
  padding: 0.5rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-align: center;
}

.hero-cta-stack__contact {
  flex: 1 1 auto;
  justify-content: center;
  min-height: var(--touch-min);
}

.hero-confidence {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.72);
  max-width: 36rem;
  padding-left: 0.65rem;
  border-left: 2px solid rgba(10, 102, 194, 0.45);
}

.home-hero-pro__visual {
  position: relative;
  min-height: min(58vw, 20rem);
  max-width: min(22rem, 100%);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.home-hero-pro__graphic {
  position: absolute;
  inset: -8% -18% -12% -18%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
}

.home-hero-pro__orbit {
  width: 100%;
  height: 100%;
  max-height: min(72vw, 28rem);
  object-fit: contain;
  object-position: center 42%;
  display: block;
  margin: 0 auto;
  filter: saturate(1.08);
}

.home-hero-pro__portrait {
  position: relative;
  z-index: 1;
}

.hero-media-card--pro {
  position: relative;
}

.hero-face--pro {
  width: min(192px, 52vw);
  max-width: 220px;
}

@media (min-width: 960px) {
  .home-hero-pro__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    gap: clamp(1.75rem, 4.5vw, 3.5rem);
    align-items: center;
  }

  .home-hero-pro__visual {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    min-height: clamp(17rem, 40vh, 28rem);
  }

  .home-hero-pro__graphic {
    inset: -12% -28% -18% -22%;
  }

  .home-hero-pro__orbit {
    max-height: none;
    min-height: 100%;
  }

  .hero-face--pro {
    width: 100%;
    max-width: 220px;
  }

  .hero-cta-stack {
    max-width: 24rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-stack__secondary {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-stack__ghost,
  .hero-cta-stack__contact {
    width: 100%;
    flex: none;
  }

  .hero-cta-stack__contact {
    justify-content: center;
  }
}

.hero-convert-layout__copy {
  min-width: 0;
  padding-top: 0.35rem;
}

.li-hero--fullscreen .hero-convert-layout__copy {
  padding-top: 0;
}

.li-hero--fullscreen .home-hero-pro__copy {
  padding-top: 0;
}

@media (min-width: 960px) {
  .li-hero--fullscreen .hero-main-headline {
    font-size: clamp(1.55rem, 2.2vw + 0.65rem, 2.75rem);
    margin-bottom: 0.7rem;
  }

  .li-hero--fullscreen .hero-lead {
    margin-bottom: 1.35rem;
  }

  .li-hero--home-pro.li-hero--fullscreen .hero-main-headline {
    font-size: clamp(1.58rem, 2.4vw + 0.5rem, 2.85rem);
    max-width: min(36rem, 95%);
  }

  .li-hero--home-pro.li-hero--fullscreen .hero-lead {
    margin-bottom: 1.5rem;
    max-width: 42rem;
  }
}

.li-hero--fullscreen .hero-media-card {
  background: linear-gradient(165deg, rgba(10, 14, 24, 0.62) 0%, rgba(6, 10, 18, 0.52) 100%);
  border-color: rgba(212, 188, 142, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-eyebrow {
  margin: 0 0 0.45rem;
  font-size: clamp(0.65rem, 1.35vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--li-gold);
  line-height: 1.35;
}

/* Home: long positioning line reads as editorial lead, not a kicker tag */
.li-hero--home-pro .hero-eyebrow {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-size: clamp(0.78rem, 1.15vw + 0.2rem, 0.95rem);
  line-height: 1.45;
  max-width: min(52rem, 100%);
  color: rgba(226, 232, 240, 0.88);
}

.hero-main-headline {
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 3.6vw + 0.25rem, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: var(--type-tracking-headline);
  margin: 0 0 0.55rem;
  color: var(--li-text);
  max-width: 26ch;
}

@media (min-width: 640px) {
  .hero-main-headline {
    max-width: 24ch;
  }
}

@media (min-width: 960px) {
  .hero-main-headline {
    max-width: 20rem;
  }
}

.li-hero--home-pro .hero-main-headline {
  max-width: min(34ch, 100%);
}

@media (min-width: 640px) {
  .li-hero--home-pro .hero-main-headline {
    max-width: min(32ch, 100%);
  }
}

.hero-lead {
  margin: 0 0 1.15rem;
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  line-height: 1.52;
  color: var(--li-text-secondary);
  max-width: 38rem;
}

.hero-cta-row--clean {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0;
}

.hero-cta-row--clean .hero-cta-row__primary.btn-cta-mega {
  flex: 0 1 auto;
  max-width: 18rem;
  min-height: max(2.75rem, var(--touch-min));
  padding: 0.75rem 1.25rem;
  font-size: clamp(0.72rem, 1.5vw, 0.8125rem);
}

.hero-inline-contact {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--li-text-muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(10, 102, 194, 0.45);
  padding: 0.35rem 0;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.hero-inline-contact:hover {
  color: var(--li-blue-hover);
  text-decoration-color: var(--li-in-hover);
}

.hero-cta-note {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--li-text-muted);
  max-width: 28rem;
}

.hero-convert-layout__media {
  min-width: 0;
}

.hero-media-card {
  position: relative;
  border-radius: 2.25rem 1rem 2rem 1rem / 1.5rem 2.25rem 1.35rem 2rem;
  border: 1px solid rgba(212, 188, 142, 0.14);
  overflow: hidden;
  background: linear-gradient(165deg, rgba(14, 18, 28, 0.97) 0%, rgba(8, 11, 18, 0.94) 55%, rgba(6, 9, 14, 0.96) 100%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(2, 6, 14, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-media-card--simple .hero-media-card__body {
  padding: 1.15rem 1.2rem 1.25rem;
  text-align: center;
}

@media (min-width: 960px) {
  .hero-media-card--simple .hero-media-card__body {
    padding: 1.25rem 1.35rem 1.35rem;
  }
}

.hero-face {
  display: block;
  width: min(176px, 46vw);
  max-width: 200px;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto 0.65rem;
  border-radius: 1.35rem 0.5rem 1.35rem 0.5rem;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.18);
  outline: 2px solid var(--li-in);
  outline-offset: 2px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

@media (min-width: 960px) {
  .hero-face {
    width: 100%;
    max-width: 188px;
  }
}

.hero-name-plate {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: var(--type-tracking-headline);
  color: var(--li-text);
}

.hero-role-mini {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--li-gold);
}

@media (max-width: 959px) {
  .hero-convert-layout__media {
    max-width: min(22rem, 100%);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero-cta-row--clean .hero-cta-row__primary.btn-cta-mega {
    max-width: none;
    width: 100%;
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero-inline-contact {
    width: 100%;
    justify-content: center;
  }

  .hero-main-headline {
    max-width: none;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .li-hero--convert:not(.li-hero--fullscreen)::before {
    height: min(28vh, 9rem);
    opacity: 0.22;
  }

  .li-hero--fullscreen {
    justify-content: flex-start;
    padding-block: 0.5rem 0.85rem;
    min-height: calc(100svh - 4rem);
    min-height: calc(100dvh - 4rem);
  }

  .li-hero--fullscreen::before {
    opacity: 0.36;
  }

  .li-hero--fullscreen::after {
    height: 2.5rem;
  }

  .hero-main-headline {
    font-size: clamp(1.35rem, 4.5vh, 1.85rem);
  }

  .hero-face {
    width: min(112px, 26vw);
  }

  .home-hero-pro__visual {
    min-height: min(40vw, 13rem);
  }

  .home-hero-pro__orbit {
    max-height: min(52vw, 17rem);
  }
}

.li-profile-card {
  position: relative;
  background: linear-gradient(165deg, rgba(14, 18, 28, 0.97) 0%, rgba(8, 11, 18, 0.94) 55%, rgba(6, 9, 14, 0.96) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 3.5rem 1rem 2.5rem 1.25rem / 2rem 2.75rem 1.5rem 2.25rem;
  border: 1px solid rgba(212, 188, 142, 0.14);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(2, 6, 14, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.li-profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  background: radial-gradient(ellipse 120% 80% at 10% -20%, rgba(10, 102, 194, 0.12), transparent 45%);
}

.li-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 5;
  min-height: 100px;
  max-height: 200px;
  background-color: #02050c;
  background-image: var(--li-banner-image),
    linear-gradient(118deg, rgba(1, 4, 12, 0.82) 0%, rgba(10, 102, 194, 0.28) 48%, rgba(2, 4, 10, 0.9) 100%),
    var(--li-cover-bg);
  background-size: cover, 200% 200%, cover;
  background-position: center 86%, 18% 42%, center 90%;
  animation: none;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 96% 84%, 88% 90%, 72% 95%, 50% 100%, 28% 95%, 12% 90%, 4% 84%, 0 76%);
}

.li-banner--motion::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(10, 102, 194, 0.25) 52%,
    transparent 85%
  );
  background-size: 220% 100%;
  background-position: 35% 50%;
  animation: none;
  mix-blend-mode: normal;
  opacity: 0.28;
  pointer-events: none;
}

@media (max-width: 540px) {
  .li-banner {
    min-height: 100px;
    max-height: 160px;
  }
}

.li-profile-body {
  position: relative;
  padding: 0 1.5rem 1.5rem;
  padding-top: 4.25rem;
}

@media (min-width: 768px) {
  .li-profile-body {
    padding: 0 1.75rem 1.75rem;
    padding-top: 4.5rem;
  }
}

.li-avatar {
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 160px;
  height: 160px;
  max-width: 30vw;
  max-height: 30vw;
  border-radius: 1.75rem 0.65rem 1.75rem 0.65rem;
  object-fit: cover;
  background: linear-gradient(145deg, #1a2744, #0a0e14);
  border: 2px solid rgba(255, 255, 255, 0.22);
  outline: 2px solid var(--li-in);
  outline-offset: 3px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(196, 165, 116, 0.35);
  transform: translateY(-50%) rotate(-2deg);
}

@media (min-width: 768px) {
  .li-avatar {
    left: 1.75rem;
  }
}

.li-profile-text {
  padding-top: 0.25rem;
}

@media (min-width: 960px) {
  .li-hero--signature .li-profile-body {
    display: grid;
    grid-template-columns: min(220px, 28%) 1fr;
    column-gap: clamp(1.25rem, 3.5vw, 2.75rem);
    align-items: start;
    padding-top: 1.65rem;
    padding-bottom: 2rem;
  }

  .li-hero--signature .li-avatar {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    width: 100%;
    max-width: 220px;
    max-height: none;
    margin: 0;
    aspect-ratio: 1;
    transform: rotate(-2deg);
  }

  .li-hero--signature .li-profile-text {
    grid-column: 2;
    padding-top: 0;
  }
}

.li-profile-text h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: var(--type-tracking-headline);
  margin: 0 0 0.5rem;
  color: var(--li-text);
  font-style: normal;
}

.li-hero--signature #profile-name {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
}

.li-hero--signature #profile-name::before {
  content: "";
  width: clamp(3.85rem, 11vw, 5.5rem);
  aspect-ratio: 115 / 80;
  flex-shrink: 0;
  background: url("../assets/brand-mark.png") left center / contain no-repeat;
}

.hero-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--li-gold);
  margin: 0 0 0.4rem;
}

.hero-value {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.5vw, 1.42rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: var(--type-tracking-sub);
  color: rgba(248, 250, 252, 0.98);
  margin: 0 0 0.6rem;
  max-width: 38rem;
}

.li-headline {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  font-weight: 500;
  color: var(--li-text-secondary);
  margin: 0 0 0.5rem;
  max-width: 52rem;
  line-height: 1.52;
  letter-spacing: var(--type-tracking-sub);
}

.li-meta-line {
  font-size: 0.8125rem;
  color: var(--li-text-muted);
  margin: 0 0 1rem;
}

.li-langs {
  color: var(--li-text-secondary);
}

.li-summary {
  font-size: 0.9375rem;
  color: var(--li-text-secondary);
  line-height: 1.6;
  max-width: 52rem;
  margin: 0 0 1.35rem;
}

.li-summary--hero {
  margin-bottom: 1rem;
  max-width: 40rem;
}

.hero-convert {
  margin-top: 0.25rem;
  padding: 1.2rem 1.3rem 1.1rem;
  border-radius: 1.65rem 0.5rem 1.5rem 0.5rem;
  background: linear-gradient(
    158deg,
    rgba(10, 102, 194, 0.18) 0%,
    rgba(8, 14, 26, 0.92) 42%,
    rgba(5, 8, 14, 0.97) 100%
  );
  border: 1px solid rgba(10, 102, 194, 0.42);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(2, 6, 14, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}

.hero-convert::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(212, 188, 142, 0.12);
}

.hero-convert__hook {
  margin: 0 0 0.9rem;
  font-size: 0.9375rem;
  color: var(--li-text-secondary);
  line-height: 1.48;
  max-width: 38rem;
  position: relative;
  z-index: 1;
}

.hero-convert__hook strong {
  color: var(--li-text);
}

.hero-convert__actions {
  margin-bottom: 0.55rem;
  position: relative;
  z-index: 1;
}

.btn-cta-mega {
  width: 100%;
  max-width: 22rem;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  font-size: clamp(0.78rem, 1.9vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(2, 6, 14, 0.55),
    0 10px 36px rgba(10, 102, 194, 0.48),
    0 0 36px rgba(212, 188, 142, 0.12);
}

.btn-cta-mega:hover {
  transform: translateY(-2px);
}

.hero-convert__micro {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  color: var(--li-text-muted);
  line-height: 1.45;
  max-width: 34rem;
  position: relative;
  z-index: 1;
}

.hero-tertiary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  font-size: 0.78rem;
  position: relative;
  z-index: 1;
}

.hero-tertiary__link {
  color: var(--li-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.hero-tertiary__link:hover {
  color: var(--li-blue-hover);
}

.hero-tertiary__sep {
  color: var(--li-text-muted);
  opacity: 0.45;
  user-select: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.35rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.25;
  border-radius: var(--li-radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(155deg, #0c2d52 0%, var(--li-in) 42%, #082a4a 100%);
  color: #fff;
  border: 1px solid var(--li-gold-line);
  box-shadow:
    0 0 0 1px rgba(2, 6, 14, 0.55),
    0 6px 28px rgba(10, 102, 194, 0.38),
    0 0 28px rgba(212, 188, 142, 0.1);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(155deg, #0e3560 0%, var(--li-in-hover) 45%, #0a3054 100%);
  box-shadow:
    0 0 0 1px rgba(212, 188, 142, 0.45),
    0 10px 36px rgba(10, 102, 194, 0.45),
    0 0 32px rgba(212, 188, 142, 0.14);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--li-text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-ghost:hover {
  border-color: rgba(10, 102, 194, 0.55);
  background: rgba(10, 102, 194, 0.1);
  color: var(--li-text);
}

/* content flows, no boxed “cards”; soft rhythm + cover-tinted veils (bundled premium block tightens vertical rhythm) */
main .li-card-section {
  padding: clamp(1.5rem, 5vw, 2.75rem) 0;
  position: relative;
}

main .li-card-section:not(:first-of-type)::before {
  content: "";
  display: block;
  width: min(92%, 36rem);
  height: 1px;
  margin: 0 auto clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(90deg, transparent 0%, rgba(10, 102, 194, 0.25) 22%, rgba(212, 188, 142, 0.35) 50%, rgba(10, 102, 194, 0.25) 78%, transparent 100%);
  opacity: 0.9;
}

main .li-card-section > .wrap {
  position: relative;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

main .li-card-section > .wrap::before {
  content: "";
  position: absolute;
  width: min(52vw, 22rem);
  height: min(52vw, 22rem);
  left: -8%;
  top: -12%;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(10, 102, 194, 0.14), transparent 68%), var(--li-cover-bg);
  background-size: auto, cover;
  background-position: center, 50% 95%;
  opacity: 0.12;
  filter: blur(40px);
  transform: rotate(-12deg);
}

main .li-card-section:nth-child(even) > .wrap::before {
  left: auto;
  right: -10%;
  top: 5%;
  transform: rotate(18deg);
  background-position: center, 60% 100%;
}

@media (min-width: 768px) {
  main .li-card-section > .wrap {
    padding: 0;
  }
}

section {
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--li-gold);
  margin: 0 0 0.5rem;
}

section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: var(--type-tracking-title);
  font-style: normal;
  margin: 0 0 1rem;
  color: var(--li-text);
  line-height: 1.12;
}

.lead {
  font-size: 0.9375rem;
  color: var(--li-text-secondary);
  max-width: 62ch;
  margin: 0 0 1rem;
}

.lead:last-of-type {
  margin-bottom: 0;
}

.lead strong {
  color: var(--li-text);
}

/* pillars, graphic tiles */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.pillar {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.5rem 0.35rem 1.25rem 1.5rem;
  padding: 1.15rem 1.25rem;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pillar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 20%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(10, 102, 194, 0.55), rgba(212, 188, 142, 0.4), transparent);
  opacity: 0.65;
  pointer-events: none;
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.5), transparent 45%, rgba(196, 165, 116, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pillar:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 102, 194, 0.3);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.3);
}

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

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: var(--type-tracking-sub);
  margin: 0 0 0.4rem;
  color: var(--li-text);
}

.pillar p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--li-text-secondary);
  line-height: 1.5;
}

/* timeline */
.timeline {
  border-left: 2px solid rgba(10, 102, 194, 0.45);
  margin-left: 0.4rem;
  padding-left: 1.25rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1.25rem - 6px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--li-in), var(--li-gold));
  box-shadow: 0 0 0 3px rgba(6, 8, 12, 0.95), 0 0 14px rgba(10, 102, 194, 0.45);
}

.timeline-item h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: var(--type-tracking-sub);
  margin: 0 0 0.2rem;
  color: var(--li-text);
}

.timeline-item .org {
  color: var(--li-in-hover);
  font-weight: 700;
  font-size: 0.875rem;
}

.timeline-item .period {
  font-size: 0.75rem;
  color: var(--li-text-muted);
  margin-bottom: 0.35rem;
}

.timeline-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--li-text-secondary);
  max-width: 65ch;
  line-height: 1.5;
}

.timeline-item .timeline-body p + p {
  margin-top: 0.5rem;
}

.timeline-item .timeline-body ul {
  margin: 0.35rem 0 0.5rem;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--li-text-secondary);
  line-height: 1.5;
  max-width: 65ch;
}

.timeline-item .timeline-body li {
  margin: 0.12rem 0;
}

.timeline-item .timeline-body p + ul {
  margin-top: 0.25rem;
}

/* Ervaring: role / org / period | body (full-width prose) */
@media (max-width: 767px) {
  .timeline-item__meta {
    display: contents;
  }
}

@media (min-width: 768px) {
  .timeline-item {
    display: grid;
    grid-template-columns: minmax(200px, 0.34fr) minmax(0, 1fr);
    column-gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: start;
  }

  .timeline-item__meta {
    grid-column: 1;
    min-width: 0;
    padding-right: clamp(0.85rem, 2vw, 1.35rem);
    margin-right: 0.15rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .timeline-item .timeline-body {
    grid-column: 2;
    min-width: 0;
  }

  .timeline-item .period {
    margin-bottom: 0;
  }

  .timeline-item .timeline-body p,
  .timeline-item .timeline-body ul {
    max-width: none;
  }
}

/* Ervaring: scroll-revealed timeline (see js/timeline-scroll.js) */
.timeline.timeline--scroll {
  position: relative;
  --tl-progress: 0;
}

.timeline.timeline--scroll .timeline__progress {
  position: absolute;
  top: 0;
  left: calc(-1.25rem - 3px);
  width: 3px;
  height: calc(100% * var(--tl-progress, 0));
  max-height: 100%;
  background: linear-gradient(180deg, var(--li-in), var(--li-gold));
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(10, 102, 194, 0.4);
  pointer-events: none;
  z-index: 0;
  transform-origin: top center;
}

.timeline.timeline--scroll .timeline-item {
  z-index: 1;
}

.timeline.timeline--scroll.timeline--enhanced .timeline-item:not(.is-visible) {
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline.timeline--scroll.timeline--enhanced .timeline-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline.timeline--scroll.timeline--enhanced .timeline-item:not(.is-visible)::before {
  transform: rotate(45deg) scale(0.22);
  opacity: 0;
  box-shadow: 0 0 0 2px rgba(6, 8, 12, 0.95);
  transition:
    transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1),
    opacity 0.32s ease,
    box-shadow 0.32s ease;
}

.timeline.timeline--scroll.timeline--enhanced .timeline-item.is-visible::before {
  transform: rotate(45deg) scale(1);
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(6, 8, 12, 0.95), 0 0 14px rgba(10, 102, 194, 0.45);
  transition:
    transform 0.48s cubic-bezier(0.34, 1.2, 0.64, 1) 0.05s,
    opacity 0.38s ease 0.04s,
    box-shadow 0.42s ease 0.05s;
}

.timeline.timeline--scroll.timeline--static .timeline-item {
  opacity: 1;
  transform: none;
  transition: none;
}

.timeline.timeline--scroll.timeline--static .timeline-item::before {
  transform: rotate(45deg) scale(1);
  opacity: 1;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .timeline.timeline--scroll .timeline__progress {
    height: 100%;
    opacity: 0.85;
  }
}

/* blog: featured row — match rail under bundled premium `section h2 { max-width: 22ch }` */
body[data-nav="blog"] main > .page-hero + .li-card-section > .wrap > h2 {
  max-width: none;
}

/* blog */
.blog-intro {
  font-size: 0.875rem;
  color: var(--li-text-secondary);
  max-width: 55ch;
  margin-bottom: 1rem;
}

.blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.blog-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  padding: 0.85rem 0.25rem 0.85rem 1.15rem;
  background: transparent;
  border: none;
  border-radius: 0 1rem 1rem 0;
  color: var(--li-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.blog-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--li-in), var(--li-gold));
  opacity: 0.55;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.blog-list a:hover {
  background: linear-gradient(90deg, rgba(10, 102, 194, 0.12), transparent 65%);
  color: var(--li-text);
  transform: translateX(6px);
}

.blog-list a:hover::before {
  opacity: 1;
  transform: scaleY(1.05);
}

.blog-list a span:last-child {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--li-gold);
}

.blog-more {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--li-text-secondary);
}

.blog-more a {
  font-weight: 700;
}

/* blog index: full post list + filter (posts.json) */
#alle-artikelen {
  scroll-margin-top: 5.5rem;
}

.blog-all-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 0.75rem;
}

.blog-all-search {
  flex: 1 1 14rem;
  min-width: 0;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  border-radius: var(--li-radius-pill);
  border: 1px solid var(--li-border);
  background: rgba(4, 6, 12, 0.65);
  color: var(--li-text);
}

.blog-all-search::placeholder {
  color: var(--li-text-muted);
}

.blog-all-search:focus {
  outline: none;
  border-color: rgba(10, 102, 194, 0.55);
  box-shadow: 0 0 0 2px rgba(10, 102, 194, 0.2);
}

.blog-all-meta {
  margin: 0;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--li-text-muted);
  font-weight: 600;
}

.blog-all-scroll {
  max-height: min(70vh, 38rem);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--li-border);
  border-radius: 0 14px 0 14px;
  background: rgba(6, 9, 16, 0.55);
  overscroll-behavior: contain;
}

.blog-all-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.blog-all-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-all-list li:last-child {
  border-bottom: none;
}

.blog-all-list a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding: 0.6rem 1.05rem;
  color: var(--li-text);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s ease;
}

.blog-all-list a:hover {
  background: rgba(10, 102, 194, 0.12);
}

.blog-all-slug {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--li-text-muted);
  font-family: var(--font-sans);
}

.blog-all-empty {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--li-text-muted);
}

/* footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3rem) 0 calc(2rem + var(--space-fab));
  margin-top: 0.5rem;
  border-top: none;
  color: var(--li-text-muted);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, rgba(3, 4, 7, 0.45) 0%, rgba(3, 4, 7, 0.92) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6rem;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 120% at 50% 0%, rgba(10, 102, 194, 0.12), transparent 65%), var(--li-cover-bg);
  background-size: auto, cover;
  background-position: center, 50% 100%;
  opacity: 0.1;
  mask-image: linear-gradient(180deg, black 0%, transparent 100%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

.footer-main {
  display: grid;
  gap: clamp(1.35rem, 3.5vw, 2rem);
  align-items: start;
}

.footer-brand {
  min-width: 0;
}

.footer-brand__link {
  display: inline-block;
  line-height: 0;
  border-radius: 0.5rem;
  outline-offset: 3px;
}

.footer-brand__link:focus-visible {
  outline: 2px solid var(--li-in-hover);
}

.footer-logo-lockup {
  width: auto;
  height: clamp(3.35rem, 8vw, 4.5rem);
  aspect-ratio: 115 / 80;
  max-width: min(6.75rem, 42vw);
  object-fit: contain;
  object-position: left top;
}

.footer-brand__tagline {
  margin: 0.85rem 0 0;
  max-width: 38ch;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.88);
  font-weight: 500;
}

.footer-brand__trust {
  margin: 0.5rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.55);
}

.footer-col__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 188, 142, 0.85);
}

.footer-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-col__list a {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.82);
  text-decoration: none;
  border-radius: 0.35rem;
  transition: color 0.15s ease, background 0.15s ease;
}

.footer-col__list a:hover {
  color: var(--li-in-hover);
}

.footer-col__list a[aria-current="page"] {
  color: #fff;
}

.footer-primary-cta {
  margin-top: 1rem;
  width: 100%;
  max-width: 15rem;
  min-height: max(2.35rem, var(--touch-min));
  justify-content: center;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.footer-col__note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(148, 163, 184, 0.9);
  max-width: 28ch;
}

.footer-bottom {
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-legal {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.75);
}

.footer-legal__link {
  color: var(--li-in-hover);
  font-weight: 600;
  text-decoration: none;
}

.footer-legal__link:hover {
  text-decoration: underline;
}

.footer-note {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(148, 163, 184, 0.75);
  max-width: 70ch;
}

@media (min-width: 720px) {
  .footer-main {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 1fr);
    column-gap: clamp(1.25rem, 3.5vw, 2.5rem);
  }

  .footer-brand {
    padding-right: clamp(0.75rem, 2vw, 1.5rem);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-col--nav {
    padding-right: clamp(0.5rem, 1.5vw, 1rem);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 719px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-col--nav,
  .footer-col--connect {
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* Multipage UX: skip link, breadcrumbs, page hero, blog grid, article */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  background: var(--li-in);
  border-radius: 2px;
  transition: left 0.15s ease;
}

.skip-link:focus {
  left: 0.75rem;
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(10, 102, 194, 0.2);
  box-shadow: inset 0 0 0 1px rgba(10, 102, 194, 0.35);
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--li-text);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-burger:hover {
  border-color: rgba(10, 102, 194, 0.4);
  color: var(--li-in-hover);
  background: rgba(10, 102, 194, 0.1);
}

.nav-burger .nav-burger-lines,
.nav-burger .nav-burger-lines::before,
.nav-burger .nav-burger-lines::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-burger .nav-burger-lines::before,
.nav-burger .nav-burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-burger .nav-burger-lines::before {
  top: -6px;
}

.nav-burger .nav-burger-lines::after {
  top: 6px;
}

.site-header.is-open .nav-burger .nav-burger-lines {
  background: transparent;
}

.site-header.is-open .nav-burger .nav-burger-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .nav-burger .nav-burger-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

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

  .header-shell {
    padding: 0.55rem 0;
  }

  .logo-mark {
    flex: 1 1 auto;
    min-width: 0;
    flex-shrink: 1;
  }

  #site-nav {
    display: none;
  }

  .site-header .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin: 0;
    border-top: none;
    overflow: visible;
  }

  .site-header.is-open #site-nav {
    display: flex;
  }

  .site-header.is-open .nav-links {
    display: flex;
  }

  .site-header .nav-links a {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9375rem;
  }

  .site-header .nav-links li:last-child a {
    border-bottom: 0;
  }
}

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--li-text-muted);
  margin: 0 0 1rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  opacity: 0.45;
  font-weight: 400;
}

.breadcrumb a {
  font-weight: 600;
}

.page-hero {
  padding: 1rem 0 0.25rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -20% -8% 0 -8%;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(125deg, rgba(2, 4, 10, 0.95) 0%, rgba(2, 4, 10, 0.5) 42%, rgba(2, 4, 10, 0.18) 100%), var(--li-cover-bg);
  background-size: cover, cover;
  background-position: center, 50% 90%;
  opacity: 0.36;
  clip-path: polygon(0 0, 100% 0, 100% 52%, 96% 58%, 88% 64%, 72% 72%, 50% 82%, 22% 72%, 8% 62%, 0 88%);
  filter: saturate(1.15);
  animation: page-hero-drift 110s ease-in-out infinite alternate;
}

@keyframes page-hero-drift {
  0% {
    background-position: center, 46% 88%;
  }
  100% {
    background-position: center, 54% 95%;
  }
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0 0.5rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  letter-spacing: var(--type-tracking-headline);
  font-style: normal;
  line-height: 1.05;
  margin: 0 0 0.5rem;
  color: var(--li-text);
  position: relative;
  padding-bottom: 0.35rem;
}

.page-hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(5rem, 28%);
  height: 2px;
  background: linear-gradient(90deg, var(--li-in), var(--li-gold));
}

.page-hero-lead {
  margin: 0;
  max-width: 42rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--li-text-secondary);
  line-height: 1.58;
  letter-spacing: var(--type-tracking-body);
}

.stat-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.65rem 0.85rem;
  margin-top: 1.5rem;
  position: relative;
  isolation: isolate;
}

.stat-strip::before {
  content: "";
  position: absolute;
  inset: -18% -8%;
  z-index: -1;
  border-radius: 50%;
  background-image: radial-gradient(ellipse 90% 80% at 80% 20%, rgba(10, 102, 194, 0.22), transparent 55%), var(--li-cover-bg);
  background-size: auto, cover;
  background-position: center, 48% 95%;
  opacity: 0.11;
  filter: blur(32px) saturate(1.2);
  pointer-events: none;
}

.stat-item {
  flex: 1 1 auto;
  min-width: min(9.5rem, 100%);
  text-align: center;
  padding: 0.95rem 1.15rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--li-radius-pill);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

.stat-item:nth-child(3n + 1) {
  border-radius: 2rem 2rem 0.5rem 2rem;
}

.stat-item:nth-child(3n + 2) {
  border-radius: 0.5rem 2rem 2rem 0.5rem;
}

.stat-item:nth-child(3n) {
  border-radius: 2rem 0.5rem 2rem 2rem;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: var(--type-tracking-headline);
  color: #f8fafc;
  line-height: 1.05;
  text-shadow:
    0 0 40px rgba(10, 102, 194, 0.35),
    0 0 22px rgba(212, 188, 142, 0.12);
}

.stat-item span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--li-text-muted);
}

.link-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.35rem;
  position: relative;
  max-width: 44rem;
}

.link-grid::before {
  content: "";
  position: absolute;
  right: -4%;
  top: -30%;
  width: min(48%, 320px);
  height: 140%;
  background-image: var(--li-cover-bg);
  background-size: cover;
  background-position: 45% 100%;
  opacity: 0.08;
  transform: rotate(-8deg);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(210deg, black 0%, transparent 70%);
}

.link-grid > * {
  position: relative;
  z-index: 1;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
  padding: 1.2rem 1.4rem 1.4rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, rgba(8, 12, 22, 0.45) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.25rem 0.45rem 2.25rem 0.45rem;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.link-card::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 10%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(10, 102, 194, 0.7), rgba(212, 188, 142, 0.55), transparent);
  opacity: 0.45;
  pointer-events: none;
}

.link-card:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  border-radius: 0.45rem 2.25rem 0.45rem 2.25rem;
}

.link-card:nth-child(even)::after {
  left: 10%;
  right: 6%;
}

.link-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(10, 102, 194, 0.35);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38);
}

.link-card:hover::after {
  opacity: 0.85;
}

@media (min-width: 720px) {
  .link-grid {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }

  .link-card:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }

  .link-card:nth-child(4n + 1),
  .link-card:nth-child(4n + 4) {
    border-radius: 2.25rem 0.45rem 2.25rem 0.45rem;
  }

  .link-card:nth-child(4n + 2),
  .link-card:nth-child(4n + 3) {
    border-radius: 0.45rem 2.25rem 0.45rem 2.25rem;
  }

  .link-card:nth-child(4n + 2)::after,
  .link-card:nth-child(4n + 3)::after {
    left: 10%;
    right: 6%;
  }

  .link-card:nth-child(4n + 1)::after,
  .link-card:nth-child(4n + 4)::after {
    left: 6%;
    right: 10%;
  }
}

.link-card .link-card-kicker {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--li-gold);
}

.link-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: var(--type-tracking-sub);
  margin: 0;
  color: var(--li-text);
}

.link-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--li-text-secondary);
  line-height: 1.45;
}

.link-card .link-card-cta {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--li-in-hover);
}

.blog-grid {
  display: grid;
  /* auto-fit: stretch cards to full wrap width; auto-fill leaves empty tracks and looks narrower than #alle-artikelen */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem 1.3rem 1.35rem;
  background: linear-gradient(168deg, rgba(16, 24, 38, 0.75) 0%, rgba(6, 8, 14, 0.55) 100%);
  border: 1px solid rgba(212, 188, 142, 0.1);
  border-radius: 1.75rem 0.4rem 1.5rem 1.25rem;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  border-color: rgba(10, 102, 194, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
}

.blog-card-tag {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--li-in-hover);
  margin-bottom: 0.35rem;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: var(--type-tracking-sub);
  margin: 0 0 0.5rem;
  color: var(--li-text);
}

.blog-card p {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
  color: var(--li-text-secondary);
  line-height: 1.5;
}

.blog-card-meta {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--li-text-muted);
  font-weight: 600;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--li-text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--li-border);
  border-radius: 999px;
}

.article-shell {
  max-width: 720px;
  margin-inline: auto;
}

.article-meta {
  font-size: 0.8125rem;
  color: var(--li-text-muted);
  margin-bottom: 1rem;
}

.article-prose {
  font-size: 1rem;
  color: var(--li-text-secondary);
  line-height: 1.7;
}

.article-prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: var(--type-tracking-title);
  color: var(--li-text);
  margin: 2rem 0 0.75rem;
}

.article-prose h2:first-child {
  margin-top: 0;
}

.article-prose p {
  margin: 0 0 1rem;
}

.article-prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.article-prose li {
  margin-bottom: 0.35rem;
}

.article-prose strong {
  color: var(--li-text);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lead + .split-list {
  margin-top: 0.85rem;
}

.split-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.875rem;
  color: var(--li-text-secondary);
}

.split-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--li-in), var(--li-gold));
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

/* ========== Global responsive: portrait, landscape, safe areas ========== */

img,
video {
  max-width: 100%;
  height: auto;
}

.li-profile-card {
  max-width: 100%;
}

main .li-card-section > .wrap {
  max-width: 100%;
}

.li-headline,
.li-summary,
.hero-value,
.hero-main-headline,
.hero-lead,
.hero-cta-note,
.page-hero-lead,
.lead,
.article-prose {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.article-prose a {
  overflow-wrap: anywhere;
}

.nav-burger {
  min-width: var(--touch-min);
  min-height: var(--touch-min);
}

.btn {
  min-height: var(--touch-min);
  padding-left: clamp(0.85rem, 3vw, 1.2rem);
  padding-right: clamp(0.85rem, 3vw, 1.2rem);
}

.btn.btn-cta-mega {
  min-height: max(3.2rem, var(--touch-min));
}

@media (max-width: 480px) {
  .logo-mark__lockup {
    max-width: min(4.5rem, 38vw);
    height: clamp(2.15rem, 11vw, 2.95rem);
  }

  .footer-logo-lockup {
    height: clamp(2.85rem, 12vw, 3.85rem);
    max-width: min(5.75rem, 48vw);
  }

  .li-avatar {
    transform: translateY(-50%) rotate(0deg);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-cta-mega {
    max-width: none;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  :root {
    --li-radius: 12px;
    --li-radius-tight: 8px;
  }

  .li-profile-body {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .li-avatar {
    left: var(--page-gutter);
  }
}

/* Short viewports: landscape phone, small-height tablets */
@media (max-height: 520px) and (orientation: landscape) {
  .li-banner {
    min-height: 72px;
    max-height: 120px;
    aspect-ratio: auto;
  }

  .li-profile-body {
    padding-top: clamp(2.75rem, 12vh, 4rem);
  }

  .li-avatar {
    width: clamp(72px, 20vw, 120px);
    height: clamp(72px, 20vw, 120px);
    max-width: 120px;
    max-height: 120px;
  }

  .page-hero,
  .page-hero .wrap {
    padding-top: 0.35rem;
    padding-bottom: 0;
  }

  .page-hero-title {
    font-size: clamp(1.25rem, 4vh, 1.65rem);
  }

  .page-hero-lead {
    font-size: 0.875rem;
  }
}

@media (max-height: 480px) {
  .li-hero {
    padding-top: 0.5rem;
  }
}

/* Grids: never overflow parent on narrow screens */
.pillars {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.split-list {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}

@media (max-width: 540px) {
  .blog-list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .blog-list a span:last-child {
    align-self: flex-start;
  }
}

@media (hover: hover) and (pointer: fine) {
  .blog-list a:hover {
    transform: translateX(4px);
  }
}

@media (hover: none) {
  .blog-list a:hover {
    transform: none;
  }

  .pillar:hover {
    transform: none;
  }

  .link-card:hover,
  .blog-card:hover {
    transform: none;
  }
}

.site-footer {
  padding-bottom: calc(1.75rem + var(--space-fab) + env(safe-area-inset-bottom, 0px));
  padding-left: max(0px, env(safe-area-inset-left, 0px));
  padding-right: max(0px, env(safe-area-inset-right, 0px));
}

.skip-link:focus {
  left: max(0.75rem, env(safe-area-inset-left, 0px));
  top: max(0.75rem, env(safe-area-inset-top, 0px));
}

/* Large / zoomed UI: respect user font scaling */
@media (min-width: 1400px) {
  html {
    font-size: 100%;
  }
}

/* Foldable / very wide short: keep content readable */
@media (min-width: 1200px) and (max-height: 700px) {
  .li-banner {
    max-height: 140px;
  }
}

/* Open mobile nav: list scroll + touch targets (drawer layout in bundled premium section) */
@media (max-width: 1024px) {
  .site-header .nav-links a {
    min-height: var(--touch-min);
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
}

.timeline-item p,
.timeline-item .org {
  overflow-wrap: break-word;
}

.article-shell {
  width: 100%;
  padding-inline: 0;
}

@media (max-width: 480px) {
  .article-prose h2 {
    font-size: clamp(1.05rem, 4.5vw, 1.25rem);
  }
}

/* WordPress import: post body + archive lists */
.wp-import-wrap .breadcrumb {
  margin-bottom: 1.25rem;
}

.wp-import-wrap .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--li-text-muted);
}

.wp-import-wrap .breadcrumb a {
  color: var(--li-text-secondary);
  text-decoration: none;
}

.wp-import-wrap .breadcrumb a:hover {
  color: var(--li-blue-hover);
}

.wp-post-header .article-meta {
  font-size: 0.95rem;
  color: var(--li-text-muted);
  margin: 0;
}

.wp-post-header .article-meta a {
  color: var(--li-text-secondary);
  text-decoration: none;
}

.wp-post-header .article-meta a:hover {
  color: var(--li-blue-hover);
}

.wp-entry-content {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--li-text-secondary);
  max-width: 48rem;
}

.wp-entry-content > * + * {
  margin-top: 1rem;
}

.wp-entry-content h2,
.wp-entry-content h3,
.wp-entry-content h4 {
  color: var(--li-text);
  font-family: var(--font-display);
  font-style: normal;
  letter-spacing: var(--type-tracking-sub);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.wp-entry-content h2 {
  font-weight: 700;
  letter-spacing: var(--type-tracking-title);
}

.wp-entry-content h3 {
  font-weight: 600;
}

.wp-entry-content h4 {
  font-weight: 600;
}

.wp-entry-content a {
  color: var(--li-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.wp-entry-content a:hover {
  color: var(--li-blue-hover);
}

.wp-entry-content img,
.wp-entry-content video {
  max-width: 100%;
  height: auto;
  border-radius: var(--li-radius-tight);
}

.wp-entry-content figure {
  margin: 1.25rem 0;
}

.wp-entry-content blockquote {
  margin: 1.25rem 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--li-border-glow);
  background: var(--li-blue-soft);
  border-radius: 0 var(--li-radius-tight) var(--li-radius-tight) 0;
}

.wp-entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  overflow-x: auto;
  display: block;
}

.wp-entry-content th,
.wp-entry-content td {
  border: 1px solid var(--li-border);
  padding: 0.5rem 0.65rem;
  text-align: left;
}

.wp-entry-content pre,
.wp-entry-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
  font-size: 0.9em;
}

.wp-entry-content pre {
  padding: 1rem;
  overflow-x: auto;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--li-radius-tight);
  border: 1px solid var(--li-border);
}

.archive-post-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.archive-post-list li {
  margin: 0;
}

.archive-list-link {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.85rem 1rem;
  background: var(--li-card);
  border: 1px solid var(--li-border);
  border-radius: 0 14px 0 0;
  border-left: 2px solid rgba(10, 102, 194, 0.4);
  text-decoration: none;
  color: var(--li-text);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.archive-list-link:hover {
  border-color: var(--li-border-glow);
  background: var(--li-card-solid);
}

.archive-list-title {
  font-weight: 600;
  flex: 1 1 12rem;
}

.archive-list-date {
  font-size: 0.85rem;
  color: var(--li-text-muted);
  white-space: nowrap;
}

.archive-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--li-border);
}

/* Afspraak: custom booking UI (TidyCal API via Netlify function) */
.afspraak-booking-lead {
  margin-bottom: 0.25rem;
}

.afspraak-booking {
  margin-top: 1.25rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: var(--li-card);
  border: 1px solid var(--li-border);
  border-radius: 0 18px 0 0;
  border-left: 2px solid rgba(10, 102, 194, 0.45);
}

.ab-layout {
  display: grid;
  gap: clamp(1rem, 3vw, 1.75rem);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ab-layout {
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
    align-items: start;
  }
}

.ab-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.ab-cal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  flex: 1;
}

.ab-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
  margin-bottom: 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--li-text-muted);
}

.ab-weekday {
  text-align: center;
}

.ab-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.ab-cell {
  aspect-ratio: 1;
  min-height: 2.25rem;
  padding: 0;
  border-radius: 8px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  color: var(--li-text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.ab-cell--empty {
  background: transparent;
  border: none;
  cursor: default;
}

.ab-cell--past {
  opacity: 0.28;
  cursor: not-allowed;
}

.ab-cell--none {
  opacity: 0.35;
  cursor: not-allowed;
}

.ab-cell--has {
  border-color: rgba(10, 102, 194, 0.28);
}

.ab-cell--has:hover:not(:disabled) {
  border-color: rgba(10, 102, 194, 0.5);
  background: rgba(10, 102, 194, 0.12);
}

.ab-cell--selected {
  border-color: rgba(212, 188, 142, 0.65);
  background: rgba(212, 188, 142, 0.12);
}

.ab-tz {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
}

.ab-muted {
  margin: 0;
  font-size: 0.875rem;
  color: var(--li-text-muted);
}

.ab-side-h {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.ab-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.ab-slot.ab-slot--active {
  border-color: rgba(212, 188, 142, 0.7);
  background: rgba(212, 188, 142, 0.14);
}

.ab-form {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 28rem;
}

.ab-booking-summary {
  margin-bottom: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--li-border);
  background: rgba(4, 5, 8, 0.35);
}

.ab-confirm-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.ab-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--li-text-secondary);
  line-height: 1.45;
}

.ab-summary-line {
  margin: 0;
}

.ab-meet-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--li-text-secondary);
  margin-top: 0.25rem;
}

.ab-readonly {
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(10, 102, 194, 0.35);
  background: rgba(10, 102, 194, 0.1);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--li-text);
}

.ab-phone-row {
  display: flex;
  gap: 0.45rem;
  align-items: stretch;
}

.ab-phone-cc {
  flex: 0 0 auto;
  min-width: 6.5rem;
  max-width: 8.5rem;
}

.ab-phone-local {
  flex: 1 1 auto;
  min-width: 0;
}

.ab-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.ab-form-actions .ab-submit {
  margin-top: 0;
}

.ab-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--li-text-secondary);
}

.ab-input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--li-border);
  background: rgba(4, 5, 8, 0.55);
  color: var(--li-text);
  font-size: 0.95rem;
}

.ab-input:focus {
  outline: 2px solid rgba(10, 102, 194, 0.45);
  outline-offset: 1px;
}

.ab-submit {
  margin-top: 0.35rem;
  align-self: flex-start;
}

.ab-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.ab-status--info {
  color: var(--li-text-secondary);
}

.ab-status--ok {
  color: rgba(120, 200, 150, 0.95);
}

.ab-status--err {
  color: rgba(255, 160, 140, 0.95);
}

.ab-fallback {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--li-text-muted);
}

/* =============================================================================
   Buttonizer (floating actions + popover), match executive site chrome
   Classnames are stable in Buttonizer v4 light DOM; !important beats injected rules
   ============================================================================= */

html body .buttonizer-widgets {
  font-family: var(--font-sans) !important;
  z-index: 2147483000 !important;
  bottom: calc(5% + env(safe-area-inset-bottom, 0px)) !important;
  right: calc(5% + env(safe-area-inset-right, 0px)) !important;
  filter: none;
}

html body .buttonizer-backdrop {
  background: rgba(2, 4, 8, 0.62) !important;
  backdrop-filter: blur(6px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(6px) saturate(120%) !important;
}

html body .buttonizer-group {
  background: linear-gradient(165deg, rgba(14, 18, 28, 0.96) 0%, rgba(8, 11, 18, 0.92) 55%, rgba(6, 9, 14, 0.95) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 3.5rem 1rem 2.5rem 1.25rem / 2rem 2.75rem 1.5rem 2.25rem !important;
  border-left: 2px solid rgba(10, 102, 194, 0.65) !important;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(196, 165, 116, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(18px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(130%) !important;
  overflow: visible !important;
}

html body .buttonizer-head {
  background: linear-gradient(145deg, var(--li-in) 0%, #063d7a 100%) !important;
  border-radius: 0.65rem !important;
  min-width: 3.25rem !important;
  min-height: 3.25rem !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow:
    0 0 0 1px rgba(196, 165, 116, 0.4),
    0 12px 40px rgba(10, 102, 194, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.4) !important;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

html body .buttonizer-head:hover {
  filter: brightness(1.06) !important;
  box-shadow:
    0 0 0 1px rgba(212, 188, 142, 0.55),
    0 14px 44px rgba(10, 102, 194, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.45) !important;
}

html body .buttonizer-button {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0 14px 0 0 !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
}

html body .buttonizer-button:hover {
  background: rgba(10, 102, 194, 0.18) !important;
  border-color: rgba(10, 102, 194, 0.5) !important;
}

html body .buttonizer-label {
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(248, 250, 252, 0.94) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35) !important;
}

html body .buttonizer-widgets svg,
html body .buttonizer-widgets .buttonizer-head svg {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}

@media (prefers-reduced-motion: reduce) {
  html body .buttonizer-widgets .buttonizer-pulse-animation,
  html body .buttonizer-widgets [class*="pulse"] {
    animation: none !important;
  }
}


/* ========== premium-ux (bundled for first paint; was css/premium-ux.css) ========== */
/**
 * Premium creative UX layer, same palette (navy, LinkedIn blue, gold).
 * Bundled at end of styles.css so header/layout rules apply on first paint.
 */

:root {
  --ux-space-xs: 0.35rem;
  --ux-space-sm: 0.75rem;
  --ux-space-md: 1.25rem;
  --ux-space-lg: 2rem;
  --ux-space-xl: clamp(2.5rem, 6vw, 4.5rem);
  --ux-radius-panel: 1.35rem;
  --ux-radius-pill: 999px;
  --ux-shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.22);
  --ux-shadow-lift: 0 24px 64px rgba(0, 0, 0, 0.45);
  --ux-line: linear-gradient(90deg, var(--li-in), var(--li-gold));
  --ux-surface-1: rgba(10, 14, 24, 0.94);
  --ux-surface-2: rgba(14, 20, 34, 0.88);
  --ux-max-read: 42rem;
}

/* --- Motion / paint: stop hero drift (flicker) --- */
.page-hero::before {
  animation: none !important;
  opacity: 0.32;
}

/* --- Header: clean rail + calmer mobile drawer --- */
.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.header-shell {
  padding-top: 0.7rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 1025px) {
  .header-shell {
    padding-top: 0.55rem;
    padding-bottom: 0.4rem;
  }

  .header-cta {
    padding: 0.48rem 1.05rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    box-shadow:
      0 0 0 1px rgba(2, 6, 14, 0.5),
      0 6px 24px rgba(10, 102, 194, 0.32);
  }

  .header-icon-link {
    border-radius: 0.5rem;
    width: 2.25rem;
    height: 2.25rem;
  }

  .nav-links a:hover {
    background: rgba(10, 102, 194, 0.14);
    color: #fff;
  }

  .nav-links a[aria-current="page"] {
    background: rgba(10, 102, 194, 0.22);
    color: #fff;
    box-shadow: inset 0 -2px 0 0 rgba(212, 188, 142, 0.65);
  }
}

.nav-drawer__glow {
  display: none;
}

/* --- Mobile & tablet: fullscreen nav drawer + lang beside hamburger --- */
@media (max-width: 1024px) {
  html.nav-drawer-open,
  html.nav-drawer-open body {
    overflow: hidden;
    height: 100%;
    /* none breaks tap targets on some WebKit builds; keep scroll lock via overflow only */
    touch-action: manipulation;
  }

  .header-actions .lang-switcher__label--toolbar {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    pointer-events: none;
  }

  .header-actions .lang-switcher {
    gap: 0.25rem;
  }

  .header-actions .lang-switcher__btns {
    padding: 0.1rem;
    gap: 0.12rem;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .header-actions .lang-switcher__btn {
    padding: 0.38rem 0.48rem;
    font-size: 0.68rem;
  }

  .site-header.is-open {
    position: fixed;
    inset: 0;
    z-index: 200;
    overflow: hidden;
    overscroll-behavior: contain;
    padding: 0;
    margin: 0;
    border: none;
    background: linear-gradient(180deg, #03060f 0%, #050a14 45%, #020409 100%);
    box-shadow: none;
  }

  .site-header.is-open::before,
  .site-header.is-open::after {
    display: none;
  }

  .site-header.is-open .wrap.header-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: start;
    min-height: 100dvh;
    min-height: 100vh;
    padding-top: calc(var(--ux-space-md) + env(safe-area-inset-top, 0px));
    padding-bottom: calc(var(--ux-space-lg) + env(safe-area-inset-bottom, 0px));
    gap: 0;
    box-sizing: border-box;
  }

  .site-header.is-open .header-shell > .logo-mark {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: start;
    min-width: 0;
    max-width: 100%;
  }

  .site-header.is-open .header-shell > .header-actions {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .site-header.is-open #site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: var(--ux-space-md);
    padding-top: var(--ux-space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(4, 8, 16, 0.5);
    border-radius: 1rem 1rem 0 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: visible;
  }

  .site-header.is-open .nav-drawer__glow {
    display: none;
  }

  .site-header.is-open .nav-links {
    position: relative;
    z-index: 2;
    flex: 1;
    min-height: 0;
    padding: var(--ux-space-sm) var(--page-gutter) var(--ux-space-xl);
    margin: 0;
    gap: 0.15rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .site-header.is-open .nav-links a {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: clamp(1.15rem, 3.8vw, 1.45rem);
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.015em;
    padding: 0.85rem 1rem;
    border-radius: 0.55rem;
    border-bottom: none;
    color: rgba(248, 250, 252, 0.92);
    border: 1px solid transparent;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .site-header.is-open .nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .site-header.is-open .nav-links a[aria-current="page"] {
    color: #fff;
    background: rgba(10, 102, 194, 0.18);
    border-color: rgba(10, 102, 194, 0.3);
    box-shadow: inset 3px 0 0 var(--li-in);
  }
}

@media (max-width: 1024px) and (prefers-reduced-motion: reduce) {
  .site-header.is-open .nav-links a {
    transition: none;
  }
}

/* --- Page hero: magazine masthead --- */
.page-hero {
  padding: var(--ux-space-xl) 0 var(--ux-space-lg);
}

.page-hero .wrap {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.breadcrumb {
  margin-bottom: var(--ux-space-md);
}

.breadcrumb ol {
  gap: 0.5rem;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: var(--ux-radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  text-decoration: none;
  color: var(--li-text-secondary);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.breadcrumb a:hover {
  background: rgba(10, 102, 194, 0.15);
  border-color: rgba(10, 102, 194, 0.35);
  color: var(--li-text);
}

/* Current page: same family as Home pill, reads as one nav row */
.breadcrumb li:not(:last-child) {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0;
  opacity: 0.5;
}

.breadcrumb li[aria-current="page"] {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.95rem;
  border-radius: var(--ux-radius-pill);
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.16), rgba(6, 12, 24, 0.65));
  border: 1px solid rgba(10, 102, 194, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 2px 12px rgba(0, 0, 0, 0.2);
  color: rgba(248, 250, 252, 0.96);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  max-width: min(100%, 46rem);
}

.page-hero-title {
  font-size: clamp(2.15rem, 5.2vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  max-width: 18ch;
}

.page-hero-title::after {
  width: min(6rem, 40%);
  height: 3px;
  border-radius: 3px;
  background: var(--ux-line);
}

.page-hero-lead {
  max-width: min(var(--ux-max-read), 100%);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: rgba(203, 213, 225, 0.88);
}

/* --- Over mij: hero with portrait illustration --- */
.page-hero--about .page-hero-about__copy .page-hero-title {
  max-width: none;
}

.page-hero-about {
  max-width: min(72rem, 100%);
}

.page-hero--about .breadcrumb {
  margin-bottom: var(--ux-space-lg);
  padding: 0.2rem 0 var(--ux-space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, transparent 92%);
  border-radius: 0.5rem 0.5rem 0 0;
}

.page-hero--about.page-hero {
  padding-top: clamp(1.5rem, 4.5vw, 2.85rem);
  padding-bottom: clamp(var(--ux-space-lg), 4vw, var(--ux-space-xl));
}

.page-hero-about__grid {
  display: grid;
  gap: var(--ux-space-lg);
  /* end zou tekst onderaan zetten naast een hoge afbeelding = groot gat boven de titel */
  align-items: start;
}

.page-hero-about__copy .page-hero-title {
  margin-top: 0.15rem;
}

.page-hero-about__copy .page-hero-lead {
  margin-top: 0.35rem;
}

.page-hero-about__portrait {
  margin: 0;
  justify-self: center;
  max-width: min(280px, 70vw);
}

.page-hero-about__portrait img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(48vh, 380px);
  object-fit: contain;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(10, 102, 194, 0.18);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(8, 12, 22, 0.35));
}

@media (max-width: 879px) {
  .page-hero-about__grid {
    grid-template-columns: 1fr;
  }

  /* Tekst eerst, illustratie onder de intro (natuurlijke documentvolgorde). */
  .page-hero-about__portrait {
    margin-top: var(--ux-space-md);
    margin-bottom: 0;
  }
}

@media (min-width: 880px) {
  .page-hero-about__grid {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 32%);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
  }

  .page-hero-about__portrait {
    justify-self: end;
    align-self: center;
    max-width: min(300px, 34vw);
  }

  .page-hero-about__portrait img {
    max-height: min(58vh, 460px);
  }
}

/* --- Sections: chapter rhythm + rail --- */
main .li-card-section {
  padding: var(--ux-space-xl) 0;
  position: relative;
}

main .li-card-section:nth-child(even) {
  background: linear-gradient(180deg, transparent 0%, rgba(10, 102, 194, 0.04) 50%, transparent 100%);
}

main .li-card-section > .wrap {
  position: relative;
  /* Match inline padding both sides so the gradient rail does not pull content off-center */
  padding-inline: clamp(1rem, 3vw, 1.75rem);
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--li-in), var(--li-gold)) 1;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  opacity: 0.95;
}

section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 22ch;
  line-height: 1.12;
}

.lead {
  max-width: min(52ch, 100%);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.68;
}

/* --- Home hero: wider canvas + premium card shell (body grid stays in styles.css) --- */
body[data-nav="home"] .li-hero:not(.li-hero--fullscreen) {
  padding-bottom: var(--ux-space-lg);
}

body[data-nav="home"] .li-hero--fullscreen {
  padding-bottom: clamp(0.75rem, 2.5vh, 1.25rem);
}

body[data-nav="home"] .hero-convert-layout,
body[data-nav="home"] .home-hero-pro {
  max-width: min(76rem, 100%);
}

body[data-nav="home"] .hero-media-card {
  background: var(--ux-surface-1);
  border: 1px solid rgba(212, 188, 142, 0.16);
  box-shadow: var(--ux-shadow-lift), 0 0 0 1px rgba(10, 102, 194, 0.1);
}

body[data-nav="home"] .li-hero--fullscreen .hero-media-card {
  background: linear-gradient(165deg, rgba(14, 18, 28, 0.72) 0%, rgba(8, 12, 20, 0.58) 100%);
  border: 1px solid rgba(212, 188, 142, 0.14);
  box-shadow:
    var(--ux-shadow-lift),
    0 0 0 1px rgba(10, 102, 194, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@media (min-width: 960px) {
  body[data-nav="home"] .hero-media-card {
    border-radius: 2rem 2.25rem 1.35rem 2rem;
  }
}

body[data-nav="home"] .hero-lead {
  font-size: clamp(0.9rem, 1.15vw, 0.98rem);
  line-height: 1.55;
  max-width: 40ch;
}

body[data-nav="home"] .li-hero--home-pro .hero-proof-chips__item {
  background: rgba(10, 102, 194, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

body[data-nav="home"] .li-hero--home-pro .hero-confidence {
  border-left-color: rgba(212, 188, 142, 0.35);
  color: rgba(226, 232, 240, 0.78);
}

@media (min-width: 960px) {
  body[data-nav="home"] .home-hero-pro__portrait .hero-media-card--pro {
    transform: translateY(0.25rem);
  }
}

/* --- Stats: bento strip (full wrap width like link-grid / other sections) --- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
  gap: 0.85rem;
  margin-top: var(--ux-space-lg);
  width: 100%;
  max-width: none;
}

@media (max-width: 640px) {
  .stat-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.65rem;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  }

  .stat-item {
    flex: 0 0 min(11.5rem, 78vw);
    scroll-snap-align: start;
  }
}

.stat-item {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--ux-surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ux-radius-panel);
  text-align: left;
  padding: 1.1rem 1.25rem;
  box-shadow: var(--ux-shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 102, 194, 0.35);
  box-shadow: var(--ux-shadow-lift);
}

.stat-item strong {
  font-size: clamp(1.65rem, 4vw, 2rem);
}

.stat-item span {
  display: block;
  margin-top: 0.35rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.8125rem;
  line-height: 1.35;
}

/* --- Route cards: editorial bento --- */
.link-grid {
  max-width: min(72rem, 100%);
  margin-top: var(--ux-space-lg);
}

.link-grid::before {
  opacity: 0.05;
}

@media (min-width: 900px) {
  .link-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.15rem 1.25rem;
    align-items: stretch;
  }

  .link-card:nth-child(1) {
    grid-column: span 7;
    min-height: 12rem;
  }

  .link-card:nth-child(2) {
    grid-column: span 5;
  }

  .link-card:nth-child(3) {
    grid-column: span 6;
  }

  .link-card:nth-child(4) {
    grid-column: span 6;
  }

  .link-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .link-card:nth-child(n + 6) {
    grid-column: span 6;
  }
}

.link-card {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--ux-surface-1);
  border: 1px solid rgba(212, 188, 142, 0.14);
  border-radius: var(--ux-radius-panel);
  padding: 1.35rem 1.5rem 1.5rem;
  box-shadow: var(--ux-shadow-soft);
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.link-card:nth-child(even) {
  border-radius: var(--ux-radius-panel);
}

.link-card::after {
  height: 3px;
  opacity: 0.35;
  border-radius: 3px;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 102, 194, 0.45);
  box-shadow: var(--ux-shadow-lift);
}

.link-card h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}

.link-card .link-card-kicker {
  letter-spacing: 0.22em;
  color: var(--li-in-hover);
}

/* --- Buttons --- */
.btn {
  border-radius: var(--ux-radius-pill);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: linear-gradient(135deg, #0a66c2 0%, #0d4d96 50%, #0a3a6e 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(10, 102, 194, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(10, 102, 194, 0.5);
  filter: brightness(1.06);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.hero-actions {
  gap: 0.55rem 0.65rem;
}

/* --- Blog cards & list --- */
.blog-grid {
  gap: 1.25rem;
  margin-top: var(--ux-space-lg);
}

.blog-card {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--ux-surface-1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ux-radius-panel);
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: var(--ux-shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 102, 194, 0.4);
}

.blog-list a {
  border-radius: 0.65rem;
  padding: 1rem 1rem 1rem 1.25rem;
}

/* --- Article (WordPress mirror) --- */
.wp-post {
  position: relative;
}

.wp-post-header {
  padding-bottom: var(--ux-space-md);
  margin-bottom: var(--ux-space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wp-post .page-hero-title {
  max-width: none;
}

.wp-entry-content {
  font-size: clamp(1rem, 1.15vw, 1.075rem);
  line-height: 1.75;
  max-width: var(--ux-max-read);
}

.wp-entry-content > p:first-of-type {
  font-size: 1.08em;
  color: rgba(226, 232, 240, 0.92);
}

.wp-entry-content h2,
.wp-entry-content h3 {
  margin-top: 2.25rem;
  letter-spacing: -0.02em;
}

/* --- Pillars / glass tiles: solid premium --- */
.pillar {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--ux-surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ux-radius-panel);
}

/* --- Footer --- */
.site-footer {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin-top: var(--ux-space-lg);
  padding-top: clamp(2.25rem, 5vw, 3.25rem);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(2, 4, 10, 0.98) 0%, #020408 100%);
}

.site-footer::before {
  opacity: 0.07;
}

.footer-col__list a {
  padding: 0.32rem 0.55rem;
  margin-left: -0.55rem;
  border-radius: var(--ux-radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-col__list a:hover {
  background: rgba(10, 102, 194, 0.14);
}

.footer-col__list a[aria-current="page"] {
  background: rgba(10, 102, 194, 0.18);
  color: #fff;
}

.footer-primary-cta {
  box-shadow:
    0 0 0 1px rgba(2, 6, 14, 0.45),
    0 6px 22px rgba(10, 102, 194, 0.28);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(10, 102, 194, 0.12);
}

@media (min-width: 720px) {
  .footer-brand {
    border-right-color: rgba(10, 102, 194, 0.22);
  }

  .footer-col--nav {
    border-right-color: rgba(10, 102, 194, 0.14);
  }
}

/* --- Forms / blog search --- */
.blog-all-search {
  border-radius: var(--ux-radius-panel);
  background: var(--ux-surface-1);
  padding: 0.75rem 1.25rem;
}

.blog-all-scroll {
  border-radius: var(--ux-radius-panel);
  background: rgba(6, 9, 16, 0.75);
}

/* --- Timeline polish --- */
.timeline {
  border-left-width: 3px;
  border-image: linear-gradient(180deg, var(--li-in), var(--li-gold)) 1;
}

.timeline.timeline--scroll {
  border-image: none;
  border-left: 2px solid rgba(10, 102, 194, 0.14);
}

.timeline.timeline--scroll .timeline__progress {
  box-shadow:
    0 0 18px rgba(10, 102, 194, 0.45),
    0 0 40px rgba(10, 102, 194, 0.12);
}

/* --- Contact / split --- */
.split-list li {
  padding: 0.65rem 0.85rem 0.65rem 1.35rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.split-list li::before {
  left: 0.65rem;
}

/* =============================================================================
   Floating CTA, Buttonizer (same embed as live site) + on-brand fallback FAB
   ============================================================================= */

/* Brand: LinkedIn only, hide X/Twitter from embedded Buttonizer actions */
html body .buttonizer-widgets a[href*="twitter.com"],
html body .buttonizer-widgets a[href*="//x.com"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

html body .buttonizer-widgets {
  font-family: var(--font-sans) !important;
  z-index: 10000 !important;
  bottom: calc(1.125rem + env(safe-area-inset-bottom, 0px)) !important;
  right: calc(1.125rem + env(safe-area-inset-right, 0px)) !important;
  left: auto !important;
  top: auto !important;
  filter: none;
}

/* Ervaring / long timeline: floating actions stay off the hero until scroll (see site-shell.js) */
html.site-fab-deferred:not(.site-fab-scroll-revealed) body .buttonizer-widgets {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(0.75rem) scale(0.96);
  transition:
    opacity 0.42s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

html.site-fab-scroll-revealed body .buttonizer-widgets {
  opacity: 1 !important;
  transform: none;
  transition:
    opacity 0.42s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

html.nav-drawer-open .buttonizer-widgets,
html.nav-drawer-open #site-floating-cta,
html.nav-drawer-open #site-fab-wrap {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html body .buttonizer-backdrop {
  background: rgba(2, 5, 12, 0.72) !important;
  backdrop-filter: blur(8px) saturate(125%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(125%) !important;
}

html body .buttonizer-group {
  background: linear-gradient(165deg, rgba(14, 18, 28, 0.98) 0%, rgba(8, 11, 18, 0.96) 100%) !important;
  border: 1px solid rgba(212, 188, 142, 0.2) !important;
  border-radius: var(--ux-radius-panel) !important;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(10, 102, 194, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  /* Must stay visible: Buttonizer positions speed-dial children outside the group box */
  overflow: visible !important;
}

html body .buttonizer-head {
  background: linear-gradient(135deg, #0a66c2 0%, #0d4d96 52%, #082f52 100%) !important;
  border-radius: 1rem !important;
  min-width: 3.5rem !important;
  min-height: 3.5rem !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow:
    0 0 0 1px rgba(212, 188, 142, 0.38),
    0 12px 40px rgba(10, 102, 194, 0.48),
    0 8px 24px rgba(0, 0, 0, 0.42) !important;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

html body .buttonizer-head:hover {
  filter: brightness(1.08) !important;
  transform: scale(1.03);
  box-shadow:
    0 0 0 1px rgba(212, 188, 142, 0.55),
    0 16px 48px rgba(10, 102, 194, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.45) !important;
}

html body .buttonizer-button {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0.65rem !important;
}

html body .buttonizer-button:hover {
  background: rgba(10, 102, 194, 0.22) !important;
  border-color: rgba(10, 102, 194, 0.45) !important;
}

html body .buttonizer-label {
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(248, 250, 252, 0.95) !important;
}

/* --- Expanded “speed dial”: same behaviour as Buttonizer, editorial stack (html.bz-fab-open from site-shell.js) --- */
@keyframes site-bz-row-in {
  from {
    opacity: 0;
    transform: translate3d(0, 0.65rem, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

html.bz-fab-open body .buttonizer-backdrop,
html.bz-fab-open body #buttonizer-backdrop {
  background: rgba(2, 5, 12, 0.78) !important;
  backdrop-filter: blur(14px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
}

html.bz-fab-open body .buttonizer-widgets {
  width: min(19rem, calc(100vw - 2.5rem)) !important;
  max-width: min(19rem, calc(100vw - 2.5rem)) !important;
}

html.bz-fab-open body .buttonizer-group {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.5rem !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 0.65rem !important;
  background: linear-gradient(165deg, rgba(12, 16, 26, 0.97) 0%, rgba(6, 9, 16, 0.98) 100%) !important;
  border: 1px solid rgba(212, 188, 142, 0.22) !important;
  border-radius: 1.15rem !important;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(10, 102, 194, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

html.bz-fab-open body .buttonizer-head {
  order: 50 !important;
  align-self: flex-end !important;
  margin-top: 0.15rem !important;
  border-radius: 1rem !important;
  animation: site-bz-row-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head) {
  order: 1 !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 3.05rem !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.85rem !important;
  padding: 0.65rem 0.85rem 0.65rem 1rem !important;
  border-radius: 0.75rem !important;
  background: linear-gradient(135deg, rgba(10, 58, 110, 0.92) 0%, rgba(8, 47, 82, 0.96) 55%, rgba(6, 36, 62, 0.98) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease !important;
}

html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head):hover {
  filter: brightness(1.06) !important;
  border-color: rgba(10, 102, 194, 0.55) !important;
  box-shadow:
    0 10px 28px rgba(10, 102, 194, 0.25),
    0 6px 20px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head):last-of-type {
  background: linear-gradient(135deg, rgba(52, 28, 72, 0.95) 0%, rgba(32, 18, 48, 0.98) 50%, rgba(22, 12, 36, 0.99) 100%) !important;
  border-color: rgba(212, 188, 142, 0.28) !important;
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 188, 142, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head) > * {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
}

html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head) .buttonizer-label {
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  text-align: start !important;
  text-shadow: none !important;
  flex: 1 1 auto !important;
  order: 1 !important;
}

html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head) svg,
html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head) img {
  flex: 0 0 auto !important;
  width: 1.35rem !important;
  height: 1.35rem !important;
  object-fit: contain !important;
  opacity: 0.95 !important;
  order: 2 !important;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35)) !important;
}

html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head):nth-child(2) {
  animation: site-bz-row-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.02s both;
}
html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head):nth-child(3) {
  animation: site-bz-row-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}
html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head):nth-child(4) {
  animation: site-bz-row-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head):nth-child(5) {
  animation: site-bz-row-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}
html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head):nth-child(6) {
  animation: site-bz-row-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head):nth-child(7) {
  animation: site-bz-row-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}
html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head):nth-child(8) {
  animation: site-bz-row-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}

html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head):nth-child(9) {
  animation: site-bz-row-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* Native fallback when Buttonizer does not mount (blocked script, etc.) */
#site-fab-wrap.site-fab-wrap {
  position: fixed;
  z-index: 10000;
  bottom: calc(1.125rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.125rem + env(safe-area-inset-right, 0px));
  left: auto;
  top: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 0.55rem;
  pointer-events: none;
}

#site-fab-wrap.site-fab-wrap > * {
  pointer-events: auto;
}

#site-fab-wrap.site-fab-wrap.site-fab-wrap--await-scroll:not(.is-fab-revealed-by-scroll) {
  opacity: 0;
  transform: translateY(0.75rem);
  transition:
    opacity 0.42s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

#site-fab-wrap.site-fab-wrap.site-fab-wrap--await-scroll:not(.is-fab-revealed-by-scroll) > * {
  pointer-events: none;
}

#site-fab-wrap.site-fab-wrap.site-fab-wrap--await-scroll.is-fab-revealed-by-scroll {
  opacity: 1;
  transform: none;
}

#site-floating-cta.site-fab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0;
  padding: 0;
  border-radius: 1rem;
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  background: linear-gradient(135deg, #0a66c2 0%, #0d4d96 52%, #082f52 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(212, 188, 142, 0.38),
    0 12px 40px rgba(10, 102, 194, 0.48),
    0 8px 24px rgba(0, 0, 0, 0.42);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

#site-floating-cta.site-fab:hover {
  filter: brightness(1.08);
  transform: scale(1.03);
  box-shadow:
    0 0 0 1px rgba(212, 188, 142, 0.55),
    0 16px 48px rgba(10, 102, 194, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.45);
}

#site-floating-cta.site-fab:focus-visible {
  outline: 2px solid var(--li-in-hover);
  outline-offset: 3px;
}

#site-floating-cta .site-fab__svg {
  display: block;
}

.site-fab-panel {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 12.5rem;
  max-width: calc(100vw - 2.5rem);
  padding: 0.55rem;
  border-radius: 1rem;
  background: linear-gradient(165deg, rgba(14, 18, 28, 0.98) 0%, rgba(8, 11, 18, 0.96) 100%);
  border: 1px solid rgba(212, 188, 142, 0.22);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(10, 102, 194, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#site-fab-wrap.site-fab-wrap.is-open .site-fab-panel {
  display: flex;
  animation: site-bz-row-in 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-fab-panel__a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(248, 250, 252, 0.95);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-fab-panel__a:hover {
  background: rgba(10, 102, 194, 0.25);
  border-color: rgba(10, 102, 194, 0.45);
  color: #fff;
}

.site-fab-panel__a--primary {
  background: linear-gradient(135deg, rgba(10, 58, 110, 0.95) 0%, rgba(6, 36, 62, 0.98) 100%);
  border-color: rgba(212, 188, 142, 0.35);
}

/* --- Language switcher (desktop header + mobile drawer) --- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.lang-switcher__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.55);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.lang-switcher__btns {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.12rem;
  border-radius: var(--ux-radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.lang-switcher__btn {
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.32rem 0.52rem;
  border: none;
  border-radius: var(--ux-radius-pill);
  cursor: pointer;
  color: rgba(226, 232, 240, 0.78);
  background: transparent;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.lang-switcher__btn:hover {
  color: var(--li-text);
  background: rgba(10, 102, 194, 0.22);
}

.lang-switcher__btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.48), rgba(212, 188, 142, 0.14));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* --- NL-only article banner (non-Dutch locales) --- */
.i18n-nl-only-banner {
  background: linear-gradient(90deg, rgba(10, 102, 194, 0.2), rgba(212, 188, 142, 0.08));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--ux-space-sm) 0;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.92);
}

.i18n-nl-only-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--ux-space-sm);
}

.i18n-nl-only-banner__inner p {
  margin: 0;
  flex: 1 1 12rem;
}

.i18n-nl-only-banner__btn {
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  html body .buttonizer-head:hover,
  #site-floating-cta.site-fab:hover {
    transform: none;
  }

  #site-fab-wrap.site-fab-wrap.is-open .site-fab-panel {
    animation: none;
  }

  html body .buttonizer-widgets .buttonizer-pulse-animation,
  html body .buttonizer-widgets [class*="pulse"] {
    animation: none !important;
  }

  html.bz-fab-open body .buttonizer-group > a.buttonizer-button:not(.buttonizer-head),
  html.bz-fab-open body .buttonizer-head {
    animation: none !important;
  }
}
