/* ==========================================================================
   FOUNDUP — styles.css (V3: header + hero + drie kernpunten)
   Gebouwd naar het goedgekeurde referentieontwerp (1536 × 1024 px).

   SCHAALSYSTEEM (desktop ≥ 1024px)
   --u = 1/100 van de referentiebreedte (1536px → 15.36px). Alle desktop-maten zijn
   veelvouden van --u, zodat de pagina tussen 1024 en 1536px proportioneel meeschaalt
   en boven 1536px niet groter wordt (de foto loopt dan door tot de rand).

   Mobiel/tablet (< 1024px) is een aparte, eigen vertaling met dezelfde stijl.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (zelf gehost) en design tokens
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue:        #1559E7;   /* zoals gemeten in de referentie (merkblauw #2563EB ligt hier vlakbij) */
  --blue-dark:   #0F49C2;
  --ink:         #0A0E2A;   /* koppen: diep donkerblauw */
  --text-soft:   #4F5468;   /* lopende tekst */
  --line:        #EBEBEF;   /* dunne scheidingslijnen */
  --badge-bg:    #EBEFF7;
  --outline:     #262F5C;   /* rand van de secundaire knop */
  --bg:          #FFFFFF;
  --h1-strong-weight: 700;  /* "One connection" — krachtig */
  --h1-light-weight:  400;  /* "can change your business." — duidelijk lichter (regular) */

  --green-bg: #D7FBE2;  --green-fg: #10B351;
  --blue-bg:  #E0F0FE;  --blue-fg:  #0E72F9;
  --brown-bg: #FCE6DC;  --brown-fg: #914A24;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --u:   min(1vw, 15.36px);                          /* schaaleenheid, zie boven */
  --pad: max(0px, calc((100vw - 1536px) / 2));       /* extra marge op schermen breder dan 1536px */
  --logo-h: clamp(72px, 6vw, 92px);                  /* logohoogte op desktop (niet afhankelijk van schermhoogte) */
  --header-h: 72px;                                  /* hoogte van de header op mobiel en na scrollen */
}

/* --------------------------------------------------------------------------
   2. Reset / basis
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; }

:focus-visible { outline: 3px solid rgba(21, 89, 231, 0.55); outline-offset: 3px; border-radius: 8px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  padding: 10px 16px; background: var(--ink); color: #fff; border-radius: 10px; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.br-d { display: none; }   /* regelafbreking alleen op desktop (zie media query) */

/* --------------------------------------------------------------------------
   3. Knoppen
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  height: 48px; padding: 0 24px; border: 1px solid transparent; border-radius: 16px;
  font: inherit; font-size: 1rem; font-weight: 500; line-height: 1; text-decoration: none; white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.btn .arrow { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(21, 89, 231, 0.6); }

.btn-outline { background: #fff; color: var(--ink); border-color: var(--outline); font-weight: 500; }
.btn-outline:hover { background: #F5F7FC; transform: translateY(-1px); }

.btn-header { height: 46px; padding: 0 22px; border-radius: 20px; background: var(--blue); color: #fff; font-size: 1rem; font-weight: 600; }
.btn-header:hover { background: var(--blue-dark); }

/* --------------------------------------------------------------------------
   4. Header (mobiel-basis)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: saturate(1.4) blur(10px); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; height: var(--header-h); padding-inline: 20px; }

.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--ink); }
.brand-logo { height: 58px; width: auto; }
.brand-fallback { display: none; font-weight: 800; font-size: 1.375rem; letter-spacing: 0.02em; }
.brand.logo-missing .brand-logo { display: none; }
.brand.logo-missing .brand-fallback { display: inline; }

.nav-toggle {
  display: none; width: 46px; height: 46px; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; color: var(--ink);
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after  { top: 0; transform: rotate(-45deg); }

/* Zonder JS blijft de navigatie gewoon zichtbaar onder het logo */
.site-nav { flex-basis: 100%; padding-bottom: 12px; background: #fff; }
.nav-list { display: flex; flex-wrap: wrap; gap: 0 20px; }
.nav-list a { display: block; padding: 8px 0; text-decoration: none; font-weight: 500; }
.site-nav .btn-header { margin-top: 8px; }

/* Met JS: inklapbaar menu */
.js .nav-toggle { display: inline-flex; }
.js .site-nav {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  padding: 6px 20px 22px; border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px -18px rgba(10, 14, 42, 0.25);
}
.js .site-nav.is-open { display: block; }
.js .nav-list { flex-direction: column; gap: 0; }
.js .nav-list li + li { border-top: 1px solid var(--line); }
.js .nav-list a { padding: 15px 2px; font-size: 1.0625rem; }
.js .site-nav .btn-header { display: flex; width: 100%; height: 52px; margin-top: 16px; }

/* --------------------------------------------------------------------------
   5. Hero (mobiel-basis: tekst eerst, foto eronder)
   -------------------------------------------------------------------------- */
.hero { position: relative; display: flex; flex-direction: column; padding-top: var(--header-h); }
.hero-copy { order: 1; position: relative; z-index: 2; padding: 30px 20px 28px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 14px 0 12px;
  background: var(--badge-bg); border-radius: 999px;
  font-size: 0.8125rem; font-weight: 600; line-height: 1; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink);
}
.badge-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--blue); flex: none; }

.hero h1 { margin-top: 20px; font-size: clamp(2.25rem, 9.4vw, 3.6rem); line-height: 1.1; letter-spacing: -0.022em; color: var(--ink); }
.h1-strong { display: block; font-weight: var(--h1-strong-weight); }
.h1-light  { display: block; font-weight: var(--h1-light-weight); letter-spacing: -0.014em; }
.pd { margin-left: -0.05em; }   /* trekt de slotpunt iets naar de s toe (kerning van het lettertype) */
.nb { display: inline-block; white-space: nowrap; }

.hero-lead { margin-top: 20px; max-width: 28em; font-size: 1rem; line-height: 1.62; font-weight: 400; color: var(--text-soft); }
.hero-kernzin { margin-top: 18px; font-size: 1.1875rem; line-height: 1.3; font-weight: 700; color: var(--ink); }

.hero-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.hero-actions .btn { width: 100%; }
@media (min-width: 560px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn { width: auto; min-width: 210px; }
}

/* Foto (mobiel: onder de tekst, over de volle breedte; zachte witte overloop links en boven) */
.hero-photo { order: 2; position: relative; aspect-ratio: 5 / 4; width: 100%; }
.hero-photo picture, .hero-photo img { display: block; width: 100%; height: 100%; }
.hero-photo img {
  object-fit: cover; object-position: 66% 20%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.35) 6%, rgba(0,0,0,.75) 13%, #000 22%), linear-gradient(to bottom, transparent 0, rgba(0,0,0,.6) 8%, #000 18%);
  mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.35) 6%, rgba(0,0,0,.75) 13%, #000 22%), linear-gradient(to bottom, transparent 0, rgba(0,0,0,.6) 8%, #000 18%);
  -webkit-mask-composite: source-in; mask-composite: intersect;
}

/* --------------------------------------------------------------------------
   6. Drie kernpunten (mobiel-basis: onder elkaar)
   -------------------------------------------------------------------------- */
.points { padding: 8px 20px 44px; }
.points-grid { display: grid; }
.point { display: flex; align-items: center; gap: 18px; padding: 26px 0; }
.point + .point { border-top: 1px solid var(--line); }

.point-icon { display: grid; place-items: center; flex: none; width: 60px; height: 60px; border-radius: 50%; }
.point-icon svg { width: 52%; height: 52%; fill: currentColor; }
.point-icon svg.stroke { fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; }
.point-icon-green { background: var(--green-bg); color: var(--green-fg); }
.point-icon-blue  { background: var(--blue-bg);  color: var(--blue-fg); }
.point-icon-brown { background: var(--brown-bg); color: var(--brown-fg); }
.point-icon-brown svg { width: 58%; height: 58%; }
.point-icon-brown .steam, .point-icon-brown .handle { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.point-icon-brown .handle { stroke-width: 2.3; }
.point-icon-brown .foam { fill: #E6B48F; }

.point h3 { font-size: 1.125rem; line-height: 1.3; font-weight: 650; letter-spacing: -0.005em; color: var(--ink); }
.point p { margin-top: 6px; font-size: 0.9375rem; line-height: 1.5; color: var(--text-soft); }

/* --------------------------------------------------------------------------
   7. Desktop (≥ 1024px): exact naar referentie, in --u-eenheden
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .br-d { display: inline; }

  /* Header: transparant over de foto */
  .site-header { background: transparent; }
  .site-header.is-scrolled { background: rgba(255, 255, 255, 0.94); }
  .header-inner {
    flex-wrap: nowrap; justify-content: flex-start;
    height: calc(var(--logo-h) + 14px); padding-inline: calc(var(--pad) + var(--u) * 6.38);
    transition: height 0.2s ease;
  }
  .site-header.is-scrolled .header-inner { height: var(--header-h); }

  .brand { width: calc(var(--u) * 14); flex: none; }
  .brand-logo { height: var(--logo-h); transition: height 0.2s ease; }
  .site-header.is-scrolled .brand-logo { height: 56px; }

  .nav-toggle, .js .nav-toggle { display: none; }
  .site-nav, .js .site-nav {
    display: flex; position: static; flex: 1; flex-basis: auto; align-items: center; padding: 0;
    background: transparent; border: 0; box-shadow: none;
  }
  .nav-list, .js .nav-list { flex-direction: row; flex-wrap: nowrap; gap: calc(var(--u) * 2.73); margin-left: calc(var(--u) * 9.83); }
  .js .nav-list li + li { border-top: 0; }
  .nav-list a, .js .nav-list a { padding: 8px 0; font-size: max(13.5px, calc(var(--u) * 0.955)); font-weight: 560; white-space: nowrap; color: var(--ink); }
  .nav-list a:hover { color: var(--blue); }

  .site-nav .btn-header, .js .site-nav .btn-header {
    display: inline-flex; width: auto; min-width: calc(var(--u) * 14.32); height: max(40px, calc(var(--u) * 3)); margin: 0 0 0 auto; padding: 0 calc(var(--u) * 1.4); flex: none;
    border-radius: calc(var(--u) * 1.3); font-size: max(14px, calc(var(--u) * 1.04));
  }

  /* Hero: compacter, zodat hero + drie kernpunten samen in één scherm passen.
     Hoogte = beschikbare schermhoogte min de kernpuntenrij (9.7u), begrensd tussen 42u en 47u. */
  .hero { display: block; height: clamp(calc(var(--u) * 42), calc(100svh - var(--u) * 9.7), calc(var(--u) * 47)); padding-top: 0; }

  .hero-photo {
    position: absolute; top: 0; bottom: 0; right: 0; width: auto; aspect-ratio: auto; order: 0;
    left: max(calc(var(--u) * 5.99), calc(var(--pad) + 92px));
  }
  /* Zachte, geleidelijke witte overloop aan de linkerkant van de foto (alleen blending, geen kleurverloop-ontwerp) */
  .hero-photo img {
    object-position: 50% 6%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.03) 4%, rgba(0,0,0,.11) 9%, rgba(0,0,0,.26) 15%, rgba(0,0,0,.48) 21%, rgba(0,0,0,.72) 27%, rgba(0,0,0,.9) 33%, #000 40%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.03) 4%, rgba(0,0,0,.11) 9%, rgba(0,0,0,.26) 15%, rgba(0,0,0,.48) 21%, rgba(0,0,0,.72) 27%, rgba(0,0,0,.9) 33%, #000 40%);
    -webkit-mask-composite: source-over; mask-composite: add;
  }

  .hero-copy { padding: calc(var(--u) * 9) 0 0 calc(var(--pad) + var(--u) * 6.38); }

  .badge { height: calc(var(--u) * 2.15); padding: 0 calc(var(--u) * 0.92) 0 calc(var(--u) * 0.78); gap: calc(var(--u) * 0.52); font-size: max(12px, calc(var(--u) * 0.91)); }
  .badge-dot { width: calc(var(--u) * 0.78); height: calc(var(--u) * 0.78); }

  .hero h1 { margin-top: calc(var(--u) * 1.6); font-size: calc(var(--u) * 3.85); line-height: 1.1; letter-spacing: -0.022em; }
  .h1-light { letter-spacing: -0.014em; }
  .h1-light .nb { display: block; }

  .hero-lead { margin-top: calc(var(--u) * 1.5); max-width: none; font-size: max(14.5px, calc(var(--u) * 1.08)); line-height: 1.62; }
  .hero-kernzin { margin-top: calc(var(--u) * 1.4); font-size: max(15.5px, calc(var(--u) * 1.2)); }

  .hero-actions { flex-direction: row; gap: calc(var(--u) * 1.2); margin-top: calc(var(--u) * 1.9); }
  .hero-actions .btn { width: auto; min-width: calc(var(--u) * 13.2); height: max(42px, calc(var(--u) * 3.05)); padding: 0 calc(var(--u) * 1.6); border-radius: calc(var(--u) * 1.2); font-size: max(14px, calc(var(--u) * 0.98)); }

  /* Kernpunten: kolommen 414 / 468 / 458 px van de referentie */
  .points { padding: calc(var(--u) * 3) 0 calc(var(--u) * 2); }
  .points-grid { grid-template-columns: 26.95fr 30.47fr 29.82fr; padding-inline: calc(var(--pad) + var(--u) * 6.38); }
  .point { padding: 0; gap: calc(var(--u) * 1.9); min-width: 0; }
  .point + .point { border-top: 0; border-left: 1px solid var(--line); padding-left: calc(var(--u) * 3.9); }
  .point-icon { width: calc(var(--u) * 4.69); height: calc(var(--u) * 4.69); }
  .point h3 { font-size: max(14.5px, calc(var(--u) * 1.1)); }
  .point p { white-space: nowrap; margin-top: calc(var(--u) * 0.5); font-size: max(13px, calc(var(--u) * 0.94)); line-height: 1.5; }
}

/* Smalle desktop/laptop (1024–1279px): iets minder ruimte in navigatie en kernpunten */
@media (min-width: 1024px) and (max-width: 1279px) {
  .brand { width: calc(var(--u) * 11); }
  .nav-list, .js .nav-list { gap: calc(var(--u) * 2.2); margin-left: calc(var(--u) * 4); }
  .points-grid { grid-template-columns: 1fr 1fr 1.15fr; }
  .point + .point { padding-left: calc(var(--u) * 2.6); }
  .point { gap: calc(var(--u) * 1.5); }
  .point h3 { white-space: nowrap; font-size: max(14px, calc(var(--u) * 1.1)); }
  .point p { white-space: normal; }
}

/* Op lage schermen: --u schaalt ook mee met de hoogte, zodat hero + kernpunten in één scherm passen */
@supports (height: 1svh) {
  @media (min-width: 1024px) {
    :root { --u: min(1vw, 15.36px, 1.9svh); }
  }
}

/* --------------------------------------------------------------------------
   7b. Scherm 2 — Waarom FOUNDUP (typografie, wit, veel ruimte)
   Alleen wit; geen cards, iconen, beeld of kleurvlakken.
   -------------------------------------------------------------------------- */
.why { --brand-blue: #2563EB; padding: 80px 20px 88px; background: var(--bg); }
.why-grid { max-width: 40rem; margin-inline: auto; }

.eyebrow { font-size: 0.8125rem; font-weight: 700; line-height: 1.2; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-blue); }

.why h2 { margin-top: 20px; font-size: clamp(1.75rem, 7.2vw, 2.5rem); line-height: 1.14; font-weight: 600; letter-spacing: -0.022em; color: var(--ink); }

.why-text { margin-top: 28px; max-width: 32em; }
.why-text p { font-size: 1.0625rem; line-height: 1.7; color: var(--text-soft); }
.why-text p + p { margin-top: 1.2em; }

.why-right { margin-top: 48px; padding-top: 44px; border-top: 1px solid var(--line); }
.why-statement { font-size: clamp(1.75rem, 7.2vw, 2.5rem); line-height: 1.14; font-weight: 600; letter-spacing: -0.022em; color: var(--ink); }
.ws-1, .ws-2 { display: block; }
.ws-2 { color: var(--brand-blue); }
.why-lead { margin-top: 32px; font-size: 1.0625rem; line-height: 1.5; font-weight: 500; color: var(--text-soft); }
.why-question { margin-top: 10px; max-width: 20em; font-size: clamp(1.3rem, 5.4vw, 1.75rem); line-height: 1.32; font-weight: 600; letter-spacing: -0.015em; color: var(--ink); }

@media (min-width: 768px) {
  .why { padding: 104px 40px 112px; }
}

@media (min-width: 1024px) {
  .why { --uw: min(1vw, 15.36px); padding: calc(var(--uw) * 7.2) calc(var(--pad) + var(--u) * 6.38) calc(var(--uw) * 7.8); }
  .why-grid { display: grid; grid-template-columns: 45fr 55fr; max-width: none; margin: 0; align-items: stretch; }

  .why-left { padding-right: calc(var(--uw) * 5); }
  .eyebrow { font-size: max(12.5px, calc(var(--uw) * 0.85)); }
  .why h2 { margin-top: calc(var(--uw) * 1.5); font-size: calc(var(--uw) * 3.1); line-height: 1.14; }
  .why-text { margin-top: calc(var(--uw) * 2.6); max-width: calc(var(--uw) * 29); }
  .why-text p { font-size: max(15.5px, calc(var(--uw) * 1.1)); line-height: 1.75; }

  /* Zeer dunne verticale lijn tussen links en rechts */
  .why-right { margin: 0; padding: calc(var(--uw) * 3.35) 0 0 calc(var(--uw) * 6); border-top: 0; border-left: 1px solid var(--line); }
  .why-statement { font-size: calc(var(--uw) * 3.1); }
  .why-lead { margin-top: calc(var(--uw) * 4.2); font-size: max(15.5px, calc(var(--uw) * 1.12)); }
  .why-question { margin-top: calc(var(--uw) * 0.9); max-width: 17em; font-size: calc(var(--uw) * 1.85); }
}

/* --------------------------------------------------------------------------
   7c. Scherm 3 — Hoe het werkt (productpreview: relevante mensen vinden)
   Conceptuele FOUNDUP-interface met demodata. Echte HTML/CSS, geen afbeelding.
   -------------------------------------------------------------------------- */
.product {
  --p-blue:   #2563EB;
  --p-green:  #22C55E;
  --p-orange: #F59E0B;
  --p-dark:   #1F2937;
  --p-soft:   #6B7280;
  --p-border: #E5E7EB;
  padding: 56px 20px 64px;
  background: #F8FAFC;
}
.product-grid { display: flex; flex-direction: column; gap: 40px; }

/* --- Rechts: uitleg (mobiel eerst getoond, zie volgorde in HTML? nee: HTML-volgorde is preview dan copy;
   op mobiel draaien we visueel om zodat de uitleg eerst komt, conform de gevraagde mobiele volgorde) --- */
.product-copy { order: 1; }
.product-preview { order: 2; }

.product .eyebrow { color: var(--p-blue); }
.product h2 { margin-top: 18px; font-size: clamp(1.625rem, 6.8vw, 2.25rem); line-height: 1.16; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.product-text { margin-top: 14px; max-width: 34em; font-size: 1rem; line-height: 1.65; color: var(--text-soft); }

.signals { margin-top: 28px; }
.signal { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; }
.signal + .signal { border-top: 1px solid var(--line); }
.signal-dot { flex: none; width: 12px; height: 12px; margin-top: 4px; border-radius: 50%; }
.signal-dot-available { background: var(--p-green); }
.signal-icon { flex: none; width: 20px; height: 20px; margin-top: 1px; fill: none; stroke: var(--p-soft); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.signal-title { font-size: 1rem; font-weight: 650; color: var(--ink); }
.signal-desc { margin-top: 2px; font-size: 0.9375rem; color: var(--text-soft); }

/* Regio-signaal: opvallend maar stijlvol, nadrukkelijk kleiner dan de headline. Conceptdata. */
.product-highlight {
  display: flex; align-items: center; gap: 10px; margin-top: 22px;
  font-size: 1.0625rem; font-weight: 650; color: var(--ink);
}
.ph-dot { flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--p-green); box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16); }

/* Compacte variant van de drie signalen: ondersteunend, één regel per signaal */
.signals-compact { margin-top: 24px; }
.signals-compact .signal { gap: 10px; padding: 10px 0; }
.signals-compact .signal-dot { width: 9px; height: 9px; margin-top: 2px; }
.signals-compact .signal-icon { width: 17px; height: 17px; margin-top: 0; }
.signal-line { font-size: 0.9375rem; line-height: 1.4; color: var(--text-soft); }
.signal-line strong { color: var(--ink); font-weight: 650; }

/* --- Links: conceptuele productpreview --- */
.product-preview { max-width: 560px; margin-inline: auto; }
.pw-window {
  background: #FFFFFF; border: 1px solid var(--p-border); border-radius: 16px;
  box-shadow: 0 1px 2px rgba(31, 41, 55, 0.04); overflow: hidden;
}
.pw-head { padding: 22px 22px 16px; border-bottom: 1px solid var(--p-border); }
.pw-brand { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--p-blue); }
.pw-title { margin-top: 6px; font-size: 1.375rem; font-weight: 700; letter-spacing: -0.01em; color: var(--p-dark); }
.pw-sub { margin-top: 4px; font-size: 0.9375rem; color: var(--p-soft); }

.pw-search {
  display: flex; align-items: center; gap: 10px; margin: 16px 22px 0; padding: 11px 14px;
  background: #F9FAFB; border: 1px solid var(--p-border); border-radius: 10px;
  font-size: 0.875rem; color: var(--p-soft);
}
.pw-search-icon { width: 16px; height: 16px; flex: none; fill: none; stroke: var(--p-soft); stroke-width: 2; stroke-linecap: round; }

.pw-results { margin: 16px 0 0; padding: 0 22px 22px; display: flex; flex-direction: column; gap: 14px; }
.pw-card { padding: 16px; border: 1px solid var(--p-border); border-radius: 12px; }
.pw-card-partial { position: relative; max-height: 108px; overflow: hidden; }
.pw-card-partial::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}

.pw-card-top { display: flex; align-items: flex-start; gap: 10px; }
.pw-avatar {
  flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: #EEF2FF; color: var(--p-blue); font-size: 0.8125rem; font-weight: 700;
}
.pw-who { flex: 1; min-width: 0; }
.pw-name { font-size: 0.9375rem; font-weight: 650; color: var(--p-dark); }
.pw-meta { margin-top: 1px; font-size: 0.8125rem; color: var(--p-soft); }

.pw-status { flex: none; display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.pw-dot { width: 7px; height: 7px; border-radius: 50%; }
.pw-status-available { color: #15803D; }
.pw-status-available .pw-dot { background: var(--p-green); }
.pw-status-standby { color: #B45309; }
.pw-status-standby .pw-dot { background: var(--p-orange); }

.pw-desc { margin-top: 10px; font-size: 0.875rem; line-height: 1.5; color: var(--p-soft); }

.pw-tags { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.pw-tag-group { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.pw-tag-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--p-soft); margin-right: 2px; }
.pw-chip { padding: 3px 9px; border-radius: 999px; background: #F3F4F6; color: var(--p-dark); font-size: 0.75rem; font-weight: 500; }
.pw-chip-outline { background: #fff; border: 1px solid var(--p-border); color: var(--p-soft); }

.pw-view {
  margin-top: 14px; width: 100%; height: 38px; border: 1px solid var(--p-border); border-radius: 9px;
  background: #fff; color: var(--p-dark); font: inherit; font-size: 0.875rem; font-weight: 600; cursor: pointer;
}
.pw-view:hover { background: #F9FAFB; border-color: #D1D5DB; }

.pw-caption { margin-top: 14px; text-align: center; font-size: 0.8125rem; color: var(--p-soft); }

@media (min-width: 560px) {
  .pw-card-top { align-items: center; }
  .pw-tag-group { flex-wrap: nowrap; }
}

@media (min-width: 1024px) {
  .product { --up: min(1vw, 15.36px); padding: calc(var(--up) * 8) calc(var(--pad) + var(--up) * 6.38) calc(var(--up) * 9); }
  .product-grid { flex-direction: row; align-items: flex-start; gap: calc(var(--up) * 6); }

  .product-preview { order: 0; flex: 0 0 55%; max-width: none; margin: 0; }
  .product-copy { order: 0; flex: 0 0 45%; padding-top: calc(var(--up) * 1); }

  .product h2 { font-size: calc(var(--up) * 2.55); }
  .product-text { font-size: max(15px, calc(var(--up) * 1.05)); }
}

/* --------------------------------------------------------------------------
   7d. Scherm 4 — Finale (donker/cinematisch, geretoucheerde fotografie)
   Alle tekst/badges/CTA/social-links zijn echte HTML/CSS; alleen de foto is een afbeelding.
   -------------------------------------------------------------------------- */
.finale {
  --finale-blue: #2563EB;
  position: relative; overflow: hidden;
  background: #0A0E2A;
  padding: 72px 20px 56px;
}
.finale-photo { position: absolute; inset: 0; z-index: 0; }
.finale-photo picture, .finale-photo img { display: block; width: 100%; height: 100%; }
.finale-photo img { object-fit: cover; object-position: 62% 38%; }

.finale-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(10, 14, 42, 0.96) 0%, rgba(10, 14, 42, 0.86) 38%, rgba(10, 14, 42, 0.55) 68%, rgba(10, 14, 42, 0.32) 100%),
    linear-gradient(rgba(10, 14, 42, 0.4), rgba(10, 14, 42, 0.4));
}

.finale-inner { position: relative; z-index: 2; max-width: 34em; }

.finale h2 { font-size: clamp(2rem, 9vw, 2.75rem); line-height: 1.12; letter-spacing: -0.02em; }
.finale-line { display: block; font-weight: 700; color: #fff; }
.finale-line-blue { color: var(--finale-blue); }

.finale-sub { margin-top: 18px; font-size: 1.125rem; font-weight: 600; line-height: 1.4; color: #fff; }
.finale-lead { margin-top: 12px; font-size: 1rem; line-height: 1.6; color: rgba(255, 255, 255, 0.72); }

.finale-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.finale-badge {
  display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.32); border-radius: 999px;
  font-size: 0.875rem; font-weight: 600; color: #fff; white-space: nowrap;
}
.finale-badge-icon { width: 16px; height: 16px; fill: rgba(255, 255, 255, 0.92); }
.finale-badge-icon .steam, .finale-badge-icon .handle { fill: none; stroke: rgba(255, 255, 255, 0.92); stroke-width: 2; stroke-linecap: round; }
.finale-badge-icon .foam { fill: rgba(255, 255, 255, 0.55); }
.finale-badge .signal-dot { width: 9px; height: 9px; margin-top: 0; }
.finale-badge .signal-dot-available { background: #22C55E; }

.btn-finale { margin-top: 30px; height: 58px; padding: 0 30px; border-radius: 18px; font-size: 1.0625rem; }

.finale-micro { margin-top: 20px; font-size: 0.9375rem; line-height: 1.5; color: rgba(255, 255, 255, 0.68); }
.finale-micro strong { color: #fff; }

.finale-socials { display: flex; gap: 12px; margin-top: 22px; }
.finale-socials a {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.32); border-radius: 50%;
  color: #fff; transition: border-color 0.15s ease, background-color 0.15s ease;
}
.finale-socials a:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.08); }
.finale-socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.finale-socials svg .fs-fill { fill: currentColor; stroke: none; }

@media (min-width: 560px) {
  .finale-badges { gap: 12px; }
}

@media (min-width: 1024px) {
  .finale { --uf: min(1vw, 15.36px); padding: calc(var(--uf) * 7) calc(var(--pad) + var(--uf) * 6.38); min-height: clamp(34.5rem, 62vh, 45rem); display: flex; align-items: center; }
  .finale-photo img { object-position: 58% 34%; }
  .finale-scrim {
    background:
      linear-gradient(100deg, rgba(10, 14, 42, 0.96) 0%, rgba(10, 14, 42, 0.9) 34%, rgba(10, 14, 42, 0.6) 58%, rgba(10, 14, 42, 0.22) 78%, rgba(10, 14, 42, 0) 96%);
  }
  .finale-inner { max-width: calc(var(--uf) * 34); }
  .finale h2 { font-size: calc(var(--uf) * 3); }
  .finale-sub { font-size: max(17px, calc(var(--uf) * 1.2)); }
  .finale-lead { font-size: max(15px, calc(var(--uf) * 1.05)); }

  .btn-finale { margin-top: calc(var(--uf) * 2); height: max(48px, calc(var(--uf) * 3.6)); padding: 0 calc(var(--uf) * 2); border-radius: calc(var(--uf) * 1.35); font-size: max(16px, calc(var(--uf) * 1.08)); }
}

/* --------------------------------------------------------------------------
   7e. Footer — eenvoudig
   -------------------------------------------------------------------------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 28px 20px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.footer-brand { font-size: 0.9375rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ink); }
.footer-domain { font-size: 0.875rem; color: var(--text-soft); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 0.875rem; color: var(--text-soft); text-decoration: none; }
.footer-links a:hover { color: var(--ink); text-decoration: underline; }
.footer-copy { font-size: 0.8125rem; color: var(--text-soft); }

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; max-width: none; }
  .footer-brand, .footer-domain { text-align: left; }
  .site-footer { padding: 22px calc(var(--pad) + 20px); }
}

@media (min-width: 1024px) {
  .site-footer { padding-inline: calc(var(--pad) + var(--u) * 6.38); }
}

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