/* Stijl voor de secundaire pagina's (privacy, partners). De landingspagina
   houdt zijn eigen inline stijl; dit bestand deelt alleen de merktokens zodat
   beide er hetzelfde uitzien zonder dat de landingspagina een extra verzoek
   nodig heeft. */
@font-face { font-family: 'Hanken Grotesk'; src: url('/assets/fonts/hanken-grotesk-latin.woff2') format('woff2'); font-style: normal; font-weight: 100 900; font-display: swap; }
@font-face { font-family: 'Bricolage Grotesque'; src: url('/assets/fonts/bricolage-grotesque-latin.woff2') format('woff2'); font-style: normal; font-weight: 600 800; font-display: swap; }

:root {
  --ink: #16241f;
  --muted: #55665f;
  --paper: #eef2ee;
  --cream: #f5f1e6;
  --line: #d6dfd8;
  --green: #1f6342;
  --green-dark: #14432d;
  --disp: 'Bricolage Grotesque', Georgia, serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.shell { width: min(720px, calc(100% - 40px)); margin: 0 auto; }

.hd { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: inherit; font-family: var(--disp); font-size: 20px; font-weight: 700; text-decoration: none; }

h1 { margin: 24px 0 8px; font-family: var(--disp); font-size: clamp(30px, 5vw, 42px); font-weight: 700; line-height: 1.12; letter-spacing: -.03em; }
h2 { margin: 36px 0 10px; font-family: var(--disp); font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
p, li { color: var(--muted); }
a { color: var(--green-dark); }
.lede { font-size: 19px; color: var(--ink); }
.updated { margin: 0 0 8px; font-size: 14px; color: #7b8880; }
ul { padding-left: 20px; }
li { margin-bottom: 6px; }

.card { margin: 28px 0; padding: 24px 26px; border: 1px solid #dbd2bb; border-radius: 16px; background: var(--cream); }
.card h2 { margin-top: 0; }
.cta { display: inline-flex; align-items: center; min-height: 52px; margin-top: 8px; padding: 0 26px; border-radius: 12px; background: var(--green-dark); color: #fff; font-size: 16px; font-weight: 750; text-decoration: none; }
.cta:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.ft { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 56px; padding: 24px 0 40px; border-top: 1px solid var(--line); font-size: 14px; }

@media (max-width: 620px) {
  .ft { flex-direction: column; align-items: flex-start; }
  body { padding-bottom: 40px; }
}

/* Formulier op partnerpagina's; spiegelt de landingspagina zodat een bezoeker
   dezelfde stap herkent. */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.signup-heading { margin: 0 0 16px; font-family: var(--disp); font-size: 21px; font-weight: 700; line-height: 1.24; letter-spacing: -.025em; color: var(--ink); }
.form { display: grid; gap: 12px; }
.form-line { display: flex; gap: 10px; align-items: stretch; }
.form-line .phone { flex: 1; }
.form input { width: 100%; min-width: 0; height: 56px; padding: 0 18px; border: 1px solid #ddd6c4; border-radius: 12px; background: #fff; font: inherit; font-size: 16px; color: inherit; }
.form input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,99,66,.16); }
.form button { height: 56px; padding: 0 30px; border: 0; border-radius: 12px; background: var(--green-dark); color: #fff; font: inherit; font-size: 16px; font-weight: 750; cursor: pointer; white-space: nowrap; }
.phone { display: flex; gap: 8px; min-width: 0; margin: 0; padding: 0; border: 0; }
.phone label { position: relative; display: inline-flex; flex: 1; align-items: center; justify-content: center; height: 56px; padding: 0 18px; border: 1px solid #ddd6c4; border-radius: 12px; background: #fff; font-size: 15px; font-weight: 650; color: var(--muted); cursor: pointer; }
.phone input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.phone label:has(input:checked) { border-color: var(--green); background: rgba(31,99,66,.09); color: var(--green-dark); box-shadow: inset 0 0 0 1px var(--green); }
.phone-label { margin: 0 2px -4px; font-size: 13px; font-weight: 600; color: var(--muted); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 10px 2px 0; min-height: 1.4em; font-size: 13.5px; line-height: 1.4; color: #98241d; }

@media (max-width: 620px) {
  .form-line { flex-direction: column; }
  .form button, .phone label { height: auto; min-height: 56px; }
}
