:root {
    --ground: #FFFDF7;
    --peach: #FFF3E0;
    --peach-deep: #FFE0C2;
    --brand: #FF5722;
    --brand-soft: #FF8A65;
    --ink: #2A211B;
    --muted: #8A7C6D;
    --line: rgba(42, 33, 27, 0.10);
    --card: #FFFFFF;
    --c-animals: #4FA968;
    --c-vehicles: #FF8A65;
    --c-instruments: #8E6FD0;
    --c-house: #E8615E;
    --c-nature: #F2A03D;
    --display: ui-rounded, "SF Pro Rounded", "Hiragino Maru Gothic ProN", "Quicksand", system-ui, sans-serif;
    --body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --radius: 22px;
    --shadow: 0 18px 40px -22px rgba(176, 80, 24, 0.45);
    --maxw: 1080px;
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--ground);
    color: var(--ink);
    font-family: var(--body);
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation: none !important; transition: none !important; }
  }

  h1, h2, h3 { font-family: var(--display); font-weight: 700; text-wrap: balance; margin: 0; letter-spacing: -0.01em; }
  p { margin: 0; }
  a { color: inherit; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

  .eyebrow {
    font-family: var(--body);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand);
  }

  /* Header */
  header {
    position: sticky; top: 0; z-index: 20;
    background: rgba(255, 253, 247, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
  .brand .mark {
    width: 36px; height: 36px; border-radius: 11px;
    background: linear-gradient(150deg, var(--brand-soft), var(--brand));
    display: grid; place-items: center; color: #fff; font-size: 19px;
    box-shadow: 0 6px 14px -6px var(--brand);
  }
  .nav nav { display: flex; gap: 26px; }
  .nav nav a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 0.95rem; }
  .nav nav a:hover { color: var(--ink); }
  @media (max-width: 620px) { .nav nav { display: none; } }

  /* Hero */
  .hero { position: relative; overflow: hidden; }
  .hero .wrap {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px;
    align-items: center; padding-top: 64px; padding-bottom: 72px;
  }
  .hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.02; margin: 18px 0 0; }
  .hero h1 .accent { color: var(--brand); }
  .hero p.lead { font-size: 1.18rem; color: #5c5046; margin-top: 20px; max-width: 30ch; }
  .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
  .badge {
    display: inline-flex; flex-direction: column; gap: 1px;
    padding: 11px 20px; border-radius: 15px; text-decoration: none;
    background: var(--ink); color: #fff; min-width: 165px;
  }
  .badge small { font-size: 0.62rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; }
  .badge span { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
  .badge.soon { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }

  .hero-art { position: relative; display: grid; place-items: center; }
  .hero-art .spot {
    position: absolute; width: 92%; aspect-ratio: 1; border-radius: 50%;
    background: radial-gradient(circle, var(--peach-deep) 0%, var(--peach) 55%, rgba(255,243,224,0) 72%);
  }
  .hero-art img { position: relative; width: 78%; max-width: 360px; height: auto; filter: drop-shadow(0 24px 30px rgba(176,80,24,0.28)); }
  .load-rise { animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  .load-rise.d1 { animation-delay: 0.05s; }
  .load-rise.d2 { animation-delay: 0.12s; }
  @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

  @media (max-width: 760px) {
    .hero .wrap { grid-template-columns: 1fr; text-align: center; padding-top: 40px; gap: 24px; }
    .hero p.lead { margin-left: auto; margin-right: auto; }
    .cta-row { justify-content: center; }
    .hero-art { order: -1; }
    .hero-art img { max-width: 240px; }
  }

  /* Section scaffolding */
  section { padding: 64px 0; }
  .section-head { max-width: 38ch; margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-top: 10px; }
  .section-head p { color: var(--muted); margin-top: 12px; }

  /* Feature grid */
  .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  @media (max-width: 860px) { .features { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .features { grid-template-columns: 1fr; } }
  .card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px; box-shadow: var(--shadow);
  }
  .card .ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; }
  .card h3 { font-size: 1.18rem; }
  .card p { color: var(--muted); margin-top: 8px; font-size: 0.98rem; }

  /* Categories sticker strip */
  .cats { background: var(--peach); border-radius: 28px; padding: 40px; }
  .stickers { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
  .sticker {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 11px 18px 11px 14px; border-radius: 999px; font-family: var(--display);
    font-weight: 700; font-size: 1.05rem; background: #fff; border: 2px solid;
    text-decoration: none;
  }
  .sticker .dot { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-size: 15px; color: #fff; }

  /* Parents band */
  .parents { background: var(--ink); color: #fff; border-radius: 28px; padding: 48px 40px; }
  .parents h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
  .parents p.sub { color: #cbbfb2; margin-top: 12px; max-width: 52ch; }
  .pills { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
  .pill { padding: 9px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.22); font-weight: 600; font-size: 0.92rem; color: #fff; }
  .pill::before { content: "✓ "; color: var(--brand-soft); font-weight: 800; }

  /* Languages */
  .langs { display: flex; flex-wrap: wrap; gap: 10px; }
  .lang { padding: 10px 16px; border-radius: 13px; background: #fff; border: 1px solid var(--line); font-weight: 600; }

  /* Privacy */
  .privacy { background: #fff; border-top: 1px solid var(--line); }
  .doc { max-width: 70ch; }
  .doc h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
  .doc .updated { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }
  .doc h3 { font-size: 1.2rem; margin: 34px 0 8px; }
  .doc p { color: #4a4038; margin-top: 8px; }
  .doc ul { color: #4a4038; margin: 10px 0 0; padding-left: 20px; }
  .doc li { margin: 6px 0; }
  .doc a { color: var(--brand); }

  /* Footer */
  footer { background: var(--peach); padding: 40px 0; }
  .foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; color: var(--muted); font-size: 0.92rem; }
  .foot a { color: var(--brand); text-decoration: none; font-weight: 600; }

  :focus-visible { outline: 3px solid var(--brand-soft); outline-offset: 2px; border-radius: 6px; }

  .store-badge { display: inline-flex; align-items: center; gap: 11px; padding: 10px 18px; border-radius: 14px; background: var(--ink); color: #fff; text-decoration: none; min-width: 178px; }
  .store-badge svg { width: 26px; height: 26px; flex: none; }
  .store-badge .t { display: flex; flex-direction: column; line-height: 1.12; }
  .store-badge .t small { font-size: 0.62rem; opacity: 0.82; letter-spacing: 0.02em; }
  .store-badge .t span { font-family: var(--display); font-weight: 700; font-size: 1.06rem; }
  .store-badge.disabled { opacity: 0.5; }
  .langswitch { margin-left: 6px; border: 1.5px solid var(--line); border-radius: 10px; padding: 7px 13px; font-weight: 700; font-size: 0.85rem; text-decoration: none; color: var(--muted); }
  .langswitch:hover { color: var(--ink); border-color: var(--brand-soft); }

  .store-badge { display: inline-flex; align-items: center; gap: 11px; padding: 10px 18px; border-radius: 14px; background: var(--ink); color: #fff; text-decoration: none; min-width: 178px; }
  .store-badge svg { width: 26px; height: 26px; flex: none; }
  .store-badge .t { display: flex; flex-direction: column; line-height: 1.12; }
  .store-badge .t small { font-size: 0.62rem; opacity: 0.82; letter-spacing: 0.02em; }
  .store-badge .t span { font-family: var(--display); font-weight: 700; font-size: 1.06rem; }
  .store-badge.disabled { opacity: 0.5; }
  .nav-right { display: flex; align-items: center; gap: 22px; }
  .brand img.mark { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 5px 12px -6px var(--brand); }
  .langmenu { position: relative; }
  .langmenu > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; border: 1.5px solid var(--line); border-radius: 11px; padding: 7px 12px; font-weight: 700; font-size: 0.85rem; color: var(--muted); }
  .langmenu > summary::-webkit-details-marker { display: none; }
  .langmenu > summary:hover { color: var(--ink); border-color: var(--brand-soft); }
  .langmenu .chev { transition: transform 0.18s ease; font-size: 0.7em; }
  .langmenu[open] .chev { transform: rotate(180deg); }
  .langmenu .menu { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 6px; min-width: 156px; z-index: 30; }
  .langmenu .menu a { display: block; padding: 9px 12px; border-radius: 9px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.94rem; }
  .langmenu .menu a:hover { background: var(--peach); }
  .langmenu .menu a[aria-current="true"] { color: var(--brand); }
  @media (max-width: 620px) { .nav-right nav { display: none; } }

  .store-badge { display: inline-flex; align-items: center; gap: 11px; padding: 10px 18px; border-radius: 14px; background: var(--ink); color: #fff; text-decoration: none; min-width: 178px; }
  .store-badge svg { width: 26px; height: 26px; flex: none; }
  .store-badge .t { display: flex; flex-direction: column; line-height: 1.12; }
  .store-badge .t small { font-size: 0.62rem; opacity: 0.82; letter-spacing: 0.02em; }
  .store-badge .t span { font-family: var(--display); font-weight: 700; font-size: 1.06rem; }
  .store-badge.disabled { opacity: 0.5; }
  .nav-right { display: flex; align-items: center; gap: 22px; }
  .brand img.mark { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 5px 12px -6px var(--brand); }
  .langmenu { position: relative; }
  .langmenu > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; border: 1.5px solid var(--line); border-radius: 11px; padding: 7px 12px; font-weight: 700; font-size: 0.85rem; color: var(--muted); }
  .langmenu > summary::-webkit-details-marker { display: none; }
  .langmenu > summary:hover { color: var(--ink); border-color: var(--brand-soft); }
  .langmenu .chev { transition: transform 0.18s ease; font-size: 0.7em; }
  .langmenu[open] .chev { transform: rotate(180deg); }
  .langmenu .menu { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 6px; min-width: 156px; z-index: 30; }
  .langmenu .menu a { display: block; padding: 9px 12px; border-radius: 9px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.94rem; }
  .langmenu .menu a:hover { background: var(--peach); }
  .langmenu .menu a[aria-current="true"] { color: var(--brand); }
  @media (max-width: 620px) { .nav-right nav { display: none; } }
  .langmenu .globe { color: var(--brand); flex: none; }
  /* Gentle motion (all disabled under prefers-reduced-motion higher up). */
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  .hero-art img.lion { animation: rise 0.7s cubic-bezier(0.2,0.7,0.2,1) both, float 6s ease-in-out 1s infinite; }
  .card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
  .card:hover { transform: translateY(-4px); box-shadow: 0 26px 52px -24px rgba(176,80,24,0.5); }
  .sticker { transition: transform 0.2s ease; }
  .sticker:hover { transform: translateY(-2px) rotate(-2deg); }
  .store-badge { transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .store-badge:not(.disabled):hover { transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(0,0,0,0.5); }
  .lang { transition: transform 0.2s ease, border-color 0.2s ease; }
  .lang:hover { transform: translateY(-2px); border-color: var(--brand-soft); }
  .pre-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2,0.7,0.2,1); }
  .pre-reveal.revealed { opacity: 1; transform: none; }

  .store-badge { display: inline-flex; align-items: center; gap: 11px; padding: 10px 18px; border-radius: 14px; background: var(--ink); color: #fff; text-decoration: none; min-width: 178px; }
  .store-badge svg { width: 26px; height: 26px; flex: none; }
  .store-badge .t { display: flex; flex-direction: column; line-height: 1.12; }
  .store-badge .t small { font-size: 0.62rem; opacity: 0.82; letter-spacing: 0.02em; }
  .store-badge .t span { font-family: var(--display); font-weight: 700; font-size: 1.06rem; }
  .store-badge.disabled { opacity: 0.5; }
  .nav-right { display: flex; align-items: center; gap: 22px; }
  .brand img.mark { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 5px 12px -6px var(--brand); }
  .langmenu { position: relative; }
  .langmenu > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; border: 1.5px solid var(--line); border-radius: 11px; padding: 7px 12px; font-weight: 700; font-size: 0.85rem; color: var(--muted); }
  .langmenu > summary::-webkit-details-marker { display: none; }
  .langmenu > summary:hover { color: var(--ink); border-color: var(--brand-soft); }
  .langmenu .chev { transition: transform 0.18s ease; font-size: 0.7em; }
  .langmenu[open] .chev { transform: rotate(180deg); }
  .langmenu .menu { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 6px; min-width: 156px; z-index: 30; }
  .langmenu .menu a { display: block; padding: 9px 12px; border-radius: 9px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.94rem; }
  .langmenu .menu a:hover { background: var(--peach); }
  .langmenu .menu a[aria-current="true"] { color: var(--brand); }
  @media (max-width: 620px) { .nav-right nav { display: none; } }
  .langmenu .globe { color: var(--brand); flex: none; }
  /* Gentle motion (all disabled under prefers-reduced-motion higher up). */
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  .hero-art img.lion { animation: rise 0.7s cubic-bezier(0.2,0.7,0.2,1) both, float 6s ease-in-out 1s infinite; }
  .card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
  .card:hover { transform: translateY(-4px); box-shadow: 0 26px 52px -24px rgba(176,80,24,0.5); }
  .sticker { transition: transform 0.2s ease; }
  .sticker:hover { transform: translateY(-2px) rotate(-2deg); }
  .store-badge { transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .store-badge:not(.disabled):hover { transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(0,0,0,0.5); }
  .lang { transition: transform 0.2s ease, border-color 0.2s ease; }
  .lang:hover { transform: translateY(-2px); border-color: var(--brand-soft); }
  .pre-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2,0.7,0.2,1); }
  .pre-reveal.revealed { opacity: 1; transform: none; }

  .store-badge { display: inline-flex; align-items: center; gap: 11px; padding: 10px 18px; border-radius: 14px; background: var(--ink); color: #fff; text-decoration: none; min-width: 178px; }
  .store-badge svg { width: 26px; height: 26px; flex: none; }
  .store-badge .t { display: flex; flex-direction: column; line-height: 1.12; }
  .store-badge .t small { font-size: 0.62rem; opacity: 0.82; letter-spacing: 0.02em; }
  .store-badge .t span { font-family: var(--display); font-weight: 700; font-size: 1.06rem; }
  .store-badge.disabled { opacity: 0.5; }
  .nav-right { display: flex; align-items: center; gap: 22px; }
  .brand img.mark { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 5px 12px -6px var(--brand); }
  .langmenu { position: relative; }
  .langmenu > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; border: 1.5px solid var(--line); border-radius: 11px; padding: 7px 12px; font-weight: 700; font-size: 0.85rem; color: var(--muted); }
  .langmenu > summary::-webkit-details-marker { display: none; }
  .langmenu > summary:hover { color: var(--ink); border-color: var(--brand-soft); }
  .langmenu .chev { transition: transform 0.18s ease; font-size: 0.7em; }
  .langmenu[open] .chev { transform: rotate(180deg); }
  .langmenu .menu { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 6px; min-width: 156px; z-index: 30; }
  .langmenu .menu a { display: block; padding: 9px 12px; border-radius: 9px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.94rem; }
  .langmenu .menu a:hover { background: var(--peach); }
  .langmenu .menu a[aria-current="true"] { color: var(--brand); }
  @media (max-width: 620px) { .nav-right nav { display: none; } }
  .langmenu .globe { color: var(--brand); flex: none; }
  /* Gentle motion (all disabled under prefers-reduced-motion higher up). */
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  .hero-art img.lion { animation: rise 0.7s cubic-bezier(0.2,0.7,0.2,1) both, float 6s ease-in-out 1s infinite; }
  .card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
  .card:hover { transform: translateY(-4px); box-shadow: 0 26px 52px -24px rgba(176,80,24,0.5); }
  .sticker { transition: transform 0.2s ease; }
  .sticker:hover { transform: translateY(-2px) rotate(-2deg); }
  .store-badge { transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .store-badge:not(.disabled):hover { transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(0,0,0,0.5); }
  .lang { transition: transform 0.2s ease, border-color 0.2s ease; }
  .lang:hover { transform: translateY(-2px); border-color: var(--brand-soft); }
  .pre-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2,0.7,0.2,1); }
  .pre-reveal.revealed { opacity: 1; transform: none; }

  /* --- Categorie- en FAQ-pagina's ------------------------------------- */

  .crumbs { font-size: 0.92rem; color: var(--muted); margin: 0 0 18px; }
  .crumbs a { color: var(--muted); text-decoration: none; }
  .crumbs a:hover { color: var(--brand); }
  .crumbs span { margin: 0 6px; opacity: 0.5; }

  .cat-hero, .faq { padding: 44px 0 8px; }
  .cat-hero h1, .faq h1 {
    font-family: var(--display); font-weight: 800; line-height: 1.08;
    font-size: clamp(2rem, 4.4vw, 3rem); margin: 6px 0 16px; letter-spacing: -0.02em;
  }
  .cat-hero p.lead, .faq p.lead {
    font-size: clamp(1.02rem, 1.5vw, 1.15rem); color: var(--muted);
    max-width: 60ch; line-height: 1.65; margin: 0;
  }
  .cat-meta {
    margin: 20px 0 0; font-size: 0.95rem; color: var(--muted);
    max-width: 60ch;
  }

  .words { padding: 32px 0 8px; }
  .word-grid {
    list-style: none; margin: 0; padding: 0; display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .word {
    background: var(--card); border-radius: var(--radius); padding: 16px 10px 14px;
    text-align: center; box-shadow: var(--shadow); border: 1px solid var(--line);
    transition: transform 0.2s ease;
  }
  .word:hover { transform: translateY(-3px); }
  /* Vaste hoogte met contain: de tekeningen hebben elk een andere
     verhouding, en zonder dit staan de woorden op verschillende hoogtes. */
  .word img { width: 100%; height: 120px; max-width: 130px; object-fit: contain;
              display: block; margin: 0 auto 10px; }
  .word span {
    display: block; font-family: var(--display); font-weight: 700;
    font-size: 1.02rem; color: var(--ink);
  }

  .cat-play { padding: 44px 0 8px; }
  .cat-play h2, .cat-more h2, .faq h2 {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin: 0 0 12px;
  }
  .cat-play p { color: var(--muted); max-width: 62ch; line-height: 1.7; margin: 0 0 24px; }
  .cat-more { padding: 28px 0 56px; }

  .qa { margin: 30px 0 36px; max-width: 68ch; }
  .qa dt {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(1.08rem, 1.7vw, 1.24rem); color: var(--ink); margin: 26px 0 8px;
  }
  .qa dd { margin: 0; color: var(--muted); line-height: 1.7; }
  .qa dd a { color: var(--brand); }

  @media (max-width: 620px) {
    .word-grid { grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 12px; }
    .word img { height: 92px; }
    .cat-hero, .faq { padding-top: 28px; }
  }

  /* --- Landingspagina's voor advertenties ------------------------------ */

  .lp .wrap {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px;
    align-items: center; padding: 56px 0 24px;
  }
  .lp h1 {
    font-family: var(--display); font-weight: 800; line-height: 1.06;
    font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin: 8px 0 16px;
    letter-spacing: -0.02em;
  }
  .lp p.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted);
    line-height: 1.65; margin: 0 0 22px; max-width: 52ch;
  }
  .lp-points { list-style: none; margin: 0 0 26px; padding: 0; }
  .lp-points li {
    position: relative; padding-left: 30px; margin-bottom: 11px;
    color: var(--ink); line-height: 1.55;
  }
  .lp-points li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    color: var(--brand); font-weight: 700;
  }
  .lp-trust { margin: 18px 0 0; font-size: 0.92rem; color: var(--muted); max-width: 50ch; }
  .lp-proof { padding: 8px 0 56px; }
  .lp-more { margin: 22px 0 0; }
  .lp-more a { color: var(--muted); font-size: 0.95rem; }

  @media (max-width: 860px) {
    .lp .wrap { grid-template-columns: 1fr; padding-top: 32px; }
    .lp .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
  }

  /* --- Beoordeling -------------------------------------------------------- */

  .rating {
    margin: 18px 0 0; font-size: 0.98rem; color: var(--muted);
    display: flex; align-items: center; gap: 8px;
  }
  .rating .stars { color: #F2A03D; letter-spacing: 1px; font-size: 1.05rem; }
  .rating strong { color: var(--ink); font-family: var(--display); }

  /* --- Schermafbeeldingen ----------------------------------------------- */

  .shots { padding: 24px 0 8px; }
  .shot-row {
    display: grid; gap: 22px; margin-top: 24px;
    grid-template-columns: repeat(5, 1fr);
  }
  .shot { margin: 0; text-align: center; }
  .shot img {
    width: 100%; height: auto; display: block; border-radius: 20px;
    border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff;
  }
  .shot figcaption {
    margin-top: 12px; font-size: 0.9rem; color: var(--muted);
    font-family: var(--display); font-weight: 600;
  }

  @media (max-width: 860px) {
    /* Horizontaal scrollen leest op een telefoon beter dan vijf kolommen
       die tot postzegelformaat zijn geknepen. */
    .shot-row {
      display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
      gap: 16px; padding-bottom: 10px; margin-left: -20px; margin-right: -20px;
      padding-left: 20px; padding-right: 20px;
    }
    .shot { flex: 0 0 168px; scroll-snap-align: center; }
  }

  .guide-links { list-style: none; margin: 26px 0 0; padding: 0; }
  .guide-links li { margin-bottom: 10px; }
  .guide-links a {
    color: #fff; opacity: 0.82; font-family: var(--display); font-weight: 600;
    text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25);
    padding-bottom: 2px;
  }
  .guide-links a:hover { opacity: 1; border-bottom-color: var(--brand-soft); }

  /* --- Gidsen ------------------------------------------------------------ */

  .guide { padding: 44px 0 60px; }
  .guide h1 {
    font-family: var(--display); font-weight: 800; line-height: 1.08;
    font-size: clamp(2rem, 4.2vw, 2.9rem); margin: 6px 0 16px;
    letter-spacing: -0.02em; max-width: 20ch;
  }
  .guide p.lead {
    font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--muted);
    max-width: 62ch; line-height: 1.65; margin: 0 0 8px;
  }
  .guide h2 {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin: 38px 0 12px;
    max-width: 28ch;
  }
  .guide p { color: var(--muted); line-height: 1.75; max-width: 66ch; margin: 0 0 14px; }
  .guide ul { color: var(--muted); line-height: 1.75; max-width: 66ch; padding-left: 20px; }
  .guide li { margin-bottom: 7px; }
  .guide .pills { margin-top: 30px; }
  .guide .cta-row { margin-top: 32px; }

  /* --- 404 -------------------------------------------------------------- */

  .nf { padding: 80px 0 90px; text-align: center; }
  .nf-code {
    font-family: var(--display); font-weight: 800; font-size: 4rem;
    color: var(--peach-deep); margin: 0 0 4px; line-height: 1;
  }
  .nf h1 {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0 0 14px;
  }
  .nf p.lead { color: var(--muted); max-width: 46ch; margin: 0 auto 24px; line-height: 1.6; }
  .nf-back { margin: 0 0 34px; }
  .nf-back a { color: var(--brand); font-weight: 700; }
  .nf .stickers { justify-content: center; }

  /* Japans kent geen spaties, dus een browser breekt een kop midden in een
     woord af. auto-phrase laat hem breken op zinsdeelgrenzen; browsers die
     het niet kennen negeren de regel en gedragen zich als voorheen. */
  :lang(ja) h1,
  :lang(ja) h2,
  :lang(ja) h3,
  :lang(ja) .lead { word-break: auto-phrase; line-break: strict; }
