/* ==========================================================================
   FLEXDASH  Scroll Showcase Styles
   --------------------------------------------------------------------------
   Styling voor de scroll-driven tour: zoomshow, spotlight highlights,
   FlexDash AI chat panel, Knowledge Base modal popup.
   ========================================================================== */

/* Reduced motion fallback  toon eindstaat zonder animaties */
.scroll-showcase-reduced .zoomshow {
  display: none;
}

/* ==========================================================================
   EXTRA HERO BACKGROUND WIDGETS  onderkant van hero (links / midden / rechts)
   Zelfde styling-taal als de bestaande hero__bg-widgets in style.css
   ========================================================================== */

/* Bottom-left: tall KPI (orange) */
.hero__bg-widget--kpi-tall-bl {
  width: 46px;
  height: 68px;
  bottom: 6%;
  left: 4%;
  transform: rotate(-12deg);
  border-radius: 10px;
  border: 2px solid color-mix(in srgb, var(--color-cta) 26%, transparent);
  background-color: color-mix(in srgb, var(--color-cta) 7%, transparent);
}
.hero__bg-widget--kpi-tall-bl .hero__bg-widget-bar {
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--color-cta) 38%, transparent);
}
.hero__bg-widget--kpi-tall-bl .hero__bg-widget-bar--a {
  top: 14px; left: 9px; width: 22px;
}
.hero__bg-widget--kpi-tall-bl .hero__bg-widget-bar--b {
  top: 24px; left: 9px; width: 14px;
  background: color-mix(in srgb, var(--color-cta) 22%, transparent);
}

/* Bottom-left: small dot accent (blue) */
.hero__bg-widget--dot-bl {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  bottom: 22%;
  left: 18%;
  background: color-mix(in srgb, var(--color-accent-blue) 28%, transparent);
}

/* Bottom-middle: rotated chart card (orange) */
.hero__bg-widget--chart-bm {
  width: 86px;
  height: 40px;
  bottom: 8%;
  left: 44%;
  transform: rotate(-7deg);
  border-radius: 10px;
  border: 2px solid color-mix(in srgb, var(--color-cta) 22%, transparent);
  background-color: color-mix(in srgb, var(--color-cta) 6%, transparent);
  overflow: hidden;
}
.hero__bg-widget--chart-bm .hero__bg-widget-block {
  position: absolute;
  bottom: 10px;
  border-radius: 2px;
}
.hero__bg-widget--chart-bm .hero__bg-widget-block--a {
  left: 10px; width: 16px; height: 7px;
  background: color-mix(in srgb, var(--color-cta) 30%, transparent);
}
.hero__bg-widget--chart-bm .hero__bg-widget-block--b {
  left: 30px; width: 14px; height: 14px;
  background: color-mix(in srgb, var(--color-cta) 22%, transparent);
}
.hero__bg-widget--chart-bm .hero__bg-widget-block--c {
  left: 48px; width: 18px; height: 5px;
  background: color-mix(in srgb, var(--color-cta) 16%, transparent);
}

/* Bottom-middle: secondary sparkline (blue) */
.hero__bg-widget--sparkline-bm {
  width: 64px;
  height: 30px;
  bottom: 24%;
  left: 50%;
  transform: rotate(5deg);
  color: color-mix(in srgb, var(--color-accent-blue) 50%, transparent);
}

/* Bottom-right: bar chart (blue) */
.hero__bg-widget--bars-br {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  bottom: 20%;
  right: 8%;
  transform: rotate(6deg);
}
.hero__bg-widget--bars-br span {
  display: block;
  width: 5px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--color-accent-blue) 30%, transparent);
}
.hero__bg-widget--bars-br span:nth-child(1) { height: 12px; }
.hero__bg-widget--bars-br span:nth-child(2) { height: 18px; }
.hero__bg-widget--bars-br span:nth-child(3) { height: 24px; }
.hero__bg-widget--bars-br span:nth-child(4) { height: 16px; }
.hero__bg-widget--bars-br span:nth-child(5) {
  height: 28px;
  background: color-mix(in srgb, var(--color-accent-blue) 50%, transparent);
}

/* Bottom-right: square stat */
.hero__bg-widget--stat-br {
  width: 52px;
  height: 52px;
  bottom: 8%;
  right: 16%;
  border-radius: 12px;
  transform: rotate(8deg);
  border: 2px solid color-mix(in srgb, var(--color-cta) 20%, transparent);
  background-color: color-mix(in srgb, var(--color-cta) 5%, transparent);
}

/* Bottom-right: small dot accent */
.hero__bg-widget--dot-br {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  bottom: 16%;
  right: 26%;
  background: color-mix(in srgb, var(--color-cta) 30%, transparent);
}

/* ==========================================================================
   LAATSTE TICKETS  verschijnt onder de widgets zodra user scrollt
   ========================================================================== */

.dash__tickets {
  margin-top: 12px;
  background: var(--bg-surface);
  border-radius: 14px;
  border: 1px solid var(--border-default);
  overflow: hidden;
}

.dash__tickets-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.dash__tickets-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash__tickets-title {
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.dash__tickets-count {
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: color-mix(in srgb, #f97316 12%, transparent);
  color: #f97316;
  padding: 3px 8px;
  border-radius: 9999px;
}

.dash__tickets-view {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-blue);
  padding: 4px 6px;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.dash__tickets-view:hover {
  background: color-mix(in srgb, var(--color-accent-blue) 8%, transparent);
}

.dash__tickets-cols {
  display: grid;
  grid-template-columns: 90px 1fr 80px 130px;
  align-items: center;
  gap: 14px;
  padding: 8px 18px;
  font-size: 9px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-tertiary);
  background: var(--bg-surface-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.dash__ticket {
  display: grid;
  grid-template-columns: 90px 1fr 80px 130px;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 12px;
  transition: background 0.15s ease;
  cursor: pointer;
}

.dash__ticket:last-child {
  border-bottom: none;
}

.dash__ticket:hover {
  background: var(--bg-surface-subtle);
}

.dash__ticket-id {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dash__ticket-prio {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,1);
}

.dash__ticket-prio--urgent {
  background: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
  animation: ticket-pulse 1.6s ease-in-out infinite;
}

.dash__ticket-prio--high   { background: #f97316; }
.dash__ticket-prio--normal { background: #94a3b8; }

@keyframes ticket-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(239, 68, 68, 0); }
}

.dash__ticket-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  color: var(--text-secondary);
}

.dash__ticket-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.dash__ticket-company {
  font-weight: var(--font-weight-semibold);
  font-size: 12px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash__ticket-subject {
  font-size: 11px;
  color: var(--text-tertiary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash__ticket-time {
  font-size: 11px;
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
}

.dash__ticket-handler {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.dash__ticket-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: var(--font-weight-bold);
  color: white;
  flex-shrink: 0;
}

.dash__ticket-avatar--blue   { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.dash__ticket-avatar--orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.dash__ticket-avatar--purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.dash__ticket-avatar--teal   { background: linear-gradient(135deg, #0d9488, #14b8a6); }

.dash__ticket-handler-name {
  font-size: 11px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Compact mode op kleinere viewports */
@media (max-width: 700px) {
  .dash__tickets-cols,
  .dash__ticket {
    grid-template-columns: 70px 1fr 60px;
  }
  .dash__tickets-cols > span:last-child,
  .dash__ticket-handler {
    display: none;
  }
}

/* ==========================================================================
   HERO TOUR MODE  overlays sit inside hero, dashboard slides right
   ========================================================================== */

/* Tijdens de tour: container behaalt overflow visible zodat overlays niet geclipped worden */
.hero.hero--tour-enabled {
  position: relative;
  z-index: 1;
}

/* De mockup wordt tijdens de pinned tour elke frame met transform gescrubd.
   Promoot 'm naar een eigen GPU-laag voor jank-vrije beweging  alleen in tour-modus. */
.hero.hero--tour-enabled .hero__dashboard-wrap {
  will-change: transform;
}

/* Sidebar binnen hero, gepositioneerd t.o.v. de hero (niet de card) */
.hero.hero--tour-enabled > .zoomshow__sidebar,
.hero > .zoomshow__sidebar {
  position: absolute;
  top: calc(40vh + 36px);          /* hoger in viewport */
  left: max(2vw, 24px);
  transform: translateY(-50%);
  z-index: 8;
  max-height: calc(100vh - 200px);
  overflow: hidden;
}

/* Sweeping border light: conic gradient roterend rond de card */
.hero > .zoomshow__sidebar::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: conic-gradient(
    from var(--orb-angle, 0deg),
    transparent 0%,
    rgba(96, 165, 250, 0.7) 8%,
    transparent 20%,
    transparent 50%,
    rgba(249, 115, 22, 0.55) 58%,
    transparent 70%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  animation: sidebar-orb-rotate 9s linear infinite;
}

@property --orb-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes sidebar-orb-rotate {
  to { --orb-angle: 360deg; }
}

/* Floating decoratieve orbs binnen het glas-card */
.zoomshow__sidebar-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.zoomshow__sidebar-orb--1 {
  top: -40px;
  right: -50px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.55), transparent 70%);
  animation: orb-float-1 11s ease-in-out infinite;
}

.zoomshow__sidebar-orb--2 {
  bottom: -50px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.42), transparent 70%);
  animation: orb-float-2 14s ease-in-out infinite;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50%      { transform: translate(22px, 30px) scale(1.12); opacity: 1; }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
  50%      { transform: translate(-18px, -22px) scale(1.1); opacity: 0.95; }
}

/* Sidebar inhoud boven de decoratie */
.zoomshow__sidebar > .zoomshow__chapter,
.zoomshow__sidebar > .zoomshow__stories,
.zoomshow__sidebar > .zoomshow__progress {
  position: relative;
  z-index: 3;
}

/* Active progress step krijgt pulsing dot eronder */
.zoomshow__progress-step--active {
  position: relative;
}

.zoomshow__progress-step--active::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #60a5fa;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.9);
  animation: step-pulse 1.6s ease-in-out infinite;
}

@keyframes step-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50%      { transform: translateX(-50%) scale(1.6); opacity: 0.5; }
}

/* Story title: char-by-char animatie via .char wrapper */
.zoomshow__story-title .char {
  display: inline-block;
  will-change: transform, opacity;
}
/* Letters per woord bij elkaar houden: regel breekt alleen tussen woorden,
   nooit middenin (voorkomt "real-/time"-afkappingen). */
.zoomshow__story-title .char-word {
  display: inline-block;
  white-space: nowrap;
}

/* ==========================================================================
   "BLIJF SCROLLEN" HINT  onder de sidebar card
   ========================================================================== */

.zoomshow__keep-scrolling {
  position: absolute;
  top: 0;                              /* JS herpositioneert direct onder card */
  left: max(2vw, 24px);
  width: min(380px, 36vw);
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
}

/* Theme-aware kleuren  donker in light mode, wit in dark mode */
.zoomshow__keep-scrolling-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.62);          /* zwart-grijs voor light mode */
  font-feature-settings: "ss01" on, "tnum" on;
}

[data-theme="dark"] .zoomshow__keep-scrolling-text {
  color: rgba(255, 255, 255, 0.55);
}

/* Subtiele vertikale rail met dalende dot  premium minimalist */
.zoomshow__keep-scrolling-rail {
  position: relative;
  width: 1px;
  height: 38px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.04),
    rgba(15, 23, 42, 0.32) 40%,
    rgba(15, 23, 42, 0.32) 60%,
    rgba(15, 23, 42, 0.04)
  );
  overflow: visible;
}

[data-theme="dark"] .zoomshow__keep-scrolling-rail {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.22) 40%,
    rgba(255, 255, 255, 0.22) 60%,
    rgba(255, 255, 255, 0.05)
  );
}

.zoomshow__keep-scrolling-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);     /* donker in light mode */
  transform: translate(-50%, -2px);
  box-shadow: 0 0 8px rgba(15, 23, 42, 0.25);
  animation: rail-dot 2.4s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

[data-theme="dark"] .zoomshow__keep-scrolling-dot {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

@keyframes rail-dot {
  0%   { transform: translate(-50%, -2px) scale(0.6); opacity: 0; }
  20%  { transform: translate(-50%, 4px) scale(1); opacity: 1; }
  80%  { transform: translate(-50%, 30px) scale(1); opacity: 1; }
  100% { transform: translate(-50%, 38px) scale(0.6); opacity: 0; }
}

/* KB modal zit INSIDE .hero__dashboard  gecentreerd binnen de mockup, niet de viewport.
   Centering via GSAP xPercent/yPercent omdat GSAP de inline transform anders zou overschrijven. */
.hero__dashboard > .zoomshow__kb-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  z-index: 60;
  width: min(440px, 70%);
  max-height: 78%;
  will-change: opacity, transform;
}

/* ==========================================================================
   PER-STAGE FOCUS  emphasize one dashboard area, dim/blur the rest
   ========================================================================== */

.hero__dashboard-wrap .dash__welcome-row,
.hero__dashboard-wrap .dash__stats,
.hero__dashboard-wrap .dash__widgets,
.hero__dashboard-wrap .dash__tickets,
.hero__dashboard-wrap .dash__content-header {
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 12px;
}

/* Focus on STATS  dim everything else */
.hero[data-focus="stats"] .dash__welcome-row,
.hero[data-focus="stats"] .dash__widgets,
.hero[data-focus="stats"] .dash__tickets,
.hero[data-focus="stats"] .dash__content-header {
  opacity: 0.35;
  filter: blur(2px) saturate(0.6);
}

.hero[data-focus="stats"] .dash__stats {
  box-shadow:
    0 0 0 3px rgba(37, 99, 235, 0.5),
    0 0 0 8px rgba(37, 99, 235, 0.15),
    0 20px 50px rgba(37, 99, 235, 0.25);
  transform: scale(1.02);
  z-index: 4;
}

/* Focus on ACTIVITY widget */
.hero[data-focus="activity"] .dash__welcome-row,
.hero[data-focus="activity"] .dash__stats,
.hero[data-focus="activity"] .dash__content-header,
.hero[data-focus="activity"] .dash__widget--chart,
.hero[data-focus="activity"] .dash__tickets {
  opacity: 0.3;
  filter: blur(2px) saturate(0.6);
}

.hero[data-focus="activity"] .dash__widget--activity {
  box-shadow:
    0 0 0 3px rgba(22, 163, 74, 0.5),
    0 0 0 8px rgba(22, 163, 74, 0.15),
    0 20px 50px rgba(22, 163, 74, 0.25);
  transform: scale(1.02);
  z-index: 4;
  border-radius: 14px;
}

/* Focus on WELCOME (intro stage 0)  niets gedimd */
.hero[data-focus=""] .dash__welcome-row,
.hero:not([data-focus]) .dash__welcome-row {
  opacity: 1;
  filter: none;
}

/* AI stage  heel dashboard dim, AI panel highlight */
.hero[data-focus="ai"] .dash__welcome-row,
.hero[data-focus="ai"] .dash__stats,
.hero[data-focus="ai"] .dash__widgets,
.hero[data-focus="ai"] .dash__tickets,
.hero[data-focus="ai"] .dash__content-header {
  opacity: 0.35;
  filter: blur(2.5px) saturate(0.5);
}

/* KB stage  heel dashboard sterk dimmen achter modal */
.hero[data-focus="kb"] .dash__welcome-row,
.hero[data-focus="kb"] .dash__stats,
.hero[data-focus="kb"] .dash__widgets,
.hero[data-focus="kb"] .dash__tickets,
.hero[data-focus="kb"] .dash__content-header {
  opacity: 0.25;
  filter: blur(4px) saturate(0.3);
}

.hero__card {
  position: relative;
}

/* ==========================================================================
   ZOOMSHOW  pinned scroll tour
   ========================================================================== */

.zoomshow {
  position: relative;
  background-color: #0b1320;
  color: #f5f5f5;
  /* De ScrollTrigger pin maakt deze sectie effectief 100vh "kleverig" */
}

[data-theme="dark"] .zoomshow {
  background-color: #050810;
}

/* ----- STAGE: fullscreen viewport waarin dashboard "groot" wordt ----- */
.zoomshow__stage {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

/* ----- Side stories: OVERLAY card on top of dashboard ----- */
.zoomshow__sidebar {
  position: absolute;
  top: 50%;
  left: max(2vw, 24px);
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: min(360px, 30vw);
  padding: var(--space-6);
  background: rgba(11, 19, 32, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  color: #f5f5f5;
}

.zoomshow__chapter {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: var(--font-weight-bold);
  color: #93c5fd;
}

.zoomshow__stories {
  position: relative;
  min-height: 320px;
}

.zoomshow__story {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  color: #f5f5f5;
  will-change: opacity, transform;
}

.zoomshow__story--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.zoomshow__story-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.zoomshow__story-tag--blue   { background: color-mix(in srgb, #2563eb 12%, transparent); color: #2563eb; }
.zoomshow__story-tag--orange { background: color-mix(in srgb, #f97316 12%, transparent); color: #f97316; }
.zoomshow__story-tag--green  { background: color-mix(in srgb, #16a34a 12%, transparent); color: #16a34a; }
.zoomshow__story-tag--purple { background: color-mix(in srgb, #7c3aed 12%, transparent); color: #7c3aed; }
.zoomshow__story-tag--teal   { background: color-mix(in srgb, #0d9488 12%, transparent); color: #0d9488; }

.zoomshow__story-title {
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  color: #ffffff;
}

.zoomshow__story-title-accent {
  background: linear-gradient(135deg, #60a5fa, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.zoomshow__story-desc {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.78);
  margin: 0 0 var(--space-4);
}

.zoomshow__story-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.zoomshow__story-checks li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: rgba(245, 245, 245, 0.85);
}

.zoomshow__story-checks li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2360a5fa' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ----- Progress strip below stories ----- */
.zoomshow__progress {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zoomshow__progress-bar {
  position: relative;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-3);
}

.zoomshow__progress-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #60a5fa, #f97316);
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: var(--radius-full);
}

.zoomshow__progress-steps {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  color: rgba(255, 255, 255, 0.4);
}

.zoomshow__progress-step {
  transition: color 0.2s ease;
}

.zoomshow__progress-step--active {
  color: #60a5fa;
}

/* ----- Dashboard stage container (FULLSCREEN VIEWPORT) ----- */
.zoomshow__viewport {
  position: absolute;
  inset: 0;
  perspective: 2400px;
  overflow: hidden;
  z-index: 1;
}

.zoomshow__dash-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoomshow__dash {
  position: relative;
  width: min(1200px, 92vw);
  max-height: 86vh;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform-origin: center center;
  will-change: transform;
}

.zoomshow__dash .dash {
  font-size: 13px;
}

[data-theme="dark"] .zoomshow__dash {
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--border-default);
}

/* Subtle radial glow behind dashboard */
.zoomshow__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 70%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(37, 99, 235, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(249, 115, 22, 0.25) 0%, transparent 50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

/* Vignette overlay for cinematic feel */
.zoomshow__viewport::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: 2;
}

/* ==========================================================================
   ZOOMSHOW HIGHLIGHTS  spotlight rings around UI elements
   ========================================================================== */

.zoomshow__highlight {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: scale(0.85);
  border: 2px solid var(--color-cta);
  border-radius: 12px;
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--color-cta) 18%, transparent),
    0 0 40px color-mix(in srgb, var(--color-cta) 40%, transparent);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.zoomshow__highlight::after {
  content: attr(data-label);
  position: absolute;
  top: -32px;
  left: 0;
  background: var(--color-cta);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   AI CHAT PANEL  FlexDash AI clone, slides in from right
   ========================================================================== */

/* Zorg dat .hero__dashboard een positioning-context is voor de AI overlay binnenin */
.hero__dashboard {
  position: relative;
}

/* Mockup hoogte. Widgets blijven natuurlijk groot, Activity 3 items.
   Tickets card komt eronder en wordt onderaan afgesneden door overflow. */
.hero__dashboard-wrap .dash__main {
  /* Vloeiende hoogte: vol op normale schermen, korter op lage/uitgezoomde
     viewports zodat de mockup niet overloopt. */
  height: min(600px, 72vh);
  max-height: 600px;
  padding-bottom: var(--space-2);
  overflow: hidden;
}

/* Activity widget: 3 items zichtbaar (was 4)  net 1 minder = ruimte voor tickets */
.hero__dashboard-wrap .dash__widget--activity .dash__activity-item:nth-child(n+4) {
  display: none;
}

/* Chart iets korter  bars blijven goed leesbaar */
.hero__dashboard-wrap .dash__widget--chart .dash__chart {
  height: 110px;
}

/* Tickets table volgt direct onder de widgets row */
.hero__dashboard-wrap .dash__tickets {
  margin-top: 4px;
}

/* AI Chat overlay  leeft INSIDE de mockup (.hero__dashboard), vult deze volledig
   wanneer active. Reveal via opacity + scale (betrouwbaar cross-browser). */
/* ==========================================================================
   TICKETS PANEL  Filament-style overzicht, vult de mockup tijdens stage 3
   ========================================================================== */

.zoomshow__tickets-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 170px;            /* houdt de dashboard sidebar zichtbaar */
  background: #eef2f7;
  z-index: 45;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;
  font-size: 11px;
  will-change: opacity, transform;
}

/* Responsive: op smalle viewports geen sidebar in mockup, full width */
@media (max-width: 1024px) {
  .zoomshow__tickets-panel { left: 0; }
}

.ztp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-default);
}

.ztp-head-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.ztp-head-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.ztp-head-count {
  font-size: 10px;
  color: var(--text-tertiary);
}

.ztp-head-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ztp-filter, .ztp-search, .ztp-new {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 6px;
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  color: var(--text-secondary);
}

.ztp-new {
  background: var(--color-cta);
  color: white;
  border-color: var(--color-cta);
}

.ztp-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
}

.ztp-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-tertiary);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.ztp-tab em {
  font-style: normal;
  background: var(--bg-surface-subtle);
  color: var(--text-secondary);
  padding: 1px 5px;
  border-radius: 8px;
  font-size: 9px;
}

.ztp-tab--active {
  color: var(--color-accent-blue);
  border-bottom-color: var(--color-accent-blue);
}

.ztp-tab--active em {
  background: color-mix(in srgb, var(--color-accent-blue) 12%, transparent);
  color: var(--color-accent-blue);
}

.ztp-tab--outlook {
  margin-left: auto;
  color: #0078d4;
  position: relative;
}

.ztp-tab-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #16a34a;
  animation: fdai-pulse 1.8s ease-in-out infinite;
}

.ztp-table {
  flex: 1;
  overflow-y: auto;
  background: var(--bg-surface);
  margin: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-default);
}

.ztp-head-row,
.ztp-row {
  display: grid;
  grid-template-columns: 60px 1.6fr 1fr 100px 80px 110px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
}

.ztp-head-row {
  background: var(--bg-surface-subtle);
  border-bottom: 1px solid var(--border-default);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--text-tertiary);
  position: sticky;
  top: 0;
}

.ztp-row {
  border-bottom: 1px solid var(--border-subtle);
  font-size: 11px;
  color: var(--text-primary);
}

.ztp-row:last-child { border-bottom: none; }

.ztp-row:hover {
  background: var(--bg-surface-subtle);
}

.ztp-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  color: var(--color-accent-blue);
  font-weight: 600;
}

.ztp-subject {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ztp-source {
  flex-shrink: 0;
  opacity: 0.85;
}

.ztp-client {
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ztp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  border-radius: 9999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ztp-badge--open       { background: rgba(37, 99, 235, 0.12); color: #2563eb; }
.ztp-badge--inprogress { background: rgba(124, 58, 237, 0.12); color: #7c3aed; }
.ztp-badge--waiting    { background: rgba(245, 158, 11, 0.14); color: #b45309; }
.ztp-badge--resolved   { background: rgba(22, 163, 74, 0.12); color: #16a34a; }

.ztp-badge--urgent     { background: rgba(239, 68, 68, 0.14); color: #dc2626; }
.ztp-badge--high       { background: rgba(249, 115, 22, 0.14); color: #ea580c; }
.ztp-badge--normal     { background: rgba(148, 163, 184, 0.18); color: #64748b; }

.ztp-badge--sla-ok     { background: rgba(22, 163, 74, 0.10); color: #15803d; text-transform: none; letter-spacing: 0; font-weight: 600; }
.ztp-badge--sla-risk   { background: rgba(239, 68, 68, 0.10); color: #dc2626; text-transform: none; letter-spacing: 0; font-weight: 600; animation: fdai-pulse-blue 2s ease-in-out infinite; }

.ztp-assignee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ztp-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.ztp-avatar--blue   { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.ztp-avatar--orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.ztp-avatar--purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.ztp-avatar--teal   { background: linear-gradient(135deg, #0d9488, #14b8a6); }

/* Outlook info pill  bottom right floating badge */
.ztp-outlook-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-default);
  border-radius: 9999px;
  padding: 7px 14px 7px 12px;
  font-size: 10px;
  color: var(--text-secondary);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.ztp-outlook-pill strong {
  color: var(--text-primary);
  font-weight: 700;
}

.ztp-pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  animation: fdai-pulse 1.8s ease-in-out infinite;
}

/* ==========================================================================
   SIDEBAR ACTIVE-SWAP  Tickets-link wordt active tijdens stage 3
   ========================================================================== */
/* Sidebar blijft op "Tickets" staan zodra we daar zijn  ook tijdens de AI- en
   KB-stage. Voorkomt dat de sidebar zichtbaar terugspringt naar "Dashboard"
   vlak voordat de fullscreen chat eroverheen opent. */
.hero[data-focus="tickets"] .dash__sidebar-link--active,
.hero[data-focus="ai"] .dash__sidebar-link--active,
.hero[data-focus="kb"] .dash__sidebar-link--active {
  background-color: transparent;
  color: var(--text-secondary);
}
.hero[data-focus="tickets"] .dash__sidebar-link--active svg,
.hero[data-focus="ai"] .dash__sidebar-link--active svg,
.hero[data-focus="kb"] .dash__sidebar-link--active svg {
  color: var(--text-secondary);
}
.hero[data-focus="tickets"] .dash__sidebar-nav .dash__sidebar-link:nth-of-type(2),
.hero[data-focus="ai"] .dash__sidebar-nav .dash__sidebar-link:nth-of-type(2),
.hero[data-focus="kb"] .dash__sidebar-nav .dash__sidebar-link:nth-of-type(2) {
  background-color: var(--color-accent-blue);
  color: #ffffff;
}
.hero[data-focus="tickets"] .dash__sidebar-nav .dash__sidebar-link:nth-of-type(2) svg,
.hero[data-focus="ai"] .dash__sidebar-nav .dash__sidebar-link:nth-of-type(2) svg,
.hero[data-focus="kb"] .dash__sidebar-nav .dash__sidebar-link:nth-of-type(2) svg {
  color: #ffffff;
}
.hero[data-focus="tickets"] .dash__sidebar-badge,
.hero[data-focus="ai"] .dash__sidebar-badge,
.hero[data-focus="kb"] .dash__sidebar-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* AI panel  vult de hele mockup wanneer GSAP opacity 1 zet.
   Visibility wordt 100% door GSAP afgehandeld (geen CSS-class conflict). */
.zoomshow__ai-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    radial-gradient(900px 500px at 18% -10%, rgba(37, 99, 235, 0.14), transparent 60%),
    radial-gradient(800px 450px at 100% 110%, rgba(249, 115, 22, 0.08), transparent 60%),
    #ffffff;
  z-index: 50;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;
  will-change: opacity;
}

.zoomshow__ai-panel--active {
  pointer-events: auto;
}

/* Decoratieve floating bubbles  alleen zichtbaar als active */
.zoomshow__ai-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.zoomshow__ai-deco--1 {
  top: -3rem;
  left: -2rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.35), transparent 70%);
  animation: zoomshow-float-1 22s ease-in-out infinite;
}

.zoomshow__ai-deco--2 {
  bottom: -4rem;
  right: -3rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle at 60% 40%, rgba(124, 92, 255, 0.30), transparent 70%);
  animation: zoomshow-float-2 28s ease-in-out infinite;
}

.zoomshow__ai-panel--active .zoomshow__ai-deco {
  opacity: 1;
}

@keyframes zoomshow-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, 30px) scale(1.1); }
}

@keyframes zoomshow-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, -40px) scale(1.08); }
}

/* AI panel base font-size: matchet dashboard typografie zodat alle interne
   relatieve sizes (em, %) klein en proportioneel renderen */
.zoomshow__ai-panel { font-size: 12px; }

/* In de mockup: compactere fullscreen layout  header & footer met glas */
.zoomshow__ai-panel--active .fdai-head {
  padding: 10px 18px !important;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
}

.zoomshow__ai-panel--active .fdai-avatar {
  width: 26px !important;
  height: 26px !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #2563eb, #7c3aed) !important;
  color: white !important;
}

.zoomshow__ai-panel--active .fdai-avatar svg { width: 14px !important; height: 14px !important; }

.zoomshow__ai-panel--active .fdai-head-title  { font-size: 12px !important; }
.zoomshow__ai-panel--active .fdai-head-status { font-size: 10px !important; }
.zoomshow__ai-panel--active .fdai-dot         { width: 5px !important; height: 5px !important; }

.zoomshow__ai-panel--active .fdai-x {
  width: 22px !important;
  height: 22px !important;
  border-radius: 6px !important;
}
.zoomshow__ai-panel--active .fdai-x svg { width: 11px !important; height: 11px !important; }

.zoomshow__ai-panel--active .fdai-body {
  padding: 14px max(18px, calc((100% - 560px) / 2)) !important;
  gap: 8px !important;
  position: relative;
  z-index: 1;
}

.zoomshow__ai-panel--active .fdai-bubble {
  font-size: 11px !important;
  max-width: 68% !important;
  padding: 7px 11px !important;
  line-height: 1.55 !important;
  border-radius: 10px !important;
}

/* User bubble: hard rechts uitgelijnd met margin om duidelijke scheiding te tonen */
.zoomshow__ai-panel--active .fdai-row--user {
  justify-content: flex-end !important;
  padding-right: 0;
  margin-right: 0;
}

/* AI bubble: hard links uitgelijnd, mini-avatar er strak naast */
.zoomshow__ai-panel--active .fdai-row--ai {
  justify-content: flex-start !important;
  margin-right: auto;
}

/* AI bubble met tabel mag breder (tabel is altijd full width binnen bubble) */
.zoomshow__ai-panel--active .fdai-bubble--stream {
  max-width: 80% !important;
}

.zoomshow__ai-panel--active .fdai-mini {
  width: 20px !important;
  height: 20px !important;
  border-radius: 6px !important;
}

.zoomshow__ai-panel--active .fdai-mini svg { width: 11px !important; height: 11px !important; }

.zoomshow__ai-panel--active .fdai-footer {
  padding: 8px max(18px, calc((100% - 560px) / 2)) !important;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
}

.zoomshow__ai-panel--active .fdai-footer-input {
  padding: 6px 10px !important;
  font-size: 11px !important;
  border-radius: 8px !important;
}

.zoomshow__ai-panel--active .fdai-send {
  width: 26px !important;
  height: 26px !important;
  border-radius: 8px !important;
}

.zoomshow__ai-panel--active .fdai-send svg { width: 12px !important; height: 12px !important; }

.zoomshow__ai-panel--active .fdai-trace__title { font-size: 11px !important; }
.zoomshow__ai-panel--active .fdai-trace__step  { font-size: 10px !important; }

/* ----- FlexDash AI Empty State (logo + greeting + chips) ----- */
.fdai-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 16px 24px;
}

.fdai-empty__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(249, 115, 22, 0.08));
  margin-bottom: 4px;
  animation: fdai-logo-bob 4s ease-in-out infinite;
}

@keyframes fdai-logo-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.fdai-empty__title {
  font-size: 20px;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0;
}

.fdai-empty__sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 8px;
  max-width: 320px;
}

.fdai-empty__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.fdai-empty__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 9999px;
  color: var(--color-accent-blue);
  cursor: pointer;
  transition: all 0.2s ease;
  animation: fdai-chip-in 0.5s ease backwards;
}

.fdai-empty__chip:nth-child(1) { animation-delay: 0.1s; }
.fdai-empty__chip:nth-child(2) { animation-delay: 0.2s; }
.fdai-empty__chip:nth-child(3) { animation-delay: 0.3s; }

@keyframes fdai-chip-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fdai-empty__chip:hover {
  background: color-mix(in srgb, var(--color-accent-blue) 8%, transparent);
  border-color: var(--color-accent-blue);
}

.fdai-empty__chip svg { width: 11px; height: 11px; }

/* Fullscreen mockup: compactere empty state */
.zoomshow__ai-panel--active .fdai-empty__logo {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
}

.zoomshow__ai-panel--active .fdai-empty__logo svg {
  width: 32px !important;
  height: 32px !important;
}

.zoomshow__ai-panel--active .fdai-empty__title {
  font-size: 15px !important;
}

.zoomshow__ai-panel--active .fdai-empty__sub {
  font-size: 11px !important;
  max-width: 320px !important;
}

.zoomshow__ai-panel--active .fdai-empty__chip {
  font-size: 10px !important;
  padding: 5px 10px !important;
}

/* ----- Footer input typewriter state ----- */
.fdai-footer-input {
  position: relative;
  min-height: 20px;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

.fdai-footer-input--typing {
  color: #0f172a !important;
  font-weight: 500;
}

.fdai-footer-input--typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--color-accent-blue);
  vertical-align: middle;
  margin-left: 2px;
  animation: fdai-cursor-blink 0.8s ease-in-out infinite;
}

@keyframes fdai-cursor-blink {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Send button glows wanneer input gevuld is */
.fdai-footer-input--typing + .fdai-send {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-cta) 25%, transparent);
  animation: fdai-send-pulse 1.4s ease-in-out infinite;
}

@keyframes fdai-send-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

/* ----- AI bubble rich HTML (zoals echte FlexDash AI markdown render) ----- */
.fdai-bubble--ai p { margin: 0 0 8px; }
.fdai-bubble--ai p:last-child { margin: 0; }
.fdai-bubble--ai > *:first-child { margin-top: 0; }
.fdai-bubble--ai > *:last-child { margin-bottom: 0; }
.fdai-bubble--ai strong { font-weight: 700; color: var(--text-primary); }

.fdai-bubble--ai h3 {
  font-size: 1em;
  font-weight: 700;
  margin: 8px 0 6px;
  color: var(--text-primary);
}

.fdai-bubble--ai table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 10px 0;
  font-size: 0.92em;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.fdai-bubble--ai thead {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.02));
}

.fdai-bubble--ai th {
  text-align: left;
  font-weight: 600;
  color: var(--text-tertiary);
  font-size: 0.72em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
  white-space: nowrap;
}

.fdai-bubble--ai td {
  padding: 7px 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  color: var(--text-primary);
  vertical-align: middle;
  font-size: 11px;
}

/* SLA-kolom (3e cel): nooit wrappen */
.fdai-bubble--ai td:nth-child(3) {
  white-space: nowrap;
  text-align: left;
}

/* Active mode: tabel cellen nog compacter */
.zoomshow__ai-panel--active .fdai-bubble--ai td {
  font-size: 10px !important;
  padding: 6px 9px !important;
}

.zoomshow__ai-panel--active .fdai-bubble--ai th {
  font-size: 9px !important;
  padding: 6px 9px !important;
  letter-spacing: 0.04em !important;
}

.fdai-bubble--ai tbody tr {
  animation: fdai-row-enter 0.4s cubic-bezier(0.5, -0.05, 0.25, 1.2) backwards;
}

@keyframes fdai-row-enter {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.fdai-bubble--ai .ai-sla-urgent,
.fdai-bubble--ai .ai-sla-warn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-weight: 700;
  font-size: 10px;
  white-space: nowrap;
  line-height: 1;
}

.fdai-bubble--ai .ai-sla-urgent { color: #dc2626; }
.fdai-bubble--ai .ai-sla-warn   { color: #ea580c; }

/* Active mode: SLA chip nog wat kleiner zodat hij in 1 lijn past */
.zoomshow__ai-panel--active .ai-sla-urgent,
.zoomshow__ai-panel--active .ai-sla-warn {
  font-size: 10px !important;
  gap: 3px !important;
}

.fdai-bubble--ai .ai-client {
  font-weight: 600;
  color: var(--text-primary);
}

.fdai-bubble--ai .ai-ticket-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  color: var(--color-accent-blue);
}

.fdai-bubble--ai .ai-handler {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fdai-bubble--ai .ai-handler-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}

.fdai-bubble--ai .ai-handler-avatar--orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.fdai-bubble--ai .ai-handler-avatar--purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.fdai-bubble--ai .ai-handler-avatar--teal   { background: linear-gradient(135deg, #0d9488, #14b8a6); }

/* Streaming cursor aan einde van text die nog niet af is */
.fdai-bubble--stream .fdai-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: var(--color-accent-blue);
  vertical-align: middle;
  margin-left: 1px;
  animation: fdai-cursor-blink 0.8s ease-in-out infinite;
}

/* Bubble row entrance  fade + slide up bij eerste mount in body */
.fdai-row--enter {
  animation: fdai-row-in 0.45s cubic-bezier(0.5, -0.05, 0.25, 1.2) backwards;
}

.fdai-row--user.fdai-row--enter {
  animation-name: fdai-row-in-user;
}

@keyframes fdai-row-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fdai-row-in-user {
  from { opacity: 0; transform: translate(-30px, 14px) scale(0.96); }
  to   { opacity: 1; transform: translate(0, 0) scale(1); }
}

/* ----- Flying bubble: legacy, niet meer gebruikt ----- */
.fdai-bubble--flying {
  position: fixed;
  z-index: 100;
  background: color-mix(in srgb, var(--color-accent-blue) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-accent-blue) 20%, transparent);
  color: var(--text-primary);
  border-radius: 12px;
  border-bottom-right-radius: 4px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  pointer-events: none;
  transition: all 0.55s cubic-bezier(0.5, -0.05, 0.25, 1.4);
}

[data-theme="dark"] .zoomshow__ai-panel {
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--border-default);
}

.fdai-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-bottom: 1px solid var(--border-default);
  background: var(--bg-surface);
}

.fdai-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--color-accent-blue) 12%, transparent);
  color: var(--color-accent-blue);
  flex-shrink: 0;
}

.fdai-avatar svg {
  width: 20px;
  height: 20px;
}

.fdai-head-meta {
  flex: 1;
  min-width: 0;
}

.fdai-head-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.fdai-head-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-tertiary);
}

.fdai-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  animation: fdai-pulse 1.8s ease-in-out infinite;
}

@keyframes fdai-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
}

.fdai-x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.fdai-x:hover {
  background: var(--bg-surface-subtle);
  color: var(--text-primary);
}

.fdai-x svg {
  width: 16px;
  height: 16px;
}

.fdai-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.fdai-row {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

.fdai-row--user {
  justify-content: flex-end;
}

.fdai-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--color-accent-blue) 12%, transparent);
  color: var(--color-accent-blue);
  flex-shrink: 0;
}

.fdai-mini svg {
  width: 14px;
  height: 14px;
}

.fdai-bubble {
  padding: var(--space-3) var(--space-4);
  border-radius: 12px;
  font-size: var(--font-size-sm);
  line-height: 1.5;
  max-width: 78%;
  word-wrap: break-word;
}

.fdai-bubble--user {
  background: color-mix(in srgb, var(--color-accent-blue) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-accent-blue) 20%, transparent);
  color: var(--text-primary);
  border-bottom-right-radius: 4px;
}

.fdai-bubble--ai {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}

.fdai-trace {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.fdai-trace__head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}

.fdai-trace__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-blue);
  animation: fdai-pulse-blue 1.4s ease-in-out infinite;
}

@keyframes fdai-pulse-blue {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.5; }
}

.fdai-trace__steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: var(--space-3);
  border-left: 2px solid var(--bg-surface-muted);
}

.fdai-trace__step {
  font-size: 12px;
  color: var(--text-tertiary);
  padding: 2px 0;
  transition: color 0.2s ease;
}

.fdai-trace__step--active {
  color: var(--color-accent-blue);
  font-weight: var(--font-weight-semibold);
}

.fdai-trace__step--done {
  color: #16a34a;
  text-decoration: line-through;
  opacity: 0.7;
}

.fdai-footer {
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.fdai-footer-input {
  flex: 1;
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
}

.fdai-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-cta);
  color: white;
  border: none;
  cursor: pointer;
}

.fdai-send svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   KNOWLEDGE BASE MODAL
   ========================================================================== */

.zoomshow__kb-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 90%);
  max-height: 85vh;
  background: var(--bg-surface);
  border-radius: 14px;
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.3),
    0 0 0 1px var(--border-default);
  overflow: hidden;
  z-index: 6;
  opacity: 0;
  display: flex;
  flex-direction: column;
}

.kbm-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5);
  border-bottom: 1px solid var(--border-default);
}

.kbm-head-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--color-accent-blue) 12%, transparent);
  color: var(--color-accent-blue);
}

.kbm-head-icon svg {
  width: 22px;
  height: 22px;
}

.kbm-head-title {
  flex: 1;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.kbm-head-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
}

.kbm-search {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border-default);
}

.kbm-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-blue);
}

.kbm-search-icon svg {
  width: 18px;
  height: 18px;
}

.kbm-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: var(--font-size-base);
  color: var(--text-primary);
  font-family: inherit;
}

.kbm-search-hint {
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  padding: 3px 6px;
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-default);
  border-radius: 4px;
  color: var(--text-tertiary);
}

.kbm-results {
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 400px;
  overflow-y: auto;
  transition: opacity 0.3s ease;
}

.kbm-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.15s ease;
  cursor: pointer;
}

.kbm-result--in {
  opacity: 1;
  transform: translateY(0);
}

.kbm-result:hover {
  background: color-mix(in srgb, var(--color-accent-blue) 6%, var(--bg-surface));
}

.kbm-result-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  flex-shrink: 0;
}

.kbm-result-icon--blue   { background: color-mix(in srgb, #2563eb 12%, transparent); color: #2563eb; }
.kbm-result-icon--orange { background: color-mix(in srgb, #f97316 12%, transparent); color: #f97316; }
.kbm-result-icon--purple { background: color-mix(in srgb, #7c3aed 12%, transparent); color: #7c3aed; }
.kbm-result-icon--teal   { background: color-mix(in srgb, #0d9488 12%, transparent); color: #0d9488; }

.kbm-result-icon svg {
  width: 14px;
  height: 14px;
}

.kbm-result-text {
  flex: 1;
  min-width: 0;
}

.kbm-result-title {
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}

.kbm-result-meta {
  font-size: 10px;
  color: var(--text-tertiary);
}

.kbm-result-badge {
  font-size: 9px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.kbm-result-badge--orange { background: color-mix(in srgb, #f97316 14%, transparent); color: #f97316; }
.kbm-result-badge--purple { background: color-mix(in srgb, #7c3aed 14%, transparent); color: #7c3aed; }
.kbm-result-badge--blue   { background: color-mix(in srgb, #2563eb 14%, transparent); color: #2563eb; }
.kbm-result-badge--teal   { background: color-mix(in srgb, #0d9488 14%, transparent); color: #0d9488; }

/* ==========================================================================
   SCROLL HINT  animated indicator on hero
   ========================================================================== */

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: var(--font-weight-semibold);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  animation: scroll-hint-fade-in 1s ease 1.8s forwards;
}

@keyframes scroll-hint-fade-in {
  to { opacity: 1; }
}

.scroll-hint__mouse {
  width: 22px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.scroll-hint__mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  background: currentColor;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-hint-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50%      { transform: translate(-50%, 8px); opacity: 0.3; }
}

/* ==========================================================================
   RESPONSIVE  kleinere variant op mobile
   ========================================================================== */

@media (max-width: 900px) {
  .zoomshow__sidebar {
    top: auto;
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
    padding: var(--space-4);
    max-height: 50vh;
    overflow-y: auto;
  }

  .zoomshow__stories {
    min-height: 200px;
  }

  .zoomshow__story-title {
    font-size: 1.4rem;
  }

  .zoomshow__dash {
    width: 96vw;
    max-height: 50vh;
  }

  .zoomshow__ai-panel {
    top: 12vh;
    right: 50%;
    transform: translateX(50%);
    width: 92%;
    max-width: 360px;
    height: min(380px, 40vh);
  }

  .zoomshow__kb-modal {
    width: 94%;
    max-height: 50vh;
    top: 12vh;
    transform: translateX(-50%);
  }

  .scroll-hint { display: none; }
}

@media (max-width: 600px) {
  .zoomshow__progress-step {
    font-size: 10px;
  }

  .zoomshow__story-desc {
    font-size: var(--font-size-sm);
  }
}

/* ==========================================================================
   PORTAL FINALE  zoom-OUT dwars door een letter van FlexDash (Rockstar/GTA-stijl)
   Overlay BINNEN de gepinde hero-tour. De FlexDash-letters zijn knockout-'ramen'
   naar de dashboard-mockup erachter. GSAP zoomt uit van ín een letter naar het
   volledige lockup; in de laatste fase vullen de letters wit in en verschijnen de
   blokjes + slogan (alles in één SVG → niets verspringt). Logica: scroll-showcase.js.
   ========================================================================== */
.portal {
  position: absolute;
  inset: 0;
  z-index: 60;                 /* boven mockup (z1) en sidebar (z8) binnen de hero */
  pointer-events: none;
  overflow: hidden;
}

.portal__stage {
  position: absolute;
  inset: 0;
  isolation: isolate;
  overflow: hidden;
}

/* Knockout-cover (SVG)  navy vlak met FlexDash uitgesneden als venster. Het hele
   lockup (wordmark + blokjes + slogan) zit in de inner <g class="portal__zoom">, die
   GSAP in SVG-coördinaten schaalt (zie js). Het element zelf wordt NIET via CSS
   getransformeerd → geen reuze-rasterlaag, dus geen flikkering bij hoge zoom. */
.portal__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;                  /* standaard verborgen; GSAP onthult in de portal-stage */
  will-change: opacity;
}

/* Reduced-motion fallback  de portal is een tour-finale; sla 'm volledig over */
.scroll-showcase-reduced .portal { display: none; }

/* ==========================================================================
   DARK MODE  showcase-mockup overlays compatibel maken
   De dashboard-componenten (.dash__*) en de fdai-/ztp-basis gebruiken al CSS-
   variabelen en adapteren vanzelf. Hieronder krijgen de overlays met HARDE
   lichte kleuren (tickets-panel, AI-panel, AI-tabel, glas-header/footer) een
   passende donkere variant. Light mode blijft volledig ongewijzigd.
   ========================================================================== */

/* ----- Tickets-panel (verschijnt bij de 'Ticketing'-story) ----- */
[data-theme="dark"] .zoomshow__tickets-panel {
  background: #1c1c1c;                 /* matcht dash__main dark */
}
[data-theme="dark"] .ztp-head,
[data-theme="dark"] .ztp-tabs {
  background: var(--bg-surface);       /* #262626 in dark */
}
[data-theme="dark"] .ztp-outlook-pill {
  background: var(--bg-surface);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* ----- AI-panel (verschijnt bij de 'FlexDash AI'-story) ----- */
[data-theme="dark"] .zoomshow__ai-panel {
  background:
    radial-gradient(900px 500px at 18% -10%, rgba(37, 99, 235, 0.22), transparent 60%),
    radial-gradient(800px 450px at 100% 110%, rgba(249, 115, 22, 0.12), transparent 60%),
    #171717;
}
[data-theme="dark"] .zoomshow__ai-panel--active .fdai-head,
[data-theme="dark"] .zoomshow__ai-panel--active .fdai-footer {
  background: rgba(38, 38, 38, 0.7);   /* donker glas i.p.v. wit glas */
}
[data-theme="dark"] .fdai-footer-input--typing {
  color: var(--text-primary) !important;
}

/* AI-antwoord tabel (markdown render in de chat) */
[data-theme="dark"] .fdai-bubble--ai table {
  background: var(--bg-surface);
  border-color: var(--border-default);
}
[data-theme="dark"] .fdai-bubble--ai thead {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}
[data-theme="dark"] .fdai-bubble--ai th {
  border-bottom-color: var(--border-default);
}
[data-theme="dark"] .fdai-bubble--ai td {
  border-top-color: var(--border-subtle);
}

/* ==========================================================================
   TOUR BRIDGE  twee rustsecties tussen akte 1 (tickets) en akte 2 (AI).
   Normale, niet-gepinde secties zodat de bezoeker even kan doorademen en
   niet in één ultralange showcase vastzit. On-brand met .section-header.
   ========================================================================== */
.tour-bridge {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 12vh, 132px) 0;
  background: var(--bg-body);          /* beide secties dezelfde bg (light + dark) */
  overflow: hidden;                    /* zwevende bg-iconen netjes binnen de sectie */
}

/* Content boven de decoratieve achtergrond-iconen */
.tour-bridge > .container {
  position: relative;
  z-index: 1;
}

.tour-bridge__accent { color: var(--color-accent-blue); }

/* ----- Decoratieve, zachtjes zwevende module-iconen op de achtergrond ----- */
.tour-bridge__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.tour-bridge__icon {
  position: absolute;
  display: inline-flex;
  animation: bridgeFloat 9s ease-in-out infinite;
  will-change: transform;
}
.tour-bridge__icon svg {
  width: 100%;
  height: 100%;
  opacity: 0.13;                       /* duidelijk maar subtiel in light mode */
}
[data-theme="dark"] .tour-bridge__icon svg { opacity: 0.16; }

.tour-bridge__icon--blue   { color: var(--color-accent-blue); }
.tour-bridge__icon--orange { color: var(--color-cta); }
.tour-bridge__icon--teal   { color: #0d9488; }
.tour-bridge__icon--slate  { color: var(--text-tertiary); }

/* Verspreid rond de randen, weg van de tekst. Wisselende maten + timing. */
.tour-bridge__icon--1 { top: 12%;  left: 4%;   width: 54px; height: 54px; animation-duration: 8s;  animation-delay: -1s; }
.tour-bridge__icon--2 { top: 22%;  right: 6%;  width: 40px; height: 40px; animation-duration: 11s; animation-delay: -3s; }
.tour-bridge__icon--3 { bottom: 16%; left: 9%;  width: 36px; height: 36px; animation-duration: 10s; animation-delay: -5s; }
.tour-bridge__icon--4 { bottom: 12%; right: 10%; width: 48px; height: 48px; animation-duration: 9s;  animation-delay: -2s; }
.tour-bridge__icon--5 { top: 46%;  left: 2%;   width: 30px; height: 30px; animation-duration: 12s; animation-delay: -6s; }
.tour-bridge__icon--6 { top: 52%;  right: 3%;  width: 34px; height: 34px; animation-duration: 8.5s; animation-delay: -4s; }

@keyframes bridgeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .tour-bridge__icon { animation: none; }
}

/* ----- Bridge 1: kaarten-grid ----- */
.tour-bridge__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(40px, 5vw, 64px);
}
.tour-bridge__card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: clamp(24px, 2.4vw, 34px);
  text-align: left;
  transition: transform var(--transition-base, 0.25s) ease,
              box-shadow var(--transition-base, 0.25s) ease,
              border-color var(--transition-base, 0.25s) ease;
}
.tour-bridge__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: color-mix(in srgb, var(--color-accent-blue) 35%, var(--border-default));
}
.tour-bridge__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 18px;
}
.tour-bridge__card-icon--blue   { color: var(--color-accent-blue); background: color-mix(in srgb, var(--color-accent-blue) 12%, transparent); }
.tour-bridge__card-icon--orange { color: var(--color-cta);         background: color-mix(in srgb, var(--color-cta) 13%, transparent); }
.tour-bridge__card-icon--teal   { color: #0d9488;                  background: color-mix(in srgb, #0d9488 13%, transparent); }
.tour-bridge__card-title {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.tour-bridge__card-desc {
  font-size: clamp(14px, 1.2vw, 15.5px);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ----- Bridge 2: cijferband ----- */
.tour-bridge__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(40px, 5vw, 64px);
}
.tour-bridge__stat {
  text-align: center;
  padding: 0 6px;
}
.tour-bridge__stat-value {
  display: block;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-accent-blue);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.tour-bridge__stat:nth-child(2) .tour-bridge__stat-value,
.tour-bridge__stat:nth-child(3) .tour-bridge__stat-value { color: var(--color-cta); }
.tour-bridge__stat-label {
  display: block;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 220px;
  margin-inline: auto;
}

/* ----- Handoff naar akte 2 ----- */
.tour-bridge__handoff {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: clamp(48px, 6vw, 76px);
}
.tour-bridge__handoff-text {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  max-width: 560px;
  margin: 0;
}
.tour-bridge__handoff-text strong { color: var(--color-accent-blue); }
.tour-bridge__cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--color-accent-blue);
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  animation: tourBridgeBob 2s ease-in-out infinite;
}
@keyframes tourBridgeBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ----- Responsive ----- */
@media (max-width: 860px) {
  .tour-bridge__grid  { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .tour-bridge__stats { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
}
@media (max-width: 460px) {
  .tour-bridge__stats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .tour-bridge__cue { animation: none; }
  .tour-bridge__card { transition: none; }
}

/* ==========================================================================
   AKTE 2  gekloonde hero zonder headline-copy. De dashboard-mockup blijft
   exact zoals akte 1 (de verborgen .hero__content reserveert dezelfde ruimte,
   zodat de zoom-framing identiek is).
   ========================================================================== */
.hero--act2 .hero__content {
  visibility: hidden;
  pointer-events: none;
}

/* Full-bleed: geen zwevende, afgeronde card zoals de hero-intro. Vierkante
   hoeken en geen marges vanaf het begin (akte 2 begint al "ingezoomd"). */
.hero--act2 {
  padding-top: 72px;            /* ruimte voor de fixed header */
}
.hero--act2 .hero__card {
  margin: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}
.hero--act2::after { display: none; }   /* onderglow van de zwevende card weg */

/* Spiegel-layout: de uitleg-card (sidebar) staat RECHTS i.p.v. links,
   zodat de mockup links komt te staan. */
.hero--act2.hero--tour-enabled > .zoomshow__sidebar,
.hero--act2 > .zoomshow__sidebar {
  left: auto;
  right: max(2vw, 24px);
}

/* "Blijf scrollen"-hint mee naar rechts (onder de uitleg-card) */
.hero--act2 .zoomshow__keep-scrolling {
  left: auto;
  right: max(2vw, 24px);
}

/* Glow onder de hero (de zachte gloed boven de rustsectie "Even overzicht")
   weghalen  in dark mode las die als een lichte smudge. */
.hero::after { display: none; }

/* ==========================================================================
   NIEUWE CONTENT-SECTIES (na akte 2): Modules · Hoe het werkt · Waarom
   Responsief, geen scroll-animaties  sterke copy en argumenten.
   ========================================================================== */

/* ----- MODULES ----- */
.modules { padding: clamp(64px, 9vw, 112px) 0; background: var(--bg-body); }
.modules__accent { color: var(--color-accent-blue); }
.modules__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: clamp(36px, 4vw, 56px);
}
.module-card {
  display: flex;
  flex-direction: column;          /* icoon bovenaan, tekst op volle breedte → strakker + responsiver */
  gap: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: clamp(20px, 2vw, 26px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .08);
  border-color: color-mix(in srgb, var(--color-accent-blue) 30%, var(--border-default));
}
.module-card--featured {
  border-color: color-mix(in srgb, var(--color-accent-blue) 35%, var(--border-default));
  background: color-mix(in srgb, var(--color-accent-blue) 4%, var(--bg-surface));
}
.module-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
}
.module-card__icon--blue   { color: var(--color-accent-blue); background: color-mix(in srgb, var(--color-accent-blue) 12%, transparent); }
.module-card__icon--orange { color: var(--color-cta);         background: color-mix(in srgb, var(--color-cta) 13%, transparent); }
.module-card__icon--teal   { color: #0d9488;                  background: color-mix(in srgb, #0d9488 13%, transparent); }
.module-card__icon--purple { color: #7c3aed;                  background: color-mix(in srgb, #7c3aed 13%, transparent); }
.module-card__icon--green  { color: #16a34a;                  background: color-mix(in srgb, #16a34a 13%, transparent); }
.module-card__name {
  font-size: 15px; font-weight: 700; color: var(--text-primary);
  margin: 0 0 5px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.module-card__tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--color-accent-blue);
  background: color-mix(in srgb, var(--color-accent-blue) 12%, transparent);
  padding: 2px 7px; border-radius: 999px;
}
.module-card__desc { font-size: 13.5px; line-height: 1.55; color: var(--text-secondary); margin: 0; }

/* ----- HOE HET WERKT ----- */
.flow { padding: clamp(64px, 9vw, 112px) 0; background: var(--bg-surface-subtle); }
.flow__accent { color: var(--color-accent-blue); }
.flow__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px); margin-top: clamp(36px, 4vw, 56px);
}
.flow__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 18px; font-weight: 800; color: #fff;
  background: var(--color-accent-blue); margin-bottom: 18px;
}
.flow__step:nth-child(2) .flow__num { background: var(--color-cta); }
.flow__step:nth-child(3) .flow__num { background: #0d9488; }
.flow__title { font-size: clamp(17px, 1.8vw, 21px); font-weight: 700; color: var(--text-primary); margin: 0 0 8px; }
.flow__desc  { font-size: clamp(14px, 1.2vw, 15.5px); line-height: 1.6; color: var(--text-secondary); margin: 0; }

/* ----- WAAROM / ARGUMENTEN ----- */
.args { padding: clamp(72px, 10vw, 124px) 0; background: var(--bg-body); }
.args__accent { color: var(--color-accent-blue); }
.args__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 34px); margin-top: clamp(40px, 4.5vw, 60px);
}
.arg {
  display: flex; flex-direction: column; gap: 16px;   /* icoon bovenaan → uitnodigender + consistent met de tegels */
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.arg:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, .10);
  border-color: color-mix(in srgb, var(--color-accent-blue) 32%, var(--border-default));
}
.arg__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  color: var(--color-accent-blue);
  background: color-mix(in srgb, var(--color-accent-blue) 13%, transparent);
}
.arg__icon svg { width: 26px; height: 26px; }
/* Per kaart een eigen accentkleur → speelser en levendiger */
.arg:nth-child(2) .arg__icon { color: var(--color-cta); background: color-mix(in srgb, var(--color-cta) 14%, transparent); }
.arg:nth-child(3) .arg__icon { color: #0d9488; background: color-mix(in srgb, #0d9488 14%, transparent); }
.arg:nth-child(4) .arg__icon { color: #7c3aed; background: color-mix(in srgb, #7c3aed 14%, transparent); }
.arg__title { font-size: clamp(18px, 1.8vw, 22px); font-weight: 700; letter-spacing: -0.01em; color: var(--text-primary); margin: 0; }
.arg__desc  { font-size: clamp(14.5px, 1.2vw, 16px); line-height: 1.65; color: var(--text-secondary); margin: 0; }

@media (max-width: 1000px) { .modules__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
  .modules__grid { grid-template-columns: 1fr; }
  .flow__grid    { grid-template-columns: 1fr; }
  .args__grid    { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FINALE  eenvoudige afsluitende merk-sectie (witte FlexDash + slogan)
   ========================================================================== */
.finale {
  position: relative;
  overflow: hidden;
  background: #0b1320;                 /* navy merk-achtergrond */
  padding: clamp(96px, 17vh, 190px) 0;
  text-align: center;
}
.finale__scene { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.finale__glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.finale__glow--blue   { width: 56vw; height: 56vw; left: -14vw; top: -18vw;    background: radial-gradient(circle, rgba(37, 99, 235, 0.45), transparent 70%); }
.finale__glow--orange { width: 50vw; height: 50vw; right: -14vw; bottom: -20vw; background: radial-gradient(circle, rgba(249, 115, 22, 0.38), transparent 70%); }

.finale__inner { position: relative; z-index: 1; }
.finale__word {
  display: block;
  font-size: clamp(56px, 14vw, 180px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.finale__slogan {
  margin: clamp(16px, 2vw, 26px) auto 0;
  max-width: 620px;
  font-size: clamp(16px, 2.2vw, 26px);
  font-weight: 500;
  color: #94a3b8;
}
.finale__outro {
  margin-top: clamp(34px, 4.5vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.finale__note { font-size: 14px; color: #94a3b8; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .module-card,
  .arg { transition: none; }
}

/* ==========================================================================
   GEEN HORIZONTALE SCROLL  de verschoven mockup + insluivende sidebar tijdens
   de tour mogen geen horizontale scrollbalk veroorzaken. `clip` (niet `hidden`)
   maakt GEEN scroll-container aan en laat overflow-y: visible intact, dus de
   GSAP-pins blijven gewoon werken.
   ========================================================================== */
main { overflow-x: clip; }
.hero.hero--tour-enabled,
.hero--act2 { overflow-x: clip; }

/* ==========================================================================
   MOBIEL + TABLET (≤1024px): GEEN scroll-tour  schone, statische hero.
   De gepinde experience wordt in JS niet gebouwd; hier verbergen we alle
   tour-overlays en de (verborgen) akte-2 kloon zodat alleen de gewone hero
   (titel + CTA's + dashboard-preview) overblijft.
   ========================================================================== */
@media (max-width: 1024px) {
  .hero--act2 { display: none !important; }
  .hero .zoomshow__sidebar,
  .hero .zoomshow__keep-scrolling,
  .hero .zoomshow__ai-panel,
  .hero .zoomshow__kb-modal,
  .hero .zoomshow__tickets-panel,
  .hero .portal { display: none !important; }
}

/* ==========================================================================
   GROTE SCHERMEN / VER UITGEZOOMD (≥1025px): houd de tour-"stage" gecentreerd
   in een band van ~1440px, zodat de mockup en de uitleg-card SAMENBLIJVEN i.p.v.
   naar de randen te drijven (en de mockup niet wegschiet). De hero vult altijd
   de viewport. De verticale verschuivingen worden in JS in px gecapt.
   ========================================================================== */
.hero.hero--tour-enabled { min-height: 100vh; }

.hero.hero--tour-enabled > .zoomshow__sidebar {
  left: max(2vw, calc(50% - 720px));
  top: min(calc(40vh + 36px), 460px);
}
.hero--act2.hero--tour-enabled > .zoomshow__sidebar {
  left: auto;
  right: max(2vw, calc(50% - 720px));
}
.hero--act2 .zoomshow__keep-scrolling {
  left: auto;
  right: max(2vw, calc(50% - 720px));
}

/* ==========================================================================
   TOUR-MOCKUP smaller dan de los-staande hero-mockup, zodat hij tijdens de
   tour NAAST de uitleg-card past (geen overlap). Buiten de tour (mobiel/tablet
   statisch) blijft de normale 1100px-breedte gelden.
   ========================================================================== */
.hero--tour-enabled .hero__dashboard-wrap { max-width: min(1040px, 52vw); }

/* ==========================================================================
   ANTI-FLASH (FOUC): de tour-overlays starten onzichtbaar. De defer-geladen
   GSAP zet ze pas later op opacity:0 → zonder dit flitste o.a. de uitleg-card
   héél even links bij (re)load. JS toont ze tijdens de tour weer.
   ========================================================================== */
.zoomshow__sidebar,
.zoomshow__ai-panel,
.zoomshow__kb-modal,
.zoomshow__tickets-panel { opacity: 0; }

/* ==========================================================================
   "BLIJF SCROLLEN"-hint exact ONDER de uitleg-card uitlijnen: zelfde
   gecentreerde band + zelfde breedte als de sidebar (akte 1 links, akte 2
   rechts). JS zet alleen de verticale 'top' (onder de card).
   ========================================================================== */
.hero.hero--tour-enabled .zoomshow__keep-scrolling {
  left: max(2vw, calc(50% - 720px));
  right: auto;
  width: min(360px, 30vw);
}
.hero--act2.hero--tour-enabled .zoomshow__keep-scrolling {
  left: auto;
  right: max(2vw, calc(50% - 720px));
  width: min(360px, 30vw);
}

/* ==========================================================================
   DECO-ICONEN ook in de content-secties (Modules / Hoe het werkt / Waarom).
   Sectie krijgt een stacking context + clipt de zwevende iconen; de content
   (.container) staat erboven. De .tour-bridge__bg-laag wordt door JS ingespoten.
   ========================================================================== */
.modules, .flow, .args, .pricing, .cta { position: relative; overflow: hidden; }
.modules > .container,
.flow > .container,
.args > .container,
.pricing > .container,
.cta > .container { position: relative; z-index: 1; }

/* ==========================================================================
   MOBIEL: hero-mockup een stuk kleiner + alle deco-iconen kleiner.
   `zoom` verkleint óók de layout-ruimte (geen lege gaten zoals bij scale).
   ========================================================================== */
@media (max-width: 768px) {
  .hero__dashboard-wrap { zoom: 0.78; }
  .tour-bridge__icon--1 { width: 34px; height: 34px; }
  .tour-bridge__icon--2 { width: 26px; height: 26px; }
  .tour-bridge__icon--3 { width: 24px; height: 24px; }
  .tour-bridge__icon--4 { width: 30px; height: 30px; }
  .tour-bridge__icon--5 { width: 20px; height: 20px; }
  .tour-bridge__icon--6 { width: 22px; height: 22px; }
}
@media (max-width: 480px) {
  .hero__dashboard-wrap { zoom: 0.66; }
  .tour-bridge__icon { zoom: 0.85; }
}

/* Hero-deco-blokjes kleiner op mobiel (zoom = los van GSAP-parallax-transform). */
@media (max-width: 768px) {
  .hero__bg-widget { zoom: 0.6; }
}
@media (max-width: 480px) {
  .hero__bg-widget { zoom: 0.5; }
}


/* ==========================================================================
   FAQ  toegankelijke accordion (native details/summary), SEO-vriendelijk
   ========================================================================== */
.faq { padding: clamp(64px, 9vw, 112px) 0; background: var(--bg-body); }
.faq__accent { color: var(--color-accent-blue); }
.faq__list { max-width: 760px; margin: clamp(36px, 4vw, 52px) auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 4px clamp(18px, 2vw, 24px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item[open] { border-color: color-mix(in srgb, var(--color-accent-blue) 32%, var(--border-default)); box-shadow: 0 10px 28px rgba(15,23,42,.06); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0;
  font-size: clamp(15px, 1.4vw, 17px); font-weight: 600; color: var(--text-primary);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex-shrink: 0;
  width: 11px; height: 11px;
  border-right: 2px solid var(--text-tertiary); border-bottom: 2px solid var(--text-tertiary);
  transform: rotate(45deg); transition: transform .25s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__answer { padding: 0 0 18px; }
.faq__answer p { margin: 0; font-size: clamp(14px, 1.2vw, 15.5px); line-height: 1.65; color: var(--text-secondary); }
@media (prefers-reduced-motion: reduce) { .faq__item summary::after { transition: none; } }

/* ==========================================================================
   WAT IS FLEXDASH  uitleg/SEO-sectie: premium panel met blokjeslogo + gloed
   ========================================================================== */
.explainer { padding: clamp(64px, 9vw, 116px) 0; background: var(--bg-body); }
.explainer__panel {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  overflow: hidden;
  padding: clamp(40px, 6vw, 84px) clamp(24px, 5vw, 72px);
  border-radius: 28px;
  background:
    radial-gradient(130% 130% at 50% -25%, color-mix(in srgb, var(--color-accent-blue) 10%, transparent), transparent 58%),
    var(--bg-surface);
  border: 1px solid var(--border-default);
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.08);
}
.explainer__glow {
  position: absolute; right: -12%; bottom: -28%;
  width: 50%; height: 70%; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-cta) 22%, transparent), transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.explainer__panel > * { position: relative; z-index: 1; }
.explainer__logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 62px; height: 62px; border-radius: 18px; margin-bottom: 22px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--color-accent-blue) 18%, transparent);
}
.explainer__accent { color: var(--color-accent-blue); }
.explainer__lead {
  margin: clamp(18px, 2vw, 26px) auto 0;
  max-width: 660px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-primary);
}
.explainer__sub {
  margin: 16px auto 0;
  max-width: 640px;
  font-size: clamp(14.5px, 1.3vw, 16px);
  line-height: 1.7;
  color: var(--text-secondary);
}
.explainer__points {
  list-style: none; margin: clamp(26px, 3vw, 36px) 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.explainer__points li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px;
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-default);
  border-radius: 999px;
}
.explainer__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  color: #fff; background: var(--color-accent-blue);
}
