/* Cash Flow Community — warm zwart/goud designsysteem (v3)
 * In lijn met het merkontwerp van de eventpagina (design contract juli 2026):
 * warm near-black + goud, Playfair Display voor display, Manrope voor UI/body,
 * tracked-caps knoppen en eyebrows met streepje, gouden hairlines. */

@font-face {
  font-family: 'Manrope';
  src: url('../assets/fonts/manrope-latin.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/playfair-latin.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0F0C07;
  --bg-soft: #131008;
  --panel: #1A150C;
  --panel-2: #211A0D;
  --line: rgba(227, 193, 104, 0.14);
  --line-strong: rgba(227, 193, 104, 0.30);
  --gold: #D9B75E;
  --gold-bright: #E3C168;
  --gold-deep: #B4841F;
  --text: #F6F1E4;
  --text-dim: #C9C0A9;
  --text-faint: #8F866F;
  --danger: #E58B79;
  --ok: #A7CFA0;
  --grad: linear-gradient(135deg, #E3C168 0%, #B4841F 100%);
  --ivory: #FFFDF6;
  --ink-op-goud: #231B08;
  --radius: 12px;
  --radius-klein: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-nav: 100;
  --z-dropdown: 200;
  --z-menu: 300;
}

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) var(--panel-2);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--panel-2); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

::selection { background: var(--gold); color: var(--ink-op-goud); }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

[id] { scroll-margin-top: 84px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(227, 193, 104, 0.08), transparent 60%),
    radial-gradient(700px 400px at 10% 110%, rgba(227, 193, 104, 0.05), transparent 60%);
  z-index: 0;
}

/* het gouden sterrenveld (canvas, aangemaakt door shared.js) */
#sterrenveld {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

main { position: relative; z-index: 1; flex: 1; }

img, video { max-width: 100%; display: block; }

a { color: var(--gold-bright); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold); }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

h3 {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

/* ---------- toegankelijkheid ---------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: calc(var(--z-menu) + 1);
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--gold-bright);
  color: var(--ink-op-goud);
  font-weight: 700;
  font-size: 14px;
  transform: translateY(-250%);
}

.skip-link:hover, .skip-link:focus { color: var(--ink-op-goud); }
.skip-link:focus { transform: translateY(0); }

.marge-onder { margin-bottom: 14px; }

/* ---------- kicker & accenten ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.goud { color: var(--gold-bright); }
em.goud { font-style: italic; }

/* titel op één lijn, met de beide C's een tikje lichter */
.hero h1.een-lijn { white-space: nowrap; font-size: clamp(1.7rem, 6.5vw, 4.2rem); }
.letter-licht-goud { color: #F2E2B0; }

/* hero-artwork op de hoofdpagina, verwerkt in de achtergrond:
   brede uitsnede met veel marge rond de titel, zodat de randen diep kunnen
   vervagen (links/rechts/boven/onder) zonder de titel of subregel te raken */
.hero-verwerkt {
  display: block;
  width: min(1500px, 100%);
  height: auto;
  margin: 0 auto;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

/* gouden herotitel + subregel met ruitjes (naar het merkontwerp)
   let op: .hero h1 heeft hogere specificiteit, dus hier .hero h1.hero-goudtitel */
.hero h1.hero-goudtitel,
.hero-goudtitel {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-size: clamp(1.5rem, 5vw, 3.9rem);
  background: linear-gradient(180deg, #F6E7B5 0%, #E3C168 45%, #A67C1F 82%, #D9B75E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 16px rgba(227, 193, 104, 0.22));
}
.hero-subregel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 12.5px;
  font-weight: 600;
}
.hero-subregel .ruit { font-size: 9px; color: var(--gold-bright); }
.hero-subregel::before,
.hero-subregel::after {
  content: '';
  height: 1px;
  width: min(90px, 10vw);
  background: linear-gradient(90deg, transparent, var(--line-strong));
}
.hero-subregel::after { background: linear-gradient(90deg, var(--line-strong), transparent); }
@media (max-width: 560px) {
  .hero-subregel { letter-spacing: 0.14em; font-size: 11px; gap: 8px; }
}



/* ---------- layout ---------- */

.container { width: min(1120px, 92%); margin: 0 auto; }
.container.breed { width: min(1440px, 96%); }

section { padding: 72px 0; }
section.krap { padding: 40px 0; }

.sectiekop { max-width: 640px; margin-bottom: 40px; }
.sectiekop.midden { margin-left: auto; margin-right: auto; text-align: center; }
.sectiekop h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); margin-bottom: 12px; }
.sectiekop p { color: var(--text-dim); }

.sectie-lead {
  color: var(--text-dim);
  font-size: 16.5px;
  max-width: 65ch;
  text-wrap: pretty;
}

.sectiekop.midden .sectie-lead { margin-left: auto; margin-right: auto; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(15, 12, 7, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo .monogram {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--gold-bright);
  background: #0d0a05;
  box-shadow: 0 0 0 1px var(--line-strong);
  overflow: hidden;
  flex: none;
}

.logo .monogram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links a, .nav-links button.navknop {
  display: inline-block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s var(--ease);
}

.nav-links button.navknop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links button.navknop svg { width: 14px; height: 14px; }

.nav-links a:hover, .nav-links button.navknop:hover { color: var(--gold-bright); }

.nav-links li.actief > a { color: var(--gold-bright); }

/* geanimeerde gouden onderstreping (hover + focus) op hoofdnavigatie */
.nav-links > li > a, .nav-links > li > button.navknop { position: relative; }

.nav-links > li > a::after,
.nav-links > li > button.navknop::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s var(--ease);
}

.nav-links > li > a:hover::after,
.nav-links > li > button.navknop:hover::after,
.nav-links > li > a:focus-visible::after,
.nav-links > li > button.navknop:focus-visible::after { transform: scaleX(1); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: var(--z-dropdown);
  min-width: 210px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  display: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  list-style: none;
}

/* onzichtbare brug over de 6px-spleet zodat hover niet wegvalt */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu { display: block; }

.dropdown-menu a { display: block; padding: 9px 12px; }
.dropdown-menu a:hover { background: rgba(206, 168, 94, 0.08); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta.mobiel-zichtbaar { display: none; }

.hamburger {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  border-radius: 8px;
  padding: 7px 11px;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.hamburger:hover { color: var(--gold); border-color: var(--line-strong); }

.hamburger svg { width: 20px; height: 20px; display: block; }

/* ---------- knoppen ---------- */

.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  padding: 16px 28px;
  border-radius: var(--radius-klein);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-body);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.knop.primair {
  background: var(--grad);
  color: var(--ink-op-goud);
  box-shadow: 0 8px 24px -12px rgba(150, 110, 20, 0.55);
}

.knop.primair:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(150, 110, 20, 0.7);
  color: var(--ink-op-goud);
}

.knop.secundair {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.knop.secundair:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
  background: transparent;
}

.knop:active:not(:disabled) { transform: scale(0.98); }

.knop.klein { padding: 11px 20px; font-size: 11.5px; }

.knop:disabled { opacity: 0.55; cursor: wait; transform: none; }

/* ---------- hero ---------- */

.hero { padding: 96px 0 72px; text-align: center; }

.hero .monogram-groot {
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-bright);
  background: radial-gradient(circle at 30% 25%, rgba(206, 168, 94, 0.3), rgba(206, 168, 94, 0.04));
  box-shadow: 0 0 60px rgba(206, 168, 94, 0.15);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  max-width: 720px;
  margin: 0 auto 18px;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero p.intro {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.intro { max-width: 65ch; text-wrap: pretty; }

.hero .acties { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- pijlermedaillons (site-breed) ---------- */

.hero-logomark {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 26px;
  background: #0d0a05;
  box-shadow: 0 0 0 1px var(--line-strong), 0 0 60px rgba(227, 193, 104, 0.2);
}

.pijler-icoon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--gold-bright);
  background:
    radial-gradient(circle at 32% 26%, rgba(227, 193, 104, 0.22), rgba(227, 193, 104, 0.03) 65%),
    var(--panel-2);
  box-shadow: 0 0 22px rgba(227, 193, 104, 0.14);
  margin-bottom: 18px;
}

.pijler-icoon svg { width: 28px; height: 28px; }

/* pijler-icoon met artwork als logo: de donkere fotoachtergrond valt weg tegen de
   kaart (screen-blend) en de randen vervagen rond, zodat enkel het gloeiende
   icoon met zijn eigen ring zichtbaar is — geen zichtbare fotorand */
.pijler-icoon:has(img) { border: 0; background: none; box-shadow: none; overflow: visible; }
.pijler-icoon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(circle closest-side, #000 86%, transparent 100%);
  mask-image: radial-gradient(circle closest-side, #000 86%, transparent 100%);
}
.pijler-rij .pijler-icoon:has(img) { width: 86px; height: 86px; margin-bottom: 14px; }
.pijler-rij .kaart:hover .pijler-icoon:has(img) { border: 0; box-shadow: none; filter: drop-shadow(0 0 14px rgba(227, 193, 104, 0.35)); }

a.kaart:hover .pijler-icoon,
a.kaart:focus-visible .pijler-icoon {
  border-color: var(--gold-bright);
  box-shadow: 0 0 28px rgba(227, 193, 104, 0.32);
}

@media (prefers-reduced-motion: no-preference) {
  .pijler-icoon { transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
}

/* de duokaart: twee pijlers samen, over twee kolommen */

.pijler-duo { grid-column: span 2; }

.pijler-duo-iconen { display: flex; gap: 12px; }

.pijler-duo-links { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 16px; }

.pijler-duo-links .pijl { margin-top: 0; }

@media (max-width: 640px) {
  .pijler-duo { grid-column: auto; }
}

/* ---------- pijler-rij: de vijf pijlers naast elkaar (luxe kaarten) ---------- */

.grid.pijler-rij { grid-template-columns: repeat(5, 1fr); gap: 18px; align-items: stretch; }
.pijler-rij .pijler-duo { grid-column: auto; }

.pijler-rij .kaart {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px 30px;
  border-radius: 18px;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, #191309 0%, #100d07 55%, #14100a 100%) padding-box,
    linear-gradient(165deg, rgba(227, 193, 104, 0.65) 0%, rgba(227, 193, 104, 0.14) 32%, rgba(227, 193, 104, 0.07) 65%, rgba(227, 193, 104, 0.50) 100%) border-box;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* gouden lichtgolf onderaan de kaart */
.pijler-rij .kaart::after {
  content: '';
  position: absolute;
  left: -25%;
  right: -25%;
  bottom: -10%;
  height: 44%;
  background:
    radial-gradient(55% 16% at 32% 55%, rgba(242, 226, 176, 0.34), transparent 70%),
    radial-gradient(75% 22% at 62% 75%, rgba(227, 193, 104, 0.20), transparent 72%);
  transform: rotate(-7deg);
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.pijler-rij a.kaart:hover,
.pijler-rij .kaart:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.55), 0 0 34px rgba(227, 193, 104, 0.12);
}
.pijler-rij .kaart:hover::after { opacity: 1; }
.pijler-rij .kaart:hover .pijler-icoon { border-color: var(--gold-bright); box-shadow: 0 0 30px rgba(227, 193, 104, 0.35); }

.pijler-rij .pijler-icoon { width: 64px; height: 64px; margin-bottom: 22px; }
.pijler-rij .pijler-icoon svg { width: 28px; height: 28px; filter: drop-shadow(0 0 5px rgba(227, 193, 104, 0.65)); }
.pijler-rij .pijler-duo-iconen { justify-content: center; }

.pijler-rij .kaart h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.pijler-rij .kaart h3::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  margin: 14px auto 0;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(227, 193, 104, 0.7);
}
.pijler-rij .kaart p { font-size: 13.5px; line-height: 1.75; margin: 16px 0 22px; }

.pijler-rij .kaart .pijl {
  margin-top: auto;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11.5px;
}
.pijler-rij .pijler-duo-links {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.pijler-rij .pijler-duo-links .pijl { margin-top: 0; }

@media (max-width: 1100px) { .grid.pijler-rij { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .grid.pijler-rij { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid.pijler-rij { grid-template-columns: 1fr; } }

/* ---------- hoofdpagina: kalenderwidget + bonding-kaart ---------- */

.community-meer { display: grid; grid-template-columns: 1.45fr 1fr; gap: 22px; align-items: start; }
@media (max-width: 900px) { .community-meer { grid-template-columns: 1fr; } }

.kw-kop { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.kw-kop .icoon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: rgba(206, 168, 94, 0.07);
  flex-shrink: 0;
}
.kw-kop h3 { font-size: 19px; margin-bottom: 2px; }
.kw-kop p { color: var(--text-faint); font-size: 13px; }

.mk-cel.buiten .mk-dagnr { color: var(--text-faint); opacity: 0.4; }

.kw-komende { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 14px; }
.kw-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.kw-items { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.kw-item { display: flex; align-items: center; gap: 10px; }
.kw-icoon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: rgba(206, 168, 94, 0.07);
  color: var(--gold-bright);
  flex-shrink: 0;
}
.kw-icoon svg { width: 17px; height: 17px; }
.kw-icoon.bonding { color: var(--ok); }
.kw-icoon.verjaardag { color: var(--danger); }
.kw-info { display: grid; line-height: 1.35; }
.kw-datum { font-size: 12px; color: var(--gold); font-weight: 700; }
.kw-naam { font-size: 13.5px; color: var(--text-dim); }
.kw-voet { margin-top: 16px; }
.kw-voet .pijl { font-size: 13px; font-weight: 600; color: var(--gold-bright); letter-spacing: 0.06em; }
.kw-disclaimerlink { margin-top: 18px; font-size: 13px; color: var(--text-faint); text-align: center; }

.bonding-kaart { text-align: center; display: flex; flex-direction: column; align-items: center; }
.bonding-icoon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: radial-gradient(circle at 32% 26%, rgba(227, 193, 104, 0.22), rgba(227, 193, 104, 0.03) 65%), var(--panel-2);
  box-shadow: 0 0 26px rgba(227, 193, 104, 0.25);
  margin: 4px auto 16px;
}
.bonding-icoon svg { width: 30px; height: 30px; }
.bonding-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.bonding-datum { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 38px); color: var(--text); margin-bottom: 10px; }
.bonding-tekst { color: var(--text-dim); font-size: 14px; max-width: 34ch; margin: 0 auto 18px; }
.bonding-rijen { display: grid; gap: 10px; width: 100%; margin-bottom: 20px; }
.bonding-rij {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius-klein);
  padding: 10px 14px;
  background: var(--panel-2);
}
.bonding-rij-icoon { width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-bright); flex-shrink: 0; }
.bonding-rij-icoon svg { width: 16px; height: 16px; }
.bonding-rij-info { display: grid; line-height: 1.35; }
.bonding-rij-info .label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.bonding-rij-info .waarde { font-size: 13.5px; color: var(--text); }
.bonding-knop { width: 100%; }
.bonding-noot { margin-top: 12px; font-size: 12.5px; color: var(--text-faint); }

/* ---------- video-held (LevelsSocial) & videospeler-placeholder ---------- */

.video-held {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid transparent;
  background:
    radial-gradient(70% 60% at 50% 40%, rgba(227, 193, 104, 0.14), transparent 70%),
    linear-gradient(180deg, #16110a 0%, #0e0b06 100%) padding-box,
    linear-gradient(165deg, rgba(227, 193, 104, 0.55) 0%, rgba(227, 193, 104, 0.1) 40%, rgba(227, 193, 104, 0.45) 100%) border-box;
  display: grid;
  grid-template-columns: 1.15fr auto 1fr;
  align-items: center;
  gap: 26px;
  max-width: 1020px;
  min-height: 495px;
  margin: 0 auto;
  padding: 44px 44px 70px;
  cursor: pointer;
  transition: box-shadow 0.3s var(--ease);
}
.video-held:hover { box-shadow: 0 0 46px rgba(227, 193, 104, 0.16); }
.vh-eyebrow { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.vh-titel { font-family: var(--font-display); font-size: clamp(24px, 3.2vw, 38px); line-height: 1.15; margin-bottom: 12px; }
.vh-sub { color: var(--text-dim); font-size: 15px; }
.vh-tekst { position: relative; z-index: 1; }
.vh-afspelen {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: radial-gradient(circle at 35% 30%, rgba(227, 193, 104, 0.3), rgba(20, 15, 7, 0.75) 75%);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  justify-self: center;
  box-shadow: 0 0 34px rgba(227, 193, 104, 0.35);
}
@media (prefers-reduced-motion: no-preference) {
  .vh-afspelen { animation: vh-puls 2.4s ease-in-out infinite; }
  @keyframes vh-puls {
    0%, 100% { box-shadow: 0 0 26px rgba(227, 193, 104, 0.3), 0 0 0 0 rgba(227, 193, 104, 0.35); }
    50% { box-shadow: 0 0 44px rgba(227, 193, 104, 0.55), 0 0 0 14px rgba(227, 193, 104, 0.06); }
  }
}
.video-held:hover .vh-afspelen { box-shadow: 0 0 52px rgba(227, 193, 104, 0.65); }
.vh-afspelen svg { width: 36px; height: 36px; margin-left: 5px; }
.vh-logo { justify-self: center; position: relative; z-index: 1; }
.vh-logo img {
  width: clamp(150px, 16vw, 215px);
  height: auto;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 26px rgba(227, 193, 104, 0.35));
}
.vsp-balk {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 13px;
}
.vsp-balk .vsp-lijn { position: absolute; top: -1px; left: 0; height: 2px; width: 22%; background: var(--grad); }
.vsp-balk svg { width: 16px; height: 16px; }
.vsp-balk .rechts { margin-left: auto; display: flex; gap: 16px; align-items: center; color: var(--text-faint); }
@media (max-width: 860px) {
  .video-held { grid-template-columns: 1fr; text-align: center; min-height: 460px; padding: 32px 20px 64px; }
  .vh-logo { display: none; }
}

.vh-cta-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
@media (max-width: 760px) { .vh-cta-rij { grid-template-columns: 1fr; } }
.vh-cta { display: flex; align-items: center; gap: 20px; padding: 26px 26px; }
.vh-cta-icoon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: radial-gradient(circle at 32% 26%, rgba(227, 193, 104, 0.2), rgba(227, 193, 104, 0.03) 65%);
  flex-shrink: 0;
}
.vh-cta-icoon svg { width: 30px; height: 30px; }
.vh-cta-tekst { display: grid; gap: 4px; }
.vh-cta-titel { font-family: var(--font-display); font-size: 21px; line-height: 1.25; color: var(--text); }
.vh-cta-sub { color: var(--text-dim); font-size: 13.5px; }
.vh-cta-pijl {
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  flex-shrink: 0;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.vh-cta:hover .vh-cta-pijl { box-shadow: 0 0 18px rgba(227, 193, 104, 0.35); transform: translateX(3px); }
.vh-cta-pijl svg { width: 18px; height: 18px; }

/* videospeler-placeholder (Become a Partner) */
.video-speler {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(55% 55% at 50% 42%, rgba(227, 193, 104, 0.14), transparent 70%),
    linear-gradient(180deg, #14100a 0%, #0d0a06 100%);
  min-height: 320px;
  display: grid;
  place-items: center;
  padding-bottom: 46px;
}
.video-speler .vs-logo { position: relative; display: grid; place-items: center; }
.video-speler .vs-logo img { width: clamp(150px, 18vw, 230px); height: auto; mix-blend-mode: screen; }
.video-speler .vs-play {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(10, 8, 4, 0.65);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--ivory);
  box-shadow: 0 0 30px rgba(227, 193, 104, 0.35);
}
.video-speler .vs-play svg { width: 26px; height: 26px; margin-left: 3px; }

/* ---------- Step-by-Step video's ---------- */

.stappen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 820px) { .stappen-grid { grid-template-columns: 1fr; } }
.stap-kaart { display: flex; gap: 18px; align-items: flex-start; padding: 24px; position: relative; }
.stap-nummer { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--gold-bright); line-height: 1; min-width: 44px; }
.stap-kaart[data-video] { cursor: pointer; }
.stap-kaart[data-video]:hover { border-color: var(--line-strong); }
.stap-kaart[data-video]:hover .sv-play { box-shadow: 0 0 20px rgba(227, 193, 104, 0.5); }
.stap-video {
  position: relative;
  width: 118px;
  height: 76px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #1c1710, #0e0b07);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.5);
}
.stap-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.stap-video .sv-play {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 8, 4, 0.7);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  transition: box-shadow 0.25s var(--ease);
}
.stap-video .sv-play svg { width: 15px; height: 15px; margin-left: 2px; }

/* video-lightbox */
.video-modal { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; }
.video-modal[hidden] { display: none; }
.vm-achtergrond { position: absolute; inset: 0; background: rgba(8, 6, 3, 0.88); backdrop-filter: blur(4px); }
.vm-inhoud { position: relative; width: min(960px, 94vw); }
.vm-kader { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(227, 193, 104, 0.12); background: #000; }
.vm-kader iframe { width: 100%; height: 100%; border: 0; display: block; }
.vm-sluiten {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}
.vm-sluiten:hover { border-color: var(--gold-bright); }
.stap-info { padding-right: 40px; }
.stap-info h3 { font-size: 16.5px; margin-bottom: 6px; }
.stap-info p { color: var(--text-dim); font-size: 13.5px; }
.stap-pijl {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
}
.stap-pijl svg { width: 16px; height: 16px; }
.stappen-noot { display: flex; align-items: center; gap: 16px; margin-top: 26px; padding: 20px 24px; text-align: left; }
.stappen-noot .icoon { flex-shrink: 0; }
.stappen-noot h3 { font-size: 16px; margin-bottom: 4px; }
.stappen-noot p { color: var(--text-dim); font-size: 13.5px; }

/* ---------- Groepsbot: persoonlijk fonds-dashboard ---------- */

.plus { color: var(--ok); }
.min { color: var(--danger); }

.gb-rij1 { display: grid; grid-template-columns: 1fr 1.35fr; gap: 22px; margin-bottom: 22px; }
.gb-rij2 { display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; }
.gb-tegels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 22px; }
@media (max-width: 1000px) {
  .gb-rij1, .gb-rij2 { grid-template-columns: 1fr; }
  .gb-tegels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .gb-tegels { grid-template-columns: 1fr; } }

.gb-welkom { display: flex; gap: 20px; align-items: flex-start; }
.gb-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  flex-shrink: 0;
  background: radial-gradient(circle at 32% 26%, rgba(227, 193, 104, 0.16), rgba(227, 193, 104, 0.03) 65%);
}
.gb-avatar svg { width: 28px; height: 28px; }
.gb-klein { color: var(--text-dim); font-size: 13.5px; }
.gb-naam { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--gold-bright); line-height: 1.2; }
.gb-subtiel { color: var(--text-faint); font-size: 12.5px; }
.gb-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.gb-groot { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 36px); color: var(--text); line-height: 1.25; }
.gb-groot.plus { color: var(--ok); }
.gb-groot.min { color: var(--danger); }
.gb-midden { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--text); line-height: 1.3; }

.gb-grafiek { margin-top: 14px; }
.gb-lijn, .gb-staven { width: 100%; height: auto; display: block; }
.gb-staaf-label { font-size: 10px; fill: var(--text-faint); font-family: var(--font-body); }
.gb-perioden { display: flex; gap: 8px; justify-content: flex-end; margin-top: 12px; }
.gb-perioden button {
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.gb-perioden button:hover { border-color: var(--line-strong); color: var(--text); }
.gb-perioden button.actief { background: var(--grad); color: var(--ink-op-goud); border-color: transparent; }

.gb-tegel { display: flex; gap: 14px; align-items: flex-start; padding: 22px; }
.gb-tegel-icoon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  flex-shrink: 0;
}
.gb-tegel-icoon svg { width: 18px; height: 18px; }
.gb-legende { margin-left: 14px; font-size: 12px; color: var(--text-faint); }
.gb-legende .blokje { display: inline-block; width: 11px; height: 11px; border-radius: 3px; background: var(--gold); vertical-align: -1px; margin-right: 5px; }
.gb-weekstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; border-top: 1px solid var(--line); margin-top: 16px; padding-top: 14px; }
.gb-weekstats.vier { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .gb-weekstats.vier { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gb-weekstats { grid-template-columns: 1fr; } .gb-weekstats.vier { grid-template-columns: 1fr; } }
.gb-noot { text-align: center; margin-top: 22px; color: var(--text-faint); font-size: 13px; }

/* ---------- Aurix-trackrecord (LevelsSocials) ---------- */

.aurix-kaart { display: grid; grid-template-columns: 300px 1fr; padding: 0; overflow: hidden; }
@media (max-width: 900px) {
  .aurix-kaart { grid-template-columns: 1fr; }
  .aurix-links { border-right: 0 !important; border-bottom: 1px solid var(--line); }
}
.aurix-links { padding: 26px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.aurix-kop { display: flex; align-items: center; gap: 12px; }
.aurix-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--ink-op-goud);
  font-weight: 800;
  font-size: 15px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.aurix-naam { font-weight: 700; font-size: 17px; color: var(--text); }
.aurix-sub { font-size: 12.5px; color: var(--text-faint); }
.aurix-risk { margin-left: auto; color: var(--ok); border-color: rgba(167, 207, 160, 0.35); background: rgba(167, 207, 160, 0.07); }
.aurix-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; border-top: 1px solid var(--line); padding-top: 16px; }
.aurix-groen { color: var(--ok); }
.aurix-goud { color: var(--gold-bright); }
.aurix-stats .aurix-groen,
.aurix-stats .aurix-goud { font-family: var(--font-display); font-weight: 800; font-size: 21px; margin-top: 4px; }
.aurix-knop { width: 100%; text-align: center; }
.aurix-rechts { padding: 26px; display: flex; flex-direction: column; }
.aurix-rechts-kop { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.aurix-rechts-kop h3 { font-size: 19px; margin-bottom: 2px; }
.aurix-jaren { display: flex; gap: 4px; border: 1px solid var(--line); border-radius: 10px; padding: 4px; background: var(--panel-2); }
.aurix-jaren button {
  border: 0;
  background: none;
  color: var(--text-dim);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 7px;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.aurix-jaren button:hover { color: var(--text); }
.aurix-jaren button.actief { background: var(--grad); color: var(--ink-op-goud); }
.aurix-maanden { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 12px; }
.aurix-maand { border: 1px solid var(--line); border-radius: var(--radius-klein); background: var(--panel-2); padding: 12px 10px; text-align: center; }
.aurix-maand .maand { display: block; font-size: 12px; color: var(--text-faint); margin-bottom: 4px; }
.aurix-maand .pct { font-weight: 800; color: #4ADE80; font-size: 17.5px; text-shadow: 0 0 14px rgba(74, 222, 128, 0.35); }
.aurix-voet {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 14px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.aurix-voet strong { color: var(--gold-bright); }

/* ---------- WiFiMoney: gratis toegang in 2 stappen ---------- */

.wm-subkop {
  text-align: center;
  font-size: clamp(19px, 2.4vw, 26px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.wm-stappen-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
.wm-stapkaart {
  position: relative;
  border-radius: 26px;
  padding: 40px 30px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(120% 85% at 50% 0%, rgba(227, 193, 104, 0.09), transparent 55%),
    linear-gradient(180deg, #16120b, #0c0a07);
  box-shadow: 0 0 36px rgba(227, 193, 104, 0.08), 0 18px 40px rgba(0, 0, 0, 0.45);
}
.wm-stapkaart::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1.5px;
  background: linear-gradient(160deg, rgba(244, 214, 128, 0.95), rgba(122, 90, 30, 0.45) 45%, rgba(240, 205, 110, 0.85));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.wm-medaillon {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  border: 2px solid rgba(240, 205, 110, 0.85);
  background: radial-gradient(circle at 50% 30%, rgba(227, 193, 104, 0.16), rgba(12, 10, 7, 0.3) 72%);
  box-shadow: 0 0 30px rgba(227, 193, 104, 0.28), inset 0 0 24px rgba(227, 193, 104, 0.12);
  margin-bottom: 20px;
}
.wm-medaillon svg { width: 52px; height: 52px; filter: drop-shadow(0 0 10px rgba(227, 193, 104, 0.55)); }
.wm-sier {
  position: relative;
  width: min(230px, 82%);
  height: 9px;
  margin-bottom: 16px;
}
.wm-sier::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 193, 104, 0.55), transparent);
}
.wm-sier::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 1px;
  width: 7px;
  height: 7px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(227, 193, 104, 0.8);
}
.wm-sier.klein { width: min(150px, 60%); margin-bottom: 20px; }
.wm-stapkaart h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 23px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.wm-checks { list-style: none; display: grid; gap: 10px; text-align: left; margin-bottom: 20px; }
.wm-checks li {
  position: relative;
  padding-left: 30px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}
.wm-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1.2px solid var(--gold-bright);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 0 8px rgba(227, 193, 104, 0.25);
}
.wm-goudknop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 13.5px;
  font-weight: 800;
  color: #1c1405;
  background: linear-gradient(180deg, #f6dd92, #d9ab4e);
  box-shadow: 0 0 24px rgba(227, 193, 104, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}
.wm-goudknop:hover { filter: brightness(1.07); transform: translateY(-1px); color: #1c1405; }
.wm-goudknop svg { width: 17px; height: 17px; flex-shrink: 0; }
.wm-goudknop .pijltje { font-weight: 800; }
.wm-verbinder {
  position: relative;
  align-self: center;
  margin: 0 14px;
  z-index: 1;
}
.wm-verbinder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -16px;
  right: -16px;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(227, 193, 104, 0.75), rgba(227, 193, 104, 0.35), rgba(227, 193, 104, 0.75));
}
.wm-verbinder .cirkel {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0d0b07;
  border: 2px solid var(--gold-bright);
  box-shadow: 0 0 26px rgba(227, 193, 104, 0.4);
  color: var(--gold-bright);
}
.wm-verbinder .cirkel::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(227, 193, 104, 0.4);
}
.wm-verbinder .cirkel svg { width: 26px; height: 26px; }
.wm-noot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(227, 193, 104, 0.4);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(22, 18, 11, 0.92), rgba(12, 10, 7, 0.92));
  padding: 16px 22px;
  margin-top: 28px;
  color: var(--text-dim);
  font-size: 14px;
}
.wm-noot .i-cirkel {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-bright);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 0 12px rgba(227, 193, 104, 0.25);
}
.wm-noot strong { color: var(--gold-bright); text-transform: uppercase; letter-spacing: 0.04em; }
.wm-cta-rij { text-align: center; margin-top: 28px; }
.wm-cta { font-size: 14px; padding: 16px 38px; }
@media (max-width: 900px) {
  .wm-stappen-grid { grid-template-columns: 1fr; }
  .wm-verbinder { margin: 14px 0; justify-self: center; }
  .wm-verbinder::before {
    top: -16px;
    bottom: -16px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(227, 193, 104, 0.75), rgba(227, 193, 104, 0.35), rgba(227, 193, 104, 0.75));
  }
  .wm-verbinder .cirkel svg { transform: rotate(90deg); }
}

/* wifimoney countdown */
.wm-countdown { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 34px 26px; }
.wm-countdown h3 { font-size: 21px; margin-bottom: 6px; }
.wm-teller { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.wm-teller-blok {
  min-width: 76px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-klein);
  background: rgba(206, 168, 94, 0.06);
  padding: 12px 10px;
  display: grid;
  gap: 2px;
}
.wm-teller-blok .getal { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--gold-bright); }
.wm-teller-blok .label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }

/* groepsbot: betaalinstructies + fee-info */
.gb-startkaart { max-width: 760px; margin: 0 auto; text-align: center; }
.gb-startkaart h3 { margin-bottom: 10px; }
.gb-startkaart > p { color: var(--text-dim); font-size: 14.5px; }
.gb-betaal { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; text-align: left; }
@media (max-width: 700px) { .gb-betaal { grid-template-columns: 1fr; } }
.gb-betaalblok { border: 1px solid var(--line); border-radius: var(--radius-klein); background: var(--panel-2); padding: 16px; }
.gb-kopieer { display: flex; align-items: center; gap: 10px; margin: 10px 0; }
.gb-kopieer code {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  word-break: break-all;
  flex: 1;
}
.gb-kopieer button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--gold-bright);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: border-color 0.2s var(--ease);
}
.gb-kopieer button:hover { border-color: var(--gold-bright); }
.gb-kopieer button.gekopieerd { border-color: var(--ok); color: var(--ok); }
.gb-kopieer button svg { width: 15px; height: 15px; }
.gb-zondag {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gold-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius-klein);
  background: rgba(206, 168, 94, 0.06);
  padding: 10px 14px;
  display: inline-block;
}
.gb-feekaart { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.gb-feekaart .icoon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; background: rgba(206, 168, 94, 0.07); color: var(--gold-bright); }
.gb-feekaart h3 { font-size: 16px; margin-bottom: 4px; }
.gb-feekaart p { color: var(--text-dim); font-size: 13.5px; }

/* ---------- Mining Race: referral-code in goudknop-stijl ---------- */

.ref-goudknop {
  width: 100%;
  max-width: 420px;
  justify-content: space-between;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 14.5px;
  font-weight: 800;
}
.ref-goudknop svg { width: 17px; height: 17px; flex-shrink: 0; }
.ref-goudknop .vinkje { display: none; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.ref-goudknop.gekopieerd .vinkje { display: inline; }
.ref-goudknop.gekopieerd .kopieicoon { display: none; }
.kaart .icoon.munt3d { width: auto; height: auto; border: none; background: none; border-radius: 0; display: block; }
.icoon.munt3d svg { width: 58px; height: 58px; filter: drop-shadow(0 6px 14px rgba(227, 193, 104, 0.25)); }

/* ---------- Become a Partner ---------- */

.partner-rij { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .partner-rij { grid-template-columns: 1fr; } }
.partner-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.partner-titel { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 40px); line-height: 1.15; margin-bottom: 26px; }
.partner-punten { display: grid; gap: 20px; }
.partner-punt { display: flex; gap: 16px; align-items: flex-start; }
.partner-punt-icoon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  flex-shrink: 0;
  background: radial-gradient(circle at 32% 26%, rgba(227, 193, 104, 0.18), rgba(227, 193, 104, 0.03) 65%);
}
.partner-punt-icoon svg { width: 22px; height: 22px; }
.partner-punt h3 { font-size: 16px; margin-bottom: 4px; }
.partner-punt p { color: var(--text-dim); font-size: 13.5px; }

/* ---------- kalender: events & bonding days ---------- */

.event-lijst { list-style: none; display: grid; gap: 12px; }
.event-lijst li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-klein);
  padding: 12px 14px;
  background: var(--panel-2);
  font-size: 14px;
}
.event-datum {
  display: grid;
  place-items: center;
  min-width: 58px;
  padding: 6px 8px;
  border-radius: var(--radius-klein);
  border: 1px solid var(--line-strong);
  background: rgba(206, 168, 94, 0.07);
}
.event-datum .dag { font-family: var(--font-display); font-size: 20px; color: var(--gold-bright); line-height: 1.1; }
.event-datum .maand { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.event-info { display: grid; gap: 4px; }
.event-titel { color: var(--text); font-weight: 600; }
.event-titel .badge { margin-left: 8px; }
.event-beschrijving { color: var(--text-dim); font-size: 13.5px; }
.badge.bonding { color: var(--ok); border-color: rgba(167, 207, 160, 0.35); background: rgba(167, 207, 160, 0.07); }

/* ---------- maandkalender (dashboard) ---------- */

.mk-kop { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.mk-titel { font-family: var(--font-display); font-size: 19px; color: var(--text); text-transform: capitalize; }
.mk-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--gold-bright);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.mk-nav:hover { border-color: var(--gold-bright); box-shadow: 0 0 14px rgba(227, 193, 104, 0.25); }
.mk-dagen, .mk-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.mk-dagen span {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 6px 0;
}
.mk-cel {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 13.5px;
  color: var(--text-dim);
  border-radius: 8px;
  border: 1px solid transparent;
}
.mk-cel.met-items { background: rgba(206, 168, 94, 0.06); border-color: var(--line); color: var(--text); cursor: help; }
.mk-cel.vandaag {
  background: var(--grad);
  color: var(--ink-op-goud);
  font-weight: 700;
  box-shadow: 0 0 18px rgba(227, 193, 104, 0.35);
}
.mk-dots { position: absolute; bottom: 4px; left: 0; right: 0; display: flex; justify-content: center; gap: 3px; }
.mk-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-bright); display: inline-block; }
.mk-dot.bonding { background: var(--ok); }
.mk-dot.verjaardag { background: var(--danger); }
.mk-legende { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 14px; font-size: 12px; color: var(--text-faint); }
.mk-legende > span { display: inline-flex; align-items: center; gap: 6px; }
.mk-legende .mk-dot { width: 7px; height: 7px; }
.mk-labels { display: none; }

/* grote variant (kalenderpagina): namen en events zichtbaar in de dag zelf */

.maandkalender.groot .mk-grid { gap: 6px; }
.maandkalender.groot .mk-cel {
  aspect-ratio: auto;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 8px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.015);
}
.maandkalender.groot .mk-cel.leeg { border-color: transparent; background: none; }
.maandkalender.groot .mk-cel.met-items { background: rgba(206, 168, 94, 0.05); }
.maandkalender.groot .mk-cel.vandaag {
  background: rgba(206, 168, 94, 0.10);
  color: var(--text);
  font-weight: 400;
  border-color: var(--gold-bright);
  box-shadow: 0 0 18px rgba(227, 193, 104, 0.18);
}
.maandkalender.groot .mk-dagnr { font-size: 13px; color: var(--text-faint); }
.maandkalender.groot .mk-cel.vandaag .mk-dagnr {
  background: var(--grad);
  color: var(--ink-op-goud);
  font-weight: 700;
  border-radius: 6px;
  padding: 1px 7px;
}
.maandkalender.groot .mk-dots { display: none; }
.maandkalender.groot .mk-labels { display: grid; gap: 3px; width: 100%; }
.mk-label {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 5px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--gold-bright);
  background: rgba(227, 193, 104, 0.12);
}
.mk-label svg { width: 11px; height: 11px; vertical-align: -1.5px; margin-right: 4px; }
.mk-label.bonding { color: var(--ok); background: rgba(167, 207, 160, 0.12); }
.mk-label.verjaardag { color: var(--danger); background: rgba(229, 139, 121, 0.12); }
.mk-label.meer { color: var(--text-faint); background: rgba(255, 255, 255, 0.05); }

@media (max-width: 640px) {
  .maandkalender.groot .mk-cel { min-height: 0; aspect-ratio: 1; display: grid; place-items: center; padding: 0; }
  .maandkalender.groot .mk-labels { display: none; }
  .maandkalender.groot .mk-dots { display: flex; }
}

/* ---------- kaarten & grids ---------- */

.grid { display: grid; gap: 22px; }
.grid.k2 { grid-template-columns: repeat(2, 1fr); }
.grid.k3 { grid-template-columns: repeat(3, 1fr); }
.grid.k4 { grid-template-columns: repeat(4, 1fr); }

.kaart {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

a.kaart { display: block; color: var(--text); }

a.kaart:hover, .kaart.hover:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(206, 168, 94, 0.08);
  color: var(--text);
}

.icoon { color: var(--gold-bright); }
.icoon svg { width: 22px; height: 22px; }

.kaart .icoon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(206, 168, 94, 0.07);
}

.kaart h3 { font-size: 20px; margin-bottom: 8px; }
.kaart p { color: var(--text-dim); font-size: 14.5px; }

.kaart .pijl { margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--gold-bright); letter-spacing: 0.06em; }

/* featured kaart: spant 2 kolommen, icoon links vanaf 641px */
.kaart.breed { grid-column: span 2; }

/* volle breedte als featured lead bovenaan een k3-grid */
.grid.k3 > .kaart.breed:first-child { grid-column: 1 / -1; }

@media (min-width: 641px) {
  .kaart.breed {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 24px;
    align-items: start;
  }

  .kaart.breed .icoon { grid-column: 1; grid-row: 1; margin-bottom: 0; }
  .kaart.breed > :not(.icoon) { grid-column: 2; min-width: 0; }
  .kaart.breed h3 { font-size: 22px; }
}

/* ---------- checklijst ---------- */

.checklijst { list-style: none; display: grid; gap: 12px; }

.checklijst li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--text-dim);
}

.checklijst li::before {
  content: "✦";
  color: var(--gold);
  font-size: 13px;
  flex: 0 0 auto;
}

.checklijst li strong { color: var(--text); font-weight: 600; }

/* ---------- video-placeholder ---------- */

.video-kader {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(500px 260px at 50% 0%, rgba(206, 168, 94, 0.1), transparent 70%),
    var(--panel);
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* gouden hoekaccenten */
.video-kader::before,
.video-kader::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 1;
}

.video-kader::before {
  top: 10px;
  left: 10px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  border-top-left-radius: 4px;
}

.video-kader::after {
  bottom: 10px;
  right: 10px;
  border-bottom: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  border-bottom-right-radius: 4px;
}

.video-kader:has(iframe)::before,
.video-kader:has(iframe)::after,
.video-kader:has(video)::before,
.video-kader:has(video)::after { display: none; }

.video-kader .afspelen {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  background: rgba(10, 10, 12, 0.6);
  color: var(--gold-bright);
}

.video-kader .afspelen svg { width: 22px; height: 22px; }

.video-kader .label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.video-kader iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-kader video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  border-radius: inherit;
}

/* ---------- formulieren ---------- */

.formulier-paneel {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  max-width: 520px;
  margin: 0 auto;
}

.formulier-paneel h1, .formulier-paneel h2 { font-size: 26px; margin-bottom: 6px; }
.formulier-paneel > p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 24px; }

.veld { margin-bottom: 18px; }

.veld label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 7px;
}

.veld input, .veld select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(206, 168, 94, 0.55);
  background: var(--bg-soft);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.veld input:focus, .veld select:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(206, 168, 94, 0.12);
}

.veld input::placeholder { color: var(--text-faint); }

.veld select {
  appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cea85e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-size: 16px 16px;
  background-repeat: no-repeat;
}

.veld .hint { font-size: 12.5px; color: var(--text-faint); margin-top: 6px; }

.veld-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* altijd in de accessibility tree (role=alert); pas zichtbaar gestileerd met .zichtbaar */
.form-fout {
  display: block;
  color: var(--danger);
  border-radius: 10px;
  font-size: 14px;
}

.form-fout.zichtbaar {
  background: rgba(232, 136, 122, 0.08);
  border: 1px solid rgba(232, 136, 122, 0.4);
  padding: 12px 16px;
  margin-bottom: 18px;
}

.form-fout ul { margin-left: 18px; }

.form-ok {
  display: block;
  color: var(--ok);
  border-radius: 10px;
  font-size: 14px;
}

.form-ok.zichtbaar {
  background: rgba(158, 207, 158, 0.08);
  border: 1px solid rgba(158, 207, 158, 0.4);
  padding: 12px 16px;
  margin-bottom: 18px;
}

.formulier-voet { font-size: 13.5px; color: var(--text-faint); margin-top: 18px; text-align: center; }

/* ---------- dashboard ---------- */

.dash-kop { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.dash-kop h1 { font-size: clamp(26px, 4vw, 38px); }
.dash-kop p { color: var(--text-dim); }

.gegevens-lijst { list-style: none; display: grid; gap: 0; }

.gegevens-lijst li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(206, 168, 94, 0.1);
  font-size: 14.5px;
}

.gegevens-lijst li:last-child { border-bottom: 0; }
.gegevens-lijst .sleutel { color: var(--text-faint); letter-spacing: 0.04em; text-transform: uppercase; font-size: 12px; padding-top: 2px; }
.gegevens-lijst .waarde { color: var(--text); text-align: right; word-break: break-word; }

.historie-lijst { list-style: none; display: grid; gap: 10px; max-height: 340px; overflow-y: auto; }

.historie-lijst li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(206, 168, 94, 0.12);
  border-radius: 10px;
  background: var(--bg-soft);
}

.historie-lijst .type { color: var(--gold-bright); font-weight: 600; text-transform: capitalize; }
.historie-lijst .tijd { color: var(--text-faint); }

.tabel-leeg { color: var(--text-faint); font-size: 14px; padding: 16px 0; }

/* ---------- badges / kleinigheden ---------- */

.badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  background: rgba(206, 168, 94, 0.06);
}

.badge.afgewezen { color: var(--danger); border-color: rgba(229, 139, 121, 0.35); background: rgba(229, 139, 121, 0.07); }

.scheiding { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- beheerpaneel ---------- */

.beheer-balk { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.beheer-acties { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.beheer-acties input[type="search"] {
  font: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-klein);
  padding: 10px 14px;
  min-width: 240px;
}
.beheer-acties input[type="search"]:focus { outline: none; border-color: var(--line-strong); }

.prog-cel { white-space: nowrap; }
.prog-cel label { display: inline-flex; align-items: center; gap: 3px; margin-right: 10px; font-size: 11px; color: var(--text-faint); cursor: pointer; }
.prog-cel input { accent-color: var(--gold); cursor: pointer; }

/* recruitment: dropdown in de ledentabel + gegroepeerd overzicht */
.recruiter-keuze {
  min-width: 130px;
  max-width: 170px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--panel-2);
  color: var(--text);
  font-size: 12.5px;
  font-family: var(--font-body);
  cursor: pointer;
}
.recruiter-keuze:hover, .recruiter-keuze:focus { border-color: var(--gold); outline: none; }
.rec-groep {
  border: 1px solid var(--line);
  border-radius: var(--radius-klein);
  background: var(--panel);
  padding: 14px 18px;
  margin-bottom: 12px;
}
.rec-groep h4 { font-size: 15px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.rec-aantal {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 2px 10px;
  background: rgba(206, 168, 94, 0.08);
}
.rec-groep ul { list-style: none; display: grid; gap: 6px; }
.rec-groep li { position: relative; padding-left: 20px; color: var(--text-dim); font-size: 13.5px; }
.rec-groep li::before { content: '↳'; position: absolute; left: 2px; color: var(--gold); }
.rec-datum { color: var(--text-faint); font-size: 12px; }
.rec-hint { color: var(--gold); font-size: 11px; margin-top: 4px; }
.rec-open { border-style: dashed; border-color: var(--line-strong); }

.beheer-event-velden { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 14px; }
@media (max-width: 760px) { .beheer-event-velden { grid-template-columns: 1fr; } }

.beheer-tabel-wrap { overflow-x: auto; }
.beheer-tabel { width: 100%; border-collapse: collapse; font-size: 14px; }
.beheer-tabel th {
  text-align: left;
  color: var(--text-faint);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px 10px 0;
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}
.beheer-tabel td { padding: 12px 14px 12px 0; border-bottom: 1px solid var(--line); color: var(--text-dim); vertical-align: middle; }
.beheer-tabel tr:last-child td { border-bottom: 0; }
.beheer-tabel td:first-child { color: var(--text); font-weight: 600; }
.beheer-tabel a { color: var(--gold-bright); text-decoration: none; }
.beheer-tabel a:hover { text-decoration: underline; }
.beheer-tabel code { font-size: 13px; color: var(--gold); }
.beheer-knoppen { display: flex; gap: 8px; flex-wrap: wrap; }
.beheer-knoppen .knop { padding: 8px 14px; font-size: 11px; }

/* ---------- beveiligde video's ---------- */

.video-toegang-paneel {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-klein);
  background: var(--panel);
  display: grid;
  gap: 10px;
  justify-items: start;
}
.video-toegang-paneel p { color: var(--text-dim); font-size: 14px; margin: 0; }

.disclaimer-blok { max-width: 780px; }
.disclaimer-blok h2 { font-size: 22px; margin: 34px 0 10px; }
.disclaimer-blok p, .disclaimer-blok li { color: var(--text-dim); font-size: 15px; }
.disclaimer-blok p { max-width: 65ch; text-wrap: pretty; }
.disclaimer-blok ul { margin: 10px 0 0 20px; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

/* dunne gouden lijn als detail op de bovenrand */
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
  pointer-events: none;
}

.footer-inhoud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; }

.footer-links a {
  font-size: 13.5px;
  color: var(--text-dim);
  display: inline-block;
  padding: 8px 2px;
  margin: -8px -2px;
}

.footer-links a:hover { color: var(--gold-bright); }
.footer-noot { font-size: 12.5px; color: var(--text-faint); margin-top: 18px; }

/* ---------- 404 ---------- */

.pagina-404 { text-align: center; padding: 120px 0; }
.pagina-404 .code { font-family: var(--font-display); font-size: 110px; color: var(--gold-bright); line-height: 1; }
.pagina-404 p { color: var(--text-dim); margin: 14px 0 30px; }

/* ---------- beweging: scroll-onthulling ---------- */

/* Zonder JS (geen html.js) blijft alles gewoon zichtbaar. */
html.js .onthul {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js .onthul.zichtbaar { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .onthul { opacity: 1; transform: none; transition: none; }
}

/* noodrem: head-script zet onthul-alles als shared.js niet laadt */
html.onthul-alles .onthul { opacity: 1; transform: none; }

/* ---------- beweging: hero-entree ---------- */

@media (prefers-reduced-motion: no-preference) {
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero .container > * { animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .hero .container > :nth-child(2) { animation-delay: 90ms; }
  .hero .container > :nth-child(3) { animation-delay: 180ms; }
  .hero .container > :nth-child(4) { animation-delay: 270ms; }
  .hero .container > :nth-child(5) { animation-delay: 360ms; }
  .hero .container > :nth-child(6) { animation-delay: 450ms; }
}

/* ---------- responsief: mobiele navigatie (nav past niet onder 1100px) ---------- */

@media (max-width: 1100px) {
  .hamburger {
    display: grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    z-index: var(--z-menu);
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 4%;
    gap: 2px;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }

  .nav-links.open { display: flex; }

  .nav-links a, .nav-links button.navknop { display: block; width: 100%; text-align: left; padding: 11px 10px; }

  .nav-links button.navknop {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
  }

  .nav-links > li > a::after,
  .nav-links > li > button.navknop::after { display: none; }

  .dropdown-menu {
    position: static;
    display: block;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 16px;
    min-width: 0;
  }

  .dropdown-menu::before { display: none; }

  .nav-cta { display: none; }

  .nav-cta.mobiel-zichtbaar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 10px 4px;
  }

  .nav-cta.mobiel-zichtbaar .knop {
    min-height: 44px;
    display: grid;
    place-items: center;
  }
}

/* ---------- responsief: grids & secties ---------- */

@media (max-width: 900px) {
  .grid.k4 { grid-template-columns: repeat(2, 1fr); }
  .grid.k3 { grid-template-columns: repeat(2, 1fr); }

  .grid.k3 .kaart.breed,
  .grid.k3 > .kaart.breed:first-child {
    grid-column: auto;
    display: block;
  }

  .grid.k3 .kaart.breed .icoon { margin-bottom: 18px; }
  .grid.k3 .kaart.breed h3 { font-size: 20px; }
}

@media (max-width: 640px) {
  .grid.k2, .grid.k3, .grid.k4 { grid-template-columns: 1fr; }
  .veld-rij { grid-template-columns: 1fr; }

  .kaart.breed { grid-column: auto; }

  section { padding: 52px 0; }
  .hero { padding: 64px 0 48px; }
  .formulier-paneel { padding: 26px 20px; }
}

@media (max-width: 400px) {
  .hero .eyebrow { letter-spacing: 0.18em; }
}

@media (max-width: 360px) {
  .logo { font-size: 16px; }
}
