:root {
  --bg: #0e0e10;
  --surface: #16161a;
  --surface-2: #1d1d22;
  --surface-3: #242429;
  --border: #2a2a2e;
  --border-strong: #3a3a3e;
  --fg: #f4f4f2;
  --muted: #a2a2aa;
  --dim: #73737c;
  --green: #6fa84a;
  --green-bright: #8bc866;
  --offwhite: #f7f7fa;
  --danger: #d58a75;
  --max: 1180px;
  --reading: 760px;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Syne, Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% -10%, rgba(111, 168, 74, .11), transparent 34rem),
    var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--green-bright); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--offwhite);
  color: var(--bg);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(14,14,16,.9);
  backdrop-filter: blur(18px);
}
.nav {
  max-width: var(--max);
  min-height: 68px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: .95;
}
.brand strong {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: .13em;
}
.brand span {
  margin-top: 6px;
  color: var(--green-bright);
  font: 600 10px/1 var(--mono);
  letter-spacing: .18em;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font: 600 11px/1 var(--mono);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--fg); }

.nav > .button {
  font: 760 11px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--offwhite);
  border-radius: 2px;
  background: var(--offwhite);
  color: var(--bg);
  font-weight: 760;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: #fff; }
.button--ghost {
  border-color: var(--border-strong);
  background: transparent;
  color: var(--fg);
}
.button--ghost:hover { background: var(--surface-2); }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.hero {
  min-height: 66vh;
  padding: clamp(88px, 12vw, 150px) 0 78px;
  display: grid;
  align-items: end;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 72px;
  align-items: end;
}
.eyebrow, .kicker, .meta, .breadcrumb, .card-label, .footer-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow, .kicker, .card-label { color: var(--green-bright); }
h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -.025em;
}
h1 {
  max-width: 900px;
  margin: 20px 0 0;
  font-size: clamp(52px, 9vw, 118px);
  line-height: .91;
}
.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  color: var(--muted);
  font-size: 14px;
}
.hero-note strong { display: block; margin-bottom: 8px; color: var(--fg); }

.section { padding: 88px 0; border-top: 1px solid var(--border); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}
.section h2 {
  margin: 12px 0 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}
.section-lede { margin: 0; color: var(--muted); font-size: 17px; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease;
}
.card:hover { border-color: var(--green); transform: translateY(-3px); }
.card h3 { margin: 44px 0 0; font-size: 27px; line-height: 1.1; }
.card p { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.card-arrow { margin-top: auto; padding-top: 24px; color: var(--green-bright); font-family: var(--mono); }
.card--light {
  background: var(--offwhite);
  color: #151518;
  border-color: var(--offwhite);
}
.card--light p { color: #55555e; }

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  background: var(--surface);
}
.status-item { padding: 20px 22px; border-right: 1px solid var(--border); }
.status-item:last-child { border-right: 0; }
.status-item span { display: block; color: var(--dim); font: 600 10px/1.3 var(--mono); text-transform: uppercase; letter-spacing: .09em; }
.status-item strong { display: block; margin-top: 8px; font-size: 15px; }

.article-shell { padding: 54px 0 96px; }
.breadcrumb { color: var(--dim); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.article-header {
  max-width: 920px;
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
}
.article-header h1 {
  max-width: none;
  font-size: clamp(46px, 7vw, 86px);
}
.answer-first {
  max-width: 800px;
  margin: 28px 0 0;
  color: var(--fg);
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.5;
}
.article-meta { margin-top: 28px; color: var(--dim); }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--reading)) minmax(220px, 1fr);
  gap: 72px;
  align-items: start;
  padding-top: 56px;
}
.prose h2 {
  margin: 62px 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 34px 0 10px; font-size: 22px; }
.prose p, .prose li { color: #c5c5ca; font-size: 17px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li + li { margin-top: 8px; }
.prose a { color: var(--green-bright); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.callout {
  margin: 36px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--green);
  background: var(--surface);
}
.callout strong { display: block; margin-bottom: 6px; }
.callout p { margin: 0; font-size: 15px; }
.sidebar {
  position: sticky;
  top: 100px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.sidebar h2 { margin: 0; font-size: 22px; }
.sidebar ul { margin: 18px 0 0; padding: 0; list-style: none; }
.sidebar li + li { margin-top: 12px; }
.sidebar a { color: var(--muted); font-size: 14px; text-decoration: none; }
.sidebar a:hover { color: var(--fg); }

.sources { margin-top: 64px; padding-top: 34px; border-top: 1px solid var(--border); }
.sources h2, .faq h2 { font-size: 34px; }
.sources ol { padding-left: 22px; }
.sources li { color: var(--muted); }
.sources li + li { margin-top: 12px; }
.sources a { overflow-wrap: anywhere; }
.faq { margin-top: 64px; }
.faq details { border-top: 1px solid var(--border); }
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary {
  padding: 21px 0;
  cursor: pointer;
  color: var(--fg);
  font-weight: 700;
}
.faq details p { max-width: 720px; margin: 0 0 22px; color: var(--muted); }
.article-cta {
  margin-top: 64px;
  padding: 38px;
  border: 1px solid var(--green);
  background: linear-gradient(145deg, rgba(111,168,74,.12), rgba(111,168,74,.02));
}
.article-cta h2 { margin: 0; font-size: 34px; }
.article-cta p { max-width: 620px; color: var(--muted); }

.listing-hero { padding: 88px 0 56px; }
.listing-hero h1 { font-size: clamp(50px, 8vw, 96px); }
.listing-hero p { max-width: 720px; color: var(--muted); font-size: 19px; }
.listing-grid { padding-bottom: 96px; }

.product-grid { display: grid; gap: 18px; padding-bottom: 72px; }
.product {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--surface);
}
.product-media { min-height: 420px; display: grid; place-items: center; background: var(--offwhite); }
.product-media img { width: 100%; height: 520px; object-fit: contain; }
.product-copy { padding: clamp(28px, 5vw, 52px); }
.product-copy h2 { margin: 18px 0 0; font-size: clamp(36px, 5vw, 58px); }
.product-copy p { color: var(--muted); }
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
  border: 1px solid var(--border);
}
.fact { padding: 14px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.fact:nth-child(even) { border-right: 0; }
.fact:nth-last-child(-n+2) { border-bottom: 0; }
.fact span { display: block; color: var(--dim); font: 600 10px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.fact strong { display: block; margin-top: 8px; }

.legal { max-width: 820px; padding: 82px 0 110px; }
.legal h1 { font-size: clamp(48px, 7vw, 82px); }
.legal h2 { margin: 52px 0 12px; font-size: 31px; }
.legal p, .legal li { color: #c5c5ca; }
.notice {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid rgba(213,138,117,.5);
  background: rgba(213,138,117,.08);
}

.site-footer { border-top: 1px solid var(--border); padding: 58px 0 34px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 38px;
}
.footer-brand p { max-width: 350px; color: var(--muted); font-size: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 14px; text-decoration: none; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--dim);
  font: 500 10px/1.5 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-grid, .section-head, .article-layout, .footer-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sidebar { position: static; }
  .product { grid-template-columns: 1fr; }
  .product-media { min-height: 330px; }
  .product-media img { height: 420px; }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 32px, var(--max)); }
  .nav { padding: 12px 16px; }
  /* De sectielinks gaan naar een eigen regel onder de merknaam, zodat mobiel navigeren mogelijk blijft. */
  .nav { flex-wrap: wrap; gap: 12px; padding-bottom: 10px; }
  .nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
    gap: 12px;
  }
  .nav-links a { font-size: 12px; }
  .nav .button { min-height: 40px; padding: 9px 12px; font-size: 13px; }
  .hero { min-height: auto; padding: 74px 0 54px; }
  .hero-grid { gap: 34px; }
  .hero-actions .button { width: 100%; }
  .grid { grid-template-columns: 1fr; }
  .status-strip { grid-template-columns: 1fr; }
  .status-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .status-item:last-child { border-bottom: 0; }
  .section { padding: 64px 0; }
  .article-header { padding-top: 54px; }
  .article-layout { padding-top: 38px; }
  .article-cta { padding: 26px; }
  .facts { grid-template-columns: 1fr; }
  .fact, .fact:nth-child(even), .fact:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--border); }
  .fact:last-child { border-bottom: 0; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
