:root {
  --ink: #14213d;
  --ink-soft: #46516d;
  --blue: #2f67d8;
  --blue-dark: #1f4fb5;
  --blue-pale: #eaf1ff;
  --violet: #7862ce;
  --violet-pale: #f1edff;
  --coral: #ef765f;
  --coral-pale: #fff0ec;
  --green: #2f9b7c;
  --green-pale: #e9f8f3;
  --cream: #fffaf5;
  --surface: #ffffff;
  --surface-soft: #f7f9ff;
  --border: #dce3f1;
  --shadow-sm: 0 12px 35px rgba(31, 55, 101, 0.09);
  --shadow-lg: 0 30px 90px rgba(36, 64, 123, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shell: min(1180px, calc(100% - 48px));
  --font-display: "Sora", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 980px;
  margin: 0 auto 28px;
  font-size: clamp(3.25rem, 7.3vw, 6.6rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid #ff8a68;
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(90px, 11vw, 160px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: #b9cffd;
}

.accent-word {
  color: var(--coral);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid var(--blue);
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 9px 24px rgba(47, 103, 216, 0.22);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: 0 13px 30px rgba(47, 103, 216, 0.28);
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 12px;
  font-size: 0.94rem;
}

.button-secondary {
  border-color: #cbd5e8;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: #aebbd3;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button-light {
  border-color: #fff;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.button-light:hover {
  border-color: #eef3ff;
  color: var(--ink);
  background: #eef3ff;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(206, 216, 236, 0.75);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(31, 55, 101, 0.06);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-header-logo {
  flex: 0 0 auto;
}

.brand-header-logo img {
  display: block;
  width: clamp(116px, 11vw, 136px);
  height: auto;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
}

.brand-mark-image {
  overflow: hidden;
}

.brand-mark-image::after {
  display: none;
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.orbit {
  position: absolute;
  inset: 7px 1px;
  border: 2.5px solid var(--blue);
  border-radius: 50%;
}

.orbit-a {
  transform: rotate(90deg);
}

.orbit-b {
  border-color: #68bd5b;
  transform: rotate(0);
}

.brand-mark::after {
  position: absolute;
  inset: 6px;
  border: 2px dashed var(--coral);
  border-radius: 50%;
  content: "";
}

.brand-i {
  position: relative;
  z-index: 2;
  color: #df3e32;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: #df3e32;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: #35415e;
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--coral), var(--blue));
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-header .main-nav a[aria-current="page"] {
  color: var(--blue-dark);
}

.site-header .main-nav a[aria-current="page"]::after,
.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 170px;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at 8% 45%, rgba(185, 217, 255, 0.68), transparent 26%),
    radial-gradient(circle at 92% 42%, rgba(255, 202, 214, 0.72), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, #f5f7ff 82%, #f9faff 100%);
}

.hero::after {
  position: absolute;
  right: -7vw;
  bottom: -17vw;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(91, 115, 183, 0.12);
  border-radius: 45% 55% 62% 38%;
  content: "";
  transform: rotate(25deg);
}

.hero-aurora {
  position: absolute;
  top: 9%;
  left: 50%;
  width: min(820px, 80vw);
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 72%);
  transform: translateX(-50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 .accent-word {
  position: relative;
  display: inline-block;
}

.hero h1 .accent-word::after {
  position: absolute;
  right: 2%;
  bottom: -7px;
  left: 4%;
  height: 8px;
  border-radius: 50%;
  background: rgba(239, 118, 95, 0.19);
  content: "";
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.hero-subcopy {
  max-width: 760px;
  margin: 0 auto 33px;
  color: #59657d;
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 13px;
}

.risk-reducer {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 24px 0 0;
  color: #55617b;
  font-size: 0.87rem;
  font-weight: 600;
}

.risk-reducer span {
  display: inline-flex;
  align-items: center;
}

.risk-reducer span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  margin: 0 12px;
  border-radius: 50%;
  background: #9eabc3;
  content: "";
}

.hero-product {
  position: relative;
  max-width: 1040px;
  margin: 75px auto 0;
  perspective: 1600px;
}

.hero-story-carousel {
  position: relative;
  min-height: clamp(335px, 35vw, 420px);
  margin: 92px auto 0;
  overflow: visible;
  isolation: isolate;
}

.hero-story-carousel::before {
  position: absolute;
  inset: 12% 12% 0;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 38%, rgba(116, 167, 255, 0.3), transparent 34%),
    radial-gradient(circle at 66% 48%, rgba(255, 143, 114, 0.22), transparent 34%),
    radial-gradient(circle at 50% 70%, rgba(122, 103, 216, 0.22), transparent 42%);
  content: "";
  filter: blur(28px);
}

.story-slide {
  --story-radius: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(475px, 44vw);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
  overflow: hidden;
  border: 1px solid rgba(210, 218, 234, 0.95);
  border-radius: var(--story-radius);
  background: #fff;
  box-shadow: 0 26px 70px rgba(52, 70, 112, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -48%) scale(0.82);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 650ms ease;
}

.story-image-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.12 / 1;
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
  clip-path: inset(0 round var(--story-radius));
  overflow: hidden;
  border-radius: var(--story-radius);
  background: #fff;
  transform: translateZ(0);
}

.story-slide img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.story-slide.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.story-slide.is-prev,
.story-slide.is-next {
  z-index: 2;
  opacity: 0.48;
  filter: saturate(0.82) blur(0.2px);
}

.story-slide.is-prev {
  transform: translate(-103%, -49%) scale(0.82);
}

.story-slide.is-next {
  transform: translate(3%, -49%) scale(0.82);
}

.story-caption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  max-width: 560px;
  padding: 9px 12px 11px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 36px rgba(34, 50, 83, 0.16);
  text-align: left;
  backdrop-filter: blur(18px);
}

.story-caption p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  font-weight: 650;
  line-height: 1.35;
}

.story-caption--with-result {
  right: 0;
  bottom: 0;
  left: 0;
  max-width: none;
  padding: 12px 24px 14px;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 0 var(--story-radius) var(--story-radius);
  text-align: center;
}

.story-caption--with-result .story-caption-copy {
  color: var(--ink);
  font-weight: 700;
}

.story-caption--with-result .story-caption-result {
  margin-top: 12px;
  color: #c52a13;
  font-weight: 750;
}

.caption-intro {
  display: inline;
  margin: 0;
  color: #6f7a91;
  font-weight: 600;
}

.caption-outcome {
  display: inline;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.story-slide:not(.is-active) .story-caption {
  opacity: 0;
}

.product-glow {
  position: absolute;
  inset: 4% 7% -8%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(85, 112, 226, 0.28), transparent 67%);
  filter: blur(28px);
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 204, 230, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  text-align: left;
  transform: rotateX(1.5deg);
}

.window-topbar {
  display: flex;
  min-height: 57px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #e4e9f3;
  background: #fff;
  font-size: 0.77rem;
}

.window-brand,
.window-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.window-logo {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--coral);
  font-family: Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
}

.window-status {
  color: #387f6d;
}

.window-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #47b394;
  box-shadow: 0 0 0 4px #e5f8f1;
}

.product-layout {
  display: grid;
  min-height: 540px;
  grid-template-columns: 64px 1fr;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding-top: 24px;
  border-right: 1px solid #e6eaf2;
  background: #fafbfe;
}

.sidebar-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  color: #8390a9;
}

.sidebar-icon.active {
  color: var(--blue);
  background: var(--blue-pale);
}

.sidebar-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.context-canvas {
  padding: 27px 30px 34px;
  background:
    linear-gradient(rgba(224, 229, 241, 0.38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 229, 241, 0.38) 1px, transparent 1px),
    #fbfcff;
  background-size: 28px 28px;
}

.canvas-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.canvas-heading > div {
  display: flex;
  flex-direction: column;
}

.canvas-heading strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.micro-label,
.flow-label {
  color: #7b879f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.canvas-heading button {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid #dde4f0;
  border-radius: 10px;
  background: #fff;
}

.canvas-heading button span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #586681;
}

.flow-map {
  position: relative;
  display: grid;
  min-height: 390px;
  grid-template-columns: 1fr 0.9fr 1fr;
  align-items: stretch;
  gap: 7%;
}

.flow-column {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.flow-card {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e1e6f0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(32, 55, 99, 0.06);
}

.flow-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-pale);
}

.flow-icon.coral {
  color: #d85e48;
  background: var(--coral-pale);
}

.flow-icon.green {
  color: #248369;
  background: var(--green-pale);
}

.flow-icon.violet {
  color: #6653b3;
  background: var(--violet-pale);
}

.flow-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.flow-card > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.flow-card strong {
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-card small {
  margin-top: 4px;
  color: #7a869e;
  font-size: 0.67rem;
}

.chip-core {
  justify-content: center;
}

.chip-core .flow-label {
  position: absolute;
  top: 0;
  align-self: center;
}

.core-card {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(102, 83, 179, 0.3);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff 10%, #f1edff 100%);
  box-shadow: 0 20px 40px rgba(80, 68, 142, 0.16);
  text-align: center;
}

.core-pulse {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(122, 103, 216, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px rgba(122, 103, 216, 0.06),
    0 0 0 48px rgba(122, 103, 216, 0.03);
}

.core-logo,
.core-card strong,
.context-tags {
  position: relative;
  z-index: 1;
}

.core-logo {
  margin-bottom: 8px;
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.core-card strong {
  font-size: 0.82rem;
}

.context-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 14px;
}

.context-tags span {
  padding: 4px 7px;
  border: 1px solid rgba(102, 83, 179, 0.16);
  border-radius: 99px;
  color: #5f5591;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.59rem;
  font-weight: 700;
}

.flow-lines {
  position: absolute;
  z-index: 1;
  inset: 22px 0 0;
  width: 100%;
  height: calc(100% - 22px);
  overflow: visible;
}

.flow-lines path {
  fill: none;
  stroke: url(#lineGradient);
  stroke-dasharray: 5 7;
  stroke-linecap: round;
  stroke-width: 2;
  animation: lineFlow 12s linear infinite;
  opacity: 0.65;
}

.logo-strip {
  padding-block: 34px 44px;
  border-top: 1px solid #edf0f6;
  border-bottom: 1px solid #e5e9f2;
  background: rgba(255, 255, 255, 0.84);
}

.logo-strip-label {
  margin: 0 0 18px;
  color: #66728a;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.logo-marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  gap: 18px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  display: flex;
  min-width: max-content;
  gap: 18px;
  animation: logoMarquee 48s linear infinite;
}

.logo-track span {
  display: grid;
  min-width: 178px;
  height: 74px;
  place-items: center;
  padding: 14px 22px;
  border: 1px solid #e1e7f1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(32, 55, 99, 0.04);
}

.logo-track img {
  display: block;
  max-width: 138px;
  max-height: 44px;
  object-fit: contain;
}

@keyframes logoMarquee {
  to {
    transform: translateX(calc(-100% - 18px));
  }
}

.proof-strip {
  padding-block: 34px;
  border-top: 1px solid #edf0f6;
  border-bottom: 1px solid #e5e9f2;
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 25px;
}

.proof-item:not(:last-child) {
  border-right: 1px solid #e5e9f2;
}

.proof-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--blue);
  background: var(--blue-pale);
}

.proof-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.proof-item > div {
  display: flex;
  flex-direction: column;
}

.proof-item strong {
  font-size: 0.94rem;
}

.proof-item span:last-child {
  color: #69758e;
  font-size: 0.8rem;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 68px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: 24px;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 1.13rem;
}

.problem-section {
  background: linear-gradient(180deg, #fff 0%, #f8f8ff 100%);
}

.relevance-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: 0.94fr 0.72fr 0.94fr;
  gap: clamp(26px, 4.5vw, 66px);
  align-items: center;
  overflow: hidden;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid #dce4f3;
  border-radius: var(--radius-lg);
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 222, 213, 0.85), transparent 30%),
    radial-gradient(circle at 78% 68%, rgba(208, 220, 255, 0.95), transparent 37%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(246, 248, 255, 0.66)),
    #f7f8ff;
}

.source-cloud,
.patient-needs,
.relevance-engine {
  position: relative;
  z-index: 1;
}

.source-cloud,
.patient-needs {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 350px;
}

.visual-label {
  display: inline-block;
  justify-self: start;
  align-self: start;
  margin-bottom: 14px;
  padding: 6px 11px;
  border: 1px solid rgba(89, 111, 169, 0.18);
  border-radius: 99px;
  color: #52617e;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-card,
.need-card {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(202, 211, 230, 0.82);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 38px rgba(45, 65, 108, 0.12);
  backdrop-filter: blur(16px);
}

.source-card {
  width: min(100%, 178px);
  min-height: 44px;
  padding: 7px 10px;
  border-radius: 13px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.82rem;
}

.source-icon {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 10px;
  color: #ef765f;
  background: #fff0ec;
}

.source-icon svg,
.need-avatar svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.card-website {
  justify-self: start;
  transform: translate(18px, -2px);
}

.card-portal {
  justify-self: end;
  transform: translate(-8px, 0);
}

.card-doc {
  justify-self: center;
  transform: translate(-24px, 2px);
}

.card-external {
  justify-self: end;
  transform: translate(6px, 0);
}

.card-animation {
  justify-self: start;
  transform: translate(42px, 3px);
}

.flow-connector {
  position: absolute;
  top: 50%;
  z-index: 4;
  height: 2px;
  background: linear-gradient(90deg, rgba(143, 169, 255, 0.08), rgba(143, 169, 255, 0.72));
}

.flow-connector::after {
  position: absolute;
  top: 50%;
  right: -2px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(143, 169, 255, 0.86);
  border-right: 2px solid rgba(143, 169, 255, 0.86);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.flow-connector span {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(143, 169, 255, 0.36);
  border-radius: 999px;
  color: #263653;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 14px 30px rgba(45, 65, 108, 0.18);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.flow-connector-in {
  right: 54%;
  left: 30%;
}

.flow-connector-out {
  right: 29%;
  left: 54%;
}

.flow-connector-out span {
  bottom: auto;
  top: 18px;
  left: 58%;
}

.relevance-engine {
  display: grid;
  place-items: center;
  z-index: 2;
}

.engine-ring {
  position: absolute;
  width: clamp(150px, 15vw, 196px);
  aspect-ratio: 1;
  border: 1px solid rgba(108, 139, 255, 0.23);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.86) 0 43%, transparent 44%),
    conic-gradient(from 130deg, #ef765f, #8fa9ff, #8bd4c7, #ef765f);
  filter: drop-shadow(0 22px 44px rgba(72, 92, 145, 0.16));
  opacity: 0.92;
}

.engine-core {
  position: relative;
  display: grid;
  width: clamp(134px, 13vw, 170px);
  aspect-ratio: 1;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 10px rgba(238, 242, 255, 0.8), 0 20px 46px rgba(45, 65, 108, 0.16);
  text-align: center;
}

.engine-core span {
  color: #ef765f;
  max-width: 96px;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.18;
  text-transform: uppercase;
}

.need-card {
  width: min(100%, 222px);
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 14px;
}

.need-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
}

.need-card.active {
  border-color: rgba(239, 118, 95, 0.34);
  background: rgba(255, 255, 255, 0.96);
  transform: translateX(-12px) scale(1.04);
}

.need-card.active p {
  color: var(--ink);
}

.need-avatar {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ef765f, #8fa9ff);
  font-family: var(--font-display);
  font-weight: 800;
}

.need-mail {
  justify-self: start;
  transform: translate(6px, -3px);
}

.need-language {
  justify-self: end;
  transform: translate(0, 1px);
}

.need-paper {
  justify-self: start;
  transform: translate(24px, 0);
}

.need-portal {
  justify-self: end;
  transform: translate(4px, 2px);
}

.need-app {
  justify-self: start;
  transform: translate(46px, 3px);
}

.how-section {
  background: #f8f8ff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  min-height: 610px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #e0e5f0;
  border-radius: var(--radius-md);
  background: #fff;
}

.step-card.featured {
  background: linear-gradient(155deg, #fff 15%, #f0edff 100%);
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
}

.step-illustration {
  position: relative;
  display: grid;
  height: 250px;
  margin-block: 10px 20px;
  place-items: center;
}

.connect-visual::before,
.arrange-visual::before,
.reach-visual::before {
  position: absolute;
  inset: 34px 26px;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(143, 169, 255, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(143, 169, 255, 0.13) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  -webkit-mask-image: radial-gradient(circle at center, #000 0 55%, transparent 82%);
  mask-image: radial-gradient(circle at center, #000 0 55%, transparent 82%);
}

.source-bubble,
.hub-card,
.arrange-core,
.arrange-chip,
.patient-card,
.reach-channel {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(205, 214, 232, 0.86);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(45, 65, 108, 0.12);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.connect-visual::after {
  position: absolute;
  width: 178px;
  height: 92px;
  border: 2px solid rgba(143, 169, 255, 0.42);
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 40px 0 0;
  transform: rotate(24deg);
  content: "";
}

.source-bubble {
  display: grid;
  min-width: 112px;
  min-height: 48px;
  place-items: center;
  border-radius: 16px;
  color: #52617e;
  font-size: 0.76rem;
}

.source-web {
  top: 28px;
  left: 28px;
}

.source-doc {
  right: 18px;
  top: 54px;
}

.source-content {
  bottom: 38px;
  left: 34px;
}

.hub-card {
  z-index: 2;
  display: grid;
  width: 150px;
  min-height: 104px;
  place-items: center;
  padding: 18px;
  border-color: rgba(239, 118, 95, 0.22);
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #ef765f, #8fa9ff);
  box-shadow: 0 22px 45px rgba(122, 98, 206, 0.24);
  font-family: var(--font-display);
  font-size: 0.86rem;
  line-height: 1.15;
  text-align: center;
}

.hub-card span {
  width: 34px;
  height: 34px;
  border: 7px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: #fff;
}

.arrange-visual::after {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(122, 98, 206, 0.22);
  border-radius: 50%;
  content: "";
}

.arrange-core {
  z-index: 2;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  padding: 20px;
  border-radius: 36px;
  color: #fff;
  background: var(--violet);
  box-shadow: 0 20px 45px rgba(122, 98, 206, 0.3);
  font-family: var(--font-display);
  text-align: center;
  line-height: 1.08;
}

.arrange-chip {
  padding: 8px 12px;
  border-radius: 99px;
  color: #5e5591;
  font-size: 0.72rem;
}

.chip-path {
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.chip-treatment {
  top: 82px;
  right: 12px;
}

.chip-audience {
  right: 28px;
  bottom: 40px;
}

.chip-language {
  bottom: 34px;
  left: 24px;
}

.chip-channel {
  top: 90px;
  left: 8px;
}

.reach-visual::after {
  position: absolute;
  inset: 62px 46px 48px;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, transparent 0 10%, rgba(143, 169, 255, 0.36) 10% 16%, transparent 16% 32%, rgba(239, 118, 95, 0.3) 32% 38%, transparent 38% 58%, rgba(139, 216, 193, 0.38) 58% 64%, transparent 64% 100%);
  content: "";
}

.patient-card {
  z-index: 3;
  display: grid;
  width: 148px;
  min-height: 112px;
  place-items: center;
  padding: 18px;
  border-radius: 28px;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-display);
  font-size: 0.86rem;
  line-height: 1.12;
  text-align: center;
}

.patient-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, #fff 0 15%, transparent 16%),
    radial-gradient(circle at 50% 88%, #fff 0 34%, transparent 35%),
    linear-gradient(135deg, #ef765f, #8fa9ff);
}

.reach-channel {
  display: grid;
  min-width: 88px;
  min-height: 46px;
  place-items: center;
  border-radius: 15px;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-size: 0.72rem;
}

.reach-channel.portal {
  top: 28px;
  left: 28px;
}

.reach-channel.website {
  top: 42px;
  right: 26px;
}

.reach-channel.app {
  bottom: 36px;
  left: 30px;
}

.reach-channel.mail {
  right: 30px;
  bottom: 46px;
}

.step-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #ef765f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.step-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.ai-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 16% 12%, rgba(239, 118, 95, 0.28), transparent 28%),
    radial-gradient(circle at 84% 36%, rgba(143, 169, 255, 0.32), transparent 31%),
    linear-gradient(145deg, #0d1730 0%, #151f42 58%, #10162d 100%);
}

.ai-section::before {
  position: absolute;
  inset: 10% -10% auto;
  height: 260px;
  background: linear-gradient(90deg, transparent, rgba(139, 216, 193, 0.12), transparent);
  content: "";
  filter: blur(30px);
  transform: rotate(-4deg);
}

.ai-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.ai-copy .eyebrow {
  color: #b8c9ff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
}

.ai-copy h2 {
  max-width: 760px;
  margin-bottom: 26px;
  color: #fff;
}

.ai-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(239, 244, 255, 0.76);
  font-size: 1.12rem;
}

.ai-proof-list {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.ai-proof-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #f6f8ff;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  font-weight: 750;
}

.ai-proof-list span {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #10203f;
  background: #8bd8c1;
  font-weight: 900;
}

.ai-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(185, 203, 255, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 48%, rgba(143, 169, 255, 0.23), transparent 34%),
    radial-gradient(circle at 72% 26%, rgba(139, 216, 193, 0.16), transparent 24%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.ai-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(185, 203, 255, 0.23);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-large {
  width: min(78%, 440px);
  aspect-ratio: 1;
}

.orbit-small {
  width: min(54%, 305px);
  aspect-ratio: 1;
  border-color: rgba(139, 216, 193, 0.24);
}

.ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 176px;
  aspect-ratio: 1;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(239, 118, 95, 0.94), rgba(143, 169, 255, 0.96));
  box-shadow: 0 24px 60px rgba(107, 126, 224, 0.38);
  text-align: center;
  transform: translate(-50%, -50%) rotate(-4deg);
}

.ai-core-kicker {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 18px;
  color: #16203d;
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-weight: 900;
}

.ai-core strong {
  margin-top: -16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.ai-node {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(246, 248, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 800;
}

.node-source-one {
  top: 20%;
  left: 12%;
}

.node-source-two {
  top: 54%;
  left: 8%;
}

.node-source-three {
  bottom: 16%;
  left: 20%;
}

.node-channel-one {
  top: 16%;
  right: 13%;
}

.node-channel-two {
  right: 9%;
  bottom: 24%;
}

.node-channel-three {
  top: 48%;
  right: 5%;
  color: #10203f;
  background: rgba(139, 216, 193, 0.95);
}

.ai-data-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(143, 169, 255, 0.74), transparent);
  transform-origin: center;
}

.line-one {
  top: 32%;
  right: 20%;
  left: 18%;
  transform: rotate(11deg);
}

.line-two {
  top: 54%;
  right: 13%;
  left: 13%;
}

.line-three {
  right: 18%;
  bottom: 28%;
  left: 20%;
  transform: rotate(-12deg);
}

@media (prefers-reduced-motion: no-preference) {
  .ai-core {
    animation: aiPulse 4.8s ease-in-out infinite;
  }

  .orbit-large {
    animation: aiOrbitGlow 8s ease-in-out infinite;
  }
}

@keyframes aiPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-4deg) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) rotate(-4deg) scale(1.035);
  }
}

@keyframes aiOrbitGlow {
  0%,
  100% {
    opacity: 0.75;
  }

  50% {
    opacity: 1;
  }
}

.audience-section {
  background: #fff;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 70px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 9px;
  color: var(--ink-soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-card {
  display: grid;
  min-height: 500px;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  border: 1px solid #e1e6f0;
  border-radius: var(--radius-md);
  background: #fff;
  transition:
    box-shadow 200ms ease,
    transform 200ms ease;
}

.audience-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.audience-art {
  position: relative;
  overflow: hidden;
}

.other .audience-art {
  background: linear-gradient(145deg, #edf9f5, #ddf3ec);
}

.network-hub,
.network-node {
  position: absolute;
  border-radius: 50%;
}

.network-hub {
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 35px rgba(47, 155, 124, 0.28);
  font-family: var(--font-display);
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.network-node {
  width: 48px;
  height: 48px;
  border: 8px solid #fff;
  background: var(--blue);
  box-shadow: var(--shadow-sm);
}

.network-node::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 130px;
  height: 3px;
  background: rgba(47, 155, 124, 0.25);
  content: "";
  transform-origin: left center;
}

.n1 {
  top: 25px;
  left: 20%;
}

.n1::after {
  transform: rotate(35deg);
}

.n2 {
  top: 30px;
  right: 20%;
}

.n2::after {
  transform: rotate(145deg);
}

.n3 {
  bottom: 25px;
  left: 20%;
}

.n3::after {
  transform: rotate(-35deg);
}

.n4 {
  right: 20%;
  bottom: 25px;
}

.n4::after {
  transform: rotate(-145deg);
}

.card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
}

.card-kicker {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-copy h3 {
  margin-bottom: 13px;
  font-size: 1.55rem;
}

.card-copy p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.card-copy a {
  margin-top: auto;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.benefits-section {
  background:
    radial-gradient(circle at 14% 30%, rgba(255, 227, 219, 0.55), transparent 22%),
    radial-gradient(circle at 86% 72%, rgba(213, 225, 255, 0.7), transparent 27%),
    #fafbff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(218, 225, 240, 0.9);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}

.benefit-card::after {
  position: absolute;
  top: -58px;
  right: -58px;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: rgba(143, 169, 255, 0.08);
  content: "";
}

.benefit-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(47, 103, 216, 0.12);
  border-radius: 18px;
  color: var(--blue);
  background: var(--blue-pale);
  box-shadow: 0 12px 26px rgba(45, 65, 108, 0.08);
}

.benefit-icon.coral {
  color: #cc5c48;
  background: var(--coral-pale);
}

.benefit-icon.green {
  color: #277e66;
  background: var(--green-pale);
}

.benefit-icon.violet {
  color: #6653b3;
  background: var(--violet-pale);
}

.benefit-icon.orange {
  color: #bf7048;
  background: #fff2e9;
}

.benefit-icon.blue {
  color: #2f67d8;
  background: #eef4ff;
}

.benefit-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-card h3 {
  margin-bottom: 12px;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.embedded-faq-section {
  background:
    radial-gradient(circle at 14% 28%, rgba(255, 222, 213, 0.54), transparent 24%),
    radial-gradient(circle at 86% 74%, rgba(208, 220, 255, 0.72), transparent 31%),
    linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
}

.embedded-faq-card {
  min-height: clamp(520px, 70vw, 760px);
  padding: clamp(10px, 1.4vw, 16px);
  overflow: hidden;
  border: 1px solid rgba(218, 225, 240, 0.95);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(45, 65, 108, 0.12);
  backdrop-filter: blur(12px);
}

.embedded-faq-card iframe {
  display: block;
  min-height: inherit;
  background: #fff;
}

.demo-cta-section {
  padding-top: 40px;
  background: #fff;
}

.demo-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 72px) clamp(28px, 6vw, 82px);
  border: 1px solid rgba(203, 216, 248, 0.65);
  border-radius: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 222, 213, 0.62), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(208, 220, 255, 0.78), transparent 31%),
    linear-gradient(135deg, #f7f9ff 0%, #edf3ff 100%);
  box-shadow: 0 26px 60px rgba(36, 58, 112, 0.09);
  text-align: center;
}

.demo-cta-card::before,
.demo-cta-card::after {
  position: absolute;
  border: 1px solid rgba(143, 169, 255, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.34);
  content: "";
}

.demo-cta-card::before {
  top: 34px;
  left: 8%;
  width: 118px;
  height: 74px;
  transform: rotate(-7deg);
}

.demo-cta-card::after {
  right: 8%;
  bottom: 32px;
  width: 138px;
  height: 82px;
  transform: rotate(6deg);
}

.demo-cta-card h2 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto 22px;
  font-size: clamp(2.45rem, 5vw, 4.45rem);
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.demo-cta-card p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.demo-cta-button {
  position: relative;
  z-index: 1;
  min-height: 60px;
  padding-inline: 34px;
  border-radius: 22px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.demo-cta-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.trust-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(74, 111, 200, 0.55), transparent 30%),
    linear-gradient(145deg, #101c38, #192a52);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.trust-copy h2 {
  margin-bottom: 26px;
}

.trust-copy h2 span {
  color: #ff997e;
}

.trust-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: #ced8ee;
}

.trust-list {
  display: grid;
  gap: 0;
  margin: 35px 0 38px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(216, 226, 247, 0.16);
  color: #eef3ff;
  font-size: 0.95rem;
}

.trust-list li span {
  color: #8fb2ff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
}

.trust-diagram {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.trust-ring {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(164, 190, 244, 0.36);
  border-radius: 50%;
}

.trust-ring > span {
  position: absolute;
  top: 18px;
  left: 50%;
  padding: 5px 10px;
  border-radius: 99px;
  color: #d7e3ff;
  background: #192a52;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.ring-outer {
  width: 500px;
  height: 500px;
  background: rgba(85, 124, 214, 0.06);
  box-shadow:
    0 0 0 35px rgba(85, 124, 214, 0.025),
    inset 0 0 60px rgba(85, 124, 214, 0.08);
}

.ring-three {
  width: 380px;
  height: 380px;
  background: rgba(100, 136, 220, 0.08);
}

.ring-two {
  width: 270px;
  height: 270px;
  background: rgba(122, 98, 206, 0.1);
}

.ring-one {
  width: 168px;
  height: 168px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-center {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 31px;
  color: #fff;
  background: linear-gradient(145deg, #6b7ad9, #8c64c7);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
  font-family: var(--font-display);
  font-weight: 700;
}

.trust-badge {
  position: absolute;
  right: 3%;
  bottom: 13%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  font-size: 0.8rem;
  font-weight: 700;
}

.trust-badge svg {
  width: 23px;
  fill: none;
  stroke: #8fd8c1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.implementation-section {
  background: #fff;
}

.timeline {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 42px 0;
  border-top: 1px solid #dde3ef;
}

.timeline li:last-child {
  border-bottom: 1px solid #dde3ef;
}

.timeline-number {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid #ccd6e9;
  border-radius: 18px;
  color: var(--blue-dark);
  background: var(--surface-soft);
  font-family: var(--font-display);
  font-weight: 700;
}

.timeline-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.timeline p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.faq-section {
  background: linear-gradient(180deg, #f6f4ff, #f8f9ff);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 24px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.text-link {
  padding: 5px 0;
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.accordion {
  border-top: 1px solid #d9deeb;
}

.accordion-item {
  border-bottom: 1px solid #d9deeb;
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item h3 button {
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.accordion-item h3 button span {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid #c9d2e4;
  border-radius: 50%;
}

.accordion-item h3 button span::before,
.accordion-item h3 button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--blue-dark);
  content: "";
  transform: translate(-50%, -50%);
}

.accordion-item h3 button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.accordion-item h3 button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  padding: 0 60px 26px 0;
}

.accordion-panel p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.cta-section {
  padding: 110px 0;
  background: #fff;
}

.cta-card {
  position: relative;
  display: grid;
  min-height: 560px;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dae3f2;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 226, 218, 0.9), transparent 30%),
    radial-gradient(circle at 86% 65%, rgba(196, 218, 255, 0.9), transparent 42%),
    #f7f8ff;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: 70px;
}

.cta-content h2 {
  margin-bottom: 24px;
}

.cta-content > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: var(--ink-soft);
}

.cta-path {
  position: absolute;
  inset: 0;
}

.cta-path svg {
  width: 100%;
  height: 100%;
}

.cta-path path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.75);
  stroke-linecap: round;
  stroke-width: 24px;
}

.cta-orbit {
  position: relative;
  z-index: 2;
  width: 360px;
  height: 360px;
  justify-self: center;
  border: 2px solid rgba(47, 103, 216, 0.2);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.cta-orbit::before {
  position: absolute;
  inset: 52px;
  border: 2px solid rgba(122, 98, 206, 0.2);
  border-radius: 50%;
  content: "";
}

.cta-core,
.cta-node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  transform: rotate(12deg);
}

.cta-core {
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  color: #fff;
  background: var(--violet);
  box-shadow: 0 22px 48px rgba(122, 98, 206, 0.3);
  transform: translate(-50%, -50%) rotate(12deg);
}

.cta-node {
  width: 75px;
  height: 75px;
  border: 7px solid rgba(255, 255, 255, 0.88);
  color: var(--blue-dark);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 0.7rem;
}

.node-website {
  top: -15px;
  left: 50%;
}

.node-epd {
  right: -18px;
  bottom: 18%;
}

.node-app {
  bottom: 3%;
  left: -5px;
}

.site-footer {
  padding-top: 75px;
  color: #fff;
  background: #111d39;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 65px;
}

.footer-brand-logo {
  width: clamp(168px, 16vw, 196px);
  padding: 10px 12px;
  border-radius: 16px;
  background: #fff;
}

.footer-brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer .brand-copy strong {
  color: #ff8b73;
}

.site-footer .brand-copy span {
  color: #9abaff;
}

.site-footer .orbit-a {
  border-color: #7ca4ff;
}

.footer-brand p {
  max-width: 360px;
  margin: 25px 0 0;
  color: #b8c4dc;
  font-size: 0.92rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column strong {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.footer-column a,
.footer-column button {
  padding: 0;
  border: 0;
  color: #b8c4dc;
  background: transparent;
  font-size: 0.87rem;
  text-decoration: none;
  cursor: pointer;
}

.footer-column a:hover,
.footer-column button:hover {
  color: #fff;
}

.footer-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: #b8c4dc;
  font-size: 0.87rem;
  font-style: normal;
  line-height: 1.35;
}

.footer-address-label {
  margin-top: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #91a0bd;
  font-size: 0.78rem;
}

.footer-bottom div {
  display: flex;
  gap: 25px;
}

.footer-bottom a {
  text-decoration: none;
}

.contact-dialog {
  width: min(930px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 40px 120px rgba(10, 25, 55, 0.36);
}

.contact-dialog::backdrop {
  background: rgba(11, 24, 50, 0.64);
  backdrop-filter: blur(6px);
}

.dialog-layout {
  display: grid;
  min-height: 610px;
  grid-template-columns: 0.8fr 1fr;
}

.dialog-intro {
  position: relative;
  padding: 55px 45px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(96, 133, 220, 0.55), transparent 28%),
    linear-gradient(145deg, #142345, #1c315e);
}

.dialog-intro .eyebrow {
  color: #b7cfff;
}

.dialog-intro h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.dialog-intro > p:not(.eyebrow) {
  color: #ced8ed;
  font-size: 0.96rem;
}

.dialog-close {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.4rem;
  cursor: pointer;
}

.dialog-assurances {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}

.dialog-assurances span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e5ecfa;
  font-size: 0.84rem;
}

.dialog-assurances span::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #10203f;
  background: #8fd8c1;
  content: "✓";
  font-size: 0.68rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 45px;
}

.contact-form[hidden],
.form-success[hidden] {
  display: none;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-name-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row label {
  font-size: 0.83rem;
  font-weight: 700;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #cdd6e6;
  border-radius: 11px;
  color: var(--ink);
  background: #fbfcff;
}

.form-row input {
  height: 48px;
  padding: 0 13px;
}

.form-row textarea {
  padding: 12px 13px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(47, 103, 216, 0.16);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: #707b91;
  font-size: 0.72rem;
}

.form-status {
  margin: 0;
  border-left: 3px solid var(--coral);
  padding: 8px 10px;
  color: #8b2f21;
  background: #fff3ef;
  font-size: 0.78rem;
  font-weight: 600;
}

.form-submit[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.72;
}

.form-success {
  align-self: center;
  padding: 50px;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 2rem;
  font-weight: 700;
}

.form-success h3 {
  font-size: 1.8rem;
}

.form-success p {
  color: var(--ink-soft);
}

/* Secondary pages */

body .site-header.subpage-site-header {
  top: 16px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: none;
}

body .site-header.subpage-site-header .header-inner {
  width: min(1280px, calc(100% - 32px));
  min-height: 80px;
  padding: 0 13px 0 18px;
  border: 1px solid rgba(177, 190, 214, 0.35);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 46px rgba(13, 34, 75, 0.1);
  backdrop-filter: blur(22px) saturate(150%);
  pointer-events: auto;
}

body .site-header.subpage-site-header.is-scrolled .header-inner {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(13, 34, 75, 0.14);
}

body[data-page="sociaal-domein"] .site-header {
  top: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="sociaal-domein"] .header-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 70px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(206, 216, 236, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 50px rgba(28, 48, 91, 0.1);
  backdrop-filter: blur(18px);
}

.subpage-header {
  grid-template-columns: auto 1fr auto;
}

.subpage-header .main-nav {
  gap: 22px;
}

.subhero {
  position: relative;
  min-height: 760px;
  padding: 175px 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 40%, rgba(202, 222, 255, 0.78), transparent 27%),
    radial-gradient(circle at 90% 35%, rgba(255, 218, 222, 0.72), transparent 31%),
    #f9faff;
}

.placeholder-subpage {
  display: grid;
  min-height: 72vh;
  align-items: center;
}

.placeholder-panel {
  max-width: 860px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid #dfe6f4;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 222, 213, 0.78), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(208, 220, 255, 0.9), transparent 36%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.placeholder-panel h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.placeholder-panel p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.17rem;
}

.subhero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 500px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.subhero-copy h1 {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(3.1rem, 5.5vw, 5.6rem);
}

.subhero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.hero-actions.left {
  justify-content: flex-start;
}

.layer-stack {
  position: relative;
  min-height: 480px;
  perspective: 1200px;
}

.layer-stack::before {
  position: absolute;
  inset: 14% 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 112, 216, 0.23), transparent 68%);
  filter: blur(25px);
  content: "";
}

.layer-card {
  position: absolute;
  right: 4%;
  left: 4%;
  display: grid;
  min-height: 145px;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 4px 18px;
  padding: 25px 32px;
  border: 1px solid rgba(194, 205, 229, 0.9);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  transform: rotateX(58deg) rotateZ(-5deg);
}

.layer-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
}

.layer-card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.layer-card small {
  color: var(--ink-soft);
}

.layer-sources {
  top: 0;
}

.layer-context {
  top: 125px;
  z-index: 2;
}

.layer-context > span {
  color: #5e4caa;
  background: var(--violet-pale);
}

.layer-channels {
  top: 250px;
  z-index: 3;
}

.layer-channels > span {
  color: #277e66;
  background: var(--green-pale);
}

.page-section {
  padding: clamp(95px, 11vw, 155px) 0;
}

.tint-section {
  background:
    radial-gradient(circle at 12% 35%, rgba(255, 229, 221, 0.55), transparent 26%),
    radial-gradient(circle at 86% 65%, rgba(214, 225, 255, 0.72), transparent 30%),
    #f8f9ff;
}

.detail-steps {
  border-top: 1px solid var(--border);
}

.detail-step {
  display: grid;
  grid-template-columns: 100px 1.25fr 0.75fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.detail-step-number {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 18px;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
}

.detail-step h3 {
  margin-bottom: 13px;
  font-size: 1.7rem;
}

.detail-step p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.detail-step ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-step li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: #4f5c76;
  font-size: 0.9rem;
}

.detail-step li::before {
  position: absolute;
  top: 16px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.split-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.split-feature.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.split-feature.reverse .split-feature-copy {
  order: 2;
}

.split-feature-copy h2,
.outcomes-copy h2 {
  margin-bottom: 25px;
}

.split-feature-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.pilot-board {
  padding: 40px;
  border: 1px solid #d8e0ef;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.pilot-label {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pilot-board h3 {
  margin: 10px 0 30px;
  font-size: 1.65rem;
}

.pilot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid #e3e8f1;
  font-size: 0.9rem;
}

.pilot-row span {
  color: var(--ink-soft);
}

.pilot-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 14px 16px;
  border-radius: 13px;
  color: #286d5a;
  background: var(--green-pale);
  font-size: 0.82rem;
  font-weight: 700;
}

.pilot-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 155, 124, 0.13);
}

.next-page-cta {
  padding: 80px 0;
  background: #fff;
}

.compact-cta {
  display: flex;
  min-height: 290px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 55px 65px;
  overflow: hidden;
  border: 1px solid #d9e2f1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 223, 214, 0.86), transparent 30%),
    radial-gradient(circle at 86% 70%, rgba(204, 220, 255, 0.9), transparent 34%),
    #f8f9ff;
}

.compact-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.compact-cta .button {
  flex: 0 0 auto;
}

.audience-subhero {
  min-height: 790px;
}

.hospital-page {
  background:
    radial-gradient(circle at 12% 40%, rgba(255, 222, 213, 0.85), transparent 29%),
    radial-gradient(circle at 90% 35%, rgba(217, 228, 255, 0.8), transparent 33%),
    #fafbff;
}

.care-path-visual {
  position: relative;
  display: flex;
  min-height: 490px;
  flex-direction: column;
  justify-content: space-around;
  padding: 35px;
}

.care-path-line {
  position: absolute;
  top: 13%;
  bottom: 13%;
  left: 76px;
  width: 10px;
  border-radius: 99px;
  background: linear-gradient(var(--coral), var(--blue), var(--green));
  opacity: 0.65;
}

.care-stop {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 3px 18px;
  padding: 20px;
  border: 1px solid rgba(205, 215, 234, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.care-stop > span {
  display: grid;
  width: 54px;
  height: 54px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
}

.care-stop:first-of-type > span {
  background: var(--coral);
}

.care-stop:last-of-type > span {
  background: var(--green);
}

.care-stop strong {
  font-family: var(--font-display);
}

.care-stop small {
  color: var(--ink-soft);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.scenario-card {
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
}

.scenario-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 70px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
}

.scenario-card:nth-child(2) .scenario-icon {
  color: #6250ad;
  background: var(--violet-pale);
}

.scenario-card:nth-child(3) .scenario-icon {
  color: #286d5a;
  background: var(--green-pale);
}

.scenario-card h3 {
  margin-bottom: 13px;
}

.scenario-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.outcomes-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.outcome-list {
  border-top: 1px solid #d9e1ef;
}

.outcome-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #d9e1ef;
}

.outcome-item > span {
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
}

.outcome-item h3 {
  margin-bottom: 9px;
}

.outcome-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.jgz-page {
  background:
    radial-gradient(circle at 13% 40%, rgba(215, 233, 255, 0.94), transparent 29%),
    radial-gradient(circle at 90% 40%, rgba(224, 215, 255, 0.82), transparent 32%),
    #f9fbff;
}

.language-visual {
  position: relative;
  min-height: 500px;
}

.language-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 160px;
  height: 160px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--violet);
  box-shadow:
    0 24px 55px rgba(122, 98, 206, 0.3),
    0 0 0 34px rgba(122, 98, 206, 0.08);
  font-family: var(--font-display);
  transform: translate(-50%, -50%);
}

.language-center span {
  font-size: 1.25rem;
  font-weight: 700;
}

.language-center small {
  margin-top: 5px;
  font-family: var(--font-body);
  font-size: 0.68rem;
}

.language-card {
  position: absolute;
  display: flex;
  min-width: 180px;
  flex-direction: column;
  padding: 19px 22px;
  border: 1px solid #d8e0ef;
  border-radius: 18px 18px 18px 5px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.language-card strong {
  color: var(--blue-dark);
  font-family: var(--font-display);
}

.language-card span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.lang-nl {
  top: 5%;
  left: 4%;
}

.lang-en {
  top: 9%;
  right: 0;
}

.lang-ar {
  right: 4%;
  bottom: 6%;
}

.lang-pro {
  bottom: 8%;
  left: 0;
}

.moment-board {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 35px;
  border: 1px solid #d8e0ef;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.moment-board > div:not(.moment-line) {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px;
  border-radius: 15px;
  background: #f7f9ff;
}

.moment-board span {
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.moment-board strong {
  font-family: var(--font-display);
}

.zbc-page {
  background:
    radial-gradient(circle at 13% 45%, rgba(235, 220, 255, 0.86), transparent 30%),
    radial-gradient(circle at 90% 35%, rgba(255, 223, 213, 0.78), transparent 32%),
    #fbfaff;
}

.journey-phone {
  position: relative;
  min-height: 550px;
}

.phone-shell {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 275px;
  min-height: 520px;
  padding: 35px 24px 25px;
  border: 9px solid #fff;
  border-radius: 38px;
  background: #f7f9ff;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.phone-top {
  width: 75px;
  height: 9px;
  margin: -17px auto 30px;
  border-radius: 99px;
  background: #d5ddeb;
}

.phone-kicker {
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-shell h3 {
  margin: 10px 0 28px;
  font-size: 1.45rem;
}

.phone-step {
  margin-bottom: 12px;
  padding: 13px;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
  color: var(--ink-soft);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.phone-step.done {
  color: #28735f;
  background: var(--green-pale);
}

.phone-step.active {
  border-color: #9bb7ef;
  color: var(--blue-dark);
  background: var(--blue-pale);
}

.phone-shell button {
  width: 100%;
  min-height: 43px;
  margin-top: 16px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
}

.phone-card {
  position: absolute;
  z-index: 3;
  padding: 17px;
  border: 1px solid #d8e0ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 700;
}

.card-prep {
  top: 12%;
  left: -2%;
  transform: rotate(-6deg);
}

.card-care {
  right: -1%;
  bottom: 13%;
  transform: rotate(5deg);
}

.journey-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journey-phase {
  position: relative;
  min-height: 390px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
}

.journey-phase::after {
  position: absolute;
  right: -40px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border: 22px solid rgba(47, 103, 216, 0.07);
  border-radius: 50%;
  content: "";
}

.journey-phase > span {
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
}

.journey-phase h3 {
  margin: 55px 0 15px;
  font-size: 1.55rem;
}

.journey-phase p {
  color: var(--ink-soft);
}

.journey-phase strong {
  display: block;
  margin-top: 35px;
  color: var(--blue-dark);
  font-size: 0.77rem;
}

.trust-subhero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 35%, rgba(79, 112, 194, 0.58), transparent 32%),
    linear-gradient(145deg, #101c38, #1a2e59);
}

.trust-subhero .subhero-copy h1 span {
  color: #ff997e;
}

.trust-subhero .subhero-copy > p:not(.eyebrow) {
  color: #ced8ee;
}

.trust-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.trust-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.architecture-stack {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: center;
  perspective: 1000px;
}

.arch-layer {
  position: relative;
  display: flex;
  min-height: 95px;
  align-items: center;
  gap: 18px;
  margin-top: -8px;
  padding: 20px 30px;
  border: 1px solid rgba(176, 198, 245, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-weight: 600;
  transform: rotateX(52deg) rotateZ(-5deg);
}

.arch-layer span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: #12203f;
  background: #9bb9ff;
  font-size: 0.72rem;
}

.arch-layer.core {
  border-color: rgba(255, 153, 126, 0.45);
  background: rgba(255, 153, 126, 0.13);
}

.arch-layer.core span {
  background: #ff997e;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.principle-card {
  min-height: 290px;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
}

.principle-card > span {
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.principle-card h3 {
  margin: 65px 0 13px;
  font-size: 1.55rem;
}

.principle-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.assurance-board {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  padding: 60px;
  border: 1px solid #d9e1ef;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
}

.assurance-board h2 {
  margin-bottom: 0;
}

.assurance-board ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.assurance-board li {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #e0e5ef;
  color: var(--ink-soft);
}

.assurance-board li span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 0.7rem;
}

.contact-page {
  min-height: 100vh;
  padding: 160px 0 110px;
  background:
    radial-gradient(circle at 10% 28%, rgba(205, 224, 255, 0.8), transparent 28%),
    radial-gradient(circle at 88% 68%, rgba(255, 220, 218, 0.8), transparent 30%),
    #f8f9ff;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 85px;
}

.contact-page-intro h1 {
  max-width: 690px;
  margin: 0 0 30px;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
}

.contact-page-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.13rem;
}

.contact-page-intro ul {
  display: grid;
  gap: 14px;
  margin: 35px 0;
  padding: 0;
  list-style: none;
}

.contact-page-intro li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
}

.contact-page-intro li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  content: "✓";
  font-size: 0.65rem;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 28px;
  border-top: 1px solid #ced8e8;
}

.contact-direct span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.contact-direct a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-page-form-wrap {
  overflow: hidden;
  border: 1px solid #d5deed;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-page-form {
  padding: 45px;
}

.form-heading {
  margin-bottom: 12px;
}

.form-heading span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 8px 0 0;
  font-size: 1.75rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.16, 0.8, 0.24, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.js .hero-lead.reveal {
  --reveal-delay: 90ms;
}

.js .hero-story-carousel.reveal,
.js .logo-marquee.reveal,
.js .relevance-visual.reveal,
.js .ai-visual.reveal,
.js .demo-cta-card.reveal {
  --reveal-delay: 140ms;
}

.js .ai-proof-list.reveal {
  --reveal-delay: 90ms;
}

.js .step-card.reveal:nth-child(2),
.js .audience-card.reveal:nth-child(2),
.js .benefit-card.reveal:nth-child(2) {
  --reveal-delay: 90ms;
}

.js .step-card.reveal:nth-child(3),
.js .audience-card.reveal:nth-child(3),
.js .benefit-card.reveal:nth-child(3) {
  --reveal-delay: 160ms;
}

.js .benefit-card.reveal:nth-child(4) {
  --reveal-delay: 40ms;
}

.js .benefit-card.reveal:nth-child(5) {
  --reveal-delay: 120ms;
}

.js .benefit-card.reveal:nth-child(6) {
  --reveal-delay: 200ms;
}

@keyframes lineFlow {
  to {
    stroke-dashoffset: -120;
  }
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: auto auto 1fr auto;
    gap: 20px;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    grid-column: 4;
    place-content: center;
    gap: 6px;
    border: 1px solid #d3dbea;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid #d8e0ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .header-cta {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .flow-map {
    gap: 3%;
  }

  .trust-layout,
  .faq-layout {
    gap: 50px;
  }

  .ring-outer {
    width: 430px;
    height: 430px;
  }

  .ring-three {
    width: 330px;
    height: 330px;
  }

  .ring-two {
    width: 235px;
    height: 235px;
  }

  .ring-one {
    width: 145px;
    height: 145px;
  }

  .subpage-header {
    grid-template-columns: auto auto 1fr auto;
  }

  .subhero-grid {
    gap: 45px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  body {
    font-size: 17px;
  }

  body .site-header.subpage-site-header {
    top: 10px;
  }

  body .site-header.subpage-site-header .header-inner {
    width: calc(100% - 20px);
  }

  body .site-header.subpage-site-header .main-nav {
    top: 88px;
    right: 10px;
    left: 10px;
    border-radius: 22px;
  }

  body[data-page="sociaal-domein"] .site-header {
    top: 10px;
  }

  body[data-page="sociaal-domein"] .header-inner {
    width: calc(100% - 20px);
  }

  body[data-page="sociaal-domein"] .main-nav {
    top: 88px;
    right: 10px;
    left: 10px;
    border-radius: 22px;
  }

  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .risk-reducer {
    flex-wrap: wrap;
    row-gap: 7px;
  }

  .hero-story-carousel {
    min-height: clamp(310px, 50vw, 380px);
    margin-top: 78px;
  }

  .story-slide {
    width: min(440px, 70vw);
  }

  .story-slide.is-prev {
    transform: translate(-96%, -49%) scale(0.78);
  }

  .story-slide.is-next {
    transform: translate(-4%, -49%) scale(0.78);
  }

  .story-caption {
    right: 18px;
    bottom: clamp(50px, 8vw, 76px);
    left: 18px;
    padding: 15px 16px 21px;
  }

  .product-layout {
    min-height: 500px;
    grid-template-columns: 48px 1fr;
  }

  .context-canvas {
    padding: 22px 18px;
  }

  .flow-map {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flow-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-label {
    grid-column: 1 / -1;
  }

  .flow-card {
    min-height: 105px;
    flex-direction: column;
    align-items: flex-start;
  }

  .chip-core {
    display: flex;
    margin-block: 5px;
  }

  .chip-core .flow-label {
    position: static;
    align-self: flex-start;
  }

  .core-card {
    width: 100%;
    min-height: 140px;
  }

  .flow-lines {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    justify-content: flex-start;
  }

  .proof-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #e5e9f2;
  }

  .relevance-visual,
  .trust-layout,
  .faq-layout,
  .cta-card,
  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .relevance-visual {
    gap: 12px;
    min-height: auto;
  }

  .relevance-visual::before,
  .relevance-visual::after,
  .flow-connector {
    display: none;
  }

  .source-cloud,
  .patient-needs {
    min-height: 300px;
  }

  .steps-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .ai-layout {
    grid-template-columns: 1fr;
  }

  .ai-visual {
    min-height: 430px;
  }

  .step-card {
    min-height: auto;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .trust-copy {
    position: relative;
    z-index: 2;
  }

  .trust-diagram {
    min-height: 480px;
  }

  .faq-intro {
    position: static;
  }

  .cta-card {
    padding-bottom: 35px;
  }

  .cta-content {
    padding: 55px 38px 20px;
  }

  .cta-orbit {
    width: 330px;
    height: 330px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .dialog-intro {
    padding: 75px 35px 35px;
  }

  .contact-form {
    padding: 35px;
  }

  .subpage-header {
    grid-template-columns: auto 1fr auto;
  }

  .subhero {
    padding-top: 140px;
  }

  .subhero-grid,
  .split-feature,
  .split-feature.reverse,
  .outcomes-layout,
  .assurance-board,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .split-feature.reverse .split-feature-copy {
    order: initial;
  }

  .subhero-grid {
    gap: 30px;
  }

  .subhero-copy {
    text-align: center;
  }

  .subhero-copy .eyebrow,
  .hero-actions.left {
    justify-content: center;
  }

  .subhero-copy h1,
  .subhero-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .layer-stack,
  .care-path-visual,
  .language-visual,
  .journey-phone,
  .architecture-stack {
    min-height: 500px;
  }

  .detail-step {
    grid-template-columns: 75px 1fr;
  }

  .detail-step ul {
    grid-column: 2;
  }

  .scenario-grid,
  .journey-detail {
    grid-template-columns: 1fr;
  }

  .scenario-card {
    min-height: 280px;
  }

  .scenario-icon {
    margin-bottom: 45px;
  }

  .compact-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .assurance-board {
    padding: 40px;
  }

  .contact-page {
    padding-top: 130px;
  }

  .contact-page-intro {
    text-align: center;
  }

  .contact-page-intro .eyebrow {
    justify-content: center;
  }

  .contact-page-intro h1 {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-page-intro li {
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.1rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section {
    padding-block: 85px;
  }

  .site-header .brand-copy {
    display: none;
  }

  .hero {
    padding-top: 125px;
    padding-bottom: 75px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .risk-reducer {
    display: grid;
    gap: 8px;
  }

  .risk-reducer span {
    justify-content: center;
  }

  .risk-reducer span:not(:last-child)::after {
    display: none;
  }

  .hero-story-carousel {
    min-height: clamp(290px, 82vw, 345px);
    margin-top: 54px;
    overflow: visible;
  }

  .story-slide {
    --story-radius: 22px;
    width: min(385px, 92vw);
    border-radius: var(--story-radius);
  }

  .story-slide.is-prev,
  .story-slide.is-next {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }

  .story-caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 8px 10px 10px;
    border-radius: 16px;
  }

  .story-caption--with-result {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 9px 12px 11px;
    border-radius: 0 0 var(--story-radius) var(--story-radius);
  }

  .story-caption--with-result .story-caption-result {
    margin-top: 7px;
  }

  .story-caption p {
    font-size: 0.82rem;
  }

  .hero-product {
    margin-top: 52px;
  }

  .window-status {
    display: none;
  }

  .product-layout {
    display: block;
    min-height: auto;
  }

  .product-sidebar {
    display: none;
  }

  .context-canvas {
    padding: 18px 12px 22px;
  }

  .canvas-heading {
    padding-inline: 4px;
  }

  .flow-column {
    display: flex;
  }

  .flow-card {
    min-height: 74px;
    flex-direction: row;
    align-items: center;
  }

  .sources .flow-card:nth-of-type(3),
  .channels .flow-card:nth-of-type(3) {
    display: none;
  }

  .flow-label {
    align-self: flex-start;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .relevance-visual {
    padding: 22px;
  }

  .source-cloud,
  .patient-needs {
    min-height: auto;
    gap: 10px;
  }

  .source-card,
  .need-card {
    position: static;
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .need-card.active {
    transform: none;
  }

  .step-card,
  .card-copy,
  .benefit-card {
    padding: 24px;
  }

  .demo-cta-section {
    padding-top: 18px;
  }

  .embedded-faq-card {
    min-height: 620px;
    border-radius: 28px;
  }

  .demo-cta-card {
    border-radius: 30px;
  }

  .demo-cta-card h2 {
    margin-bottom: 22px;
  }

  .demo-cta-card::before,
  .demo-cta-card::after {
    display: none;
  }

  .demo-cta-button {
    width: 100%;
    min-height: 62px;
    padding-inline: 22px;
    border-radius: 22px;
  }

  .audience-card {
    min-height: 490px;
    grid-template-rows: 230px 1fr;
  }

  .benefits-grid {
    gap: 14px;
  }

  .benefit-card {
    min-height: 235px;
  }

  .ai-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .ai-proof-list li {
    width: 100%;
  }

  .ai-visual {
    min-height: 340px;
    border-radius: 28px;
  }

  .ai-core {
    width: 142px;
    padding: 22px;
    border-radius: 34px;
  }

  .ai-core strong {
    font-size: 1rem;
  }

  .ai-node {
    padding: 8px 11px;
    font-size: 0.72rem;
  }

  .node-source-one {
    left: 7%;
  }

  .node-source-two {
    left: 4%;
  }

  .node-channel-three {
    right: 3%;
  }

  .trust-layout {
    gap: 15px;
  }

  .trust-diagram {
    min-height: 370px;
    transform: scale(0.78);
  }

  .ring-outer {
    width: 410px;
    height: 410px;
  }

  .timeline li {
    grid-template-columns: 58px 1fr;
    gap: 17px;
    padding: 32px 0;
  }

  .timeline-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .timeline h3 {
    font-size: 1.35rem;
  }

  .accordion-item h3 button {
    min-height: 76px;
    font-size: 0.96rem;
  }

  .cta-section {
    padding: 70px 0;
  }

  .cta-content {
    padding: 42px 25px 10px;
  }

  .cta-orbit {
    width: 280px;
    height: 280px;
    transform: scale(0.9) rotate(-12deg);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .contact-dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 20px;
  }

  .dialog-intro,
  .contact-form {
    padding-right: 25px;
    padding-left: 25px;
  }

  .form-name-grid {
    grid-template-columns: 1fr;
  }

  .subhero {
    min-height: auto;
    padding-top: 125px;
    padding-bottom: 80px;
  }

  .subhero-copy h1,
  .contact-page-intro h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.1rem);
  }

  .subhero-copy .hero-actions {
    flex-direction: column;
  }

  .subhero-copy .button {
    width: 100%;
  }

  .layer-stack {
    min-height: 390px;
    transform: scale(0.9);
  }

  .care-path-visual {
    min-height: 430px;
    padding: 15px;
  }

  .care-path-line {
    left: 46px;
  }

  .care-stop {
    grid-template-columns: 45px 1fr;
    padding: 14px;
  }

  .care-stop > span {
    width: 42px;
    height: 42px;
  }

  .language-card {
    min-width: 145px;
    padding: 14px;
  }

  .language-center {
    width: 130px;
    height: 130px;
  }

  .phone-shell {
    width: 250px;
  }

  .card-prep {
    left: -5%;
  }

  .card-care {
    right: -4%;
  }

  .detail-step {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .detail-step ul {
    grid-column: auto;
  }

  .compact-cta {
    padding: 38px 25px;
  }

  .compact-cta .button {
    width: 100%;
  }

  .assurance-board,
  .pilot-board {
    padding: 27px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 245px;
    padding: 28px;
  }

  .principle-card h3 {
    margin-top: 45px;
  }

  .contact-page {
    padding: 120px 0 75px;
  }

  .contact-page-form {
    padding: 28px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition-delay: 0ms !important;
    will-change: auto !important;
  }
}

/* JGZ 0–4 / Sociaal domein */
.jgz04-hero {
  --font-display: "Figtree", sans-serif;
  position: relative;
  min-height: clamp(840px, 88vh, 940px);
  overflow: hidden;
  padding: 184px 0 82px;
  background:
    radial-gradient(circle at 9% 42%, rgba(181, 214, 255, 0.62), transparent 28%),
    radial-gradient(circle at 88% 27%, rgba(255, 211, 202, 0.66), transparent 27%),
    linear-gradient(180deg, #fdfdff 0%, #f4f7ff 78%, #fafbff 100%);
}

.jgz04-hero::after {
  position: absolute;
  top: 102px;
  right: -150px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(89, 116, 188, 0.15);
  border-radius: 42% 58% 65% 35%;
  content: "";
  transform: rotate(18deg);
}

.jgz04-hero-glow {
  position: absolute;
  top: 160px;
  left: 44%;
  width: 720px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.9), transparent 68%);
  filter: blur(20px);
}

.jgz04-relevance-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
}

.jgz04-relevance-line path {
  fill: none;
  stroke: #4d7feb;
  stroke-dasharray: 1 17;
  stroke-linecap: round;
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(40, 100, 240, 0.35));
  animation: jgz04LineFlow 15s linear infinite;
}

.jgz04-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(460px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 5vw, 70px);
}

.jgz04-hero-copy h1 {
  max-width: 820px;
  margin: 0 0 36px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 5.65vw, 5.9rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.92;
  overflow-wrap: normal;
  text-wrap: balance;
  hyphens: none;
}

.jgz04-hero-lead {
  max-width: 680px;
  margin-bottom: 38px;
  color: #3b4966;
  font-size: clamp(1.12rem, 1.35vw, 1.32rem);
  font-weight: 500;
  line-height: 1.58;
  text-wrap: pretty;
}

.jgz04-hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.jgz04-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #233657;
  font-weight: 700;
  text-decoration: none;
}

.jgz04-text-link span {
  transition: transform 180ms ease;
}

.jgz04-text-link:hover span {
  transform: translateY(3px);
}

.jgz04-hero-stage {
  display: grid;
  min-height: 0;
}

.jgz04-hero-photo {
  position: relative;
  aspect-ratio: 1 / 1.02;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 36px;
  background: #dce5f0;
  box-shadow: 0 32px 75px rgba(34, 62, 117, 0.17);
}

.jgz04-hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 21, 47, 0.08), transparent 44%);
  content: "";
  pointer-events: none;
}

.jgz04-hero-photo picture,
.jgz04-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.jgz04-hero-photo img {
  object-fit: cover;
  object-position: 52% center;
}

.jgz04-perspectives-section {
  --font-display: "Figtree", sans-serif;
  position: relative;
  overflow: hidden;
  background: #f4f7ff;
}

.jgz04-perspectives-section::before {
  position: absolute;
  top: 13%;
  right: -11%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(74, 117, 216, 0.15);
  border-radius: 50%;
  content: "";
}

.jgz04-perspectives-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 56px;
}

.jgz04-perspectives-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.jgz04-perspectives-heading h2 {
  max-width: 800px;
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-wrap: balance;
}

.jgz04-perspectives-heading > p:last-child {
  margin: 0 0 5px;
  color: #53617a;
  font-size: 1.06rem;
  line-height: 1.6;
}

.jgz04-perspectives-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.75fr);
  align-items: center;
  gap: clamp(34px, 6vw, 100px);
}

.jgz04-perspectives-visual {
  min-width: 0;
}

.jgz04-perspectives-image-wrap {
  position: relative;
  aspect-ratio: 1.26;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  background: #dce6f5;
  box-shadow: 0 30px 80px rgba(31, 58, 113, 0.18);
}

.jgz04-perspectives-image-wrap picture,
.jgz04-perspectives-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
}

.jgz04-perspectives-image-wrap img {
  object-fit: cover;
  object-position: center;
  transition: opacity 260ms ease, transform 500ms ease;
}

.jgz04-perspectives-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(7, 21, 47, 0.5));
  content: "";
  pointer-events: none;
}

.jgz04-perspectives-image-label,
.jgz04-perspectives-image-index {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  color: #fff;
  font-weight: 750;
}

.jgz04-perspectives-image-label {
  left: 25px;
  font-size: 1.35rem;
}

.jgz04-perspectives-image-index {
  right: 25px;
  color: #dce7ff;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.jgz04-perspectives-selector {
  display: grid;
  gap: 8px;
}

.jgz04-perspectives-tab {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 18px 17px;
  border: 1px solid transparent;
  border-radius: 19px;
  color: #51607c;
  background: rgba(255, 255, 255, 0.56);
  text-align: left;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.jgz04-perspectives-tab:hover,
.jgz04-perspectives-tab:focus-visible {
  border-color: #aec5f6;
  background: #fff;
  transform: translateX(5px);
}

.jgz04-perspectives-tab.is-active {
  border-color: #a9c3f8;
  color: #07152f;
  background: #fff;
  box-shadow: 0 16px 34px rgba(47, 88, 164, 0.12);
}

.jgz04-perspectives-tab-number {
  align-self: start;
  padding-top: 3px;
  color: #7892c9;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.jgz04-perspectives-tab strong,
.jgz04-perspectives-tab small {
  display: block;
}

.jgz04-perspectives-tab strong {
  font-family: "Figtree", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.035em;
}

.jgz04-perspectives-tab small {
  margin-top: 4px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.jgz04-friction-section {
  --font-display: "Figtree", sans-serif;
  overflow: hidden;
  background: #fffdf9;
}

.jgz04-friction-heading {
  margin-bottom: clamp(58px, 7vw, 92px);
}

.jgz04-friction-heading .eyebrow {
  margin-bottom: 28px;
}

.jgz04-friction-heading h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(3.3rem, 6.6vw, 6.7rem);
  font-weight: 700;
  letter-spacing: -0.072em;
  line-height: 0.91;
  text-wrap: balance;
}

.jgz04-friction-heading > p:last-child {
  max-width: 1060px;
  margin: clamp(28px, 4vw, 48px) 0 0;
  color: #56627b;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.jgz04-friction-stories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(24px, 3.2vw, 44px);
}

.jgz04-friction-story {
  min-width: 0;
}

.jgz04-friction-media {
  display: block;
  width: 100%;
  height: clamp(220px, 24vw, 310px);
  overflow: hidden;
  border-radius: 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 17%, #000 100%), linear-gradient(180deg, #000 62%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, #000 17%, #000 100%), linear-gradient(180deg, #000 62%, transparent 100%);
  mask-composite: intersect;
}

.jgz04-friction-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.jgz04-friction-story:first-child .jgz04-friction-media img {
  object-position: 58% center;
}

.jgz04-friction-copy {
  position: relative;
  margin-top: -18px;
  padding: 0 14px;
}

.jgz04-friction-copy small {
  color: #e26c58;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jgz04-friction-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.jgz04-friction-copy p {
  margin: 0;
  color: #5b6880;
  font-size: 0.98rem;
  line-height: 1.55;
}

.jgz04-workflow-layout { display: grid; grid-template-columns: 0.86fr 1.14fr; align-items: center; gap: 85px; }
.jgz04-workflow-copy h2 { max-width: 600px; }
.jgz04-workflow-steps { margin: 40px 0 28px; padding: 0; list-style: none; }
.jgz04-workflow-steps li { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--border); }
.jgz04-workflow-steps li:last-child { border-bottom: 1px solid var(--border); }
.jgz04-workflow-steps li > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 12px; color: var(--blue-dark); background: var(--blue-pale); font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; }
.jgz04-workflow-steps strong { font-family: var(--font-display); }
.jgz04-workflow-steps p { margin: 5px 0 0; color: var(--ink-soft); }
.jgz04-workflow-note { padding-left: 16px; border-left: 3px solid var(--green); color: var(--ink-soft); font-size: 0.9rem; }

.jgz04-selection-demo { overflow: hidden; border: 1px solid #d8e2f0; border-radius: 26px; background: #fff; box-shadow: 0 30px 75px rgba(24, 54, 104, 0.14); }
.jgz04-demo-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; border-bottom: 1px solid #e4eaf3; background: #f9fbff; }
.jgz04-demo-header > div { display: flex; align-items: center; gap: 10px; }
.jgz04-demo-header strong { font-family: var(--font-display); font-size: 0.9rem; }
.jgz04-demo-header small { color: var(--ink-soft); }
.jgz04-brand-dot { width: 13px; height: 13px; border-radius: 50% 50% 50% 2px; background: var(--coral); transform: rotate(-15deg); }
.jgz04-demo-context { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 24px; border-bottom: 1px solid #e4eaf3; }
.jgz04-demo-context span { padding: 7px 11px; border-radius: 9px; color: var(--blue-dark); background: var(--blue-pale); font-size: 0.75rem; font-weight: 650; }
.jgz04-demo-items { padding: 8px 24px; }
.jgz04-demo-items > div { display: grid; grid-template-columns: 40px 1fr 28px; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 1px solid #e8edf5; }
.jgz04-demo-items > div:last-child { border-bottom: 0; }
.jgz04-item-type { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; color: #6250ad; background: var(--violet-pale); font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; }
.jgz04-demo-items strong, .jgz04-demo-items small { display: block; }
.jgz04-demo-items strong { margin-bottom: 3px; font-family: var(--font-display); font-size: 0.86rem; }
.jgz04-demo-items small { color: var(--ink-soft); }
.jgz04-check { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 0.76rem; font-weight: 700; }
.jgz04-demo-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; color: #fff; background: var(--blue-dark); }
.jgz04-demo-footer span { font-size: 0.8rem; opacity: 0.84; }
.jgz04-demo-footer strong { font-family: var(--font-display); font-size: 0.82rem; }

.jgz04-content-module-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(239, 118, 95, 0.12), transparent 27%),
    radial-gradient(circle at 94% 84%, rgba(40, 100, 240, 0.12), transparent 31%),
    #f6f8fd;
}

.jgz04-content-module-glow {
  position: absolute;
  top: 12%;
  right: -240px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(40, 100, 240, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.jgz04-content-module-glow::before,
.jgz04-content-module-glow::after {
  position: absolute;
  border: 1px solid rgba(40, 100, 240, 0.09);
  border-radius: inherit;
  content: "";
}

.jgz04-content-module-glow::before { inset: 64px; }
.jgz04-content-module-glow::after { inset: 128px; }

.jgz04-content-module-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, 0.74fr) minmax(0, 1.26fr);
  align-items: start;
  gap: clamp(48px, 6vw, 88px);
}

.jgz04-content-module-copy {
  position: sticky;
  top: 126px;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(40, 100, 240, 0.32), transparent 42%),
    var(--ink);
  box-shadow: 0 32px 75px rgba(19, 42, 84, 0.2);
}

.jgz04-content-module-copy .eyebrow {
  color: #a9c6ff;
}

.jgz04-content-module-copy .eyebrow::before {
  background: #7ba5ff;
}

.jgz04-content-module-copy h2 {
  max-width: 100%;
  margin: 28px 0 24px;
  color: #fff;
  font-size: clamp(2.35rem, 3.45vw, 3.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
}

.jgz04-content-title-main,
.jgz04-content-title-accent {
  display: block;
  max-width: 100%;
}

.jgz04-content-title-accent {
  margin-top: 12px;
  color: #ff917b;
  font-size: 0.84em;
  line-height: 1.04;
}

.jgz04-content-module-copy > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.65;
}

.jgz04-content-included {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.jgz04-content-included > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: #91dfc7;
}

.jgz04-content-included svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.jgz04-content-included strong,
.jgz04-content-included small {
  display: block;
}

.jgz04-content-included strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.87rem;
  line-height: 1.3;
}

.jgz04-content-included small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
}

.jgz04-source-library {
  min-width: 0;
}

.jgz04-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jgz04-source-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(203, 214, 233, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(36, 65, 117, 0.07);
}

.jgz04-source-logo {
  display: grid;
  width: 108px;
  height: 76px;
  padding: 13px;
  place-items: center;
  border: 1px solid #e2e8f2;
  border-radius: 16px;
  background: #fff;
}

.jgz04-source-logo img {
  display: block;
  width: 100%;
  max-width: 86px;
  height: 100%;
  max-height: 50px;
  object-fit: contain;
}

.jgz04-source-logo--portrait img {
  max-width: 38px;
  max-height: 58px;
}

.jgz04-source-logo--wordmark span {
  color: #ab0059;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.jgz04-source-card h3 {
  margin: 0 0 9px;
  font-size: 1.03rem;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.jgz04-source-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.48;
}

.jgz04-source-card--professional {
  position: relative;
  overflow: hidden;
  border-color: rgba(114, 151, 223, 0.38);
  color: #fff;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 100% 0%, rgba(40, 100, 240, 0.3), transparent 52%),
    var(--ink);
  box-shadow: 0 20px 48px rgba(10, 24, 51, 0.18);
}

.jgz04-source-card--professional .jgz04-source-logo {
  border-color: rgba(255, 255, 255, 0.22);
}

.jgz04-source-card--professional h3 {
  margin-top: 6px;
  color: #fff;
}

.jgz04-source-card--professional p {
  color: rgba(255, 255, 255, 0.76);
}

.jgz04-source-audience {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border: 1px solid rgba(169, 198, 255, 0.3);
  border-radius: 999px;
  color: #c4d7ff;
  background: rgba(40, 100, 240, 0.16);
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.jgz04-source-note {
  max-width: 680px;
  margin: 24px 4px 0;
  padding-left: 15px;
  border-left: 3px solid var(--blue);
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.js .jgz04-source-card.reveal:nth-child(2n) { --reveal-delay: 90ms; }

.jgz04-cases-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 12%, rgba(71, 111, 216, 0.1), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #eef4fd 100%);
}

.jgz04-cases-section::before {
  position: absolute;
  top: 118px;
  right: -280px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(55, 105, 210, 0.13);
  border-radius: 50%;
  content: "";
}

.jgz04-cases-section .shell {
  position: relative;
  z-index: 1;
}

.jgz04-cases-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: clamp(42px, 8vw, 120px);
  margin-bottom: clamp(44px, 6vw, 74px);
}

.jgz04-cases-heading h2 {
  max-width: 780px;
  margin: 16px 0 0;
  font-size: clamp(3.25rem, 6.2vw, 6.3rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-wrap: balance;
}

.jgz04-cases-heading > p {
  max-width: 560px;
  margin: 0 0 8px;
  color: #52617c;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.65;
}

.jgz04-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 48px);
}

.jgz04-case-card {
  --case-accent: #ee765f;
  overflow: hidden;
  border: 1px solid rgba(104, 131, 183, 0.23);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 28px 75px rgba(25, 54, 103, 0.11);
}

.jgz04-case-card--ggd {
  --case-accent: #3476cf;
}

.jgz04-case-media {
  position: relative;
  display: block;
  height: clamp(270px, 30vw, 390px);
  overflow: hidden;
  color: #fff;
  background: #dfe8f6;
}

.jgz04-case-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(5, 19, 48, 0.78));
  content: "";
}

.jgz04-case-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 2%;
  transition: transform 420ms cubic-bezier(0.2, 0.72, 0.28, 1);
}

.jgz04-case-media > span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 750;
}

.jgz04-case-media:hover img,
.jgz04-case-media:focus-visible img {
  transform: scale(1.025);
}

.jgz04-case-media:focus-visible {
  outline: 3px solid #245ee3;
  outline-offset: -5px;
}

.jgz04-case-content {
  padding: clamp(26px, 3.7vw, 46px);
}

.jgz04-case-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.jgz04-case-label > span {
  color: var(--case-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jgz04-case-label small {
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--case-accent) 28%, white);
  border-radius: 999px;
  color: #52617a;
  background: color-mix(in srgb, var(--case-accent) 7%, white);
  font-size: 0.68rem;
  font-weight: 700;
}

.jgz04-case-card h3 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.jgz04-case-card h3 + p {
  margin: 20px 0 0;
  color: #56647e;
  font-size: 1rem;
  line-height: 1.65;
}

.jgz04-case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 34px 0 0;
  border: 1px solid #dfe7f3;
  border-radius: 20px;
  background: #dfe7f3;
}

.jgz04-case-metrics > div {
  min-width: 0;
  padding: 23px 20px;
  background: #f8fbff;
}

.jgz04-case-metrics dt {
  color: var(--case-accent);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3.15rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1;
}

.jgz04-case-metrics dd {
  margin: 7px 0 0;
  color: #40506b;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
}

.jgz04-case-success {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #dfe6f0;
}

.jgz04-case-success h4 {
  margin: 0 0 16px;
  color: var(--case-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.jgz04-case-success ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jgz04-case-success li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-width: 0;
  padding: 15px 13px;
  border: 1px solid #e0e7f1;
  border-radius: 16px;
  background: #f8fbff;
}

.jgz04-success-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--case-accent);
  background: color-mix(in srgb, var(--case-accent) 10%, white);
}

.jgz04-success-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.jgz04-case-success strong {
  display: block;
  color: #203451;
  font-size: 0.79rem;
  line-height: 1.3;
}

.jgz04-case-success p {
  margin: 5px 0 0;
  color: #66748c;
  font-size: 0.7rem;
  line-height: 1.45;
}

.jgz04-case-status {
  margin: 22px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--case-accent);
  color: #65728a;
  font-size: 0.78rem;
  line-height: 1.55;
}

.jgz04-cases-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  margin-top: clamp(34px, 5vw, 62px);
  padding: clamp(25px, 3.5vw, 40px);
  border: 1px solid rgba(91, 122, 181, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.jgz04-cases-cta > div {
  display: grid;
  max-width: 720px;
  gap: 8px;
}

.jgz04-cases-cta small {
  color: #3063bf;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jgz04-cases-cta strong {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  line-height: 1.35;
}

.jgz04-cases-cta .button {
  flex: 0 0 auto;
}

.jgz04-effects-section {
  --font-display: "Figtree", sans-serif;
  position: relative;
  overflow: hidden;
  color: #edf4ff;
  background:
    radial-gradient(circle at 8% 20%, rgba(70, 117, 224, 0.28), transparent 29%),
    radial-gradient(circle at 92% 78%, rgba(69, 165, 132, 0.17), transparent 28%),
    #07152f;
}

.jgz04-effects-section::before {
  position: absolute;
  top: -190px;
  right: -160px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(143, 177, 242, 0.16);
  border-radius: 50%;
  content: "";
}

.jgz04-effects-glow {
  position: absolute;
  bottom: -230px;
  left: 22%;
  width: 620px;
  height: 420px;
  border-radius: 50%;
  background: rgba(239, 118, 95, 0.11);
  filter: blur(85px);
}

.jgz04-effects-section .shell {
  position: relative;
  z-index: 1;
}

.jgz04-effects-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(42px, 7vw, 96px);
  margin-bottom: clamp(62px, 8vw, 96px);
}

.jgz04-effects-heading .eyebrow {
  color: #a9c3fa;
}

.jgz04-effects-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.93;
  text-wrap: balance;
}

.jgz04-effects-intro > p {
  margin: 0;
  color: #c8d5ed;
  font-size: 1.08rem;
  line-height: 1.62;
}

.jgz04-effects-intro > small {
  display: block;
  margin-top: 20px;
  padding-left: 15px;
  border-left: 2px solid #ef765f;
  color: #91a3c3;
  font-size: 0.76rem;
  line-height: 1.5;
}

.jgz04-effects-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.jgz04-effects-grid::before {
  position: absolute;
  top: 31px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, #ef765f, #5b8cea 50%, #4bad8b);
  content: "";
  opacity: 0.7;
}

.jgz04-effect-card {
  --effect-color: #5b8cea;
  position: relative;
  z-index: 1;
  min-height: 480px;
  padding: 24px 26px 30px;
  border: 1px solid rgba(159, 183, 229, 0.2);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(15px);
}

.jgz04-effect-card--parents { --effect-color: #ef765f; }
.jgz04-effect-card--organization { --effect-color: #45a884; }

.jgz04-effect-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

.jgz04-effect-card-top > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 7px solid #07152f;
  border-radius: 50%;
  color: #fff;
  background: var(--effect-color);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.jgz04-effect-card-top small {
  color: #aebed9;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: right;
  text-transform: uppercase;
}

.jgz04-effect-card h3 {
  min-height: 76px;
  margin: 0 0 25px;
  color: #fff;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.jgz04-effect-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jgz04-effect-card li {
  position: relative;
  padding-left: 24px;
  color: #c1cde2;
  font-size: 0.88rem;
  line-height: 1.42;
}

.jgz04-effect-card li::before {
  position: absolute;
  top: 0.56em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--effect-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--effect-color) 18%, transparent);
  content: "";
}

.jgz04-effects-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
  padding: 25px 30px;
  border: 1px solid rgba(159, 183, 229, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.jgz04-effects-summary > span {
  text-align: center;
}

.jgz04-effects-summary small,
.jgz04-effects-summary strong {
  display: block;
}

.jgz04-effects-summary small {
  margin-bottom: 5px;
  color: #8fa2c4;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jgz04-effects-summary strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.jgz04-effects-summary > i {
  color: #6f91d8;
  font-style: normal;
}

.jgz04-faq-section {
  --font-display: "Figtree", sans-serif;
  background:
    radial-gradient(circle at 4% 8%, rgba(255, 220, 210, 0.38), transparent 23%),
    #fffdf9;
}

.jgz04-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.jgz04-faq-intro {
  position: sticky;
  top: 130px;
}

.jgz04-faq-intro h2 {
  max-width: 510px;
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 4.7vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.jgz04-faq-intro > p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 30px;
  color: #58647c;
  font-size: 1.08rem;
  line-height: 1.6;
}

.jgz04-faq-list {
  border-top: 1px solid rgba(143, 161, 196, 0.4);
}

.jgz04-faq-item {
  border-bottom: 1px solid rgba(143, 161, 196, 0.4);
}

.jgz04-faq-item h3 {
  margin: 0;
}

.jgz04-faq-item button {
  display: grid;
  width: 100%;
  min-height: 94px;
  grid-template-columns: 1fr 46px;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border: 0;
  color: #07152f;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.jgz04-faq-item button > span {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  transition: color 180ms ease;
}

.jgz04-faq-item button:hover > span {
  color: var(--blue);
}

.jgz04-faq-item button i {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(40, 100, 240, 0.24);
  border-radius: 14px;
  background: #edf3ff;
}

.jgz04-faq-item button i::before,
.jgz04-faq-item button i::after {
  position: absolute;
  width: 15px;
  height: 2px;
  border-radius: 99px;
  background: #2f67d8;
  content: "";
  transition: transform 220ms ease;
}

.jgz04-faq-item button i::after {
  transform: rotate(90deg);
}

.jgz04-faq-item button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.jgz04-faq-item > div {
  padding: 0 70px 28px 0;
}

.jgz04-faq-item p {
  max-width: 700px;
  margin: 0;
  color: #58647c;
  font-size: 1rem;
  line-height: 1.65;
}

.jgz04-hero + .page-section { scroll-margin-top: 100px; }

@keyframes jgz04LineFlow {
  to { stroke-dashoffset: -180; }
}

@media (max-width: 1080px) {
  .jgz04-hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(370px, 0.85fr); gap: 48px; }
}

@media (max-width: 1050px) {
  .jgz04-workflow-layout { gap: 45px; }
}

@media (max-width: 980px) {
  .jgz04-perspectives-heading { grid-template-columns: 1fr; gap: 22px; }
  .jgz04-perspectives-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .jgz04-perspectives-heading > p:last-child { max-width: 640px; }
  .jgz04-perspectives-layout { grid-template-columns: 1fr; }
  .jgz04-perspectives-visual { width: min(760px, 100%); }
  .jgz04-perspectives-selector { grid-template-columns: repeat(2, 1fr); }
  .jgz04-perspectives-tab { min-height: 112px; }
  .jgz04-friction-stories { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 52px; }
  .jgz04-friction-story:last-child { grid-column: 1 / -1; justify-self: center; width: min(50%, 540px); }
  .jgz04-content-module-layout { grid-template-columns: 1fr; }
  .jgz04-content-module-copy { position: static; }
  .jgz04-cases-heading { grid-template-columns: 1fr; gap: 24px; }
  .jgz04-cases-heading > p { max-width: 680px; }
  .jgz04-cases-grid { grid-template-columns: 1fr; }
  .jgz04-case-card { display: grid; grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr); }
  .jgz04-case-media { height: 100%; min-height: 640px; }
  .jgz04-effects-heading { grid-template-columns: 1fr; gap: 30px; }
  .jgz04-effects-intro { max-width: 720px; }
  .jgz04-effects-grid { grid-template-columns: 1fr; }
  .jgz04-effects-grid::before { display: none; }
  .jgz04-effect-card { min-height: 0; }
  .jgz04-effect-card h3 { min-height: 0; }
}

@media (max-width: 860px) {
  .jgz04-hero { min-height: auto; padding-top: 142px; }
  .jgz04-hero-grid { grid-template-columns: 1fr; }
  .jgz04-hero-copy { max-width: 700px; }
  .jgz04-hero-copy h1 { font-size: clamp(3.35rem, 8vw, 4.2rem); }
  .jgz04-hero-stage { width: min(680px, 100%); min-height: 540px; margin: 20px auto 0; }
}

@media (max-width: 820px) {
  .jgz04-workflow-layout { grid-template-columns: 1fr; gap: 28px; }
  .jgz04-workflow-layout { gap: 50px; }
  .jgz04-selection-demo { width: min(100%, 640px); margin: 0 auto; }
  .jgz04-case-card { display: block; }
  .jgz04-case-media { height: clamp(290px, 48vw, 390px); min-height: 0; }
  .jgz04-faq-layout { grid-template-columns: 1fr; gap: 46px; }
  .jgz04-faq-intro { position: static; }
}

@media (max-width: 680px) {
  .jgz04-source-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .jgz04-hero { min-height: auto; padding: 126px 0 35px; }
  .jgz04-hero-copy h1 { font-size: clamp(2.85rem, 13vw, 3.7rem); }
  .jgz04-hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .jgz04-hero-actions .button { width: 100%; }
  .jgz04-text-link { justify-content: center; }
  .jgz04-hero-stage { min-height: 0; margin-top: 5px; }
  .jgz04-hero-photo { border-radius: 28px; }
  .jgz04-workflow-steps li { grid-template-columns: 38px 1fr; gap: 12px; }
  .jgz04-demo-header { align-items: flex-start; flex-direction: column; }
  .jgz04-demo-items { padding: 6px 16px; }
  .jgz04-demo-items > div { grid-template-columns: 36px minmax(0, 1fr) 25px; gap: 10px; }
  .jgz04-demo-items strong { font-size: 0.78rem; }
  .jgz04-demo-items small { font-size: 0.7rem; }
  .jgz04-demo-footer { padding: 18px 16px; }
  .jgz04-case-media { height: clamp(270px, 75vw, 390px); }
  .jgz04-cases-cta { align-items: stretch; flex-direction: column; }
  .jgz04-cases-cta .button { align-self: flex-start; }
}

@media (max-width: 620px) {
  .jgz04-perspectives-heading h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .jgz04-perspectives-image-wrap { aspect-ratio: 0.98; border-radius: 25px; }
  .jgz04-perspectives-selector { display: flex; overflow-x: auto; gap: 10px; margin-right: -18px; padding: 5px 18px 18px 0; scroll-snap-type: x mandatory; }
  .jgz04-perspectives-tab { flex: 0 0 84%; min-height: 136px; scroll-snap-align: start; }
  .jgz04-perspectives-tab:hover,
  .jgz04-perspectives-tab:focus-visible { transform: none; }
  .jgz04-friction-heading h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .jgz04-friction-stories { grid-template-columns: 1fr; gap: 48px; }
  .jgz04-friction-story:last-child { grid-column: auto; justify-self: stretch; width: auto; }
  .jgz04-friction-media { height: 245px; }
  .jgz04-friction-copy { padding: 0 8px; }
  .jgz04-content-module-section { padding-block: 88px; }
  .jgz04-content-module-glow { display: none; }
  .jgz04-content-module-copy { padding: 30px 32px 32px 24px; border-radius: 28px; }
  .jgz04-content-module-copy h2 {
    margin: 24px 0 20px;
    font-size: clamp(2rem, 9vw, 2.65rem);
    letter-spacing: -0.045em;
    line-height: 1;
  }
  .jgz04-content-title-accent { margin-top: 10px; font-size: 0.82em; }
  .jgz04-content-module-copy > p:not(.eyebrow) { font-size: 0.96rem; line-height: 1.55; }
  .jgz04-content-included { margin-top: 28px; }
  .jgz04-source-card { min-height: 0; }
  .jgz04-cases-heading h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .jgz04-case-label { align-items: flex-start; flex-direction: column; gap: 10px; }
  .jgz04-case-metrics > div { padding: 20px 15px; }
  .jgz04-case-success ul { grid-template-columns: 1fr; }
  .jgz04-cases-cta .button { width: 100%; }
  .jgz04-effects-heading h2 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .jgz04-effect-card { padding: 22px 20px 25px; border-radius: 22px; }
  .jgz04-effect-card-top { margin-bottom: 34px; }
  .jgz04-effects-summary { grid-template-columns: 1fr; gap: 18px; padding: 24px 20px; }
  .jgz04-effects-summary > i { transform: rotate(90deg); text-align: center; }
  .jgz04-faq-item button { min-height: 78px; grid-template-columns: 1fr 40px; gap: 12px; }
  .jgz04-faq-item button i { width: 38px; height: 38px; }
  .jgz04-faq-item > div { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .jgz04-relevance-line path { animation: none !important; }
  .jgz04-text-link span { transition-duration: 0.01ms !important; }
  .jgz04-perspectives-image-wrap img,
  .jgz04-perspectives-tab { transition: none; }
  .jgz04-case-media img { transition: none; }
  .jgz04-faq-item button > span,
  .jgz04-faq-item button i::before,
  .jgz04-faq-item button i::after { transition: none; }
}
