/* Skipdoc landingspagina — mobile-first, één licht thema met één donkere sectie.
   Alle tokens komen uit de reader-app (web/src/index.css); de pagina moet
   aanvoelen als de lobby van de app, niet als een ander gebouw. Geen inline
   style-attributen: de CSP staat 'unsafe-inline' voor styles niet toe. */

/* De leesletter, self-hosted en identiek aan de app. Alleen de latin-subset:
   Nederlands valt daar volledig binnen, inclusief €, — en ·. */
@font-face {
  font-family: "Literata";
  src: url("./fonts/literata-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  color-scheme: light; /* de pagina heeft bewust geen dark mode — de app wel */
  accent-color: #15803d;

  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-2: #f0f0ee;
  --text: #1b1b1a;
  --text-soft: #4f4f4a;
  --text-muted: #6b6b66;
  --border: #e3e3df;

  --accent: #15803d;
  --accent-text: #166534;
  --accent-ink: #ffffff;
  --success: #0f766e;
  --success-bg: #e6f5f2;
  --brand: #0b1120;
  --focus: #0b1120;

  /* Het dark-palet van de app, voor de ene donkere sectie. */
  --d-bg: #0b1120;
  --d-surface: #131a2a;
  --d-surface-2: #1b2438;
  --d-text: #e8eaf0;
  --d-muted: #9aa3b8;
  --d-faint: #6f7a93;
  --d-border: #263149;
  --d-success: #2dd4bf;
  --d-brand: #c7d2fe;

  --r-2: 8px;
  --r-3: 10px;
  --r-4: 12px;
  --r-5: 16px;
  --r-pill: 999px;

  --e-1: 0 1px 3px rgba(0, 0, 0, 0.08);
  --e-2: 0 8px 24px rgba(11, 17, 32, 0.07);
  --e-phone: 0 24px 60px rgba(11, 17, 32, 0.2), 0 4px 12px rgba(11, 17, 32, 0.1);

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-base: 0.3s;

  --font-body: "Literata", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  --measure: 640px; /* leesmaat voor prozasecties */
  --wide: 1160px; /* volle breedte voor grids en de vergelijking */
  --pad-x: 1.25rem;
  --pad-y: 4rem;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 1.0625rem; /* 17px — nooit lager, dit is een leesproduct */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand);
  text-wrap: balance;
}

p {
  margin: 0;
}

svg {
  display: block;
  flex: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-text);
}
a:hover {
  color: #14532d;
}

/* Eén focus-ring voor de hele pagina, in het navy van de app. */
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 60;
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-4);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s var(--ease-out);
}
.skip:focus {
  top: 0.75rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --- Layout ---------------------------------------------------------------- */

.wrap {
  max-width: var(--wide);
  margin: 0 auto;
}
.wrap--prose {
  max-width: var(--measure);
}

section {
  padding: var(--pad-y) var(--pad-x);
}
.band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* --- Typografie ------------------------------------------------------------ */

h1 {
  font-size: 2rem;
  line-height: 1.17;
  letter-spacing: -0.018em;
}
h2 {
  font-size: 1.6875rem;
  line-height: 1.25;
  letter-spacing: -0.012em;
}
h3 {
  font-size: 1.1875rem;
  line-height: 1.3;
}

.lead,
.prose {
  font-family: var(--font-body);
  line-height: 1.72;
  color: var(--text-soft);
}
.prose {
  color: var(--text);
}
:where(.lead, .prose) + p:where(.lead, .prose) {
  margin-top: 1rem;
}
.note {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.fine {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Knoppen (zelfde vormtaal als .btn in de app) -------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5625rem;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  padding: 0.9375rem 1.25rem;
  min-height: 44px; /* hit target */
  border: 1px solid transparent;
  border-radius: var(--r-4);
  cursor: pointer;
  transition: filter 0.15s ease, background 0.15s ease;
}
.btn:active {
  filter: brightness(0.94);
}
.btn--accent {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--accent:hover {
  background: #126d34;
  color: var(--accent-ink);
}
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--surface-2);
  color: var(--text);
}
.btn--sm {
  font-size: 0.9375rem;
  padding: 0.5625rem 0.9375rem;
}
.btn--block {
  display: flex;
  width: 100%;
}

/* --- Navigatie ------------------------------------------------------------- */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--brand);
}
.brand svg {
  width: 22px;
  height: 24px;
}
.brand__word {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.brand__word b {
  font-weight: 800;
}

/* --- Hero ------------------------------------------------------------------ */

.hero {
  padding-bottom: 0;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.625rem;
}
.hero__lead {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
}
.hero__note {
  margin-top: 1rem;
}
/* Mobiel wordt de telefoon door de viewport-rand afgesneden: dat is de
   scroll-uitnodiging uit de designbriefing. */
.hero__device {
  height: 300px;
  overflow: hidden;
  margin-top: 2.25rem;
}

/* --- Telefoonmockup -------------------------------------------------------- */

/* De app wordt op ware grootte (390 x 844) opgebouwd en als geheel geschaald,
   zodat elke maat uit de app klopt in plaats van met de hand herrekend te zijn. */
.phone {
  --phone-w: 300px;
  --scale: 0.7179;
  width: var(--phone-w);
  margin: 0 auto;
  padding: 10px;
  border-radius: 44px;
  background: var(--brand);
  box-shadow: var(--e-phone);
}
.phone--cut {
  border-radius: 44px 44px 0 0;
  padding-bottom: 0;
}
.phone__screen {
  width: calc(var(--phone-w) - 20px);
  height: calc(844px * var(--scale));
  border-radius: 35px;
  overflow: hidden;
  background: var(--bg);
}
.phone--cut .phone__screen {
  border-radius: 35px 35px 0 0;
}
.app {
  width: 390px;
  height: 844px;
  transform: scale(var(--scale));
  transform-origin: top left;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

/* De app-UI zelf, met de maten van web/src/index.css. */
.app__topbar {
  flex: none;
  display: flex;
  align-items: center;
  gap: 9.6px;
  padding: 12px 12.8px 9.6px;
  border-bottom: 1px solid var(--border);
}
.app__iconbtn {
  flex: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  background: var(--surface);
  color: var(--text);
}
.app__progress {
  flex: 1 1 auto;
  min-width: 0;
  padding: 3.2px 1.6px;
}
.app__progress-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 9.6px;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 4.8px;
}
.app__progress-pos {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app__progress-toc {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 2.4px;
  font-weight: 700;
  color: var(--accent-text);
}
.app__track {
  height: 4px;
  background: var(--border);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.app__fill {
  height: 100%;
  background: var(--success);
  border-radius: var(--r-pill);
}
.app__page {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px 32px;
  overflow: hidden;
}
.app__eyebrow {
  font-size: 12.8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.app__title {
  font-family: var(--font-body);
  font-size: 25.6px;
  line-height: 1.2;
  margin: 6.4px 0 19.2px;
  color: var(--text);
}
.app__prose {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
}
.app__prose p + p {
  margin-top: 16px;
}
.app__btn {
  align-self: flex-start;
  margin-top: 24px;
  padding: 11.2px 17.6px;
  border-radius: var(--r-4);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 16px;
  font-weight: 600;
}
.app__share {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6.4px;
  margin-top: 24px;
  font-size: 15.3px;
  color: var(--text-muted);
}
/* Oefenscherm */
.app__screen {
  padding: 20px 20px 32px;
  display: flex;
  flex-direction: column;
}
.app__head {
  flex: none;
  display: flex;
  align-items: center;
  gap: 12.8px;
  margin-bottom: 16px;
}
.app__head-title {
  flex: 1 1 auto;
  font-size: 25.6px;
  font-weight: 600;
  color: var(--text);
}
.app__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  box-shadow: var(--e-1);
  padding: 17.6px;
  margin-bottom: 16px;
}
.app__meta {
  font-size: 12.8px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.app__card-title {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.3;
  margin: 5.6px 0 16px;
  color: var(--text);
}
.app__answer {
  padding: 14.4px 16px;
  border-radius: var(--r-4);
  background: var(--surface-2);
  font-size: 17px;
  line-height: 1.6;
}
.app__answer p {
  margin-top: 10.4px;
}
.app__ref {
  font-size: 15.3px;
  color: var(--text-muted);
}
.app__row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.app__row > * {
  flex: 1 1 0;
  text-align: center;
  padding: 11.2px 17.6px;
  border-radius: var(--r-4);
  font-size: 16px;
  font-weight: 600;
}
.app__ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.app__accent {
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid transparent;
}
.app__leave {
  text-align: center;
  padding: 11.2px 17.6px;
  border-radius: var(--r-4);
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 16px;
  font-weight: 600;
}

/* --- Hoe het werkt --------------------------------------------------------- */

.cards {
  display: grid;
  gap: 0.875rem;
  margin-top: 1.75rem;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  padding: 1.5rem 1.375rem;
}
.band .card {
  background: var(--bg);
}
.card__num {
  display: block;
  font-family: var(--font-body);
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  color: var(--brand);
  opacity: 0.22;
}
.card h3 {
  margin-top: 0.75rem;
}
.card p {
  margin-top: 0.625rem;
}

/* --- Wat je krijgt --------------------------------------------------------- */

.features {
  display: grid;
  gap: 0.875rem;
  margin-top: 1.875rem;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  box-shadow: var(--e-1);
  padding: 1.375rem 1.25rem;
}
.feature svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
}
.feature h3 {
  margin-top: 0.75rem;
}
.feature p {
  margin-top: 0.5rem;
}

/* --- Controleerbaarheid: de ene donkere sectie ----------------------------- */

.proof {
  background: var(--d-bg);
}
.proof h2,
.proof h3 {
  color: var(--d-text);
}
.proof .lead,
.proof .prose {
  color: var(--d-muted);
}
.proof .note {
  color: var(--d-muted);
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.875rem;
  list-style: none;
  padding: 0;
}
.steps-list li {
  display: flex;
  gap: 0.875rem;
}
.steps-list b {
  flex: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--d-border);
  background: var(--d-surface);
  color: var(--d-brand);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
}
.steps-list h3 {
  font-size: 1.125rem;
  line-height: 1.35;
}
.steps-list p {
  margin-top: 0.4375rem;
}
.pull {
  margin-top: 1.875rem;
  border-left: 2px solid var(--d-border);
  padding-left: 1rem;
}

/* Een echt fragment uit de app, in het dark-palet van de app. */
.frag {
  background: var(--d-surface);
  border: 1px solid var(--d-border);
  border-radius: var(--r-5);
  padding: 1.25rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}
.frag__label {
  color: var(--d-faint);
  margin: 2.25rem 0 0.75rem;
}
.frag__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--d-muted);
}
.frag__stem {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--d-text);
  margin-top: 0.625rem;
}
.frag__options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.frag__options li {
  display: flex;
  gap: 0.5625rem;
  align-items: flex-start;
  background: var(--d-surface);
  border: 1px solid var(--d-border);
  border-radius: var(--r-4);
  padding: 0.6875rem 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--d-text);
  opacity: 0.55;
}
.frag__options .is-correct {
  background: #0e2b28;
  border-color: var(--d-success);
  opacity: 1;
}
.frag__options svg {
  color: var(--d-success);
  margin-top: 1px;
}
.frag__mark {
  width: 16px;
}
.frag__feedback {
  margin-top: 0.875rem;
  padding: 0.75rem 0.875rem;
  border-radius: var(--r-3);
  background: var(--d-surface-2);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--d-text);
}
.frag__feedback b {
  color: var(--d-success);
}
/* De paginareferentie is hier bewust uitgelicht: het is het bewijsstuk van de
   hele sectie. In de app zelf is deze regel gewoon gedempte tekst. */
.frag__ref {
  margin-top: 0.625rem;
  padding: 0.4375rem 0.625rem;
  border-radius: var(--r-2);
  background: rgba(45, 212, 191, 0.1);
  border: 1px dashed rgba(45, 212, 191, 0.45);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--d-success);
}

/* --- Vergelijking ---------------------------------------------------------- */

.cmp {
  margin-top: 2rem;
}
/* Mobiel: één blok per kolom, Skipdoc bovenaan. */
.cmp__stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cmp__col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  padding: 1.25rem;
}
.cmp__col--ours {
  border-top: 3px solid var(--accent);
  box-shadow: var(--e-1);
}
.cmp__col > p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}
.cmp__col--ours > p {
  font-weight: 700;
  color: var(--brand);
}
.cmp__col dl {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 0.625rem 0.875rem;
  margin: 0.875rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.45;
}
.cmp__col dt {
  color: var(--text);
}
.cmp__col dd {
  margin: 0;
  text-align: right;
  align-self: start;
  color: var(--text-muted);
}
.cmp__col--ours dd {
  font-weight: 600;
  color: var(--text);
}
.cmp__col dd svg {
  margin-left: auto;
  color: var(--accent-text);
}
.cmp__none {
  color: #a5a5a0;
}
.cmp__table {
  display: none;
}

/* --- Voor wie -------------------------------------------------------------- */

.audience {
  display: grid;
  gap: 0.875rem;
  margin-top: 1.75rem;
}
.audience .card h3 {
  font-size: 1.3125rem;
  margin-top: 0;
}
.audience .card p {
  margin-top: 0.75rem;
}

/* --- Prijs ----------------------------------------------------------------- */

.pricing h2 {
  text-align: center;
}
.price {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  box-shadow: var(--e-2);
  padding: 1.75rem 1.375rem;
  margin-top: 1.625rem;
}
.price__head {
  text-align: center;
}
.price__head .eyebrow {
  letter-spacing: 0.07em;
}
.price__amount {
  display: block;
  font-family: var(--font-body);
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brand);
  margin-top: 0.625rem;
}
.price__vat {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.price hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.625rem 0 1.5rem;
}
.price h3 {
  font-size: 1.125rem;
}
.price h3 span {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
}
.price h3 + ul {
  margin-top: 0.875rem;
}
.price ul + h3 {
  margin-top: 1.5rem;
}
.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ticks li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.5;
}
.ticks svg {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--accent-text);
}
.price .btn {
  margin-top: 1.625rem;
}

/* --- Demo ------------------------------------------------------------------ */

.demo__qr {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
}
.demo__qr-code {
  flex: none;
  width: 124px;
  height: 124px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
}
.demo__qr-code svg {
  width: 100%;
  height: 100%;
}
.demo__qr strong {
  display: block;
  font-size: 1.0625rem;
  line-height: 1.4;
}
.demo__qr p {
  margin-top: 0.375rem;
}
.demo__device {
  margin-top: 2rem;
}

/* --- FAQ (native details/summary: toetsenbord werkt zonder JS) ------------- */

.faq {
  margin-top: 1.625rem;
  border-top: 1px solid var(--border);
}
.faq details {
  border-bottom: 1px solid var(--border);
}
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.875rem;
  padding: 1.125rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--brand);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--text-muted);
  transition: transform 0.2s var(--ease-out);
}
.faq details[open] summary svg {
  transform: rotate(180deg);
}
.faq details p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-soft);
  padding: 0 1.875rem 1.125rem 0;
  margin-top: -0.25rem;
}

/* --- Slot-CTA en footer ---------------------------------------------------- */

.close h2 {
  font-size: 1.75rem;
}
.close .lead {
  margin-top: 1.25rem;
}
.close .btn {
  margin-top: 1.625rem;
}
.close__alt {
  margin-top: 1rem;
  text-align: center;
  color: var(--text-muted);
}
/* Plek voor de boekings-embed (Cal.com); zie site/README.md. */
.booking {
  margin-top: 1.5rem;
  min-height: 0;
}

.footer {
  padding: 2.25rem var(--pad-x) 2.75rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.footer .brand {
  margin-bottom: 0.75rem;
}
.footer a {
  color: var(--text-muted);
}
.footer a:hover {
  color: var(--text);
}
.footer__cookies {
  margin-top: 0.75rem;
}

/* --- Sticky CTA (mobiel), verschijnt voorbij de hero ----------------------- */

.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  padding: 0.625rem var(--pad-x) calc(0.625rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  visibility: hidden;
  transition: transform var(--t-base) var(--ease-out), visibility var(--t-base);
}
.stickybar.is-visible {
  transform: none;
  visibility: visible;
}
.stickybar .btn {
  max-width: 350px;
}

/* --- Scroll-onthulling ----------------------------------------------------- */

/* Geen verborgen begintoestand: een .reveal is gewoon zichtbaar. main.js zet
   er .is-in op vlak voordat de sectie in beeld komt, en dán speelt de fade.
   Gebeurt dat niet, dan staat de sectie er nog steeds -- alleen zonder fade. */
@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}
.reveal.is-in {
  animation: reveal-in var(--t-base) var(--ease-out) both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal.is-in {
    animation: none;
  }
}

/* --- Desktop --------------------------------------------------------------- */

@media (min-width: 900px) {
  :root {
    --pad-x: 3rem;
    --pad-y: 6.5rem;
  }

  h1 {
    font-size: 3.125rem;
    line-height: 1.13;
    letter-spacing: -0.021em;
  }
  h2 {
    font-size: 2.375rem;
    line-height: 1.22;
    letter-spacing: -0.015em;
  }
  h3 {
    font-size: 1.25rem;
  }

  /* Mobiel heeft de balk onderin; op desktop blijft de navbar-CTA staan, anders
     is er tussen de hero en het prijsblok ~6000px zonder actie in beeld. Zelfde
     doorschijnende behandeling als de topbar van de app. */
  .nav {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 1.125rem var(--pad-x);
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
  section {
    scroll-margin-top: 5rem;
  }
  .brand svg {
    width: 27px;
    height: 30px;
  }
  .brand__word {
    font-size: 1.3125rem;
  }

  .lead {
    font-size: 1.1875rem;
  }
  .prose {
    font-size: 1.1875rem;
  }

  /* Hero: tekst links, de echte reader rechts. */
  .hero {
    padding: 5.5rem var(--pad-x) 6.5rem;
  }
  .hero .wrap {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  .hero__text {
    flex: 1 1 0;
    min-width: 0;
    max-width: 660px;
  }
  .hero__lead {
    margin-top: 1.625rem;
    font-size: 1.1875rem;
  }
  .hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 2.125rem;
  }
  .hero__cta .btn {
    padding: 0.875rem 1.5rem;
  }
  .hero__note {
    margin-top: 1.25rem;
    max-width: 460px;
  }
  .hero__device {
    height: auto;
    overflow: visible;
    margin-top: 0;
    flex: none;
  }
  .hero .phone {
    --phone-w: 316px;
    --scale: 0.759;
    border-radius: 46px;
    padding: 10px;
  }
  .hero .phone__screen {
    border-radius: 37px;
  }

  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .card {
    padding: 2rem 1.75rem;
  }
  .card__num {
    font-size: 2.5rem;
  }
  .card h3 {
    margin-top: 1.125rem;
  }

  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .feature {
    padding: 1.75rem 1.625rem;
  }
  .feature svg {
    width: 24px;
    height: 24px;
  }
  .feature h3 {
    margin-top: 1rem;
  }

  .proof .wrap {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  .proof__text {
    flex: 1 1 0;
    min-width: 0;
    max-width: 560px;
  }
  .proof__aside {
    flex: none;
    width: 420px;
  }
  .frag__label {
    margin-top: 0;
  }
  .steps-list {
    gap: 1.75rem;
    margin-top: 2.5rem;
  }
  .steps-list li {
    gap: 1.125rem;
  }
  .steps-list b {
    width: 32px;
    height: 32px;
    font-size: 0.9375rem;
  }
  .steps-list h3 {
    font-size: 1.25rem;
  }
  .pull {
    margin-top: 2.5rem;
    padding-left: 1.125rem;
  }

  /* Vergelijking: de echte tabel, Skipdoc-kolom licht uitgelicht. */
  .cmp__stack {
    display: none;
  }
  .cmp__table {
    display: table;
    width: 100%;
    margin-top: 3.5rem;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-5);
    box-shadow: var(--e-1);
    overflow: hidden;
    text-align: left;
  }
  .cmp__table th,
  .cmp__table td {
    padding: 1.125rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
    line-height: 1.45;
    font-weight: 400;
    color: var(--text-muted);
    vertical-align: middle;
  }
  .cmp__table tbody th {
    font-size: 1rem;
    color: var(--text);
    width: 40%;
  }
  .cmp__table thead th {
    padding-top: 1.375rem;
    font-weight: 600;
  }
  .cmp__table tbody tr:last-child th,
  .cmp__table tbody tr:last-child td {
    border-bottom: 0;
  }
  .cmp__table .is-ours {
    background: #f4faf5;
    font-weight: 600;
    color: var(--text);
  }
  .cmp__table thead .is-ours {
    border-top: 3px solid var(--accent);
    padding-top: 1.1875rem;
    font-weight: 700;
    color: var(--brand);
  }
  .cmp__table svg {
    width: 19px;
    height: 19px;
    color: var(--accent-text);
  }

  .audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.75rem;
  }
  .audience .card {
    padding: 2.125rem 2rem;
  }
  .audience .card h3 {
    font-size: 1.5rem;
  }

  .price {
    padding: 2.75rem 2.75rem 2.5rem;
    margin-top: 2.5rem;
  }
  .price__amount {
    font-size: 3.875rem;
  }
  .price h3 {
    font-size: 1.25rem;
  }
  .ticks li {
    font-size: 1.0625rem;
  }

  .demo .wrap {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  .demo__text {
    flex: 1 1 0;
    min-width: 0;
    max-width: 600px;
  }
  .demo__device {
    flex: none;
    margin-top: 0;
  }
  .demo__qr {
    margin-top: 2.25rem;
    gap: 1.75rem;
    padding: 1.5rem;
  }

  .faq {
    margin-top: 2.25rem;
  }
  .faq summary {
    padding: 1.375rem 0;
    font-size: 1.125rem;
  }
  .faq details p {
    padding-right: 2.375rem;
  }

  .close {
    text-align: center;
  }
  .close h2 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .close .btn {
    margin-top: 2.125rem;
    padding: 0.9375rem 1.75rem;
  }
  .close .booking {
    text-align: left;
  }

  .footer {
    padding: 3rem var(--pad-x) 3.5rem;
  }
  .footer .wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  .footer .brand {
    margin-bottom: 0;
  }
  .footer__cookies {
    margin-top: 0;
    max-width: 280px;
  }

  /* Op desktop volstaat de CTA in de navbar. */
  .stickybar {
    display: none;
  }
}
