/* ══════════════════════════════════════════════════════════
   Pagebase landing page — light, luxe minimalist
   All styles scoped under .lp to avoid conflicts.
   ══════════════════════════════════════════════════════════ */

.lp,
.lp * {
  box-sizing: border-box;
}

.lp {
  --lp-bg:        #ffffff;
  --lp-bg-soft:   #fafafb;
  --lp-bg-tint:   #faf8f5;
  --lp-text:      #0b1120;
  --lp-text-2:    #475569;
  --lp-text-3:    #94a3b8;
  --lp-border:    #e9ecf1;
  --lp-border-2:  #d8dde6;
  --lp-primary:   #4f46e5;
  --lp-primary-d: #4338ca;
  --lp-accent:    #f59e0b;
  --lp-radius:    14px;
  --lp-radius-sm: 8px;
  --lp-radius-lg: 24px;
  --lp-shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .06);
  --lp-shadow:    0 4px 6px -2px rgba(15, 23, 42, .04), 0 12px 28px -6px rgba(15, 23, 42, .12);
  --lp-shadow-lg: 0 24px 64px -16px rgba(15, 23, 42, .18), 0 8px 24px -4px rgba(15, 23, 42, .08);

  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.lp a { color: inherit; text-decoration: none; }
.lp h1, .lp h2, .lp h3, .lp h4 { margin: 0; font-weight: 600; letter-spacing: -0.01em; }
.lp ul, .lp ol { list-style: none; padding: 0; }

.lp em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

/* Iconify icons render as inline SVG once @iconify/iconify processes them.
   Pre-size to prevent layout shift during the initial render. */
.lp .iconify {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

/* ── Floating background shapes ───────────────────────── */
.lp-bg-shapes {
  /* Alleen in de hero-zone — full-page zwevende blobs zijn ruis op
     content-secties; en één kleurfamilie (indigo) i.p.v. drie. */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(100vh, 960px);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.lp-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: lp-drift 18s ease-in-out infinite;
}
.lp-shape-1 {
  width: 480px;
  height: 480px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, #e0e7ff 0%, transparent 70%);
}
.lp-shape-2 {
  width: 380px;
  height: 380px;
  top: 30%;
  right: -100px;
  background: radial-gradient(circle, #c7d2fe 0%, transparent 70%);
  animation-delay: -6s;
}
.lp-shape-3 {
  width: 420px;
  height: 420px;
  bottom: -80px;
  left: 30%;
  background: radial-gradient(circle, #ddd6fe 0%, transparent 70%);
  animation-delay: -12s;
}
@keyframes lp-drift {
  0%, 100%   { transform: translate(0, 0) scale(1); }
  33%        { transform: translate(40px, -30px) scale(1.05); }
  66%        { transform: translate(-30px, 40px) scale(0.95); }
}

/* ── Dev banner — shown above nav while registration is closed. ─── */
.lp-dev-banner {
  background: linear-gradient(90deg, #0f1320, #1e1b4b 60%, #312e81);
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: -0.005em;
}
.lp-dev-banner .iconify {
  font-size: 15px;
  color: var(--lp-accent);
}
.lp-dev-banner strong { color: #fff; font-weight: 600; }
@media (max-width: 480px) {
  .lp-dev-banner { font-size: 12px; padding: 8px 12px; gap: 8px; }
}

/* ── Nav ──────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .3s, box-shadow .3s, padding .3s, border-color .3s;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
}
.lp-nav.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: rgba(15, 23, 42, .06);
  box-shadow: 0 1px 24px -8px rgba(15, 23, 42, .12);
}
/* Banner-variant overrides — must come after `.lp-nav.is-scrolled` so the
   `padding: 0` wins when both classes are present (otherwise the scrolled
   state adds 10px above the banner). */
.lp-nav--with-banner,
.lp-nav--with-banner.is-scrolled { padding: 0; }
.lp-nav--with-banner .lp-nav-inner { padding-top: 14px; padding-bottom: 14px; }
.lp-nav--with-banner.is-scrolled .lp-nav-inner { padding-top: 10px; padding-bottom: 10px; }
.lp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
/* ── Logo (wordmark) ──────────────────────────────────
   Pure-typography wordmark in Bricolage Grotesque — distinctive
   letterforms (especially the double-storey `g` and humanist `a`)
   give it a luxe, deliberate feel without needing a separate icon. */
.lp-logo {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.045em;
  color: var(--lp-text);
  font-feature-settings: "ss01", "ss02";
  font-optical-sizing: auto;
  z-index: 102;
  transition: opacity .2s;
  line-height: 1;
}
.lp-logo:hover { opacity: 0.7; }
.lp-logo-text { display: inline-block; }
/* The trailing dot is the brand signature — sits below baseline, picks up
   the indigo accent so it reads as deliberate rather than punctuation. */
.lp-logo-dot {
  color: var(--lp-primary);
  display: inline-block;
  margin-left: -0.04em;
}
/* Hide the legacy CSS-drawn mark; the new logo is wordmark-only.
   (Kept selector around so old templates that still render it
   simply collapse — the markup will be removed shortly.) */
.lp-logo-mark { display: none; }
/* Menu wrapper takes the remaining horizontal space and splits it: links
   sit on the left next to the logo, the right-cluster (locale + actions)
   floats to the far right. */
.lp-nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 36px;
  gap: 24px;
}
.lp-nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.lp-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.lp-nav-divider {
  width: 1px;
  height: 18px;
  background: var(--lp-border);
  display: inline-block;
}
.lp-nav-links a {
  color: var(--lp-text-2);
  position: relative;
  padding: 6px 2px;
  transition: color .2s;
}
.lp-nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--lp-text);
  border-radius: 2px;
  transition: left .25s cubic-bezier(.16, 1, .3, 1), right .25s cubic-bezier(.16, 1, .3, 1);
}
.lp-nav-links a:hover { color: var(--lp-text); }
.lp-nav-links a:hover::after { left: 0; right: 0; }
.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text-2);
  transition: color .2s;
}
.lp-link:hover { color: var(--lp-text); }

/* Locale switcher — compact dropdown showing the current language code,
   expanding to a panel listing all four with full names. */
.lp-locale {
  position: relative;
}
.lp-locale[open] { z-index: 50; }
.lp-locale-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--lp-text-2);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .2s, color .2s;
}
.lp-locale-trigger::-webkit-details-marker { display: none; }
.lp-locale-trigger:hover {
  background: var(--lp-bg-soft);
  color: var(--lp-text);
}
.lp-locale[open] .lp-locale-trigger {
  background: var(--lp-bg-soft);
  color: var(--lp-text);
}
.lp-locale-trigger > .iconify { font-size: 15px; }
.lp-locale-code { line-height: 1; }
.lp-locale-chevron {
  transition: transform .2s;
}
.lp-locale[open] .lp-locale-chevron { transform: rotate(180deg); }

.lp-locale-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  box-shadow: 0 18px 40px -14px rgba(15, 23, 42, .18), 0 4px 12px -2px rgba(15, 23, 42, .06);
  display: flex;
  flex-direction: column;
  gap: 1px;
  /* Slight enter animation. */
  animation: lp-locale-fade .18s cubic-bezier(.16, 1, .3, 1);
  transform-origin: top right;
}
@keyframes lp-locale-fade {
  from { opacity: 0; transform: translateY(-4px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lp-locale-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--lp-text-2);
  font-weight: 500;
  transition: background .12s, color .12s;
}
.lp-locale-item:hover {
  background: var(--lp-bg-soft);
  color: var(--lp-text);
}
.lp-locale-item.is-active {
  background: rgba(79, 70, 229, .08);
  color: var(--lp-primary);
  font-weight: 600;
}
.lp-locale-item-code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lp-text-3);
  background: var(--lp-bg-soft);
  padding: 3px 7px;
  border-radius: 6px;
  flex-shrink: 0;
  min-width: 32px;
  text-align: center;
}
.lp-locale-item.is-active .lp-locale-item-code {
  background: rgba(79, 70, 229, .12);
  color: var(--lp-primary);
}
.lp-locale-item-name { flex: 1; }
.lp-locale-item-check {
  font-size: 14px;
  color: var(--lp-primary);
  flex-shrink: 0;
}

/* Hamburger toggle (hidden on desktop, shown ≤768px) */
.lp-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-border);
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  z-index: 102;
  border-radius: 10px;
  color: var(--lp-text);
  transition: background .2s, border-color .2s, transform .15s;
  position: relative;
}
.lp-nav-toggle:hover {
  background: #fff;
  border-color: var(--lp-border-2);
}
.lp-nav-toggle:active { transform: scale(0.96); }
.lp-nav-toggle .iconify {
  position: absolute;
  width: 22px;
  height: 22px;
  font-size: 22px;
  transition: opacity .2s, transform .25s;
}
.lp-nav-toggle .lp-nav-toggle-open  { opacity: 1; transform: rotate(0); }
.lp-nav-toggle .lp-nav-toggle-close { opacity: 0; transform: rotate(-90deg); }
.lp-nav-toggle.is-open .lp-nav-toggle-open  { opacity: 0; transform: rotate(90deg); }
.lp-nav-toggle.is-open .lp-nav-toggle-close { opacity: 1; transform: rotate(0); }

/* ── Mobile nav (≤768px) ─────────────────────────────── */
@media (max-width: 768px) {
  .lp-nav-inner { gap: 12px; padding: 0 18px; }
  .lp-nav-toggle { display: inline-flex; }
  .lp-nav-menu { margin-left: 0; }
  .lp-nav-right {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin-left: 0;
  }
  .lp-nav-divider { display: none; }

  /* Mobile dropdown — slides down from under the nav bar and expands to
     the natural height of its content (no scroll). */
  .lp-nav-menu {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    margin-top: 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 18px 18px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    box-shadow: 0 18px 40px -14px rgba(15, 23, 42, .18), 0 4px 12px -2px rgba(15, 23, 42, .06);
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    opacity: 0;
    visibility: hidden;
    transition: transform .25s cubic-bezier(.16, 1, .3, 1), opacity .2s, visibility 0s linear .25s;
  }
  .lp-nav-menu.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    transition: transform .25s cubic-bezier(.16, 1, .3, 1), opacity .2s, visibility 0s linear 0s;
  }

  .lp-nav-links {
    flex-direction: column;
    gap: 2px;
    width: 100%;
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--lp-border);
    font-size: 15px;
  }
  .lp-nav-links a {
    padding: 10px 10px;
    border-radius: 8px;
    transition: background .15s, color .15s;
  }
  .lp-nav-links a:hover { background: var(--lp-bg-soft); color: var(--lp-text); }
  .lp-nav-links a::after { display: none; }
  .lp-nav-links a.is-active {
    color: var(--lp-text);
    font-weight: 600;
    background: var(--lp-bg-soft);
  }
  .lp-nav-links a.is-active::after { display: none; }

  .lp-nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }
  .lp-nav-actions .lp-link {
    padding: 10px 14px;
    text-align: center;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    font-size: 14px;
  }
  .lp-nav-actions .lp-btn {
    padding: 12px 18px;
    font-size: 14px;
    width: 100%;
  }

  /* In the mobile drawer the locale dropdown opens inline (panel below
     trigger, not floating) so it doesn't escape the drawer bounds. */
  .lp-locale {
    width: 100%;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--lp-border);
  }
  .lp-locale-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
  }
  .lp-locale-menu {
    position: static;
    margin-top: 6px;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 4px 0;
    animation: none;
  }
}

/* ── Buttons ──────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .2s, box-shadow .25s, background .25s, color .15s, border-color .15s;
  white-space: nowrap;
}
.lp-btn-primary {
  background: var(--lp-text);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .18);
  position: relative;
  overflow: hidden;
}
/* Defensive: zorg dat tekst en alle children wit blijven, zelfs als globale
   .btn rules of <a> color-inherit anders zouden zeggen. */
.lp-btn-primary,
.lp-btn-primary:link,
.lp-btn-primary:visited,
.lp-btn-primary:hover,
.lp-btn-primary > * {
  color: #ffffff;
}
.lp-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 140px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .18), transparent 70%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.lp-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .28);
}
.lp-btn-primary:hover::before { opacity: 1; }
/* Tekst van het label moet boven het ::before glow-overlay zitten zodat
   het hover-effect 'm niet kan verbergen. */
.lp-btn-primary > * { position: relative; z-index: 1; }
.lp-btn-ghost {
  background: transparent;
  color: var(--lp-text);
  border-color: var(--lp-border-2);
}
.lp-btn-ghost:hover {
  background: var(--lp-bg-soft);
  border-color: var(--lp-text);
}
.lp-btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 12px;
}
.lp-btn-block { width: 100%; }

/* ── Container ────────────────────────────────────────── */
.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.lp-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .lp-container { padding: 0 20px; }
  .lp-section   { padding: 64px 0; }
}

/* ── Section heads ────────────────────────────────────── */
.lp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.lp-section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lp-primary);
  margin-bottom: 16px;
}
.lp-section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--lp-text);
}
.lp-section-lead {
  font-size: 18px;
  color: var(--lp-text-2);
  line-height: 1.6;
}

/* ── Hero ─────────────────────────────────────────────── */
.lp-hero {
  padding: 160px 0 100px;
  position: relative;
  z-index: 1;
}
.lp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp-hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(90deg, #f3f4ff, #fff8ec);
  border: 1px solid var(--lp-border);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-text-2);
  margin-bottom: 24px;
}
.lp-hero-title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 650;
  margin-bottom: 24px;
}
.lp-hero-italic {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--lp-primary), #ec4899 60%, var(--lp-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 4px;
}
.lp-hero-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--lp-text-2);
  max-width: 520px;
  margin-bottom: 36px;
}
.lp-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.lp-hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--lp-text-3);
}

/* Hero visual — browser mockup */
.lp-hero-visual {
  position: relative;
  perspective: 1500px;
  transition: transform .4s ease-out;
}
.lp-mockup {
  background: #fff;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-lg);
  border: 1px solid var(--lp-border);
  overflow: hidden;
  transform: rotate(-1.4deg);
  transition: transform .5s ease-out;
}
.lp-hero-visual:hover .lp-mockup {
  transform: rotate(0) scale(1.02);
}
.lp-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--lp-bg-soft);
  border-bottom: 1px solid var(--lp-border);
}
.lp-mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.lp-mockup-dot--red    { background: #ff5f57; }
.lp-mockup-dot--yellow { background: #ffbd2e; }
.lp-mockup-dot--green  { background: #28c941; }
.lp-mockup-url {
  margin-left: 12px;
  padding: 4px 12px;
  background: #fff;
  border-radius: 6px;
  font-size: 11px;
  color: var(--lp-text-3);
  font-family: 'SF Mono', Menlo, monospace;
  flex: 1;
  max-width: 240px;
}
.lp-mockup-body {
  display: grid;
  grid-template-columns: 56px 1fr 200px;
  height: 360px;
}
.lp-mockup-rail {
  background: #0f1320;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.lp-mockup-rail-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
}
.lp-mockup-rail-icon:first-child {
  background: var(--lp-primary);
  box-shadow: 0 0 0 1px rgba(79, 70, 229, .3), 0 4px 10px rgba(79, 70, 229, .35);
}
.lp-mockup-canvas {
  padding: 24px;
  background: var(--lp-bg);
  overflow: hidden;
}
.lp-mockup-block--hero {
  text-align: center;
  margin-bottom: 24px;
}
.lp-mockup-line {
  height: 10px;
  border-radius: 3px;
  background: var(--lp-border);
  margin: 8px auto;
}
.lp-mockup-line--lg  { height: 16px; width: 70%; background: var(--lp-text); }
.lp-mockup-line--md  { width: 80%; background: var(--lp-border-2); }
.lp-mockup-line--sm  { width: 60%; background: var(--lp-border); }
.lp-mockup-line--xs  { width: 30%; height: 7px; background: var(--lp-border); }
.lp-mockup-cta {
  display: inline-block;
  width: 100px;
  height: 28px;
  border-radius: 6px;
  background: var(--lp-primary);
  margin-top: 14px;
  box-shadow: 0 4px 10px rgba(79, 70, 229, .25);
}
.lp-mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.lp-mockup-card {
  height: 60px;
  border-radius: 8px;
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-border);
}
.lp-mockup-side {
  background: var(--lp-bg-soft);
  border-left: 1px solid var(--lp-border);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-mockup-side-row {
  height: 24px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid var(--lp-border);
}

/* Floating accent badges around the mockup */
.lp-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 99px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--lp-shadow);
  animation: lp-float-bob 4s ease-in-out infinite;
}
.lp-float strong { font-weight: 600; color: var(--lp-text); }
.lp-float-1 {
  top: 30px;
  right: -20px;
  animation-delay: -1s;
}
.lp-float-2 {
  bottom: 40px;
  left: -30px;
}
@keyframes lp-float-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@media (max-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .lp-hero { padding: 120px 0 60px; }
  .lp-mockup { transform: none; }
  .lp-float { display: none; }
  /* Center text content when hero stacks vertically. */
  .lp-hero-text { text-align: center; }
  .lp-hero-lead { margin-left: auto; margin-right: auto; }
  .lp-hero-ctas { justify-content: center; }
  .lp-hero-trust { justify-content: center; flex-wrap: wrap; }
}

/* ── Marquee / social proof ───────────────────────────── */
.lp-marquee {
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 20px 0;
  background: var(--lp-bg-soft);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.lp-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.lp-marquee-track {
  display: flex;
  width: max-content;
  /* Animate exactly één-set-breedte (uitgedrukt in pixels door JS).
     Fallback: -50% als JS niet draait — werkt zolang de track 2 sets bevat. */
  animation: lp-marquee var(--lp-marquee-dur, 40s) linear infinite;
  will-change: transform;
}
.lp-marquee-set {
  display: flex;
  gap: 28px;
  padding-right: 28px;        /* gap naar de volgende set */
  white-space: nowrap;
  flex-shrink: 0;
}
.lp-marquee-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text-3);
  letter-spacing: -0.005em;
}
.lp-marquee-label--accent {
  color: var(--lp-text);
  font-weight: 600;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
}
@keyframes lp-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--lp-marquee-shift, -50%)); }
}

/* ── Process / steps ──────────────────────────────────── */
.lp-process { background: var(--lp-bg); }
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.lp-step {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.lp-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow);
}
.lp-step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  color: var(--lp-primary);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.lp-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.lp-step p {
  color: var(--lp-text-2);
  font-size: 15px;
}
.lp-step code {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 12px;
  background: var(--lp-bg-soft);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--lp-border);
}
@media (max-width: 768px) {
  .lp-steps { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Features grid ────────────────────────────────────── */
.lp-features {
  background: linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-bg-tint) 100%);
}
.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  transition: transform .3s, box-shadow .3s, border-color .25s;
}
.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow);
  border-color: var(--lp-border-2);
}
.lp-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--lp-primary), #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(79, 70, 229, .25);
}
.lp-card-icon svg,
.lp-card-icon .iconify { width: 22px; height: 22px; font-size: 22px; }
.lp-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.lp-card p {
  color: var(--lp-text-2);
  font-size: 15px;
}
@media (max-width: 900px) { .lp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp-grid { grid-template-columns: 1fr; } }

/* ── Showcase ─────────────────────────────────────────── */
.lp-showcase { background: var(--lp-bg); }
.lp-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.lp-showcase-text .lp-section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  text-align: left;
  margin-bottom: 22px;
}
.lp-showcase-text .lp-section-eyebrow {
  display: inline-block;
}
.lp-showcase-list {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--lp-text-2);
}
.lp-showcase-list li > span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lp-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-showcase-frame {
  perspective: 1500px;
}
.lp-mockup--lg .lp-mockup-body {
  height: 420px;
  grid-template-columns: 1fr;
}
.lp-mockup--lg .lp-mockup-body--alt {
  display: block;
  background: var(--lp-bg);
}
.lp-mockup-canvas-alt {
  padding: 32px;
}
.lp-mockup-photo {
  width: 100%;
  height: 220px;
  border-radius: var(--lp-radius-sm);
  background:
    linear-gradient(135deg, rgba(255,255,255,.4), transparent),
    linear-gradient(120deg, #c7d2fe 0%, #fce7f3 50%, #fef3c7 100%);
  position: relative;
  overflow: hidden;
}
.lp-mockup-photo::after {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,.3), transparent);
}
@media (max-width: 1024px) {
  .lp-showcase-grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-showcase-text { text-align: center; }
  .lp-showcase-text .lp-section-title { text-align: center; }
  .lp-showcase-list { display: inline-flex; text-align: left; margin-left: auto; margin-right: auto; }
  .lp-showcase-text .lp-btn { display: inline-flex; }
}

/* ── Stats ────────────────────────────────────────────── */
.lp-stats {
  background: linear-gradient(180deg, var(--lp-bg-tint) 0%, var(--lp-bg) 100%);
  padding: 80px 0;
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.lp-stat {
  padding: 24px;
}
.lp-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--lp-text);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.lp-stat-label {
  font-size: 14px;
  color: var(--lp-text-2);
  font-weight: 500;
}
@media (max-width: 700px) {
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Pricing teaser ───────────────────────────────────── */
.lp-pricing { background: var(--lp-bg); }
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.lp-pricing-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) {
  .lp-pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
.lp-plan {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .25s;
}
.lp-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow);
}
.lp-plan--highlight {
  border: 2px solid var(--lp-text);
  box-shadow: var(--lp-shadow);
  transform: scale(1.04);
}
.lp-plan--highlight:hover {
  transform: scale(1.05) translateY(-2px);
}
.lp-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  background: var(--lp-text);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 99px;
}
.lp-plan-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-text-2);
  margin-bottom: 6px;
}
.lp-plan-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: var(--lp-text);
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.lp-plan-price .lp-plan-amount {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.lp-plan-price > span:not(.lp-plan-amount) {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text-3);
}
.lp-plan-tag {
  font-size: 14px;
  color: var(--lp-text-2);
  margin-bottom: 22px;
}
/* Headline-strip directly under the price — anchors the most important
   numbers (sites, pages) so the differentiation between plans is obvious
   at a glance without reading the bullet list. */
.lp-plan-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  margin: -2px 0 14px;
  padding: 10px 12px;
  background: var(--lp-bg-soft);
  border-radius: var(--lp-radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-text);
}
.lp-plan-stats strong {
  font-weight: 600;
  color: var(--lp-text);
}
.lp-plan-stats span.lp-plan-stat-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lp-text-3);
  display: inline-block;
}
.lp-plan--highlight .lp-plan-stats {
  background: rgba(79, 70, 229, .07);
  color: var(--lp-text);
}
.lp-plan-for {
  font-size: 13px;
  color: var(--lp-text-3);
  font-style: italic;
  margin-bottom: 14px;
  min-height: 36px;
}
.lp-plan-delta-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-primary);
  margin-bottom: 12px;
  padding-top: 4px;
  border-top: 1px dashed var(--lp-border);
}
.lp-plan-trial {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--lp-text-3);
  margin-top: 10px;
}
.lp-plan-trial a { color: var(--lp-primary); text-decoration: underline; }

/* Agency banner — full-width card below main grid */
.lp-agency-card {
  margin-top: 32px;
  background:
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, .08), transparent 50%),
    linear-gradient(135deg, #fff, var(--lp-bg-tint));
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}
.lp-agency-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--lp-text), #312e81);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.lp-agency-content { min-width: 0; }
.lp-agency-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-primary);
  margin-bottom: 8px;
}
.lp-agency-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--lp-text);
  margin-bottom: 6px;
}
.lp-agency-lead {
  font-size: 15px;
  color: var(--lp-text-2);
  line-height: 1.6;
  margin-bottom: 14px;
}
.lp-agency-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-size: 13px;
  color: var(--lp-text-2);
}
.lp-agency-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp-agency-features .iconify { color: var(--lp-primary); font-size: 15px; }
.lp-agency-action {
  text-align: right;
  flex-shrink: 0;
}
.lp-agency-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--lp-text);
  line-height: 1;
}
.lp-agency-price small {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-text-3);
  margin-left: 4px;
}
.lp-agency-action .lp-btn { margin-top: 14px; }
@media (max-width: 900px) {
  .lp-agency-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }
  .lp-agency-icon { margin: 0 auto; }
  .lp-agency-features { justify-content: center; }
  .lp-agency-action { text-align: center; }
}
.lp-plan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.lp-plan-list li {
  font-size: 14px;
  color: var(--lp-text);
  padding-left: 22px;
  position: relative;
}
@media (max-width: 900px) {
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .lp-plan--highlight { transform: none; }
  .lp-plan--highlight:hover { transform: translateY(-2px); }
}

/* Plan list — line item with iconify check/cross icon */
.lp-plan-list li.is-no { color: var(--lp-text-3); }
.lp-plan-list li .iconify {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 16px;
  color: var(--lp-primary);
}
.lp-plan-list li.is-no .iconify { color: var(--lp-text-3); }

/* Billing toggle (maandelijks / jaarlijks) */
.lp-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-border);
  border-radius: 99px;
  margin-top: 28px;
}
.lp-billing-btn {
  appearance: none;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text-2);
  padding: 8px 18px;
  border-radius: 99px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, color .2s;
}
.lp-billing-btn:hover { color: var(--lp-text); }
.lp-billing-btn.is-active {
  background: #fff;
  color: var(--lp-text);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
}
.lp-billing-save {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lp-primary);
  background: rgba(79, 70, 229, .12);
  padding: 2px 8px;
  border-radius: 99px;
}

/* Pricing footnote under cards */
.lp-pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--lp-text-3);
  margin-top: 32px;
}

/* FAQ section (used on pricing page) */
.lp-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-faq-item {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
}
.lp-faq-q {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16px;
  color: var(--lp-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
  transition: background .2s;
}
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-q:hover { background: var(--lp-bg-soft); }
.lp-faq-q .iconify {
  font-size: 18px;
  color: var(--lp-text-3);
  transition: transform .2s;
}
.lp-faq-item[open] .lp-faq-q .iconify { transform: rotate(180deg); }
.lp-faq-a {
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--lp-text-2);
}

/* ── Legal article (privacy / terms / cookies) ────────── */
.lp-legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  font-family: 'Inter', system-ui, sans-serif;
}
.lp-legal-header { margin-bottom: 48px; }
.lp-legal-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 12px 0 16px;
}
.lp-legal-header h1 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--lp-primary);
}
.lp-legal-meta {
  font-size: 14px;
  color: var(--lp-text-3);
}
.lp-legal-toc {
  margin: 32px 0 0;
  padding: 18px 22px;
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
}
.lp-legal-toc-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-text-3);
  margin-bottom: 10px;
}
.lp-legal-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  counter-reset: toc;
}
@media (max-width: 600px) {
  .lp-legal-toc ol { grid-template-columns: 1fr; }
}
.lp-legal-toc li { counter-increment: toc; font-size: 14px; }
.lp-legal-toc li::before {
  content: counter(toc, decimal-leading-zero);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--lp-text-3);
  margin-right: 8px;
  font-size: 12px;
}
.lp-legal-toc a {
  color: var(--lp-text-2);
  transition: color .15s;
}
.lp-legal-toc a:hover { color: var(--lp-primary); }

.lp-legal-body { font-size: 16px; line-height: 1.75; color: var(--lp-text-2); }
.lp-legal-body section { padding-top: 48px; scroll-margin-top: 80px; }
.lp-legal-body section:first-child { padding-top: 0; }
.lp-legal-body h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--lp-text);
  margin: 0 0 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.lp-legal-body h2::before {
  content: counter(legal-section, decimal-leading-zero);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--lp-primary);
  flex-shrink: 0;
}
.lp-legal-body { counter-reset: legal-section; }
.lp-legal-body section { counter-increment: legal-section; }
.lp-legal-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--lp-text);
  margin: 28px 0 10px;
}
.lp-legal-body p { margin: 0 0 16px; }
.lp-legal-body ul, .lp-legal-body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.lp-legal-body ul li, .lp-legal-body ol li { margin-bottom: 8px; }
.lp-legal-body strong { color: var(--lp-text); font-weight: 600; }
.lp-legal-body a { color: var(--lp-primary); text-decoration: underline; text-underline-offset: 3px; }
.lp-legal-body a:hover { text-decoration-thickness: 2px; }
.lp-legal-body code {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 13px;
  background: var(--lp-bg-soft);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--lp-border);
}
.lp-legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.lp-legal-body th, .lp-legal-body td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-legal-body th {
  font-weight: 600;
  color: var(--lp-text);
  background: var(--lp-bg-soft);
}
.lp-legal-body td { color: var(--lp-text-2); }
.lp-legal-body td code {
  font-size: 12px;
  white-space: nowrap;
}
.lp-legal-callout {
  margin: 20px 0;
  padding: 16px 20px;
  background: rgba(79, 70, 229, .06);
  border-left: 3px solid var(--lp-primary);
  border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
  font-size: 15px;
  color: var(--lp-text);
}
.lp-legal-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--lp-border);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: var(--lp-text-3);
}
.lp-legal-footer a { color: var(--lp-text-2); transition: color .15s; }
.lp-legal-footer a:hover { color: var(--lp-text); }

/* ── Final CTA ────────────────────────────────────────── */
.lp-cta { background: var(--lp-bg); padding: 60px 0 120px; }
.lp-cta-card {
  background:
    radial-gradient(circle at 20% 30%, rgba(79, 70, 229, .15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, .18), transparent 50%),
    linear-gradient(135deg, #0f1320, #1e1b4b 60%, #312e81);
  border-radius: var(--lp-radius-lg);
  padding: 80px 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
}
.lp-cta-card::before,
.lp-cta-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}
.lp-cta-card::before {
  width: 200px; height: 200px;
  top: -50px; left: -50px;
  background: radial-gradient(circle, #6366f1, transparent);
}
.lp-cta-card::after {
  width: 240px; height: 240px;
  bottom: -60px; right: -60px;
  background: radial-gradient(circle, #f59e0b, transparent);
}
.lp-cta-card > * { position: relative; z-index: 1; }
.lp-cta-card .lp-section-eyebrow {
  color: rgba(255, 255, 255, .7);
}
.lp-cta-title {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  margin: 16px 0;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.lp-cta-title em {
  background: linear-gradient(120deg, #fef3c7, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-cta-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.lp-cta-card .lp-btn-primary,
.lp-cta-card .lp-btn-primary:link,
.lp-cta-card .lp-btn-primary:visited,
.lp-cta-card .lp-btn-primary:hover,
.lp-cta-card .lp-btn-primary > * {
  background: #fff;
  color: var(--lp-text);
}
.lp-cta-card .lp-btn-primary:hover {
  box-shadow: 0 12px 32px rgba(255, 255, 255, .3);
}
@media (max-width: 768px) {
  .lp-cta-card { padding: 50px 28px; }
}

/* ── Footer ───────────────────────────────────────────── */
.lp-footer {
  background: #fff;
  border-top: 1px solid var(--lp-border);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.lp-logo--footer { margin-bottom: 12px; }
.lp-footer-tagline {
  font-size: 14px;
  color: var(--lp-text-2);
  max-width: 280px;
  line-height: 1.6;
}
.lp-footer-grid h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-text-3);
  margin-bottom: 16px;
}
.lp-footer-grid a {
  display: block;
  font-size: 14px;
  color: var(--lp-text-2);
  padding: 4px 0;
  transition: color .15s;
}
.lp-footer-grid a:hover { color: var(--lp-text); }
.lp-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--lp-border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--lp-text-3);
  flex-wrap: wrap;
  gap: 12px;
}
.lp-footer-meta {
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
}
@media (max-width: 768px) {
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── Reveal-on-scroll ─────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Active nav link — extends the underline fully (the hover rule
   only does this on hover; for the active page we want it permanent). */
.lp-nav-links a.is-active { color: var(--lp-text); }
.lp-nav-links a.is-active::after { left: 0; right: 0; }

/* ── Page hero (used by /features and /builder) ──────── */
.lp-page-hero {
  padding: 160px 0 60px;
  position: relative;
  z-index: 1;
}
.lp-page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.lp-page-hero-title {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 16px 0 24px;
}
.lp-page-hero-lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--lp-text-2);
  max-width: 620px;
  margin: 16px auto;
  text-align: center;
}
@media (max-width: 768px) {
  .lp-page-hero { padding: 120px 0 40px; }
}

/* ── Feature blocks (split layouts) ──────────────────── */
.lp-feature-block { background: var(--lp-bg); }
.lp-feature-block--alt { background: var(--lp-bg-tint); }
.lp-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.lp-feature-grid--reverse {
  grid-template-columns: 1.1fr 1fr;
}
.lp-feature-grid--reverse .lp-feature-text { order: 2; }
.lp-feature-grid--reverse .lp-feature-visual { order: 1; }
.lp-feature-text .lp-section-eyebrow { display: inline-block; }
.lp-feature-title {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 12px 0 18px;
  color: var(--lp-text);
}
.lp-feature-lead {
  font-size: 17px;
  color: var(--lp-text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}
.lp-feat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--lp-text-2);
  line-height: 1.55;
}
.lp-feat-list li > span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lp-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 1024px) {
  .lp-feature-grid,
  .lp-feature-grid--reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .lp-feature-grid--reverse .lp-feature-text { order: 1; }
  .lp-feature-grid--reverse .lp-feature-visual { order: 2; }
  /* Center text content when feature blocks stack vertically. */
  .lp-feature-text { text-align: center; }
  .lp-feat-list { display: inline-flex; text-align: left; margin-left: auto; margin-right: auto; }
}

/* ── Feature illustrations ───────────────────────────── */
.lp-feat-illustration {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 24px;
  box-shadow: var(--lp-shadow);
}

/* CMS tiles grid */
.lp-feat-illustration--cms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lp-feat-tile {
  background: var(--lp-bg-soft);
  border-radius: var(--lp-radius-sm);
  padding: 12px;
  border: 1px solid var(--lp-border);
}
.lp-feat-tile-img {
  width: 100%;
  height: 80px;
  border-radius: 6px;
  background: linear-gradient(135deg, #c7d2fe 0%, #fce7f3 100%);
}
.lp-feat-tile-img--alt {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}
.lp-feat-tile-img--alt2 {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

/* Publish steps */
.lp-feat-illustration--publish {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 32px 20px;
}
.lp-publish-step {
  flex: 1;
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  padding: 20px 16px;
  text-align: center;
}
.lp-publish-step--live {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-color: #6ee7b7;
}
.lp-publish-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lp-text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 12px;
}
.lp-publish-step--live .lp-publish-num {
  background: #10b981;
}
.lp-publish-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 4px;
}
.lp-publish-text span {
  font-size: 12px;
  color: var(--lp-text-2);
}
.lp-publish-arrow {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--lp-text-3);
}
@media (max-width: 600px) {
  .lp-feat-illustration--publish { flex-direction: column; }
  .lp-publish-arrow { transform: rotate(90deg); justify-content: center; padding: 4px 0; }
}

/* Stats illustration */
.lp-feat-illustration--stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-feat-stat-card {
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  padding: 16px 20px;
}
.lp-feat-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--lp-text);
  line-height: 1;
}
.lp-feat-stat-label {
  font-size: 13px;
  color: var(--lp-text-2);
  margin: 4px 0 10px;
}
.lp-feat-stat-bar {
  height: 6px;
  background: var(--lp-border);
  border-radius: 99px;
  overflow: hidden;
}
.lp-feat-stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lp-primary), #10b981);
  border-radius: 99px;
}

/* AI illustration */
.lp-feat-illustration--ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
}
.lp-ai-prompt {
  background: linear-gradient(90deg, #f3f4ff, #fff8ec);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--lp-text);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  width: 100%;
}
.lp-ai-prompt-icon { font-size: 18px; }
.lp-ai-arrow {
  font-size: 24px;
  color: var(--lp-primary);
  font-weight: 700;
}
.lp-ai-result {
  width: 100%;
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

/* ── Builder page ────────────────────────────────────── */
.lp-builder-frame {
  margin-top: 60px;
  perspective: 1500px;
}
.lp-mockup--xl {
  transform: none;
  margin: 0 auto;
  max-width: 1100px;
}
.lp-mockup-body--xl {
  grid-template-columns: 64px 1fr 240px;
  height: 540px;
}
.lp-mockup-rail--xl {
  padding: 20px 10px;
  gap: 14px;
}
.lp-mockup-canvas--xl { padding: 32px; }
.lp-mockup-side--xl { padding: 20px 14px; gap: 10px; }

/* Edit demo */
.lp-edit-demo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}
.lp-edit-text-box {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  color: var(--lp-text);
  padding: 16px 20px;
  border: 2px dashed var(--lp-primary);
  border-radius: 8px;
  position: relative;
}
.lp-edit-cursor {
  display: inline-block;
  width: 2px;
  height: 28px;
  background: var(--lp-text);
  vertical-align: middle;
  margin-right: 4px;
  animation: lp-blink 1.1s ease-in-out infinite;
}
@keyframes lp-blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75%      { opacity: 0; }
}
.lp-edit-toolbar {
  display: flex;
  gap: 10px;
  background: var(--lp-text);
  border-radius: 8px;
  padding: 10px 14px;
  align-self: flex-start;
  align-items: center;
  box-shadow: var(--lp-shadow);
}
.lp-edit-toolbar span {
  color: #fff;
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
}
.lp-edit-toolbar span:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Responsive demo */
.lp-responsive-demo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 40px 24px;
  background: linear-gradient(180deg, #f8fafc, #fff);
}
.lp-responsive-frame {
  background: #fff;
  border: 2px solid var(--lp-text);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-responsive-frame--desktop {
  width: 240px;
  height: 160px;
}
.lp-responsive-frame--tablet {
  width: 130px;
  height: 170px;
}
.lp-responsive-frame--mobile {
  width: 70px;
  height: 130px;
  border-radius: 12px;
}
/* Scale frames proportionally on small screens so all three fit. */
@media (max-width: 520px) {
  .lp-responsive-demo { gap: 10px; padding: 32px 16px; }
  .lp-responsive-frame--desktop { width: 180px; height: 120px; }
  .lp-responsive-frame--tablet  { width: 96px;  height: 128px; }
  .lp-responsive-frame--mobile  { width: 52px;  height: 96px;  border-radius: 9px; }
}
@media (max-width: 380px) {
  .lp-responsive-demo { gap: 8px; padding: 28px 12px; }
  .lp-responsive-frame--desktop { width: 150px; height: 100px; }
  .lp-responsive-frame--tablet  { width: 80px;  height: 108px; }
  .lp-responsive-frame--mobile  { width: 44px;  height: 80px; }
}

/* Versions demo */
.lp-versions-demo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}
.lp-version-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  padding: 12px 14px;
}
.lp-version-icon { font-size: 20px; }
.lp-version-info { flex: 1; }
.lp-version-info strong {
  display: block;
  font-size: 14px;
  color: var(--lp-text);
  font-weight: 600;
  margin-bottom: 2px;
}
.lp-version-info span {
  font-size: 12px;
  color: var(--lp-text-3);
}
.lp-version-btn {
  background: #fff;
  border: 1px solid var(--lp-border-2);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-text);
  cursor: pointer;
  font-family: inherit;
}
.lp-version-btn:hover {
  background: var(--lp-text);
  color: #fff;
  border-color: var(--lp-text);
}

/* Shortcuts */
.lp-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.lp-shortcut {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
}
.lp-shortcut kbd {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  background: var(--lp-text);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  min-width: 24px;
  text-align: center;
  box-shadow: 0 2px 0 #000;
}
.lp-shortcut span {
  font-size: 14px;
  color: var(--lp-text-2);
  margin-left: 4px;
}
@media (max-width: 700px) {
  .lp-shortcuts { grid-template-columns: 1fr 1fr; }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .lp-shape,
  .lp-marquee-inner,
  .lp-float {
    animation: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ══════════════════════════════════════════════════════════
   Ritme & textuur — sectie-afwisseling, grain, glows,
   reveal-varianten, hero-tilt. (Eén indigo-kleurfamilie.)
   ══════════════════════════════════════════════════════════ */

.lp { --lp-bg-indigo: #f5f6ff; --lp-dark-bg: #0f1320; }

/* ── Getinte sectie (process) ── */
.lp-section.lp-tinted { background: var(--lp-bg-indigo); }

/* ── Donkere zone (showcase + stats) ── */
.lp-section.lp-dark {
  background:
    radial-gradient(900px 480px at 75% 20%, rgba(99, 102, 241, .14), transparent 60%),
    linear-gradient(180deg, #0f1320, #141a30);
}
.lp-section.lp-dark .lp-section-eyebrow { color: #a5b4fc; }
.lp-section.lp-dark .lp-section-title   { color: #f8fafc; }
.lp-section.lp-dark .lp-section-lead    { color: rgba(226, 232, 240, .75); }
.lp-section.lp-dark .lp-showcase-list li { color: rgba(226, 232, 240, .85); }
.lp-section.lp-dark .lp-stat-num        { color: #f8fafc; }
.lp-section.lp-dark .lp-stat-label      { color: rgba(226, 232, 240, .55); }
/* Donkere stats sluiten naadloos aan op de donkere showcase erboven */
.lp-stats.lp-dark { background: linear-gradient(180deg, #141a30, #0f1320); }

/* ── Grain-textuur (zelfde truc als de builder-decoratie) ── */
.lp-grain { position: relative; }
.lp-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  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='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.lp-grain > * { position: relative; z-index: 1; }

/* ── Sectie-scheiders (waves — zelfde vormen als de builder) ── */
.section-divider {
  position: absolute;
  left: 0;
  right: 0;
  height: 72px;
  pointer-events: none;
  z-index: 1;
}
.section-divider--top    { top: -1px; }
.section-divider--bottom { bottom: -1px; }
.section-divider-svg { display: block; width: 100%; height: 100%; }

/* ── Verankerde glow achter de showcase-mockup ── */
.lp-showcase-visual { position: relative; }
.lp-showcase-visual::before {
  content: '';
  position: absolute;
  inset: -12% -18%;
  background: radial-gradient(closest-side, rgba(129, 140, 248, .28), transparent 72%);
  filter: blur(8px);
  z-index: 0;
}
.lp-showcase-visual > * { position: relative; z-index: 1; }

/* ── Glow achter het uitgelichte prijsplan ── */
.lp-plan--highlight { position: relative; }
.lp-plan--highlight::before {
  content: '';
  position: absolute;
  inset: -14%;
  background: radial-gradient(closest-side, rgba(99, 102, 241, .16), transparent 70%);
  z-index: -1;
}

/* ── Reveal-varianten ── */
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: translateY(16px) scale(.955); }
[data-reveal="left"].is-revealed,
[data-reveal="right"].is-revealed { transform: translateX(0); }
[data-reveal="scale"].is-revealed { transform: translateY(0) scale(1); }

/* ── Hero-mockup: perspective + muis-tilt ── */
.lp-hero-visual { perspective: 1200px; }
.lp-hero-visual .lp-mockup {
  transition: transform .25s ease-out;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero-visual .lp-mockup { transition: none; transform: none !important; }
}

/* ── Ritme op subpagina's (features / builder / pricing) ── */
/* Alt-blokken: van warme tint naar de indigo-familie (kleurdiscipline) */
.lp-feature-block--alt { background: var(--lp-bg-indigo); }

/* Donker feature-blok: tekstkleuren op de donkere zone */
.lp-dark .lp-feature-title { color: #f8fafc; }
.lp-dark .lp-feature-lead  { color: rgba(226, 232, 240, .75); }
.lp-dark .lp-feat-list li  { color: rgba(226, 232, 240, .85); }
