/* Controles: de lijst die wordt nagelopen, de afwijking die bovenaan komt. */

.vp-controles-page {
  --ct-paper: var(--vp-kaart, #fbf9f4);
  --ct-band: var(--vp-band, #f3f0e9);
  --ct-ink: var(--vp-navy, #1e3a5f);
  --ct-body: var(--vp-body, #263f5c);
  --ct-line: var(--vp-zachte-rand, #ded8cc);
  --ct-orange: var(--vp-accent-op-licht, #a5441a);
  --ct-orange-bright: #e66d36;
  --ct-teal: var(--vp-teal, #0fa48d);
  /* Focusring apart van het lichte accent: #e66d36 haalt op de warme band
     (#f3f0e9) maar 2,80:1 en blijft daarmee onder de 3:1 van WCAG 1.4.11.
     Het donkere accent haalt daar 5,36:1 en op papier 5,80:1. */
  --ct-focus: var(--ct-orange);
  --ct-shadow: 0 34px 70px -42px rgba(14, 24, 38, .58);
  background: var(--ct-paper);
  color: var(--ct-body);
  overflow-x: clip;
}

.vp-controles-page main {
  overflow: clip;
}

.vp-controles-page main > section {
  padding-block: clamp(56px, 5.5vw, 88px);
}

.vp-controles-page main > section > .container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.vp-controles-page h1,
.vp-controles-page h2,
.vp-controles-page h3,
.vp-controles-page p,
.vp-controles-page li,
.vp-controles-page dt,
.vp-controles-page dd {
  color: inherit;
}

.vp-controles-page h2 {
  margin: 0;
  color: var(--ct-ink);
  font-size: clamp(2.15rem, 3.3vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -1px;
  text-wrap: balance;
}

/* Alleen het volle-breedte moment draagt de grote homepagemaat. */
.vp-controles-page .vp-ct-flow-head h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.3rem);
  line-height: 1.02;
}

.vp-controles-page h2 span {
  color: var(--ct-orange);
}

.vp-controles-page h3 {
  margin: 0;
  color: var(--ct-ink);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: -.025em;
}

.vp-controles-page .vp-ct-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--ct-body);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.62;
}

.vp-controles-page main a:not(.app-button) {
  color: var(--ct-orange);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.vp-controles-page a:focus-visible,
.vp-controles-page button:focus-visible {
  outline: 3px solid var(--ct-focus);
  outline-offset: 4px;
}

/* Toneel van de hero: materiaal, perspectief, vloer en licht -------------
   De vijf inhoudelijke secties tonen een gerenderd diorama uit
   images/controles-3d/. Alleen de hero bouwt zijn scene met deze laag op,
   omdat die scherp moet blijven op elke schermdichtheid en als eerste in
   beeld staat. */

.vp-ct-scene {
  --scene-height: 500px;
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: var(--scene-height);
  border: 1px solid rgba(30, 58, 95, .1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 58% 30%, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0) 36%),
    linear-gradient(145deg, #f9f6ef, #eae4d9);
  box-shadow: inset 0 1px rgba(255, 255, 255, .9), var(--ct-shadow);
  perspective: 1050px;
  overflow: hidden;
}

.vp-ct-scene::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 11%;
  right: 8%;
  bottom: 8%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(30, 58, 95, .22), transparent 68%);
  filter: blur(15px);
  transform: rotateX(72deg);
}

.vp-ct-scene::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 9%;
  right: 7%;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 109, 54, .15), transparent 68%);
  filter: blur(16px);
}

/* Hero ------------------------------------------------------------------ */

.vp-controles-page .vp-ct-hero {
  min-height: min(860px, 92svh);
  padding-block: clamp(150px, 13vw, 196px) clamp(84px, 8vw, 112px);
  display: flex;
  align-items: center;
}

.vp-controles-page .vp-ct-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  display: grid;
}

.vp-controles-page .vp-ct-hero-copy {
  width: auto;
  max-width: 620px;
  margin-inline: 0;
  min-width: 0;
  text-align: left;
}

.vp-controles-page.vp-homepage-canon.vp-x-kern .vp-ct-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--ct-ink);
  font-size: clamp(2.75rem, 3.9vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -2px;
  text-wrap: balance;
}

.vp-controles-page .vp-ct-hero h1 span {
  color: var(--ct-orange);
}

.vp-controles-page .vp-ct-hero-copy > p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ct-body);
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.62;
}

.vp-controles-page .vp-ct-hero .button-div {
  flex-wrap: wrap;
  margin-top: 34px;
}

.vp-ct-hero-scene {
  --scene-height: 520px;
  transform: rotate(.6deg);
}

/* De hero toont de controlelijst zelf: twee punten gelopen, de afwijking
   licht op en de uitkomstkaart staat klaar voor een besluit. Het navy
   controlebord hoort bij het hoofdverhaal verderop; hier blijft het papier. */
.vp-ct-plank {
  position: absolute;
  z-index: 2;
  left: 16%;
  right: 16%;
  bottom: 17%;
  height: 18%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  background: linear-gradient(154deg, #345877, #14273f 74%);
  box-shadow: inset 0 2px rgba(255, 255, 255, .16), -18px 30px 40px -27px rgba(14, 24, 38, .8);
  transform: rotateX(62deg) rotateZ(-3deg) translateZ(4px);
}

.vp-ct-plank::after {
  content: "";
  position: absolute;
  left: 11%;
  bottom: 26%;
  width: 44%;
  height: 8px;
  border-radius: 4px;
  background: var(--ct-orange-bright);
}

.vp-ct-hero-dossier {
  position: absolute;
  z-index: 5;
  left: 3%;
  top: 14%;
  width: 22%;
  height: 25%;
  border: 1px solid rgba(30, 58, 95, .16);
  border-radius: 17px;
  background: linear-gradient(145deg, #fffdf8, #e6ded2);
  box-shadow: inset 0 1px white, -18px 27px 35px -26px rgba(14, 24, 38, .62);
  transform: rotateY(20deg) rotateZ(-9deg) translateZ(50px);
}

.vp-ct-hero-dossier::before,
.vp-ct-hero-dossier::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  height: 6px;
  border-radius: 3px;
  background: #c8c0b4;
}

.vp-ct-hero-dossier::before { top: 30%; }
.vp-ct-hero-dossier::after { top: 52%; right: 40%; }

.vp-ct-hero-dossier i {
  position: absolute;
  right: 12%;
  bottom: 15%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ct-orange-bright);
  box-shadow: 0 0 18px rgba(230, 109, 54, .6);
}

.vp-ct-hero-lijst {
  position: absolute;
  z-index: 6;
  left: 24%;
  top: 10%;
  width: 39%;
  height: 60%;
  padding: 14% 9% 10% 11%;
  border: 1px solid rgba(30, 58, 95, .15);
  border-radius: 19px;
  background: linear-gradient(148deg, #fffdf8, #e7dfd3);
  box-shadow: inset 0 1px white, -23px 32px 41px -29px rgba(14, 24, 38, .66);
  transform: rotateY(9deg) rotateZ(-3deg) translateZ(78px);
}

.vp-ct-hero-lijst span {
  position: relative;
  display: block;
  height: 8px;
  margin: 0 0 30px 36px;
  border-radius: 4px;
  background: #c6beb2;
}

.vp-ct-hero-lijst span:nth-child(2) { width: 74%; }

.vp-ct-hero-lijst span::before {
  content: "";
  position: absolute;
  left: -36px;
  top: -6px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--ct-teal);
  border-radius: 5px;
  background: #fffdf8;
}

.vp-ct-hero-lijst span::after {
  content: "";
  position: absolute;
  left: -31px;
  top: -1px;
  width: 9px;
  height: 5px;
  border-left: 3px solid var(--ct-teal);
  border-bottom: 3px solid var(--ct-teal);
  transform: rotate(-45deg);
}

.vp-ct-hero-lijst .vp-ct-rij-afw {
  width: 84%;
  background: rgba(230, 109, 54, .55);
}

.vp-ct-hero-lijst .vp-ct-rij-afw::before {
  border-color: var(--ct-orange-bright);
}

.vp-ct-hero-lijst .vp-ct-rij-afw::after {
  content: none;
}

/* Het teal vinkje staat op de gelopen lijst: dit deel is klaar. */
.vp-ct-vink {
  position: absolute;
  z-index: 8;
  left: 36%;
  top: 47%;
  width: 17%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  background: linear-gradient(148deg, #17b89e, #0c8a77);
  box-shadow: inset 0 2px rgba(255, 255, 255, .38), -14px 22px 30px -20px rgba(14, 24, 38, .7);
  transform: rotateZ(-6deg) translateZ(104px);
}

.vp-ct-vink::after {
  content: "";
  position: absolute;
  left: 27%;
  top: 30%;
  width: 46%;
  height: 26%;
  border-left: 9px solid #fffdf8;
  border-bottom: 9px solid #fffdf8;
  border-radius: 3px;
  transform: rotate(-45deg);
}

.vp-ct-hero-uitkomst {
  position: absolute;
  z-index: 7;
  right: 4%;
  top: 22%;
  width: 28%;
  height: 43%;
  padding: 15% 11% 13%;
  border: 1px solid rgba(165, 68, 26, .22);
  border-radius: 19px;
  background: linear-gradient(148deg, #fffdf8, #e9e1d5);
  box-shadow: inset 0 1px white, -20px 30px 38px -27px rgba(14, 24, 38, .64);
  transform: rotateY(-17deg) rotateZ(7deg) translateZ(96px);
}

.vp-ct-hero-uitkomst b {
  display: block;
  width: 78%;
  height: 10px;
  margin-bottom: 24px;
  border-radius: 5px;
  background: var(--ct-orange-bright);
}

.vp-ct-hero-uitkomst span {
  display: block;
  width: 100%;
  height: 7px;
  margin-bottom: 21px;
  border-radius: 4px;
  background: #c6beb2;
}

.vp-ct-hero-uitkomst span:nth-child(3) { width: 68%; }

.vp-ct-hero-uitkomst i {
  position: absolute;
  right: 12%;
  bottom: 15%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ct-teal);
  box-shadow: 0 0 15px rgba(15, 164, 141, .72);
}

.vp-ct-hero-spoor {
  position: absolute;
  z-index: 9;
  left: 62%;
  top: 36%;
  width: 10%;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ct-orange), var(--ct-orange-bright));
  transform: rotate(-9deg) translateZ(110px);
}

.vp-ct-hero-spoor::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 13px;
  height: 13px;
  border-top: 4px solid var(--ct-orange-bright);
  border-right: 4px solid var(--ct-orange-bright);
  transform: translateY(-50%) rotate(45deg);
}

/* Diorama-beelden -------------------------------------------------------
   De vaste verhouding staat in de CSS en niet alleen op het img-element, dus
   de plek van het beeld ligt vast voordat het bestand binnen is. Daardoor
   verschuift de tekst eronder niet na het laden. `contain` houdt de scene
   ongerekt, ook als een container ooit een andere verhouding krijgt. */

.vp-ct-beeld {
  width: 100%;
  min-width: 0;
  margin: 0;
  aspect-ratio: 1448 / 1086;
  /* Het beeld draagt zelf een warm off-white vlak. Het paneel heeft exact
     diezelfde kleur, zodat er op een band- of navy-sectie geen lichte rand
     omheen valt en de scene als één vlak leest. */
  background: #fbf7f0;
  border-radius: 34px;
  box-shadow: 0 30px 60px -44px rgba(14, 24, 38, .5);
  overflow: hidden;
}

.vp-ct-build-section .vp-ct-beeld {
  box-shadow: 0 38px 70px -40px rgba(0, 0, 0, .72);
}

.vp-ct-beeld picture {
  display: block;
  width: 100%;
  height: 100%;
}

.vp-ct-beeld img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.vp-ct-beeld--breed {
  aspect-ratio: 1870 / 841;
}

.vp-ct-beeld--feiten {
  width: min(100%, 460px);
  margin-inline: auto;
}

.vp-ct-hero-vloer {
  fill: rgba(30, 58, 95, .16);
}

.vp-ct-hero-scene .vp-tool-beeld {
  position: absolute;
  z-index: 0;
  inset: 0;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.vp-ct-hero-scene .vp-tool-beeld svg {
  width: 100%;
  height: 100%;
  max-height: none;
  overflow: visible;
}

/* Hoofdverhaal ---------------------------------------------------------- */

.vp-ct-flow-section {
  background: var(--ct-paper);
}

.vp-ct-flow-head {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: end;
  display: grid;
}

.vp-ct-flow-head .vp-ct-lead {
  margin: 0 0 7px;
}

.vp-ct-flow-board {
  margin-top: clamp(48px, 6vw, 82px);
  padding: clamp(26px, 4vw, 48px);
  border-radius: 32px;
  background: var(--ct-band);
}

.vp-ct-flow-copy {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  margin-top: 36px;
  display: grid;
}

.vp-ct-flow-copy article {
  min-width: 0;
  padding-top: 21px;
  border-top: 2px solid rgba(30, 58, 95, .14);
}

.vp-ct-flow-copy article:nth-child(2) { border-color: rgba(165, 68, 26, .55); }
.vp-ct-flow-copy article:nth-child(3) { border-color: rgba(15, 164, 141, .55); }

.vp-ct-flow-copy p,
.vp-ct-build-list p,
.vp-ct-choice-list p,
.vp-ct-fit-copy p,
.vp-ct-faq p {
  margin: 11px 0 0;
  color: var(--ct-body);
  font-size: 1.06rem;
  line-height: 1.6;
}

/* Donker: wat Vastpilot inricht ----------------------------------------- */

.vp-ct-build-section {
  color: var(--ct-body);
  background: var(--ct-paper);
}

.vp-ct-build-grid {
  grid-template-columns: minmax(330px, .88fr) minmax(0, 1.12fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
  display: grid;
}

.vp-ct-build-section h2,
.vp-ct-build-section h3 { color: var(--ct-ink); }
.vp-ct-build-section h2 span { color: var(--ct-orange); }
.vp-ct-build-section .vp-ct-lead,
.vp-ct-build-section .vp-ct-build-list p { color: var(--ct-body); }

/* Vier afspraken in twee kolommen: minder scrollen, zelfde leesvolgorde.
   Onder 768px klapt dit terug naar een kolom. */
.vp-ct-build-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 3.5vw, 48px);
  margin-top: 34px;
  display: grid;
}

.vp-ct-build-list article {
  min-width: 0;
  padding: 19px 0;
  border-top: 1px solid rgba(30, 58, 95, .16);
}

/* Keuze van de klant ---------------------------------------------------- */

.vp-ct-choice-section {
  background: var(--ct-paper);
}

.vp-ct-choice-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
  display: grid;
}

.vp-ct-choice-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(24px, 3.5vw, 48px);
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  counter-reset: ct-keuze;
}

.vp-ct-choice-list li {
  padding: 17px 0 21px;
  border-top: 1px solid rgba(30, 58, 95, .16);
  counter-increment: ct-keuze;
}

.vp-ct-choice-list li::before {
  content: "0" counter(ct-keuze);
  color: var(--ct-orange);
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.04em;
  display: block;
}

.vp-ct-choice-list p { margin: 10px 0 0; }

.vp-ct-choice-link { margin-top: 28px; }

/* In de kopregels van keuze en wel/niet is het beeld begeleiding, geen
   hoofdmoment: kleiner houden scheelt schermhoogte. */
.vp-ct-choice-grid .vp-ct-beeld,
.vp-ct-fit-layout .vp-ct-beeld {
  width: min(100%, 380px);
  margin-inline: auto;
}

/* Voorwaarden ----------------------------------------------------------- */

.vp-ct-facts-section {
  background: var(--ct-band);
}

.vp-ct-facts-head {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(42px, 8vw, 112px);
  align-items: center;
  display: grid;
}

/* Vier voorwaarden als twee-bij-twee blok: term boven uitleg, twee naast
   elkaar. Halveert de sectiehoogte zonder de leesvolgorde te raken. */
.vp-ct-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(36px, 6vw, 92px);
  margin: clamp(40px, 5vw, 64px) 0 0;
  padding: 0;
  display: grid;
}

.vp-ct-facts > div {
  min-width: 0;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(30, 58, 95, .17);
}

.vp-ct-facts dt {
  color: var(--ct-ink);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -.025em;
  font-weight: 700;
}

.vp-ct-facts dd {
  margin: 12px 0 0;
  font-size: 1.06rem;
  line-height: 1.6;
}

.vp-ct-koppel-lijst {
  margin: 8px 0 0;
  padding-left: 20px;
}

.vp-ct-koppel-lijst li::marker { color: var(--ct-orange); }

/* Wel of niet ----------------------------------------------------------- */

.vp-ct-fit-section {
  background: var(--ct-paper);
}

.vp-ct-fit-layout {
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
  display: grid;
}

/* Wel en niet naast elkaar: de vergelijking staat dan in een oogopslag. */
.vp-ct-fit-copy {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 3.5vw, 48px);
  margin-top: 34px;
  display: grid;
}

.vp-ct-fit-copy article {
  min-width: 0;
  padding: 22px 0;
  border-top: 1px solid rgba(30, 58, 95, .17);
}

/* Vragen ---------------------------------------------------------------- */

.vp-ct-faq-section {
  background: var(--ct-band);
}

.vp-ct-faq-head {
  max-width: 780px;
}

.vp-ct-faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(36px, 7vw, 92px);
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
}

.vp-ct-faq article {
  min-width: 0;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(30, 58, 95, .18);
}

.vp-ct-faq h3 {
  max-width: 28ch;
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
}

.vp-ct-faq p {
  max-width: 54ch;
}

/* Slot ------------------------------------------------------------------ */

.vp-controles-page .vp-ct-cta {
  padding-block: clamp(80px, 8vw, 116px);
  background: var(--ct-paper);
}

.vp-ct-cta-inner {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.vp-ct-cta-inner h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.vp-ct-cta-inner p {
  max-width: 650px;
  margin: 26px auto 0;
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.vp-ct-cta-inner .button-div {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ---------------------------------------------------------------------------
   Beweging bij onthulling. Deze regels hangen aan `.vp-anim-in`, de klasse die
   vp/anim.js pas zet zodra een blok in beeld komt, en aan `html.vp-anim-armed`,
   die alleen bestaat als er JavaScript draait en de bezoeker geen reduced
   motion heeft. Zonder een van beide gebeurt er niets en staat de scene meteen
   in de eindstand: exact de transform die hierboven al vastligt. Elke keyframe
   eindigt daarom op diezelfde waarde, zodat de rusttoestand nergens verschuift.
   --------------------------------------------------------------------------- */

@keyframes vp-ct-vink-in {
  from { opacity: 0; transform: rotateZ(-6deg) translateZ(104px) scale(.62); }
  to { opacity: 1; transform: rotateZ(-6deg) translateZ(104px) scale(1); }
}

@keyframes vp-ct-hero-uitkomst-mobiel-in {
  from { opacity: 0; transform: rotateY(-12deg) rotateZ(4deg) translateZ(34px) translateX(30px); }
  to { opacity: 1; transform: rotateY(-12deg) rotateZ(4deg) translateZ(34px); }
}

@keyframes vp-ct-hero-uitkomst-in {
  from { opacity: 0; transform: rotateY(-17deg) rotateZ(7deg) translateZ(96px) translateX(46px); }
  to { opacity: 1; transform: rotateY(-17deg) rotateZ(7deg) translateZ(96px) translateX(0); }
}

@keyframes vp-ct-spoor-in {
  from { opacity: 0; transform: rotate(-9deg) translateZ(110px) scaleX(.1); }
  to { opacity: 1; transform: rotate(-9deg) translateZ(110px) scaleX(1); }
}

html.vp-anim-armed .vp-ct-hero-scene.vp-anim-in .vp-ct-vink {
  animation: vp-ct-vink-in 620ms var(--vp-anim-ease, ease) 260ms backwards;
}

html.vp-anim-armed .vp-ct-hero-scene.vp-anim-in .vp-ct-hero-uitkomst {
  animation: vp-ct-hero-uitkomst-in 700ms var(--vp-anim-ease, ease) 420ms backwards;
}

html.vp-anim-armed .vp-ct-hero-scene.vp-anim-in .vp-ct-hero-spoor {
  transform-origin: left center;
  animation: vp-ct-spoor-in 520ms var(--vp-anim-ease, ease) 360ms backwards;
}

@media (hover: hover) and (pointer: fine) {
  .vp-ct-hero-scene,
  .vp-ct-beeld {
    transition: transform .35s ease;
  }

  .vp-ct-hero-scene:hover { transform: rotate(.6deg) translateY(-5px); }
  .vp-ct-beeld:hover { transform: translateY(-5px); }
}

@media (max-width: 991px) {
  .vp-controles-page .vp-ct-hero-grid,
  .vp-ct-build-grid,
  .vp-ct-choice-grid,
  .vp-ct-fit-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .vp-controles-page .vp-ct-hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .vp-controles-page.vp-homepage-canon.vp-x-kern .vp-ct-hero h1 {
    max-width: 18ch;
    margin-inline: auto;
  }

  .vp-controles-page .vp-ct-hero-copy > p {
    margin-inline: auto;
  }

  .vp-controles-page .vp-ct-hero .button-div {
    justify-content: center;
  }

  .vp-ct-hero-scene,

  .vp-ct-flow-head,
  .vp-ct-facts-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .vp-ct-choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vp-ct-flow-head .vp-ct-lead { margin-top: 22px; }}

@media (max-width: 767px) {
  .vp-controles-page main > section {
    padding-block: clamp(62px, 16vw, 88px);
  }

  .vp-controles-page .vp-ct-hero {
    min-height: auto;
    padding-top: 116px;
  }

  .vp-controles-page.vp-homepage-canon.vp-x-kern .vp-ct-hero h1 {
    max-width: 14ch;
    font-size: clamp(2.7rem, 11vw, 3.9rem);
  }

  .vp-ct-scene,
  .vp-ct-hero-scene {
    --scene-height: 430px;
  }

  .vp-ct-flow-copy,
  .vp-ct-faq {
    grid-template-columns: minmax(0, 1fr);
  }

  .vp-ct-flow-board {
    padding: 18px;
  }

  .vp-ct-beeld--breed {
    aspect-ratio: 1448 / 1086;
  }

  .vp-ct-flow-copy {
    margin-top: 22px;
  }

  .vp-ct-facts > div {
    padding: 20px 0 24px;
  }

  .vp-ct-build-list article {
    padding: 15px 0 19px;
  }

  .vp-ct-choice-list li {
    padding: 14px 0 18px;
  }}

@media (max-width: 479px) {
  .vp-controles-page main > section > .container {
    padding-inline: 18px;
  }

  .vp-controles-page .vp-ct-hero-grid {
    gap: 34px;
  }

  .vp-controles-page .vp-ct-hero-copy > p,
  .vp-controles-page .vp-ct-lead,
  .vp-controles-page .vp-ct-cta-inner p {
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .vp-controles-page .button-div > .app-button {
    width: 100%;
    justify-content: center;
  }

  .vp-ct-scene,
  .vp-ct-hero-scene {
    --scene-height: 345px;
    border-radius: 25px;
  }

  .vp-ct-hero-dossier { left: 2%; width: 24%; }
  .vp-ct-hero-lijst { left: 22%; width: 42%; padding: 13% 8% 9% 12%; }
  .vp-ct-hero-lijst span { margin: 0 0 24px 30px; height: 7px; }
  .vp-ct-hero-lijst span::before { left: -30px; top: -5px; width: 12px; height: 12px; border-width: 2.5px; }
  .vp-ct-hero-lijst span::after { left: -26px; top: -1px; width: 7px; height: 4px; border-width: 0 0 2.5px 2.5px; border-style: solid; }
  .vp-ct-vink { left: 34%; width: 19%; }
  /* Op 320px duwt translateZ(96px) de uitkomstkaart voorbij de scenerand.
     Een vlakkere stand houdt hem binnen. De keyframe hieronder eindigt op
     exact deze transform, zodat de kaart na de onthulling niet verspringt. */
  .vp-ct-hero-uitkomst {
    right: 6%;
    width: 27%;
    padding: 12% 9% 11%;
    transform: rotateY(-12deg) rotateZ(4deg) translateZ(34px);
  }

  html.vp-anim-armed .vp-ct-hero-scene.vp-anim-in .vp-ct-hero-uitkomst {
    animation-name: vp-ct-hero-uitkomst-mobiel-in;
  }
  .vp-ct-hero-spoor { left: 63%; width: 10%; }
  .vp-ct-plank { left: 10%; right: 12%; }

  .vp-ct-flow-board { margin-inline: -2px; }

  .vp-ct-faq article { padding-block: 24px 27px; }

  /* Ook op telefoonbreedte twee kolommen: kleinere koppen en een smallere
     gutter houden de tekst leesbaar in een kolom van zo'n 150px. */
  .vp-ct-facts,
  .vp-ct-build-list,
  .vp-ct-choice-list,
  .vp-ct-fit-copy {
    column-gap: 18px;
  }

  .vp-ct-facts dt,
  .vp-ct-build-list h3,
  .vp-ct-fit-copy h3 {
    font-size: 1.12rem;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .vp-ct-facts dd,
  .vp-ct-build-list p,
  .vp-ct-choice-list p,
  .vp-ct-fit-copy p {
    font-size: .95rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
    hyphens: auto;
  }}

@media (max-width: 340px) {
  .vp-controles-page .vp-pilo-chat__prompt {
    display: none;
  }

  .vp-controles-page .vp-pilo-chat__launcher-wrap {
    width: 76px;
  }

  .vp-controles-page .vp-ct-hero .button-div > .app-button {
    width: calc(100% - 88px);
    margin-right: auto;
  }}

@media (prefers-reduced-motion: reduce) {
  .vp-controles-page *,
  .vp-controles-page *::before,
  .vp-controles-page *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .vp-controles-page [data-vp-anim] {
    opacity: 1 !important;
    transform: none !important;
  }}
