/* Sophie product page — clear, calm and product-led */
.page--sophie-xai,
.page--maatwerk-xai,
.page--about-xai {
  --sophie-banner-block-size: 0px;
}

.page--sophie-xai {
  --sophie-ink: #0d0d0e;
  --sophie-muted: #646468;
  --sophie-line: #e7e7e5;
  --sophie-surface: #f7f7f5;
  --sophie-accent: #e85d2a;
  --sophie-accent-soft: #fff1eb;
  --sophie-page: min(1180px, calc(100% - 48px));
  overflow: clip;
  background: #fff;
  color: var(--sophie-ink);
}

.page--sophie-xai .sophie-xai-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: var(--xai-hero-min-height);
  padding: clamp(112px, 16vh, 168px) 20px var(--xai-hero-pad-bottom);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfbfa 0%, #fff 100%);
  border-bottom: 1px solid var(--sophie-line);
}

.page--sophie-xai .sophie-xai-hero::after {
  content: none;
}

.page--sophie-xai .sophie-xai-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 13, 14, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 13, 14, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.page--sophie-xai .sophie-xai-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.page--sophie-xai .sophie-xai-hero__title {
  margin: 0 auto 18px;
  max-width: 900px;
  color: #050506;
  font-size: var(--xai-hero-title-size);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.page--sophie-xai .sophie-xai-hero__title-line {
  display: block;
}

.page--sophie-xai .sophie-xai-hero__lead {
  margin: 0 auto 34px;
  max-width: 740px;
  color: #8a8a91;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.page--sophie-xai .sophie-xai-hero__actions {
  justify-content: center;
  gap: 12px;
}

.page--sophie-xai .sophie-xai-hero__actions .btn {
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.page--sophie-xai .sophie-xai-hero__actions .btn:hover,
.page--sophie-xai .sophie-xai-hero__actions .btn:focus-visible {
  transform: translateY(-3px);
}

/* Floating section nav — desktop only, rechts als verticale rail */
.sophie-xai-float-nav {
  display: none;
}

@media (min-width: 768px) {
  .sophie-xai-float-nav {
    display: block;
    position: fixed;
    top: 50%;
    right: max(18px, env(safe-area-inset-right, 0px));
    left: auto;
    z-index: 95;
    width: max-content;
    max-width: min(220px, calc(100vw - 32px));
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    pointer-events: none;
    opacity: 1;
    transform: translate3d(calc(100% + 36px), -50%, 0);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  .sophie-xai-float-nav.is-instant,
  .sophie-xai-float-nav.is-instant .btn {
    transition: none !important;
  }

  .sophie-xai-float-nav.is-visible {
    pointer-events: auto;
    transform: translate3d(0, -50%, 0);
  }

  .sophie-xai-float-nav__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1px;
    padding: 7px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #ededed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }

  /* Meeschuivende grijze pill achter het actieve item */
  .sophie-xai-float-nav__pill {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-radius: 16px;
    background: #f4f4f4;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition:
      left 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      top 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.2s ease;
  }

  .sophie-xai-float-nav__pill--no-motion {
    transition: none;
  }

  .sophie-xai-float-nav .btn {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    width: 100%;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.01em;
    border: 0;
    background: transparent;
    color: #0d0d0d;
    box-shadow: none;
    text-decoration: none;
    white-space: nowrap;
    opacity: 1;
    transform: none;
    transition: color 0.18s ease;
  }

  .sophie-xai-float-nav .btn:hover,
  .sophie-xai-float-nav .btn:focus-visible {
    transform: none;
    background: transparent;
    color: #0d0d0d;
    box-shadow: none;
  }

  .sophie-xai-float-nav__icon {
    flex: 0 0 auto;
    display: block;
    color: #0d0d0d;
    transform-origin: 50% 60%;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .sophie-xai-float-nav .btn.is-indicated .sophie-xai-float-nav__icon {
    animation: sophie-float-icon-tilt 1.1s cubic-bezier(0.34, 1.4, 0.64, 1) both;
  }

  .sophie-xai-float-nav .btn:nth-child(odd).is-indicated .sophie-xai-float-nav__icon {
    animation-name: sophie-float-icon-tilt-alt;
  }

  .sophie-xai-float-nav .btn:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.25);
    outline-offset: 2px;
  }
}

@keyframes sophie-float-icon-tilt {
  0% {
    transform: rotate(0deg) scale(1);
  }
  35% {
    transform: rotate(-14deg) scale(1.08);
  }
  65% {
    transform: rotate(8deg) scale(1.04);
  }
  100% {
    transform: rotate(-6deg) scale(1.06);
  }
}

@keyframes sophie-float-icon-tilt-alt {
  0% {
    transform: rotate(0deg) scale(1);
  }
  35% {
    transform: rotate(14deg) scale(1.08);
  }
  65% {
    transform: rotate(-8deg) scale(1.04);
  }
  100% {
    transform: rotate(6deg) scale(1.06);
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .sophie-xai-float-nav {
    display: none !important;
  }
}

.page--sophie-xai #sophie-routing-heading,
.page--sophie-xai #sophie-modules-heading,
.page--sophie-xai #sophie-architecture-heading,
.page--sophie-xai #sophie-orchestration-heading,
.page--sophie-xai #sophie-tech-heading,
.page--sophie-xai #sophie-kanalen-heading,
.page--sophie-xai #sophie-gdpr-heading,
.page--sophie-xai #sophie-models-heading,
.page--sophie-xai #sophie-design-heading,
.page--sophie-xai #sophie-faq-heading {
  scroll-margin-top: calc(72px + env(safe-area-inset-top, 0px));
}

.page--sophie-xai .btn {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.page--sophie-xai .btn--primary {
  gap: 8px;
  background: #050506;
  color: #fff;
}

.page--sophie-xai .btn--primary:hover {
  background: #242428;
  opacity: 1;
}

.page--sophie-xai .btn--ghost {
  border: 0;
  background: #fff;
  color: #111;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.sophie-pro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  padding: 7px 11px;
  border: 1px solid rgba(13, 13, 14, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #3e3e41;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  backdrop-filter: blur(12px);
}

.sophie-pro-eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sophie-accent);
  box-shadow: 0 0 0 4px rgba(232, 93, 42, 0.12);
}

.sophie-pro-hero__product {
  position: relative;
  padding: 20px 0 30px 20px;
}

.sophie-pro-window {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(13, 13, 14, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 38px 90px rgba(21, 18, 16, 0.12),
    0 4px 16px rgba(21, 18, 16, 0.05);
}

.sophie-pro-window__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 22px;
  border-bottom: 1px solid var(--sophie-line);
}

.sophie-pro-window__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sophie-pro-mark,
.sophie-pro-avatar {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sophie-ink);
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
}

.sophie-pro-window__brand div {
  display: grid;
  gap: 2px;
}

.sophie-pro-window__brand strong {
  font-size: 14px;
  font-weight: 600;
}

.sophie-pro-window__brand span {
  color: #77777b;
  font-size: 11px;
}

.sophie-pro-window__brand i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: #3ca56a;
}

.sophie-pro-window__context {
  padding: 6px 9px;
  border-radius: 7px;
  background: var(--sophie-surface);
  color: #69696d;
  font-size: 11px;
  font-weight: 500;
}

.sophie-pro-window__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 22px 24px 94px;
}

.sophie-pro-date {
  margin: 0;
  color: #a0a0a3;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sophie-pro-message {
  font-size: 14px;
  line-height: 1.5;
}

.sophie-pro-message--citizen {
  align-self: flex-end;
  max-width: 72%;
  padding: 12px 15px;
  border-radius: 13px 13px 3px 13px;
  background: #f0f0ee;
  color: #252527;
}

.sophie-pro-message--sophie {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 88%;
}

.sophie-pro-avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 11px;
}

.sophie-pro-message--sophie p {
  margin: 0;
  color: #343437;
}

.sophie-pro-source {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--sophie-accent-soft);
  color: #a43c18;
  font-size: 10px;
  font-weight: 500;
}

.sophie-pro-message--sophie a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 11px 12px;
  border: 1px solid #dededb;
  border-radius: 9px;
  color: #242426;
  font-size: 12px;
  font-weight: 600;
}

.sophie-pro-window__composer {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 10px 0 16px;
  border: 1px solid #d9d9d6;
  border-radius: 12px;
  background: #fff;
  color: #9a9a9d;
  font-size: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.sophie-pro-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--sophie-ink);
  color: #fff;
  font-size: 16px;
}

.sophie-pro-route-card {
  position: absolute;
  right: -24px;
  bottom: 0;
  display: grid;
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(13, 13, 14, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 44px rgba(21, 18, 16, 0.13);
  backdrop-filter: blur(18px);
}

.sophie-pro-route-card span {
  margin-bottom: 9px;
  color: var(--sophie-accent);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sophie-pro-route-card strong {
  font-size: 13px;
  font-weight: 600;
}

.sophie-pro-route-card em {
  margin-top: 3px;
  color: #77777b;
  font-size: 10px;
  font-style: normal;
}

.sophie-pro-trust {
  padding: 0 24px;
  border-bottom: 1px solid var(--sophie-line);
}

.sophie-pro-trust > div {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(520px, 1.4fr);
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: var(--sophie-page);
  min-height: 138px;
  margin: 0 auto;
}

.sophie-pro-trust p {
  margin: 0;
  max-width: 330px;
  color: #6d6d71;
  font-size: 15px;
  line-height: 1.45;
}

.sophie-pro-trust p strong {
  color: var(--sophie-ink);
  font-weight: 600;
}

.sophie-pro-trust dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.sophie-pro-trust dl > div {
  padding-left: 22px;
  border-left: 1px solid var(--sophie-line);
}

.sophie-pro-trust dt {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.sophie-pro-trust dd {
  margin: 3px 0 0;
  color: #858589;
  font-size: 11px;
}

.page--sophie-xai .sophie-xai-api {
  display: block;
  max-width: none;
  margin: 0;
  padding: clamp(100px, 12vw, 160px) max(24px, calc((100% - var(--sophie-page)) / 2));
}

.page--sophie-xai .sophie-xai-api__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  width: 100%;
}

.page--sophie-xai .sophie-xai-api__copy {
  min-width: 0;
  max-width: none;
}

.page--sophie-xai .sophie-xai-api__visual {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: none;
  overflow: visible;
}

.page--sophie-xai .sophie-xai-api__frame {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.page--sophie-xai .sophie-xai-api__frame img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.page--sophie-xai .sophie-xai-api__frame::after {
  content: none;
}

.page--sophie-xai .sophie-xai-kicker {
  margin-bottom: 17px;
  color: var(--sophie-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page--sophie-xai .sophie-xai-api h2,
.page--sophie-xai .sophie-xai-info__copy h2,
.page--sophie-xai .sophie-xai-section-head h2,
.page--sophie-xai .sophie-xai-architecture__copy h2,
.page--sophie-xai .sophie-xai-orchestration__head h2,
.page--sophie-xai .sophie-xai-gdpr h2,
.page--sophie-xai .sophie-xai-models h2,
.page--sophie-xai .sophie-xai-design h2,
.page--sophie-xai .sophie-xai-start h2 {
  color: #050506;
  font-size: var(--xai-hero-title-size);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.page--sophie-xai .sophie-xai-api h2 {
  max-width: 780px;
  margin: 0 0 24px;
}

.page--sophie-xai .sophie-xai-api h2.sophie-xai-heading-shimmer {
  background: linear-gradient(
    90deg,
    var(--sophie-ink) 0%,
    var(--sophie-ink) 36%,
    #525257 50%,
    var(--sophie-ink) 64%,
    var(--sophie-ink) 100%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: sophie-xai-heading-shimmer 7s ease-in-out infinite;
}

@keyframes sophie-xai-heading-shimmer {
  0%,
  100% {
    background-position: 130% 0;
  }

  50% {
    background-position: -130% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page--sophie-xai .sophie-xai-api h2.sophie-xai-heading-shimmer {
    animation: none;
    background: none;
    -webkit-text-fill-color: inherit;
    color: var(--sophie-ink);
  }
}

.page--sophie-xai .sophie-xai-api p,
.page--sophie-xai .sophie-xai-info__copy p,
.page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy p {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--sophie-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
}

.page--sophie-xai .sophie-xai-api p:last-of-type {
  margin-bottom: 28px;
}

.page--sophie-xai .sophie-xai-info--routing {
  display: block;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(100px, 12vw, 160px) max(24px, calc((100% - var(--sophie-page)) / 2));
  gap: 0;
  grid-template-columns: none;
  background: #fff;
  background-image: none;
  box-shadow: none;
  filter: none;
  color: var(--sophie-ink);
  border: 0;
  border-bottom: 1px solid var(--sophie-line);
  border-radius: 0;
}

.page--sophie-xai .sophie-xai-info--routing::before,
.page--sophie-xai .sophie-xai-info--routing::after {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
}

.page--sophie-xai .sophie-xai-info--routing__inner {
  display: block;
  width: 100%;
  max-width: var(--sophie-page);
  margin: 0 auto;
  text-align: center;
}

.page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}

/* Apple-style entrance: soft blur + rise, staggered children */
.page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal {
  transition:
    opacity calc(1.35s * var(--sophie-anim, 1)) cubic-bezier(0.22, 1, 0.36, 1),
    transform calc(1.35s * var(--sophie-anim, 1)) cubic-bezier(0.22, 1, 0.36, 1),
    filter calc(1.2s * var(--sophie-anim, 1)) cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal:not(.reveal--visible) {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.985);
  filter: blur(10px);
  pointer-events: none;
}

html.js .page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal.reveal--visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal > * {
  transition:
    opacity calc(1.1s * var(--sophie-anim, 1)) cubic-bezier(0.22, 1, 0.36, 1),
    transform calc(1.1s * var(--sophie-anim, 1)) cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal:not(.reveal--visible) > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

html.js .page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal.reveal--visible > * {
  opacity: 1;
  transform: none;
}

html.js .page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal.reveal--visible > *:nth-child(1) {
  transition-delay: 0.05s;
}

html.js .page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal.reveal--visible > *:nth-child(2) {
  transition-delay: 0.14s;
}

html.js .page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal.reveal--visible > *:nth-child(3) {
  transition-delay: 0.24s;
}

.page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal.reveal--instant,
.page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal.reveal--instant > *,
.page--sophie-xai .sophie-xai-info--routing__visual.reveal.reveal--instant {
  transition: none !important;
  transition-delay: 0s !important;
}

.page--sophie-xai .sophie-xai-info--routing__visual.reveal {
  transition:
    opacity calc(1.25s * var(--sophie-anim, 1)) cubic-bezier(0.22, 1, 0.36, 1),
    transform calc(1.25s * var(--sophie-anim, 1)) cubic-bezier(0.22, 1, 0.36, 1),
    filter calc(1.1s * var(--sophie-anim, 1)) cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .page--sophie-xai .sophie-xai-info--routing__visual.reveal:not(.reveal--visible) {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(6px);
  pointer-events: none;
}

html.js .page--sophie-xai .sophie-xai-info--routing__visual.reveal.reveal--visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.page--sophie-xai .sophie-xai-info--routing .sophie-xai-kicker {
  color: var(--sophie-accent);
}

.page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy h2 {
  max-width: 880px;
  margin: 0 auto 28px;
  color: #050506;
  font-size: var(--xai-hero-title-size);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.page--sophie-xai .sophie-xai-info__accent {
  color: var(--sophie-accent);
}

.page--sophie-xai .sophie-xai-info__emoji {
  display: inline-block;
  transform-origin: 50% 85%;
  will-change: transform;
}

html.js .page--sophie-xai .sophie-xai-info__copy.reveal.reveal--visible .sophie-xai-info__emoji {
  animation: sophie-xai-emoji-bounce calc(0.85s * var(--sophie-anim, 1)) cubic-bezier(0.34, 1.45, 0.64, 1) 0.35s both;
}

@keyframes sophie-xai-emoji-bounce {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.55);
  }
  55% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) scale(1.18);
  }
  75% {
    transform: translate3d(0, 2px, 0) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy p {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  text-wrap: pretty;
}

.page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy p strong {
  color: var(--sophie-ink);
  font-weight: 600;
}

/* De koepel is breedbeeld (1600x760) en tekent tot tegen de randen; de pill
   mag buiten het canvas uitsteken, daarom staat de stage niet op overflow. */
.page--sophie-xai .sophie-xai-info--routing__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  margin: 40px 0 0;
}

.page--sophie-xai .sophie-xai-info--routing__stage {
  position: relative;
  display: block;
  width: 100%;
  max-width: min(100%, 1040px);
  aspect-ratio: 1600 / 760;
  color: var(--sophie-ink);
}

.page--sophie-xai .sophie-xai-routing-dome {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  touch-action: pan-y;
  user-select: none;
}

/* Vraag als platte tekst aan de punt van de opgelichte straal — geen kader,
   geen kaartje. De positie komt uit JS (left/top in %), de kant via .is-left. */
.page--sophie-xai .sophie-routing-dome__label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: max-content;
  max-width: min(240px, 34%);
  text-align: left;
  opacity: 0;
  transform: translate(12px, -50%);
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.page--sophie-xai .sophie-routing-dome__label.is-visible {
  opacity: 1;
}

.page--sophie-xai .sophie-routing-dome__label.is-left {
  transform: translate(calc(-100% - 12px), -50%);
  text-align: right;
}

.page--sophie-xai .sophie-routing-dome__q {
  color: var(--sophie-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.page--sophie-xai .sophie-routing-dome__dest {
  color: var(--sophie-accent);
  font-size: 12px;
  line-height: 1.3;
}

.page--sophie-xai .sophie-routing-dome__dest::before {
  content: "\2192\00a0";
}

@media (max-width: 767px) {
  .page--sophie-xai .sophie-routing-dome__label {
    max-width: min(190px, 44%);
  }

  .page--sophie-xai .sophie-routing-dome__q {
    font-size: 12.5px;
  }

  .page--sophie-xai .sophie-routing-dome__dest {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page--sophie-xai .sophie-routing-dome__label {
    transition: none;
  }
}

/* Modules — Linear-style dark feature grid */
.page--sophie-xai .sophie-xai-modules {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(100px, 12vw, 160px) max(24px, calc((100% - var(--sophie-page)) / 2));
  background: #fff;
  color: var(--sophie-ink);
  border-bottom: 1px solid var(--sophie-line);
}

.page--sophie-xai .sophie-xai-section-head {
  display: block;
  max-width: 880px;
  margin: 0 auto 24px;
  text-align: center;
}

.page--sophie-xai .sophie-xai-section-head.reveal {
  transition:
    opacity calc(1.35s * var(--sophie-anim, 1)) cubic-bezier(0.22, 1, 0.36, 1),
    transform calc(1.35s * var(--sophie-anim, 1)) cubic-bezier(0.22, 1, 0.36, 1),
    filter calc(1.2s * var(--sophie-anim, 1)) cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .page--sophie-xai .sophie-xai-section-head.reveal:not(.reveal--visible) {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  filter: blur(8px);
  pointer-events: none;
}

html.js .page--sophie-xai .sophie-xai-section-head.reveal.reveal--visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.page--sophie-xai .sophie-xai-section-head h2 {
  max-width: 880px;
  margin: 0 auto;
}

.page--sophie-xai .sophie-xai-modules .sophie-xai-kicker {
  color: var(--sophie-accent);
}

.page--sophie-xai .sophie-xai-modules__lead {
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 76px);
  color: var(--sophie-muted);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  text-align: center;
  text-wrap: pretty;
}

.page--sophie-xai .sophie-xai-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: none;
}

.page--sophie-xai .sophie-xai-module {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
  padding: clamp(34px, 4vw, 52px);
  overflow: hidden;
  border: 0;
  border-radius: clamp(20px, 2vw, 28px);
  background: var(--sophie-surface);
  box-shadow: none;
  transition:
    background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.page--sophie-xai .sophie-xai-module:hover {
  background: #f0f0ee;
  transform: none;
  box-shadow: none;
}

.page--sophie-xai .sophie-xai-module__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(22px, 2.6vw, 32px);
  color: var(--sophie-accent);
}

.page--sophie-xai .sophie-xai-module__icon svg {
  display: block;
  width: clamp(24px, 2.4vw, 28px);
  height: auto;
}

html.js .page--sophie-xai .sophie-xai-module.reveal:not(.reveal--visible) {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

html.js .page--sophie-xai .sophie-xai-module.reveal.reveal--visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .page--sophie-xai .sophie-xai-module.reveal.reveal--visible:hover {
  transform: none;
}

.page--sophie-xai .sophie-xai-module h3 {
  margin: 0 0 12px;
  color: var(--sophie-ink);
  font-size: clamp(23px, 2.4vw, 29px);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1.15;
  text-wrap: balance;
}

.page--sophie-xai .sophie-xai-module > p {
  max-width: 44ch;
  margin: 0;
  color: var(--sophie-muted);
  font-size: clamp(15px, 1.3vw, 16px);
  line-height: 1.6;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.page--sophie-xai .sophie-xai-module time {
  display: none;
}

.page--sophie-xai .sophie-xai-modules__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 28px);
  width: 100%;
  margin: clamp(48px, 6vw, 76px) 0 0;
  padding: clamp(30px, 3.5vw, 42px) 0 0;
  border: 0;
  border-top: 1px solid var(--sophie-line);
  border-radius: 0;
  background: none;
  text-align: center;
}

.page--sophie-xai .sophie-xai-modules__banner:hover {
  transform: none;
  box-shadow: none;
  background: none;
}

.page--sophie-xai .sophie-xai-modules__banner-text {
  flex: 0 1 auto;
  max-width: 42ch;
  margin: 0;
  color: var(--sophie-muted);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.page--sophie-xai .sophie-xai-modules__banner-text a {
  color: var(--sophie-accent);
  font-weight: 400;
  text-decoration: none;
}

.page--sophie-xai .sophie-xai-modules__banner-text a:hover,
.page--sophie-xai .sophie-xai-modules__banner-text a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page--sophie-xai .sophie-xai-modules__banner-divider {
  flex-shrink: 0;
  color: #d5d5d2;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1;
}

.page--sophie-xai .sophie-xai-architecture {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(100px, 12vw, 160px) max(24px, calc((100% - var(--sophie-page)) / 2));
  background: #fff;
  color: var(--sophie-ink);
  border: 0;
  border-bottom: 1px solid var(--sophie-line);
}

.page--sophie-xai .sophie-xai-architecture__inner {
  max-width: var(--sophie-page);
  margin: 0 auto;
}

.page--sophie-xai .sophie-xai-orchestration {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 93, 42, 0.07), transparent 34%),
    linear-gradient(180deg, #f2f2ef 0%, #ececea 100%);
  border-top: 1px solid var(--sophie-line);
  border-bottom: 1px solid var(--sophie-line);
}

.page--sophie-xai .sophie-xai-orchestration__inner {
  max-width: var(--sophie-page);
  margin: 0 auto;
  padding: clamp(90px, 11vw, 140px) max(24px, calc((100% - var(--sophie-page)) / 2));
}

.page--sophie-xai .sophie-xai-orchestration__head {
  max-width: 920px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.page--sophie-xai .sophie-xai-orchestration__head h2 {
  margin: 0 0 24px;
}

.page--sophie-xai .sophie-xai-orchestration__lead {
  margin: 0;
  color: var(--sophie-muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.page--sophie-xai .sophie-xai-orchestration__lead strong {
  color: var(--sophie-ink);
  font-weight: 600;
}

.page--sophie-xai .sophie-xai-orchestration__pipeline {
  margin: 0 0 clamp(40px, 6vw, 64px);
  padding: 0;
}

.page--sophie-xai .sophie-xai-orchestration__pipeline svg {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
}

.page--sophie-xai .sophie-xai-orchestration__pipeline .th {
  font-size: 14px;
  font-weight: 600;
}

.page--sophie-xai .sophie-xai-orchestration__pipeline .ts {
  font-size: 11.5px;
  font-weight: 400;
}

.page--sophie-xai .sophie-xai-orchestration__pipeline .th-inv {
  font-size: 14px;
  font-weight: 600;
  fill: #ffffff;
}

.page--sophie-xai .sophie-xai-orchestration__pipeline .ts-inv {
  font-size: 11.5px;
  font-weight: 400;
  fill: rgba(255, 255, 255, 0.85);
}

.page--sophie-xai .sophie-xai-orchestration__pipeline .ln {
  stroke: #8b8a82;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vector-effect: non-scaling-stroke;
  marker-end: url(#arch-arrow);
}

.page--sophie-xai .sophie-xai-orchestration__pipeline .ln-dash {
  stroke: #ffd60a;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 5 4;
  vector-effect: non-scaling-stroke;
  marker-end: url(#arch-arrow-dash);
}

.page--sophie-xai .sophie-xai-orchestration__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.page--sophie-xai .sophie-xai-orchestration__col p {
  margin: 0 0 18px;
  color: var(--sophie-muted);
  font-size: 16px;
  line-height: 1.65;
}

.page--sophie-xai .sophie-xai-orchestration__col p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .page--sophie-xai .sophie-xai-orchestration__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 900px) {
  .page--sophie-xai .sophie-xai-orchestration__inner {
    padding:
      clamp(72px, 12vw, 96px)
      max(16px, calc((100% - var(--sophie-page)) / 2));
  }
}

.page--sophie-xai .sophie-xai-architecture__copy {
  max-width: 780px;
  margin-bottom: 52px;
}

.page--sophie-xai .sophie-xai-architecture__copy .sophie-xai-kicker {
  color: var(--sophie-accent);
}

.page--sophie-xai .sophie-xai-architecture__copy h2 {
  max-width: 780px;
  margin: 0 0 24px;
}

.page--sophie-xai .sophie-xai-architecture .sophie-text-shimmer {
  background: linear-gradient(
    90deg,
    var(--sophie-ink) 0%,
    var(--sophie-ink) 36%,
    #525257 50%,
    var(--sophie-ink) 64%,
    var(--sophie-ink) 100%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: sophie-xai-heading-shimmer 7s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .page--sophie-xai .sophie-xai-architecture .sophie-text-shimmer {
    animation: none;
    background: none;
    -webkit-text-fill-color: inherit;
    color: var(--sophie-ink);
  }
}

.page--sophie-xai .sophie-xai-architecture__lead {
  max-width: 650px;
  margin: 0;
  color: var(--sophie-muted);
  font-size: 17px;
  line-height: 1.55;
}

.page--sophie-xai .sophie-xai-architecture__card {
  border: 1px solid var(--sophie-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
  transition: background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.page--sophie-xai .sophie-xai-architecture__card:hover {
  background: var(--sophie-surface);
  transform: none;
  box-shadow: none;
}

.page--sophie-xai .sophie-xai-architecture__card span {
  color: var(--sophie-accent);
}

.page--sophie-xai .sophie-xai-architecture__card h3 {
  color: var(--sophie-ink);
}

.page--sophie-xai .sophie-xai-architecture__card p {
  color: var(--sophie-muted);
}

.page--sophie-xai .sophie-xai-architecture__connect {
  border: 1px solid var(--sophie-line);
  border-radius: 14px;
  background: var(--sophie-surface);
  box-shadow: none;
  transition: background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.page--sophie-xai .sophie-xai-architecture__connect:hover,
.page--sophie-xai .sophie-xai-architecture__connect:focus-visible {
  background: #f0f0ee;
  transform: none;
  box-shadow: none;
}

.page--sophie-xai .sophie-xai-architecture__connect h3 {
  color: var(--sophie-ink);
}

.page--sophie-xai .sophie-xai-architecture__connect p {
  color: var(--sophie-muted);
}

.page--sophie-xai .sophie-xai-architecture__connect-action {
  color: var(--sophie-accent);
}

.page--sophie-xai .sophie-xai-info--light {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  padding-top: clamp(90px, 11vw, 140px);
  padding-bottom: clamp(90px, 11vw, 140px);
  background: #ffffff;
}

.page--sophie-xai .sophie-xai-embed-card {
  border-radius: 14px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.15);
}

.page--sophie-xai .sophie-xai-info--light .sophie-xai-info__visual {
  width: 100%;
}

.page--sophie-xai .sophie-xai-info--light .sophie-xai-embed-card {
  width: 100%;
  max-width: min(620px, 100%);
  margin: 0;
}

.page--sophie-xai .sophie-xai-kanalen {
  padding: clamp(90px, 10vw, 128px) max(24px, calc((100% - var(--sophie-page)) / 2));
  border-top: 0;
  border-bottom: 1px solid var(--sophie-line);
  background: var(--sophie-surface);
}

.page--sophie-xai .sophie-xai-kanalen__inner {
  max-width: var(--sophie-page);
  margin: 0 auto;
}

.page--sophie-xai .sophie-xai-gdpr {
  padding: clamp(90px, 10vw, 128px) max(24px, calc((100% - var(--sophie-page)) / 2));
  border-bottom: 1px solid var(--sophie-line);
  background: #fff;
}

.page--sophie-xai .sophie-xai-gdpr__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 320px);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  max-width: var(--sophie-page);
  margin: 0 auto;
}

.page--sophie-xai .sophie-xai-gdpr h2 {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgb(21, 41, 137);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1;
}

.page--sophie-xai .sophie-xai-gdpr p {
  max-width: 720px;
  margin: 0;
  color: var(--sophie-muted);
  font-size: 17px;
  line-height: 1.6;
}

.page--sophie-xai .sophie-xai-gdpr__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  justify-self: end;
  overflow: visible;
}

.page--sophie-xai .sophie-xai-gdpr__visual img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: none;
}

.page--sophie-xai .sophie-xai-models {
  padding: clamp(90px, 10vw, 128px) max(24px, calc((100% - var(--sophie-page)) / 2));
  border-bottom: 1px solid var(--sophie-line);
  background: var(--sophie-surface);
}

.page--sophie-xai .sophie-xai-models__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  max-width: var(--sophie-page);
  margin: 0 auto;
}

.page--sophie-xai .sophie-xai-models__copy {
  min-width: 0;
}

.page--sophie-xai .sophie-xai-models h2 {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--sophie-ink);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.page--sophie-xai .sophie-xai-models__intro {
  max-width: 640px;
  margin: 0;
  color: var(--sophie-muted);
  font-size: 17px;
  line-height: 1.6;
}

.page--sophie-xai .sophie-xai-models__intro strong {
  color: var(--sophie-ink);
  font-weight: 600;
}

.page--sophie-xai .sophie-xai-models__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 168px));
  gap: clamp(16px, 2.5vw, 24px);
  align-items: start;
  justify-self: end;
}

.page--sophie-xai .sophie-xai-models__logo {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page--sophie-xai .sophie-xai-models__logo-visual {
  margin: 0;
  overflow: visible;
  transition: transform 0.25s ease;
  transform-origin: center center;
}

.page--sophie-xai .sophie-xai-models__logo-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 12px;
}

.page--sophie-xai .sophie-xai-models__logo-link:focus-visible {
  outline: 2px solid rgba(232, 93, 42, 0.45);
  outline-offset: 3px;
}

.page--sophie-xai .sophie-xai-models__logo:hover .sophie-xai-models__logo-visual {
  transform: scale(1.1);
}

.page--sophie-xai .sophie-xai-models__logo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
}

.page--sophie-xai .sophie-xai-models__logo figcaption {
  margin: 0;
  color: var(--sophie-ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.page--sophie-xai .sophie-xai-models__logo figcaption span {
  display: block;
  margin-top: 2px;
  color: var(--sophie-muted);
  font-size: 13px;
  font-weight: 500;
}

.page--sophie-xai .sophie-xai-design {
  scroll-margin-top: min(18vh, 120px);
  padding: clamp(90px, 10vw, 128px) max(24px, calc((100% - var(--sophie-page)) / 2));
  border-bottom: 1px solid var(--sophie-line);
  background: #f8f9fb;
}

.page--sophie-xai .sophie-xai-design__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  max-width: var(--sophie-page);
  margin: 0 auto;
}

.page--sophie-xai .sophie-xai-design__copy {
  min-width: 0;
}

.page--sophie-xai .sophie-xai-design h2 {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--sophie-ink);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.page--sophie-xai .sophie-xai-design__intro {
  max-width: 640px;
  margin: 0;
  color: var(--sophie-muted);
  font-size: 17px;
  line-height: 1.6;
}

.page--sophie-xai .sophie-xai-design__widget-slot {
  /* Ruimte voor uitgeklapte widget — sectiehoogte blijft constant. */
  min-height: 146px;
  justify-self: end;
}

.page--sophie-xai .sophie-xai-design__widget {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: clamp(16px, 3vw, 20px);
  border: 1px solid var(--sophie-line);
  border-radius: 16px;
  background: #fff;
}

.page--sophie-xai .sophie-xai-design__align:not(.is-visible) {
  display: none;
}

.page--sophie-xai .sophie-xai-design__align.is-visible {
  display: block;
}

.page--sophie-xai .sophie-xai-design__variants,
.page--sophie-xai .sophie-xai-design__align-options {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
}

.page--sophie-xai .sophie-xai-design__variant,
.page--sophie-xai .sophie-xai-design__align-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(17, 24, 39, 0.52);
  background: transparent;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.page--sophie-xai .sophie-xai-design__variant.is-active,
.page--sophie-xai .sophie-xai-design__align-btn.is-active {
  color: #fff;
  background: var(--accent, #ea5800);
  box-shadow:
    0 1px 3px rgba(234, 88, 0, 0.28),
    0 0 0 0.5px rgba(234, 88, 0, 0.18);
}

.page--sophie-xai .sophie-xai-design__variant:focus-visible,
.page--sophie-xai .sophie-xai-design__align-btn:focus-visible {
  outline: 2px solid rgba(234, 88, 0, 0.45);
  outline-offset: 2px;
}

.page--sophie-xai .sophie-xai-design__variant-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page--sophie-xai .sophie-xai-design__soon {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.42);
}

.sophie-channels__head {
  margin-bottom: 48px;
}

.page--sophie-xai .sophie-xai-kanalen h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.page--sophie-xai .sophie-xai-heading-line {
  display: block;
}

.sophie-channels__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sophie-channel-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  min-height: 286px;
  padding: 22px;
  border: 1px solid #dededb;
  border-radius: 16px;
  background: #fff;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.35s ease;
}

.sophie-channel-card:hover {
  transform: translateY(-3px);
  border-color: #c7c7c3;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.sophie-channel-card--primary {
  border-color: var(--sophie-ink);
  background: var(--sophie-ink);
  color: #fff;
}

.sophie-channel-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.sophie-channel-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #dfdfdc;
  border-radius: 11px;
  color: #343437;
  background: var(--sophie-surface);
}

.sophie-channel-card__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sophie-channel-card__icon--whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: #fff;
}

.sophie-channel-card__icon--whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.sophie-channel-card__icon--mail {
  padding: 0;
  overflow: hidden;
  border: none;
  background: transparent;
  border-radius: 23%;
}

.sophie-channel-card__icon--mail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sophie-channel-card__icon--google {
  border-color: #e8eaed;
  background: #fff;
}

.sophie-channel-card__icon--google svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: none;
}

.sophie-channel-card--primary .sophie-channel-card__icon {
  border-color: rgba(255, 255, 255, 0.15);
  background: #242426;
  color: #fff;
}

.sophie-channel-card--primary .sophie-channel-card__icon--google {
  border-color: rgba(255, 255, 255, 0.2);
  background: #fff;
  color: inherit;
}

.sophie-channel-card__status {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f0f0ed;
  color: #77777a;
  font-size: 10px;
  font-weight: 600;
}

.sophie-channel-card--primary .sophie-channel-card__status {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.sophie-channel-card h3 {
  margin: 0 0 10px;
  color: var(--sophie-ink);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.sophie-channel-card p {
  margin: 0;
  color: var(--sophie-muted);
  font-size: 14px;
  line-height: 1.55;
}

.sophie-channel-card--primary h3 {
  color: #fff;
}

.sophie-channel-card--primary p {
  color: rgba(255, 255, 255, 0.62);
}

.sophie-channels__sync {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  padding: 18px 22px;
  border: 1px solid #dededb;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
}

.sophie-channels__sync-mark {
  display: flex;
  align-items: center;
}

.sophie-channels__sync-mark span {
  width: 15px;
  height: 15px;
  margin-left: -4px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #c6c6c2;
}

.sophie-channels__sync-mark span:first-child {
  margin-left: 0;
  background: var(--sophie-accent);
}

.sophie-channels__sync-mark span:last-child {
  background: var(--sophie-ink);
}

.sophie-channels__sync p {
  margin: 0;
  color: var(--sophie-muted);
  font-size: 13px;
  line-height: 1.45;
}

.sophie-channels__sync strong {
  color: var(--sophie-ink);
  font-weight: 600;
}

.sophie-channels__sync a {
  color: var(--sophie-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sophie-channels__sync a:hover {
  color: var(--sophie-accent);
}

.page--sophie-xai .sophie-seo-expand {
  padding: clamp(72px, 8vw, 110px) 24px;
  border-top: 1px solid var(--sophie-line);
  background: var(--sophie-surface);
  color: var(--sophie-ink);
}

.page--sophie-xai .sophie-seo-expand + .sophie-seo-expand {
  background: #fff;
}

.page--sophie-xai .sophie-seo-expand + .sophie-seo-expand + .sophie-seo-expand {
  background: var(--sophie-surface);
}

.page--sophie-xai .sophie-seo-expand + .sophie-seo-expand + .sophie-seo-expand + .sophie-seo-expand {
  background: #fff;
}

.page--sophie-xai .sophie-seo-expand__inner {
  max-width: min(860px, 100%);
  margin: 0 auto;
}

.page--sophie-xai .sophie-seo-expand h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page--sophie-xai .sophie-seo-expand p {
  margin: 0 0 12px;
  color: var(--sophie-muted);
  font-size: 17px;
  line-height: 1.65;
}

.page--sophie-xai .sophie-seo-expand p:last-child {
  margin-bottom: 0;
}

.page--sophie-xai .sophie-seo-expand__list {
  margin: 0 0 12px;
  padding: 0 0 0 1.15em;
  color: var(--sophie-muted);
  font-size: 17px;
  line-height: 1.65;
}

.page--sophie-xai .sophie-seo-expand__list:last-child {
  margin-bottom: 0;
}

.page--sophie-xai .sophie-seo-expand__list li + li {
  margin-top: 6px;
}

.page--sophie-xai .sophie-seo-expand__compare {
  margin: 16px 0 0;
  padding: 0;
  border-top: 1px solid var(--sophie-line);
}

.page--sophie-xai .sophie-seo-expand__compare > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 12px 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sophie-line);
}

.page--sophie-xai .sophie-seo-expand__compare dt {
  margin: 0;
  color: var(--sophie-ink);
  font-size: 16px;
  font-weight: 560;
  line-height: 1.4;
}

.page--sophie-xai .sophie-seo-expand__compare dd {
  margin: 0;
  color: var(--sophie-muted);
  font-size: 16px;
  line-height: 1.4;
}

.page--sophie-xai .sophie-xai-faq {
  padding: clamp(88px, 10vw, 130px) 24px;
  background: #fff;
  border-top: 1px solid var(--sophie-line);
}

.page--sophie-xai .sophie-xai-faq__inner {
  max-width: 860px;
}

.page--sophie-xai .sophie-xai-faq h2 {
  margin-bottom: 36px;
  font-size: clamp(40px, 4.6vw, 56px);
  font-weight: 500;
  text-align: center;
}

.page--sophie-xai .sophie-xai-faq__list {
  border-radius: 14px;
}

.page--sophie-xai .sophie-xai-faq__panel-inner p {
  margin: 0;
}

.page--sophie-xai .sophie-xai-faq__panel-inner ul {
  margin: 0 0 12px;
  padding: 0 0 0 1.15em;
  color: inherit;
  font-size: inherit;
  line-height: 1.65;
}

.page--sophie-xai .sophie-xai-faq__panel-inner ul:last-child {
  margin-bottom: 0;
}

.page--sophie-xai .sophie-xai-faq__panel-inner li + li {
  margin-top: 6px;
}

.page--sophie-xai .sophie-xai-faq__panel-inner a {
  color: inherit;
  font-weight: 560;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page--sophie-xai .sophie-xai-faq__trigger {
  padding: 22px 24px;
}

.page--sophie-xai .sophie-xai-faq__question {
  font-size: 16px;
  font-weight: 500;
}

.page--sophie-xai .sophie-xai-start {
  max-width: var(--sophie-page);
  padding: clamp(100px, 12vw, 150px) 24px;
}

.page--sophie-xai .sophie-xai-start > .sophie-xai-kicker {
  text-align: center;
}

.page--sophie-xai .sophie-xai-start h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(44px, 5.5vw, 68px);
}

.page--sophie-xai .sophie-xai-start__grid {
  margin-top: 54px;
}

.page--sophie-xai .sophie-xai-start__item {
  min-height: 220px;
  border: 1px solid var(--sophie-line);
  border-radius: 14px;
  background: #fff;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    border-color 0.3s ease;
}

.page--sophie-xai .sophie-xai-start__item span {
  color: #a0a0a6;
}

.page--sophie-xai .sophie-xai-start__item strong {
  color: var(--sophie-ink);
}

.page--sophie-xai .sophie-xai-start__item em {
  color: var(--sophie-muted);
}

.page--sophie-xai .sophie-xai-start__item:hover,
.page--sophie-xai .sophie-xai-start__item:focus-visible {
  transform: translateY(-3px);
  border-color: var(--sophie-accent);
  background: var(--sophie-accent);
}

.page--sophie-xai .sophie-xai-start__item:hover span,
.page--sophie-xai .sophie-xai-start__item:focus-visible span {
  color: rgba(255, 255, 255, 0.72);
}

.page--sophie-xai .sophie-xai-start__item:hover strong,
.page--sophie-xai .sophie-xai-start__item:focus-visible strong {
  color: #fff;
}

.page--sophie-xai .sophie-xai-start__item:hover em,
.page--sophie-xai .sophie-xai-start__item:focus-visible em {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 980px) {
  .page--sophie-xai .sophie-xai-hero__inner,
  .page--sophie-xai .sophie-xai-info--light,
  .page--sophie-xai .sophie-xai-kanalen__inner,
  .page--sophie-xai .sophie-xai-info--routing__inner {
    grid-template-columns: 1fr;
  }

  .sophie-channels__head {
    margin-bottom: 36px;
  }

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

  .sophie-channel-card {
    min-height: 240px;
  }

  .sophie-channel-card--primary {
    grid-column: 1 / -1;
    min-height: 220px;
  }

  .page--sophie-xai .sophie-xai-gdpr__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page--sophie-xai .sophie-xai-models__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page--sophie-xai .sophie-xai-models__logos {
    justify-self: start;
  }

  .page--sophie-xai .sophie-xai-design__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page--sophie-xai .sophie-xai-design__widget-slot {
    justify-self: start;
  }

  .page--sophie-xai .sophie-xai-gdpr__visual {
    justify-self: start;
    justify-content: flex-start;
    width: 100%;
  }

  .page--sophie-xai .sophie-xai-gdpr__visual img {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .page--sophie-xai .sophie-xai-hero__inner {
    gap: 60px;
  }

  .sophie-pro-hero__product {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .sophie-pro-trust > div {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0;
  }

  .sophie-pro-trust p {
    max-width: none;
  }

  .page--sophie-xai .sophie-xai-api {
    padding-right: 24px;
    padding-left: 24px;
  }

  .page--sophie-xai .sophie-xai-api__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page--sophie-xai .sophie-xai-api__frame {
    max-width: none;
    width: 100%;
  }

  .page--sophie-xai .sophie-xai-module-grid {
    grid-template-columns: 1fr;
  }

  .page--sophie-xai .sophie-xai-kanalen__inner {
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .page--sophie-xai {
    --sophie-page: calc(100% - 32px);
    --sophie-xai-hero-pad-top-mobile: max(
      12px,
      calc(clamp(44px, 9.4svh, 61px) - var(--sophie-banner-block-size))
    );
  }

  .page--maatwerk-xai {
    --maatwerk-xai-hero-pad-top-mobile: max(
      12px,
      calc(clamp(44px, 9.4svh, 61px) - var(--sophie-banner-block-size))
    );
  }

  .page--about-xai {
    --about-xai-hero-pad-top-mobile: max(
      12px,
      calc(clamp(44px, 9.4svh, 61px) - var(--sophie-banner-block-size))
    );
  }

  .page--sophie-xai .sophie-xai-hero {
    min-height: auto;
    padding-top: var(--sophie-xai-hero-pad-top-mobile);
  }

  .page--maatwerk-xai .maatwerk-xai-hero {
    padding-top: var(--maatwerk-xai-hero-pad-top-mobile);
  }

  .page--about-xai .about-xai-hero {
    padding-top: var(--about-xai-hero-pad-top-mobile);
  }

  .page--sophie-xai .sophie-xai-hero__title {
    font-size: var(--xai-hero-title-size-md);
    font-weight: 400;
    letter-spacing: -0.072em;
  }

  .page--sophie-xai .sophie-xai-hero::before {
    background-size: 40px 40px;
  }

  .page--sophie-xai .sophie-xai-hero__inner {
    display: block;
  }

  .sophie-pro-eyebrow {
    margin-bottom: 20px;
  }

  .page--sophie-xai .sophie-xai-hero__actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .page--sophie-xai .sophie-xai-hero__actions .btn {
    width: auto;
  }

  .page--sophie-xai .sophie-xai-api__actions {
    flex-direction: column;
  }

  .page--sophie-xai .sophie-xai-api__visual {
    display: none;
  }

  .page--sophie-xai .sophie-xai-api__actions .btn {
    width: 100%;
  }

  .sophie-pro-hero__product {
    margin-top: 50px;
    padding: 0 0 26px;
  }

  .sophie-pro-window {
    min-height: 445px;
    border-radius: 14px;
  }

  .sophie-pro-window__top {
    min-height: 66px;
    padding: 0 16px;
  }

  .sophie-pro-window__body {
    padding: 19px 16px 88px;
  }

  .sophie-pro-message {
    font-size: 13px;
  }

  .sophie-pro-message--citizen {
    max-width: 88%;
  }

  .sophie-pro-message--sophie {
    max-width: 100%;
  }

  .sophie-pro-route-card {
    right: 10px;
    bottom: 0;
    min-width: 200px;
  }

  .sophie-pro-trust {
    padding: 0 16px;
  }

  .sophie-pro-trust dl {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .sophie-pro-trust dl > div {
    padding-left: 14px;
  }

  .page--sophie-xai .sophie-xai-api {
    padding: 82px 16px;
  }

  .page--sophie-xai .sophie-xai-api h2,
  .page--sophie-xai .sophie-xai-section-head h2,
  .page--sophie-xai .sophie-xai-architecture__copy h2,
  .page--sophie-xai .sophie-xai-orchestration__head h2,
  .page--sophie-xai .sophie-xai-info__copy h2,
  .page--sophie-xai .sophie-xai-start h2 {
    font-size: var(--xai-hero-title-size-md);
    font-weight: 300;
    letter-spacing: -0.065em;
    line-height: 0.96;
  }

  .page--sophie-xai .sophie-xai-info--routing {
    min-height: 0;
    margin: 0;
    padding: 82px 16px;
    border-radius: 0;
  }

  .page--sophie-xai .sophie-xai-info--routing__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page--sophie-xai .sophie-xai-info--routing__visual {
    justify-content: center;
    margin-top: 28px;
  }

  .page--sophie-xai .sophie-xai-info--routing__stage {
    max-width: none;
  }

  .page--sophie-xai .sophie-xai-info--routing::before {
    content: none;
  }

  .page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy h2 {
    font-size: var(--xai-hero-title-size-md);
  }

  .page--sophie-xai .sophie-xai-modules {
    padding: 82px 16px;
  }

  .page--sophie-xai .sophie-xai-modules__lead {
    margin-bottom: 34px;
    font-size: 16px;
  }

  .page--sophie-xai .sophie-xai-module-grid {
    max-width: none;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page--sophie-xai .sophie-xai-module {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .page--sophie-xai .sophie-xai-module__icon {
    margin-bottom: 18px;
  }

  .page--sophie-xai .sophie-xai-module h3 {
    margin: 0 0 8px;
    font-size: 22px;
  }

  .page--sophie-xai .sophie-xai-module > p {
    max-width: none;
    margin: 0;
    font-size: 15px;
  }

  .page--sophie-xai .sophie-xai-modules__banner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    padding: 28px 0 0;
  }

  .page--sophie-xai .sophie-xai-modules__banner-divider {
    display: none;
  }

  .page--sophie-xai .sophie-xai-modules__banner-text {
    font-size: 16px;
  }

  .page--sophie-xai .sophie-xai-architecture {
    padding: 82px 16px;
  }

  .page--sophie-xai .sophie-xai-architecture__grid {
    grid-template-columns: 1fr;
  }

  .page--sophie-xai .sophie-xai-architecture__connect {
    padding: 20px;
  }

  .page--sophie-xai .sophie-xai-info--light {
    gap: 44px;
    padding: 82px 16px;
  }

  .page--sophie-xai .sophie-xai-info--light .sophie-xai-embed-card {
    max-width: none;
  }

  .page--sophie-xai .sophie-xai-embed-card {
    padding: 14px;
  }

  .page--sophie-xai .sophie-xai-embed-card pre {
    font-size: 9px;
  }

  .page--sophie-xai .sophie-xai-kanalen {
    padding: 82px 16px;
  }

  .sophie-channels__grid {
    grid-template-columns: 1fr;
  }

  .sophie-channel-card--primary {
    grid-column: auto;
  }

  .sophie-channel-card {
    min-height: 224px;
    padding: 20px;
  }

  .sophie-channels__sync {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px;
  }

  .page--sophie-xai .sophie-seo-expand {
    padding: 64px 16px;
  }

  .page--sophie-xai .sophie-seo-expand h2 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .page--sophie-xai .sophie-seo-expand__compare > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .page--sophie-xai .sophie-xai-faq {
    padding: 82px 16px;
  }

  .page--sophie-xai .sophie-xai-faq h2 {
    font-size: 40px;
    text-align: left;
  }

  .page--sophie-xai .sophie-xai-faq__trigger {
    padding: 19px 16px;
  }

  .page--sophie-xai .sophie-xai-faq__question {
    font-size: 15px;
  }

  .page--sophie-xai .sophie-xai-faq__panel-inner p {
    padding: 0 16px 19px;
  }

  .page--sophie-xai .sophie-xai-faq__panel-inner ul {
    padding-left: calc(1.15em + 16px);
    padding-right: 16px;
    padding-bottom: 12px;
  }

  .page--sophie-xai .sophie-xai-start {
    padding: 82px 16px 100px;
    text-align: left;
  }

  .page--sophie-xai .sophie-xai-start > .sophie-xai-kicker {
    text-align: left;
  }

  .page--sophie-xai .sophie-xai-start__grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .page--sophie-xai .sophie-xai-start__item {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  .page--sophie-xai {
    --sophie-xai-hero-pad-top-mobile: max(12px, calc(77px - var(--sophie-banner-block-size)));
  }

  .page--maatwerk-xai {
    --maatwerk-xai-hero-pad-top-mobile: max(12px, calc(77px - var(--sophie-banner-block-size)));
  }

  .page--about-xai {
    --about-xai-hero-pad-top-mobile: max(12px, calc(77px - var(--sophie-banner-block-size)));
  }

  .page--sophie-xai .sophie-xai-hero__title {
    letter-spacing: -0.07em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page--sophie-xai .sophie-xai-hero::after {
    content: none;
    animation: none;
  }

  html.js .page--sophie-xai .sophie-xai-info__copy.reveal.reveal--visible .sophie-xai-info__emoji {
    animation: none;
  }

  html.js .page--sophie-xai .sophie-xai-section-head.reveal:not(.reveal--visible),
  html.js .page--sophie-xai .sophie-xai-section-head.reveal.reveal--visible,
  html.js .page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal:not(.reveal--visible),
  html.js .page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal.reveal--visible,
  html.js .page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal:not(.reveal--visible) > *,
  html.js .page--sophie-xai .sophie-xai-info--routing .sophie-xai-info__copy.reveal.reveal--visible > *,
  html.js .page--sophie-xai .sophie-xai-info--routing__visual.reveal:not(.reveal--visible),
  html.js .page--sophie-xai .sophie-xai-info--routing__visual.reveal.reveal--visible {
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .page--sophie-xai .sophie-xai-api__frame {
    transform: none !important;
    will-change: auto;
  }

  .page--sophie-xai .sophie-xai-hero__actions .btn:hover,
  .page--sophie-xai .sophie-xai-hero__actions .btn:focus-visible {
    transform: none;
  }

  .page--sophie-xai .sophie-xai-module {
    transition: none;
  }

  html.js .page--sophie-xai .sophie-xai-module.reveal:not(.reveal--visible),
  html.js .page--sophie-xai .sophie-xai-module.reveal.reveal--visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================================
   Apple-pass — 2026-08-11
   Kleur per dienstdomein, rijkere scroll-animatie en strakkere ritmiek.
   Alles staat achteraan zodat het de bestaande secties overschrijft zonder
   ze te herschrijven, en alles is gescoped op .page--sophie-xai.
   ========================================================================= */

.page--sophie-xai {
  /* De tinten staan voor een dienstdomein, niet voor decoratie: dezelfde kleur
     komt terug bij dezelfde soort dienst in modules, kanalen en architectuur. */
  --dom-afspraak: #1b4dd8; /* loket & dossier */
  --dom-melding: #0f9b8e; /* openbaar domein */
  --dom-input: #7b4bd8; /* beleid & participatie */
  --dom-routing: #e85d2a; /* Sophie zelf */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);
}

/* --- Hero: regel voor regel omhoog onthullen bij het laden ---------------- */

.page--sophie-xai .sophie-xai-hero__title-line {
  display: block;
}

html.js .page--sophie-xai .sophie-xai-hero__title-line {
  clip-path: inset(0 0 110% 0);
  transform: translateY(0.24em);
  transition: clip-path 1.1s var(--ease-spring), transform 1.1s var(--ease-spring);
}

html.js .page--sophie-xai.is-hero-in .sophie-xai-hero__title-line {
  clip-path: inset(0 0 -20% 0);
  transform: translateY(0);
}

html.js .page--sophie-xai .sophie-xai-hero__title-line:nth-child(2) {
  transition-delay: 0.11s;
}

html.js .page--sophie-xai .sophie-xai-hero__lead,
html.js .page--sophie-xai .sophie-xai-hero__actions {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-spring);
}

html.js .page--sophie-xai .sophie-xai-hero__lead {
  transition-delay: 0.26s;
}

html.js .page--sophie-xai .sophie-xai-hero__actions {
  transition-delay: 0.36s;
}

html.js .page--sophie-xai.is-hero-in .sophie-xai-hero__lead,
html.js .page--sophie-xai.is-hero-in .sophie-xai-hero__actions {
  opacity: 1;
  transform: none;
}

/* Ambiente wolk achter de hero: traag ademend, nooit opdringerig. */
.page--sophie-xai .sophie-xai-hero {
  position: relative;
  isolation: isolate;
}

.page--sophie-xai .sophie-xai-hero::after {
  content: "";
  position: absolute;
  inset: -10% -20% 20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(46% 52% at 22% 34%, rgba(232, 93, 42, 0.11), transparent 70%),
    radial-gradient(40% 46% at 78% 28%, rgba(27, 77, 216, 0.09), transparent 72%),
    radial-gradient(38% 44% at 54% 76%, rgba(15, 155, 142, 0.07), transparent 74%);
  animation: sophie-hero-drift 26s var(--ease-soft) infinite alternate;
}

@keyframes sophie-hero-drift {
  from {
    transform: translate3d(-1.4%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1.6%, 1.4%, 0) scale(1.06);
  }
}

/* --- Kerncijfers: de haarlijn tekent zich, de cijfers schuiven na --------- */

.page--sophie-xai .sophie-pro-trust dl > div {
  position: relative;
}

.page--sophie-xai .sophie-pro-trust dt {
  background: linear-gradient(96deg, var(--sophie-ink) 30%, var(--dom-afspraak));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html.js .page--sophie-xai .sophie-pro-trust dl > div {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-spring);
  transition-delay: calc(var(--i, 0) * 90ms);
}

html.js .page--sophie-xai .sophie-pro-trust.is-in dl > div {
  opacity: 1;
  transform: none;
}

/* --- Modules: bewust kleurloos en strak; alleen de stagger bij binnenkomst -- */

html.js .page--sophie-xai .sophie-xai-module.reveal:not(.reveal--visible),
html.js .page--sophie-xai .sophie-xai-module.reveal.reveal--visible {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* --- Kanalen: dezelfde domeinkleuren, zelfde gedrag ----------------------- */

.page--sophie-xai .sophie-xai-kanaal,
.page--sophie-xai .sophie-xai-kanalen article {
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-soft);
}

.page--sophie-xai .sophie-xai-kanalen article:hover,
.page--sophie-xai .sophie-xai-kanalen article:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px -24px rgba(13, 13, 14, 0.4);
}

/* --- Secties: zachte kleurwas die meekomt met de scroll ------------------- */

.page--sophie-xai .sophie-xai-architecture,
.page--sophie-xai .sophie-xai-kanalen,
.page--sophie-xai .sophie-xai-models {
  position: relative;
  isolation: isolate;
}

.page--sophie-xai .sophie-xai-architecture::after,
.page--sophie-xai .sophie-xai-kanalen::after,
.page--sophie-xai .sophie-xai-models::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s var(--ease-soft);
}

.page--sophie-xai .sophie-xai-architecture.is-in::after,
.page--sophie-xai .sophie-xai-kanalen.is-in::after,
.page--sophie-xai .sophie-xai-models.is-in::after {
  opacity: 1;
}

.page--sophie-xai .sophie-xai-architecture::after {
  background: radial-gradient(56% 46% at 82% 12%, rgba(15, 155, 142, 0.08), transparent 72%);
}

.page--sophie-xai .sophie-xai-kanalen::after {
  background: radial-gradient(54% 42% at 12% 84%, rgba(232, 93, 42, 0.07), transparent 72%);
}

.page--sophie-xai .sophie-xai-models::after {
  background: radial-gradient(50% 40% at 50% 6%, rgba(27, 77, 216, 0.06), transparent 76%);
}

/* --- Knoppen: een korte glans onder de muis ------------------------------- */

.page--sophie-xai .btn--primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-soft);
}

.page--sophie-xai .btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.3) 50%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease-soft);
}

.page--sophie-xai .btn--primary:hover::after,
.page--sophie-xai .btn--primary:focus-visible::after {
  transform: translateX(120%);
}

.page--sophie-xai .btn--primary:hover,
.page--sophie-xai .btn--primary:focus-visible {
  transform: translateY(-1px);
}

.page--sophie-xai .btn--ghost {
  transition: transform 0.4s var(--ease-spring), border-color 0.4s var(--ease-soft),
    background 0.4s var(--ease-soft);
}

.page--sophie-xai .btn--ghost:hover,
.page--sophie-xai .btn--ghost:focus-visible {
  transform: translateY(-1px);
}

/* --- Parallax: alleen transform, JS zet de variabele ---------------------- */

html.js .page--sophie-xai [data-parallax] {
  will-change: transform;
  transform: translate3d(0, var(--parallax, 0px), 0);
}

/* --- Kwaliteitsvloer ------------------------------------------------------ */

.page--sophie-xai a:focus-visible,
.page--sophie-xai button:focus-visible {
  outline: 2px solid var(--dom-afspraak);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .page--sophie-xai .sophie-xai-hero::after {
    animation: none;
  }

  html.js .page--sophie-xai .sophie-xai-hero__title-line,
  html.js .page--sophie-xai .sophie-xai-hero__lead,
  html.js .page--sophie-xai .sophie-xai-hero__actions,
  html.js .page--sophie-xai .sophie-pro-trust dl > div {
    clip-path: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  html.js .page--sophie-xai [data-parallax] {
    transform: none;
  }

  .page--sophie-xai .btn--primary,
  .page--sophie-xai .btn--primary::after,
  .page--sophie-xai .btn--ghost,
  .page--sophie-xai .sophie-xai-kanalen article {
    transition: none;
  }
}
