/* ======================================================================
   VEEST.IO — editorial light SaaS for live events
   Palette : warm cream paper · ink · electric acid-lime · cool violet
   Type    : Bricolage Grotesque (display) + Instrument Serif (accent)
             + Hanken Grotesk (body) + JetBrains Mono (labels)
   ====================================================================== */

:root {
  --paper:     #f4f1ea;
  --paper-2:   #ebe7dc;
  --paper-3:   #e3ddcd;
  --card:      #fffdf8;
  --ink:       #15141a;
  --ink-soft:  #393742;
  --muted:     #6c6a74;
  --line:      #e0dbcf;
  --line-2:    #d3cdbd;
  --acid:      #c8f751;
  --acid-deep: #9fce25;
  --violet:    #5848ff;
  --violet-soft:#ece9ff;
  --good:      #1f8f5a;
  --neg:       #c0432f;

  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --serif:   "Instrument Serif", Georgia, serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  --r-sm: 10px; --r: 16px; --r-lg: 24px; --r-xl: 34px;
  --shadow-sm: 0 1px 2px rgba(20,19,24,.05), 0 4px 14px rgba(20,19,24,.04);
  --shadow:    0 2px 6px rgba(20,19,24,.06), 0 18px 50px -20px rgba(20,19,24,.18);
  --shadow-lg: 0 40px 90px -30px rgba(20,19,24,.4);
  --container: 1220px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(74px + env(safe-area-inset-top, 0px)); }
main { padding-top: calc(74px + env(safe-area-inset-top, 0px)); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body); background: var(--paper); color: var(--ink);
  line-height: 1.6; font-size: 17px; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  font-optical-sizing: auto; font-synthesis: none;
}

/* --- typographic refinements --- */
h1, h2, h3, .hero__title, .section__title, .cta__title, .quote blockquote, .tcard blockquote {
  text-wrap: balance;               /* geen losse woorden op de laatste regel */
}
p, li, .hero__sub, .section__lead { text-wrap: pretty; }
.mono, .eyebrow, .lane__time, .rs-row__t, .window__title, .app-window__url,
.mock__url, .dim, .el, .price__amt, .stat b, .kpi__v, .fin-line b, .fin-stat b,
.spec b, .mini-card__v, .donut-center b, .compare td, .hero__meta strong {
  font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1;
}

/* selectie in huisstijl */
::selection { background: var(--acid); color: var(--ink); }

/* warme, onopvallende scrollbar */
@supports (scrollbar-color: auto) {
  html { scrollbar-color: var(--line-2) transparent; scrollbar-width: thin; }
}
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line-2); border: 3px solid var(--paper); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* grain / noise overlay — the anti-"flat AI" texture */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 30px; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 8px; transition: top .2s var(--ease); }
.skip-link:focus { top: calc(12px + env(safe-area-inset-top, 0px)); }
:focus-visible { outline: 2.5px solid var(--violet); outline-offset: 3px; border-radius: 4px; }

/* serif italic accent + highlighter */
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: .005em; }
.hl { position: relative; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .01em; height: .24em; z-index: -1;
  background: var(--acid); border-radius: 2px; transform: rotate(-.8deg);
}

/* ---------- buttons (magnetic-ready) ---------- */
.btn {
  --pad: 15px 27px; position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--pad); border: 1.5px solid transparent; border-radius: 100px;
  font-weight: 600; font-size: .98rem; letter-spacing: -.01em; overflow: hidden;
  transition: transform .25s var(--ease-out), background .2s var(--ease), box-shadow .25s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}
.btn > * { position: relative; z-index: 1; }
/* isolate: houdt de z-index:-1 vullaag boven de knopachtergrond, onder het label */
.btn { isolation: isolate; }
.btn--sm { --pad: 10px 18px; font-size: .9rem; }
.btn--full { width: 100%; }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink::before { content:""; position:absolute; inset:0; background: var(--acid); transform: translateY(101%); transition: transform .4s var(--ease-out); z-index:-1; }
.btn--ink:hover { color: var(--ink); box-shadow: 0 16px 34px -14px rgba(20,19,24,.55); }
.btn--ink:hover::before { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: var(--card); transform: translateY(-2px); }
.btn--acid { background: var(--acid); color: var(--ink); }
.btn--acid:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(159,206,37,.7); }
.btn svg { transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0) scale(.98); }

/* ---------- shared labels ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: .78rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 22px; }
.eyebrow--center { justify-content: center; }
.eyebrow__no { color: var(--acid-deep); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acid-deep); box-shadow: 0 0 0 4px rgba(159,206,37,.22); }
.muted { color: var(--muted); }

/* ======================================================================
   SCROLL PROGRESS
   ====================================================================== */
.progress { position: fixed; top: calc(74px + env(safe-area-inset-top, 0px)); left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--violet), var(--acid)); z-index: 90; transition: width .1s linear; }

/* ======================================================================
   NAV
   ====================================================================== */
/* iOS-proof header: het bovenste vaste element met een EFFEN achtergrondkleur.
   Safari bemonstert die kleur voor de statusbalk-zone, waardoor die naadloos
   meekleurt. Geen backdrop-filter (flikkert op iOS) en geen color-mix
   (niet ondersteund op oudere iOS → onzichtbare achtergrond). */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background-color: var(--paper);
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-stuck { box-shadow: 0 1px 0 var(--line), 0 8px 28px -14px rgba(20,19,24,.18); }
.nav.is-stuck { border-bottom-color: var(--line); background: color-mix(in srgb, var(--paper) 90%, transparent); box-shadow: 0 1px 24px -12px rgba(20,19,24,.28); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 74px; transition: height .3s var(--ease); }
.nav.is-stuck .nav__inner { height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; }
.brand__name { font-family: var(--display); font-size: 1.36rem; letter-spacing: -.02em; }
.nav__links { display: flex; gap: 28px; margin-left: 14px; }
.nav__links a { color: var(--ink-soft); font-weight: 500; font-size: .98rem; position: relative; padding: 4px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--ink); transition: width .25s var(--ease); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"]::after { background: var(--acid-deep); }
.nav__cta { display: flex; gap: 12px; margin-left: auto; align-items: center; }
.nav__burger { display: none; background: none; border: 0; width: 44px; height: 44px; margin-left: auto; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ======================================================================
   HERO (home)
   ====================================================================== */
.hero { position: relative; padding: 70px 0 0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.grid-lines { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 66px 66px; mask-image: radial-gradient(120% 80% at 72% 0%, #000 28%, transparent 72%); -webkit-mask-image: radial-gradient(120% 80% at 72% 0%, #000 28%, transparent 72%); opacity: .55; }
.hero__glow { position: absolute; top: -180px; right: -120px; width: 640px; height: 640px; border-radius: 50%; background: radial-gradient(circle, rgba(200,247,81,.5), rgba(200,247,81,0) 62%); filter: blur(18px); will-change: transform; }
.hero__inner { position: relative; z-index: 1; max-width: 900px; padding-top: 30px; }
.hero__title { font-family: var(--display); font-size: clamp(2.8rem, 7.2vw, 5.4rem); line-height: .96; letter-spacing: -.035em; font-weight: 700; }
.hero__title .serif { font-size: 1.04em; }
.hero__sub { margin-top: 28px; max-width: 540px; font-size: 1.2rem; color: var(--ink-soft); line-height: 1.6; }
.hero__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trial { margin-top: 16px; max-width: 540px; font-family: var(--mono); font-size: .82rem; color: var(--muted); }
.hero__meta { list-style: none; display: flex; gap: 36px; flex-wrap: wrap; margin-top: 48px; padding-bottom: 90px; }
.hero__meta li { font-size: .96rem; color: var(--muted); }
.hero__meta strong { display: block; font-family: var(--display); font-size: 2rem; color: var(--ink); letter-spacing: -.03em; line-height: 1; margin-bottom: 4px; }

/* animated soundwave */
.soundwave { display: inline-flex; align-items: flex-end; gap: 3px; height: 22px; margin-left: 4px; }
.soundwave i { width: 3px; background: var(--ink); border-radius: 2px; height: 30%; animation: wave 1.1s ease-in-out infinite; }
.soundwave i:nth-child(2){ animation-delay:.1s } .soundwave i:nth-child(3){ animation-delay:.2s }
.soundwave i:nth-child(4){ animation-delay:.3s } .soundwave i:nth-child(5){ animation-delay:.15s }
.soundwave i:nth-child(6){ animation-delay:.25s } .soundwave i:nth-child(7){ animation-delay:.05s }
@keyframes wave { 0%,100%{ height:25%; } 50%{ height:100%; } }

/* floating tilt preview */
.hero__preview { position: absolute; right: max(30px, calc((100vw - var(--container)) / 2 + 30px)); bottom: -36px; z-index: 2; width: 440px; max-width: 44vw; perspective: 1200px; }
.window { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; transform-style: preserve-3d; transition: transform .3s var(--ease-out); }
.window__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.window__title { margin-left: 10px; font-size: .76rem; color: var(--muted); font-family: var(--mono); }
.window__body { padding: 16px; display: grid; gap: 14px; }
.mini-stage { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 14px; }
.mini-stage__label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.lane { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.lane__time { font-family: var(--mono); font-size: .74rem; color: var(--muted); width: 42px; }
.block { flex: 1; font-size: .82rem; font-weight: 500; padding: 8px 12px; border-radius: 8px; }
.block--a { background: var(--violet-soft); color: #3f2bbf; }
.block--b { background: var(--acid); color: var(--ink); }
.block--c { background: var(--paper-2); color: var(--ink-soft); }
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 13px; display: grid; gap: 5px; }
.mini-card__k { font-size: .72rem; color: var(--muted); }
.mini-card__v { font-family: var(--display); font-size: 1.32rem; letter-spacing: -.02em; }
.mini-card__d { font-size: .74rem; font-weight: 600; } .mini-card__d.up { color: var(--good); }
.mini-card__bar { height: 6px; border-radius: 4px; background: var(--paper-2); overflow: hidden; }
.mini-card__bar i { display: block; height: 100%; width: var(--w); background: var(--ink); border-radius: 4px; }

/* ======================================================================
   MARQUEE TICKER
   ====================================================================== */
.marquee { border-block: 1px solid var(--line); background: var(--ink); color: var(--paper); overflow: hidden; padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; width: max-content; animation: scrollx 30s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--display); font-size: 1.4rem; font-weight: 600; letter-spacing: -.01em; padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; white-space: nowrap; }
.marquee__track span::after { content: "✺"; color: var(--acid); font-size: 1rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ======================================================================
   SECTION SCAFFOLD
   ====================================================================== */
.section { padding: 116px 0; }
.section--tight { padding: 80px 0; }
.section__head { max-width: 740px; margin-bottom: 60px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.02; letter-spacing: -.03em; }
.section__title .serif { font-size: 1.06em; }
.section__lead { margin-top: 20px; font-size: 1.14rem; color: var(--ink-soft); }
.section__head--center .section__lead { margin-inline: auto; max-width: 580px; }

/* ======================================================================
   FEATURE CARDS (spotlight)
   ====================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card-spot { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; overflow: hidden; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), border-color .3s var(--ease); display: block; }
.card-spot::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s var(--ease); background: radial-gradient(380px circle at var(--mx,50%) var(--my,50%), rgba(200,247,81,.18), transparent 55%); pointer-events: none; }
.card-spot:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card-spot:hover::before { opacity: 1; }
.card-spot__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.card-spot__no { font-family: var(--mono); font-size: .82rem; color: var(--muted); }
.feature__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--paper-2); color: var(--ink); }
.feature__icon--acid { background: var(--acid); color: var(--ink); }
.card-spot h3 { font-family: var(--display); font-size: 1.5rem; letter-spacing: -.02em; margin-bottom: 10px; }
.card-spot p { color: var(--ink-soft); font-size: 1.02rem; max-width: 46ch; }
.card-spot__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-weight: 600; font-size: .95rem; color: var(--ink); }
.card-spot__link svg { transition: transform .3s var(--ease-out); }
.card-spot:hover .card-spot__link svg { transform: translateX(4px); }
.card-spot--wide { grid-column: span 2; }
.card-spot--dark { background: var(--ink); color: var(--paper); border-color: var(--ink); display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; }
.card-spot--dark h3 { color: var(--paper); } .card-spot--dark p { color: #b9b7c2; }
.card-spot--dark .card-spot__link { color: var(--acid); }
.card-spot--dark::before { background: radial-gradient(380px circle at var(--mx,50%) var(--my,50%), rgba(200,247,81,.12), transparent 55%); }

.feature__viz--fin { display: grid; gap: 10px; }
.fin-stat { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 16px; border-radius: 12px; background: rgba(255,255,255,.05); }
.fin-stat span { color: #b9b7c2; font-size: .9rem; }
.fin-stat b { font-family: var(--display); font-size: 1.2rem; }
.fin-stat--hl { background: var(--acid); } .fin-stat--hl span, .fin-stat--hl b { color: var(--ink); }

/* ======================================================================
   SHOWCASE (tabbed)
   ====================================================================== */
.showcase { background: var(--paper-2); border-block: 1px solid var(--line); }
.tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.tab { padding: 11px 22px; border-radius: 100px; border: 1.5px solid var(--line-2); background: transparent; font-weight: 600; font-size: .96rem; color: var(--ink-soft); transition: all .2s var(--ease); }
.tab:hover { border-color: var(--ink); color: var(--ink); }
.tab.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.app-window { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden; max-width: 1060px; margin-inline: auto; }
.app-window__chrome { display: flex; align-items: center; gap: 7px; padding: 14px 20px; border-bottom: 1px solid var(--line); background: var(--paper); }
.app-window__url { margin-left: 14px; font-family: var(--mono); font-size: .8rem; color: var(--muted); }
.panel { display: none; padding: 26px; min-height: 360px; }
.panel.is-active { display: block; animation: fade-up .45s var(--ease-out); }
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.board__col { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 16px; }
.board__title { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; display: flex; justify-content: space-between; }
.board__title span { background: var(--paper-2); border-radius: 20px; padding: 1px 9px; color: var(--ink-soft); }
.task { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 12px 13px; font-size: .92rem; font-weight: 500; margin-bottom: 10px; box-shadow: var(--shadow-sm); display: flex; flex-wrap: wrap; align-items: center; gap: 8px; transition: transform .2s var(--ease); }
.task:hover { transform: translateX(3px); }
.task--done { opacity: .58; }
.task__tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 3px 8px; border-radius: 20px; }
.tag--prod { background: var(--violet-soft); color: #4a37cf; }
.tag--art  { background: var(--acid); color: var(--ink); }
.tag--tech { background: #e2efff; color: #1f63c0; }
.tag--mark { background: #ffe7d4; color: #b65a17; }
.tag--fin  { background: #d9f3e4; color: #1f8f5a; }
.task__bar { width: 100%; height: 5px; border-radius: 4px; background: var(--paper-2); overflow: hidden; margin-top: 4px; }
.task__bar b { display: block; height: 100%; width: var(--w); background: var(--violet); border-radius: 4px; }

.stage-editor { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; }
.stage-editor__canvas { position: relative; background: radial-gradient(120% 120% at 50% 0%, #1b1a20, #0e0d12); border-radius: var(--r); min-height: 320px; padding: 16px; border: 1px solid var(--line); }
.stage-tag { position: absolute; font-size: .7rem; font-weight: 600; color: #cfcdda; background: rgba(255,255,255,.08); padding: 5px 10px; border-radius: 8px; backdrop-filter: blur(4px); }
.stage-tag--top { top: 14px; left: 50%; transform: translateX(-50%); }
.stage-tag--front { bottom: 14px; left: 50%; transform: translateX(-50%); }
.riser { position: absolute; border-radius: 10px; display: grid; place-items: center; font-family: var(--mono); font-size: .72rem; font-weight: 500; color: var(--ink); border: 1.5px solid rgba(255,255,255,.18); transition: transform .25s var(--ease); }
.riser:hover { transform: scale(1.06); }
.riser--drums { top: 64px; left: 50%; transform: translateX(-50%); width: 96px; height: 64px; background: var(--acid); }
.riser--drums:hover { transform: translateX(-50%) scale(1.06); }
.riser--keys  { top: 150px; left: 16%; width: 84px; height: 52px; background: #c9bcff; }
.riser--bass  { top: 150px; right: 16%; width: 84px; height: 52px; background: #bcd9ff; }
.riser--gtr   { top: 220px; left: 26%; width: 76px; height: 46px; background: #ffd6b0; }
.mic { position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%); width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 6px rgba(200,247,81,.3); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ box-shadow:0 0 0 6px rgba(200,247,81,.3);} 50%{ box-shadow:0 0 0 11px rgba(200,247,81,.08);} }
.stage-editor__side { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 18px; }
.stage-editor__side .mock-head { font-family: var(--display); font-size: 1rem; margin-bottom: 12px; }
.input-list { list-style: none; display: grid; gap: 9px; }
.input-list li { font-size: .88rem; color: var(--ink-soft); display: flex; gap: 10px; }
.input-list li span { font-family: var(--mono); font-size: .78rem; color: var(--violet); min-width: 48px; }
.rider-chip { margin-top: 16px; font-size: .8rem; font-weight: 600; background: var(--acid); color: var(--ink); padding: 8px 12px; border-radius: 10px; display: inline-block; }

.finance { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: center; }
.finance__chart { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.bars { display: flex; align-items: flex-end; gap: 16px; height: 200px; }
.bar { flex: 1; display: flex; align-items: flex-end; justify-content: center; gap: 4px; position: relative; height: 100%; }
.bar span { position: absolute; bottom: -24px; left: 0; right: 0; text-align: center; font-size: .76rem; color: var(--muted); }
.bar i { width: 16px; border-radius: 5px 5px 0 0; background: var(--ink); height: var(--h); transform-origin: bottom; animation: grow .8s var(--ease-out) both; }
.bar i.bar--cost { background: var(--acid-deep); }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.bars__legend { display: flex; gap: 20px; margin-top: 34px; font-size: .84rem; color: var(--ink-soft); }
.bars__legend span { display: inline-flex; align-items: center; gap: 7px; }
.sw { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.sw--rev { background: var(--ink); } .sw--cost { background: var(--acid-deep); }
.finance__rows { display: grid; gap: 4px; }
.fin-line { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: baseline; padding: 13px 4px; border-bottom: 1px solid var(--line); }
.fin-line span { color: var(--ink-soft); font-size: .96rem; }
.fin-line b { font-family: var(--display); font-size: 1.06rem; letter-spacing: -.01em; }
.fin-line b.neg { color: var(--neg); }
.trend { font-size: .78rem; font-weight: 600; color: var(--muted); } .trend.up { color: var(--good); }
.fin-line--total { border-bottom: 0; margin-top: 6px; border-top: 2px solid var(--ink); padding-top: 16px; }
.fin-line--total b { font-size: 1.32rem; }

/* ======================================================================
   STATS (counters)
   ====================================================================== */
.stat-band { background: var(--ink); color: var(--paper); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat b { font-family: var(--display); font-size: clamp(2.2rem, 4.4vw, 3.4rem); letter-spacing: -.03em; display: block; line-height: 1; }
.stat b .u { color: var(--acid); }
/* alleen het LABEL onder het cijfer stylen — niet de <span data-count> binnen de <b> */
.stat > span { color: #b9b7c2; font-size: .95rem; display: block; margin-top: 10px; }
.stat b span { font: inherit; color: inherit; display: inline; margin: 0; }
.stat b .u { color: var(--acid); }

/* ======================================================================
   USE CASES
   ====================================================================== */
.uc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.uc { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; position: relative; transition: transform .35s var(--ease-out), border-color .3s var(--ease); overflow: hidden; }
.uc:hover { transform: translateY(-5px); border-color: var(--ink); }
.uc__num { font-family: var(--mono); font-size: .82rem; color: var(--acid-deep); }
.uc h3 { font-family: var(--display); font-size: 1.55rem; letter-spacing: -.02em; margin: 14px 0 10px; }
.uc p { color: var(--ink-soft); }

/* ======================================================================
   QUOTE
   ====================================================================== */
.quote-sec { background: var(--paper-2); border-block: 1px solid var(--line); }
.quote { max-width: 880px; margin: 0 auto; text-align: center; }
.quote__mark { font-family: var(--serif); font-style: italic; font-size: 5rem; line-height: .4; color: var(--acid-deep); }
.quote blockquote { font-family: var(--display); font-weight: 500; font-size: clamp(1.5rem, 3.4vw, 2.5rem); line-height: 1.26; letter-spacing: -.02em; margin-top: 10px; }
.quote blockquote em { font-family: var(--serif); font-style: italic; }
.quote figcaption { margin-top: 34px; display: inline-flex; align-items: center; gap: 14px; }
.quote__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; font-family: var(--display); font-weight: 700; }
.quote figcaption span { text-align: left; }
.quote figcaption strong { display: block; }
.quote figcaption em { font-style: normal; color: var(--muted); font-size: .92rem; }

/* ======================================================================
   CTA
   ====================================================================== */
.cta { padding: 0 0 116px; }
.cta__inner { background: var(--ink); color: var(--paper); border-radius: var(--r-xl); padding: 64px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; position: relative; overflow: hidden; }
.cta__inner::before { content: ""; position: absolute; right: -120px; top: -120px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(200,247,81,.4), transparent 65%); pointer-events: none; }
.cta__title { font-family: var(--display); font-size: clamp(2rem, 3.8vw, 3rem); line-height: 1.04; letter-spacing: -.03em; }
.cta__title .serif { font-family: var(--serif); font-style: italic; }
.cta__sub { margin-top: 18px; color: #b9b7c2; font-size: 1.08rem; max-width: 42ch; }
.cta__points { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.cta__points li { padding-left: 28px; position: relative; color: #d6d4df; }
.cta__points li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--acid); }
.cta__form { background: var(--card); color: var(--ink); border-radius: var(--r-lg); padding: 32px; position: relative; z-index: 1; }
.cta__form-title { font-family: var(--display); font-size: 1.34rem; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: 12px; font-family: inherit; font-size: 1rem; background: var(--paper); color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(88,72,255,.12); }
.field input:user-invalid { border-color: var(--neg); }
.cta__form .btn { margin-top: 6px; }
.cta__form-note { margin-top: 12px; font-size: .82rem; color: var(--muted); text-align: center; }

/* ======================================================================
   SUBPAGE — page hero & content
   ====================================================================== */
.page-hero { position: relative; padding: 64px 0 70px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.page-hero .grid-lines { mask-image: radial-gradient(120% 90% at 80% 10%, #000 25%, transparent 70%); -webkit-mask-image: radial-gradient(120% 90% at 80% 10%, #000 25%, transparent 70%); }
.page-hero__glow { position: absolute; top: -160px; left: 50%; width: 600px; height: 480px; border-radius: 50%; filter: blur(20px); }
.page-hero__inner { position: relative; z-index: 1; max-width: 820px; }
.breadcrumb { display: flex; gap: 8px; font-family: var(--mono); font-size: .78rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--ink); }
.page-hero h1 { font-family: var(--display); font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1; letter-spacing: -.035em; }
.page-hero h1 .serif { font-family: var(--serif); font-style: italic; }
.page-hero__lead { margin-top: 24px; font-size: 1.2rem; color: var(--ink-soft); max-width: 600px; }
.page-hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero__tags { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; }
.pill { font-family: var(--mono); font-size: .76rem; padding: 7px 13px; border: 1px solid var(--line-2); border-radius: 100px; color: var(--ink-soft); background: var(--card); }

/* alternating content rows */
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.row2--rev .row2__media { order: -1; }
.row2 + .row2 { margin-top: 100px; }
.row2__copy .eyebrow { margin-bottom: 18px; }
.row2__copy h2 { font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -.025em; line-height: 1.08; margin-bottom: 16px; }
.row2__copy h2 .serif { font-family: var(--serif); font-style: italic; }
.row2__copy p { color: var(--ink-soft); font-size: 1.08rem; }
.row2__list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.row2__list li { padding-left: 30px; position: relative; color: var(--ink-soft); }
.row2__list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%; background: var(--acid) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2315141a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat; }
.media-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 22px; }
.media-card__bar { display: flex; gap: 7px; margin-bottom: 16px; }

/* related features strip */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related a { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; transition: transform .3s var(--ease-out), border-color .3s var(--ease); }
.related a:hover { transform: translateY(-4px); border-color: var(--ink); }
.related h3 { font-family: var(--display); font-size: 1.2rem; margin: 10px 0 6px; }
.related p { font-size: .94rem; color: var(--muted); }

/* ======================================================================
   PRICING PAGE
   ====================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.price { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; position: relative; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease); }
.price:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price--featured { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: scale(1.03); }
.price--featured:hover { transform: scale(1.03) translateY(-5px); }
.price__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--acid); color: var(--ink); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 6px 14px; border-radius: 100px; }
.price__name { font-family: var(--display); font-size: 1.55rem; letter-spacing: -.02em; }
.price__for { color: var(--muted); font-size: .92rem; margin-top: 4px; min-height: 2.6em; }
.price--featured .price__for { color: #b9b7c2; }
.price__amt { font-family: var(--display); font-size: 3.3rem; letter-spacing: -.04em; margin: 16px 0 22px; line-height: 1; }
.price__amt--word { font-size: 2.5rem; }
.price__cur { font-size: 1.6rem; vertical-align: super; margin-right: 2px; }
.price__per { font-family: var(--body); font-size: 1rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price--featured .price__per { color: #b9b7c2; }
.price__list { list-style: none; margin-top: 26px; display: grid; gap: 13px; }
.price__list li { font-size: .96rem; color: var(--ink-soft); padding-left: 28px; position: relative; }
.price--featured .price__list li { color: #cfcdda; }
.price__list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--acid) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2315141a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat; }

/* FAQ */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--display); font-size: 1.2rem; letter-spacing: -.01em; color: var(--ink); }
.faq__q .ic { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s var(--ease); font-size: 1.1rem; line-height: 1; }
.faq__item.open .faq__q .ic { transform: rotate(45deg); background: var(--acid); border-color: var(--acid); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); color: var(--ink-soft); }
.faq__a p { padding: 0 0 24px; max-width: 64ch; }

/* ======================================================================
   FOOTER
   ====================================================================== */
.footer { background: var(--ink); color: var(--paper); padding: 80px 0 30px; overflow: hidden; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand .brand__name { color: var(--paper); }
.footer__brand p { margin-top: 16px; color: #9b99a6; max-width: 30ch; font-size: .95rem; }
.footer__col .footer__h { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: #9b99a6; margin-bottom: 16px; }
.footer__col a { display: block; color: #d6d4df; margin-bottom: 11px; font-size: .96rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--acid); }
.footer__word { font-family: var(--display); font-weight: 800; font-size: clamp(4rem, 20vw, 17rem); line-height: .82; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.14); margin: 36px 0 0; user-select: none; white-space: nowrap; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .85rem; color: #8a8893; gap: 16px; flex-wrap: wrap; }
.footer__placeholder { font-family: var(--mono); font-size: .76rem; opacity: .7; }

/* ======================================================================
   REVEAL ANIMATIONS
   ====================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

.clip-reveal { clip-path: inset(0 0 100% 0); opacity: 0; transition: clip-path .9s var(--ease-out), opacity .9s var(--ease-out); }
.clip-reveal.in { clip-path: inset(0 0 0 0); opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .reveal, .clip-reveal { opacity: 1; transform: none; clip-path: none; transition: none; }
  :is(.reveal, .clip-reveal) .hl::after { transform: rotate(-1deg) scaleX(1); transition: none; }
  .marquee__track { animation: none; }
  .panel.is-active { animation: none; }
  .soundwave i, .mic, .bar i { animation: none; }
}

/* ======================================================================
   PAGE-SIGNATURE MOCKUPS  (per-product, unieke product-UI in code)
   ====================================================================== */

/* shared app-frame for subpage hero mockups */
.mock { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
.mock__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.mock__bar .dot { width: 10px; height: 10px; }
.mock__bar .mock__url { margin-left: 8px; font-family: var(--mono); font-size: .76rem; color: var(--muted); }
.mock__bar .mock__live { margin-left: auto; font-family: var(--mono); font-size: .7rem; font-weight: 600; color: var(--good); display: inline-flex; align-items: center; gap: 6px; }
.mock__bar .mock__live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 0 rgba(31,143,90,.4); animation: blip 1.8s ease-out infinite; }
@keyframes blip { 0%{ box-shadow: 0 0 0 0 rgba(31,143,90,.45); } 70%,100%{ box-shadow: 0 0 0 7px rgba(31,143,90,0); } }

/* ---------- DRAAIBOEKEN · live runsheet ---------- */
.runsheet { padding: 0; }
.runsheet__head { display: flex; align-items: baseline; justify-content: space-between; padding: 16px 20px 12px; }
.runsheet__head h4 { font-family: var(--display); font-size: 1.04rem; letter-spacing: -.01em; }
.runsheet__head span { font-family: var(--mono); font-size: .74rem; color: var(--muted); }
.runsheet__grid { position: relative; padding: 0 20px 20px; }
.rs-row { display: grid; grid-template-columns: 52px 4px 1fr auto; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); }
.rs-row:first-child { border-top: 0; }
.rs-row__t { font-family: var(--mono); font-size: .78rem; color: var(--muted); }
.rs-row__stripe { width: 4px; height: 30px; border-radius: 4px; background: var(--line-2); }
.rs-row__body { min-width: 0; }
.rs-row__title { font-size: .94rem; font-weight: 600; letter-spacing: -.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rs-row__meta { font-size: .76rem; color: var(--muted); margin-top: 2px; }
.rs-row__who { display: inline-flex; align-items: center; }
.rs-ava { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: .68rem; font-weight: 700; color: var(--ink); margin-left: -7px; border: 2px solid var(--card); }
.rs-ava:first-child { margin-left: 0; }
.rs-row[data-dep="tech"]  .rs-row__stripe { background: #1f63c0; }
.rs-row[data-dep="prod"]  .rs-row__stripe { background: var(--violet); }
.rs-row[data-dep="art"]   .rs-row__stripe { background: var(--acid-deep); }
.rs-row[data-dep="bar"]   .rs-row__stripe { background: #b65a17; }
.rs-row.is-now { background: linear-gradient(90deg, rgba(200,247,81,.22), transparent 70%); border-radius: 10px; }
.rs-now { position: relative; height: 0; margin: 0 20px; }
.rs-now::before { content: ""; position: absolute; left: 40px; right: 0; top: 0; height: 2px; background: var(--ink); }
.rs-now::after { content: "NU · 23:14"; position: absolute; left: 0; top: -8px; font-family: var(--mono); font-size: .62rem; font-weight: 700; background: var(--ink); color: var(--paper); padding: 2px 6px; border-radius: 5px; }

/* department legend chips */
.dep-legend { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.dep-chip { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--ink-soft); background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: 6px 13px; }
.dep-chip i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }

/* ---------- STAGE-PLOTS · editor with tool rail ---------- */
.editor { display: grid; grid-template-columns: 46px 1fr; min-height: 340px; }
.editor__rail { background: var(--paper-2); border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 14px 0; }
.editor__tool { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: var(--ink-soft); background: var(--card); border: 1px solid var(--line); transition: all .2s var(--ease); }
.editor__tool.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.editor__tool:hover { color: var(--ink); border-color: var(--line-2); }
.editor__stage { position: relative; background:
    radial-gradient(120% 130% at 50% -10%, #1d1c23, #0c0b10);
  overflow: hidden; }
.editor__stage::before { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px; }
.dim { position: absolute; font-family: var(--mono); font-size: .64rem; color: #6f6d7a; }
.dim--w { top: 10px; left: 50%; transform: translateX(-50%); }
.dim--h { top: 50%; right: 10px; transform: translateY(-50%) rotate(90deg); transform-origin: right; }
.el { position: absolute; border-radius: 9px; display: grid; place-items: center; font-family: var(--mono); font-size: .66rem; font-weight: 600; color: var(--ink); border: 1.5px solid rgba(255,255,255,.22); cursor: grab; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.el:hover { transform: scale(1.05); box-shadow: 0 6px 18px rgba(0,0,0,.4); z-index: 2; }
.el--sel { outline: 2px solid var(--acid); outline-offset: 3px; }
.el--sel::after { content: ""; position: absolute; inset: -3px; border-radius: 11px; pointer-events: none; }
.el-h { position: absolute; width: 7px; height: 7px; background: var(--acid); border: 1px solid var(--ink); border-radius: 2px; }

/* ---------- FINANCIËN · dashboard ---------- */
.fdash { display: grid; gap: 14px; padding: 18px; }
.fdash__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 13px 14px; }
.kpi__k { display: block; font-size: .72rem; color: var(--muted); }
.kpi__v { display: block; font-family: var(--display); font-size: 1.42rem; letter-spacing: -.025em; margin-top: 3px; }
.kpi__d { display: block; font-size: .74rem; font-weight: 600; margin-top: 2px; }
.kpi__d.up { color: var(--good); } .kpi__d.dn { color: var(--neg); }
.kpi--hl { background: var(--ink); border-color: var(--ink); }
.kpi--hl .kpi__k { color: #b9b7c2; } .kpi--hl .kpi__v { color: var(--paper); }
.fdash__low { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; align-items: stretch; }
.fpanel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 16px; }
.fpanel .mock-head { font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
/* donut via conic-gradient */
.donut { width: 132px; height: 132px; border-radius: 50%; margin: 4px auto 0;
  background: conic-gradient(var(--ink) 0 46%, var(--acid-deep) 46% 73%, var(--violet) 73% 100%);
  -webkit-mask: radial-gradient(circle 40px at 50% 50%, transparent 98%, #000 100%);
  mask: radial-gradient(circle 40px at 50% 50%, transparent 98%, #000 100%);
  position: relative; }
.donut-wrap { position: relative; display: grid; place-items: center; }
.donut-center { position: absolute; text-align: center; }
.donut-center b { font-family: var(--display); font-size: 1.2rem; display: block; line-height: 1; }
.donut-center span { font-size: .64rem; color: var(--muted); }
.donut-legend { display: grid; gap: 7px; margin-top: 14px; }
.donut-legend span { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--ink-soft); }
.donut-legend i { width: 9px; height: 9px; border-radius: 3px; }

/* ---------- PRIJZEN · billing toggle + comparison ---------- */
.bill { display: inline-flex; align-items: center; gap: 14px; margin: 0 auto 44px; padding: 6px; background: var(--card); border: 1px solid var(--line); border-radius: 100px; font-weight: 600; font-size: .92rem; }
.bill__opt { padding: 8px 18px; border-radius: 100px; color: var(--muted); transition: color .2s var(--ease); cursor: pointer; border: 0; background: none; position: relative; z-index: 1; }
.bill__opt.is-on { color: var(--ink); }
.bill__track { position: relative; }
.bill__save { font-family: var(--mono); font-size: .68rem; font-weight: 700; color: var(--ink); background: var(--acid); padding: 3px 8px; border-radius: 100px; }
.bill-wrap { display: flex; justify-content: center; }

.compare { width: 100%; border-collapse: collapse; margin-top: 8px; }
.compare th, .compare td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.compare thead th { font-family: var(--display); font-size: 1.05rem; letter-spacing: -.01em; border-bottom: 2px solid var(--ink); vertical-align: bottom; }
.compare thead th:first-child { font-family: var(--mono); font-size: .74rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.compare tbody th { font-weight: 600; color: var(--ink); }
.compare td { text-align: center; color: var(--ink-soft); }
.compare td:first-child, .compare th:first-child { text-align: left; }
.compare .yes { color: var(--good); font-weight: 700; }
.compare .no { color: var(--line-2); }
.compare tbody tr:hover { background: var(--paper-2); }
.compare .col-hl { background: rgba(200,247,81,.10); }
.compare thead .col-hl { border-bottom-color: var(--acid-deep); }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card); }

/* ---------- shared: stepper "how it works" ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 14px; right: 20px; font-family: var(--display); font-weight: 800; font-size: 3.4rem; color: var(--paper-3); line-height: 1; z-index: 0; }
.step > * { position: relative; z-index: 1; }
.step h3 { font-family: var(--display); font-size: 1.24rem; letter-spacing: -.02em; margin-bottom: 8px; margin-top: 10px; }
.step p { color: var(--ink-soft); font-size: .98rem; }
.step__k { font-family: var(--mono); font-size: .74rem; color: var(--acid-deep); font-weight: 500; }

/* ---------- shared: spec / detail mini-cards strip ---------- */
.specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.spec { padding: 22px; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); }
.spec b { font-family: var(--display); font-size: 1.9rem; letter-spacing: -.03em; display: block; line-height: 1; }
.spec span { color: var(--muted); font-size: .9rem; display: block; margin-top: 8px; }
.spec__ic { color: var(--acid-deep); margin-bottom: 12px; }

/* ======================================================================
   CONVERSION SECTIONS  (homepage & marketing)
   ====================================================================== */

/* ---- trust / logo strip ---- */
.logos { padding: 44px 0; border-bottom: 1px solid var(--line); }
.logos__label { text-align: center; font-family: var(--mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.logos__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; }
.logo-mark { font-family: var(--display); font-weight: 700; font-size: 1.28rem; letter-spacing: -.02em; color: var(--ink); opacity: .55; transition: opacity .25s var(--ease); white-space: nowrap; display: inline-flex; align-items: center; gap: 7px; }
.logo-mark:hover { opacity: 1; }
.logo-mark::before { content: ""; width: 16px; height: 16px; border-radius: 5px; background: currentColor; opacity: .45; }
.logo-mark--alt::before { border-radius: 50%; }
.logo-mark--sq::before { border-radius: 2px; transform: rotate(45deg); }

/* ---- pain vs gain comparison ---- */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vs__card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; position: relative; }
.vs__card--bad { background: var(--paper-2); }
.vs__card--good { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.vs__tag { font-family: var(--mono); font-size: .74rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.vs__card--good .vs__tag { color: var(--acid); }
.vs__card h3 { font-family: var(--display); font-size: 1.55rem; letter-spacing: -.02em; margin: 10px 0 20px; }
.vs__card--good h3 { color: var(--paper); }
.vs__list { list-style: none; display: grid; gap: 14px; }
.vs__list li { padding-left: 34px; position: relative; color: var(--ink-soft); line-height: 1.45; }
.vs__card--good .vs__list li { color: #d6d4df; }
.vs__list li::before { content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background-position: center; background-repeat: no-repeat; }
.vs__card--bad .vs__list li::before { background-color: #f0d9d4; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c0432f' stroke-width='3.5' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E"); background-size: 11px; }
.vs__card--good .vs__list li::before { background-color: var(--acid); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2315141a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); background-size: 12px; }

/* ---- testimonials grid ---- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; transition: transform .35s var(--ease-out), border-color .3s var(--ease); }
.tcard:hover { transform: translateY(-5px); border-color: var(--line-2); }
.tcard--feature { grid-column: span 2; background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tcard__stars { color: var(--acid-deep); font-size: .9rem; letter-spacing: 2px; margin-bottom: 16px; }
.tcard--feature .tcard__stars { color: var(--acid); }
.tcard blockquote { font-family: var(--display); font-weight: 500; font-size: 1.16rem; line-height: 1.4; letter-spacing: -.015em; flex: 1; }
.tcard--feature blockquote { font-size: 1.6rem; line-height: 1.32; }
.tcard blockquote em { font-family: var(--serif); font-style: italic; }
.tcard figcaption { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.tcard__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: var(--ink); flex: 0 0 auto; }
.tcard figcaption strong { display: block; font-size: .96rem; }
.tcard figcaption span { color: var(--muted); font-size: .86rem; }
.tcard--feature figcaption span { color: #9b99a6; }

/* ---- integration category cards ---- */
.int-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.int-cat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; transition: transform .35s var(--ease-out), border-color .3s var(--ease); }
.int-cat:hover { transform: translateY(-5px); border-color: var(--ink); }
.int-cat__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--paper-2); color: var(--ink); display: grid; place-items: center; margin-bottom: 18px; }
.int-cat h3 { font-family: var(--display); font-size: 1.34rem; letter-spacing: -.02em; margin-bottom: 8px; }
.int-cat p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 18px; }
.int-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.int-chip { font-size: .82rem; font-weight: 600; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 6px 13px; display: inline-flex; align-items: center; gap: 7px; }
.int-chip::before { content: ""; width: 8px; height: 8px; border-radius: 3px; background: var(--acid-deep); }
.int-chip--more { color: var(--muted); background: transparent; border-style: dashed; }
.int-chip--more::before { display: none; }

/* ---- section-level CTA band (secondary conversion) ---- */
.midcta { background: var(--paper-2); border-block: 1px solid var(--line); }
.midcta__inner { text-align: center; max-width: 720px; margin-inline: auto; }
.midcta h2 { font-family: var(--display); font-size: clamp(1.8rem, 3.6vw, 2.7rem); letter-spacing: -.03em; line-height: 1.05; }
.midcta h2 .serif { font-family: var(--serif); font-style: italic; }
.midcta p { margin: 16px auto 0; color: var(--ink-soft); font-size: 1.1rem; max-width: 52ch; }
.midcta__actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.midcta__note { margin-top: 16px; font-size: .84rem; color: var(--muted); }

/* dual-button helper: keep secondary readable on dark blocks */
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ======================================================================
   MATERIAL & DETAIL REFINEMENTS
   ====================================================================== */

/* lichte bovenrand op cream-kaarten: laat ze als papier "licht vangen" */
.card-spot, .uc, .price, .tcard, .int-cat, .step, .spec, .mock, .media-card,
.cta__form, .compare-scroll, .kpi, .fpanel, .board__col, .stage-editor__side {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), var(--shadow-sm);
}
.card-spot--dark, .tcard--feature, .kpi--hl, .price--featured {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), var(--shadow-sm);
}

/* verfijnde hover-lift: iets minder ver, zachtere landing */
.card-spot:hover, .uc:hover, .price:hover, .tcard:hover, .int-cat:hover, .related a:hover {
  transform: translateY(-4px);
}
.card-spot:hover, .tcard:hover, .int-cat:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 2px 6px rgba(20,19,24,.05), 0 22px 44px -22px rgba(20,19,24,.28);
}
.tcard--feature:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 24px 50px -24px rgba(20,19,24,.55); }

/* sectie-textuur: subtiel raster als ritmebreker tussen twee cream-secties */
.section--texture { position: relative; }
.section--texture::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 66px 66px; opacity: .4;
  -webkit-mask-image: radial-gradient(90% 70% at 50% 50%, #000, transparent 72%);
  mask-image: radial-gradient(90% 70% at 50% 50%, #000, transparent 72%);
}
.section--texture > * { position: relative; z-index: 1; }

/* donkere banden krijgen dezelfde subtiele structuur */
.stat-band { position: relative; overflow: hidden; }
.stat-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(80% 100% at 50% 0%, #000, transparent 75%);
  mask-image: radial-gradient(80% 100% at 50% 0%, #000, transparent 75%);
}
.stat-band .container { position: relative; z-index: 1; }
.stat { position: relative; }
.stats .stat + .stat::before {
  content: ""; position: absolute; left: -12px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 46px; background: rgba(255,255,255,.13);
}

/* footerlinks: subtiele verschuiving i.p.v. alleen kleur */
.footer__col a { transition: color .2s var(--ease), transform .2s var(--ease); }
.footer__col a:hover { transform: translateX(3px); }

/* logo-strip: zachtere overgang */
.logo-mark { transition: opacity .25s var(--ease), transform .25s var(--ease); }
.logo-mark:hover { transform: translateY(-2px); }

/* knoppen: iets ruimer optisch gewicht */
.btn { letter-spacing: -.005em; }
.btn--ghost:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.7), var(--shadow-sm); }

/* hangende aanhaling bij grote quotes */
.quote blockquote, .tcard--feature blockquote { hanging-punctuation: first last; }

/* tabelrand netjes afronden binnen de scrollcontainer */
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }

/* highlighter tekent zichzelf wanneer de kop in beeld komt */
:is(.reveal, .clip-reveal) .hl::after {
  transform: rotate(-1deg) scaleX(0); transform-origin: left center;
  transition: transform .75s var(--ease-out) .3s;
}
:is(.reveal, .clip-reveal).in .hl::after { transform: rotate(-1deg) scaleX(1); }

/* FAQ: rustiger openen */
.faq__q { transition: color .2s var(--ease); }
.faq__q:hover { color: var(--acid-deep); }
.faq__item.open .faq__q { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .card-spot:hover, .uc:hover, .price:hover, .tcard:hover, .int-cat:hover,
  .related a:hover, .logo-mark:hover, .footer__col a:hover { transform: none; }
}

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
@media (max-width: 1080px) {
  .hero__preview { display: none; }
  .hero__inner { max-width: 100%; }
  .hero__meta { padding-bottom: 80px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .stats .stat + .stat::before { display: none; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__inner, .nav.is-stuck .nav__inner { height: 68px; }
  /* mobiel menu: geen absolute overlap — links en knoppen wrappen netjes onder de balk */
  .nav.is-open .nav__inner { height: auto; flex-wrap: wrap; padding-bottom: 18px; row-gap: 0; }
  .nav.is-open .brand { order: 1; height: 68px; }
  .nav.is-open .nav__burger { order: 2; height: 68px; }
  .nav.is-open .nav__links { order: 3; display: flex; flex-direction: column; flex-basis: 100%; margin-left: 0; gap: 2px; padding-top: 10px; border-top: 1px solid var(--line); }
  .nav.is-open .nav__links a { padding: 13px 2px; font-size: 1.06rem; }
  .nav.is-open .nav__cta { order: 4; display: flex; flex-basis: 100%; margin-left: 0; margin-top: 14px; }
  .nav.is-open .nav__cta .btn { flex: 1; justify-content: center; }
  .section { padding: 78px 0; }
  .feature-grid, .uc-grid, .price-grid, .related, .row2 { grid-template-columns: 1fr; }
  .card-spot--wide { grid-column: auto; }
  .card-spot--dark { grid-template-columns: 1fr; }
  .row2 { gap: 32px; } .row2 + .row2 { margin-top: 64px; }
  .row2--rev .row2__media { order: 0; }
  .price--featured { transform: none; } .price--featured:hover { transform: translateY(-5px); }
  .board, .stage-editor, .finance { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; gap: 36px; padding: 36px 28px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps, .specs { grid-template-columns: 1fr; }
  .fdash__low { grid-template-columns: 1fr; }
  .fdash__kpis { grid-template-columns: 1fr 1fr; }
  .vs, .tgrid, .int-grid { grid-template-columns: 1fr; }
  .tcard--feature { grid-column: auto; }
}
@media (max-width: 600px) {
  .specs { grid-template-columns: 1fr 1fr; }
  .fdash__kpis { grid-template-columns: 1fr; }
  .editor { grid-template-columns: 40px 1fr; }
}
@media (max-width: 480px) {
  .container { padding-inline: 20px; }
  .hero__meta { gap: 22px; }
  .card-spot, .uc, .price, .cta__form { padding: 24px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .tab { padding: 9px 15px; font-size: .88rem; }
}

/* ======================================================================
   MODULE-CHIPS — feitelijke functies per module
   ====================================================================== */
.modchips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.modchip {
  font-family: var(--mono); font-size: .72rem; letter-spacing: -.01em;
  padding: 5px 11px; border-radius: 100px;
  background: var(--paper-2); color: var(--ink-soft); border: 1px solid var(--line);
}
.card-spot--dark .modchip { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); color: #cfcdda; }

/* ---------- event-secties (stapel in donkere kaart) ---------- */
.secstack { display: grid; gap: 7px; align-self: stretch; }
.secrow {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 14px; border-radius: 11px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  font-size: .88rem; font-weight: 500; color: #d6d4df;
}
.secrow i { font-style: normal; font-family: var(--mono); font-size: .7rem; color: #8a8893; }
.secrow--on { background: var(--acid); border-color: var(--acid); color: var(--ink); }
.secrow--on i { color: rgba(21,20,26,.6); }

/* ======================================================================
   BOEKINGEN-PANEEL
   ====================================================================== */
.bk-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.bk-kpi {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 16px; display: grid; gap: 4px;
}
.bk-kpi span { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.bk-kpi b { font-family: var(--display); font-size: 1.9rem; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }

.bk-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.bk { width: 100%; border-collapse: collapse; min-width: 620px; }
.bk th {
  text-align: left; font-family: var(--body); font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--muted);
  padding: 0 14px 12px; border-bottom: 1px solid var(--line);
}
.bk td { padding: 14px; border-bottom: 1px solid var(--line); font-size: .94rem; vertical-align: middle; }
.bk tbody tr:last-child td { border-bottom: 0; }
.bk tbody tr { transition: background .18s var(--ease); }
.bk tbody tr:hover { background: var(--paper); }
.bk td:first-child b { display: block; font-family: var(--body); font-weight: 600; font-size: .94rem; }
.bk td:first-child span { display: block; font-family: var(--mono); font-size: .72rem; color: var(--muted); margin-top: 2px; }
.bk-status {
  display: inline-block; padding: 5px 12px; border-radius: 100px;
  background: #d9f3e4; color: #1f8f5a; font-size: .8rem; font-weight: 600; white-space: nowrap;
}

@media (max-width: 860px) {
  .bk-kpis { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .bk-kpi { padding: 11px 12px; }
  .bk-kpi b { font-size: 1.5rem; }
}


/* ---------- event-mock: maakt duidelijk dát het om één event gaat ---------- */
.evmock {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg); padding: 16px; align-self: stretch;
}
.evmock__bar {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding-bottom: 13px; margin-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.10);
}
.evmock__name { font-family: var(--display); font-size: 1.02rem; font-weight: 600; color: var(--paper); letter-spacing: -.01em; }
.evmock__date { font-family: var(--mono); font-size: .74rem; color: #8a8893; white-space: nowrap; }
.evmock__cap {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  color: #8a8893; margin-bottom: 10px;
}
.evmock .secstack { gap: 6px; }
.evmock__add {
  display: inline-block; margin-top: 12px;
  font-family: var(--mono); font-size: .72rem; color: var(--acid);
  border: 1px dashed rgba(200,247,81,.35); border-radius: 100px; padding: 6px 13px;
}

/* ======================================================================
   AGENDA- EN TAAK-MOCKUPS (boekingen.html)
   ====================================================================== */
.cal-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; font-size: .76rem; color: var(--muted); }
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal-legend i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }

.calgrid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.calgrid__dow {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); text-align: center; padding-bottom: 6px;
}
.calday {
  position: relative; aspect-ratio: 1; display: grid; place-items: center;
  font-size: .8rem; color: var(--ink-soft); border-radius: 8px;
  background: var(--paper); border: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.calday--now { background: var(--ink); color: var(--paper); border-color: var(--ink); font-weight: 600; }
.cdot { position: absolute; top: 5px; right: 5px; width: 6px; height: 6px; border-radius: 50%; }
.cdot--rooster { background: var(--acid-deep); }
.cdot--taak { background: #e8a33d; }

.calbar { margin-top: 12px; }
.calbar__ev {
  display: block; background: var(--ink); color: var(--paper);
  font-size: .8rem; font-weight: 500; padding: 9px 13px; border-radius: 9px;
}

/* taakregels */
.tk {
  display: grid; grid-template-columns: 1fr auto auto auto; gap: 12px; align-items: center;
  padding: 13px 4px; border-bottom: 1px solid var(--line);
}
.tk:last-child { border-bottom: 0; }
.tk__t { font-size: .94rem; font-weight: 500; }
.tk__s { font-size: .74rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.tk__s--open { background: var(--paper-2); color: var(--ink-soft); }
.tk__s--busy { background: #ffe7d4; color: #b65a17; }
.tk__d { font-family: var(--mono); font-size: .76rem; color: var(--muted); white-space: nowrap; }
.tk__a {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--violet-soft); color: #3f2bbf; font-size: .68rem; font-weight: 700;
}

@media (max-width: 480px) {
  .tk { grid-template-columns: 1fr auto; row-gap: 6px; }
  .tk__d, .tk__a { grid-row: 2; justify-self: start; }
}

/* ======================================================================
   JURIDISCHE PAGINA'S
   ====================================================================== */
.legal__meta { margin-top: 20px; font-family: var(--mono); font-size: .78rem; color: var(--muted); }
.legal-note {
  max-width: 760px; background: var(--card); border: 1px solid var(--line);
  border-left: 3px solid var(--acid); border-radius: 12px;
  padding: 16px 20px; margin-bottom: 44px; font-size: .94rem; color: var(--ink-soft);
}
.legal { max-width: 760px; }
.legal h2 {
  font-family: var(--display); font-size: 1.32rem; letter-spacing: -.02em;
  margin: 46px 0 12px; display: flex; gap: 14px; align-items: baseline;
}
.legal h2:first-child { margin-top: 0; }
.legal__no { font-family: var(--mono); font-size: .8rem; color: var(--acid-deep); flex: 0 0 auto; }
.legal p { color: var(--ink-soft); margin-bottom: 14px; max-width: 68ch; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.legal a:hover { color: var(--acid-deep); }
.legal strong { color: var(--ink); font-weight: 600; }
@media (max-width: 480px) {
  .legal h2 { flex-direction: column; gap: 4px; }
}

/* koppen die als opmaak dienen, niet als documentstructuur */
.footer__col .footer__h { font-family: var(--body); }
.mock-head { font-family: var(--display); font-size: 1rem; font-weight: 600; margin-bottom: 12px; letter-spacing: -.01em; }
.fpanel .mock-head { font-size: .82rem; }
.price__name { font-family: var(--display); font-size: 1.55rem; letter-spacing: -.02em; }
.related h3 { font-family: var(--display); font-size: 1.2rem; margin: 10px 0 6px; }

/* ======================================================================
   404
   ====================================================================== */
.err { border-bottom: 0; padding: 40px 0 96px; }
.err__inner { position: relative; z-index: 1; max-width: 820px; }
.err__code {
  font-family: var(--display); font-weight: 800; font-size: clamp(5rem, 16vw, 11rem);
  line-height: .82; letter-spacing: -.05em; color: transparent;
  -webkit-text-stroke: 2px var(--line-2); margin-bottom: 8px; user-select: none;
}
.err h1 { font-family: var(--display); font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.02; letter-spacing: -.035em; }
.err h1 .serif { font-family: var(--serif); font-style: italic; }
.err__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.err__links a {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px;
  transition: transform .3s var(--ease-out), border-color .3s var(--ease);
}
.err__links a:hover { transform: translateY(-4px); border-color: var(--ink); }
.err__links h2 { font-family: var(--display); font-size: 1.15rem; margin: 10px 0 6px; letter-spacing: -.01em; }
.err__links p { font-size: .92rem; color: var(--muted); }
@media (max-width: 860px) { .err__links { grid-template-columns: 1fr; } }

/* ======================================================================
   AAN DE SLAG — drie stappen (eigen namespace, botst niet met .step)
   ====================================================================== */
.flow { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.flow__item {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 28px 28px;
  transition: transform .35s var(--ease-out), border-color .3s var(--ease);
}
.flow__item:hover { transform: translateY(-5px); border-color: var(--ink); }
.flow__no {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--acid);
  font-family: var(--mono); font-size: .84rem; font-weight: 500; margin-bottom: 20px;
}
.flow__item h3 { font-family: var(--display); font-size: 1.28rem; letter-spacing: -.02em; margin-bottom: 10px; }
.flow__item p { color: var(--ink-soft); font-size: 1rem; }
.flow__meta {
  display: block; margin-top: 18px; font-family: var(--mono); font-size: .72rem;
  letter-spacing: .04em; color: var(--muted);
  border-top: 1px solid var(--line); padding-top: 14px;
}
.flow__item + .flow__item::before {
  content: ""; position: absolute; left: -18px; top: 54px; width: 18px; height: 1px; background: var(--line-2);
}
.flow__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 36px; }
.flow__note { font-size: .92rem; color: var(--muted); }

@media (max-width: 860px) {
  .flow { grid-template-columns: 1fr; gap: 14px; }
  .flow__item + .flow__item::before { left: 34px; top: -14px; width: 1px; height: 14px; }
}

/* ======================================================================
   BEDANKTPAGINA
   ====================================================================== */
.thanks__check {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  background: var(--acid); color: var(--ink); margin-bottom: 26px;
  animation: pop .5s var(--ease-out) both;
}
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .thanks__check { animation: none; } }
.thanks__list { list-style: none; display: grid; gap: 16px; margin-top: 22px; counter-reset: th; }
.thanks__list li {
  position: relative; padding-left: 42px; color: var(--ink-soft);
}
.thanks__list li::before {
  counter-increment: th; content: counter(th);
  position: absolute; left: 0; top: 1px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--paper-2); border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: .74rem; color: var(--ink);
}
.thanks__list strong { color: var(--ink); font-weight: 600; }

/* ======================================================================
   VORMGEVINGSELEMENTEN geïnspireerd op inspace.io
   (zelfde opzet, vertaald naar de Veest-kleuren en -letters)
   ====================================================================== */

/* ---- 1. Uitgelichte prijskaart: accentrand + badge óp de rand ---------- */
.price { border-radius: 30px; }
.price--featured {
  background: var(--card); color: var(--ink);
  border: 3px solid var(--acid-deep); border-radius: 30px;
  box-shadow: 0 20px 48px rgba(20,19,24,.09), 0 0 0 8px rgba(200,247,81,.16);
  overflow: visible;
}
.price--featured .price__for   { color: var(--muted); }
.price--featured .price__per   { color: var(--muted); }
.price--featured .price__list li { color: var(--ink-soft); }
.price--featured .price__name  { color: var(--ink); }

/* badge zit ín de bovenrand, met een zachte gloed erachter */
.price--featured .price__badge {
  top: -16px; padding: 8px 20px;
  background: var(--acid-deep); color: var(--ink);
  font-family: var(--mono); font-weight: 500; font-size: .7rem; letter-spacing: .14em;
  box-shadow: 0 0 22px 6px rgba(159,206,37,.35);
  white-space: nowrap;
}

/* ---- 2. Reuzenwoord achter een sectiekop ------------------------------ */
.ghost-head { position: relative; }
.ghost-head .ghost {
  position: absolute; left: -.04em; bottom: 100%; margin-bottom: -.22em;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(4.5rem, 13vw, 11rem); line-height: .8; letter-spacing: -.045em;
  color: transparent; -webkit-text-stroke: 1.5px var(--line-2);
  pointer-events: none; user-select: none; z-index: 0; white-space: nowrap;
}
.ghost-head > *:not(.ghost) { position: relative; z-index: 1; }
.section--ghost { padding-top: 150px; }
@media (max-width: 860px) {
  .ghost-head .ghost { font-size: clamp(3.2rem, 18vw, 6rem); }
  .section--ghost { padding-top: 110px; }
}

/* ---- 3. Mono-tekstlink met pijl --------------------------------------- */
.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); padding-bottom: 4px;
  border-bottom: 1.5px solid var(--line-2);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.arrow-link svg { transition: transform .3s var(--ease-out); }
.arrow-link:hover { border-bottom-color: var(--acid-deep); }
.arrow-link:hover svg { transform: translateX(5px); }

/* ---- 4. Verlooplijngrafiek -------------------------------------------- */
.trendchart { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.trendchart__top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.trendchart__label { font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.trendchart__val { font-family: var(--display); font-size: 1.5rem; letter-spacing: -.02em; }
.trendchart svg { display: block; width: 100%; height: auto; }
.trendchart__line { stroke: var(--ink); stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 600; stroke-dashoffset: 600; animation: draw 1.6s var(--ease-out) forwards; }
.trendchart__dot { fill: var(--acid-deep); stroke: var(--paper); stroke-width: 3; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .trendchart__line { animation: none; stroke-dashoffset: 0; } }

/* ======================================================================
   PODIUM-MOCKUPS PROPORTIONEEL — schalen mee op elk schermformaat
   Vaste pixelposities lieten labels over de wedges vallen op mobiel.
   Nu: echte podiumverhouding (10 × 6 m) en alles in procenten,
   met tekst in container-eenheden zodat die meeschaalt.
   ====================================================================== */
.editor__stage, .stage-editor__canvas {
  aspect-ratio: 10 / 6;
  min-height: 0;
  container-type: inline-size;
  overflow: hidden;
}

/* labels en elementen schalen mee met de breedte van het podium */
.editor__stage .el, .stage-editor__canvas .riser {
  font-size: clamp(.52rem, 2.6cqw, .72rem);
  padding: 0 2px; text-align: center; line-height: 1.1;
}
.editor__stage .stage-tag, .stage-editor__canvas .stage-tag {
  font-size: clamp(.5rem, 2.4cqw, .7rem);
  padding: clamp(3px, .9cqw, 6px) clamp(6px, 2cqw, 11px);
  max-width: 88%; text-align: center; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.stage-tag--top   { top: 4%; }
.stage-tag--front { top: 91%; bottom: auto; }

/* microfoon blijft rond en schaalt mee */
.editor__stage .mic, .stage-editor__canvas .mic {
  width: clamp(11px, 4cqw, 18px); height: auto; aspect-ratio: 1;
  bottom: auto; box-shadow: 0 0 0 clamp(3px, 1.6cqw, 6px) rgba(200,247,81,.3);
}

/* index-mockup: risers van px naar procenten */
.riser--drums { top: 15%; width: 33%; height: 19%; }
.riser--keys  { top: 41%; left: 8%;  width: 27%; height: 15%; }
.riser--bass  { top: 41%; right: 8%; width: 27%; height: 15%; }
.riser--gtr   { top: 60%; left: 22%; width: 25%; height: 13%; }
.stage-editor__canvas .mic { top: 76%; }

/* maatvoering alleen tonen als er ruimte voor is */
@container (max-width: 340px) { .dim { display: none; } }

/* gereedschapsrail smaller op kleine schermen */
@media (max-width: 480px) {
  .editor { grid-template-columns: 38px 1fr; }
  .editor__tool { width: 26px; height: 26px; }
}

/* onderste label netjes binnen het podium houden */
.stage-tag--front { top: auto; bottom: 3%; }
/* op smalle schermen iets meer hoogte, anders wordt het podium te plat */
@media (max-width: 700px) {
  .editor__stage, .stage-editor__canvas { aspect-ratio: 10 / 7.4; }
}

/* de editor-container volgt nu de hoogte van het podium zelf */
.editor { min-height: 0; align-items: stretch; }
.editor__rail { height: 100%; }
/* venstertitel niet over twee regels op smalle schermen */
.mock__url { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.mock__bar { gap: 7px; }

/* ======================================================================
   GRID-ITEMS MOGEN KRIMPEN
   Zonder min-width:0 groeit een grid-/flexkolom mee met zijn breedste kind
   (bijv. een scrollbare tabel), waardoor de héle pagina horizontaal overloopt.
   ====================================================================== */
.row2 > *, .feature-grid > *, .related > *, .flow > *, .uc-grid > *,
.price-grid > *, .err__links > *, .stage-editor > *, .finance > *,
.fdash__low > *, .board > *, .bk-kpis > * {
  min-width: 0;
}
.bk-scroll, .compare-scroll { max-width: 100%; }
