/* Unlost Labs — site stylesheet
   Eén bestand, geen build, geen JavaScript.
   Zet in <head>, vóór deze stylesheet:
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400&family=IBM+Plex+Sans:wght@400;500&display=swap">
*/

:root {
  --paper:  #FBFAF7;   --tint:   #EDF3EF;   --line:  #E7E6E0;
  --ink:    #14201B;   --body:   #3F4D46;   --muted: #5B6B62;
  --green:  #29845A;   --deep:   #1C6344;
  --col: 44rem;        --radius: 8px;
  --serif: Newsreader, Georgia, serif;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0F1613;  --tint: #172220;     --line: #26332E;
    --ink:   #E9EEEA;  --body: #C6D3CC;     --muted: #9AABA2;
    --green: #58BC8C;  --deep: #58BC8C;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--body);
  font: 400 17px/1.7 var(--sans);
  text-rendering: optimizeLegibility;
}
.wrap { width: 100%; max-width: var(--col); margin: 0 auto; padding: 0 1.5rem; }
.band { background: var(--tint); border-block: 1px solid var(--line); padding: 3rem 0; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--ink);
             letter-spacing: -0.01em; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.25rem, 6vw, 2.875rem); line-height: 1.08; }
h2 { font-size: clamp(1.625rem, 4vw, 1.875rem); line-height: 1.2; margin-top: 3rem; }
h3 { font-size: 1.3125rem; line-height: 1.35; margin-top: 2rem; }
p  { margin: 0.75rem 0 0; max-width: 68ch; text-wrap: pretty; }
.lead { font-size: 1.125rem; color: var(--body); }
.eyebrow { font-family: var(--sans); font-size: 0.8125rem; letter-spacing: 0.12em;
           text-transform: uppercase; color: var(--muted); }
a { color: var(--deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green); }

/* header: merk links, vier links rechts, 1px lijn onder */
.site-head { display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; max-width: var(--col); margin: 0 auto;
  padding: 0.875rem 1.5rem; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--serif); font-size: 1.1875rem; color: var(--ink);
  text-decoration: none; }
.brand svg { width: 22px; height: 22px; }
.brand .mark { stroke: var(--green); fill: none; }
.brand .dot { fill: var(--green); }
.brand span { color: var(--muted); }
.site-head nav { display: flex; gap: 1.375rem; font-size: 0.875rem; }
.site-head nav a { color: var(--body); text-decoration: none; }
.site-head nav a:hover { color: var(--deep); text-decoration: underline; }

/* hero: gecentreerd, alleen op de homepage */
.hero { text-align: center; padding: 4.5rem 0 4rem; }
.hero h1 { max-width: 20ch; margin-inline: auto; }
.hero .lead { max-width: 52ch; margin-inline: auto; font-size: 1.125rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
           margin-top: 1.75rem; }
.btn { display: inline-block; background: var(--green); color: #FBFAF7;
  font: 500 0.9375rem/1 var(--sans); padding: 0.8125rem 1.375rem;
  border-radius: var(--radius); text-decoration: none; }
.btn:hover { background: var(--deep); color: #FBFAF7; }
@media (prefers-color-scheme: dark) { .btn, .btn:hover { color: #0F1613; } }
.btn-quiet { padding: 0.8125rem 0.5rem; font-size: 0.9375rem; }
.fineprint { margin-top: 1rem; font-size: 0.875rem; color: var(--muted); }

/* paginakop op faq / support / privacy */
.page-head { padding: 3rem 0 0.5rem; }

/* lijsten: geen bullets, 1px lijn boven elk item */
.rows { list-style: none; margin: 1.5rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.875rem 1.75rem; }
.rows li { border-top: 1px solid var(--line); padding-top: 0.625rem;
  font-size: 1rem; line-height: 1.5; color: var(--ink); }
.split { display: flex; justify-content: space-between; gap: 1.25rem;
  border-top: 1px solid var(--line); padding: 0.8125rem 0; font-size: 1rem; }
.split :first-child { font-weight: 500; color: var(--ink); }
.split :last-child { color: var(--muted); text-align: right; }
.split:last-of-type { border-bottom: 1px solid var(--line); }

/* e-mailadres op de supportpagina */
.contact { font-size: 1.1875rem; margin-top: 0.5rem; }

/* FAQ zonder JavaScript */
details { border-top: 1px solid var(--line); padding: 1rem 0; }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { display: flex; justify-content: space-between; gap: 1rem;
  cursor: pointer; list-style: none; font-size: 1.0625rem; color: var(--ink); }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--muted); }
details[open] summary { font-weight: 500; }
details[open] summary::after { content: "–"; color: var(--green); }
details p { margin-top: 0.625rem; }

/* voettekst — altijd donker, in beide weergaven */
.site-foot { margin-top: 4rem; background: #14201B; color: #9AABA2; }
.site-foot .wrap { display: flex; flex-wrap: wrap; gap: 1.25rem;
  justify-content: space-between; align-items: flex-end; padding: 2.5rem 1.5rem;
  max-width: var(--col); }
.site-foot .brand { color: #E9EEEA; }
.site-foot .brand span { color: #9AABA2; }
.site-foot .brand .mark { stroke: #58BC8C; }
.site-foot .brand .dot { fill: #58BC8C; }
.site-foot nav { display: flex; gap: 1.25rem; }
.site-foot a { color: #C6D3CC; font-size: 0.8125rem; text-decoration: none; }
.site-foot a:hover { color: #FBFAF7; text-decoration: underline; }
.site-foot p { font-size: 0.8125rem; margin: 0.5rem 0 0; }

@media (max-width: 34rem) {
  .hero { padding: 3rem 0 2.5rem; }
  h2 { margin-top: 2.25rem; }
}
