@charset "UTF-8";
/* ==========================================================
   Deepfin — huisstijl
   Kleuren en typografie volgen het brandboard:
   Copper #B87333 · Light Copper #D4A373 · Deep Charcoal #0F0F10
   Charcoal #1E1E20 · Off White #E5E5E3 · Geist
   ========================================================== */

/* Lokaal gehoste fonts — geen Google Fonts, geen extern verkeer */
@font-face {
  font-family: "Geist";
  src: url("fonts/Geist-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("fonts/Geist-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("fonts/Geist-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("fonts/GeistMono-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --bg: #0F0F10;
  --surface: #1E1E20;
  --surface-2: #26262a;
  --line: #333338;
  --copper: #B87333;
  --copper-light: #D4A373;
  --ink: #E5E5E3;
  --muted: #a3a39e;
  --max: 1080px;
  --radius: 10px;
}

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

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--copper-light); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--copper-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Navigatie ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15,15,16,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 28px;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1.1rem; color: var(--ink);
  margin-right: auto;
}
.brand:hover { text-decoration: none; }
.mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: linear-gradient(135deg, var(--copper-light), var(--copper));
  position: relative; flex: none;
}
.mark::after {
  content: ""; position: absolute; inset: 7px;
  background: var(--bg); border-radius: 3px;
  clip-path: polygon(0 45%, 55% 45%, 55% 0, 100% 0, 100% 55%, 45% 55%, 45% 100%, 0 100%);
}
.nav a.link { color: var(--muted); font-size: 0.95rem; }
.nav a.link:hover { color: var(--ink); text-decoration: none; }
.nav a.link[aria-current="page"] { color: var(--ink); }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-block;
  background: var(--copper);
  color: #141210;
  font-weight: 600; font-size: 0.95rem;
  padding: 11px 20px;
  border-radius: 8px;
  border: none; cursor: pointer;
}
.btn:hover { background: var(--copper-light); text-decoration: none; }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn.ghost:hover { border-color: var(--copper); background: transparent; }

/* ---------- Secties ---------- */
section { padding: 72px 0; }
section + section { border-top: 1px solid var(--line); }

.eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.12; font-weight: 600; letter-spacing: -0.02em;
  max-width: 21ch;
}
h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.2; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 18px; max-width: 26ch;
}
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 58ch; }
p + p { margin-top: 14px; }
.muted { color: var(--muted); }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 72px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 56px; align-items: center;
}
.hero .lead { margin: 22px 0 30px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Hero home: tekst links, foto rechts, zachte overloop ---------- */
.hero.hero-full {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
}
.hero.hero-full .hero-text {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero.hero-full .hero-visual {
  position: relative;
  min-width: 0;
  margin-bottom: 0;   /* geen overlap over de band */
  z-index: 1;
}
.hero.hero-full .hero-img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: center bottom;
  margin: 0;
}
/* Randen van de foto vervagen naar de paginakleur */
.hero.hero-full .hero-visual::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    linear-gradient(to right,  var(--bg) 0%, transparent 14%, transparent 86%, var(--bg) 100%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 16%, transparent 100%);
}

/* ---------- Hero met overlopende afbeelding (andere pagina's) ---------- */
.hero-overlap { padding: 72px 0 0; }
.hero-overlap .hero-grid { align-items: center; }
.hero-overlap .hero-visual {
  position: relative;
  z-index: 2;
  margin-bottom: -90px;   /* laat de afbeelding over de band eronder lopen */
}
.hero-visual .photo,
.hero-visual .ph { box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.hero-visual .ph { aspect-ratio: 4 / 5; }

/* ---------- Divider-band met logo-marquee ---------- */
.band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0 44px;
  text-align: center;
  overflow: hidden;
}
.band p {
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.band .band-label { margin: 0 0 30px; }

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;   /* gelijk aan gap voor een naadloze loop */
  flex: none;
}
.logo-ph {
  flex: none;
  white-space: nowrap;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  color: var(--muted);
  opacity: 0.75;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Antwoordkaart (signatuur-element) ---------- */
.answer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.answer-card .q {
  font-family: "Geist Mono", monospace;
  font-size: 0.82rem; color: var(--muted);
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.answer-card .a { font-size: 0.95rem; }
.cite {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-family: "Geist Mono", monospace;
  font-size: 0.74rem;
  color: var(--copper-light);
  background: rgba(184,115,51,0.10);
  border: 1px solid rgba(184,115,51,0.35);
  border-radius: 6px;
  padding: 6px 10px;
  max-width: 100%;
}
.cite::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--copper); flex: none;
}
.answer-card.no-evidence .cite {
  color: var(--muted);
  background: rgba(163,163,158,0.07);
  border-color: var(--line);
}
.answer-card.no-evidence .cite::before { background: var(--muted); }
.answer-card + .answer-card { margin-top: 16px; }

/* ---------- Kaarten & grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.card .quote {
  font-size: 1.02rem; font-weight: 500;
  margin-bottom: 10px;
}
.card .quote::before { content: "“"; color: var(--copper-light); }
.card .quote::after { content: "”"; color: var(--copper-light); }

/* Stappen (Oplossing) — genummerd, want het ís een volgorde */
.steps { display: grid; gap: 0; counter-reset: stap; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  counter-increment: stap;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: counter(stap, decimal-leading-zero);
  font-family: "Geist Mono", monospace;
  font-size: 1.4rem; color: var(--copper);
  line-height: 1.3;
}

/* Accentalinea */
.callout {
  border-left: 3px solid var(--copper);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  max-width: 62ch;
}

/* ---------- Foto-placeholders ---------- */
/* Vervang elk <div class="ph">-blok door:
   <img src="assets/img/BESTANDSNAAM" alt="..." class="photo">        */
.ph {
  aspect-ratio: 16 / 10;
  border: 1.5px dashed rgba(184,115,51,0.5);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(184,115,51,0.06), rgba(30,30,32,0.6));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 24px;
}
.ph.portrait { aspect-ratio: 4 / 5; max-width: 380px; }
.ph .ph-label {
  font-family: "Geist Mono", monospace;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--copper-light);
}
.ph .ph-file {
  font-family: "Geist Mono", monospace;
  font-size: 0.74rem; color: var(--muted);
}
.photo {
  width: 100%; border-radius: var(--radius); display: block;
  border: 1px solid var(--line);
}

/* ---------- Sectoren ---------- */
.sector-main { margin-bottom: 40px; }
.usecases { display: grid; gap: 16px; margin-top: 24px; }
.usecase {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px;
}
.sector-secondary {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; background: transparent;
}

/* ---------- Soevereiniteit ---------- */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  padding: 40px 0 48px;
  color: var(--muted); font-size: 0.9rem;
}
.foot-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-cta { margin-bottom: 40px; padding: 40px 0 0; }

/* ---------- Responsief ---------- */
@media (max-width: 820px) {
  .hero-grid, .grid-2, .pillars { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .nav a.link { display: none; }        /* compact menu: alleen logo + CTA */
  .nav a.link.keep { display: inline; } /* Contact blijft zichtbaar */
  section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .hero.hero-full { padding: 56px 0 0; }
  .hero.hero-full .hero-grid { gap: 28px; }
  .hero.hero-full .hero-img { max-height: 420px; }
  .hero-overlap .hero-visual { margin-bottom: -48px; max-width: 420px; }
}