/* ─── Gedeelde styling voor legal pagina's ─────────────────────────────── */

/* Bricolage Grotesque Variable (self-hosted) */
@font-face {
  font-family: 'Bricolage Grotesque Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('/fonts/bricolage-grotesque-latin-wght-normal.woff2') format('woff2-variations');
  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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('/fonts/bricolage-grotesque-latin-ext-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand - oranje */
  --brand-50:  #FFF7ED;
  --brand-500: #FF6200;
  --brand-600: #EA580C;
  --brand-700: #C2410C;

  /* Neutral - warm grijs (Stone) */
  --neutral-50:  #FAFAF9;
  --neutral-100: #F5F5F4;
  --neutral-200: #E7E5E4;
  --neutral-300: #D6D3D1;
  --neutral-500: #78716C;
  --neutral-700: #44403C;
  --neutral-900: #1C1917;

  /* Surfaces */
  --surface-base:    var(--neutral-50);
  --surface-raised:  #FFFFFF;
  --surface-sunken:  var(--neutral-100);

  /* Text */
  --text-primary:   var(--neutral-900);
  --text-secondary: var(--neutral-700);
  --text-tertiary:  var(--neutral-500);
  --text-brand:     var(--brand-700);

  /* Borders */
  --border-default: var(--neutral-200);
  --border-strong:  var(--neutral-300);

  /* Brand semantic */
  --brand-soft:   var(--brand-50);
  --brand-base:   var(--brand-500);
  --brand-strong: var(--brand-600);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Bricolage Grotesque Variable', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  background: var(--surface-raised);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  border-bottom: 1px solid var(--border-default);
  padding: 14px 0;
  background: var(--surface-raised);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
/* Brand-mark: SVG van het CybearEye-oog (twee chevrons + pupil) —
   geen rechthoek meer, direct het icoon. */
.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.brand-text { line-height: 1.1; }
/* Woordmark in twee kleuren: "Cybear" donker, "Eye" merk-oranje. */
.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-name .word-dark { color: var(--neutral-900); }
.brand-name .word-accent { color: var(--brand-base); }
.brand-sub {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 2px;
}
.back-link {
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.back-link:hover { color: var(--brand-base); }

/* Main content */
main { padding: 56px 0 80px; }

main h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.15;
}
main .updated {
  color: var(--text-tertiary);
  font-size: 13px;
  margin-bottom: 36px;
}
main .lede {
  font-size: 17px;
  color: var(--text-tertiary);
  margin-bottom: 36px;
  line-height: 1.55;
}
main h2 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 36px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
main h2:first-of-type { margin-top: 0; }
main h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 22px;
  margin-bottom: 6px;
}
main p {
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 14px;
}
main ul, main ol {
  font-size: 15px;
  margin-bottom: 14px;
  padding-left: 22px;
}
main li { margin-bottom: 6px; }
main strong { color: var(--text-primary); font-weight: 700; }
main a {
  color: var(--text-brand);
  text-decoration: none;
  font-weight: 500;
}
main a:hover { text-decoration: underline; }

main .note {
  background: var(--surface-base);
  border-left: 3px solid var(--brand-base);
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 14px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

/* Footer */
footer {
  background: var(--surface-base);
  border-top: 1px solid var(--border-default);
  padding: 36px 0;
  font-size: 13px;
  color: var(--text-tertiary);
  text-align: center;
}
footer .footer-row { margin-bottom: 8px; }
footer strong { color: var(--text-primary); font-weight: 700; }
footer a {
  color: var(--text-tertiary);
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.15s;
}
footer a:hover { color: var(--brand-base); }

@media (max-width: 640px) {
  main { padding: 36px 0 60px; }
  main h1 { font-size: 28px; }
  main h2 { font-size: 17px; }
  main .lede { font-size: 16px; }
  .brand-sub { display: none; }
}
