@charset "UTF-8";
/* Vloeiende bodytekst (overschrijft Bootstrap body font-size uit main) */
body {
  font-size: var(--sqrl-body);
}

/* Fluid UI-tekst (Bootstrap gebruikt vaste rem voor layout-berekeningen) */
.navbar-brand {
  font-size: var(--sqrl-size-l);
}

.menu-item {
  padding: 0 0.52rem;
}

.navbar .nav-link {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
}

.btn:not(.btn-sm):not(.btn-lg) {
  font-size: var(--sqrl-size-m);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  text-wrap: balance;
  font-weight: 500;
  letter-spacing: -0.01225em;
}

h6, .h6 {
  font-family: var(--bs-font-sans-serif);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  --sqrl-toggler-color: #000;
  width: 1.55rem;
  height: 1.1rem;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background-image: none !important;
  border: 0;
}
.navbar-toggler-icon, .navbar-toggler-icon::before, .navbar-toggler-icon::after {
  transition: transform 0.28s ease, opacity 0.2s ease, background-color 0.2s ease;
}
.navbar-toggler-icon::before, .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--sqrl-toggler-color);
  border-radius: 99px;
}
.navbar-toggler-icon {
  /* middelste lijn van hamburger */
  background-color: var(--sqrl-toggler-color);
  height: 2px;
  border-radius: 99px;
}
.navbar-toggler-icon::before {
  top: -0.45rem;
}
.navbar-toggler-icon::after {
  top: 0.45rem;
}

/* Open state: alleen wanneer menu echt open staat */
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background-color: transparent;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn-lg {
  font-size: var(--sqrl-size-m);
  letter-spacing: 0.82px;
  text-align: center;
  border-radius: 16px;
  --bs-btn-padding-y: 1rem;
  --bs-btn-padding-x: 1.5rem;
}
@media (max-width: 767px) {
  .btn-lg {
    --bs-btn-padding-x: 1rem;
  }
}

.btn-sm {
  border-radius: 3rem;
}

.sqrl-btn {
  background-image: linear-gradient(180deg, #ff7800 0%, #E44500 99%);
  border: 1px solid #E44500;
  box-shadow: inset 0 2px 2px 0 rgba(255, 255, 255, 0.65);
  color: #fff;
  box-shadow: 1px 1px 5px 0px rgba(241, 72, 2, 0.2784313725);
}
.sqrl-btn:hover {
  background-image: linear-gradient(180deg, #f64a00 0%, #ff4d00 99%);
  border: 1px solid #b73700;
  box-shadow: inset 0 2px 4px 0 rgba(255, 255, 255, 0.85);
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 1px 1px 5px 0px rgba(241, 74, 2, 0.0352941176);
}

.btn-dark {
  background-image: linear-gradient(180deg, #454545 0%, #090909 92%);
  border: 1px solid #000;
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.28);
  color: #fff;
  border-radius: 16px;
}
.btn-dark:hover {
  background-image: linear-gradient(180deg, #3a3a3a 0%, #161616 100%);
  border-color: #000;
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.14);
}

.sqrl-btn--itc-light {
  color: #000408;
  border: 1px solid #c8c8c8;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.9), 0 3px 10px rgba(1, 8, 24, 0.06);
  background: linear-gradient(180deg, #faf9f8 0%, #f0ebe7 55%, #e9e5e2 100%);
}
.sqrl-btn--itc-light:hover {
  color: #000408;
  background: linear-gradient(180deg, #f3f1ee 0%, #ebe7e4 55%, #e4e0dc 100%);
  border-color: #bcbcbc;
}

#homehero {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1750px;
}
@media (min-width: 992px) {
  #homehero {
    padding: 0 50px 50px 50px;
  }
}
#homehero .homehero-container {
  background-color: #f6f2ee;
  border-radius: 27px 27px 0 0;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  min-height: calc(100svh - 80px);
  position: relative;
  overflow: hidden;
  /* Tekst/content boven de parallax-frontlaag */
}
#homehero .homehero-container > .row {
  position: relative;
  z-index: 2;
}
#homehero .homehero-container .parallax-container {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#homehero .homehero-container {
  /* Van achter naar voren: back → middle → front */
}
#homehero .homehero-container .parallax-container .back {
  z-index: 0;
}
#homehero .homehero-container .parallax-container .middle {
  z-index: 1;
}
#homehero .homehero-container .parallax-container .front {
  z-index: 5;
}
#homehero .homehero-container .parallax-container .zon {
  z-index: 3;
}
#homehero .homehero-container .front {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/heroimgbig__front.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
@media (max-width: 767px) {
  #homehero .homehero-container .front {
    background-size: 250%;
  }
}
#homehero .homehero-container .front:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: #000;
}
#homehero .homehero-container .middle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/heroimgbig__middle.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
@media (max-width: 767px) {
  #homehero .homehero-container .middle {
    background-size: 200%;
  }
}
#homehero .homehero-container .back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/heroimgbig__back.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
@media (max-width: 767px) {
  #homehero .homehero-container .back {
    background-size: 150%;
  }
}
#homehero .homehero-container {
  /* Decoratief: zacht roterend licht (zonnestralen), boven illustratie */
}
#homehero .homehero-container .zon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  top: 70%;
}
#homehero .homehero-container .zon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12%;
  width: 150%;
  height: 150%;
}
@media (max-width: 767px) {
  #homehero .homehero-container .zon::before {
    width: 100%;
    height: 100%;
  }
}
#homehero .homehero-container .zon::before {
  border-radius: 50%;
  opacity: 0.4;
  mix-blend-mode: soft-light;
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(255, 244, 210, 0.22) 0deg, rgba(255, 244, 210, 0.22) 1.75deg, transparent 1.75deg, transparent 13deg);
  animation: sqrl-zon-stralen 110s linear infinite;
  will-change: transform;
  filter: blur(4px);
}
@media (prefers-reduced-motion: reduce) {
  #homehero .homehero-container .zon::before {
    animation: none;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1400px) {
  #homehero .homehero-container {
    min-height: 900px;
  }
}
@media (max-width: 991px) {
  #homehero .homehero-container {
    min-height: 800px;
  }
}
@media (max-width: 767px) {
  #homehero .homehero-container {
    min-height: 600px;
  }
}
#homehero .homehero-content {
  margin: 6rem auto 0 auto;
}
@media (max-width: 767px) {
  #homehero .homehero-content {
    margin: 1.5rem auto 0 auto;
  }
}
#homehero .homehero-content .title {
  font-size: var(--sqrl-size-7xl);
  font-weight: 500;
  line-height: 100%;
}
#homehero .homehero-content p {
  max-width: 539px;
  font-size: var(--sqrl-size-l);
  color: #010508;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  display: block;
  font-weight: 600;
}
#homehero .sqrl-anim-stage .sqrl-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  margin-bottom: clamp(-15px, -1vw, -5px);
}
#homehero .sqrl-anim-stage .sqrl-word-inner {
  display: inline-block;
  will-change: transform, opacity, filter;
}
#homehero .sqrl-anim-stage {
  /* Pre-state: alleen de losse woorden + desc + cta verbergen, NIET de
     hele <h1> (GSAP animeert per .sqrl-word-inner; als de h1 zelf op
     opacity 0 staat blijft alles onzichtbaar). Zonder JS verschijnt
     niets van dit alles, dus titel/desc/cta blijven gewoon zichtbaar. */
}
#homehero .sqrl-anim-stage.is-anim-ready:not(.is-anim-done) .sqrl-word-inner,
#homehero .sqrl-anim-stage.is-anim-ready:not(.is-anim-done) .sqrl-anim-desc,
#homehero .sqrl-anim-stage.is-anim-ready:not(.is-anim-done) .sqrl-anim-cta {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  #homehero .sqrl-anim-stage.is-anim-ready .sqrl-word-inner,
  #homehero .sqrl-anim-stage.is-anim-ready .sqrl-anim-desc,
  #homehero .sqrl-anim-stage.is-anim-ready .sqrl-anim-cta {
    opacity: 1;
  }
}
#homehero .homehero-logos {
  width: 100%;
  /* 1450px */
  height: 100%;
  /* 586px */
  background: #010508;
  border-radius: 0 0 27px 27px;
}
#homehero .homehero-logos .sqrl-home-hero__logo-wrap {
  width: 250px;
}
@media (max-width: 767px) {
  #homehero .homehero-logos .sqrl-home-hero__logo-wrap {
    width: 150px;
  }
}
#homehero .homehero-logos .sqrl-home-hero__logo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#homehero .homehero-logos .h2 {
  font-size: var(--sqrl-size-6xl);
  line-height: 110%;
  color: #fff;
  background-image: linear-gradient(235deg, #FCFBF1 4%, #FDDC83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 800px;
  display: block;
}

@keyframes sqrl-zon-stralen {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Zon-portal overlay: tunnel binnen .homehero-container.
   Het element wordt via JS aan de hero-container gehangen — op die manier
   blijft de witte eind-flash netjes binnen het hero-frame (en mee-scalen
   met de zoom is geen probleem omdat de container overflow:hidden houdt). */
.sqrl-portal {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  overflow: hidden;
  contain: layout paint;
}
.sqrl-portal.is-active {
  pointer-events: auto;
}
.sqrl-portal .sqrl-portal__core,
.sqrl-portal .sqrl-portal__rays {
  position: absolute;
  left: var(--cx, 50%);
  top: var(--cy, 50%);
  width: 140px;
  height: 140px;
  margin-left: -70px;
  margin-top: -70px;
  border-radius: 50%;
  transform: scale(0);
  will-change: transform, opacity, filter;
}
.sqrl-portal .sqrl-portal__core {
  background: radial-gradient(circle, #ffffff 0%, #fff5d8 22%, #ffd06a 50%, rgba(255, 160, 40, 0.6) 70%, rgba(255, 120, 20, 0) 80%);
  filter: blur(2px);
  box-shadow: 0 0 90px 24px rgba(255, 200, 90, 0.55);
}
.sqrl-portal .sqrl-portal__rays {
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(255, 235, 170, 0.45) 0deg, rgba(255, 235, 170, 0.45) 2deg, transparent 2deg, transparent 14deg);
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(3px);
}
.sqrl-portal .sqrl-portal__flash {
  position: absolute;
  inset: 0;
  background: #f6f2ee;
  opacity: 0;
  will-change: opacity;
}

/* Flex: illustratie + titel + tekst + twee CTAs */
.sqrl-image-titel-cta {
  margin-inline: auto;
  max-width: 1750px;
  background: #ffffff;
  padding-block: clamp(3rem, 6vw, 5.5rem);
  padding-inline: 0;
}
@media (min-width: 992px) {
  .sqrl-image-titel-cta {
    padding-inline: 50px;
  }
}
.sqrl-image-titel-cta__figure {
  max-width: min(100%, 640px);
}
.sqrl-image-titel-cta__img {
  display: block;
  margin-inline: auto;
  max-height: min(72vw, 420px);
  width: auto;
  height: auto;
  object-fit: contain;
  max-width: 100%;
}
.sqrl-image-titel-cta__video {
  vertical-align: middle;
  pointer-events: none;
  background: transparent;
}
.sqrl-image-titel-cta__title {
  font-size: var(--sqrl-size-7xl);
  text-align: center;
  font-weight: 500;
  line-height: 110%;
}
.sqrl-image-titel-cta__text {
  font-weight: 500;
  font-size: var(--sqrl-size-l);
  color: #000000;
  text-align: center;
}
.sqrl-image-titel-cta__text p:last-child {
  margin-bottom: 0;
}
.sqrl-image-titel-cta .sqrl-btn--itc-dark {
  --bs-btn-padding-y: 1rem;
  --bs-btn-padding-x: 1.5rem;
  min-width: 12rem;
  font-weight: 700;
  font-size: var(--sqrl-size-m);
  letter-spacing: 0.045em;
  color: #fff;
  border-radius: 16px;
  border: 1px solid #000;
  background-image: linear-gradient(180deg, #454545 0%, #090909 92%);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.28);
}
.sqrl-image-titel-cta .sqrl-btn--itc-dark:hover {
  color: #fff;
  background-image: linear-gradient(180deg, #3a3a3a 0%, #161616 100%);
  border-color: #000;
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.14);
}

/* Flex: CTA-kaart met vaste blauwe vlag + uploadbare voorgrond */
.sqrl-cta-flag {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #F6F2EE 100%);
}
.sqrl-cta-flag__card {
  background: #ffffff;
  border-radius: 27px;
  padding: clamp(1.75rem, 4vw, 3.25rem) clamp(1.25rem, 3vw, 3rem);
  box-shadow: 0 12px 40px rgba(1, 8, 24, 0.06);
}
.sqrl-cta-flag__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
}
@media (min-width: 992px) {
  .sqrl-cta-flag__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(200px, 0.45fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}
.sqrl-cta-flag__content {
  text-align: left;
}
.sqrl-cta-flag__kicker {
  font-size: var(--sqrl-size-l);
  font-weight: 600;
  color: #737373;
  letter-spacing: 0.02em;
  margin-bottom: 0.65rem;
}
.sqrl-cta-flag__title {
  color: #000408;
  margin: 0 0 1.5rem;
  font-size: var(--sqrl-size-4xl);
  font-weight: 500;
  line-height: 110%;
}
@media (min-width: 992px) {
  .sqrl-cta-flag__title {
    margin-bottom: 1.75rem;
  }
}
.sqrl-cta-flag__actions {
  margin-top: 0.25rem;
}
.sqrl-cta-flag__visual-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: min(52vw, 260px);
  margin-inline: auto;
  max-width: 420px;
}
@media (min-width: 992px) {
  .sqrl-cta-flag__visual-inner {
    min-height: 300px;
    max-width: none;
    margin-inline: 0;
  }
}
.sqrl-cta-flag__flag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 85%;
  object-fit: contain;
  user-select: none;
  object-position: center;
}
.sqrl-cta-flag__portrait {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}
.sqrl-cta-flag__person {
  display: block;
  width: auto;
  max-width: min(88%, 340px);
  height: auto;
  max-height: min(58vw, 340px);
  object-fit: contain;
}
@media (min-width: 992px) {
  .sqrl-cta-flag__person {
    max-width: min(100%, 380px);
    max-height: 380px;
  }
}

.sqrl-content-slider {
  margin: 0 auto;
  max-width: 1750px;
  position: relative;
}
@media (min-width: 992px) {
  .sqrl-content-slider {
    padding: 0 50px 50px 50px;
  }
}
.sqrl-content-slider .sqrl-content-slider__container {
  background: #F6F2EE;
  border-radius: 27px;
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}
.sqrl-content-slider .sqrl-content-slider__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 100%;
  -webkit-mask-image: linear-gradient(90deg, #010508, rgba(1, 5, 8, 0) 52.82%);
  mask-image: linear-gradient(90deg, #f6f2ee, rgba(1, 5, 8, 0) 52.82%);
  display: block;
  z-index: 1;
  background: #f6f2ee;
}
.sqrl-content-slider .sqrl-content-slider__container h2 {
  font-weight: 500;
  font-size: var(--sqrl-size-6xl);
  color: #000000;
  line-height: 110%;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .sqrl-content-slider .sqrl-content-slider__container h2 {
    max-width: 40%;
  }
}
.sqrl-content-slider .sqrl-content-slider__container .sqrl-content-slider__intro {
  font-weight: 500;
  font-size: var(--Size-size-l, 24px);
  color: #000000;
  line-height: 150%;
}
@media (min-width: 992px) {
  .sqrl-content-slider .sqrl-content-slider__container .sqrl-content-slider__intro {
    max-width: 50%;
  }
}
.sqrl-content-slider .sqrl-content-slider__container .sqrl-content-slider__carousel {
  max-width: calc((100% - 1450px) / 2 + 1450px - 1rem);
  margin: 0 0 0 auto;
  padding-left: 0;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .sqrl-content-slider .sqrl-content-slider__container .sqrl-content-slider__carousel {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
  }
}
.sqrl-content-slider .sqrl-content-slider__container .sqrl-content-slider__carousel .flickity-viewport {
  overflow: visible;
}
.sqrl-content-slider .sqrl-content-slider__container .sqrl-content-slider__carousel .sqrl-content-slider__cell {
  background: #FFFFFF;
  border-radius: 15px;
  max-width: 583.3333333333px;
  height: 583.3333333333px;
  padding: clamp(0.5rem, 4vw, 4rem);
  margin-right: 15px;
}
@media (min-width: 768px) {
  .sqrl-content-slider .sqrl-content-slider__container .sqrl-content-slider__carousel .sqrl-content-slider__cell {
    width: 80%;
    margin-right: 30px;
  }
}
.sqrl-content-slider .sqrl-content-slider__container .sqrl-content-slider__carousel .sqrl-content-slider__cell .sqrl-content-slider__slide-text {
  line-height: 150%;
  font-weight: 500;
  color: #000000;
}
.sqrl-content-slider .sqrl-content-slider__container .sqrl-content-slider__carousel .sqrl-content-slider__cell h3 {
  font-weight: 500;
  font-size: var(--sqrl-size-2xl);
  color: #000000;
  line-height: 27px;
  margin-top: 20px;
}
.sqrl-content-slider .sqrl-content-slider__container .sqrl-content-slider__carousel .sqrl-content-slider__cell p {
  font-weight: 500;
  font-size: var(--sqrl-body);
  color: #4D4D4D;
  line-height: 150%;
}
.sqrl-content-slider .sqrl-content-slider__container .sqrl-content-slider__carousel .sqrl-content-slider__cell .sqrl-content-slider__media {
  float: left;
  margin-top: -22px;
  margin-right: 15px;
}
.sqrl-content-slider .sqrl-content-slider__container .sqrl-content-slider__carousel .sqrl-content-slider__cell .sqrl-content-slider__media img {
  margin-left: 0;
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
}

/* Flex: pipeline kaarten — titel + verspringend kaartenraster */
.sqrl-pipeline-cards {
  background: #f6f2ee;
  border-radius: 27px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1750px;
}
.sqrl-pipeline-cards .container {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.sqrl-pipeline-cards__head {
  margin-bottom: clamp(2.5rem, 5vw, 6rem);
}
.sqrl-pipeline-cards__header-art {
  position: absolute;
  top: 5rem;
  right: -11px;
  width: min(42%, 380px);
  pointer-events: none;
  z-index: 1;
}
.sqrl-pipeline-cards__header-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top right;
}
.sqrl-pipeline-cards__title {
  font-size: var(--sqrl-size-7xl);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}
.sqrl-pipeline-cards__subtitle {
  font-size: var(--sqrl-size-l);
  font-weight: 500;
  color: #4d4d4d;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.sqrl-pipeline-cards__stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 992px) {
  .sqrl-pipeline-cards__stack {
    display: none;
  }
}
.sqrl-pipeline-cards__grid {
  display: none;
}
@media (min-width: 992px) {
  .sqrl-pipeline-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
  }
}
.sqrl-pipeline-cards__col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
@media (min-width: 992px) {
  .sqrl-pipeline-cards__col--right {
    padding-top: clamp(5rem, 11vw, 9.5rem);
  }
}
.sqrl-pipeline-cards__card {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.sqrl-pipeline-cards__card-icon {
  margin-bottom: 1rem;
}
.sqrl-pipeline-cards__card-img {
  display: block;
  width: auto;
  max-width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: bottom center;
}
.sqrl-pipeline-cards__card-title {
  font-size: var(--sqrl-size-1xl);
  font-family: var(--bs-body-font-family);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
}
.sqrl-pipeline-cards__card-text {
  font-size: var(--sqrl-size-l);
  font-weight: 500;
  color: #000000;
  line-height: 150%;
}
.sqrl-pipeline-cards__card-text p:last-child {
  margin-bottom: 0;
}
.sqrl-pipeline-cards.has-pipeline-parallax .sqrl-pipeline-cards__card {
  will-change: transform, opacity;
}

/* Flex: titel + twee tekstkolommen */
.sqrl-two-column-text {
  margin: 0 auto;
  max-width: 1750px;
}
.sqrl-two-column-text .container {
  padding-block: clamp(2rem, 4vw, 3rem);
}
.sqrl-two-column-text__panel {
  background: #f6f2ee;
  border-radius: 27px;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4.5rem);
}
.sqrl-two-column-text__title {
  font-size: var(--sqrl-size-7xl);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: 20ch;
}
.sqrl-two-column-text__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 768px) {
  .sqrl-two-column-text__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}
.sqrl-two-column-text__col {
  font-size: var(--sqrl-size-l);
  font-weight: 500;
  line-height: 1.55;
  color: #000;
}
.sqrl-two-column-text__col > *:first-child {
  margin-top: 0;
}
.sqrl-two-column-text__col > *:last-child {
  margin-bottom: 0;
}
.sqrl-two-column-text__col p {
  margin-bottom: 1.15em;
}
.sqrl-two-column-text__col p:last-child {
  margin-bottom: 0;
}
.sqrl-two-column-text__col strong,
.sqrl-two-column-text__col b {
  font-weight: 700;
}
.sqrl-two-column-text__col ul,
.sqrl-two-column-text__col ol {
  margin-bottom: 1.15em;
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .sqrl-two-column-text__columns:has(.sqrl-two-column-text__col:only-child) {
    grid-template-columns: 1fr;
    max-width: 42rem;
  }
}

/* Flex: contact — Meet the Squirrel */
.sqrl-contact {
  margin: 0 auto;
  max-width: 1750px;
}
.sqrl-contact .container {
  padding-block: clamp(2rem, 4vw, 3rem);
}
.sqrl-contact__panel {
  position: relative;
  overflow: visible;
  background: #f6f2ee;
  border-radius: 27px;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4.5rem) 0 clamp(4rem, 8vw, 7rem);
  border-bottom: 30px solid #fff;
}
.sqrl-contact__title {
  font-size: var(--sqrl-size-8xl);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  margin-top: 2rem;
  max-width: 16ch;
}
.sqrl-contact__intro {
  font-size: var(--sqrl-size-l);
  font-weight: 500;
  color: #4d4d4d;
  margin-bottom: 1.75rem;
  max-width: 36rem;
}
.sqrl-contact__founders-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.sqrl-contact__founders {
  display: flex;
  align-items: center;
  padding: 0;
}
.sqrl-contact__founder {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: clamp(3.25rem, 5vw, 4rem);
  height: clamp(3.25rem, 5vw, 4rem);
  margin-left: -0.85rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  background: #ffffff;
  transition: z-index 0s, transform 0.28s ease, width 0.28s ease, height 0.28s ease, margin-top 0.28s ease, box-shadow 0.28s ease;
}
.sqrl-contact__founder:first-child {
  margin-left: 0;
}
.sqrl-contact__founder:hover, .sqrl-contact__founder:focus-within {
  z-index: 10;
  width: clamp(4.25rem, 6.5vw, 5.25rem);
  height: clamp(4.25rem, 6.5vw, 5.25rem);
  margin-top: -0.65rem;
  overflow: visible;
  box-shadow: 0 10px 28px rgba(1, 8, 24, 0.12);
}
.sqrl-contact__founder-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.28s ease;
}
.sqrl-contact__founder:hover .sqrl-contact__founder-img, .sqrl-contact__founder:focus-within .sqrl-contact__founder-img {
  transform: scale(1.08);
}
.sqrl-contact__schedule {
  font-size: var(--sqrl-size-l);
  font-weight: 600;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}
.sqrl-contact__schedule::after {
  content: " →";
}
.sqrl-contact__schedule:hover {
  text-decoration: underline;
}
.sqrl-contact__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 992px) {
  .sqrl-contact__body {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}
.sqrl-contact__info {
  font-size: var(--sqrl-size-l);
  font-weight: 500;
  line-height: 1.55;
  color: #000;
}
.sqrl-contact__info p {
  margin-bottom: 1.25em;
}
.sqrl-contact__info p:last-child {
  margin-bottom: 0;
}
.sqrl-contact__info strong,
.sqrl-contact__info b {
  font-weight: 700;
}
.sqrl-contact__info a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.sqrl-contact__form {
  min-width: 0;
}
.sqrl-contact__form label {
  display: block;
  font-size: var(--sqrl-size-m);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.sqrl-contact__form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]),
.sqrl-contact__form select,
.sqrl-contact__form textarea {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  font-size: var(--sqrl-size-m);
  font-weight: 500;
  color: #000;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}
.sqrl-contact__form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):focus,
.sqrl-contact__form select:focus,
.sqrl-contact__form textarea:focus {
  outline: 2px solid rgba(0, 0, 0, 0.12);
  outline-offset: 1px;
}
.sqrl-contact__form textarea {
  min-height: 8rem;
  resize: vertical;
}
.sqrl-contact__form input[type=submit],
.sqrl-contact__form button[type=submit],
.sqrl-contact__form .hs-button {
  margin-top: 0.25rem;
  padding: 0.85rem 1.5rem;
  font-size: var(--sqrl-size-m);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  border: 1px solid #e44500;
  border-radius: 16px;
  background-image: linear-gradient(180deg, #ff7800 0%, #e44500 99%);
  box-shadow: inset 0 2px 2px 0 rgba(255, 255, 255, 0.65);
}
.sqrl-contact__form input[type=submit]:hover,
.sqrl-contact__form button[type=submit]:hover,
.sqrl-contact__form .hs-button:hover {
  color: #fff;
  background-image: linear-gradient(180deg, #f64a00 0%, #ff4d00 99%);
}
.sqrl-contact__scene {
  position: relative;
  z-index: 2;
  width: calc(100% + clamp(2rem, 4vw, 4.5rem) * 2);
  max-width: none;
  margin-inline: calc(-1 * clamp(2rem, 4vw, 4.5rem));
  margin-bottom: -22px;
  pointer-events: none;
}
.sqrl-contact__scene-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

/* Flex: ROI-calculator modal (Boom CTA) */
.sqrl-roi-lock {
  overflow: hidden;
}

.sqrl-roi {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}
.sqrl-roi[hidden] {
  display: none;
}
.sqrl-roi__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 8, 24, 0.55);
  backdrop-filter: blur(2px);
}
.sqrl-roi__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 24px 70px rgba(1, 8, 24, 0.28);
}
.sqrl-roi__close {
  position: absolute;
  top: 1rem;
  right: 1.15rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  color: #4d4d4d;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.sqrl-roi__close:hover {
  background: #f6f2ee;
  color: #000;
}
.sqrl-roi__progress {
  height: 4px;
  margin-bottom: 1.75rem;
  background: #f6f2ee;
  border-radius: 99px;
  overflow: hidden;
}
.sqrl-roi__progress-bar {
  display: block;
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, #ff7800 0%, #e44500 100%);
  border-radius: 99px;
  transition: width 0.35s ease;
}
.sqrl-roi__title {
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-size: var(--sqrl-size-3xl);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.sqrl-roi__lead {
  font-size: var(--sqrl-size-m);
  color: #4d4d4d;
  margin-bottom: 1.5rem;
}
.sqrl-roi__step {
  display: none;
}
.sqrl-roi__step.is-active {
  display: block;
}
.sqrl-roi__field {
  margin-bottom: 1.15rem;
}
.sqrl-roi__field label {
  display: block;
  font-size: var(--sqrl-size-m);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.sqrl-roi__field input {
  display: block;
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: var(--sqrl-size-m);
  font-weight: 500;
  color: #000;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
}
.sqrl-roi__field input:focus {
  outline: 2px solid rgba(228, 69, 0, 0.35);
  outline-offset: 1px;
  border-color: #e44500;
}
.sqrl-roi__field input.is-invalid {
  border-color: #cc2b2b;
  outline-color: rgba(204, 43, 43, 0.3);
}
.sqrl-roi__assumptions {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  background: #f6f2ee;
  border-radius: 12px;
  font-size: var(--sqrl-size-m);
  color: #4d4d4d;
}
.sqrl-roi__assumptions li + li {
  margin-top: 0.4rem;
}
.sqrl-roi__packages {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.sqrl-roi__package {
  display: block;
  cursor: pointer;
}
.sqrl-roi__package input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sqrl-roi__package-body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.15rem 1rem;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.sqrl-roi__package input:checked + .sqrl-roi__package-body {
  border-color: #e44500;
  background: rgba(255, 120, 0, 0.06);
}
.sqrl-roi__package input:focus-visible + .sqrl-roi__package-body {
  outline: 2px solid rgba(228, 69, 0, 0.4);
  outline-offset: 2px;
}
.sqrl-roi__package-name {
  font-weight: 700;
  font-size: var(--sqrl-size-m);
}
.sqrl-roi__package-price {
  grid-row: 1/3;
  grid-column: 2;
  align-self: center;
  font-weight: 700;
  font-size: var(--sqrl-size-l);
  white-space: nowrap;
}
.sqrl-roi__package-desc {
  grid-column: 1;
  font-size: 0.92em;
  color: #4d4d4d;
}
.sqrl-roi__software {
  font-size: var(--sqrl-size-m);
  color: #4d4d4d;
  margin-bottom: 1.5rem;
}
.sqrl-roi__results {
  padding: 1.25rem;
  background: #f6f2ee;
  border-radius: 16px;
}
.sqrl-roi__result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
  margin: 0 0 1.1rem;
}
.sqrl-roi__result dt {
  font-size: 0.9em;
  font-weight: 500;
  color: #4d4d4d;
  margin-bottom: 0.1rem;
}
.sqrl-roi__result dd {
  margin: 0;
  font-size: var(--sqrl-size-l);
  font-weight: 700;
}
.sqrl-roi__roi {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.sqrl-roi__roi-label {
  font-weight: 600;
}
.sqrl-roi__roi-value {
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-size: var(--sqrl-size-4xl);
  font-weight: 500;
  color: #2f9e44;
  line-height: 1;
}
.sqrl-roi__actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
}
.sqrl-roi__actions .sqrl-roi__back {
  margin-right: auto;
}
.sqrl-roi__actions .sqrl-roi__next {
  margin-left: auto;
}

@media (prefers-reduced-motion: reduce) {
  .sqrl-roi__progress-bar {
    transition: none;
  }
}
/* Flex: feature kaarten — xxl+: grid; <xxl: Flickity (watchCSS) of scroll-fallback */
.sqrl-feature-cards {
  margin-inline: auto;
  max-width: 1750px;
  overflow: hidden;
}
.sqrl-feature-cards .flickity-page-dots {
  bottom: -2.25rem;
}
.sqrl-feature-cards .flickity-page-dots .dot {
  background: #737373;
  opacity: 0.45;
}
.sqrl-feature-cards .flickity-page-dots .dot.is-selected {
  opacity: 1;
  background: #000408;
}

.sqrl-feature-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.5rem), 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  /* Flickity watchCSS: actief onder xxl (1400px; zie root.scss) */
}
.sqrl-feature-cards__grid::after {
  content: "flickity";
  display: none;
}
@media (min-width: 1400px) {
  .sqrl-feature-cards__grid::after {
    content: "";
  }
}

@media (max-width: 1399px) {
  .sqrl-feature-cards__grid.flickity-enabled {
    display: block;
    margin-bottom: 2.75rem;
  }
  .sqrl-feature-cards__grid.flickity-enabled .sqrl-feature-cards__cell {
    width: min(22rem, 100vw - 4.5rem);
    margin-right: clamp(0.75rem, 3vw, 1.25rem);
    min-height: 100%;
  }
  .sqrl-feature-cards__grid.flickity-enabled .flickity-viewport {
    overflow: visible;
  }
  .sqrl-feature-cards__grid--scroll-fallback {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(0.75rem, 3vw, 1.25rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding-bottom: 0.35rem;
    margin-bottom: 0.5rem;
  }
  .sqrl-feature-cards__grid--scroll-fallback::after {
    content: "";
  }
  .sqrl-feature-cards__grid--scroll-fallback > .sqrl-feature-cards__cell {
    flex: 0 0 min(22rem, 100vw - 4.5rem);
    scroll-snap-align: start;
    min-width: 0;
  }
}
.sqrl-feature-cards__top-title {
  font-size: var(--sqrl-size-l);
  font-weight: 500;
  line-height: 150%;
  margin: 1.5rem 0 0 0;
  text-align: center;
}

.sqrl-feature-cards__frame {
  border-radius: calc(6px + 0.35rem);
  padding: 30px 10px 10px 10px;
  background-size: contain;
  background-position: top center;
}

.sqrl-feature-cards__card {
  background: #f6f2ee;
  border: 1px solid #f6f2ee;
  border-radius: calc(6px + 0.35rem);
}

.sqrl-feature-cards__card--accent-blue .sqrl-feature-cards__frame {
  background-image: url("../img/blauw.png");
}

.sqrl-feature-cards__card--accent-orange .sqrl-feature-cards__frame {
  background-image: url("../img/oranje.png");
}

.sqrl-feature-cards__card--accent-green .sqrl-feature-cards__frame {
  background-image: url("../img/groen.png");
}

.sqrl-feature-cards__card--accent-purple .sqrl-feature-cards__frame {
  background-image: url("../img/paars.png");
}

.sqrl-feature-cards__box {
  background: #fff;
  border-radius: calc(6px + 0.35rem);
  padding: 1rem 1.1rem 1.15rem;
}

.sqrl-feature-cards__box-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-bottom: 0.75rem;
  flex-direction: column;
}

.sqrl-feature-cards__box-title {
  font-size: var(--sqrl-size-m);
  font-weight: 700;
  color: #000;
}

.sqrl-feature-cards__box-sub {
  font-size: var(--sqrl-size-s);
  color: #737373;
  font-weight: 600;
}

.sqrl-feature-cards__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sqrl-feature-cards__row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.sqrl-feature-cards__indicator--image .sqrl-feature-cards__indicator-img {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.sqrl-feature-cards__indicator-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding: 0 0.35rem;
  font-weight: 700;
  font-size: var(--sqrl-size-s);
  color: rgba(0, 0, 0, 0.69);
  text-align: center;
  background: #EDDFD1;
  border-radius: 8px;
}

.sqrl-feature-cards__line-label {
  font-size: var(--sqrl-size-s);
  font-weight: 600;
  color: #000;
  min-width: 0;
}

.sqrl-feature-cards__bottom {
  font-size: var(--sqrl-size-m);
  line-height: 1.5;
  color: #000;
  margin-top: 1rem;
}
.sqrl-feature-cards__bottom p:last-child {
  margin-bottom: 0;
}

ul:not(.navbar-nav, .sqrl-feature-cards__list, .list-unstyled) {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.35em;
}
ul:not(.navbar-nav, .sqrl-feature-cards__list, .list-unstyled) li {
  position: relative;
  padding-left: 1rem;
}
ul:not(.navbar-nav, .sqrl-feature-cards__list, .list-unstyled) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.57em;
  height: 0.75em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
ul:not(.navbar-nav, .sqrl-feature-cards__list, .list-unstyled) li:nth-child(5n+1)::before {
  background-image: url("../img/eikel_bruin.png");
}
ul:not(.navbar-nav, .sqrl-feature-cards__list, .list-unstyled) li:nth-child(5n+2)::before {
  background-image: url("../img/eikel_rood.png");
}
ul:not(.navbar-nav, .sqrl-feature-cards__list, .list-unstyled) li:nth-child(5n+3)::before {
  background-image: url("../img/eikel_groen.png");
}
ul:not(.navbar-nav, .sqrl-feature-cards__list, .list-unstyled) li:nth-child(5n+4)::before {
  background-image: url("../img/eikel_paars.png");
}
ul:not(.navbar-nav, .sqrl-feature-cards__list, .list-unstyled) li:nth-child(5n+5)::before {
  background-image: url("../img/eikel_oranje.png");
}

ul:not(.navbar-nav, .sqrl-feature-cards__list, .list-unstyled) li + li {
  margin-top: 0.35em;
}

/* Flex: laatste nieuws (4 posts) */
.sqrl-latest-news {
  margin-inline: auto;
  max-width: 1750px;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
@media (min-width: 992px) {
  .sqrl-latest-news {
    padding-inline: 50px;
  }
}
.sqrl-latest-news__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.sqrl-latest-news__title {
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.2vw + 0.75rem, 2.75rem);
  font-weight: 500;
  line-height: 1.1;
  color: #000408;
  margin: 0;
  max-width: 20ch;
}
.sqrl-latest-news__title-placeholder {
  flex: 1;
  min-width: 0;
}
.sqrl-latest-news__cta {
  flex-shrink: 0;
  font-weight: 500;
}
.sqrl-latest-news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}
@media (min-width: 768px) {
  .sqrl-latest-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.5rem, 4vw, 2.5rem);
    row-gap: clamp(1.5rem, 3vw, 2rem);
  }
}
.sqrl-latest-news__item {
  margin: 0;
  min-width: 0;
}
.sqrl-latest-news__link {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7.25rem) minmax(0, 1fr);
  gap: clamp(0.85rem, 2vw, 1.15rem);
  align-items: center;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
@media (min-width: 576px) {
  .sqrl-latest-news__link {
    grid-template-columns: minmax(6.5rem, 12.5rem) minmax(0, 1fr);
  }
}
.sqrl-latest-news__thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #f6f2ee;
}
.sqrl-latest-news__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sqrl-latest-news__thumb-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #d8d8d8 0%, #eddfd1 100%);
}
.sqrl-latest-news__body {
  min-width: 0;
  padding-top: 0.1rem;
}
.sqrl-latest-news__label {
  display: block;
  font-size: var(--sqrl-size-s);
  font-weight: 500;
  color: #737373;
  margin-bottom: 0.35rem;
}
.sqrl-latest-news__item-title {
  font-size: var(--sqrl-size-l);
  font-weight: 700;
  line-height: 1.25;
  color: #000408;
  margin: 0 0 0.5rem;
  text-decoration: none;
}
.sqrl-latest-news__excerpt {
  font-size: var(--sqrl-size-s);
  font-weight: 400;
  line-height: 1.2;
  color: #4d4d4d;
  margin: 0;
}

/* Single post: leesbare, Verge-achtige opmaak */
.sqrl-article {
  color: #4d4d4d;
}
.sqrl-article__header {
  background: #ffffff;
}
.sqrl-article__crumbs {
  letter-spacing: 0.06em;
  font-size: var(--sqrl-size-s);
}
.sqrl-article__crumbs a:hover {
  text-decoration: underline;
}
.sqrl-article__title {
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  color: #000408;
  letter-spacing: -0.01em;
  font-size: clamp(2.25rem, 4vw + 0.75rem, 4.25rem);
  margin: 0 0 1.25rem;
}
.sqrl-article__lead {
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  color: #4d4d4d;
  line-height: 1.4;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.625rem);
  max-width: 40ch;
}
.sqrl-article__meta {
  color: #737373;
}
.sqrl-article__meta a {
  color: inherit;
  text-decoration: none;
}
.sqrl-article__meta a:hover {
  text-decoration: underline;
}
.sqrl-article__hero {
  margin: 0 0 2.5rem;
}
.sqrl-article__hero-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #f6f2ee;
}
@media (max-width: 767px) {
  .sqrl-article__hero-frame {
    border-radius: 0;
  }
}
.sqrl-article {
  /* Leestekst */
}
.sqrl-article__content {
  font-size: var(--sqrl-body);
  line-height: 1.7;
  color: #4d4d4d;
}
.sqrl-article__content > * {
  margin-block: 0 1.35em;
}
.sqrl-article__content > *:last-child {
  margin-bottom: 0;
}
.sqrl-article__content {
  /* Eerste afbeelding/figure: ademruimte bovenaan en mooie afronding.
     Ondersteunt ook situaties waarin de redacteur de afbeelding per ongeluk in een <h1>/<h2>/<p> heeft geplakt
     (dan is de img het enige kind binnen die wrapper). */
}
.sqrl-article__content > figure:first-child,
.sqrl-article__content > .wp-block-image:first-child,
.sqrl-article__content > :first-child:has(> img:only-child) {
  margin-top: 0;
  margin-bottom: 2em;
}
.sqrl-article__content > figure:first-child img,
.sqrl-article__content > .wp-block-image:first-child img,
.sqrl-article__content > :first-child > img:only-child {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.sqrl-article__content {
  /* Een heading dat alleen een afbeelding bevat, hoeft géén kop-typografie te tonen.
     (Komt voor wanneer een afbeelding in de Classic Editor in een H1/H2-blok wordt geplakt.) */
}
.sqrl-article__content h1:has(> img:only-child),
.sqrl-article__content h2:has(> img:only-child),
.sqrl-article__content h3:has(> img:only-child),
.sqrl-article__content h4:has(> img:only-child),
.sqrl-article__content h5:has(> img:only-child),
.sqrl-article__content h6:has(> img:only-child) {
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: inherit;
  margin-top: 0;
  margin-bottom: 2em;
}
.sqrl-article__content {
  /* Algemene fallback voor losse <img> in content (bijv. Classic Editor) */
}
.sqrl-article__content p > img.alignnone,
.sqrl-article__content p > img.aligncenter,
.sqrl-article__content > img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.sqrl-article__content p {
  hyphens: auto;
  overflow-wrap: anywhere;
}
.sqrl-article__content {
  /* Eerste alinea iets groter (Verge-achtig standfirst) */
}
.sqrl-article__content > p:first-of-type {
  font-size: calc(var(--sqrl-body) + 1px);
  color: #000408;
}
.sqrl-article__content a {
  color: #4a60b2;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}
.sqrl-article__content a:hover {
  color: shade-color(#4a60b2, 18%);
}
.sqrl-article__content strong, .sqrl-article__content b {
  color: #000408;
}
.sqrl-article__content {
  /* Koppen binnen artikel */
}
.sqrl-article__content h2, .sqrl-article__content h3, .sqrl-article__content h4, .sqrl-article__content h5, .sqrl-article__content h6 {
  color: #000408;
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 2.25em;
  margin-bottom: 0.6em;
  letter-spacing: -0.005em;
}
.sqrl-article__content h5, .sqrl-article__content h6 {
  font-family: var(--bs-font-sans-serif);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: var(--sqrl-size-s);
  color: #737373;
}
.sqrl-article__content h2:first-of-type {
  margin-top: 0;
}
.sqrl-article__content {
  /* Lijsten */
}
.sqrl-article__content ol {
  padding-left: 1.35em;
  margin-bottom: 1.35em;
}
.sqrl-article__content ol li::marker {
  color: #737373;
}
.sqrl-article__content {
  /* Blockquote / pull quote */
}
.sqrl-article__content blockquote {
  position: relative;
  margin: 2em 0;
  padding: 0.25em 0 0.25em 1.5rem;
  border-left: 3px solid #000408;
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: #000408;
  line-height: 1.35;
  font-size: clamp(1.35rem, 1vw + 0.95rem, 1.75rem);
}
.sqrl-article__content blockquote p {
  margin-bottom: 0.5em;
}
.sqrl-article__content blockquote p:last-child {
  margin-bottom: 0;
}
.sqrl-article__content blockquote cite {
  display: block;
  margin-top: 0.75em;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 600;
  font-size: var(--sqrl-size-s);
  color: #737373;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sqrl-article__content blockquote cite::before {
  content: "— ";
}
.sqrl-article__content {
  /* "Pull quote": vol-uit, gecentreerd. Voeg .has-text-align-center of .is-style-large toe in editor. */
}
.sqrl-article__content blockquote.is-style-large,
.sqrl-article__content blockquote.has-text-align-center {
  border-left: 0;
  padding: 1.5rem 0;
  margin: 2.5em 0;
  text-align: center;
  font-size: clamp(1.65rem, 1.4vw + 1rem, 2.25rem);
  border-top: 1px solid rgba(0, 4, 8, 0.12);
  border-bottom: 1px solid rgba(0, 4, 8, 0.12);
}
.sqrl-article__content {
  /* Figure + figcaption */
}
.sqrl-article__content figure {
  margin: 2em 0;
}
.sqrl-article__content figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.sqrl-article__content figure figcaption,
.sqrl-article__content figure .wp-caption-text {
  margin-top: 0.6rem;
  font-size: var(--sqrl-size-s);
  line-height: 1.45;
  color: #737373;
  font-style: italic;
}
.sqrl-article__content .alignwide,
.sqrl-article__content .alignfull {
  width: auto;
}
@media (min-width: 992px) {
  .sqrl-article__content .alignwide {
    margin-inline: -7%;
    max-width: 114%;
  }
  .sqrl-article__content .alignfull {
    margin-inline: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
  }
}
.sqrl-article__content .alignleft {
  float: left;
  margin: 0.25rem 1.5rem 1rem 0;
  max-width: min(50%, 22rem);
}
.sqrl-article__content .alignright {
  float: right;
  margin: 0.25rem 0 1rem 1.5rem;
  max-width: min(50%, 22rem);
}
.sqrl-article__content {
  /* Code */
}
.sqrl-article__content code,
.sqrl-article__content kbd,
.sqrl-article__content samp {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
  background: #f6f2ee;
  padding: 0.1em 0.4em;
  border-radius: 6px;
  color: #000408;
}
.sqrl-article__content pre {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  background: #000408;
  color: #f4f4f4;
  padding: 1.1rem 1.25rem;
  border-radius: 12px;
  overflow-x: auto;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 1.5em 0;
}
.sqrl-article__content pre code {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: inherit;
  font-size: inherit;
}
.sqrl-article__content {
  /* Tabellen — gestyled zonder dat redacteuren classes hoeven toe te voegen */
}
.sqrl-article__content .wp-block-table,
.sqrl-article__content figure.wp-block-table {
  margin: 2em 0;
  overflow-x: auto;
}
.sqrl-article__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--sqrl-size-m);
  line-height: 1.45;
  color: #000408;
  background: #ffffff;
}
.sqrl-article__content table caption {
  caption-side: bottom;
  padding-top: 0.75rem;
  text-align: left;
  font-style: italic;
  color: #737373;
  font-size: var(--sqrl-size-s);
}
.sqrl-article__content table th, .sqrl-article__content table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(0, 4, 8, 0.12);
  vertical-align: top;
}
.sqrl-article__content table thead th {
  background: #f6f2ee;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--sqrl-size-s);
  color: #737373;
  border-bottom-color: #000408;
}
.sqrl-article__content table tbody tr:hover {
  background: rgba(246, 242, 238, 0.6);
}
.sqrl-article__content {
  /* Horizontale lijn */
}
.sqrl-article__content hr {
  border: 0;
  height: 1px;
  background: rgba(0, 4, 8, 0.12);
  margin: 2.5em auto;
  width: 6rem;
  opacity: 1;
}
.sqrl-article__content {
  /* Embedded video / iframes */
}
.sqrl-article__content iframe,
.sqrl-article__content .wp-block-embed__wrapper {
  max-width: 100%;
}
.sqrl-article__tags a {
  color: #737373;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.sqrl-article__tags a:hover {
  color: #000408;
  text-decoration: underline;
}
.sqrl-article__tags a + a::before {
  content: " · ";
  color: #d8d8d8;
}

/* Single post: gerelateerde artikelen */
.sqrl-related {
  background: #ffffff;
}
.sqrl-related__thumb {
  border-radius: 14px;
  overflow: hidden;
  background: #f6f2ee;
}
.sqrl-related__thumb-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #d8d8d8 0%, #eddfd1 100%);
}
.sqrl-related__label {
  color: #737373;
  letter-spacing: 0.06em;
}
.sqrl-related__title {
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.2;
  color: #000408;
}
.sqrl-related__link:hover .sqrl-related__title {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Blogoverzicht (index/archive/search) */
.sqrl-post-list__header {
  border-color: rgba(0, 4, 8, 0.12) !important;
}
.sqrl-post-list__kicker {
  letter-spacing: 0.08em;
}
.sqrl-post-list__title {
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: #000408;
  letter-spacing: -0.005em;
}
.sqrl-post-list__intro {
  color: #4d4d4d;
  max-width: 60ch;
}
.sqrl-post-list__query {
  font-style: italic;
  font-weight: 500;
  color: #000408;
}

/* Postkaart in overzichten (zelfde stijl als latest-news cards) */
.sqrl-post-card {
  background: transparent;
  transition: transform 0.2s ease;
}
.sqrl-post-card__link {
  color: inherit;
}
.sqrl-post-card__thumb {
  border-radius: 14px;
  overflow: hidden;
  background: #f6f2ee;
}
.sqrl-post-card__label {
  color: #737373;
  letter-spacing: 0.06em;
}
.sqrl-post-card__sticky {
  letter-spacing: 0.04em;
}
.sqrl-post-card__title {
  font-family: Newsreader, Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.18;
  color: #000408;
  margin: 0 0 0.5rem;
  transition: color 0.2s ease;
}
.sqrl-post-card__excerpt {
  color: #4d4d4d;
  font-size: var(--sqrl-size-m);
  line-height: 1.55;
}
.sqrl-post-card__excerpt p {
  margin-bottom: 0;
}
.sqrl-post-card__meta {
  color: #737373;
}
.sqrl-post-card:hover .sqrl-post-card__title {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.sqrl-post-card:hover .sqrl-post-card__thumb img {
  transform: scale(1.025);
}
.sqrl-post-card__thumb img {
  transition: transform 0.45s ease;
}

.marquee6k {
  overflow: hidden;
  width: 100%;
}

.marquee6k__wrapper {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  min-width: min-content;
}

.marquee6k__copy {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
  vertical-align: top;
}

.footer-bottom {
  background-image: linear-gradient(180deg, #FFFFFF 0%, #F6F2EE 100%);
  padding: 3rem 0 1.5rem 0;
}
.footer-bottom p, .footer-bottom a {
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}
.footer-bottom .d-flex p {
  display: inline-block;
}

.sqrl-welcome {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1750px;
}
@media (min-width: 992px) {
  .sqrl-welcome {
    padding: 0 50px 50px 50px;
  }
}
.sqrl-welcome .welcome-content {
  max-width: clamp(820px, 45vw, 825px);
  margin: 2rem auto;
}
.sqrl-welcome .welcome-container {
  background-color: #f6f2ee;
  border-radius: 27px;
  min-height: calc(100svh - 80px);
  background-image: url("../img/bergtopbreed-clean.png");
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

/* /welcome — onboarding als prentenboek.
   Eric Carle-vibe: warme off-white, papieren textuur, eikels als bladwijzers.
   Veel ademruimte, smal kolom, serif headings die het verhaal vertellen. */
.sqrl-story {
  --story-bg: #f6f2ee;
  --story-paper: #fbf7f1;
  --story-ink: #000408;
  --story-mute: #6b6b6b;
  --story-line: #e5dfd4;
  --story-warm: #eddfd1;
  min-height: calc(100svh - 80px);
  background: var(--story-bg);
  color: var(--story-ink);
  position: relative;
  /* Heel subtiele paper-texture via gradient noise. */
}
.sqrl-story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(1200px 600px at 10% 0%, rgba(237, 223, 209, 0.55), transparent 60%), radial-gradient(900px 500px at 95% 100%, rgba(237, 223, 209, 0.4), transparent 65%);
  opacity: 0.7;
  z-index: 0;
}
.sqrl-story__container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.sqrl-story__container:has(.sqrl-story__page--wide.is-active) {
  max-width: 960px;
}
.sqrl-story {
  /* Top: terug-link + chapter-counter */
}
.sqrl-story__topbar {
  color: var(--story-mute);
  font-family: var(--bs-font-sans-serif);
}
.sqrl-story__back {
  color: var(--story-mute);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.sqrl-story__back:hover {
  color: var(--story-ink);
}
.sqrl-story {
  /* Pagina's */
}
.sqrl-story__page {
  display: none;
  text-align: left;
}
.sqrl-story__page.is-active {
  display: block;
}
.sqrl-story__page--wide {
  max-width: none;
}
.sqrl-story__page--final {
  text-align: center;
}
.sqrl-story__chapter {
  font-style: italic;
  font-weight: 400;
  color: var(--story-mute);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}
.sqrl-story__heading {
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: var(--sqrl-size-7xl);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
}
.sqrl-story__name {
  font-style: italic;
}
.sqrl-story__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--story-mute);
  line-height: 1.55;
  margin: 0 0 2rem;
  max-width: 56ch;
}
.sqrl-story {
  /* Inputs in story-stijl: minimaal, geen borders, brede onderlijn. */
}
.sqrl-story__field {
  margin-bottom: 1.25rem;
}
.sqrl-story__input {
  border: 0;
  background: transparent;
  padding: 1.75rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-family: "Newsreader", serif;
  color: var(--story-ink);
  box-shadow: none;
  transition: border-color 0.2s ease;
  width: 100%;
  background: #fff;
  border-radius: 8px;
}
.sqrl-story__input::placeholder {
  color: rgba(0, 0, 0, 0.32);
  font-style: italic;
}
.sqrl-story__input:focus {
  outline: 5px solid #ddd8d4;
  box-shadow: none;
}
.sqrl-story {
  /* Foundation (stap 3) */
}
.sqrl-story__foundation {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  display: grid;
  gap: 1.5rem;
  font-size: var(--sqrl-size-s);
}
@media (min-width: 768px) {
  .sqrl-story__foundation {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: center;
    padding: 2rem 2.25rem;
  }
}
.sqrl-story__foundation-illu {
  border-radius: 18px;
  background: #eddfd1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 30px;
}
.sqrl-story__foundation-illu img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sqrl-story__subheading {
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: 2rem;
  margin: 0 0 0.25rem;
}
.sqrl-story__list li {
  position: relative;
  color: var(--story-mute);
}
.sqrl-story {
  /* Sprints (stap 4) */
}
.sqrl-story__sprints {
  margin-top: 0.5rem;
}
.sqrl-story__sprint-card {
  display: block;
  cursor: pointer;
  margin: 0;
}
.sqrl-story__sprint-inner {
  background: var(--story-paper);
  border: 1.5px solid transparent;
  border-radius: 22px;
  padding: 1.5rem 1.5rem 1.25rem;
  gap: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
  background: #fff;
}
.sqrl-story__sprint-card:hover .sqrl-story__sprint-inner {
  border-color: var(--story-ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -20px rgba(0, 0, 0, 0.25);
}
.sqrl-story__sprint-card input:focus-visible + .sqrl-story__sprint-inner {
  outline: 2px solid var(--story-ink);
  outline-offset: 3px;
}
.sqrl-story__sprint-card.is-selected .sqrl-story__sprint-inner {
  background: #eddfd1;
  border-color: var(--story-ink);
  box-shadow: inset 0 0 0 1px var(--story-ink);
}
.sqrl-story__sprint-acorn {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: transform 0.3s ease;
}
.sqrl-story__sprint-card.is-selected .sqrl-story__sprint-acorn {
  transform: rotate(-12deg) scale(1.08);
}
.sqrl-story__sprint-name {
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}
.sqrl-story__sprint-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}
.sqrl-story {
  /* Kick-off date (stap 5) */
}
.sqrl-story__input--date {
  text-align: center;
  font-family: "Newsreader", serif;
  font-style: italic;
  letter-spacing: 0.01em;
  margin: 0 auto;
  cursor: pointer;
}
.sqrl-story__input--date::-webkit-calendar-picker-indicator {
  opacity: 0.55;
  cursor: pointer;
  filter: sepia(0.4) saturate(0.6);
  margin-left: 0.35rem;
}
.sqrl-story {
  /* Empty-state */
}
.sqrl-story__empty {
  border-radius: 18px;
  background: var(--story-paper) !important;
}
.sqrl-story {
  /* Final (stap 6) — epiloog */
}
.sqrl-story__page--final {
  padding-top: 1.5rem;
}
.sqrl-story__page--final .sqrl-story__lede {
  margin: 0 auto;
}
.sqrl-story__page--final .sqrl-story__epilogue {
  background: #fff;
}
.sqrl-story__final-acorns {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.sqrl-story__final-acorns img {
  object-fit: contain;
  animation: sqrl-story-bob 4s ease-in-out infinite;
}
.sqrl-story__final-acorns img:nth-child(1) {
  animation-delay: 0s;
}
.sqrl-story__final-acorns img:nth-child(2) {
  animation-delay: 0.2s;
}
.sqrl-story__final-acorns img:nth-child(3) {
  animation-delay: 0.4s;
}
.sqrl-story__final-acorns img:nth-child(4) {
  animation-delay: 0.6s;
}
.sqrl-story__final-acorns img:nth-child(5) {
  animation-delay: 0.8s;
}
.sqrl-story__epilogue {
  background: var(--story-paper);
  border-radius: 24px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 600px;
  text-align: left;
  font-family: "Newsreader", serif;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--story-ink);
}
.sqrl-story__epilogue p {
  margin-bottom: 1rem;
}
.sqrl-story__epilogue em {
  font-style: italic;
}
.sqrl-story__epilogue-totals {
  display: flex;
  justify-content: space-between;
  font-family: var(--bs-font-sans-serif);
  font-size: 0.95rem;
  color: var(--story-mute);
  border-top: 1px dashed var(--story-line);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}
.sqrl-story__epilogue-totals:first-of-type {
  margin-top: 1.25rem;
}
.sqrl-story__epilogue-totals--total {
  color: var(--story-ink);
  font-weight: 600;
  font-size: 1.05rem;
  border-top: 2px solid var(--story-ink);
}
.sqrl-story__epilogue-end {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--story-mute);
}
.sqrl-story__cta-row {
  margin-top: 2rem;
}
.sqrl-story {
  /* Onderaan: prev/next */
}
.sqrl-story__nav {
  border-top: 1px solid var(--story-line);
  padding-top: 1.5rem;
  margin-top: 3rem !important;
}
.sqrl-story__back-btn {
  color: var(--story-mute);
  text-decoration: none;
  font-weight: 400;
}
.sqrl-story__back-btn:hover:not(:disabled) {
  color: var(--story-ink);
}
.sqrl-story__back-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

@keyframes sqrl-story-bob {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sqrl-story__acorn,
  .sqrl-story__final-acorns img {
    animation: none;
  }
}
.viernulvier-container {
  background-color: #f6f2ee;
  border-radius: 27px;
  min-height: calc(100svh - 80px);
  background-image: url(../img/bergtopbreed-clean.png);
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}
.viernulvier-container h1 {
  font-size: var(--sqrl-size-8xl);
  font-weight: 500;
}
.viernulvier-container .viernulvier-content {
  padding-top: 10rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.viernulvier-container .viernulvier-content span {
  font-size: var(--sqrl-size-l);
  font-weight: 500;
  color: var(--story-mute);
  display: block;
  margin-bottom: 1rem;
}
.viernulvier-container .viernulvier-content p {
  font-size: var(--sqrl-size-xl);
  font-weight: 500;
}

span.greennut {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.12em;
  background-image: url("../img/eikel_green_big.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: -8px;
  transition: transform 0.5s cubic-bezier(0.52, 1.42, 0.41, 0.91);
}
span.greennut:hover, span.greennut:focus {
  animation: greennut-wiggle 1s cubic-bezier(0.7, 0.05, 0.34, 1.56) infinite;
}

@keyframes greennut-wiggle {
  0% {
    transform: rotate(-7deg) translateX(0) scale(1);
  }
  15% {
    transform: rotate(9deg) translateX(3%) scale(1.08);
  }
  30% {
    transform: rotate(-11deg) translateX(-4%) scale(1.04);
  }
  45% {
    transform: rotate(10deg) translateX(2%) scale(1.1);
  }
  65% {
    transform: rotate(-7deg) translateX(-2%) scale(0.97);
  }
  78% {
    transform: rotate(6deg) translateX(2%) scale(1.05);
  }
  100% {
    transform: rotate(-7deg) translateX(0) scale(1);
  }
}
