/* ============================================================
   LEOVI — website design-systeem
   Warm, zacht, kind centraal. Kleuren 1-op-1 met de app.
   Geen em-dashes in teksten. Merk: lijn-vlinder + LEOVI.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Basis / warm crème */
  --sand:      30 20% 96%;   /* #F4F2EF paginabg */
  --sand-2:    30 24% 93%;   /* subtiel vlak */
  --linen:     28 34% 90%;   /* warm accentvlak */
  --card:       0  0% 100%;  /* wit */

  /* Inkt */
  --ink:      196 20% 19%;   /* hoofdtekst */
  --ink-2:    197 13% 37%;   /* secundair */
  --ink-3:    198 11% 54%;   /* zacht */

  /* Merk-teal (vlinder) */
  --teal:     180 42% 57%;   /* #6ABCBC */
  --teal-2:   182 38% 44%;   /* dieper, hover/tekst */
  --teal-3:   184 40% 30%;   /* donkerst */
  --teal-wash:180 44% 94%;

  /* Thema-accenten (matchen USP-visuals) */
  --geel:      42 82% 60%;
  --geel-wash: 44 86% 93%;
  --groen:    152 40% 57%;
  --groen-wash:150 44% 93%;
  --oranje:    24 74% 64%;
  --oranje-wash:26 84% 94%;
  --roze:     336 64% 74%;
  --roze-wash:338 70% 95%;
  --paars:    256 44% 75%;
  --paars-wash:255 50% 95%;

  --divider:   30 16% 87%;
  --ring:     180 42% 57%;

  /* Radius */
  --r-xs: .5rem;
  --r-sm: .75rem;
  --r:    1rem;
  --r-lg: 1.5rem;
  --r-xl: 2rem;
  --r-pill: 999px;

  /* Schaduw (warm) */
  --sh-1: 0 1px 2px hsl(196 24% 18% / .05), 0 6px 18px hsl(196 24% 18% / .06);
  --sh-2: 0 2px 6px hsl(196 24% 18% / .06), 0 20px 44px hsl(196 24% 18% / .10);
  --sh-soft: 0 10px 30px hsl(196 24% 18% / .08);

  /* Fonts */
  --f-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --wrap: 1140px;
  --wrap-narrow: 720px;
  --gap: clamp(1rem, 3vw, 2rem);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: hsl(var(--ink));
  background: hsl(var(--sand));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: hsl(var(--teal-2)); text-decoration: none; }
a:hover { color: hsl(var(--teal-3)); }
button { font-family: inherit; }
svg { flex: none; }
.ic { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.butterfly { width: 1.5rem; height: 1.25rem; }
::selection { background: hsl(var(--teal) / .28); }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 500; color: hsl(var(--ink)); line-height: 1.12; letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); line-height: 1.6; color: hsl(var(--ink-2)); }
.display-serif { font-family: var(--f-display); }
.italic { font-style: italic; }

/* Kicker / oogje boven kop */
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-body); font-weight: 600; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: hsl(var(--teal-2));
  background: hsl(var(--teal-wash));
  padding: .4rem .8rem; border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
}
.kicker svg { width: 1rem; height: 1rem; }

.section-head { max-width: 620px; margin: 0 auto 3rem; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: hsl(var(--ink-2)); font-size: 1.1rem; margin: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-white { background: hsl(var(--card)); }
.bg-sand2 { background: hsl(var(--sand-2)); }
.bg-teal-wash { background: hsl(var(--teal-wash)); }
.rounded-top { border-radius: var(--r-xl) var(--r-xl) 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-body); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease, border-color .18s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn svg { width: 1.15rem; height: 1.15rem; }
.btn-primary { background: hsl(var(--teal)); color: #fff; box-shadow: 0 6px 18px hsl(var(--teal) / .35); }
.btn-primary:hover { background: hsl(var(--teal-2)); color: #fff; box-shadow: 0 8px 24px hsl(var(--teal) / .42); }
.btn-ghost { background: hsl(var(--card)); color: hsl(var(--ink)); border-color: hsl(var(--divider)); }
.btn-ghost:hover { border-color: hsl(var(--teal)); color: hsl(var(--teal-2)); }
.btn-soft { background: hsl(var(--teal-wash)); color: hsl(var(--teal-2)); }
.btn-soft:hover { background: hsl(var(--teal) / .2); color: hsl(var(--teal-3)); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.08rem; }
.btn-block { width: 100%; }
/* Gestapelde CTA: hoofdlabel + klein regeltje eronder */
.btn-stack { flex-direction: column; gap: .1rem; line-height: 1.12; white-space: normal; text-align: center; }
.btn-stack .btn-main { display: block; font-weight: 700; }
.btn-stack .btn-sub { display: block; font-size: .68em; font-weight: 500; opacity: .92; letter-spacing: .005em; }
.btn-stack.btn-lg { padding-left: 1rem; padding-right: 1rem; }
/* Terugkerende CTA tussen secties */
.cta-inline { text-align: center; margin-top: clamp(2.4rem, 5vw, 3.4rem); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: hsl(var(--sand) / .82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid hsl(var(--divider) / .7);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-display); }
.brand .wordmark { font-family: var(--f-body); font-weight: 700; font-size: 1.4rem; letter-spacing: .09em; color: hsl(var(--ink)); }
/* Gekleurde LEOVI-letters (officieel wordmark, 1-op-1 met de app) */
.leovi { white-space: nowrap; }
.leovi > span:nth-child(1) { color: #6ABCBC; }
.leovi > span:nth-child(2) { color: #F5D060; }
.leovi > span:nth-child(3) { color: #E87AB5; }
.leovi > span:nth-child(4) { color: #E8A86A; }
.leovi > span:nth-child(5) { color: #68BFA0; }
.brand .butterfly { width: 34px; height: 29px; flex: none; }
.nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: hsl(var(--ink-2)); font-weight: 500; font-size: .98rem; padding: .5rem .8rem; border-radius: var(--r-pill); transition: background .15s, color .15s; }
.nav-links a:hover, .nav-links a.active { color: hsl(var(--ink)); background: hsl(var(--teal-wash)); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; background: none; border: 0; padding: .4rem; cursor: pointer; color: hsl(var(--ink)); }
.nav-toggle svg { width: 1.7rem; height: 1.7rem; }

/* ---------- Vlinder-accent (decoratief) ---------- */
.fly { position: absolute; opacity: .5; pointer-events: none; z-index: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 82% 12%, hsl(var(--geel-wash) / .8), transparent 70%),
    radial-gradient(50% 50% at 8% 88%, hsl(var(--roze-wash) / .85), transparent 70%),
    radial-gradient(55% 55% at 95% 90%, hsl(var(--teal-wash) / .7), transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero-copy h1 { margin-bottom: .35em; }
.hero-copy .motto { font-family: var(--f-display); font-style: italic; color: hsl(var(--teal-2)); font-size: clamp(1.15rem,2.4vw,1.5rem); margin-bottom: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero .kicker { text-transform: none; letter-spacing: .01em; font-weight: 600; }
.hero-trust { margin-top: 1.3rem; display: flex; align-items: center; gap: .5rem; color: hsl(var(--ink-3)); font-size: .92rem; }
.hero-trust svg { width: 1.05rem; height: 1.05rem; color: hsl(var(--teal-2)); flex: none; }

/* Hero media (video) in zacht kader */
.hero-media { position: relative; }
.media-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-2); background: hsl(var(--card));
  border: 6px solid #fff; transform: rotate(-1.2deg);
}
.media-frame video, .media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-caption {
  position: absolute; left: 1rem; top: 1rem; z-index: 2;
  background: hsl(var(--card) / .92); backdrop-filter: blur(6px);
  border-radius: var(--r-pill); padding: .5rem .9rem;
  font-size: .85rem; font-weight: 600; color: hsl(var(--ink)); display: flex; gap: .45rem; align-items: center;
  box-shadow: var(--sh-1);
}
.media-caption svg { width: 1rem; height: 1rem; color: hsl(var(--teal-2)); }

/* Klikbare hero-video */
.video-frame { cursor: pointer; }
.video-play {
  position: absolute; inset: 0; margin: auto;
  width: 66px; height: 66px; border-radius: 50%;
  background: hsl(0 0% 100% / .92); border: 0; cursor: pointer;
  display: grid; place-items: center; z-index: 3;
  box-shadow: var(--sh-2); transition: transform .15s ease, background .15s, opacity .25s;
}
.video-play:hover { transform: scale(1.06); background: #fff; }
.video-play svg { width: 30px; height: 30px; fill: hsl(var(--teal-2)); margin-left: 4px; }
.video-frame.playing .video-play { opacity: 0; pointer-events: none; }

/* ---------- Logostrip / trust ---------- */
.mini-badges { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; justify-content: center; align-items: center; }
.mini-badge { display: flex; align-items: center; gap: .55rem; color: hsl(var(--ink-2)); font-weight: 500; font-size: .95rem; }
.mini-badge svg { width: 1.3rem; height: 1.3rem; color: hsl(var(--teal-2)); flex: none; }

/* ---------- USP-kaarten ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.usp-card {
  position: relative; background: hsl(var(--card)); border-radius: var(--r-lg);
  padding: 1.6rem 1.3rem; box-shadow: var(--sh-1); border: 1px solid hsl(var(--divider) / .6);
  overflow: hidden; transition: transform .18s ease, box-shadow .18s ease;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--sh-soft); }
.usp-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--accent, hsl(var(--teal))); }
.usp-icon {
  width: 52px; height: 52px; border-radius: var(--r); display: grid; place-items: center;
  background: var(--accent-wash, hsl(var(--teal-wash))); color: var(--accent, hsl(var(--teal-2)));
  margin-bottom: 1rem;
}
.usp-icon svg { width: 1.7rem; height: 1.7rem; }
.usp-card h3 { font-size: 1.18rem; margin-bottom: .3rem; }
.usp-card p { font-size: .95rem; color: hsl(var(--ink-2)); margin: 0; }

/* accent-varianten */
.acc-teal   { --accent: hsl(var(--teal-2));  --accent-wash: hsl(var(--teal-wash)); }
.acc-groen  { --accent: hsl(152 42% 40%);    --accent-wash: hsl(var(--groen-wash)); }
.acc-oranje { --accent: hsl(24 62% 48%);     --accent-wash: hsl(var(--oranje-wash)); }
.acc-roze   { --accent: hsl(336 52% 52%);    --accent-wash: hsl(var(--roze-wash)); }
.acc-geel   { --accent: hsl(38 74% 42%);     --accent-wash: hsl(var(--geel-wash)); }
.acc-paars  { --accent: hsl(256 40% 55%);    --accent-wash: hsl(var(--paars-wash)); }

/* ---------- Feature rows (foto + tekst) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.feature + .feature { margin-top: clamp(3rem, 7vw, 5.5rem); }
.feature.reverse .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-photo { border-radius: var(--r-lg); box-shadow: var(--sh-2); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.feature-photo.wide { aspect-ratio: 5/4; }
.feature-copy .eyebrow { font-weight: 600; color: hsl(var(--teal-2)); text-transform: uppercase; letter-spacing: .07em; font-size: .8rem; margin-bottom: .7rem; display: block; }
.feature-list { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .7rem; }
.feature-list li { display: flex; gap: .7rem; align-items: flex-start; color: hsl(var(--ink-2)); }
.feature-list svg { width: 1.3rem; height: 1.3rem; color: hsl(var(--teal)); flex: none; margin-top: .15rem; }

/* Telefoon-frame voor app-screenshots */
.phone {
  position: relative; width: min(300px, 78%); margin-inline: auto;
  border-radius: 2.4rem; background: #1c2b33; padding: .55rem;
  box-shadow: var(--sh-2);
}
.phone::before { content:""; position:absolute; top: .95rem; left:50%; transform:translateX(-50%); width: 34%; height: .5rem; background:#0d171c; border-radius: 999px; z-index: 3; }
.phone img { width: 100%; border-radius: 2rem; display: block; }
.phone-wrap { position: relative; }

/* ---------- Scenario / kind-quotes ---------- */
.quote-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.quote-card {
  background: var(--q-bg, hsl(var(--card))); border: 1px solid hsl(var(--divider) / .7);
  border-radius: var(--r-lg); padding: 1.7rem 1.5rem; box-shadow: var(--sh-1);
}
.quote-card .q {
  font-family: var(--f-display); font-style: italic; font-size: 1.35rem; line-height: 1.35;
  color: hsl(var(--ink)); margin: 0 0 .8rem;
}
.quote-card .q::before { content: "\201C"; color: hsl(var(--teal) / .6); font-size: 1.4em; line-height: 0; margin-right: .05em; }
.quote-card p { color: hsl(var(--ink-2)); font-size: .98rem; margin: 0; }
.q-teal   { --q-bg: hsl(var(--teal-wash)); }
.q-roze   { --q-bg: hsl(var(--roze-wash)); }
.q-geel   { --q-bg: hsl(var(--geel-wash)); }
.q-groen  { --q-bg: hsl(var(--groen-wash)); }
.q-oranje { --q-bg: hsl(var(--oranje-wash)); }

/* ---------- Inzicht-blok (professionals) ---------- */
.insight {
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start;
  background: linear-gradient(135deg, hsl(var(--groen-wash)), hsl(var(--teal-wash)));
  border-radius: var(--r-lg); padding: 1.8rem; border: 1px solid hsl(var(--teal) / .2);
}
.insight .fly-badge { width: 44px; height: 44px; display: grid; place-items: center; background: hsl(var(--card) / .7); border-radius: 50%; }
.insight blockquote { margin: 0; font-family: var(--f-body); font-weight: 500; font-size: clamp(1.1rem,2.1vw,1.4rem); line-height: 1.5; color: hsl(var(--teal-3)); }
.insight cite { display: block; margin-top: .7rem; font-style: normal; font-size: .9rem; color: hsl(var(--ink-2)); font-family: var(--f-body); }

/* ---------- Artikel-kaarten ---------- */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem; }
.article-card {
  display: flex; flex-direction: column; background: hsl(var(--card));
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1);
  border: 1px solid hsl(var(--divider) / .6); transition: transform .18s ease, box-shadow .18s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--sh-soft); }
.article-card .thumb { aspect-ratio: 3/2; overflow: hidden; background: hsl(var(--sand-2)); }
.article-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-card:hover .thumb img { transform: scale(1.04); }
.article-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.article-body h3 { font-size: 1.28rem; margin-bottom: .4rem; }
.article-body p { color: hsl(var(--ink-2)); font-size: .96rem; margin: 0 0 1rem; }
.article-body .more { margin-top: auto; font-weight: 600; color: hsl(var(--teal-2)); display: inline-flex; align-items: center; gap: .4rem; }
.article-body .more svg { width: 1rem; height: 1rem; transition: transform .18s; }
.article-card:hover .more svg { transform: translateX(3px); }
/* Deelknop op artikel-tegels (los van de kaartlink) */
.article-card-wrap { position: relative; display: flex; }
.article-card-wrap > .article-card { flex: 1; }
.card-share {
  position: absolute; top: .7rem; right: .7rem; z-index: 3;
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: hsl(0 0% 100% / .92); border: 1px solid hsl(var(--divider));
  color: hsl(var(--teal-2)); box-shadow: var(--sh-1); cursor: pointer;
  transition: transform .12s ease, background .18s ease, color .18s ease;
}
.card-share:hover { background: #fff; color: hsl(var(--teal-3)); transform: translateY(-2px); }
.card-share:active { transform: scale(.94); }
.card-share svg { width: 1.05rem; height: 1.05rem; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card-share.copied::after {
  content: "Gekopieerd!"; position: absolute; top: 50%; right: calc(100% + .5rem);
  transform: translateY(-50%); white-space: nowrap;
  background: hsl(var(--ink)); color: #fff; font-size: .72rem; font-weight: 600;
  padding: .3rem .55rem; border-radius: .5rem; box-shadow: var(--sh-1);
}

.chip {
  display: inline-flex; align-items: center; gap: .4rem; align-self: flex-start;
  font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: .32rem .7rem; border-radius: var(--r-pill); margin-bottom: .8rem;
  background: var(--chip-bg, hsl(var(--teal-wash))); color: var(--chip-fg, hsl(var(--teal-2)));
}
.chip.c-kind   { --chip-bg: hsl(var(--oranje-wash)); --chip-fg: hsl(24 62% 44%); }
.chip.c-wissel { --chip-bg: hsl(var(--paars-wash)); --chip-fg: hsl(256 38% 50%); }
.chip.c-samen  { --chip-bg: hsl(var(--groen-wash)); --chip-fg: hsl(152 42% 36%); }
.chip.c-rust   { --chip-bg: hsl(var(--teal-wash)); --chip-fg: hsl(var(--teal-3)); }

/* Filterbalk artikelen */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  border: 1.5px solid hsl(var(--divider)); background: hsl(var(--card)); color: hsl(var(--ink-2));
  padding: .55rem 1.1rem; border-radius: var(--r-pill); font-weight: 600; font-size: .92rem; cursor: pointer;
  transition: all .15s;
}
.filter-btn:hover { border-color: hsl(var(--teal)); color: hsl(var(--teal-2)); }
.filter-btn.active { background: hsl(var(--teal)); border-color: hsl(var(--teal)); color: #fff; }

/* ---------- Founding / wachtlijst ---------- */
.founding {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, hsl(var(--teal-3)) 0%, hsl(var(--teal-2)) 55%, hsl(180 40% 46%) 100%);
  color: #fff; border-radius: var(--r-xl); padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--sh-2);
}
.founding h2 { color: #fff; }
.founding .lead { color: hsl(0 0% 100% / .9); }
.founding .kicker { text-transform: none; letter-spacing: .005em; }
.founding-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.founding-inner > * { min-width: 0; }
.pricecard { min-width: 0; overflow-wrap: break-word; }
.founding .fly { opacity: .18; }
.pricecard { background: hsl(0 0% 100% / .12); border: 1px solid hsl(0 0% 100% / .25); border-radius: var(--r-lg); padding: 1.6rem; backdrop-filter: blur(4px); }
.pricecard .cap { display: inline-flex; align-items:center; gap:.4rem; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: hsl(var(--geel)); color: hsl(38 60% 22%); padding: .3rem .7rem; border-radius: var(--r-pill); margin-bottom: 1rem; }
.pricecard .price { font-family: var(--f-display); font-size: 2.4rem; line-height: 1; margin-bottom: .3rem; }
.pricecard .price small { font-size: 1rem; font-family: var(--f-body); opacity: .85; }
.pricecard .fineprint { font-size: .85rem; color: hsl(0 0% 100% / .82); margin: .8rem 0 0; }
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .6rem; }
.check-list li { display: flex; gap: .6rem; align-items: flex-start; color: hsl(0 0% 100% / .95); }
.check-list svg { width: 1.2rem; height: 1.2rem; flex: none; margin-top: .18rem; color: hsl(var(--geel)); }

/* Loops-form */
.waitlist-form { display: flex; gap: .6rem; margin-top: 1.3rem; flex-wrap: wrap; }
.waitlist-form input[type=email] {
  flex: 1 1 220px; min-width: 0; padding: .95rem 1.1rem; border-radius: var(--r-pill);
  border: 1.5px solid hsl(0 0% 100% / .4); background: hsl(0 0% 100% / .96); color: hsl(var(--ink));
  font-size: 1rem; font-family: inherit;
}
.waitlist-form input::placeholder { color: hsl(var(--ink-3)); }
.waitlist-form input:focus { outline: 3px solid hsl(var(--geel) / .6); border-color: #fff; }
.waitlist-btn { background: hsl(var(--geel)); color: hsl(38 60% 20%); border: 0; }
.waitlist-btn:hover { background: hsl(42 88% 66%); }
.waitlist-note { font-size: .82rem; color: hsl(0 0% 100% / .8); margin-top: .8rem; }
.form-success { display: none; background: hsl(0 0% 100% / .16); border: 1px solid hsl(0 0% 100% / .3); border-radius: var(--r); padding: 1rem 1.2rem; margin-top: 1rem; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: hsl(196 22% 15%); color: hsl(0 0% 100% / .7); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer .brand .wordmark { color: #fff; }
.site-footer p { font-size: .95rem; }
.footer-col h4 { color: #fff; font-family: var(--f-body); font-weight: 600; font-size: .95rem; letter-spacing: .03em; margin: 0 0 .9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-col a { color: hsl(0 0% 100% / .7); font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid hsl(0 0% 100% / .12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: hsl(0 0% 100% / .55); }
.footer-motto { font-family: var(--f-display); font-style: italic; color: hsl(var(--teal)); }

/* ---------- Prose (artikelen) ---------- */
.article-hero { padding-block: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem,3vw,2.5rem); }
.article-hero .container { max-width: var(--wrap-narrow); }
.article-meta { display: flex; align-items: center; gap: .8rem; color: hsl(var(--ink-3)); font-size: .9rem; margin-top: 1rem; }
.article-cover { max-width: var(--wrap); margin: 0 auto; padding-inline: clamp(1.1rem,4vw,2rem); }
.article-cover img { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-2); }
.article-cover { text-align: center; }
.article-cover figcaption { font-size: .88rem; color: hsl(var(--ink-3)); margin-top: .7rem; }
.prose { max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: clamp(1.1rem,4vw,2rem); }
.prose > * { margin-bottom: 1.25rem; }
.prose .lead { font-size: 1.28rem; color: hsl(var(--ink)); line-height: 1.55; }
.prose h2 { margin-top: 2.4rem; font-size: clamp(1.5rem,3vw,2rem); }
.prose h3 { margin-top: 1.8rem; font-size: 1.3rem; }
.prose p, .prose li { color: hsl(var(--ink-2)); }
.prose strong { color: hsl(var(--ink)); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .5rem; }
.prose blockquote {
  margin: 2rem 0; padding: 1.3rem 1.6rem; border-left: 4px solid hsl(var(--teal));
  background: hsl(var(--teal-wash)); border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--f-display); font-style: italic; font-size: 1.35rem; line-height: 1.4; color: hsl(var(--teal-3));
}
.prose blockquote p { color: inherit; margin: 0; }
.prose figure { margin: 2rem 0; }
.prose figure img { border-radius: var(--r-lg); box-shadow: var(--sh-1); width: 100%; }
.prose figcaption { text-align: center; font-size: .88rem; color: hsl(var(--ink-3)); margin-top: .6rem; }
.callout {
  background: hsl(var(--geel-wash)); border: 1px solid hsl(var(--geel) / .4);
  border-radius: var(--r-lg); padding: 1.4rem 1.6rem;
}
.callout h4 { font-family: var(--f-body); font-weight: 700; font-size: 1.05rem; margin: 0 0 .5rem; display: flex; gap: .5rem; align-items: center; }
.callout h4 svg { width: 1.2rem; height: 1.2rem; color: hsl(38 62% 42%); }
.callout p { margin: 0; color: hsl(var(--ink-2)); }
.tip-note { font-size: .95rem; color: hsl(var(--ink-3)); font-style: italic; }

/* App-uitleg onder artikel (opt-in, inklapbaar) */
.app-note-wrap { max-width: var(--wrap-narrow); margin: 2.5rem auto 0; padding-inline: clamp(1.1rem,4vw,2rem); }
.app-note { background: hsl(var(--groen-wash)); border: 1px solid hsl(var(--groen) / .5); border-radius: var(--r-lg); padding: 1.05rem 1.4rem; }
.app-note summary { font-family: var(--f-body); font-weight: 600; font-size: 1.02rem; color: hsl(152 44% 26%); cursor: pointer; display: flex; gap: .55rem; align-items: center; list-style: none; }
.app-note summary::-webkit-details-marker { display: none; }
.app-note summary .butterfly { width: 1.25rem; height: 1.05rem; color: hsl(152 42% 38%); flex: none; }
.app-note summary::after { content: ""; margin-left: auto; width: .5rem; height: .5rem; border-right: 2px solid hsl(152 42% 38%); border-bottom: 2px solid hsl(152 42% 38%); transform: rotate(-45deg); transition: transform .2s; flex: none; }
.app-note[open] summary::after { transform: rotate(45deg); }
.app-note[open] summary { margin-bottom: .65rem; }
.app-note p { margin: 0; color: hsl(var(--ink-2)); line-height: 1.6; }

/* Deel/terug onder artikel */
.article-foot { max-width: var(--wrap-narrow); margin: 3rem auto 0; padding-inline: clamp(1.1rem,4vw,2rem); }
.disclaimer { font-size: .88rem; color: hsl(var(--ink-3)); background: hsl(var(--sand-2)); border-radius: var(--r); padding: 1rem 1.2rem; border: 1px solid hsl(var(--divider)); }

/* Deelbalk */
.share-bar { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1.1rem; padding: 1.1rem 1.3rem; background: hsl(var(--teal-wash)); border: 1px solid hsl(var(--teal) / .18); border-radius: var(--r-lg); margin-bottom: 2rem; }
.share-label { font-weight: 600; color: hsl(var(--teal-3)); display: inline-flex; align-items: center; gap: .5rem; font-size: .98rem; }
.share-label svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.share-btns { display: flex; gap: .5rem; flex-wrap: wrap; margin-left: auto; }
.share-btn { width: 44px; height: 44px; border-radius: 50%; border: 0; background: hsl(var(--card)); color: hsl(var(--teal-2)); display: grid; place-items: center; cursor: pointer; box-shadow: var(--sh-1); transition: transform .12s ease, background .15s, color .15s; }
.share-btn:hover { transform: translateY(-2px); background: hsl(var(--teal)); color: #fff; }
.share-btn svg { width: 20px; height: 20px; }
.share-btn .fillicon { fill: currentColor; }
.share-btn .strokeicon { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.share-copied { font-size: .85rem; color: hsl(var(--teal-2)); font-weight: 600; opacity: 0; transition: opacity .2s; width: 100%; }
.share-copied.show { opacity: 1; }
@media (max-width: 520px) { .share-btns { margin-left: 0; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.br-mob { display: none; }
@media (max-width: 600px) { .br-mob { display: inline; } }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack-sm > * + * { margin-top: .8rem; }
.divider-soft { height: 1px; background: hsl(var(--divider)); border: 0; margin: 0; }
.reveal { transition: opacity .6s ease, transform .6s ease; }
html.js .reveal { opacity: 0; transform: translateY(18px); }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .fly { display: none; }
  .hero-media { max-width: 300px; margin-inline: auto; margin-top: 1.75rem; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .feature, .founding-inner { grid-template-columns: 1fr; }
  .feature.reverse .feature-media { order: -1; }
  .feature-photo { aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta .btn-ghost { display: none; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-menu-open .nav-links {
    display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column;
    background: hsl(var(--sand)); border-bottom: 1px solid hsl(var(--divider));
    padding: .8rem 1.1rem 1.2rem; gap: .2rem; box-shadow: var(--sh-1);
  }
  .nav-menu-open .nav-links a { padding: .8rem 1rem; }
  .nav-cta .btn { display: none; }
}
@media (max-width: 600px) {
  /* Rustiger mobiele hero: minder stapeling, zachtere kicker, lichtere 2e knop */
  .hero .kicker { display: none; }
  .hero h1 { font-size: clamp(1.85rem, 7.4vw, 2.15rem); }
  .hero-copy .motto { margin-bottom: .5rem; }
  .hero-copy .lead { font-size: 1rem; line-height: 1.55; margin: .1rem 0 0; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: .5rem; margin-top: 1.25rem; }
  .hero-actions .btn-primary { width: 100%; }
  .hero-actions .btn-ghost { display: none; }
  .hero-trust { margin-top: 1rem; font-size: .86rem; justify-content: center; }
}
@media (max-width: 540px) {
  .usp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal, html.js .reveal { opacity: 1 !important; transform: none !important; }
}
