:root {
  scroll-behavior: smooth;
}

body.workflow-page {
  grid-template-rows: 58px auto auto;
}

.workflow-locale-switch {
  position: relative;
  display: block;
  min-width: 48px;
  padding: 0;
}

.workflow-locale-switch > summary {
  padding: 8px 4px;
  color: var(--gold);
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.workflow-locale-switch > summary::-webkit-details-marker {
  display: none;
}

.workflow-locale-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 7px);
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(48px, 1fr));
  min-width: 210px;
  padding: 9px;
  border: 1px solid rgba(105, 221, 240, .30);
  border-radius: 11px;
  background: rgba(5, 24, 38, .98);
  box-shadow: 0 18px 38px rgba(0, 7, 14, .52);
}

.workflow-locale-menu a {
  padding: 8px 7px;
  color: #a9bbc2;
  text-align: center;
}

.workflow-locale-menu a:hover,
.workflow-locale-menu a:focus-visible,
.workflow-locale-menu a[aria-current="page"] {
  color: var(--gold);
}

.workflow-main {
  display: block;
  width: 100%;
  padding: 6px 12px 0;
}

.workflow-main > .stage {
  margin: 0 auto;
}

.workflow-main .actions a[href^="#"] {
  scroll-margin-top: 72px;
}

.workflow-explainer {
  width: min(1380px, calc(100% - 24px));
  margin: 54px auto 70px;
  scroll-margin-top: 72px;
}

.workflow-story-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: 34px;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(117, 226, 242, .28);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(4, 20, 33, .94) 0, rgba(5, 27, 42, .80) 48%, rgba(5, 28, 42, .32) 100%),
    linear-gradient(0deg, rgba(4, 20, 33, .72), transparent 56%),
    url("/assets/scenes-r2/werkwijze.webp") 62% center / cover no-repeat;
  box-shadow: 0 26px 64px rgba(0, 10, 18, .30), inset 0 0 0 1px rgba(255, 255, 255, .035);
}

.workflow-story-intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(114, 225, 241, .055) 0 1px, transparent 1px 98px),
    linear-gradient(90deg, rgba(57, 216, 241, .12), transparent 22%, transparent 78%, rgba(244, 181, 45, .10));
  pointer-events: none;
}

.workflow-intro {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(300px, 1.18fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  margin-bottom: 34px;
}

.workflow-kicker,
.workflow-step-label,
.workflow-screen-bar span,
.workflow-chip {
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.workflow-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 10px;
}

.workflow-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.workflow-intro h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(29px, 4.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
  text-shadow: 0 5px 28px rgba(0, 9, 17, .72);
}

.workflow-intro h2 span {
  color: var(--gold);
}

.workflow-intro p {
  margin: 0;
  color: #c9d9df;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.65;
  text-shadow: 0 3px 18px rgba(0, 9, 17, .78);
}

.workflow-storyline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 34px;
  padding: 0 10px;
}

.workflow-storyline::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 22px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(57, 216, 241, .34), var(--gold), rgba(244, 181, 45, .38), var(--cyan));
  box-shadow: 0 0 18px rgba(57, 216, 241, .22);
}

.workflow-storyline a {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  color: #c3d4da;
  text-align: center;
}

.workflow-storyline a:hover,
.workflow-storyline a:focus-visible {
  color: var(--white);
}

.workflow-story-node {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  place-items: center;
  border: 1px solid rgba(57, 216, 241, .58);
  border-radius: 50%;
  background: #082637;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(7, 29, 44, .92), 0 0 24px rgba(57, 216, 241, .14);
}

.workflow-storyline a:nth-child(2) .workflow-story-node,
.workflow-storyline a:nth-child(4) .workflow-story-node {
  border-color: rgba(244, 181, 45, .72);
  color: var(--gold);
  box-shadow: 0 0 0 6px rgba(7, 29, 44, .92), 0 0 24px rgba(244, 181, 45, .16);
}

.workflow-storyline strong {
  display: block;
  margin-bottom: 4px;
  color: inherit;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.workflow-storyline small {
  max-width: 155px;
  color: #8099a3;
  font-size: 9px;
  line-height: 1.35;
}

.workflow-manifesto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 2.4vw, 34px);
  margin: 0 0 34px;
  padding: 15px 18px;
  border-top: 1px solid rgba(57, 216, 241, .18);
  border-bottom: 1px solid rgba(244, 181, 45, .20);
  background: linear-gradient(90deg, rgba(3, 22, 34, .54), rgba(23, 75, 94, .28), rgba(3, 22, 34, .30));
  color: #d8e6ea;
  font-size: clamp(10px, 1.1vw, 14px);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.workflow-manifesto span {
  display: inline-flex;
  align-items: center;
  gap: clamp(13px, 2.4vw, 34px);
}

.workflow-manifesto span:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(244, 181, 45, .42);
}

.workflow-manifesto span:nth-child(2),
.workflow-manifesto span:nth-child(4) {
  color: var(--gold);
}

.workflow-steps {
  position: relative;
  display: grid;
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
  scroll-margin-top: 72px;
}

.workflow-steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(57, 216, 241, .42), rgba(244, 181, 45, .50), rgba(57, 216, 241, .32));
  box-shadow: 0 0 14px rgba(57, 216, 241, .18);
}

.workflow-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(102, 223, 242, .22);
  border-radius: 22px;
  background: #061827;
  box-shadow: 0 28px 68px rgba(0, 10, 18, .32), inset 0 0 0 1px rgba(255, 255, 255, .035);
}

.workflow-step::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 17, 29, .94) 0, rgba(4, 22, 36, .79) 36%, rgba(4, 22, 36, .28) 66%, rgba(4, 22, 36, .12) 100%),
    linear-gradient(0deg, rgba(3, 18, 29, .52), transparent 58%);
  pointer-events: none;
}

.workflow-step:nth-child(even)::after {
  background:
    linear-gradient(270deg, rgba(3, 17, 29, .94) 0, rgba(4, 22, 36, .79) 36%, rgba(4, 22, 36, .28) 66%, rgba(4, 22, 36, .12) 100%),
    linear-gradient(0deg, rgba(3, 18, 29, .52), transparent 58%);
}

.workflow-scene-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: brightness(1.12) saturate(1.04) contrast(1.02);
}

.workflow-step:nth-child(even) .workflow-scene-art {
  object-position: 42% center;
}

.workflow-step::before {
  content: attr(data-phase);
  position: absolute;
  z-index: 2;
  top: -22px;
  right: 22px;
  color: rgba(106, 224, 242, .055);
  font-size: clamp(92px, 12vw, 164px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}

.workflow-step:nth-child(even)::before {
  right: auto;
  left: 22px;
  color: rgba(244, 181, 45, .05);
}

.workflow-step:nth-child(even) {
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, .78fr);
}

.workflow-step:nth-child(even) .workflow-copy {
  order: 2;
}

.workflow-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4.4vw, 62px);
  text-shadow: 0 4px 22px rgba(0, 8, 15, .82);
}

.workflow-step-label {
  margin-bottom: 13px;
  color: var(--cyan);
  font-size: 10px;
}

.workflow-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.workflow-copy p {
  margin: 0;
  color: #c4d4da;
  font-size: 14px;
  line-height: 1.65;
}

.workflow-copy ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #e5eef1;
  font-size: 12px;
}

.workflow-copy li {
  position: relative;
  padding-left: 19px;
}

.workflow-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(244, 181, 45, .24);
}

.workflow-screen-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: clamp(22px, 3.4vw, 44px);
  background: transparent;
}

.workflow-screen {
  position: relative;
  width: 100%;
  height: min(360px, calc(100% - 16px));
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(111, 225, 242, .32);
  border-radius: 16px;
  background: rgba(5, 24, 37, .94);
  box-shadow: 0 26px 58px rgba(0, 7, 14, .56), inset 0 0 0 1px rgba(255, 255, 255, .045);
  backdrop-filter: blur(10px);
}

.workflow-screen-bar {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(103, 220, 239, .18);
  background: rgba(7, 31, 46, .96);
}

.workflow-screen-bar::before,
.workflow-screen-bar::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(57, 216, 241, .46);
  box-shadow: 12px 0 0 rgba(244, 181, 45, .72);
}

.workflow-screen-bar::after {
  display: none;
}

.workflow-screen-bar span {
  margin-left: 15px;
  color: #c9d9de;
  font-size: 8px;
}

.workflow-screen-body {
  height: calc(100% - 42px);
  padding: 18px;
}

.workflow-upload-zone {
  display: grid;
  min-height: 112px;
  place-items: center;
  border: 1px dashed rgba(57, 216, 241, .52);
  border-radius: 12px;
  background: rgba(32, 109, 133, .11);
  color: #dcebee;
  text-align: center;
}

.workflow-upload-zone strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 14px;
}

.workflow-upload-zone span {
  color: #92a9b2;
  font-size: 10px;
}

.workflow-file-row,
.workflow-check-row,
.workflow-delivery-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(111, 220, 238, .10);
}

.workflow-file-row strong,
.workflow-delivery-row strong {
  overflow: hidden;
  color: #e9f1f3;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workflow-file-row small,
.workflow-delivery-row small {
  color: #8fa6af;
  font-size: 9px;
}

.workflow-chip {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(57, 216, 241, .28);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 7px;
  white-space: nowrap;
}

.workflow-chip.is-ready {
  border-color: rgba(244, 181, 45, .42);
  background: rgba(244, 181, 45, .09);
  color: var(--gold);
}

.workflow-map-screen {
  display: grid;
  grid-template-rows: 42px 31px minmax(0, 1fr) 25px;
  isolation: isolate;
  background: #071620;
}

.workflow-map-screen .workflow-screen-bar {
  min-height: 42px;
}

.workflow-viewer-tabs {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid rgba(111, 225, 242, .16);
  background: #06111a;
}

.workflow-viewer-tabs span {
  display: inline-flex;
  position: relative;
  min-width: 0;
  align-items: center;
  padding: 0 13px;
  border-right: 1px solid rgba(111, 225, 242, .09);
  color: #718993;
  font-size: 7px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.workflow-viewer-tabs .is-active {
  color: #dff8fd;
  background: rgba(28, 121, 150, .14);
}

.workflow-viewer-tabs .is-active::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(57, 216, 241, .45);
}

.workflow-viewer-canvas {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(40, 103, 119, .10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 103, 119, .10) 1px, transparent 1px),
    radial-gradient(circle at 58% 44%, rgba(17, 82, 101, .22), transparent 44%),
    #081d29;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.workflow-viewer-geometry {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.workflow-viewer-geometry .parcel {
  fill: rgba(13, 42, 54, .24);
  stroke: rgba(118, 168, 178, .34);
  stroke-width: 1;
}

.workflow-viewer-geometry .road {
  fill: none;
  stroke: rgba(134, 163, 170, .28);
  stroke-width: 16;
}

.workflow-viewer-geometry .road-edge {
  fill: none;
  stroke: rgba(196, 218, 221, .28);
  stroke-width: 1.2;
}

.workflow-viewer-geometry .survey-line {
  fill: rgba(57, 216, 241, .06);
  stroke: var(--cyan);
  stroke-width: 2.4;
  filter: drop-shadow(0 0 5px rgba(57, 216, 241, .44));
}

.workflow-viewer-geometry .survey-detail {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-dasharray: 5 4;
}

.workflow-viewer-geometry .survey-point {
  fill: #061821;
  stroke: var(--gold);
  stroke-width: 2.5;
}

.workflow-viewer-geometry .selected-point {
  fill: var(--gold);
  stroke: #fff8df;
  stroke-width: 2;
}

.workflow-map-tools {
  display: grid;
  position: absolute;
  z-index: 4;
  top: 54px;
  left: 13px;
  gap: 4px;
}

.workflow-map-tools span {
  display: grid;
  width: 29px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(105, 213, 232, .24);
  border-radius: 6px;
  background: rgba(4, 20, 30, .92);
  color: #d8e9ed;
  font-size: 10px;
  box-shadow: 0 5px 14px rgba(0, 7, 13, .3);
}

.workflow-map-tools .workflow-layers-tool {
  width: 48px;
  color: var(--cyan);
  font-size: 7px;
}

.workflow-map-search {
  display: flex;
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 13px;
  width: min(62%, 310px);
  min-height: 32px;
  align-items: center;
  gap: 8px;
  padding: 0 8px 0 10px;
  border: 1px solid rgba(109, 224, 242, .36);
  border-radius: 7px;
  background: rgba(4, 22, 34, .92);
  color: #dfecef;
  font-size: 8px;
  box-shadow: 0 12px 28px rgba(0, 8, 15, .36);
}

.workflow-map-search span:first-child {
  color: var(--cyan);
  font-size: 11px;
}

.workflow-map-search span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workflow-map-search b {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  margin-left: auto;
  padding: 0 8px;
  border-radius: 5px;
  background: var(--gold);
  color: #07131a;
  font-size: 6px;
  letter-spacing: .08em;
}

.workflow-map-panel {
  position: absolute;
  z-index: 4;
  right: 11px;
  bottom: 10px;
  width: min(38%, 190px);
  padding: 10px;
  border: 1px solid rgba(100, 219, 237, .26);
  border-radius: 8px;
  background: rgba(4, 21, 31, .94);
  box-shadow: 0 15px 34px rgba(0, 8, 15, .36);
}

.workflow-map-panel strong {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 9px;
}

.workflow-check-row {
  grid-template-columns: 9px minmax(0, 1fr);
  padding: 5px 0;
  color: #c9dade;
  font-size: 7px;
}

.workflow-check-row::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
}

.workflow-coord-readout {
  position: absolute;
  z-index: 3;
  bottom: 9px;
  left: 13px;
  padding: 5px 8px;
  border: 1px solid rgba(111, 225, 242, .17);
  border-radius: 5px;
  background: rgba(4, 20, 30, .82);
  color: #93aeb6;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 6px;
}

.workflow-viewer-status {
  display: flex;
  align-items: center;
  gap: 13px;
  overflow: hidden;
  padding: 0 11px;
  border-top: 1px solid rgba(111, 225, 242, .14);
  background: #050f17;
  color: #738b94;
  font-size: 6px;
  white-space: nowrap;
}

.workflow-viewer-status span:first-child {
  color: #81dce9;
}

.workflow-viewer-status span:last-child {
  margin-left: auto;
}

.workflow-doc-layout {
  display: grid;
  grid-template-columns: 1fr 125px;
  gap: 13px;
  height: 100%;
}

.workflow-paper {
  position: relative;
  min-height: 220px;
  padding: 20px;
  border-radius: 5px;
  background: #f4f6f6;
  color: #0a2432;
  box-shadow: 0 16px 28px rgba(0, 8, 15, .24);
}

.workflow-paper::before {
  content: "SURVEY CONTROL · CONTROLERAPPORT";
  display: block;
  margin-bottom: 18px;
  color: #0c6f87;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .09em;
}

.workflow-paper strong {
  display: block;
  max-width: 75%;
  margin-bottom: 18px;
  font-size: 15px;
}

.workflow-paper-line {
  height: 5px;
  margin: 8px 0;
  border-radius: 99px;
  background: #c8d2d5;
}

.workflow-paper-line:nth-child(2n) { width: 72%; }
.workflow-paper-line:nth-child(3n) { width: 88%; }

.workflow-doc-aside {
  display: grid;
  align-content: start;
  gap: 8px;
}

.workflow-doc-aside span {
  padding: 10px;
  border: 1px solid rgba(102, 220, 239, .15);
  border-radius: 8px;
  color: #b9cbd1;
  font-size: 8px;
}

.workflow-delivery-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 13px;
}

.workflow-delivery-summary div {
  padding: 12px 8px;
  border: 1px solid rgba(101, 219, 237, .15);
  border-radius: 9px;
  background: rgba(36, 101, 122, .10);
  text-align: center;
}

.workflow-delivery-summary strong {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 17px;
}

.workflow-delivery-summary span {
  color: #92a8b1;
  font-size: 7px;
  text-transform: uppercase;
}

.workflow-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.workflow-principles article {
  padding: 24px;
  border: 1px solid rgba(100, 219, 237, .16);
  border-radius: 16px;
  background: rgba(10, 42, 59, .55);
}

.workflow-principles strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
}

.workflow-principles p {
  margin: 0;
  color: #b9cbd1;
  font-size: 12px;
  line-height: 1.55;
}

.workflow-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(244, 181, 45, .30);
  border-radius: 18px;
  background: linear-gradient(115deg, rgba(244, 181, 45, .11), rgba(12, 54, 72, .72));
}

.workflow-final h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -.035em;
}

.workflow-final p {
  max-width: 720px;
  margin: 0;
  color: #c5d6dc;
  font-size: 13px;
  line-height: 1.6;
}

.workflow-final .actions {
  margin: 0;
  white-space: nowrap;
}

.workflow-final .primary-button {
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .workflow-intro,
  .workflow-step,
  .workflow-step:nth-child(even),
  .workflow-final {
    grid-template-columns: 1fr;
  }

  .workflow-step:nth-child(even) .workflow-copy {
    order: 0;
  }

  .workflow-step::after,
  .workflow-step:nth-child(even)::after {
    background:
      linear-gradient(180deg, rgba(3, 18, 30, .87) 0, rgba(3, 18, 30, .70) 54%, rgba(3, 18, 30, .42) 100%),
      linear-gradient(90deg, rgba(3, 18, 30, .60), transparent 82%);
  }

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

  .workflow-final .actions {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  body.workflow-page {
    grid-template-rows: 54px auto auto;
  }

  .workflow-main {
    padding: 0;
  }

  .workflow-locale-switch {
    margin-left: auto;
  }

  .workflow-explainer {
    width: min(100% - 28px, 680px);
    margin: 42px auto 54px;
  }

  .workflow-story-intro {
    padding: 30px 22px;
    border-radius: 16px;
    background:
      linear-gradient(90deg, rgba(4, 20, 33, .92), rgba(5, 27, 42, .58)),
      linear-gradient(0deg, rgba(4, 20, 33, .74), transparent 52%),
      url("/assets/scenes-r2/werkwijze.webp") 70% center / cover no-repeat;
  }

  .workflow-step {
    min-height: 620px;
    border-radius: 16px;
  }

  .workflow-storyline {
    gap: 4px;
    padding: 0;
  }

  .workflow-storyline::before {
    right: 10%;
    left: 10%;
  }

  .workflow-story-node {
    width: 40px;
    height: 40px;
    box-shadow: 0 0 0 4px rgba(7, 29, 44, .96), 0 0 18px rgba(57, 216, 241, .12);
  }

  .workflow-storyline strong {
    font-size: 8px;
  }

  .workflow-storyline small {
    display: none;
  }

  .workflow-manifesto {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 16px;
    justify-items: center;
    padding: 13px 8px;
  }

  .workflow-manifesto span {
    gap: 0;
  }

  .workflow-manifesto span::after {
    display: none;
  }

  .workflow-steps {
    gap: 28px;
  }

  .workflow-steps::before {
    left: 24px;
  }

  .workflow-copy {
    padding: 28px 24px;
  }

  .workflow-screen-wrap {
    padding: 16px;
    align-items: flex-end;
  }

  .workflow-screen {
    height: 270px;
    min-height: 270px;
  }

  .workflow-map-panel {
    width: 54%;
  }

  .workflow-doc-layout {
    grid-template-columns: 1fr 92px;
  }
}

@media (max-width: 470px) {
  .workflow-explainer {
    width: min(100% - 22px, 440px);
  }

  .workflow-screen-wrap {
    padding: 10px;
  }

  .workflow-screen-body {
    padding: 12px;
  }

  .workflow-map-search {
    width: calc(100% - 28px);
  }

  .workflow-map-panel {
    right: 10px;
    bottom: 10px;
    width: 64%;
  }

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

  .workflow-doc-aside {
    display: none;
  }

  .workflow-delivery-summary {
    grid-template-columns: 1fr;
  }

  .workflow-final {
    padding: 26px 22px;
  }
}

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