:root {
  --bg: #06070f;
  --fg: #fbfafc;
  --fg-muted: #a3a3a8;
  --accent: #0046de;
  --accent-hover: #0038b0;
  --border: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.04);
}

/* Zelf gehost (assets/fonts) i.p.v. via Google Fonts/Fontshare geladen:
   scheelt een DNS+TLS round trip naar twee losse third-party origins en de
   render-blokkerende externe stylesheets die daarbij hoorden. */
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/satoshi-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/satoshi-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/satoshi-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/satoshi-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  overflow-x: hidden;
}

.serif-accent {
  font-family: "Instrument Serif", "Instrument Serif Placeholder", serif;
  font-style: italic;
  font-weight: 400;
  color: #b9b9c2;
}

/* Ambient background glow, echoing the fluid blue graphic on the main site.
   Static for the whole page — only the hero gets extra movement (below),
   so long text-heavy sections (results, FAQ) stay calm and readable. */
.glow-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(700px 500px at 15% 0%, rgba(0, 70, 222, 0.4), transparent 60%),
    radial-gradient(600px 420px at 85% 10%, rgba(0, 70, 222, 0.22), transparent 60%);
}

/* Slow, subtle drift confined to the hero only */
.hero-glow {
  position: absolute;
  inset: -15% -25% auto -25%;
  height: 640px;
  z-index: -1;
  pointer-events: none;
  filter: blur(6px);
  background:
    radial-gradient(480px 380px at 22% 25%, rgba(0, 70, 222, 0.5), transparent 65%),
    radial-gradient(420px 340px at 78% 30%, rgba(0, 70, 222, 0.32), transparent 65%),
    radial-gradient(380px 300px at 50% 85%, rgba(0, 70, 222, 0.2), transparent 65%);
  animation: hero-drift 24s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(3%, -4%) scale(1.07); }
  100% { transform: translate(-3%, 3%) scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow { animation: none; }
  .results-track,
  .results-carousel-track,
  .nav-spots-dot,
  .gate-spots-dot,
  .badge-dot { animation: none; }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
}

.logo {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-spots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  white-space: nowrap;
}

.nav-spots-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
  animation: pulse-dot 1.6s infinite;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .nav-spots { display: none; }
  .site-header { padding: 20px; }
}

main {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  position: relative;
  padding: 20px 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Fills exactly one screen (minus the header) so the video-signup
     section only appears once someone scrolls — --header-h is set by
     script.js from the header's real rendered height. */
  min-height: calc(100vh - var(--header-h, 90px));
  min-height: calc(100svh - var(--header-h, 90px));
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}

.badge-alert {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.08);
  color: #f87171;
  font-weight: 700;
}

.badge-alert .badge-dot {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
  animation: pulse-dot 1.6s infinite;
}

.hero-title {
  font-size: 76px;
  line-height: 1.04;
  font-weight: 900;
  text-wrap: balance;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.accent-blue {
  color: var(--accent);
}

/* Tablet-range step between the 76px desktop title and the 36px mobile
   one — without this, widths like iPad portrait balance the second line
   onto its own extra wrap and push the hero well past one viewport. */
@media (max-width: 860px) {
  .hero-title { font-size: 56px; }
}

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0 0 40px;
}

/* Proof strip */
.proof-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.proof-strip:hover {
  opacity: 0.8;
}

.proof-stars {
  color: #f5b400;
  letter-spacing: 2px;
  font-size: 15px;
}

.proof-text strong {
  color: var(--fg);
}

/* Video */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 30px 80px -20px rgba(0, 70, 222, 0.35);
  margin-bottom: 32px;
}

.yt-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.yt-embed-target {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.yt-embed-target iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(0, 70, 222, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(0, 70, 222, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 70, 222, 0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
  padding: 14px 24px;
  font-size: 14px;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-hint {
  font-size: 13px;
  color: var(--fg-muted);
  margin: 0;
}

.capacity-note {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 380px;
  margin: 4px 0 0;
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Video-toegang gate: enige manier om bij de video te komen */
.gate-section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.gate-card {
  width: 100%;
  max-width: 480px;
  text-align: center;
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.gate-title {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 16px;
}

.gate-spots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.gate-spots-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.2s infinite;
}

.gate-copy {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0 0 28px;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gate-form input {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-family: inherit;
  /* 16px, niet 14px: onder de 16px-drempel zoomt iOS Safari automatisch in
     zodra iemand op een input tikt, wat storend is op het formulier waar
     deze hele funnel om draait. */
  font-size: 16px;
}

.gate-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.gate-form input::placeholder {
  color: var(--fg-muted);
}

.gate-submit {
  margin-top: 6px;
  width: 100%;
}

.gate-privacy {
  font-size: 12px;
  color: var(--fg-muted);
  margin: 20px 0 0;
}

/* Video section: verborgen totdat het gate-formulier is verstuurd */
.video-section {
  display: none;
  padding: 72px 0;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.video-section.is-visible {
  display: flex;
  animation: card-reveal 0.5s ease both;
}

.video-title {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 12px;
}

.video-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0 0 32px;
}

.video-below {
  margin-top: 8px;
}

.video-below-label {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0 0 16px;
}

/* How it works */
.how-section {
  padding: 40px 0 80px;
}

.how-card {
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 56px 40px;
  text-align: center;
}

.how-eyebrow-pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.how-title {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.how-sub {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 56px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  text-align: center;
}

.how-icon {
  width: 44px;
  height: 44px;
  color: var(--fg);
  margin-bottom: 20px;
}

.how-stars {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--fg-muted);
  margin: -8px 0 8px;
}

.how-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 12px;
}

.how-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0 0 10px;
}

@media (max-width: 720px) {
  .how-card { padding: 40px 20px; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Story / "Wie zijn wij" */
.story-section {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.story-title {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.story-badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 48px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.story-block h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 12px;
}

.story-block p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}

@media (max-width: 720px) {
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Results section */
.results-section {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.results-eyebrow,
.hero-eyebrow,
.closing-eyebrow,
.faq-eyebrow,
.gate-eyebrow,
.video-eyebrow,
.story-eyebrow,
.compare-eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 12px;
}

.results-title {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 12px;
}

.results-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0 0 40px;
}

.results-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.result-card {
  flex: 0 1 180px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 20px;
  background: var(--panel);
}

.result-amount {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 6px;
}

.result-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0 0 4px;
}

.result-margin {
  font-size: 13px;
  color: var(--accent);
  margin: 0;
}

/* Mobile: the static grid becomes an auto-scrolling carousel (cards are
   cloned into it by script.js) running at the same speed/animation as the
   results-gallery strip below, instead of a manually-swiped row. */
.results-carousel {
  display: none;
}

@media (max-width: 640px) {
  .results-grid {
    display: none;
  }

  .results-carousel {
    display: block;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  }

  .results-carousel-track {
    display: flex;
    align-items: stretch;
    gap: 16px;
    width: max-content;
    padding: 4px 24px;
    animation: results-scroll 50s linear infinite;
  }

  .results-carousel-track .result-card {
    flex: 0 0 220px;
  }
}

/* Results gallery — auto-scrolling strip of real screenshots */
.results-gallery {
  margin-top: 48px;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.results-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: results-scroll 50s linear infinite;
}

.results-gallery:hover .results-track {
  animation-play-state: paused;
}

.results-track img {
  height: 260px;
  width: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.5);
  display: block;
}

@keyframes results-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .results-track img { height: 200px; }
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 48px auto 0;
  text-align: left;
  align-items: start;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  background: var(--panel);
}

.testimonial-stars {
  color: #f5b400;
  letter-spacing: 2px;
  font-size: 14px;
  margin: 0 0 12px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg);
  margin: 0 0 16px;
}

.testimonial-author {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 700;
  margin: 0;
}

.testimonial-card.is-extra {
  display: none;
}

.testimonials.is-expanded .testimonial-card.is-extra {
  display: block;
  animation: card-reveal 0.4s ease both;
}

@keyframes card-reveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonials-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 28px auto 0;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.testimonials-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.testimonials.is-expanded ~ .testimonials-toggle::after {
  transform: rotate(225deg);
}

.testimonials-toggle:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.testimonials-link {
  display: block;
  margin: 16px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
}

.testimonials-link:hover {
  text-decoration: underline;
}

/* Closing CTA */
.closing {
  text-align: center;
  padding: 40px 0 100px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.closing-title {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 12px;
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin: 0 0 32px;
}

.calendly-inline-widget-lazy {
  width: 100%;
  max-width: 700px;
  min-width: 280px;
  height: 950px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (max-width: 640px) {
  .calendly-inline-widget-lazy { height: 1050px; }
}

/* Compare: waarom dit werkt vs. waarom de meeste falen */
.compare-section {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.compare-title {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 48px;
  letter-spacing: -0.01em;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.compare-col {
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px 28px;
}

.compare-good {
  background: rgba(0, 70, 222, 0.06);
  border-color: rgba(0, 70, 222, 0.25);
}

.compare-bad {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}

.compare-col h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 20px;
}

.compare-good h3 {
  color: var(--accent);
}

.compare-bad h3 {
  color: #f87171;
}

.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-col li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
}

.compare-col li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.compare-good li::before {
  content: "✓";
  color: var(--accent);
}

.compare-bad li::before {
  content: "✕";
  color: #f87171;
}

@media (max-width: 640px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.faq-title {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 40px;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  padding: 20px 24px;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(0, 70, 222, 0.35);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(135deg);
}

/* Native <details> content is display:none while closed, which blocks
   transitions — overriding display and animating max-height instead lets
   it expand smoothly without JS (grid-template-rows animation turned out
   to be unreliable across engines for this exact case). */
.faq-item p {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.3s ease;
}

.faq-item[open] p {
  max-height: 600px;
  opacity: 1;
  margin-top: 14px;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 28px 24px 40px;
  color: var(--fg-muted);
  font-size: 13px;
}

.site-footer a {
  color: var(--fg-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--fg);
}

.footer-sep {
  margin: 0 8px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* 44px: minimale aanbevolen tikgrootte, i.p.v. de eerdere 34px. */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #131316;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

.cookie-banner.is-visible {
  display: flex;
}

body.has-cookie-banner {
  padding-bottom: calc(var(--cookie-h, 100px) + 16px);
}

.cookie-text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
  /* Garandeert de minimale aanbevolen tikgrootte ongeacht font-metrics. */
  min-height: 44px;
}

@media (max-width: 640px) {
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .closing-title { font-size: 28px; }
  .lb { display: none; }
  .gate-card { padding: 32px 20px; }
  .cookie-banner { justify-content: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}
