@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input { font-family: inherit; border: none; outline: none; cursor: pointer; }

/* ─── TOKENS · Creative Agency (matched met actinc.nl palette) ───
   Wit dominante bg · aqua + magenta-roze + zacht roze + mint als
   speelse accenten. --black / --white rollen zijn geïnverteerd:
   --black is de dominante BG (wit), --white is de tekstkleur.
────────────────────────────────────────────────────────────────── */
:root {
  --black:        #FFFFFF;    /* WIT — dominante bg-rol */
  --white:        #141414;    /* dominante tekst-rol */
  --phase-1:      #8ACDDE;    /* aqua · Act Inc signature */
  --phase-2:      #E9308F;    /* magenta-roze · bold CTA */
  --phase-3:      #F3A1B2;    /* zacht roze · speels accent */
  --mint:         #BBEECC;
  --aqua-soft:    #D5EDF3;
  --pink-soft:    #FADCE4;
  --magenta:      #E9308F;
  --dark-surface: #F6F4EF;    /* zeer lichte off-white tinting */
  --mid:          #F0ECE3;    /* cream card */
  --card:         #F4F1E8;
  --espresso:     #141414;
  --text-muted:   #666666;
  --border:       rgba(20,20,20,0.12);
  --border-strong:rgba(20,20,20,0.22);

  --font-display: 'Raleway', sans-serif;
  --font-score:   'Raleway', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w: 1320px;
  --px: clamp(20px, 5vw, 80px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── BASE ───────────────────────────────────────────────────────── */
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

/* ─── CUSTOM CURSOR ──────────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--phase-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out),
              height 0.25s var(--ease-out),
              background 0.25s,
              opacity 0.2s;
  will-change: transform;
}
.cursor.grow {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--phase-1);
}
.cursor.hide { opacity: 0; }

/* ─── NOISE OVERLAY ──────────────────────────────────────────────── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ─── NAV ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 60px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(28%) sepia(88%) saturate(4589%) hue-rotate(318deg) brightness(97%) contrast(95%);
}
/* fallback text logo when image not present */
.nav__logo em { color: var(--phase-1); font-style: normal; }
.nav__links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav__links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--phase-1);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--white); }

.nav__cta {
  background: var(--phase-2);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav__cta:hover { background: #CF2178; }
.nav__cta:active { background: var(--phase-1); color: #141414; }
.nav__cta:focus,
.nav__cta:focus-visible { outline: none; background: var(--phase-1); color: #141414; }
.nav__cta { -webkit-tap-highlight-color: transparent; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MARQUEE ────────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: var(--dark-surface);
}
.marquee__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
  font-family: var(--font-score);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.marquee__track span em {
  color: var(--phase-1);
  font-style: normal;
  font-size: 14px;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee--c1 .marquee__track span { color: var(--phase-1); }
.marquee--c1 .marquee__track span em { color: var(--phase-1); opacity: 0.5; }
.marquee--c2 .marquee__track span { color: var(--phase-2); }
.marquee--c2 .marquee__track span em { color: var(--phase-2); opacity: 0.5; }
.marquee--c3 .marquee__track span { color: var(--phase-3); }
.marquee--c3 .marquee__track span em { color: var(--phase-3); opacity: 0.5; }

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

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  padding-top: 60px;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--px) 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--phase-1);
  margin-bottom: 36px;
}
.hero__tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--phase-1);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(46px, 8vw, 118px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.hero__headline .line {
  display: block;
  overflow: hidden;
}
.hero__headline .line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.85s var(--ease-out);
}
.hero__headline .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero__headline .dim { color: var(--text-muted); -webkit-text-stroke: 0; }

.hero__sub {
  margin-top: 40px;
  max-width: 500px;
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}
.hero__ctas {
  margin-top: 44px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── SCOREBOARD ─────────────────────────────────────────────────── */
.scoreboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.scoreboard__item {
  padding: 28px var(--px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--border);
}
.scoreboard__item:last-child { border-right: none; }
.scoreboard__number {
  font-family: var(--font-score);
  font-size: clamp(52px, 7vw, 84px);
  line-height: 1;
  color: var(--phase-1);
}
.scoreboard__label {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn--lime { background: var(--phase-1); color: var(--black); }
.btn--lime:hover { background: #c4f020; }
/* Pink CTA — mirrors .nav__cta look for use anywhere (no mobile hide) */
.btn--pink {
  background: var(--phase-2);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  border-radius: 2px;
}
.btn--pink:hover { background: #CF2178; }
.btn--outline { border: 1px solid var(--border-strong); color: var(--white); }
.btn--outline:hover { border-color: var(--white); }
.btn--ghost { color: var(--text-muted); }
.btn--ghost:hover { color: var(--white); }
.btn--orange { background: var(--phase-2); color: var(--white); }
.btn--orange:hover { background: #e03600; }
.btn--dark { background: var(--black); color: var(--phase-1); }
.btn--dark:hover { background: var(--mid); }

/* ─── SECTION WRAPPER ────────────────────────────────────────────── */
.section {
  padding: clamp(80px, 9vw, 140px) var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.bg-dark   { background: var(--dark-surface); }
.bg-mid    { background: var(--mid); }
.bg-lime   { background: var(--phase-1); }
.bg-orange { background: var(--phase-2); }
.bg-black  { background: var(--black); }
.bg-white  { background: var(--white); }

.bg-lime *,
.bg-orange * { color: var(--black); }
.bg-lime .text-muted,
.bg-orange .text-muted { color: rgba(8,8,8,0.45); }

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

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.section__eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.bg-lime .section__eyebrow,
.bg-orange .section__eyebrow { color: rgba(8,8,8,0.5); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.section__sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 64px;
}

/* ─── PHASE CARDS ────────────────────────────────────────────────── */
.phases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
  align-items: stretch;
}
.phase-card {
  background: var(--dark-surface);
  padding: 48px 36px 80px;
  position: relative;
  transition: background 0.3s;
  min-width: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.phase-card:hover { background: var(--aqua-soft); }
.phase-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-score);
  font-size: 80px;
  line-height: 1;
  opacity: 0.05;
  pointer-events: none;
}
.phase-card[data-phase="1"]::after { color: var(--phase-2); }
.phase-card[data-phase="2"]::after { color: var(--phase-2); }
.phase-card[data-phase="3"]::after { color: var(--phase-3); }

.phase-card__num {
  font-family: var(--font-score);
  font-size: 80px;
  line-height: 1;
  margin-bottom: 20px;
}
.phase-card[data-phase="1"] .phase-card__num { color: var(--phase-2); }
.phase-card[data-phase="2"] .phase-card__num { color: var(--phase-2); }
.phase-card[data-phase="3"] .phase-card__num { color: var(--phase-3); }

.phase-card__name {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 28px;
  margin-bottom: 16px;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}
.phase-card__name span {
  display: inline-block;
  line-height: 1.1;
  padding-bottom: 8px;
}

.phase-card__rule {
  width: 40px; height: 2px;
  margin-bottom: 20px;
}
.phase-card[data-phase="1"] .phase-card__rule { background: var(--phase-2); }
.phase-card[data-phase="2"] .phase-card__rule { background: var(--phase-2); }
.phase-card[data-phase="3"] .phase-card__rule { background: var(--phase-3); }

.phase-card__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  flex: 1;
}

.phase-card__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  transition: opacity 0.2s;
}
.phase-card[data-phase="1"] .phase-card__link { color: var(--phase-2); }
.phase-card[data-phase="2"] .phase-card__link { color: var(--phase-2); }
.phase-card[data-phase="3"] .phase-card__link { color: var(--phase-3); }

.phase-card__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.25s var(--ease-out);
}
.phase-card__link:hover::after { width: 100%; }

/* ─── PROOF BLOCK ────────────────────────────────────────────────── */
.proof {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.proof__quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.proof__attr {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.proof__video {
  aspect-ratio: 16/9;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  position: relative;
}
.proof__video:hover .play-btn { transform: scale(1.08); background: var(--phase-2); }
.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,59,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease-out), background 0.2s;
}
.play-btn svg { margin-left: 3px; }
.proof__video-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── CASE CARDS ─────────────────────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  align-items: stretch;
}
.case-card {
  background: #FFFFFF;
  padding: 48px 44px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  transition: background 0.25s, transform 0.25s;
}
.case-card:hover { background: var(--card); transform: translateY(-2px); }

.case-card__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(20,20,20,0.06);
  justify-self: start;
  color: #141414;
}
.tag--lime   { color: #141414; }
.tag--orange { color: #141414; }
.tag--cyan   { color: #141414; }
.tag--purple { color: #141414; }
.tag--red    { color: #141414; }

.case-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--phase-2);
  min-height: 3.5em; /* houdt alle titels op gelijke hoogte (3 regels) */
}
.case-card__body {
  font-size: 15px;
  font-weight: 400;
  color: #141414;
  line-height: 1.7;
  margin-bottom: 28px;
  /* in grid row 1fr, vult de overige ruimte zodat de result-lijn altijd op dezelfde plek staat */
}
.case-card__result {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  color: #141414;
  padding-top: 22px;
  border-top: 2px solid var(--phase-2);
  margin: 0;
  min-height: 7em; /* zorgt dat alle border-top lijntjes op gelijke hoogte staan over de kaarten heen */
}
.case-card__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--phase-2);
  position: relative;
  display: inline-block;
  align-self: flex-start;
  transition: color 0.2s;
}
.case-card__link:hover { color: #141414; }
.case-card__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.case-card__link:hover::after { transform: scaleX(1); }

/* ─── LEAD CAPTURE ───────────────────────────────────────────────── */
.lead { padding: clamp(80px, 10vw, 140px) var(--px); }
.lead__inner { max-width: 600px; }
.lead__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.lead__body {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.lead__form { display: flex; gap: 0; max-width: 480px; }
.lead__input {
  flex: 1;
  background: var(--mid);
  border: 1px solid var(--border);
  border-right: none;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--white);
  border-radius: 2px 0 0 2px;
}
.lead__input::placeholder { color: var(--text-muted); }
.lead__input:focus { border-color: var(--border-strong); }
.lead__submit {
  background: var(--phase-1);
  color: var(--black);
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
}
.lead__submit:hover { background: #CF2178; }
.lead__note { margin-top: 14px; font-size: 12px; color: var(--text-muted); }

/* ─── CTA BAR ────────────────────────────────────────────────────── */
.cta-bar {
  padding: clamp(48px, 6vw, 80px) var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-bar__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.cta-bar__link {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  opacity: 0.5;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.cta-bar__link:hover { opacity: 1; }

/* ─── PHASE HERO ─────────────────────────────────────────────────── */
.phase-hero {
  padding: 140px var(--px) 100px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.phase-hero__bg-num {
  position: absolute;
  top: 60px; right: -20px;
  font-family: var(--font-score);
  font-size: clamp(130px, 26vw, 300px);
  line-height: 0.85;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.c-1 { color: var(--phase-1); }
.c-2 { color: var(--phase-2); }
.c-3 { color: var(--phase-3); }

.phase-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.phase-hero__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
}

.phase-hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 128px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
}
.phase-hero__sub {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* ─── TWO-COL ────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.two-col__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.two-col__body {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}
.two-col__body p + p { margin-top: 18px; }
.two-col__body strong { font-weight: 500; color: var(--white); }

/* ─── STAT BLOCK ─────────────────────────────────────────────────── */
.stat-block { display: flex; flex-direction: column; gap: 40px; }
.stat-item__num {
  font-family: var(--font-score);
  font-size: clamp(52px, 7vw, 84px);
  line-height: 1;
  color: var(--phase-1);
}
.stat-item__label {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 6px;
  max-width: 220px;
  line-height: 1.55;
}

/* ─── METHOD CARDS ───────────────────────────────────────────────── */
.methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}
.method-card {
  background: var(--card);
  padding: 48px 40px;
}
.method-card__num {
  font-family: var(--font-score);
  font-size: 52px;
  color: var(--phase-1);
  margin-bottom: 20px;
}
.method-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  min-height: 72px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.method-card__body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── FORMAT SECTION ─────────────────────────────────────────────── */
.format-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: clamp(60px, 8vw, 100px) var(--px);
  border-top: 1px solid var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
}
.format-row + .format-row { border-top: 1px solid var(--border); }

.format-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.format-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.c-2 .format-title,
.format-title.c-2 { color: var(--phase-2); }
.format-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.spec-score {
  font-family: var(--font-score);
  font-size: 100px;
  color: var(--phase-2);
  line-height: 1;
  margin-top: 32px;
}
.spec-score-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.specs { display: flex; flex-direction: column; gap: 14px; }
.spec-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.spec-line::before {
  content: '◆';
  color: var(--phase-2);
  font-size: 8px;
  flex-shrink: 0;
}
.spec-line strong { color: var(--white); font-weight: 500; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
}
.tag-pill:hover { border-color: var(--border-strong); color: var(--white); }

/* ─── BORGEN TOOLS ───────────────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 60px;
}
.tool-card {
  background: var(--card);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.tool-card:hover { background: #181818; }
.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--phase-3);
}
.tool-card__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--phase-3);
  margin-bottom: 16px;
}
.tool-card__body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── FORGETTING CURVE ───────────────────────────────────────────── */
.curve-section { padding: clamp(80px, 9vw, 120px) var(--px); }
.curve-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.curve-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 52px;
}
.curve-legend { display: flex; gap: 28px; margin-top: 20px; }
.legend-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.legend-dot { width: 24px; height: 2px; border-radius: 2px; }

/* ─── FILTER BAR ─────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.filter-pill {
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: all 0.2s;
  cursor: none;
}
.filter-pill:hover { border-color: var(--border-strong); color: var(--white); }
.filter-pill.active { background: var(--phase-1); border-color: var(--phase-1); color: var(--black); }

/* ─── TEAM ───────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}
.team-card {
  background: var(--card);
  padding: 48px 40px;
  transition: background 0.25s;
}
.team-card:hover { background: #181818; }
.team-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--phase-1);
  margin-bottom: 24px;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.team-card__role { font-size: 13px; color: var(--text-muted); }

/* ─── VALUES ─────────────────────────────────────────────────────── */
.value-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.value-item:last-child { border-bottom: 1px solid var(--border); }
.value-num {
  font-family: var(--font-score);
  font-size: 22px;
  color: var(--text-muted);
  padding-top: 6px;
}
.value-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
}
.footer__top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.footer__logo em { color: var(--phase-1); font-style: normal; }
.footer__logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(28%) sepia(88%) saturate(4589%) hue-rotate(318deg) brightness(97%) contrast(95%);
}
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a {
  font-size: 16px;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.25s var(--ease-out);
}
.footer__links a:hover { color: var(--white); }
.footer__links a:hover::after { width: 100%; }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--px);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__legal { font-size: 12px; color: var(--text-muted); letter-spacing: 0.02em; }

/* ─── ANIMATIONS ─────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ─── SUCCES CONCEPTEN ───────────────────────────────────────────── */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}
.concept-card {
  background: var(--card);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.concept-card:hover { background: var(--pink-soft); }
.concept-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--phase-2);
}
.concept-card__num {
  font-family: var(--font-score);
  font-size: 36px;
  color: var(--phase-1);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 1;
}
.concept-card__title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--phase-2);
  overflow-wrap: break-word;
  hyphens: auto;
}
.concept-card__body {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}
.concept-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--phase-2);
}

/* ─── TEAM GRID (LARGE) ──────────────────────────────────────────── */
.team-grid--large {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}
.team-card--photo {
  background: var(--card);
  padding: 0;
  overflow: hidden;
  transition: background 0.25s;
  position: relative;
}
.team-card--photo:hover .team-card__photo-img {
  transform: scale(1.04);
}
.team-card--photo:hover .team-card__photo-info {
  background: rgba(8,8,8,0.9);
}
.team-card__photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--mid);
}
.team-card__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--ease-out);
  filter: grayscale(20%);
}
.team-card__photo-info {
  padding: 18px 20px;
  background: var(--card);
  transition: background 0.25s;
}
.team-card__photo-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--phase-1);
  margin-bottom: 3px;
}
.team-card__photo-role {
  font-size: 11px;
  color: #B8B8B8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .phases { grid-template-columns: 1fr; }
  .methods { grid-template-columns: 1fr; }
  .proof { grid-template-columns: 1fr; gap: 48px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .format-row { grid-template-columns: 1fr; gap: 40px; }
  .tools-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid--large { grid-template-columns: repeat(3, 1fr); }
  .team-card__photo-name { font-size: 13px; }
  .team-card__photo-info { padding: 14px 16px; }
  .cases-grid { grid-template-columns: 1fr; }
  .concept-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor { display: none; }
  .nav__links { display: none; flex-direction: column; }
  .nav__links.open {
    display: flex;
    position: fixed;
    top: 60px; left: 0; right: 0;
    bottom: 0;
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 24px var(--px) 40px;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
  }
  .nav__links.open a {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
    color: var(--white);
  }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .scoreboard { grid-template-columns: 1fr 1fr; }
  .scoreboard__item { border-right: none; border-bottom: 1px solid var(--border); }
  .scoreboard__item:nth-child(odd) { border-right: 1px solid var(--border); }
  .scoreboard__item:last-child { border-bottom: none; }
  .lead__form { flex-direction: column; }
  .lead__input { border-right: 1px solid var(--border); border-bottom: none; border-radius: 2px 2px 0 0; }
  .lead__submit { border-radius: 0 0 2px 2px; }
  .cta-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid--large { grid-template-columns: repeat(2, 1fr); }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__links { flex-direction: column; gap: 16px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .phase-hero { padding: 100px var(--px) 60px; }
  .phase-hero__sub { font-size: 16px; }
  .hero__sub { font-size: 15px; }
  .section__sub { font-size: 15px; }
  .two-col__body { font-size: 15px; }
  .method-card { padding: 36px 28px; }
  .case-card { padding: 36px 28px; }
  .phase-card { padding: 40px 28px; }
}

@media (max-width: 480px) {
  :root { --px: 20px; }
  .scoreboard { grid-template-columns: 1fr; }
  .scoreboard__item { border-right: none; }
  .scoreboard__item:nth-child(odd) { border-right: none; }
  .team-grid { grid-template-columns: 1fr; }
  .team-grid--large { grid-template-columns: repeat(2, 1fr); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .concept-grid { grid-template-columns: 1fr; }
  .team-card__photo-name { font-size: 12px; }
  .team-card__photo-info { padding: 12px 14px; }
}

/* ─── PRINT / PDF (whitepaper — digital, preserves website look) ───── */
@page {
  size: A4;
  margin: 0;
}
@media print {
  html, body {
    background: var(--black) !important;
    color: var(--white) !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Hide interactive / non-content chrome */
  .nav,
  .cursor,
  .nav__toggle,
  button,
  .btn,
  a.btn,
  .hero__ctas,
  .marquee {
    display: none !important;
  }

  /* Keep noise/grain subtle */
  .noise { opacity: 0.02 !important; }

  /* Animations off, but keep layout identical to website */
  .fade-in,
  .fade-in-delay-1,
  .fade-in-delay-2,
  .fade-in-delay-3,
  .fade-in-delay-4 {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* Each major section = its own PDF page (no content cut mid-section) */
  .bg-black,
  .bg-dark,
  .bg-lime {
    page-break-before: always !important;
    break-before: page !important;
    box-sizing: border-box;
  }
  /* First section: no extra blank page at top */
  body > .bg-black:first-of-type,
  body > .bg-dark:first-of-type,
  body > .bg-lime:first-of-type {
    page-break-before: avoid !important;
    break-before: avoid !important;
  }

  /* Inner padding so content breathes on A4 — tight to avoid overflow */
  .bg-black > div,
  .bg-dark > div,
  .bg-lime > div {
    padding: 18mm 16mm !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  /* Never break inside these atoms */
  h1, h2, h3,
  .section__title,
  .two-col__title,
  p,
  blockquote,
  .stat-item,
  [style*="border-left: 3px solid"] {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }
  h1, h2, h3, .section__eyebrow {
    page-break-after: avoid !important;
    break-after: avoid !important;
  }

  /* Scale down oversized hero type so it fits A4 */
  h1 { font-size: 28pt !important; line-height: 1 !important; word-break: break-word !important; overflow-wrap: break-word !important; hyphens: auto !important; }
  .section__title, .two-col__title { font-size: 22pt !important; line-height: 1.05 !important; word-break: break-word !important; overflow-wrap: break-word !important; hyphens: auto !important; }
  h2 { font-size: 22pt !important; line-height: 1.05 !important; word-break: break-word !important; overflow-wrap: break-word !important; }
  h3 { font-size: 14pt !important; }
  p, li { font-size: 11pt !important; line-height: 1.6 !important; }
  .section__sub { font-size: 13pt !important; line-height: 1.5 !important; }
  blockquote { font-size: 16pt !important; line-height: 1.25 !important; }

  /* Hide ghost-text decorations that overflow on print */
  [style*="pointer-events: none"][style*="user-select: none"] {
    display: none !important;
  }

  /* Stat items: keep stacked nicely */
  .stat-block { display: flex !important; flex-direction: column !important; gap: 16px !important; }
  .stat-item__num { font-size: 48pt !important; }

  /* Two-col layouts go single column in print */
  .two-col { grid-template-columns: 1fr !important; gap: 24px !important; }

  /* Footer as its own final page (optional, readable contact) */
  .footer {
    page-break-before: always !important;
    break-before: page !important;
    background: var(--black) !important;
  }

  /* Ensure images render crisp */
  img { max-width: 100%; height: auto; }

  /* Links in brand color */
  a { color: var(--phase-1) !important; text-decoration: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   CREATIVE AGENCY — wit-mode fixes & Raleway refinement
   Accent-blokken komen in twee families:
     LICHTE accenten (aqua, mint, zacht-roze) — DONKERE tekst
     VERZADIGDE accenten (magenta, zwart) — WITTE tekst
═══════════════════════════════════════════════════════════════════ */

/* Custom cursor uit in wit-mode */
body { cursor: auto; }
.cursor { display: none !important; }

/* Raleway refinement — zelfde schaal, speelsere snit */
.hero__headline,
.section__title,
.phase-card__name span,
.concept-card__title,
.case-card__title,
.proof__quote {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero__headline .line-inner.outline {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}
.hero__headline .line-inner.dim { color: var(--phase-2); opacity: 1; }

.scoreboard__number,
.phase-card__num,
.concept-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__eyebrow,
.hero__tag,
.concept-card__tag,
.case-card__tag {
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  font-weight: 500;
}

/* ─── LICHTE ACCENT-BLOKKEN · donkere tekst ───
   bg-lime (nu aqua), bg-pink, bg-mint, bg-aqua-soft, bg-pink-soft */
.bg-aqua        { background: var(--phase-1); }
.bg-aqua-soft   { background: var(--aqua-soft); }
.bg-pink        { background: var(--phase-3); }
.bg-pink-soft   { background: var(--pink-soft); }
.bg-mint        { background: var(--mint); }

.bg-lime,
.bg-aqua, .bg-aqua-soft,
.bg-pink, .bg-pink-soft,
.bg-mint { color: #141414; }

.bg-lime *,
.bg-aqua *, .bg-aqua-soft *,
.bg-pink *, .bg-pink-soft *,
.bg-mint * { color: #141414 !important; }

.bg-lime .text-muted,
.bg-aqua .text-muted, .bg-aqua-soft .text-muted,
.bg-pink .text-muted, .bg-pink-soft .text-muted,
.bg-mint .text-muted { color: rgba(20,20,20,0.55) !important; }

.bg-lime .section__eyebrow,
.bg-aqua .section__eyebrow, .bg-aqua-soft .section__eyebrow,
.bg-pink .section__eyebrow, .bg-pink-soft .section__eyebrow,
.bg-mint .section__eyebrow { color: rgba(20,20,20,0.5) !important; }

.bg-lime h1, .bg-lime h2, .bg-lime h3, .bg-lime p, .bg-lime a,
.bg-aqua h1, .bg-aqua h2, .bg-aqua h3, .bg-aqua p, .bg-aqua a,
.bg-pink h1, .bg-pink h2, .bg-pink h3, .bg-pink p, .bg-pink a,
.bg-mint h1, .bg-mint h2, .bg-mint h3, .bg-mint p, .bg-mint a {
  color: #141414 !important;
  border-color: #141414 !important;
}


/* ─── VERZADIGDE / DONKERE ACCENT-BLOKKEN · witte tekst ───
   bg-orange (nu magenta), bg-magenta, bg-espresso, bg-dark */
.bg-magenta { background: var(--magenta); }
.bg-espresso { background: var(--espresso); }
.bg-dark { background: var(--espresso) !important; }

.bg-orange, .bg-magenta, .bg-espresso, .bg-dark { color: #FFFFFF; }

.bg-orange *,
.bg-magenta *,
.bg-espresso *,
.bg-dark * { color: #FFFFFF !important; }

.bg-orange .text-muted,
.bg-magenta .text-muted,
.bg-espresso .text-muted,
.bg-dark .text-muted { color: rgba(255,255,255,0.7) !important; }

.bg-orange .section__eyebrow,
.bg-magenta .section__eyebrow,
.bg-espresso .section__eyebrow,
.bg-dark .section__eyebrow { color: rgba(255,255,255,0.6) !important; }

.bg-orange h1, .bg-orange h2, .bg-orange h3, .bg-orange p, .bg-orange a,
.bg-magenta h1, .bg-magenta h2, .bg-magenta h3, .bg-magenta p, .bg-magenta a,
.bg-espresso h1, .bg-espresso h2, .bg-espresso h3, .bg-espresso p, .bg-espresso a,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark p, .bg-dark a {
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

.bg-dark .c-1, .bg-espresso .c-1 { color: var(--phase-1) !important; }
.bg-dark .c-2, .bg-espresso .c-2 { color: var(--phase-3) !important; }
.bg-dark .c-3, .bg-espresso .c-3 { color: var(--mint) !important; }

.bg-orange .c-1, .bg-magenta .c-1 { color: var(--mint) !important; }
.bg-orange .c-2, .bg-magenta .c-2 { color: var(--aqua-soft) !important; }
.bg-orange .c-3, .bg-magenta .c-3 { color: var(--pink-soft) !important; }

/* ─── KNOPPEN ─── */
.btn--lime    { background: var(--phase-1); color: #141414; }
.btn--lime:hover   { background: #6AB7CA; }
.btn--orange  { background: var(--phase-2); color: #FFFFFF; }
.btn--orange:hover { background: #CF2178; }
.btn--outline { border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: #FFFFFF; }

/* ─── SCOREBOARDS & NUMMERS ─── */
.scoreboard__number { color: var(--phase-2); }
.phase-card[data-phase="1"] .phase-card__num { color: var(--phase-2); }
.phase-card[data-phase="2"] .phase-card__num { color: var(--phase-2); }
.phase-card[data-phase="3"] .phase-card__num { color: var(--phase-3); }

/* ─── NAV ─── */
.nav { background: rgba(255,255,255,0.88); backdrop-filter: blur(14px); }

/* ─── NOISE ─── */
.noise { opacity: 0.012; }

/* ─── PHASE CARDS BINNEN AQUA-SECTIE · hard roze accenten ─── */
.bg-aqua .phase-card__num { color: var(--phase-1) !important; }
.bg-aqua .phase-card__name,
.bg-aqua .phase-card__name span { color: var(--phase-2) !important; }

/* ─── CREME-KAARTJES (var(--mid)) BINNEN DARK-SECTIES · leesbare tekst ─── */
.bg-dark div[style*="var(--mid)"],
.bg-dark div[style*="var(--mid)"] p,
.bg-dark div[style*="var(--mid)"] li { color: #444 !important; }
.bg-dark div[style*="var(--mid)"] strong { color: #141414 !important; }
.bg-dark div[style*="var(--mid)"] > div:first-child { color: var(--phase-2) !important; }
.bg-dark div[style*="var(--mid)"] ul li::marker { color: var(--phase-2) !important; }
