:root {
  --bg: #000000;
  --ink: #f3f3f3;
  --ink-muted: #b8b8b8;
  --cream: #f6f5f4;

  /* Logo-derived palette */
  --green-light: #b6f03a;
  --green: #6fbf2a;
  --green-deep: #2f7a1c;
  --orange-light: #ffd24a;
  --orange: #f59a14;
  --orange-deep: #e24a12;
  --cyan: #00c6ef;
  --cyan-deep: #0799c8;

  --accent-beheer: var(--cyan);
  --accent-uitvraag: var(--orange);

  --grad-market: linear-gradient(180deg, var(--green-light) 0%, var(--green-deep) 100%);
  --grad-minds: linear-gradient(180deg, var(--orange-light) 0%, var(--orange-deep) 100%);
  --grad-brand: linear-gradient(
    115deg,
    var(--green-light) 0%,
    var(--green) 28%,
    var(--orange-light) 62%,
    var(--orange-deep) 100%
  );
  --grad-brand-soft: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--cyan) 45%,
    var(--orange) 100%
  );

  --max: 1120px;
  --header-h: 76px;
  --dock-h: 0px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 22px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(5.5rem + var(--safe-top));
  scroll-padding-bottom: calc(var(--dock-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-bottom: var(--dock-h);
}

button,
a,
input,
textarea,
label {
  touch-action: manipulation;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* ========== Animated page background ========== */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(47, 122, 28, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 40%, rgba(226, 74, 18, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(0, 198, 239, 0.14), transparent 45%),
    #000;
}

.bg-mesh {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(
      125deg,
      rgba(182, 240, 58, 0.12) 0%,
      transparent 28%,
      rgba(0, 198, 239, 0.1) 48%,
      transparent 62%,
      rgba(245, 154, 20, 0.14) 82%,
      transparent 100%
    );
  background-size: 200% 200%;
  animation: mesh-drift 18s ease-in-out infinite alternate;
  filter: blur(8px);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.orb-green {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  top: -8%;
  left: -8%;
  background: radial-gradient(circle, rgba(182, 240, 58, 0.7) 0%, rgba(47, 122, 28, 0.15) 60%, transparent 75%);
  animation: orb-float-a 22s ease-in-out infinite;
}

.orb-orange {
  width: min(48vw, 480px);
  height: min(48vw, 480px);
  right: -10%;
  top: 28%;
  background: radial-gradient(circle, rgba(255, 210, 74, 0.55) 0%, rgba(226, 74, 18, 0.22) 55%, transparent 75%);
  animation: orb-float-b 26s ease-in-out infinite;
}

.orb-cyan {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  left: 25%;
  bottom: -12%;
  background: radial-gradient(circle, rgba(0, 198, 239, 0.5) 0%, rgba(7, 153, 200, 0.18) 55%, transparent 75%);
  animation: orb-float-c 20s ease-in-out infinite;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  animation: grid-pan 40s linear infinite;
  opacity: 0.5;
}

@keyframes mesh-drift {
  0% {
    transform: translate3d(-2%, -1%, 0) rotate(0deg);
    background-position: 0% 40%;
  }
  100% {
    transform: translate3d(3%, 2%, 0) rotate(4deg);
    background-position: 100% 60%;
  }
}

@keyframes orb-float-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(12%, 18%, 0) scale(1.12);
  }
  66% {
    transform: translate3d(4%, 28%, 0) scale(0.94);
  }
}

@keyframes orb-float-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  40% {
    transform: translate3d(-18%, 12%, 0) scale(1.08);
  }
  70% {
    transform: translate3d(-8%, -10%, 0) scale(0.9);
  }
}

@keyframes orb-float-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(16%, -20%, 0) scale(1.15);
  }
}

@keyframes grid-pan {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 72px 72px;
  }
}

/* Header - always fixed so scroll never snaps position */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: calc(1.05rem + var(--safe-top)) var(--safe-right) 0.35rem var(--safe-left);
  background: rgba(0, 0, 0, 0);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0) saturate(1);
  box-shadow: 0 0 0 transparent;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    padding 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.site-header.is-solid {
  padding: calc(0.55rem + var(--safe-top)) var(--safe-right) 0.55rem var(--safe-left);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
  line-height: 1;
  text-decoration: none;
}

.logo img {
  width: auto;
  height: 44px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
  transition: transform 0.35s var(--ease), filter 0.35s ease;
}

.logo-wordmark {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.78);
  background: var(--grad-brand-soft);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.site-footer .logo img {
  height: 38px;
}

.site-footer .logo-wordmark {
  font-size: 0.64rem;
}

.logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 22px rgba(245, 154, 20, 0.28));
}

.logo:hover .logo-wordmark {
  filter: drop-shadow(0 0 14px rgba(182, 240, 58, 0.28));
}

.header-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px) saturate(1.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-nav a {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #111;
  background: var(--grad-brand);
  background-size: 160% 100%;
  animation: gradient-shift 6s ease-in-out infinite alternate;
  box-shadow: 0 10px 28px rgba(182, 240, 58, 0.18), 0 8px 20px rgba(226, 74, 18, 0.16);
  transition: transform 0.25s var(--ease), filter 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.app-menu-toggle,
.app-menu {
  display: none;
}

/* Desktop: wrappers are transparent so sections stay in normal flow */
.app-pager,
.app-track {
  display: contents;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000;
}

.burst-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 48%;
  transform-origin: 52% 50%;
  animation: burst-pulse 14s ease-in-out infinite alternate;
  filter: saturate(1.22) contrast(1.06) brightness(1.08);
}

.hero.is-away .burst-image,
.hero.is-away .burst-particles span,
.hero.is-away .hero-pick,
.hero.is-away .hero-op {
  animation-play-state: paused;
}

.burst-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.72;
  -webkit-mask-image: radial-gradient(ellipse 55% 55% at 52% 50%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 55% 55% at 52% 50%, #000 20%, transparent 75%);
}

.burst-particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 0;
  animation: particle-fly 5.8s linear infinite;
  box-shadow: 0 0 12px currentColor;
}

.burst-particles span:nth-child(5n + 1) { color: #ffe56a; background: #ffe56a; }
.burst-particles span:nth-child(5n + 2) { color: #00c6ef; background: #00c6ef; }
.burst-particles span:nth-child(5n + 3) { color: #ff4fa8; background: #ff4fa8; }
.burst-particles span:nth-child(5n + 4) { color: #b6f03a; background: #b6f03a; }
.burst-particles span:nth-child(5n + 5) { color: #f59a14; background: #f59a14; }

.burst-particles span:nth-child(1) { left: 46%; top: 50%; animation-delay: 0s; }
.burst-particles span:nth-child(2) { left: 50%; top: 46%; animation-delay: 0.35s; }
.burst-particles span:nth-child(3) { left: 44%; top: 54%; animation-delay: 0.7s; }
.burst-particles span:nth-child(4) { left: 52%; top: 51%; animation-delay: 1.05s; }
.burst-particles span:nth-child(5) { left: 48%; top: 43%; animation-delay: 1.4s; }
.burst-particles span:nth-child(6) { left: 55%; top: 48%; animation-delay: 1.75s; }
.burst-particles span:nth-child(7) { left: 42%; top: 48%; animation-delay: 2.1s; }
.burst-particles span:nth-child(8) { left: 51%; top: 56%; animation-delay: 2.45s; }
.burst-particles span:nth-child(9) { left: 47%; top: 52%; animation-delay: 2.8s; }
.burst-particles span:nth-child(10) { left: 54%; top: 44%; animation-delay: 3.15s; }
.burst-particles span:nth-child(11) { left: 49%; top: 55%; animation-delay: 3.5s; }
.burst-particles span:nth-child(12) { left: 45%; top: 42%; animation-delay: 3.85s; }
.burst-particles span:nth-child(13) { left: 53%; top: 50%; animation-delay: 4.2s; }
.burst-particles span:nth-child(14) { left: 50%; top: 47%; animation-delay: 4.55s; }
.burst-particles span:nth-child(15) { left: 43%; top: 53%; animation-delay: 4.9s; }

.burst-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Keep the burst bright in the center-right; only shade text zones */
  background:
    radial-gradient(ellipse 58% 70% at 12% 40%, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.18) 48%, transparent 72%),
    radial-gradient(ellipse 85% 42% at 35% 108%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.18) 50%, transparent 74%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, transparent 22%, transparent 62%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(100deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.12) 34%, transparent 58%);
}

@keyframes burst-pulse {
  from {
    filter: saturate(1.16) contrast(1.04) brightness(1.04);
    transform: scale(1);
  }
  to {
    filter: saturate(1.28) contrast(1.08) brightness(1.12);
    transform: scale(1.03);
  }
}

@keyframes particle-fly {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.5); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(240px, -160px, 0) scale(1.35); }
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: clamp(1.5rem, 3.5vh, 2.75rem);
  padding: 7rem 0 2rem;
  min-height: 100vh;
  min-height: 100svh;
  box-sizing: border-box;
}

.hero-top {
  display: grid;
  align-content: center;
  padding-top: clamp(0.5rem, 2vh, 1.5rem);
}

.hero-copy {
  position: relative;
  max-width: min(40rem, 100%);
  isolation: isolate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1.5rem -2rem -1.75rem -2.25rem;
  background:
    radial-gradient(ellipse 85% 90% at 18% 42%, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.38) 46%, transparent 74%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-chooser {
  position: relative;
  width: 100%;
  justify-self: stretch;
  display: grid;
  gap: 0.9rem;
  isolation: isolate;
}

.hero-chooser::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1.2rem -1.4rem -1.4rem;
  background:
    radial-gradient(ellipse 90% 90% at 40% 55%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.16) 55%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-flow-rail {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  width: fit-content;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-flow-step {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero-flow-arrow {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 800;
}

.hero-chooser[data-step="ophalen"] .hero-flow-step[data-flow="ophalen"],
.hero-chooser[data-step="tonen"] .hero-flow-step[data-flow="tonen"],
.hero-chooser[data-step="impact"] .hero-flow-step[data-flow="impact"] {
  color: #fff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.35);
}

.hero-chooser[data-step="ophalen"] .hero-flow-step[data-flow="ophalen"] {
  color: #ffe56a;
}

.hero-chooser[data-step="tonen"] .hero-flow-step[data-flow="tonen"] {
  color: #d4ff5a;
}

.hero-chooser[data-step="impact"] .hero-flow-step[data-flow="impact"] {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-gates {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: stretch;
}

.hero-pick {
  position: relative;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.2rem 1.2rem 1.15rem;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.35s ease,
    opacity 0.3s ease;
  opacity: 0.92;
}

.hero-pick:hover,
.hero-pick:focus-visible {
  transform: translateY(-5px);
  opacity: 1;
  outline: none;
}

.hero-pick-glow {
  position: absolute;
  inset: auto -20% -45% -10%;
  width: 80%;
  height: 70%;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.38;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hero-pick:hover .hero-pick-glow,
.hero-pick:focus-visible .hero-pick-glow {
  opacity: 0.65;
}

.hero-pick-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-pick-glyph {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.hero-pick-glyph svg {
  width: 1.9rem;
  height: 1.9rem;
}

.hero-pick:hover .hero-pick-glyph,
.hero-pick:focus-visible .hero-pick-glyph {
  transform: scale(1.08);
}

.hero-pick:nth-child(1) { animation: card-drift-a 7s ease-in-out infinite; }
.hero-pick:nth-child(3) { animation: card-drift-b 8s ease-in-out infinite; }

@keyframes card-drift-a {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -3px, 0); }
}

@keyframes card-drift-b {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 2px, 0); }
}

.hero-chooser.is-paused .hero-pick,
.hero-chooser.is-paused .hero-op {
  animation-play-state: paused;
}

.hero-pick-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-pick-name {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-pick-desc {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  max-width: 22rem;
}

.hero-pick-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: auto;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  color: #111;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.hero-pick:hover .hero-pick-cta,
.hero-pick:focus-visible .hero-pick-cta {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.hero-pick-uitvraag {
  border-color: rgba(245, 154, 20, 0.55);
}

.hero-pick-uitvraag .hero-pick-glow {
  background: rgba(245, 154, 20, 0.55);
}

.hero-pick-uitvraag .hero-pick-glyph {
  color: #ffe56a;
  box-shadow: 0 0 24px rgba(245, 154, 20, 0.18);
}

.hero-pick-uitvraag .hero-pick-kicker {
  color: #ffe56a;
}

.hero-pick-uitvraag .hero-pick-cta {
  background: linear-gradient(180deg, #ffe56a, #f59a14);
  box-shadow: 0 10px 24px rgba(245, 154, 20, 0.28);
}

.hero-pick-beheer {
  border-color: rgba(114, 196, 43, 0.55);
}

.hero-pick-beheer .hero-pick-glow {
  background: rgba(0, 198, 239, 0.42);
  inset: auto -10% -45% auto;
  left: auto;
}

.hero-pick-beheer .hero-pick-glyph {
  color: #b6f03a;
  box-shadow: 0 0 24px rgba(114, 196, 43, 0.18);
}

.hero-pick-beheer .hero-pick-kicker {
  color: #d4ff5a;
}

.hero-pick-beheer .hero-pick-cta {
  background: linear-gradient(180deg, #d4ff5a, #72c42b);
  box-shadow: 0 10px 24px rgba(114, 196, 43, 0.26);
}

.hero-pick-uitvraag:hover,
.hero-pick-uitvraag:focus-visible {
  border-color: #f59a14;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45), 0 0 36px rgba(245, 154, 20, 0.32);
}

.hero-pick-beheer:hover,
.hero-pick-beheer:focus-visible {
  border-color: #72c42b;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45), 0 0 36px rgba(114, 196, 43, 0.3);
}

.hero-bridge {
  display: grid;
  gap: 0.55rem;
  align-content: center;
  justify-items: center;
  min-width: 4.5rem;
}

.hero-op {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.72);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  animation: connector-pulse 2s ease-in-out infinite;
}

@keyframes connector-pulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-impact {
  display: grid;
  place-items: center;
  padding: 0.55rem 0.7rem;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(182, 240, 58, 0.18), rgba(245, 154, 20, 0.16)),
    rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.8;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.4s var(--ease), box-shadow 0.35s ease, border-color 0.3s ease;
}

.hero-impact-label {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-chooser[data-step="ophalen"] .hero-pick-uitvraag,
.hero-chooser[data-step="tonen"] .hero-pick-beheer {
  opacity: 1;
}

.hero-chooser[data-step="ophalen"] .hero-pick-uitvraag {
  border-color: #f59a14;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42), 0 0 34px rgba(245, 154, 20, 0.34);
}

.hero-chooser[data-step="ophalen"] .hero-op-plus {
  border-color: rgba(245, 154, 20, 0.55);
  color: #ffe56a;
}

.hero-chooser[data-step="tonen"] .hero-pick-beheer {
  border-color: #72c42b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42), 0 0 34px rgba(114, 196, 43, 0.32);
}

.hero-chooser[data-step="impact"] .hero-impact {
  opacity: 1;
  transform: scale(1.06);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 28px rgba(182, 240, 58, 0.2);
}

.hero-chooser[data-step="impact"] .hero-pick {
  opacity: 0.97;
}

.hero-secondary {
  justify-self: start;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-decoration-color: rgba(122, 239, 255, 0.5);
  text-underline-offset: 0.28em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.hero-secondary:hover {
  color: #7aefff;
  text-decoration-color: #7aefff;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7aefff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75), 0 0 18px rgba(0, 0, 0, 0.45);
}

.eyebrow.on-dark {
  color: #7aefff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.35),
    0 8px 28px rgba(0, 0, 0, 0.7),
    0 18px 50px rgba(0, 0, 0, 0.55);
}

.hero h1 .text-gradient {
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.55));
}

.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 180% 100%;
  animation: gradient-shift 7s ease-in-out infinite alternate;
}

.text-gradient-soft {
  background: var(--grad-brand-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 160% 100%;
  animation: gradient-shift 8s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

.hero-lead {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.3),
    0 6px 22px rgba(0, 0, 0, 0.7);
}

.hero-shine {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green) 20%,
    var(--cyan) 50%,
    var(--orange) 80%,
    transparent
  );
  opacity: 0.55;
  animation: shine-pulse 3.5s ease-in-out infinite;
}

@keyframes shine-pulse {
  0%,
  100% {
    opacity: 0.3;
    filter: blur(0);
  }
  50% {
    opacity: 0.85;
    filter: blur(0.5px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gradient {
  background: var(--grad-brand);
  background-size: 160% 100%;
  color: #111;
  padding: 0.95rem 1.55rem;
  animation: gradient-shift 6s ease-in-out infinite alternate;
  box-shadow: 0 10px 30px rgba(182, 240, 58, 0.18), 0 8px 24px rgba(226, 74, 18, 0.16);
}

.btn-gradient:hover {
  filter: brightness(1.08);
  box-shadow: 0 14px 36px rgba(182, 240, 58, 0.28), 0 12px 28px rgba(226, 74, 18, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.95rem 1.4rem;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 198, 239, 0.08);
}

.btn-platform {
  margin-top: auto;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.85rem 1.2rem;
  width: fit-content;
}

.btn-platform:hover {
  border-color: currentColor;
}

.platform-card[data-accent="beheer"] .btn-platform:hover {
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(0, 198, 239, 0.2);
}

.platform-card[data-accent="uitvraag"] .btn-platform:hover {
  color: var(--orange);
  box-shadow: 0 0 24px rgba(245, 154, 20, 0.22);
}

.btn-arrow {
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 2px solid currentColor;
  font-size: 0.85rem;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.btn-platform:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-cyan {
  background: linear-gradient(180deg, #4dd9ff 0%, var(--cyan-deep) 100%);
  color: #041018;
  padding: 0.9rem 1.4rem;
  box-shadow: 0 10px 28px rgba(0, 198, 239, 0.28);
}

.btn-orange {
  background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange-deep) 100%);
  color: #1a0a00;
  padding: 0.9rem 1.4rem;
  box-shadow: 0 10px 28px rgba(226, 74, 18, 0.28);
}

.btn-cyan:hover,
.btn-orange:hover {
  filter: brightness(1.06);
}

/* Platforms */
.platforms {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4.5rem;
  scroll-margin-top: 5.5rem;
}

#uitvraag,
#beheer,
#start {
  scroll-margin-top: 5.5rem;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.section-bar {
  width: 4.5rem;
  height: 12px;
  border-radius: 999px;
  margin-bottom: 1.1rem;
  background: var(--grad-brand);
  background-size: 200% 100%;
  animation: gradient-shift 5s ease-in-out infinite alternate, bar-grow 1.2s var(--ease) both;
}

@keyframes bar-grow {
  from {
    transform: scaleX(0.3);
    transform-origin: left;
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.15rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.85rem 1.6rem 1.6rem;
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), border-color 0.35s ease, box-shadow 0.4s ease;
}

.platform-glow {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.25;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.platform-card[data-accent="beheer"] .platform-glow {
  background: var(--cyan);
}

.platform-card[data-accent="uitvraag"] .platform-glow {
  background: var(--orange);
  inset: auto -25% -35% auto;
}

.platform-card:hover {
  transform: translateY(-6px);
}

.platform-card[data-accent="beheer"]:hover {
  border-color: rgba(0, 198, 239, 0.45);
  box-shadow: 0 20px 50px rgba(0, 198, 239, 0.12);
}

.platform-card[data-accent="uitvraag"]:hover {
  border-color: rgba(245, 154, 20, 0.45);
  box-shadow: 0 20px 50px rgba(245, 154, 20, 0.12);
}

.platform-card:hover .platform-glow {
  opacity: 0.4;
}

.platform-bar {
  width: 4rem;
  height: 12px;
  border-radius: 999px;
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.platform-card[data-accent="beheer"] .platform-bar {
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.platform-card[data-accent="uitvraag"] .platform-bar {
  background: linear-gradient(90deg, var(--orange-light), var(--orange-deep));
}

.platform-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  position: relative;
  z-index: 1;
}

.platform-card h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.platform-desc {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.platform-points {
  margin: 0.5rem 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  position: relative;
  z-index: 1;
}

.platform-points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--cream);
  font-size: 0.98rem;
}

.platform-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
}

.platform-card[data-accent="beheer"] .platform-points li::before {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 198, 239, 0.6);
}

.platform-card[data-accent="uitvraag"] .platform-points li::before {
  background: var(--orange);
  box-shadow: 0 0 10px rgba(245, 154, 20, 0.6);
}

/* Plugin overview tabs */
.plugins {
  position: relative;
  z-index: 1;
  padding: 1rem 0 5rem;
}

.plugin-tabs {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 8, 0.65);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.tab-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-muted);
  font: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    box-shadow 0.25s ease;
}

.tab-btn:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.tab-btn.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.tab-btn.is-active[data-tab="beheer"] {
  box-shadow: inset 0 0 0 1px rgba(0, 198, 239, 0.35), 0 0 24px rgba(0, 198, 239, 0.12);
}

.tab-btn.is-active[data-tab="uitvraag"] {
  box-shadow: inset 0 0 0 1px rgba(245, 154, 20, 0.35), 0 0 24px rgba(245, 154, 20, 0.12);
}

.tab-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.tab-swatch.beheer {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 198, 239, 0.7);
}

.tab-swatch.uitvraag {
  background: var(--orange);
  box-shadow: 0 0 10px rgba(245, 154, 20, 0.7);
}

.tab-panel {
  display: none;
  padding: 1.75rem 1.5rem 1.6rem;
  animation: tab-in 0.35s var(--ease);
}

.tab-panel.is-active {
  display: block;
}

@keyframes tab-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.tab-panel-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem;
  align-items: center;
}

.tab-panel h3 {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.tab-panel p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.tab-panel .btn {
  margin-top: 0.35rem;
}

.tab-panel[data-panel="beheer"] .platform-points li::before {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 198, 239, 0.6);
}

.tab-panel[data-panel="uitvraag"] .platform-points li::before {
  background: var(--orange);
  box-shadow: 0 0 10px rgba(245, 154, 20, 0.6);
}

.tab-panel .platform-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
}

.tab-visual {
  display: grid;
  gap: 0.75rem;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
}

.mini-card span {
  display: inline-grid;
  place-items: center;
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  font-weight: 900;
  font-size: 0.85rem;
}

.tab-visual-beheer .mini-card span {
  background: rgba(0, 198, 239, 0.15);
  color: var(--cyan);
}

.tab-visual-uitvraag .mini-card span {
  background: rgba(245, 154, 20, 0.15);
  color: var(--orange-light);
}

.mini-card strong {
  font-size: 0.98rem;
}

/* Explain */
.explain {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0;
  overflow: hidden;
  color: var(--ink);
}

.explain-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(47, 122, 28, 0.55) 0%,
      rgba(0, 0, 0, 0.75) 38%,
      rgba(226, 74, 18, 0.42) 100%
    );
  animation: explain-shift 14s ease-in-out infinite alternate;
}

.explain-bg::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 40%, rgba(182, 240, 58, 0.25), transparent 40%),
    radial-gradient(circle at 75% 60%, rgba(255, 210, 74, 0.2), transparent 42%);
  animation: mesh-drift 16s ease-in-out infinite alternate;
}

@keyframes explain-shift {
  from {
    filter: hue-rotate(0deg) saturate(1);
  }
  to {
    filter: hue-rotate(12deg) saturate(1.15);
  }
}

.explain-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.explain-copy h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.explain-copy p:last-child {
  margin: 0;
  max-width: 32rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
}

.explain-list {
  display: grid;
  gap: 1rem;
}

.explain-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.explain-item:hover {
  transform: translateX(6px);
  border-color: rgba(255, 255, 255, 0.22);
}

.explain-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 900;
}

.explain-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.explain-dot {
  width: 14px;
  height: 14px;
  margin-top: 0.35rem;
  border-radius: 50%;
  animation: dot-pulse 2.4s ease-in-out infinite;
}

.explain-dot.beheer {
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 198, 239, 0.7);
}

.explain-dot.uitvraag {
  background: var(--orange);
  box-shadow: 0 0 16px rgba(245, 154, 20, 0.7);
  animation-delay: 0.6s;
}

@keyframes dot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.7;
  }
}

/* Path / situations, secondary router */
.path {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.path-head {
  max-width: 34rem;
  margin-bottom: 2.25rem;
}

.path-head .eyebrow {
  margin-bottom: 0.65rem;
}

.path-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.path-head p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.path-app {
  display: none;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.path-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.55rem 1.4rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease), border-color 0.3s ease, box-shadow 0.35s ease;
}

.path-card:hover {
  transform: translateY(-4px);
}

.path-card[data-tone="uitvraag"]:hover {
  border-color: rgba(245, 154, 20, 0.45);
  box-shadow: 0 18px 40px rgba(245, 154, 20, 0.12);
}

.path-card[data-tone="beheer"]:hover {
  border-color: rgba(0, 198, 239, 0.45);
  box-shadow: 0 18px 40px rgba(0, 198, 239, 0.12);
}

.path-card[data-tone="both"]:hover {
  border-color: rgba(182, 240, 58, 0.4);
  box-shadow: 0 18px 40px rgba(182, 240, 58, 0.1);
}

.path-num {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}

.path-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.path-card p {
  margin: 0;
  flex: 1;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.path-card .btn {
  margin-top: 0.35rem;
  width: fit-content;
}

.path-dual {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.path-dual > span {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 800;
}

.path-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.path-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.55);
}

.path-card[data-tone="uitvraag"] .path-link:hover {
  border-color: rgba(245, 154, 20, 0.6);
  color: #ffe56a;
}

.path-card[data-tone="beheer"] .path-link:hover {
  border-color: rgba(0, 198, 239, 0.6);
  color: #7aefff;
}

.path-card[data-tone="both"] .path-dual .path-link:first-child:hover {
  border-color: rgba(245, 154, 20, 0.6);
  color: #ffe56a;
}

.path-card[data-tone="both"] .path-dual .path-link:last-child:hover {
  border-color: rgba(0, 198, 239, 0.6);
  color: #7aefff;
}

/* Contact / request access */
.contact {
  position: relative;
  z-index: 1;
  padding: 5rem 0 5.5rem;
  scroll-margin-top: 5.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.contact-copy > p {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
  font-size: 1.1rem;
  max-width: 32rem;
}

.contact-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.contact-points li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--grad-brand);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 0.95rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-row label,
.form-interest legend {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(0, 198, 239, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 198, 239, 0.15);
}

.form-interest {
  display: grid;
  gap: 0.55rem;
}

.form-interest .choice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-interest .choice:has(input:checked) {
  border-color: rgba(182, 240, 58, 0.45);
  background: rgba(182, 240, 58, 0.08);
}

.form-interest input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--green);
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.form-note:empty {
  display: none;
}

.form-note.is-success {
  color: #d4ff5a;
}

.form-note.is-error {
  color: #ffb4b4;
}

/* CTA */
.cta-band {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0;
  overflow: hidden;
}

.cta-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(70vw, 560px);
  height: min(70vw, 560px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    conic-gradient(
      from 0deg,
      rgba(182, 240, 58, 0.18),
      rgba(0, 198, 239, 0.12),
      rgba(245, 154, 20, 0.18),
      rgba(182, 240, 58, 0.18)
    );
  filter: blur(2px);
  animation: orbit-spin 28s linear infinite;
  opacity: 0.55;
  pointer-events: none;
}

@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.cta-inner {
  text-align: center;
  max-width: 40rem;
}

.cta-inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.cta-inner > p {
  margin: 0 0 1.75rem;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.footer-inner a:hover {
  color: var(--cyan);
}

/* App dock, hidden on desktop, shown on tablet/phone */
.app-dock {
  display: none;
}

/* Motion / reveals, short & early so scroll never waits on content */
.reveal {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 0.42s var(--ease),
    transform 0.42s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.delay-1 {
  transition-delay: 0.04s;
}
.delay-2 {
  transition-delay: 0.08s;
}
.delay-3 {
  transition-delay: 0.12s;
}
.delay-4 {
  transition-delay: 0.16s;
}

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

  .burst-image,
  .burst-particles span,
  .hero-chooser,
  .hero-pick,
  .hero-op,
  .bg-mesh,
  .orb,
  .bg-grid,
  .text-gradient,
  .text-gradient-soft,
  .btn-gradient,
  .section-bar,
  .hero-shine,
  .explain-bg,
  .explain-bg::before,
  .cta-orbit,
  .explain-dot,
  .tab-panel,
  .app-menu-scrolldown-icon {
    animation: none !important;
  }

  .burst-image {
    filter: saturate(1.2) contrast(1.05) brightness(1.06) !important;
    transform: none !important;
  }

  .hero-chooser,
  .hero-pick {
    animation: none !important;
    transform: none !important;
  }

  .reveal,
  .btn,
  .platform-card,
  .explain-item,
  .logo img {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ========== App shell: iPad + phone ========== */
/* Phone + iPad share one app web version (any orientation) */
@media (max-width: 1366px) and (hover: none),
  (max-width: 1366px) and (pointer: coarse),
  (max-width: 900px) {
  :root {
    --dock-h: calc(4.15rem + var(--safe-bottom));
    --header-h: 64px;
    --radius: 20px;
    --app-gutter: 0.85rem;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 56px;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    font-size: 0.82rem;
    padding: 0.58rem 0.95rem;
    min-height: 44px;
  }

  .app-menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(12px);
    z-index: 95;
    position: relative;
  }

  .app-menu-toggle-box {
    position: relative;
    width: 18px;
    height: 14px;
  }

  .app-menu-toggle-box span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.28s var(--ease), opacity 0.2s ease, top 0.28s var(--ease);
  }

  .app-menu-toggle-box span:nth-child(1) { top: 0; }
  .app-menu-toggle-box span:nth-child(2) { top: 6px; }
  .app-menu-toggle-box span:nth-child(3) { top: 12px; }

  .app-menu-toggle[aria-expanded="true"] .app-menu-toggle-box span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
  }

  .app-menu-toggle[aria-expanded="true"] .app-menu-toggle-box span:nth-child(2) {
    opacity: 0;
  }

  .app-menu-toggle[aria-expanded="true"] .app-menu-toggle-box span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
  }

  /* Horizontal app screens, less endless page scroll */
  html.is-app-shell,
  html.is-app-shell body {
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: manipulation;
  }

  html.is-app-shell body {
    padding-bottom: 0;
  }

  html.is-app-shell .app-pager {
    display: block;
    position: fixed;
    top: calc(3.85rem + var(--safe-top));
    left: 0;
    right: 0;
    bottom: var(--dock-h);
    z-index: 1;
    overflow: hidden;
    background: #050505;
  }

  html.is-app-shell .app-track {
    display: flex;
    height: 100%;
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  html.is-app-shell .app-track.is-dragging {
    transition: none;
  }

  html.is-app-shell .app-screen {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  html.is-app-shell .hero {
    min-height: 100%;
  }

  html.is-app-shell .hero-layout {
    min-height: 100%;
    padding: 1rem 0 1.1rem;
    gap: 0.85rem;
  }

  html.is-app-shell .platforms,
  html.is-app-shell .path,
  html.is-app-shell .contact {
    margin: 0;
    padding: 1.15rem var(--app-gutter, 1rem) 1.35rem;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    min-height: 100%;
  }

  html.is-app-shell .platforms .container,
  html.is-app-shell .path .container,
  html.is-app-shell .contact .container,
  html.is-app-shell .contact-grid {
    width: 100%;
  }

  html.is-app-shell .path .container {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-height: 100%;
    height: 100%;
  }

  html.is-app-shell .path-head {
    margin-bottom: 0;
  }

  html.is-app-shell .path-head .eyebrow {
    margin-bottom: 0.35rem;
  }

  html.is-app-shell .path-head h2 {
    font-size: clamp(1.3rem, 5vw, 1.65rem);
    margin-bottom: 0;
  }

  html.is-app-shell .path-head-desk,
  html.is-app-shell .path-desk {
    display: none;
  }

  html.is-app-shell .path-app {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1 1 auto;
    min-height: 0;
  }

  html.is-app-shell .path-howto {
    display: grid;
    gap: 0.65rem;
    padding: 0.9rem 0.85rem;
    border-radius: 22px;
    background:
      linear-gradient(145deg, rgba(182, 240, 58, 0.08), rgba(245, 154, 20, 0.06)),
      rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  html.is-app-shell .path-howto-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
  }

  html.is-app-shell .path-howto-label {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
  }

  html.is-app-shell .path-howto-lead {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.78);
  }

  html.is-app-shell .path-howto-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0.25rem;
  }

  html.is-app-shell .path-howto-step {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 0.3rem;
    padding: 0.7rem 0.35rem 0.65rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  html.is-app-shell .path-howto-badge {
    position: absolute;
    top: 0.35rem;
    left: 0.35rem;
    display: grid;
    place-items: center;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.62rem;
    font-weight: 900;
  }

  html.is-app-shell .path-howto-step strong {
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: -0.01em;
  }

  html.is-app-shell .path-howto-step small {
    font-size: 0.64rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.55);
  }

  html.is-app-shell .path-howto-icon {
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    margin-top: 0.15rem;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
  }

  html.is-app-shell .path-howto-icon svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  html.is-app-shell .path-howto-step[data-tone="uitvraag"] .path-howto-icon {
    color: #ffe56a;
    background: rgba(245, 154, 20, 0.14);
  }

  html.is-app-shell .path-howto-step[data-tone="beheer"] .path-howto-icon {
    color: #d4ff5a;
    background: rgba(114, 196, 43, 0.14);
  }

  html.is-app-shell .path-howto-step[data-tone="impact"] .path-howto-icon {
    color: #7aefff;
    background: rgba(0, 198, 239, 0.14);
  }

  html.is-app-shell .path-howto-join {
    display: grid;
    place-items: center;
    width: 0.85rem;
  }

  html.is-app-shell .path-howto-join span {
    width: 0.42rem;
    height: 0.42rem;
    border-right: 2px solid rgba(255, 255, 255, 0.35);
    border-top: 2px solid rgba(255, 255, 255, 0.35);
    transform: rotate(45deg);
  }

  html.is-app-shell .path-pick {
    display: grid;
    gap: 0.45rem;
    flex: 1 1 auto;
    min-height: 0;
  }

  html.is-app-shell .path-pick-label {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
  }

  html.is-app-shell .path-pick-hint {
    margin: 0 0 0.15rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.68);
  }

  html.is-app-shell .path-accordions {
    display: grid;
    gap: 0.5rem;
    align-content: start;
  }

  html.is-app-shell .path-acc {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
  }

  html.is-app-shell .path-acc[open] {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
  }

  html.is-app-shell .path-acc[data-tone="uitvraag"][open] {
    border-color: rgba(245, 154, 20, 0.45);
    box-shadow: 0 0 0 1px rgba(245, 154, 20, 0.12);
  }

  html.is-app-shell .path-acc[data-tone="beheer"][open] {
    border-color: rgba(114, 196, 43, 0.45);
    box-shadow: 0 0 0 1px rgba(114, 196, 43, 0.12);
  }

  html.is-app-shell .path-acc[data-tone="both"][open] {
    border-color: rgba(0, 198, 239, 0.4);
    box-shadow: 0 0 0 1px rgba(0, 198, 239, 0.12);
  }

  html.is-app-shell .path-acc summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.7rem;
    min-height: 3.5rem;
    padding: 0.8rem 0.9rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
  }

  html.is-app-shell .path-acc summary::-webkit-details-marker {
    display: none;
  }

  html.is-app-shell .path-acc-num {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.42);
  }

  html.is-app-shell .path-acc-copy {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
  }

  html.is-app-shell .path-acc-copy strong {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  html.is-app-shell .path-acc-copy small {
    font-size: 0.74rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.52);
  }

  html.is-app-shell .path-acc-chevron {
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid rgba(255, 255, 255, 0.45);
    border-bottom: 2px solid rgba(255, 255, 255, 0.45);
    transform: rotate(45deg);
    transition: transform 0.22s var(--ease);
    margin-top: -0.2rem;
  }

  html.is-app-shell .path-acc[open] .path-acc-chevron {
    transform: rotate(225deg);
    margin-top: 0.15rem;
  }

  html.is-app-shell .path-acc-body {
    display: grid;
    gap: 0.75rem;
    padding: 0 0.9rem 0.95rem 2.7rem;
  }

  html.is-app-shell .path-acc-body p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
  }

  html.is-app-shell .path-acc-body .path-link {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
  }

  html.is-app-shell .path-acc[data-tone="uitvraag"] .path-link {
    background: linear-gradient(180deg, #ffe56a, #f59a14);
    color: #111;
    border-color: transparent;
  }

  html.is-app-shell .path-acc[data-tone="beheer"] .path-link {
    background: linear-gradient(180deg, #d4ff5a, #72c42b);
    color: #111;
    border-color: transparent;
  }

  html.is-app-shell .path-acc[data-tone="both"] .path-link {
    background: var(--grad-brand);
    color: #111;
    border-color: transparent;
  }

  html.is-app-shell .platform-grid {
    gap: 0.7rem;
  }

  html.is-app-shell .platform-points {
    display: none;
  }

  html.is-app-shell .contact-copy > p,
  html.is-app-shell .contact-points {
    display: none;
  }

  html.is-app-shell .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  html.is-app-shell .site-footer {
    display: none;
  }

  html.is-app-shell .reveal {
    opacity: 1;
    transform: none;
  }

  .app-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
  }

  .app-menu.is-open {
    pointer-events: auto;
  }

  .app-menu[hidden] {
    display: none !important;
  }

  .app-menu-sheet {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background:
      radial-gradient(ellipse 80% 40% at 50% -10%, rgba(182, 240, 58, 0.16), transparent 55%),
      radial-gradient(ellipse 70% 40% at 100% 20%, rgba(245, 154, 20, 0.14), transparent 50%),
      radial-gradient(ellipse 60% 35% at 0% 80%, rgba(0, 198, 239, 0.12), transparent 50%),
      #070707;
    transform: translate3d(0, 108%, 0);
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .app-menu.is-open .app-menu-sheet {
    transform: translate3d(0, 0, 0);
  }

  .app-menu-safe {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding:
      calc(0.55rem + var(--safe-top))
      max(1rem, var(--safe-right))
      calc(1rem + var(--safe-bottom))
      max(1rem, var(--safe-left));
  }

  .app-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.1rem 0 1rem;
    flex-shrink: 0;
  }

  .app-menu-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
  }

  .app-menu-brand-mark {
    display: grid;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
  }

  .app-menu-brand-mark svg {
    width: 1.55rem;
    height: 1.55rem;
  }

  .app-menu-brand p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
  }

  .app-menu-brand span {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
  }

  .app-menu-close {
    display: grid;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
  }

  .app-menu-close svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .app-menu-body {
    flex: 1;
    min-height: 0;
    display: grid;
    align-content: start;
    gap: 0.85rem;
    overflow: auto;
    overscroll-behavior: contain;
  }

  .app-menu-section-label {
    margin: 0.15rem 0.15rem 0;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
  }

  .app-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .app-menu-tile {
    display: grid;
    justify-items: center;
    gap: 0.65rem;
    min-height: 7.4rem;
    padding: 1.15rem 0.75rem 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-align: center;
  }

  .app-menu-tile.is-active {
    border-color: rgba(182, 240, 58, 0.45);
    background: rgba(182, 240, 58, 0.1);
  }

  .app-menu-tile:active {
    transform: scale(0.97);
  }

  .app-menu-tile strong {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: -0.02em;
  }

  .app-menu-icon {
    display: grid;
    place-items: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
  }

  .app-menu-icon svg {
    width: 1.7rem;
    height: 1.7rem;
  }

  .app-menu-icon-home {
    color: #d4ff5a;
    background: rgba(182, 240, 58, 0.12);
  }

  .app-menu-icon-platforms {
    color: #7aefff;
    background: rgba(0, 198, 239, 0.12);
  }

  .app-menu-icon-path {
    color: #ffe56a;
    background: rgba(245, 154, 20, 0.12);
  }

  .app-menu-icon-contact {
    color: #ff9ed8;
    background: rgba(255, 79, 168, 0.12);
  }

  .app-menu-icon-uitvraag {
    color: #ffe56a;
    background: rgba(245, 154, 20, 0.14);
  }

  .app-menu-icon-beheer {
    color: #d4ff5a;
    background: rgba(114, 196, 43, 0.14);
  }

  .app-menu-icon-site {
    color: #7aefff;
    background: rgba(0, 198, 239, 0.12);
  }

  .app-menu-quick {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .app-menu-chip {
    display: grid;
    justify-items: center;
    gap: 0.4rem;
    min-height: 5.4rem;
    padding: 0.75rem 0.4rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
  }

  .app-menu-chip .app-menu-icon {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 14px;
  }

  .app-menu-chip .app-menu-icon svg {
    width: 1.4rem;
    height: 1.4rem;
  }

  .app-menu-chip.link-uitvraag {
    border-color: rgba(245, 154, 20, 0.35);
  }

  .app-menu-chip.link-beheer {
    border-color: rgba(114, 196, 43, 0.35);
  }

  .app-menu-chip-site {
    border-color: rgba(0, 198, 239, 0.3);
  }

  .app-menu-chip-site span:last-child {
    font-size: 0.68rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
    word-break: break-word;
  }

  .app-menu-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 0.35rem 0 0;
    padding: 0.85rem 0.75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
  }

  .app-menu-hint-icon {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 1.2rem;
    color: #d4ff5a;
    flex-shrink: 0;
  }

  .app-menu-hint-icon svg {
    width: 100%;
    height: 100%;
  }

  body.menu-open .app-dock {
    visibility: hidden;
    pointer-events: none;
  }

  body.menu-open .site-header {
    z-index: 110;
  }

  .logo img {
    height: 38px;
  }

  .logo-wordmark {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .site-header {
    padding: calc(0.7rem + var(--safe-top)) var(--safe-right) 0.35rem var(--safe-left);
  }

  .site-header.is-solid {
    padding: calc(0.45rem + var(--safe-top)) var(--safe-right) 0.45rem var(--safe-left);
  }

  .app-dock {
    position: fixed;
    left: 50%;
    bottom: calc(0.55rem + var(--safe-bottom));
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.15rem;
    width: min(100% - 1.25rem - var(--safe-left) - var(--safe-right), 34rem);
    transform: translateX(-50%);
    padding: 0.35rem;
    border-radius: 22px;
    background: rgba(8, 8, 8, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(22px) saturate(1.3);
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  }

  .app-dock-item {
    display: grid;
    justify-items: center;
    gap: 0.18rem;
    min-height: 3.35rem;
    padding: 0.4rem 0.25rem 0.35rem;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .app-dock-item:active {
    transform: scale(0.96);
  }

  .app-dock-item.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .app-dock-item.is-active .app-dock-icon {
    color: #d4ff5a;
    filter: drop-shadow(0 0 10px rgba(182, 240, 58, 0.35));
  }

  .app-dock-icon {
    display: grid;
    place-items: center;
    width: 1.35rem;
    height: 1.35rem;
    color: inherit;
  }

  .app-dock-icon svg {
    width: 100%;
    height: 100%;
  }

  .container,
  .hero-layout {
    width: min(100% - 1.75rem, var(--max));
  }

  .hero-layout {
    padding: calc(5.6rem + var(--safe-top)) 0 1.35rem;
    gap: 1.35rem;
    min-height: 100svh;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy::before {
    inset: -0.85rem -0.85rem -1rem;
    background:
      radial-gradient(ellipse 92% 90% at 18% 40%, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.34) 52%, transparent 78%);
  }

  .burst-image {
    object-fit: cover;
    object-position: 58% 46%;
  }

  .burst-veil {
    background:
      radial-gradient(ellipse 90% 60% at 20% 26%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.16) 52%, transparent 74%),
      radial-gradient(ellipse 100% 48% at 50% 110%, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 76%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 28%, transparent 58%, rgba(0, 0, 0, 0.48) 100%),
      linear-gradient(100deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.12) 48%, transparent 70%);
  }

  .platforms,
  .path,
  .contact {
    padding: 3.5rem 0;
  }

  .site-footer {
    padding: 1.75rem 0 calc(1.25rem + 0.25rem);
  }

  .orb {
    opacity: 0.32;
    filter: blur(48px);
  }

  .btn,
  .btn-platform,
  .hero-pick-cta,
  .form-submit,
  .path-link {
    min-height: 48px;
  }

  .form-row input,
  .form-row textarea {
    font-size: 16px;
    min-height: 48px;
    border-radius: 16px;
  }

  .form-row textarea {
    min-height: 7.5rem;
  }

  .contact-form {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .platform-card,
  .path-card {
    border-radius: 22px;
  }

  .hero-pick:hover,
  .platform-card:hover,
  .path-card:hover {
    transform: none;
  }

  .hero-pick:active,
  .platform-card:active,
  .path-card:active,
  .btn:active,
  .form-submit:active {
    transform: scale(0.985);
  }
}

/* iPad / large tablet portrait: keep plugin chooser side-by-side */
@media (max-width: 1100px) and (min-width: 721px) and (orientation: portrait),
  (hover: none) and (pointer: coarse) and (min-width: 721px) and (max-width: 1366px) and (orientation: portrait) {
  .hero-gates {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.65rem;
  }

  .hero-bridge {
    min-width: 3.6rem;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 6.5vw, 3.6rem);
  }

  .hero-pick-name {
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  }

  .hero-pick-desc {
    font-size: 0.88rem;
  }
}

/* iPad / tablet landscape: denser, still app shell */
@media (max-width: 1366px) and (min-width: 721px) and (orientation: landscape) and (hover: none),
  (max-width: 1100px) and (min-width: 721px) and (orientation: landscape) {
  :root {
    --dock-h: calc(3.85rem + var(--safe-bottom));
  }

  .hero {
    min-height: 100svh;
  }

  .hero-layout {
    padding-top: calc(4.6rem + var(--safe-top));
    padding-bottom: 0.85rem;
    gap: 0.85rem;
    min-height: 100svh;
  }

  .hero-top {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 4.4vw, 2.9rem);
  }

  .hero-lead {
    margin-top: 0.45rem;
    font-size: 1rem;
  }

  .hero-flow-rail {
    padding: 0.3rem 0.55rem;
  }

  .hero-pick-desc {
    display: none;
  }

  .hero-pick {
    padding: 0.9rem 1rem;
  }

  .hero-gates {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

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

  .platforms,
  .path,
  .contact {
    padding: 2.75rem 0;
  }

  .app-dock {
    bottom: calc(0.4rem + var(--safe-bottom));
    padding: 0.28rem;
    border-radius: 18px;
  }

  .app-dock-item {
    min-height: 2.9rem;
    gap: 0.1rem;
    padding: 0.28rem 0.2rem 0.22rem;
    font-size: 0.64rem;
  }
}

/* Phone, stronger native app chrome */
@media (max-width: 720px) {
  :root {
    --dock-h: calc(4.15rem + var(--safe-bottom));
    --app-gutter: 0.85rem;
  }

  html {
    scroll-padding-top: calc(4.75rem + var(--safe-top));
    scroll-padding-bottom: calc(var(--dock-h) + 0.5rem);
  }

  body {
    overscroll-behavior-y: none;
    background: #050505;
  }

  .bg-mesh,
  .bg-grid,
  .orb,
  .burst-particles {
    display: none;
  }

  .container,
  .hero-layout {
    width: min(100% - (var(--app-gutter) * 2), var(--max));
  }

  /* Persistent frosted app bar */
  .site-header,
  .site-header.is-solid {
    padding: calc(0.4rem + var(--safe-top)) var(--safe-right) 0.4rem var(--safe-left);
    background: rgba(5, 5, 5, 0.78);
    backdrop-filter: blur(22px) saturate(1.35);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  }

  .header-inner {
    min-height: 48px;
  }

  .logo img {
    height: 32px;
  }

  .logo-wordmark {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .header-cta {
    font-size: 0.74rem;
    padding: 0.5rem 0.78rem;
    min-height: 40px;
    border-radius: 12px;
  }

  .app-menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .app-menu-nav a,
  .app-menu-action {
    min-height: 60px;
    border-radius: 16px;
  }

  /* Full-bleed iOS-style tab bar */
  .app-dock {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    transform: none;
    gap: 0;
    padding: 0.28rem var(--safe-left) calc(0.28rem + var(--safe-bottom)) var(--safe-right);
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(28px) saturate(1.4);
    box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.45);
  }

  .app-dock-item {
    min-height: 3.55rem;
    border-radius: 14px;
    font-size: 0.62rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .app-dock-item.is-active {
    background: transparent;
    color: #fff;
  }

  .app-dock-item.is-active .app-dock-icon {
    color: #d4ff5a;
    transform: translateY(-1px);
  }

  .app-dock-icon {
    width: 1.45rem;
    height: 1.45rem;
    transition: transform 0.2s var(--ease), color 0.2s ease, filter 0.2s ease;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-layout {
    padding: calc(4.85rem + var(--safe-top)) 0 1rem;
    gap: 1rem;
    min-height: 100svh;
  }

  .hero-top {
    padding-top: 0.15rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 0.98rem;
    margin-top: 0.55rem;
    max-width: 22rem;
  }

  .hero-chooser {
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px) saturate(1.25);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  }

  .hero-chooser::before {
    display: none;
  }

  .hero-flow-rail {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-gates {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .hero-bridge {
    grid-auto-flow: column;
    min-width: 0;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.1rem 0;
  }

  .hero-pick {
    padding: 1rem 1rem 1.05rem;
    border-radius: 20px;
    animation: none;
  }

  .hero-pick-cta {
    font-size: 0.9rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
  }

  .hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 0.15rem;
    padding: 0.7rem 1rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-shadow: none;
    box-shadow: none;
  }

  .hero-secondary:hover,
  .hero-secondary:active {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
  }

  .burst-image {
    object-position: 62% 44%;
  }

  /* Content as stacked app sheets */
  .platforms,
  .path,
  .contact {
    margin: 0.65rem var(--app-gutter);
    padding: 1.35rem 1rem 1.25rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(16px) saturate(1.2);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    scroll-margin-top: calc(4.75rem + var(--safe-top));
  }

  .platforms .container,
  .path .container,
  .contact .container {
    width: 100%;
  }

  .platform-grid,
  .path-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .section-head,
  .path-head,
  .contact-copy {
    margin-bottom: 1.1rem;
  }

  .path-head {
    max-width: none;
    margin-bottom: 1.1rem;
  }

  .platforms .section-head h2,
  .path-head h2,
  .contact-copy h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .platforms .section-head p,
  .path-head p,
  .contact-copy > p {
    font-size: 0.95rem;
  }

  .platform-card,
  .path-card {
    padding: 1.15rem 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    gap: 0.65rem;
  }

  .platform-card h3 {
    font-size: 1.45rem;
  }

  .platform-desc,
  .path-card p {
    font-size: 0.92rem;
  }

  .platform-points {
    margin: 0.15rem 0 0.85rem;
    gap: 0.35rem;
  }

  .platform-points li {
    font-size: 0.92rem;
  }

  .btn-platform,
  .path-link,
  .form-submit {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .path-dual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    gap: 0.4rem;
  }

  .path-dual > span {
    text-align: center;
  }

  .contact-form {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
  }

  .form-interest .choice {
    min-height: 48px;
    border-radius: 14px;
  }

  .form-note {
    font-size: 0.8rem;
  }

  .site-footer {
    margin: 0.65rem var(--app-gutter) 0.85rem;
    padding: 1rem 1rem 1.05rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.85);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.82rem;
  }

  .site-footer .logo img {
    height: 28px;
  }

  .site-footer .logo-wordmark {
    font-size: 0.52rem;
  }

  .contact-points {
    gap: 0.45rem;
  }

  .contact-points li {
    font-size: 0.92rem;
  }

  .section-bar {
    width: 3.25rem;
    height: 8px;
    margin-bottom: 0.85rem;
  }

  .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.72rem;
  }
}

/* Phone portrait refinements */
@media (max-width: 720px) and (orientation: portrait) {
  .hero-layout {
    padding-bottom: 1.15rem;
  }

  .hero-chooser {
    margin-top: auto;
  }
}

/* Phone landscape, compact app viewport */
@media (max-height: 500px) and (orientation: landscape),
  (max-width: 920px) and (max-height: 480px) and (orientation: landscape) {
  :root {
    --dock-h: calc(2.85rem + var(--safe-bottom));
    --app-gutter: 0.7rem;
  }

  .hero,
  .hero-layout {
    min-height: 100svh;
  }

  .hero-layout {
    padding: calc(3.55rem + var(--safe-top)) 0 0.45rem;
    gap: 0.5rem;
    grid-template-rows: auto auto;
  }

  .hero-top {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 5.2vw, 1.95rem);
  }

  .hero-lead,
  .hero-pick-desc,
  .hero-flow-rail {
    display: none;
  }

  .hero-chooser {
    gap: 0.45rem;
    padding: 0.55rem;
    border-radius: 18px;
    margin-top: 0;
  }

  .hero-gates {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.4rem;
  }

  .hero-bridge {
    min-width: 2.75rem;
    gap: 0.3rem;
  }

  .hero-pick {
    padding: 0.6rem 0.7rem;
    border-radius: 14px;
  }

  .hero-pick-top {
    gap: 0.45rem;
  }

  .hero-pick-glyph {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 10px;
  }

  .hero-pick-glyph svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .hero-pick-name {
    font-size: 1rem;
  }

  .hero-pick-cta {
    margin-top: 0.35rem;
    min-height: 38px;
    padding: 0.55rem 0.7rem;
    font-size: 0.8rem;
    border-radius: 12px;
  }

  .hero-secondary {
    min-height: 38px;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 12px;
  }

  .platforms,
  .path,
  .contact {
    margin: 0.45rem var(--app-gutter);
    padding: 0.95rem 0.85rem;
    border-radius: 18px;
  }

  .platform-grid,
  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0.75rem;
    align-items: start;
  }

  .app-dock {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    transform: none;
    border-radius: 0;
    padding: 0.12rem var(--safe-left) calc(0.12rem + var(--safe-bottom)) var(--safe-right);
  }

  .app-dock-item {
    min-height: 2.4rem;
    font-size: 0.55rem;
    padding: 0.15rem 0.1rem;
    border-radius: 10px;
  }

  .app-dock-item span:last-child {
    display: none;
  }

  .app-dock-icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  .site-footer {
    margin: 0.45rem var(--app-gutter) 0.55rem;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
  }
}

/* Short desktop windows still get a tighter hero */
@media (max-height: 760px) and (min-width: 1101px) and (hover: hover) {
  .hero-layout {
    padding-top: 5.75rem;
    padding-bottom: 1.35rem;
    gap: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.2rem);
  }

  .hero-lead {
    margin-top: 0.65rem;
    font-size: 1.05rem;
  }

  .hero-pick-desc {
    display: none;
  }

  .hero-pick {
    padding: 1rem 1.1rem;
  }
}

/* App shell wins over older phone sheet styles */
html.is-app-shell .app-pager {
  display: block;
  position: fixed;
  top: calc(3.85rem + var(--safe-top));
  left: 0;
  right: 0;
  bottom: var(--dock-h);
  overflow: hidden;
}

html.is-app-shell .app-track {
  display: flex;
  height: 100%;
  width: 100%;
}

html.is-app-shell .app-screen {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

html.is-app-shell .hero,
html.is-app-shell .hero-layout {
  min-height: 100%;
}

html.is-app-shell .hero-layout {
  padding: 1rem 0 1.1rem;
}

html.is-app-shell .platforms,
html.is-app-shell .path,
html.is-app-shell .contact {
  margin: 0;
  padding: 1.1rem var(--app-gutter, 1rem) 1.25rem;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  min-height: 100%;
}

html.is-app-shell .site-footer {
  display: none;
}

html.is-app-shell .path .container {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  height: 100%;
}

html.is-app-shell .path-app {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-height: 0;
}

html.is-app-shell .path-head-desk,
html.is-app-shell .path-desk {
  display: none !important;
}

html.is-app-shell .path-howto {
  display: grid;
}

html.is-app-shell .platform-points,
html.is-app-shell .contact-copy > p,
html.is-app-shell .contact-points {
  display: none;
}

html.is-app-shell .contact-grid {
  grid-template-columns: 1fr;
}
