:root {
  color-scheme: dark;
  --ink: #f4f6f9;
  --ink-2: #dce2ea;
  --muted: #9ca8b8;
  --line: #273140;
  --line-strong: #3a4658;
  --paper: #090d13;
  --surface: #111722;
  --surface-2: #0d121b;
  --dark: #080b10;
  --dark-soft: #131a25;
  --violet: #8a7cf3;
  --violet-dark: #b0a4ff;
  --violet-soft: #211d3a;
  --green: #51b88f;
  --orange: #e29a60;
  --danger: #ef8c8c;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .22), 0 12px 30px rgba(0, 0, 0, .2);
  --shadow-md: 0 28px 72px rgba(0, 0, 0, .34);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: Manrope, Arial, sans-serif;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-bottom: .55em;
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.08;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

h1 {
  max-width: 18ch;
  font-size: clamp(3.35rem, 5vw, 4.6rem);
}

.no-break {
  white-space: nowrap;
}

h2 {
  max-width: 20ch;
  font-size: clamp(2.25rem, 3.5vw, 3.1rem);
}

h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
}

p {
  color: var(--muted);
}

::selection {
  background: var(--violet);
  color: white;
}

:focus-visible {
  outline: 3px solid rgba(103, 83, 216, .42);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

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

.narrow {
  max-width: 780px;
}

.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;
  z-index: 1000;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--violet-dark);
  color: var(--paper);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(200, 206, 215, .7);
  background: var(--paper);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(17, 24, 39, .07);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
}

.brand > span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -.015em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav > a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a[aria-current="page"]:not(.button) {
  color: var(--violet-dark);
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 9px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--violet-dark);
  background: var(--violet-dark);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--paper) !important;
  font-size: 13px !important;
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button-inverse {
  border-color: rgba(255, 255, 255, .34);
  background: transparent;
  color: white;
}

.button-inverse:hover {
  border-color: white;
  background: white;
  color: #0b0f15;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  color: var(--violet);
  transition: transform .2s ease;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--violet-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero,
.page-hero,
.funnel-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero {
  padding: clamp(70px, 9vw, 122px) 0 clamp(68px, 8vw, 110px);
}

.page-hero,
.funnel-hero {
  padding: clamp(64px, 8vw, 100px) 0 clamp(70px, 8vw, 104px);
}

.hero-grid,
.page-hero-grid,
.funnel-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  gap: clamp(48px, 7vw, 96px);
}

.hero-copy {
  max-width: 720px;
}

.home-hero h1 {
  max-width: 16ch;
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 4.8vw, 4.35rem);
}

.hero-lead,
.page-hero-grid > div:first-child > p:not(.eyebrow),
.funnel-hero-grid > div:first-child > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-assurances li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: -8% -9% -5% 12%;
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(138, 124, 243, .14), rgba(17, 23, 34, .42));
  content: "";
}

.hero-visual-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(450px, 94%);
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(17, 23, 34, .96);
  box-shadow: var(--shadow-sm);
}

.hero-visual-note strong {
  font-size: 13px;
}

.hero-visual-note span {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.signal-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.signal-strip .shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.signal-strip span {
  display: flex;
  gap: 9px;
  align-items: baseline;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
  text-align: left;
  text-transform: uppercase;
}

/* Rode markering: dit zijn kosten, geen categorieën. */
.signal-strip span::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent, #8a7cf3);
  transform: translateY(-2px);
}

.signal-strip span:first-child {
  border-left: 1px solid var(--line);
}

.ai-scroll-story {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 26%, rgba(138, 124, 243, .1), transparent 28%),
    var(--surface-2);
}

.ai-scroll-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr);
  column-gap: clamp(58px, 8vw, 120px);
  padding-block: clamp(90px, 10vw, 140px);
}

.ai-scroll-intro {
  grid-column: 1;
  max-width: 600px;
  padding-bottom: 15vh;
}

.ai-scroll-intro h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.ai-scroll-intro > p:last-child {
  max-width: 560px;
  font-size: 17px;
}

.ai-scroll-stage {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  grid-column: 2;
  grid-row: 1 / span 5;
  align-self: start;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(17, 23, 34, .94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.ai-scroll-stage > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.scroll-toolbar {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #2d3745;
  color: #dce2ea;
  font-size: 10px;
  font-weight: 800;
}

.scroll-toolbar em {
  color: #a99df5;
  font-size: 9px;
  font-style: normal;
}

.scroll-node-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid #252e3b;
}

.scroll-node-row span {
  min-width: 0;
  padding: 11px;
  border: 1px solid #303b4a;
  border-radius: 8px;
  background: #101722;
  color: #8793a3;
  transition: border-color .35s ease, background-color .35s ease, color .35s ease, transform .35s ease;
}

.scroll-node-row i {
  display: block;
  margin-bottom: 16px;
  color: #7368c7;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

/* Was 8px met afkapping ("Regels en context combine..."); er is ruimte zat. */
.scroll-node-row b {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.ai-scroll-story[data-active-step="0"] [data-ai-scroll-node="0"],
.ai-scroll-story[data-active-step="1"] [data-ai-scroll-node="0"],
.ai-scroll-story[data-active-step="1"] [data-ai-scroll-node="1"],
.ai-scroll-story[data-active-step="2"] [data-ai-scroll-node="0"],
.ai-scroll-story[data-active-step="2"] [data-ai-scroll-node="1"],
.ai-scroll-story[data-active-step="2"] [data-ai-scroll-node="2"],
.ai-scroll-story[data-active-step="3"] [data-ai-scroll-node] {
  border-color: rgba(138, 124, 243, .66);
  background: #201c39;
  color: #f3f1ff;
}

.scroll-panel-stack {
  padding: 24px;
}

.scroll-stage-panel {
  min-height: 220px;
  padding: 24px;
  border: 1px solid #2d3745;
  border-radius: 12px;
  background: #111925;
}

.scroll-stage-panel small {
  display: block;
  margin-bottom: 20px;
  color: #a99df5;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scroll-stage-panel strong {
  display: block;
  color: #f4f6f9;
  font-size: 24px;
}

.scroll-stage-panel p {
  max-width: 560px;
  margin: 10px 0 22px;
  font-size: 12px;
}

.scroll-stage-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scroll-stage-panel li {
  padding: 7px 9px;
  border: 1px solid #354154;
  border-radius: 99px;
  color: #bac4d1;
  font-size: 9px;
}

.scroll-progress {
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: #273140;
}

.scroll-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: #8a7cf3;
  transition: width .35s ease;
}

.ai-scroll-step {
  grid-column: 1;
  min-height: 72vh;
  padding: 9vh 0;
  border-top: 1px solid var(--line);
  opacity: .38;
  transition: opacity .35s ease, transform .35s ease;
}

.ai-scroll-step.is-active {
  opacity: 1;
  transform: translateX(8px);
}

.ai-scroll-step > span {
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 800;
}

.ai-scroll-step h3 {
  max-width: 14ch;
  margin-top: 20px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.ai-scroll-step p {
  max-width: 530px;
  font-size: 16px;
}

.section {
  padding: clamp(78px, 9vw, 128px) 0;
}

.section-muted {
  border-block: 1px solid var(--line);
  background: var(--surface-2);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 40px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

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

.section-heading > p {
  max-width: 560px;
  margin-bottom: 6px;
}

.split-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .8fr);
  gap: clamp(50px, 8vw, 120px);
}

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

.prose {
  max-width: 660px;
  font-size: 18px;
}

.prose p:last-child {
  margin-bottom: 0;
}

.architecture-card {
  margin-top: clamp(48px, 7vw, 82px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.architecture-head {
  display: grid;
  align-items: center;
  grid-template-columns: 160px 1fr auto;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.architecture-head span,
.architecture-head small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.architecture-head strong {
  font-size: 14px;
  text-align: center;
}

.architecture-flow {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  padding: 40px;
}

.architecture-flow > i {
  display: none;
}

.architecture-flow > div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 184px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.architecture-flow > div:not(:last-of-type)::after {
  position: absolute;
  top: 50%;
  right: -22px;
  color: var(--violet);
  content: "→";
  font-size: 18px;
  transform: translateY(-50%);
}

.architecture-flow small {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.architecture-flow span {
  padding: 8px 10px;
  border-radius: 7px;
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 650;
}

.architecture-flow .architecture-core {
  border-color: rgba(103, 83, 216, .36);
  background: var(--violet-soft);
}

.architecture-flow .architecture-human {
  border-color: rgba(24, 120, 87, .32);
  background: #10241f;
}

.architecture-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: var(--dark-soft);
  color: white;
}

.architecture-foot span {
  padding: 13px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

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

.capability-card,
.system-preview-grid > a {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.capability-card:hover,
.system-preview-grid > a:hover {
  border-color: rgba(103, 83, 216, .46);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.capability-card > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  border-radius: 9px;
  background: var(--violet-soft);
  color: var(--violet-dark);
  font-size: 12px;
  font-weight: 800;
}

.capability-card h3 {
  max-width: 17ch;
  font-size: 24px;
}

.capability-card p {
  margin-bottom: 26px;
  font-size: 15px;
}

.capability-card b,
.system-preview-grid b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-size: 13px;
}

.capability-card b i,
.system-preview-grid b i {
  color: var(--violet);
  font-size: 17px;
  font-style: normal;
}

.device-pair {
  position: relative;
  width: 100%;
  min-height: 400px;
  padding: 26px 30px 76px 0;
}

.laptop-device {
  position: relative;
  width: 92%;
  margin-left: 0;
}

.laptop-screen {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 9px solid #1c222c;
  border-bottom-width: 13px;
  border-radius: 17px 17px 8px 8px;
  background: #f4f6f8;
  box-shadow: var(--shadow-md);
}

.laptop-base {
  width: 108%;
  height: 15px;
  margin-left: -4%;
  border-radius: 2px 2px 30px 30px;
  background: linear-gradient(#d9dde2, #aab1ba);
  box-shadow: 0 10px 20px rgba(17, 24, 39, .16);
}

.ui-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid #d9dde4;
  background: white;
  color: #202b39;
  font-size: 8px;
  font-weight: 800;
}

.ui-top i {
  padding: 4px 7px;
  border-radius: 99px;
  background: #f0eefc;
  color: #5c49bd;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.ui-layout {
  display: grid;
  height: calc(100% - 42px);
  grid-template-columns: 21% 1fr;
}

.ui-layout aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px 12px;
  border-right: 1px solid #dfe3e8;
  background: #eef1f4;
  font-size: 7px;
}

.ui-layout aside b {
  margin-bottom: 5px;
  color: #5c49bd;
}

.ui-layout aside span {
  color: #687486;
}

.ui-main {
  padding: 15px;
}

.ui-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ui-metrics span {
  display: flex;
  flex-direction: column;
  padding: 8px;
  border: 1px solid #e0e4e9;
  border-radius: 6px;
  background: white;
}

.ui-metrics small {
  color: #7a8492;
  font-size: 5px;
}

.ui-metrics b {
  color: #202b39;
  font-size: 12px;
}

.ui-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 11px;
}

.ui-flow span {
  position: relative;
  display: flex;
  min-height: 54px;
  flex-direction: column;
  padding: 7px;
  border: 1px solid #dfe3e8;
  border-radius: 5px;
  background: white;
}

.ui-flow span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -6px;
  z-index: 1;
  width: 6px;
  height: 1px;
  background: #9a8fe4;
  content: "";
}

.ui-flow i {
  display: inline-flex;
  width: 12px;
  height: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  border-radius: 3px;
  background: #eeeafd;
  color: #5f4ac6;
  font-size: 5px;
  font-style: normal;
}

.ui-flow b {
  color: #263142;
  font-size: 6px;
  line-height: 1.25;
}

.ui-flow small {
  margin-top: 3px;
  color: #88919d;
  font-size: 4px;
}

.ui-table {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #dfe3e8;
  border-radius: 5px;
  background: white;
}

.ui-table > span {
  display: grid;
  grid-template-columns: 1.4fr .8fr .7fr;
  padding: 5px 7px;
  border-bottom: 1px solid #e9ecf0;
  font-size: 5px;
}

.ui-table > span:first-child {
  background: #f4f5f7;
  color: #697485;
}

.ui-table i,
.ui-table em {
  color: #526072;
  font-style: normal;
}

.ui-table em {
  color: var(--green);
  font-weight: 700;
}

.phone-device {
  position: absolute;
  right: 2px;
  bottom: 34px;
  width: 27%;
  min-width: 112px;
  padding: 8px;
  border: 4px solid #1d232d;
  border-radius: 27px;
  background: #111722;
  box-shadow: 0 18px 44px rgba(17, 24, 39, .28);
}

.device-disclaimer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.phone-notch {
  position: absolute;
  top: 5px;
  left: 50%;
  z-index: 2;
  width: 42%;
  height: 9px;
  border-radius: 0 0 7px 7px;
  background: #111722;
  transform: translateX(-50%);
}

.phone-ui {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 19px 9px 10px;
  border-radius: 18px;
  background: #f5f6f8;
}

.phone-ui > small {
  margin-bottom: 14px;
  color: #5f4ac6;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.phone-ui > strong {
  margin-bottom: 9px;
  color: #1e2938;
  font-size: 9px;
  line-height: 1.25;
}

.phone-ui > span {
  display: grid;
  align-items: center;
  grid-template-columns: 15px 1fr;
  gap: 6px;
  margin-bottom: 5px;
  padding: 6px;
  border: 1px solid #e0e4e9;
  border-radius: 5px;
  background: white;
}

.phone-ui i {
  display: flex;
  width: 13px;
  height: 13px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #eeeafd;
  color: #5f4ac6;
  font-size: 5px;
  font-style: normal;
}

.phone-ui b {
  color: #526072;
  font-size: 5px;
  line-height: 1.25;
}

.solution-carousel {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.carousel-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.carousel-tabs button {
  min-height: 58px;
  padding: 12px 20px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.carousel-tabs button:last-child {
  border-right: 0;
}

.carousel-tabs button[aria-selected="true"] {
  background: var(--violet-soft);
  color: var(--ink);
}

.carousel-stage article {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, .68fr) minmax(500px, 1.32fr);
  gap: 48px;
  min-height: 560px;
  padding: 46px;
}

.carousel-stage h3 {
  max-width: 15ch;
  font-size: clamp(2rem, 3vw, 3rem);
}

.photo-proof {
  padding-top: 0;
}

.photo-proof-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(48px, 7vw, 90px);
}

.photo-proof figure {
  margin-bottom: 0;
}

.photo-proof img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.photo-proof figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.check-list {
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  color: var(--ink-2);
}

.check-list li::before {
  position: absolute;
  top: .72em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  transform: translateY(-50%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 0 38px;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 250px;
  padding: 26px;
  background: var(--surface);
}

.process-grid li > span,
.principle-grid article > span,
.evidence-grid article > span,
.contact-grid article > span,
.route-choice-grid article > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border-radius: 8px;
  background: var(--violet-soft);
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 800;
}

.process-grid h3 {
  font-size: 20px;
}

.process-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.process-grid-detailed li {
  min-height: 320px;
}

.process-grid-detailed small {
  display: block;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 650;
}

.system-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.system-preview-grid > a {
  min-height: 260px;
  padding: 24px;
}

.system-preview-grid > a > span {
  margin-bottom: 34px;
  color: var(--violet-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.system-preview-grid h3 {
  font-size: 20px;
}

.system-preview-grid p {
  font-size: 13px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.proof-summary {
  background: var(--dark-soft);
  color: white;
}

.proof-summary .eyebrow {
  color: #bdb5f3;
}

.proof-summary h2 {
  color: white;
}

.proof-summary-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.proof-points {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.proof-points article {
  display: grid;
  grid-template-columns: 42px 180px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.proof-points span {
  color: #a79ce9;
  font-size: 11px;
  font-weight: 800;
}

.proof-points h3 {
  margin-bottom: 0;
  color: white;
  font-size: 18px;
}

.proof-points p {
  margin-bottom: 0;
  color: #b8c0cc;
  font-size: 14px;
}

.cta-section {
  padding: 70px 0;
  background: #4b3bae;
  color: white;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-inner .eyebrow {
  color: #d8d1ff;
}

.cta-inner h2 {
  max-width: 18ch;
  margin-bottom: 14px;
  color: white;
}

.cta-inner p {
  max-width: 660px;
  margin-bottom: 0;
  color: #ddd8fa;
}

.cta-inner > div:last-child {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.cta-inner .button:first-child {
  border-color: white;
  background: white;
  color: #0b0f15;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--ink-2);
  text-decoration: none;
}

.page-hero h1,
.funnel-hero h1 {
  max-width: 15ch;
  font-size: clamp(3.3rem, 5vw, 4.9rem);
}

.page-hero .architecture-card {
  margin-top: 0;
}

.page-hero .architecture-head {
  grid-template-columns: 1fr;
}

.page-hero .architecture-head strong,
.page-hero .architecture-head small {
  text-align: left;
}

.page-hero .architecture-flow {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
}

.page-hero .architecture-flow > div {
  min-height: 135px;
}

.page-hero .architecture-flow > div::after {
  display: none;
}

.principle-grid,
.evidence-grid,
.route-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.principle-grid article,
.evidence-grid article,
.route-choice-grid article {
  min-height: 300px;
  padding: 28px;
  background: white;
}

.principle-grid h2,
.evidence-grid h2,
.route-choice-grid h2 {
  font-size: 24px;
}

.principle-grid p,
.evidence-grid p,
.route-choice-grid p {
  font-size: 15px;
}

.system-library-section {
  padding-top: 54px;
}

.library-toolbar {
  position: sticky;
  z-index: 20;
  top: calc(var(--header-height) + 12px);
  margin-bottom: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.library-toolbar label {
  display: block;
  margin-bottom: 16px;
}

.library-toolbar label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 750;
}

.library-toolbar input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: #fafafa;
  color: var(--ink);
  font-size: 16px;
}

.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.filter-row button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.filter-row button span {
  color: var(--muted);
  font-size: 9px;
}

.filter-row button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.filter-row button[aria-pressed="true"] span {
  color: #c8cfda;
}

.library-count {
  margin: 12px 0 0;
  font-size: 12px;
}

.system-library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.system-card {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}

.system-card.is-detailed {
  grid-column: span 1;
  border-color: rgba(103, 83, 216, .34);
}

.system-category {
  margin-bottom: 30px;
  color: var(--violet-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.system-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.system-card > p {
  margin-bottom: 24px;
  font-size: 13px;
}

.system-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.system-scope-label {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.system-card details {
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.system-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.system-card summary::-webkit-details-marker {
  display: none;
}

.system-card summary span {
  color: var(--violet);
  font-size: 18px;
}

.system-card details[open] {
  grid-column: 1 / -1;
}

.system-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.system-detail > div {
  padding: 16px;
  border-radius: 8px;
  background: var(--surface-2);
}

.system-detail h4 {
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: -.01em;
}

.system-detail p,
.system-detail li {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
}

.system-detail ul {
  margin: 0;
  padding-left: 18px;
}

.system-detail p span,
.tag-list span {
  display: inline-flex;
  margin: 3px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: white;
  color: var(--ink-2);
  font-size: 10px;
}

.empty-state {
  padding: 70px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state h2,
.empty-state p {
  max-width: 640px;
  margin-inline: auto;
}

.category-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.category-summary-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}

.category-summary-grid span {
  color: var(--violet-dark);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.category-summary-grid h3 {
  margin-top: 28px;
  font-size: 22px;
}

.category-summary-grid p {
  margin-bottom: 0;
  font-size: 13px;
}

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

.industry-grid article {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.industry-grid article > span {
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.industry-grid h2 {
  max-width: 29ch;
  margin-top: 28px;
  font-size: 25px;
}

.industry-grid h3 {
  margin: 18px 0 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.industry-grid p {
  margin-bottom: 0;
}

.industry-grid p i {
  display: inline-flex;
  margin: 3px;
  padding: 5px 8px;
  border-radius: 99px;
  background: var(--violet-soft);
  color: var(--violet-dark);
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
}

.industry-grid small {
  color: var(--muted);
  font-size: 12px;
}

.industry-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.industry-grid a b {
  color: var(--violet);
}

.evidence-grid article small {
  display: block;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 650;
}

.proof-device-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.section-dark {
  background: var(--dark-soft);
  color: white;
}

.section-dark h2,
.section-dark strong {
  color: white;
}

.section-dark p {
  color: #c7ced8;
}

.proof-live-head {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 7vw, 100px);
}

.proof-live-head > div > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.7;
}

.proof-live-head ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: rgba(255, 255, 255, .16);
  list-style: none;
}

.proof-live-head li {
  min-height: 190px;
  padding: 24px;
  background: #171f2d;
}

.proof-live-head li span {
  display: block;
  margin-bottom: 28px;
  color: #a99cf4;
  font-size: 10px;
  font-weight: 800;
}

.proof-live-head li strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.proof-live-head li p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.proof-verification {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
  border-block: 1px solid rgba(255, 255, 255, .16);
}

.proof-verification article {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.proof-verification article:last-child {
  border-right: 0;
}

.proof-verification strong {
  font-size: 13px;
}

.proof-verification p {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.6;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 50px;
  padding: 1px;
  background: var(--line);
}

.quality-list article {
  min-height: 190px;
  padding: 24px;
  background: white;
}

.quality-list h2 {
  font-size: 20px;
}

.quality-list p {
  margin-bottom: 0;
  font-size: 13px;
}

.phase-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.phase-preview li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 18px;
  background: white;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}

.phase-preview span {
  color: var(--violet);
  font-size: 10px;
}

.analysis-section {
  padding: 70px 0 110px;
  background: var(--surface-2);
}

.analysis-shell {
  max-width: 900px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

.analysis-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
}

.analysis-top > div:first-child {
  display: flex;
  flex-direction: column;
}

.analysis-status {
  color: var(--violet-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.analysis-top strong {
  margin-top: 3px;
  font-size: 14px;
}

.analysis-progress {
  width: 220px;
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--surface-2);
}

.analysis-progress span {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: var(--violet);
  transition: width .25s ease;
}

.analysis-phase-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0 -28px 24px;
  border-block: 1px solid var(--line);
}

.analysis-phase-strip span {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  justify-content: center;
  padding: 8px 10px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.analysis-phase-strip i {
  margin-bottom: 2px;
  color: var(--violet);
  font-size: 8px;
  font-style: normal;
}

.analysis-phase-strip span.is-active {
  background: var(--violet-soft);
  color: var(--violet-dark);
}

.analysis-research {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
}

.research-intro strong {
  font-size: 17px;
}

.research-intro p {
  margin: 4px 0 20px;
  font-size: 13px;
}

.analysis-research > label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}

.analysis-research > div:not(.research-intro) {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.analysis-research input,
.analysis-composer textarea,
.form-grid input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-size: 15px;
}

.analysis-research > p {
  margin: 12px 0 0;
  font-size: 11px;
}

.analysis-skip {
  margin-top: 14px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.analysis-history {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.analysis-history > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.analysis-history > summary span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.analysis-chat {
  display: flex;
  max-height: 480px;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding: 20px;
  border-top: 1px solid var(--line);
  scrollbar-width: thin;
}

.analysis-message {
  display: grid;
  align-items: start;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
}

.analysis-message-user {
  grid-template-columns: minmax(0, 1fr) 34px;
}

.analysis-message-user .analysis-avatar {
  grid-column: 2;
}

.analysis-message-user .analysis-bubble {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  background: var(--violet-soft);
}

.analysis-avatar {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #4b3bae;
  color: white;
  font-size: 9px;
  font-weight: 800;
}

.analysis-bubble {
  max-width: 680px;
  margin-bottom: 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.analysis-composer {
  position: sticky;
  z-index: 5;
  bottom: max(10px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 36px rgba(17, 24, 39, .1);
  backdrop-filter: blur(14px);
}

.analysis-composer textarea {
  min-height: 52px;
  max-height: 140px;
  resize: vertical;
}

.analysis-error {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #ebc5c5;
  border-radius: 8px;
  background: #fff4f4;
  color: var(--danger);
  font-size: 13px;
}

.analysis-research-brief,
.analysis-sources,
.analysis-summary-confirmation,
.analysis-result,
.analysis-contact {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
}

.research-brief-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.research-brief-head span,
.research-confidence {
  color: var(--violet-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.research-brief-head h2 {
  margin-top: 8px;
  font-size: 24px;
}

.research-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.research-facts.is-single {
  grid-template-columns: 1fr;
}

.research-fact {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.research-fact dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.research-fact dd {
  margin: 5px 0 0;
  color: var(--ink-2);
  font-size: 12px;
}

.research-fact-sources a,
.analysis-source-links a {
  display: inline-flex;
  margin: 8px 8px 0 0;
  color: var(--violet-dark);
  font-size: 10px;
}

.research-unknowns {
  margin-bottom: 0;
  font-size: 11px;
}

.analysis-result > h2,
.analysis-contact h2,
.analysis-summary-confirmation h2 {
  font-size: 30px;
}

.diagnosis-label {
  color: var(--violet-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.diagnosis-summary {
  font-size: 14px;
}

.recommendation-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.recommendation {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
}

.recommendation h3 {
  margin-top: 7px;
  font-size: 20px;
}

.recommendation p,
.recommendation dd,
.recommendation dt {
  font-size: 12px;
}

.recommendation dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px;
  margin: 16px 0 0;
}

.recommendation dt {
  color: var(--ink);
  font-weight: 750;
}

.recommendation dd {
  margin: 0;
  color: var(--muted);
}

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

.summary-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.summary-grid span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.summary-grid p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 12px;
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.analysis-contact {
  background: var(--surface);
}

.analysis-contact > div:first-child {
  margin-bottom: 24px;
}

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

.form-grid label {
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 700;
}

.form-grid input {
  margin-top: 6px;
}

.consent {
  display: grid;
  align-items: start;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 11px;
}

.consent input {
  margin-top: 3px;
}

.form-status {
  margin: 12px 0 0;
  font-size: 12px;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: var(--danger);
}

.booking-panel {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.booking-slot {
  min-height: 46px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-size: 11px;
  cursor: pointer;
}

.booking-slot[aria-pressed="true"] {
  border-color: var(--violet);
  background: var(--violet-soft);
}

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

.contact-grid article {
  display: flex;
  min-width: 0;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.contact-grid h2 {
  font-size: 26px;
}

.contact-grid p {
  font-size: 14px;
}

.contact-grid a {
  margin-top: auto;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.funnel-hero {
  background: var(--dark);
}

.funnel-hero h1 {
  color: white;
}

.funnel-hero .eyebrow {
  color: #bbb1f5;
}

.funnel-hero p {
  color: #bfc7d2 !important;
}

.funnel-hero .laptop-screen {
  box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
}

.consequence-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.consequence-list li {
  padding: 22px 0 22px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 17px;
  font-weight: 650;
}

.consequence-list li::before {
  margin-left: -34px;
  margin-right: 18px;
  color: var(--orange);
  content: "×";
  font-weight: 800;
}

.mechanism-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.mechanism-flow li {
  min-height: 160px;
  padding: 22px;
  background: white;
}

.mechanism-flow span {
  display: block;
  margin-bottom: 32px;
  color: var(--violet);
  font-size: 10px;
  font-weight: 800;
}

.mechanism-flow strong {
  color: var(--ink-2);
  font-size: 14px;
}

.funnel-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.funnel-detail-grid article {
  min-width: 0;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.funnel-detail-grid small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
}

.faq-section details {
  border-top: 1px solid var(--line);
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  padding: 22px 0;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.faq-section details p {
  padding-bottom: 22px;
}

.legal-hero {
  padding: 70px 0 44px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  font-size: clamp(3rem, 5vw, 4.6rem);
}

.legal-copy h2 {
  margin-top: 48px;
  font-size: 26px;
}

.legal-copy p {
  font-size: 16px;
}

.site-footer {
  background: #0d1420;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 54px;
  padding: 72px 0 58px;
}

.site-footer .brand {
  color: white;
}

.site-footer .brand small,
.site-footer p,
.site-footer span {
  color: #98a3b3;
}

.footer-brand p {
  max-width: 430px;
  margin: 24px 0 0;
  font-size: 14px;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: white;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer > .shell > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer a {
  color: #bec6d2;
  font-size: 12px;
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
}

/* Vertrouwensgegevens: een bedrijf dat maatwerk bouwt, moet vindbaar en verifieerbaar zijn. */
.footer-registry {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: var(--muted);
  font-size: 12px;
}

.footer-registry b {
  margin-right: 6px;
  color: var(--ink-2);
  font-weight: 700;
}

.footer-registry a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 11px;
}

.footer-bottom > span:last-child {
  display: flex;
  gap: 20px;
}

.measurement-choice {
  position: fixed;
  z-index: 300;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: min(620px, calc(100vw - 36px));
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow-md);
}

.measurement-choice strong {
  font-size: 13px;
}

.measurement-choice p {
  margin: 4px 0;
  font-size: 10px;
}

.measurement-choice a {
  color: var(--violet-dark);
  font-size: 10px;
}

.measurement-choice-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.measurement-choice .button {
  min-height: 38px;
  padding: 8px 11px;
  font-size: 10px;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .28s ease var(--reveal-delay, 0ms), transform .28s ease var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Donkere enterprise-oppervlakken. Apparatuurmockups behouden bewust lichte schermen. */
.principle-grid article,
.evidence-grid article,
.route-choice-grid article,
.system-card,
.category-summary-grid article,
.industry-grid article,
.quality-list article,
.phase-preview li,
.analysis-shell,
.analysis-history,
.research-fact,
.recommendation,
.summary-grid span,
.contact-grid article,
.mechanism-flow li,
.funnel-detail-grid article,
.measurement-choice {
  background: var(--surface);
}

.library-toolbar {
  background: rgba(17, 23, 34, .96);
}

.library-toolbar input,
.filter-row button,
.analysis-research,
.analysis-research input,
.analysis-composer textarea,
.form-grid input,
.analysis-research-brief,
.analysis-sources,
.analysis-summary-confirmation,
.analysis-result,
.analysis-contact {
  background: var(--surface-2);
}

.analysis-composer {
  background: rgba(17, 23, 34, .96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
}

.system-detail p span,
.tag-list span,
.booking-slot {
  background: var(--surface);
}

.filter-row button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.filter-row button[aria-pressed="true"] span {
  color: #4c5868;
}

.analysis-error {
  border-color: rgba(239, 140, 140, .42);
  background: #2a171b;
}

.site-header {
  border-bottom-color: var(--line);
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a {
    font-size: 12px;
  }

  .hero-grid,
  .page-hero-grid,
  .funnel-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
    gap: 50px;
  }

  .ai-scroll-grid {
    grid-template-columns: minmax(0, .72fr) minmax(440px, 1.28fr);
    column-gap: 44px;
  }

  .capability-grid,
  .system-library-grid,
  .category-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .carousel-stage article {
    grid-template-columns: 1fr;
  }

  .carousel-stage article > div:first-child {
    max-width: 650px;
  }

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

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

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
    --shell: calc(100% - 32px);
  }

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    cursor: pointer;
  }

  .nav-toggle > span:not(.sr-only) {
    width: 17px;
    height: 2px;
    background: var(--ink);
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-md);
  }

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

  .primary-nav > a:not(.button) {
    padding: 15px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .primary-nav .button {
    margin-top: 14px;
  }

  .hero-grid,
  .page-hero-grid,
  .funnel-hero-grid,
  .section-heading,
  .split-wide,
  .photo-proof-grid,
  .proof-summary-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .page-hero-grid,
  .funnel-hero-grid {
    gap: 52px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .signal-strip .shell {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }

  .ai-scroll-grid {
    display: block;
    padding-block: 72px;
  }

  .ai-scroll-intro {
    padding-bottom: 48px;
  }

  .ai-scroll-stage {
    z-index: 12;
    top: calc(var(--header-height) + 10px);
    margin-bottom: 28px;
    padding: 14px;
    border-radius: 18px;
  }

  .scroll-toolbar {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .scroll-node-row {
    gap: 4px;
    padding: 10px;
  }

  .scroll-node-row span {
    padding: 7px;
  }

  .scroll-node-row i {
    margin-bottom: 0;
    font-size: 11px;
  }

  .scroll-node-row b {
    display: none;
  }

  .scroll-panel-stack {
    padding: 12px;
  }

  .scroll-stage-panel {
    min-height: 150px;
    padding: 14px;
  }

  .scroll-stage-panel small {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .scroll-stage-panel strong {
    font-size: 18px;
  }

  .scroll-stage-panel p {
    margin-block: 6px 12px;
    font-size: 12px;
  }

  .scroll-stage-panel li {
    font-size: 11px;
  }

  .ai-scroll-step {
    position: relative;
    min-height: 50vh;
    padding: 0;
    border: 0;
  }

  .ai-scroll-step > span,
  .ai-scroll-step h3,
  .ai-scroll-step p {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

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

  .architecture-flow > div::after {
    display: none;
  }

  .architecture-head {
    grid-template-columns: 1fr;
  }

  .architecture-head strong {
    text-align: left;
  }

  .proof-summary-grid {
    gap: 50px;
  }

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

  .principle-grid,
  .route-choice-grid,
  .quality-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .funnel-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid article {
    min-height: 260px;
  }

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

  .mechanism-flow li:last-child {
    grid-column: 1 / -1;
  }

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

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

  body {
    font-size: 17px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.625rem, 12.5vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -.045em;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.08;
  }

  h3 {
    text-wrap: pretty;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero,
  .page-hero,
  .funnel-hero {
    padding: 54px 0 64px;
  }

  .home-hero h1,
  .page-hero h1,
  .funnel-hero h1 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(2.625rem, 11.8vw, 3.35rem);
    line-height: 1.03;
  }

  .hero-lead,
  .page-hero-grid > div:first-child > p:not(.eyebrow),
  .funnel-hero-grid > div:first-child > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.6;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .button-row .button,
  .button-row .text-link {
    width: 100%;
  }

  .button-row .text-link {
    justify-content: center;
    min-height: 46px;
  }

  .hero-assurances {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    margin-top: 24px;
  }

  .device-pair {
    min-height: 270px;
    padding: 14px 20px 54px 0;
  }

  .laptop-device {
    width: 94%;
  }

  .laptop-screen {
    border-width: 6px;
    border-bottom-width: 9px;
    border-radius: 11px 11px 5px 5px;
  }

  .laptop-base {
    height: 10px;
  }

  .ui-top {
    height: 24px;
    padding: 0 8px;
    font-size: 5px;
  }

  .ui-top i {
    display: none;
  }

  .ui-layout {
    height: calc(100% - 24px);
    grid-template-columns: 19% 1fr;
  }

  .ui-layout aside {
    gap: 6px;
    padding: 8px 5px;
    font-size: 4px;
  }

  .ui-main {
    padding: 7px;
  }

  .ui-metrics {
    gap: 3px;
  }

  .ui-metrics span {
    padding: 4px;
  }

  .ui-metrics small {
    font-size: 3px;
  }

  .ui-metrics b {
    font-size: 7px;
  }

  .ui-flow {
    gap: 2px;
    margin-top: 5px;
  }

  .ui-flow span {
    min-height: 31px;
    padding: 3px;
  }

  .ui-flow i {
    width: 7px;
    height: 7px;
    margin-bottom: 2px;
    font-size: 3px;
  }

  .ui-flow b {
    font-size: 3px;
  }

  .ui-flow small,
  .ui-table {
    display: none;
  }

  .phone-device {
    bottom: 28px;
    min-width: 78px;
    padding: 5px;
    border-width: 3px;
    border-radius: 19px;
  }

  .phone-ui {
    min-height: 140px;
    padding: 14px 6px 6px;
    border-radius: 12px;
  }

  .phone-ui > small {
    margin-bottom: 8px;
    font-size: 3px;
  }

  .phone-ui > strong {
    margin-bottom: 5px;
    font-size: 5px;
  }

  .phone-ui > span {
    grid-template-columns: 10px 1fr;
    gap: 3px;
    padding: 3px;
  }

  .phone-ui i {
    width: 8px;
    height: 8px;
    font-size: 3px;
  }

  .phone-ui b {
    font-size: 3px;
  }

  .hero-visual-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual-note span {
    text-align: left;
  }

  /* Eén kolom op telefoon: de kostenregels moeten leesbaar blijven, niet in 9px-cellen persen. */
  .signal-strip .shell {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .signal-strip span {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
  }

  .signal-strip span:first-child {
    border-left: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 36px;
  }

  .section-heading > p,
  .prose {
    font-size: 16px;
  }

  .architecture-card {
    margin-top: 38px;
    border-radius: 12px;
  }

  .architecture-head {
    gap: 4px;
    padding: 14px;
  }

  .architecture-head strong {
    font-size: 12px;
  }

  .architecture-flow,
  .page-hero .architecture-flow {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .architecture-flow > div,
  .page-hero .architecture-flow > div {
    min-height: auto;
    padding: 14px;
  }

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

  .architecture-foot span {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 8px;
  }

  .capability-grid,
  .system-preview-grid,
  .system-library-grid,
  .category-summary-grid {
    grid-template-columns: 1fr;
  }

  .route-home .capability-grid,
  .route-home .process-section .process-grid,
  .route-home .library-preview .system-preview-grid {
    display: flex;
    gap: 12px;
    width: calc(100vw - 14px);
    margin-left: 0;
    overflow-x: auto;
    padding: 1px 14px 14px 1px;
    background: transparent;
    scroll-padding-left: 1px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .route-home .capability-grid > *,
  .route-home .process-section .process-grid > *,
  .route-home .library-preview .system-preview-grid > * {
    width: min(82vw, 330px);
    min-width: min(82vw, 330px);
    scroll-snap-align: start;
  }

  .capability-card {
    min-height: 250px;
  }

  .solution-carousel {
    border-radius: 14px;
  }

  .carousel-tabs {
    grid-template-columns: 1fr;
  }

  .carousel-tabs button {
    min-height: 45px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .carousel-stage article {
    gap: 20px;
    min-height: auto;
    padding: 24px 16px;
  }

  .carousel-stage h3 {
    font-size: 30px;
  }

  .photo-proof-grid {
    gap: 34px;
  }

  .photo-proof img {
    border-radius: 14px;
  }

  .process-grid,
  .principle-grid,
  .route-choice-grid,
  .quality-list {
    grid-template-columns: 1fr;
  }

  .process-grid li,
  .process-grid-detailed li {
    min-height: 220px;
  }

  .proof-points article {
    grid-template-columns: 36px 1fr;
  }

  .proof-points p {
    grid-column: 2;
  }

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

  .cta-inner {
    gap: 30px;
  }

  .cta-inner > div:last-child {
    width: 100%;
    flex-direction: column;
  }

  .breadcrumbs {
    overflow-x: auto;
    padding-top: 16px;
    white-space: nowrap;
  }

  .library-toolbar {
    top: calc(var(--header-height) + 6px);
    margin-inline: -4px;
    padding: 14px;
    border-radius: 12px;
  }

  .filter-row {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .system-card {
    min-height: 210px;
  }

  .system-detail {
    grid-template-columns: 1fr;
  }

  .industry-grid article {
    min-height: 390px;
    padding: 24px;
  }

  .industry-grid h2 {
    font-size: 23px;
  }

  .phase-preview {
    grid-template-columns: 1fr;
  }

  .phase-preview li {
    min-height: 54px;
  }

  .analysis-section {
    padding: 36px 0 70px;
  }

  .analysis-shell {
    width: calc(100% - 16px);
    padding: 14px;
    border-radius: 14px;
  }

  .analysis-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .analysis-progress {
    width: 100%;
  }

  .analysis-phase-strip {
    grid-template-columns: repeat(3, 1fr);
    margin-inline: -14px;
  }

  .analysis-phase-strip span {
    border-bottom: 1px solid var(--line);
  }

  .analysis-research {
    padding: 16px;
  }

  .analysis-research > div:not(.research-intro) {
    grid-template-columns: 1fr;
  }

  .analysis-history > summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .analysis-chat {
    max-height: 390px;
    padding: 14px;
  }

  .analysis-message,
  .analysis-message-user {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .analysis-message-user {
    grid-template-columns: minmax(0, 1fr) 28px;
  }

  .analysis-avatar {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    font-size: 7px;
  }

  .analysis-bubble {
    padding: 10px 11px;
    font-size: 12px;
  }

  .analysis-composer {
    grid-template-columns: 1fr;
    bottom: max(6px, env(safe-area-inset-bottom));
  }

  .analysis-composer .button {
    width: 100%;
  }

  .analysis-research-brief,
  .analysis-sources,
  .analysis-summary-confirmation,
  .analysis-result,
  .analysis-contact {
    padding: 16px;
  }

  .research-brief-head {
    flex-direction: column;
  }

  .research-facts,
  .summary-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .recommendation dl {
    grid-template-columns: 1fr;
  }

  .booking-slots {
    grid-template-columns: 1fr;
  }

  .mechanism-flow,
  .funnel-detail-grid {
    grid-template-columns: 1fr;
  }

  .proof-live-head,
  .proof-live-head ol,
  .proof-verification {
    grid-template-columns: 1fr;
  }

  .proof-live-head {
    gap: 36px;
  }

  .proof-live-head li {
    min-height: 150px;
  }

  .proof-verification article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .proof-verification article:last-child {
    border-bottom: 0;
  }

  .mechanism-flow li:last-child {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 58px 0 44px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .measurement-choice {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 11px;
  }

  .measurement-choice-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .measurement-choice .button {
    width: 100%;
    min-height: 36px;
    padding: 7px 8px;
    font-size: 9px;
  }
}

/* Premium donkere merklaag. Rijker dan de basis, zonder sci-fi-effecten. */
:root {
  --ink: #f7f5fb;
  --ink-2: #ded9e8;
  --muted: #aaa2b7;
  --line: rgba(191, 168, 255, .16);
  --line-strong: rgba(191, 168, 255, .32);
  --paper: #07070b;
  --surface: #101018;
  --surface-2: #0b0b11;
  --dark: #050507;
  --dark-soft: #15131d;
  --violet: #9d74ff;
  --violet-dark: #c2b1ff;
  --violet-soft: rgba(118, 76, 206, .2);
  --green: #5ed2a6;
  --orange: #f2a36c;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3), 0 16px 38px rgba(0, 0, 0, .22);
  --shadow-md: 0 36px 100px rgba(0, 0, 0, .46);
}

body {
  background:
    radial-gradient(circle at 84% 4%, rgba(109, 70, 186, .14), transparent 27rem),
    linear-gradient(180deg, #08080d 0, var(--paper) 36rem);
}

.site-header {
  border-bottom-color: rgba(191, 168, 255, .14);
  background: #07070b;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: #07070b;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
}

.button {
  border-color: rgba(181, 151, 255, .82);
  background: linear-gradient(135deg, #7449d8, #9a63ef 58%, #b075de);
  color: #fff;
  box-shadow: 0 12px 34px rgba(117, 73, 216, .24);
}

.button:hover {
  border-color: #cbbcff;
  background: linear-gradient(135deg, #8055e2, #a66ff6 58%, #ba7be7);
  box-shadow: 0 16px 40px rgba(117, 73, 216, .34);
}

.button-small {
  color: #fff !important;
}

.home-hero {
  min-height: 700px;
  padding: 74px 0 82px;
  background:
    radial-gradient(circle at 82% 42%, rgba(121, 77, 210, .2), transparent 25rem),
    radial-gradient(circle at 62% 92%, rgba(204, 97, 157, .07), transparent 22rem),
    linear-gradient(180deg, rgba(12, 11, 18, .96), rgba(7, 7, 11, .98));
}

.home-hero::before {
  position: absolute;
  top: 14%;
  right: 4%;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(191, 168, 255, .08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.home-hero::after {
  position: absolute;
  top: 15%;
  right: 47%;
  width: 38px;
  height: 78px;
  background: linear-gradient(180deg, #a86cf1, #ed7298 72%, #f3a168);
  clip-path: polygon(48% 0, 100% 0, 67% 39%, 94% 39%, 28% 100%, 44% 57%, 10% 57%);
  content: "";
  opacity: .12;
  pointer-events: none;
  transform: rotate(7deg);
}

.home-hero .hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(500px, 1fr);
  gap: clamp(40px, 4.6vw, 68px);
}

.home-hero h1 {
  max-width: 19ch;
  font-size: clamp(3.65rem, 5.3vw, 5rem);
  letter-spacing: -.052em;
  line-height: .98;
}

.home-hero .hero-lead {
  max-width: 620px;
  font-size: clamp(1.08rem, 1.4vw, 1.2rem);
}

.accent-text {
  background: linear-gradient(100deg, #a877ff 8%, #ef6fa7 58%, #f2a067 98%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-pov {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-pov::before {
  position: absolute;
  z-index: -1;
  inset: 10% -7% -8% 9%;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(116, 73, 216, .28), rgba(196, 104, 177, .08));
  filter: blur(34px);
  content: "";
}

.hero-pov-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(207, 190, 255, .32);
  border-radius: 28px;
  background: #0c0c12;
  box-shadow: 0 42px 110px rgba(0, 0, 0, .58);
}

.hero-pov-frame::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 68%, rgba(4, 4, 7, .34));
  content: "";
  pointer-events: none;
}

.hero-pov img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}

.hero-pov figcaption {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 5px 24px;
  margin: 18px 6px 0;
}

.hero-pov figcaption strong {
  color: var(--ink);
  font-size: 14px;
}

.hero-pov figcaption span {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.hero-pov figcaption small {
  grid-column: 1 / -1;
  color: #a79fb5;
  font-size: 11px;
}

.motion-ready .home-hero [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.signal-strip {
  background: rgba(12, 11, 18, .92);
}

.signal-strip span {
  color: #c8c1d3;
}

.ai-scroll-story {
  background:
    radial-gradient(circle at 76% 24%, rgba(116, 73, 216, .18), transparent 30rem),
    linear-gradient(180deg, #0c0b12, #08080c);
}

.ai-scroll-intro h2 {
  max-width: 11ch;
  letter-spacing: -.045em;
}

.ai-scroll-stage {
  border-color: rgba(194, 177, 255, .28);
  background: linear-gradient(145deg, rgba(22, 19, 32, .98), rgba(11, 11, 17, .98));
  box-shadow: 0 42px 100px rgba(0, 0, 0, .48);
}

.scroll-stage-panel {
  border-color: rgba(194, 177, 255, .2);
  background: linear-gradient(145deg, #15131d, #101018);
}

.ai-scroll-step.is-active {
  transform: translateX(10px);
}

.capability-card,
.system-preview-grid > a,
.process-grid li {
  background: linear-gradient(145deg, rgba(19, 18, 28, .98), rgba(12, 12, 18, .98));
}

.photo-proof {
  padding-top: clamp(72px, 8vw, 110px);
}

.control-visual {
  margin: 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 65% 34%, rgba(116, 73, 216, .2), transparent 18rem),
    #0e0d15;
  box-shadow: var(--shadow-md);
}

.control-visual figcaption {
  margin: 14px 0 0;
}

@media (max-width: 1100px) {
  .home-hero .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
    gap: 42px;
  }

  .home-hero h1 {
    font-size: clamp(3.25rem, 5.7vw, 4.25rem);
  }
}

@media (max-width: 860px) {
  body {
    background: var(--paper);
  }

  .site-header {
    backdrop-filter: none;
  }

  .home-hero {
    min-height: auto;
    padding: 58px 0 72px;
    background:
      radial-gradient(circle at 88% 72%, rgba(116, 73, 216, .14), transparent 17rem),
      #09080f;
  }

  .home-hero::before,
  .home-hero::after,
  .hero-pov::before {
    display: none;
  }

  .home-hero .hero-grid {
    display: flex;
    gap: 40px;
    flex-direction: column;
  }

  .home-hero .hero-copy {
    max-width: 680px;
  }

  .home-hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 11vw, 4rem);
    line-height: 1;
  }

  .home-hero .hero-assurances {
    margin-top: 24px;
  }

  .hero-pov {
    width: min(100%, 680px);
  }

  .hero-pov-frame {
    box-shadow: none;
  }

  .home-hero .button {
    box-shadow: none;
  }

  .ai-scroll-grid {
    display: block;
    padding-block: 72px;
  }

  .ai-scroll-intro {
    padding-bottom: 24px;
  }

  .ai-scroll-intro h2 {
    max-width: 13ch;
  }

  /* Mobiel kreeg na de hero geen enkel productbeeld meer. Paneel blijft staan,
     maar statisch i.p.v. sticky: de scrollkoppeling werkt daar toch niet. */
  .ai-scroll-stage {
    position: static;
    display: block;
    margin-top: 20px;
    padding: 14px;
  }

  .ai-scroll-stage > p {
    font-size: 10px;
  }

  .ai-scroll-step {
    position: relative;
    min-height: auto;
    margin-top: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(20, 18, 29, .98), rgba(11, 11, 17, .98));
    opacity: 1;
  }

  .ai-scroll-step.is-active {
    border-color: rgba(194, 177, 255, .54);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .26);
    transform: none;
  }

  .ai-scroll-step > span,
  .ai-scroll-step h3,
  .ai-scroll-step p {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip-path: none;
    white-space: normal;
  }

  .ai-scroll-step > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--violet-soft);
  }

  .ai-scroll-step h3 {
    max-width: 18ch;
    margin: 22px 0 10px;
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .ai-scroll-step p {
    margin: 0;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .home-hero {
    padding: 42px 0 58px;
  }

  .home-hero .hero-grid {
    gap: 32px;
  }

  .home-hero h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.7rem, 12vw, 3.15rem);
    line-height: 1.01;
  }

  .home-hero .hero-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .home-hero .button-row {
    margin-top: 24px;
  }

  .home-hero .hero-assurances {
    display: none;
  }

  .hero-pov::before {
    inset: 12% -4% -6% 8%;
  }

  .hero-pov-frame {
    border-radius: 18px;
  }

  .hero-pov img {
    height: 160px;
    aspect-ratio: 2.25 / 1;
    object-position: center 58%;
  }

  .hero-pov figcaption {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 12px;
  }

  .hero-pov figcaption span,
  .hero-pov figcaption small {
    grid-column: 1;
    text-align: left;
  }

  .page-hero h1,
  .funnel-hero h1 {
    font-size: clamp(2.625rem, 11vw, 3.1rem);
    line-height: 1.04;
  }

  .ai-scroll-grid {
    padding-block: 58px;
  }

  .ai-scroll-intro {
    padding-bottom: 18px;
  }

  .ai-scroll-step {
    padding: 21px;
  }

  .control-visual {
    padding: 14px;
    border-radius: 18px;
  }
}

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

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* v7: mobiele duidelijkheid, resultaatgerichte scenario's en eerlijke interfaces. */
.architecture-flow {
  margin: 0;
  list-style: none;
}

.architecture-flow li {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(22, 20, 31, .98), rgba(12, 12, 18, .98));
}

.architecture-flow li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 14px;
  height: 1px;
  background: var(--violet);
  content: "";
}

.architecture-flow li > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--violet-soft);
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 800;
}

.architecture-flow li strong {
  display: block;
  margin: 5px 0 10px;
  color: var(--ink);
  font-size: 18px;
}

.architecture-flow li p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.architecture-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 20px;
}

.architecture-foot strong {
  margin-right: auto;
  color: var(--ink);
  font-size: 12px;
}

.architecture-foot span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 10px;
  line-height: 1;
}

.interface-preview {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(190px, .34fr);
  gap: 16px;
  width: 100%;
}

.interface-desktop,
.interface-mobile {
  overflow: hidden;
  border: 1px solid rgba(194, 177, 255, .26);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(21, 19, 30, .98), rgba(10, 10, 15, .98));
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

.interface-desktop > header,
.interface-mobile > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 15px;
  border-bottom: 1px solid var(--line);
}

.interface-desktop > header > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.interface-desktop > header i,
.interface-mobile > header i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(94, 210, 166, .55);
}

.interface-desktop > header strong,
.interface-mobile > header span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.interface-desktop > header small {
  color: var(--muted);
  font-size: 9px;
}

.interface-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 14px 0;
}

.interface-metrics span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
}

.interface-metrics small {
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.interface-metrics strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 20px;
}

.interface-route {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 14px;
  list-style: none;
}

.interface-route li {
  display: grid;
  align-items: center;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 11px;
  min-height: 56px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(6, 6, 10, .5);
}

.interface-route li > span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--violet-soft);
  color: var(--violet-dark);
  font-size: 9px;
  font-weight: 800;
}

.interface-route li div {
  min-width: 0;
}

.interface-route li strong,
.interface-route li small {
  display: block;
}

.interface-route li strong {
  color: var(--ink-2);
  font-size: 11px;
}

.interface-route li small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}

.interface-route li > b {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(94, 210, 166, .12);
  color: var(--green);
  font-size: 8px;
}

.interface-route li.needs-control {
  border-color: rgba(242, 163, 108, .3);
}

.interface-route li.needs-control > b {
  background: rgba(242, 163, 108, .12);
  color: var(--orange);
}

.interface-desktop > footer {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 14px 14px;
}

.interface-desktop > footer span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 8px;
}

.interface-mobile {
  align-self: center;
  min-height: 330px;
}

.interface-mobile > small,
.interface-mobile > strong,
.interface-mobile > p,
.interface-mobile > div,
.interface-mobile > footer {
  display: block;
  margin-right: 16px;
  margin-left: 16px;
}

.interface-mobile > small {
  margin-top: 26px;
  color: var(--violet-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.interface-mobile > strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.interface-mobile > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.interface-mobile > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 20px;
}

.interface-mobile > div span {
  min-height: 38px;
  padding: 10px;
  border: 1px solid rgba(194, 177, 255, .28);
  border-radius: 9px;
  color: var(--ink-2);
  font-size: 10px;
  font-weight: 750;
  text-align: center;
}

.interface-mobile > footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 9px;
}

.interface-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.carousel-instruction {
  margin: 0;
  padding: 22px 24px 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.carousel-tabs {
  gap: 10px;
  padding: 0 24px 24px;
  border-bottom: 0;
}

.carousel-tabs button {
  display: grid;
  align-items: center;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  min-height: 72px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
  text-align: left;
}

.carousel-tabs button:last-child {
  border-right: 1px solid var(--line);
}

.carousel-tabs button > span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font-size: 9px;
}

.carousel-tabs button strong {
  color: var(--ink-2);
  font-size: 12px;
}

.carousel-tabs button small {
  color: var(--violet-dark);
  font-size: 9px;
}

.carousel-tabs button[aria-selected="true"] {
  border-color: rgba(194, 177, 255, .52);
  background: linear-gradient(145deg, rgba(108, 69, 199, .28), rgba(20, 18, 29, .96));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.carousel-tabs button[aria-selected="true"] > span {
  background: var(--violet);
  color: white;
}

.carousel-tabs button[aria-selected="true"] small {
  color: var(--green);
}

.carousel-stage {
  border-top: 1px solid var(--line);
}

.carousel-stage article {
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  min-height: 610px;
  gap: 52px;
}

.scenario-evidence {
  display: grid;
  gap: 12px;
}

.scenario-change {
  display: grid;
  gap: 8px;
}

.scenario-change article {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, .025);
}

.scenario-change small,
.scenario-measures > small {
  color: var(--violet-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.scenario-change strong {
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.45;
}

.scenario-route {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scenario-route li {
  min-height: 112px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(7, 7, 11, .58);
}

.scenario-route span {
  display: block;
  margin-bottom: 24px;
  color: var(--violet-dark);
  font-size: 9px;
  font-weight: 800;
}

.scenario-route strong {
  color: var(--ink-2);
  font-size: 11px;
  line-height: 1.35;
}

.scenario-measures {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 4px;
}

.scenario-measures > small {
  margin-right: 4px;
}

.scenario-measures > span {
  padding: 7px 9px;
  border: 1px solid rgba(94, 210, 166, .2);
  border-radius: 999px;
  background: rgba(94, 210, 166, .06);
  color: var(--green);
  font-size: 9px;
}

.button-whatsapp {
  border-color: rgba(94, 210, 166, .5);
  background: linear-gradient(135deg, #176843, #1e8d5c);
}

@media (max-width: 860px) {
  .architecture-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-flow li:not(:last-child)::after {
    display: none;
  }

  .interface-preview {
    grid-template-columns: minmax(0, 1fr) minmax(180px, .42fr);
  }

  .carousel-stage article {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .hero-pov img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .architecture-flow,
  .page-hero .architecture-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .architecture-flow li,
  .page-hero .architecture-flow li {
    min-height: auto;
    padding: 16px;
  }

  .architecture-foot {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 14px;
  }

  .architecture-foot strong {
    grid-column: 1 / -1;
    margin: 0 0 4px;
  }

  .architecture-foot span {
    text-align: center;
  }

  .interface-preview {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .interface-mobile {
    min-height: 0;
  }

  .interface-mobile > footer {
    margin-bottom: 18px;
  }

  .interface-metrics {
    gap: 5px;
    padding: 10px 10px 0;
  }

  .interface-metrics span {
    padding: 8px;
  }

  .interface-metrics small {
    font-size: 7px;
  }

  .interface-route {
    padding: 10px;
  }

  .interface-route li {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .interface-route li > b {
    grid-column: 2;
    justify-self: start;
  }

  .interface-desktop > footer {
    padding: 0 10px 12px;
  }

  .carousel-instruction {
    padding: 18px 16px 10px;
  }

  .carousel-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 16px 16px;
  }

  .carousel-tabs button {
    min-height: 66px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .carousel-stage article {
    padding: 28px 16px;
  }

  .scenario-change article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .scenario-route {
    grid-template-columns: 1fr;
  }

  .scenario-route li {
    display: grid;
    align-items: center;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    min-height: 62px;
  }

  .scenario-route span {
    margin: 0;
  }

  .scenario-measures {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-home .capability-grid,
  .route-home .process-section .process-grid,
  .route-home .library-preview .system-preview-grid {
    display: grid;
    width: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 0 38px;
    overflow: visible;
    padding: 1px;
    background: var(--line);
    scroll-snap-type: none;
  }

  .route-home .capability-grid > *,
  .route-home .process-section .process-grid > *,
  .route-home .library-preview .system-preview-grid > * {
    width: auto;
    min-width: 0;
    scroll-snap-align: none;
  }

  .filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin: 0;
    overflow: visible;
    padding: 0;
  }

  .filter-row button {
    min-width: 0;
    min-height: 44px;
    flex: none;
    justify-content: space-between;
    white-space: normal;
  }

  .library-toolbar {
    position: relative;
    top: auto;
  }
}

/* v8: platte procesregie en een volledig zichtbare mobiele hero. */
.scroll-process-board {
  min-width: 0;
}

.scroll-control-surface {
  overflow: hidden;
  border: 1px solid rgba(194, 177, 255, .26);
  border-radius: 16px;
  background:
    radial-gradient(circle at 78% 18%, rgba(116, 73, 216, .16), transparent 19rem),
    #0b0b11;
}

.scroll-control-surface .scroll-panel-stack {
  padding: 20px;
}

.scroll-control-footer {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 20px 20px;
}

.scroll-control-footer span,
.scroll-control-footer strong {
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.scroll-control-footer strong {
  border-color: rgba(94, 210, 166, .28);
  background: rgba(94, 210, 166, .07);
  color: var(--green);
}

.carousel-stage article {
  align-items: start;
  min-height: 0;
  padding: 42px;
}

.carousel-stage article[hidden] {
  display: none;
}

.carousel-stage article > div:first-child {
  padding-top: 4px;
}

@media (max-width: 600px) {
  .home-hero {
    padding: 22px 0 40px;
  }

  .home-hero .hero-grid {
    gap: 14px;
  }

  .home-hero .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .home-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(2.625rem, 11.2vw, 2.9rem);
    line-height: 1.01;
  }

  .home-hero .hero-lead {
    font-size: 15px;
    line-height: 1.45;
  }

  .home-hero .button-row {
    gap: 6px;
    margin-top: 16px;
  }

  .home-hero .button-row .button {
    min-height: 46px;
  }

  /* Tikdoelnorm 44px: dit is de tweede CTA, niet een voetnoot. */
  .home-hero .button-row .text-link {
    min-height: 46px;
  }

  .hero-pov figcaption {
    display: block;
    margin-top: 8px;
  }

  .hero-pov figcaption strong {
    display: block;
    font-size: 12px;
    line-height: 1.3;
  }

  .hero-pov figcaption span {
    display: none;
  }

  /* De conceptdisclaimer blijft staan zolang de conceptfoto staat: label wat een concept is. */
  .hero-pov figcaption small {
    display: block;
    font-size: 10px;
    line-height: 1.35;
  }

  .carousel-stage article {
    min-height: 0;
    padding: 26px 16px;
  }

  .scroll-control-footer {
    grid-template-columns: 1fr;
  }
}
