/* Vonq AI — Nederlandse site
 * "Werkkrant" — editorial / industrial broadsheet
 */

:root {
  --ink: #0B0F1A;
  --paper: #F5F3EE;
  --primary: #FFD83D;
  --accent: #FF5A1F;
  --rule: rgba(11,15,26,0.12);
  --rule-strong: rgba(11,15,26,0.75);
  --muted: rgba(11,15,26,0.58);
  --radius: 2px;
  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--primary); color: var(--ink); }
.yellow {
  background-image: linear-gradient(var(--primary), var(--primary));
  background-repeat: no-repeat;
  background-position: 0 0.205em;
  background-size: 100% 0.78em;
  padding: 0 0.06em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0 0 1em; max-width: 56ch; text-wrap: pretty; }
.nowrap { white-space: nowrap; }

/* ───── universal "spec" mono label ───── */
.spec {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.spec.ink { color: var(--ink); }

/* ───── top thin band ───── */
.tagband {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(245,243,238,0.14);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
}
.tagband .row {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 8px 32px;
}
.tagband .row span { white-space: nowrap; opacity: 0.7; }
.tagband .row span.now { color: var(--primary); opacity: 1; }
@media (max-width: 700px) { .tagband .row { padding: 8px 16px; gap: 12px; font-size: 9px; } .tagband .hide-s { display: none; } }

/* ───── main header ───── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.nav .row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  border-top: 1px solid var(--ink);
}
.nav .brand {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  border-right: 1px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.nav .brand .b { width: 16px; height: 22px; flex: none; }
.nav ul {
  display: flex;
  margin: 0; padding: 0; list-style: none;
  align-items: stretch;
}
.nav ul li { display: flex; }
.nav ul a {
  display: flex; align-items: center;
  padding: 0 22px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-right: 1px solid var(--rule);
  transition: background 0.15s;
}
.nav ul a:hover, .nav ul a.active {
  background: var(--ink); color: var(--paper);
}
.nav .cta-wrap {
  display: flex; align-items: stretch;
  border-left: 1px solid var(--ink);
}
.nav .cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 28px;
  background: var(--primary);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav .cta:hover { background: color-mix(in oklab, var(--primary), var(--ink) 10%); }
.nav .cta .b { width: 12px; height: 16px; }

@media (max-width: 900px) {
  .nav .row { grid-template-columns: 1fr auto; }
  .nav ul { display: none; }
  .nav .brand { padding: 14px 20px; font-size: 18px; }
  .nav .cta { padding: 14px 18px; font-size: 13px; }
}

/* ───── buttons ───── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn.primary { background: var(--primary); border-color: var(--ink); }
.btn.primary:hover { background: var(--ink); color: var(--primary); }
.btn.ink { background: var(--ink); color: var(--paper); }
.btn.ink:hover { background: var(--primary); color: var(--ink); }
.btn.invert { border-color: var(--paper); color: var(--paper); }
.btn.invert:hover { background: var(--paper); color: var(--ink); }
.btn.lg { padding: 18px 28px; font-size: 16px; }
.btn .b { width: 12px; height: 16px; }

/* ───── containers / sections ───── */
.wrap {
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 700px) { .wrap { padding: 0 20px; } }

section.band {
  border-bottom: 1px solid var(--ink);
}

/* ───── hero ───── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--ink);
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }
.hero .left {
  padding: 80px 48px 64px;
  border-right: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero .left::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      color-mix(in oklab, var(--paper), transparent 4%) 0%,
      color-mix(in oklab, var(--paper), transparent 24%) 42%,
      color-mix(in oklab, var(--paper), transparent 62%) 100%
    ),
    url("img/vibechat.jpg") center center / cover no-repeat;
  opacity: 0.42;
  filter: saturate(0.78) contrast(0.9);
}
.hero .left > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .hero .left { border-right: 0; border-bottom: 1px solid var(--ink); padding: 48px 24px 48px; } }
@media (max-width: 900px) {
  .hero .left::before {
    opacity: 0.28;
    background:
      linear-gradient(
        180deg,
        color-mix(in oklab, var(--paper), transparent 4%) 0%,
        color-mix(in oklab, var(--paper), transparent 26%) 48%,
        color-mix(in oklab, var(--paper), transparent 68%) 100%
      ),
      url("img/vibechat.jpg") center center / cover no-repeat;
  }
}
.hero .left .meta {
  display: flex; gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}
.hero .left .meta span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hero .left .meta b { color: var(--ink); font-weight: 600; }

/* ── "Net gevraagd" rotator ── */
.hero .left .meta.asked { align-items: baseline; gap: 16px; flex-wrap: nowrap; min-height: 22px; }
.hero .left .meta.asked .tag {
  display: inline-flex; align-items: center; gap: 7px; flex: none;
  color: var(--ink); font-weight: 600;
}
.hero .left .meta.asked .tag .b { width: 9px; height: 13px; color: var(--accent); }
.hero .left .meta.asked .q-rotator {
  display: inline-flex; align-items: baseline; min-width: 0; flex: 1;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(15px, 1.55vw, 20px);
  letter-spacing: -0.02em; text-transform: none; color: var(--ink);
}
.hero .left .meta.asked .q-text {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(15px, 1.55vw, 20px); letter-spacing: -0.02em;
  text-transform: none; color: var(--ink); line-height: 1.15;
  transition: opacity .28s ease, transform .28s ease;
}
.hero .left .meta.asked .q-text.out { opacity: 0; transform: translateY(-4px); }
.hero .left .meta.asked .q-caret {
  flex: none; width: 2px; height: 1.05em; margin-left: 4px; background: var(--accent);
  align-self: center; animation: askedBlink 1s steps(1) infinite;
}
@keyframes askedBlink { 0%,50% { opacity: 1; } 50.01%,100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero .left .meta.asked .q-caret { animation: none; } }
.hero .left .meta.asked .q-when {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--muted); flex: none; white-space: nowrap;
  transition: opacity .28s ease;
}
.hero .left .meta.asked .q-when.out { opacity: 0; }
/* Mobiel: tag (links) + q-when (rechts) op rij 1, q-rotator op volle breedte eronder.
   Dit blok staat bewust ná de basis-rotatorregels zodat de bronvolgorde wint. */
@media (max-width: 900px) {
  .hero .left .meta.asked { flex-wrap: wrap; align-content: flex-start; row-gap: 8px; min-height: 56px; margin-bottom: 32px; padding-bottom: 20px; }
  .hero .left .meta.asked .tag { order: 1; }
  .hero .left .meta.asked .q-when { order: 2; margin-left: auto; }
  .hero .left .meta.asked .q-rotator { order: 3; flex: 0 0 100%; width: 100%; }
}
.hero h1 {
  font-size: clamp(56px, 8.5vw, 168px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.86;
}
.hero h1 .ringbearer {
  display: inline-block;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 0.45em;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-top: 0.2em;
  opacity: 0.78;
  white-space: nowrap;
}
.hero .left .lede {
  margin-top: 40px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  max-width: 44ch;
}
.hero .left .ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero .right {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero .right .stage {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 48px;
  position: relative;
}
.hero .right .glyph {
  width: 70%;
  max-width: 320px;
  color: var(--primary);
  position: relative;
  z-index: 2;
}
.hero .right .ghost {
  position: absolute;
  top: 12%;
  right: -8%;
  width: 80%;
  color: var(--paper);
  opacity: 0.06;
  z-index: 1;
}
.hero .right .footer {
  border-top: 1px solid rgba(245,243,238,0.14);
  padding: 18px 32px;
  display: flex; justify-content: flex-end; gap: 16px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,243,238,0.65);
}

.hero-expert {
  width: min(560px, 100%);
  position: relative;
  z-index: 3;
  outline: none;
  color: var(--paper);
}
.hero-expert-kicker {
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.62);
  text-align: center;
}
.hero-expert-carousel { position: relative; width: 100%; }
.hero-expert-stage {
  position: relative;
  height: clamp(300px, 45vw, 420px);
  overflow: hidden;
  perspective: 1600px;
}
.hero-expert-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(360px, 66vw);
  height: min(260px, 48vw);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(closest-side,
      color-mix(in oklab, var(--primary), transparent 48%),
      color-mix(in oklab, var(--accent), transparent 82%) 58%,
      transparent 78%);
  filter: blur(12px);
  opacity: 0.78;
  pointer-events: none;
}
.hero-expert-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(160px, 28vw, 250px);
  aspect-ratio: 3 / 4.15;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  transition:
    transform 0.55s cubic-bezier(.22,.61,.36,1),
    opacity 0.55s cubic-bezier(.22,.61,.36,1),
    filter 0.55s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
}
.hero-expert-card__plate {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--primary);
  border-radius: var(--radius);
  transform: translate(13px, 13px);
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(.22,.61,.36,1);
}
.hero-expert-card__frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(245,243,238,0.18);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--paper), var(--ink) 88%);
  box-shadow: 0 18px 42px rgba(0,0,0,0.5);
  transition:
    border-color 0.55s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.55s cubic-bezier(.22,.61,.36,1);
}
.hero-expert-card__frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(11,15,26,0.82), transparent);
  pointer-events: none;
}
.hero-expert-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-expert-card__tag {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  max-width: calc(100% - 22px);
  transform: translateX(-50%);
  padding: 6px 11px;
  border: 1px solid color-mix(in oklab, var(--primary), transparent 42%);
  border-radius: 999px;
  background: rgba(11,15,26,0.75);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: clamp(9px, 1.2vw, 11px);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity 0.55s cubic-bezier(.22,.61,.36,1);
}
.hero-expert-card.is-active .hero-expert-card__plate,
.hero-expert-card.is-active .hero-expert-card__tag { opacity: 1; }
.hero-expert-card.is-active .hero-expert-card__frame {
  border: 2px solid var(--paper);
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--primary), transparent 40%),
    0 24px 58px rgba(0,0,0,0.62);
}
.hero-expert-arrow {
  position: absolute;
  top: 50%;
  z-index: 50;
  width: clamp(40px, 5.5vw, 52px);
  height: clamp(40px, 5.5vw, 52px);
  display: grid;
  place-items: center;
  border: 1px solid var(--paper);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.hero-expert-arrow:hover {
  background: var(--primary);
  color: var(--ink);
  transform: translateY(calc(-50% - 1px));
}
.hero-expert-arrow span {
  display: block;
  font-size: 32px;
  line-height: 1;
  margin-top: -2px;
}
.hero-expert-arrow--prev { left: 0; }
.hero-expert-arrow--next { right: 0; }
.hero-expert:focus-visible,
.hero-expert-card:focus-visible,
.hero-expert-arrow:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.hero-expert-nameplate {
  min-height: 82px;
  text-align: center;
  user-select: none;
}
.hero-expert-role {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}
.hero-expert-tagline {
  max-width: 44ch;
  margin: 10px auto 0;
  color: rgba(245,243,238,0.72);
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.35;
}
@media (max-width: 900px) {
  .hero .right .stage { min-height: 520px; }
  .hero-expert { width: min(620px, 100%); }
  .hero-expert-stage { height: 360px; }
  .hero-expert-card { width: clamp(160px, 42vw, 230px); }
}
@media (max-width: 560px) {
  .hero .right .stage { min-height: 470px; padding: 30px 18px; }
  .hero-expert-stage { height: 305px; }
  .hero-expert-card { width: clamp(138px, 48vw, 176px); }
  .hero-expert-arrow { width: 36px; height: 36px; }
  .hero-expert-arrow span { font-size: 25px; }
  .hero-expert-nameplate { min-height: 86px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-expert-card,
  .hero-expert-card__frame,
  .hero-expert-card__plate,
  .hero-expert-card__tag,
  .hero-expert-arrow {
    transition-duration: 0.01ms !important;
  }
}

/* ───── marquee ───── */
.marquee {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.marquee--signal {
  background: var(--primary);
  color: var(--ink);
  border-bottom: 1px solid rgba(11,15,26,0.18);
  border-top: 1px solid rgba(11,15,26,0.18);
}
.marquee .track {
  display: flex;
  gap: 48px;
  padding: 22px 0;
  white-space: nowrap;
  animation: marqueeScrollLeft 60s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 34px);
  letter-spacing: -0.02em;
  width: max-content;
  will-change: transform;
}
.marquee--services .track {
  font-size: clamp(28px, 4vw, 48px);
}
.marquee .track--right {
  animation-name: marqueeScrollRight;
}
.marquee .seg {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}
.marquee .q { display: inline-block; }
.marquee .sep {
  color: var(--primary);
  display: inline-flex;
  flex: none;
}
.marquee--signal .sep {
  color: var(--ink);
}
.marquee .sep svg {
  display: block;
  height: 0.72em;
  width: auto;
}
.marquee:hover .track {
  animation-play-state: paused;
}
@keyframes marqueeScrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeScrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee .track { animation: none !important; }
}

/* ───── flood: manifesto ───── */
.manifesto-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  padding: 0 0 56px;
}
.manifesto-head .support-team {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 32px;
  padding-right: 16px;
  padding-bottom: 16px;
}
.manifesto-head .support-team img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .manifesto-head { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .manifesto-head .support-team { padding: 0; }
}
.flood {
  background: var(--primary);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 20px 0;
}
.flood .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
@media (max-width: 900px) { .flood .grid { grid-template-columns: 1fr; } }
.flood .cell {
  padding: 48px 32px;
  border-right: 1px solid var(--ink);
}
.flood .grid > .cell:last-child { border-right: 0; }
@media (max-width: 900px) {
  .flood .cell { border-right: 0; border-bottom: 1px solid var(--ink); }
  .flood .grid > .cell:last-child { border-bottom: 0; }
}
.flood .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.flood h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin-top: 32px;
}
.flood p { margin-top: 18px; max-width: 36ch; }
.flood .kicker { margin-top: 24px; display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; }

/* ───── numbered section ───── */
.numbered {
  padding: 20px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.numbered > .wrap > .top {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 2fr);
  gap: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}
@media (max-width: 900px) { .numbered > .wrap > .top { grid-template-columns: 1fr; gap: 18px; } }
.numbered .top .label {
  display: flex; flex-direction: column; gap: 6px;
}
.numbered .top .label .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 128px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--ink);
}
.numbered h2 {
  font-size: clamp(36px, 4.4vw, 72px);
  letter-spacing: -0.04em;
  max-width: 18ch;
}
.numbered .lede {
  margin-top: 24px;
  font-size: 18px;
  max-width: 50ch;
  line-height: 1.45;
}

/* ───── voor wie — persona cards ───── */
.personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}
@media (max-width: 900px) { .personas { grid-template-columns: 1fr; } }
.personas .p {
  padding: 48px 32px;
  border-right: 1px solid var(--ink);
  display: flex; flex-direction: column; gap: 18px;
  background: var(--paper);
  transition: background 0.2s;
}
.personas .p:last-child { border-right: 0; }
@media (max-width: 900px) {
  .personas .p { border-right: 0; border-bottom: 1px solid var(--ink); }
  .personas .p:last-child { border-bottom: 0; }
}
.personas .p:hover { background: color-mix(in oklab, var(--paper), var(--ink) 4%); }
.personas .p .num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.personas .p h3 {
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
}
.personas .p .tag {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
}
.personas .p .tag::before { content: "→"; }

/* ───── proces — 4 steps ───── */
.proces {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}
@media (max-width: 900px) { .proces { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .proces { grid-template-columns: 1fr; } }
.proces .step {
  padding: 20px 28px;
  border-right: 1px solid var(--ink);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  min-height: 240px;
}
.proces .step:last-child { border-right: 0; }
@media (max-width: 900px) {
  .proces .step:nth-child(2n) { border-right: 0; }
  .proces .step { border-bottom: 1px solid var(--ink); }
}
@media (max-width: 600px) {
  .proces .step { border-right: 0; }
}
.proces .step .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 96px;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--ink);
}
.proces .step .n small { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; vertical-align: top; color: var(--muted); font-weight: 500; margin-left: 6px; }
.proces .step h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}
.proces .step p {
  font-size: 14px;
  color: var(--muted);
}
.proces .step.dark {
  background: var(--ink); color: var(--paper);
}
.proces .step.dark .n { color: var(--primary); }
.proces .step.dark .n small { color: var(--primary); }
.proces .step.dark p { color: rgba(245,243,238,0.65); }
.proces .step .b { width: 22px; height: 30px; align-self: flex-end; color: var(--ink); }
.proces .step.dark .b { color: var(--primary); }

/* status-strook: compacte server-readout band */
.status {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(245,243,238,0.14);
  border-bottom: 1px solid rgba(245,243,238,0.14);
}
.status .bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 20px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
}
.status .live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.6);
  padding-right: 24px;
  border-right: 1px solid rgba(245,243,238,0.14);
}
.status .live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex: none;
  box-shadow: 0 0 0 0 rgba(255,216,61,0.55);
  animation: statusPulse 2.4s ease-out infinite;
}
@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,216,61,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(255,216,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,216,61,0); }
}
@media (prefers-reduced-motion: reduce) {
  .status .live .dot { animation: none; }
}
.status .items {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.status .stat {
  color: rgba(245,243,238,0.68);
  white-space: nowrap;
}
.status .stat b {
  color: var(--paper);
  font-weight: 600;
}
.status .bullet {
  color: var(--primary);
  font-size: 0.85em;
}
@media (max-width: 700px) {
  .status .live {
    border-right: 0;
    padding-right: 0;
  }
  .status .bar { font-size: 12px; }
}

/* ───── klantenstrook — logo / quote band ───── */
.klanten {
  background: var(--paper);
  padding: 80px 0;
  border-bottom: 1px solid var(--ink);
}
.klanten .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
@media (max-width: 900px) { .klanten .grid { grid-template-columns: repeat(2, 1fr); } }
.klanten .logo {
  padding: 32px 16px;
  border-right: 1px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-align: center;
}
.klanten .grid > .logo:last-child { border-right: 0; }
.klanten .logo.mono { font-family: var(--font-mono); font-weight: 600; font-size: 14px; letter-spacing: 0.1em; }
.klanten .logo.italic { font-style: italic; }
@media (max-width: 900px) {
  .klanten .logo:nth-child(2n) { border-right: 0; }
  .klanten .logo { border-bottom: 1px solid var(--rule); }
}

/* ───── quote ───── */
.quote {
  padding: 96px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.quote .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}
@media (max-width: 900px) { .quote .container { grid-template-columns: 1fr; gap: 32px; } }
.quote .meta {
  display: flex; flex-direction: column; gap: 18px;
}
.quote .meta .avatar {
  width: 80px; height: 80px;
  background: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
}
.quote .meta .avatar svg { width: 36px; color: var(--primary); }
.quote .meta .name { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.quote .meta .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}
.quote blockquote::before { content: "„"; color: var(--primary); }
.quote blockquote::after { content: "”"; color: var(--primary); }

/* ───── final CTA ───── */
.cta-final {
  background: var(--primary);
  color: var(--ink);
  padding: 50px 0;
  border-bottom: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.cta-final .grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
}
@media (max-width: 900px) { .cta-final .grid { grid-template-columns: 1fr; } }
.cta-final h2 {
  font-size: clamp(48px, 7.2vw, 132px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.cta-final .ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.cta-final .right {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 900px) { .cta-final .right { text-align: left; } }
.cta-final .ghost {
  position: absolute;
  right: -3%; bottom: -15%;
  width: 35%;
  opacity: 0.12;
  color: var(--ink);
  pointer-events: none;
}

/* ───── footer ───── */
footer.site {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 32px;
}
footer.site.compact { padding: 20px 0; }
footer.site.compact .bottom { padding-top: 0; border-top: 0; }
footer.site .top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,243,238,0.14);
}
@media (max-width: 900px) { footer.site .top { grid-template-columns: 1fr 1fr; gap: 32px; } }
footer.site .brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
footer.site .brand .b { width: 22px; height: 30px; color: var(--primary); }
footer.site h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.55);
  font-weight: 500;
  margin-bottom: 22px;
}
footer.site ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer.site a { color: rgba(245,243,238,0.85); text-decoration: none; font-size: 14px; }
footer.site a:hover { color: var(--primary); }
footer.site .bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,243,238,0.55);
}
footer.site .legal { color: rgba(245,243,238,0.55); max-width: 38ch; font-size: 13px; }

/* ───── pricing / tarieven ───── */
.tarieven {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}
@media (max-width: 900px) { .tarieven { grid-template-columns: 1fr; } }
.tarif {
  padding: 48px 32px;
  border-right: 1px solid var(--ink);
  display: flex; flex-direction: column; gap: 28px;
}
.tarif:last-child { border-right: 0; }
@media (max-width: 900px) {
  .tarif { border-right: 0; border-bottom: 1px solid var(--ink); }
  .tarif:last-child { border-bottom: 0; }
}
.tarif.featured { background: var(--ink); color: var(--paper); }
.tarif .name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.tarif.featured .name { color: rgba(245,243,238,0.55); }
.tarif .price { font-family: var(--font-display); font-weight: 700; font-size: clamp(48px, 6vw, 88px); letter-spacing: -0.05em; line-height: 0.95; }
.tarif .price small { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); display: block; margin-top: 12px; font-weight: 500; text-transform: uppercase; }
.tarif.featured .price small { color: rgba(245,243,238,0.55); }
.tarif ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.tarif ul li { font-size: 14px; padding-left: 22px; position: relative; line-height: 1.5; }
.tarif ul li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-family: var(--font-mono); font-weight: 500; }
.tarif.featured ul li::before { color: var(--primary); }

/* ───── form ───── */
.form-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  border-top: 1px solid var(--ink);
}
@media (max-width: 900px) { .form-wrap { grid-template-columns: 1fr; } }
form.contact {
  padding: 48px;
  border-right: 1px solid var(--ink);
  background: var(--paper);
  display: flex; flex-direction: column; gap: 20px;
}
@media (max-width: 900px) { form.contact { border-right: 0; border-bottom: 1px solid var(--ink); padding: 32px 24px; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  box-shadow: inset 0 -3px 0 var(--primary);
}
.contact-side {
  padding: 48px;
  background: var(--ink);
  color: var(--paper);
  display: flex; flex-direction: column; gap: 32px;
}
@media (max-width: 900px) { .contact-side { padding: 32px 24px; } }
.contact-side .block { border-top: 1px solid rgba(245,243,238,0.14); padding-top: 18px; }
.contact-side .block:first-child { border-top: 0; padding-top: 0; }
.contact-side h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: rgba(245,243,238,0.55); margin-bottom: 8px;
}
.contact-side .val { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.contact-side p { color: rgba(245,243,238,0.7); margin: 4px 0 0; }

/* ───── intro page ───── */
.page-intro {
  border-bottom: 1px solid var(--ink);
  padding: 20px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
}
@media (max-width: 900px) { .page-intro { grid-template-columns: 1fr; padding: 20px; } }
.page-intro .meta {
  display: flex; flex-direction: column; gap: 18px;
  padding-top: 12px;
}
.intro-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 48ch;
  margin-top: 18px;
}
.intro-labels span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  padding: 5px 8px;
  border: 1px solid var(--ink);
  background: var(--primary);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.intro-labels b {
  font-weight: 700;
  text-transform: uppercase;
}
.page-intro h1 {
  font-size: clamp(48px, 8vw, 144px);
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.page-intro p {
  margin-top: 24px;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.4;
  max-width: 48ch;
}
.page-intro-visual {
  align-self: stretch;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--primary);
}
.page-intro-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}
@media (max-width: 900px) {
  .intro-labels {
    margin-top: 16px;
  }
  .page-intro-visual {
    min-height: 260px;
    max-height: 360px;
  }
  .page-intro-visual img {
    max-height: 360px;
  }
}

/* platform live demo */
.platform-demo {
  width: min(1120px, calc(100% - 64px));
  margin: 20px auto 56px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
}
.platform-demo-ghost {
  position: absolute;
  right: -8%;
  bottom: -24%;
  width: min(420px, 48vw);
  color: var(--paper);
  opacity: 0.055;
  pointer-events: none;
}
.platform-demo-copy,
.platform-demo-shell {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.platform-demo-copy .spec {
  display: block;
  margin-bottom: 18px;
  color: rgba(245,243,238,0.62);
}
.platform-demo-copy h2 {
  color: var(--paper);
  font-size: clamp(38px, 5.2vw, 80px);
  line-height: 0.88;
  letter-spacing: -0.05em;
}
.platform-demo-copy p {
  margin-top: 24px;
  max-width: 34ch;
  color: rgba(245,243,238,0.72);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.48;
}
.platform-demo .demo-panel {
  padding: 0;
}
.platform-demo .demo-panel.demo-running {
  position: relative;
  inset: auto;
  padding: 0;
}
.platform-demo .demo-panel.demo-running .demo-output {
  max-height: 360px;
}
@media (max-width: 900px) {
  .platform-demo {
    width: 100%;
    margin: 0 0 44px;
    border-left: 0;
    border-right: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 24px;
  }
  .platform-demo-copy p { max-width: 44ch; }
}
@media (max-width: 560px) {
  .platform-demo { padding: 30px 18px; }
  .platform-demo .demo-row {
    align-items: stretch;
    flex-direction: column;
  }
  .platform-demo .demo-submit { width: 100%; }
  .platform-demo .demo-panel.demo-running .demo-output { max-height: 300px; }
}

/* Carousel in platform-demo: compacter dan de hero, past in de rechterkolom */
.platform-demo-shell .hero-expert { width: 100%; margin-bottom: 16px; }
.platform-demo-shell .hero-expert-stage { height: 280px; }
.platform-demo-shell .hero-expert-card { width: clamp(120px, 18vw, 180px); }
@media (max-width: 900px) {
  .platform-demo-shell .hero-expert-stage { height: 240px; }
  .platform-demo-shell .hero-expert-card { width: clamp(110px, 28vw, 150px); }
}
@media (max-width: 560px) {
  .platform-demo-shell .hero-expert-stage { height: 200px; }
  .platform-demo-shell .hero-expert-card { width: clamp(100px, 32vw, 130px); }
}

/* ───── FAQ ───── */
.faq { border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--ink); padding: 28px 32px; cursor: pointer; }
.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); color: var(--ink); font-size: 28px; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .body { margin-top: 14px; color: var(--muted); max-width: 68ch; }

/* ───── helpers ───── */
.row-12 { display: flex; gap: 12px; flex-wrap: wrap; }
.muted { color: var(--muted); }
.b-glyph { color: var(--ink); }
