/* ============================================================
   JBF Gids / Cursus · gedeelde huisstijl
   Brand tokens 1-op-1 uit de website (globals.css):
   navy #262a3f · magenta #d622d0 · orange #ff8c42 · snow #f7f6fb
   Fonts: Mulish (body/heading) + Lobster (display/script)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300..900;1,300..900&family=Lobster&display=swap');

:root {
  --navy:        #262a3f;
  --navy-soft:   #5a5f78;
  --navy-deep:   #17202b;
  --magenta:     #d622d0;
  --magenta-soft:#ef7aeb;
  --orange:      #ff8c42;
  --orange-soft: #ffa86b;
  --orange-deep: #e06a1c;
  --snow:        #f7f6fb;
  --mist:        #e6e4ef;
  --gradient-brand: linear-gradient(135deg, #d622d0 0%, #ff8c42 100%);

  --font-body: "Mulish", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Lobster", "Brush Script MT", cursive;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: #d9d7e4; /* werkbank-achtergrond op scherm; verdwijnt bij print */
  line-height: 1.6;
  font-size: 16px;
}

/* ---------- Brand helpers ---------- */
.brand-name { font-weight: 800; letter-spacing: -0.01em; }
.script { font-family: var(--font-display); font-weight: 400; line-height: 1.3; }
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-bg { background: var(--gradient-brand); }

/* ---------- Pagina-canvas (A4) ----------
   Elke .page is één A4-vel. Op scherm als losse kaart,
   bij print exact één pagina. Zo blijft web == PDF. */
.page {
  position: relative;
  width: 210mm;
  min-height: 297mm;
  margin: 12mm auto;
  padding: 18mm 18mm 22mm;
  background: #fff;
  box-shadow: 0 10px 40px rgba(38,42,63,0.22);
  overflow: hidden;
}
.page::before { /* dunne brand-streep bovenaan elke pagina */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gradient-brand);
}

/* Lopende koptekst + paginanummer (zoals in de gids) */
.page__runhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 22px;
}
.page__runhead .logo { font-weight: 800; letter-spacing: -0.01em; text-transform: none; font-size: 13px; color: var(--navy); }
.page__footer {
  position: absolute;
  left: 18mm; right: 18mm; bottom: 12mm;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--navy-soft);
  border-top: 1px solid var(--mist);
  padding-top: 8px;
}

/* ---------- Typografie ---------- */
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 10px;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 14px; font-weight: 800; }
h1 { font-size: 40px; }
h2 { font-size: 27px; }
h3 { font-size: 18px; color: var(--navy); margin-top: 22px; }
p  { margin: 0 0 13px; }
.lead { font-size: 18px; color: var(--navy-soft); }
strong { font-weight: 800; }
a { color: var(--magenta); text-decoration: none; }

/* Genummerde stap-badge */
.step-no {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 0.8;
  color: var(--magenta);
  display: inline-block;
}

/* ---------- Componenten ---------- */
.pill {
  display: inline-block;
  background: rgba(214,34,208,0.1);
  color: var(--magenta);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
}

.quote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--navy);
  border-left: 4px solid var(--magenta);
  padding: 4px 0 4px 18px;
  margin: 18px 0;
}

.callout {
  background: var(--snow);
  border: 1px solid var(--mist);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 16px 0;
}
.callout--warn { border-color: var(--orange); background: rgba(255,140,66,0.07); }
.callout__title {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange-deep); margin-bottom: 6px;
}

/* feature-lijst met gradient-bullets */
.feat { list-style: none; padding: 0; margin: 14px 0; }
.feat li { position: relative; padding: 4px 0 4px 30px; }
.feat li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 16px; height: 16px; border-radius: 999px;
  background: var(--gradient-brand);
}
.feat li.check::after {
  content: "✓"; color: #fff; font-size: 10px; font-weight: 900;
  position: absolute; left: 3px; top: 6px;
}

/* genummerd stappenplan */
ol.steps { counter-reset: s; list-style: none; padding: 0; margin: 14px 0; }
ol.steps li { position: relative; padding: 6px 0 6px 38px; margin-bottom: 4px; }
ol.steps li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 4px;
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--navy); color: var(--orange);
  font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}

/* twee-koloms feiten (schaars / soeverein etc.) */
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0; }
.fact__label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--navy-soft); font-weight: 800; }
.fact__value { font-size: 13px; color: var(--navy); }

/* donker actie-blok (CTA) */
.cta-dark {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  margin: 18px 0;
}
.cta-dark h3 { color: var(--orange); margin-top: 0; }
.cta-dark a { color: var(--orange-soft); word-break: break-all; }

/* ---------- Coverpagina ---------- */
.cover { display: flex; flex-direction: column; justify-content: center; min-height: 261mm; text-align: center; }
.cover .kicker { font-size: 13px; letter-spacing: 0.4em; color: var(--orange); font-weight: 800; text-transform: uppercase; }
.cover h1 { font-size: 30px; letter-spacing: 0.05em; margin: 10px 0 0; }
.cover .big { font-size: 76px; line-height: 0.95; margin: 4px 0 14px; }
.cover .sub { font-family: var(--font-display); font-size: 26px; color: var(--navy-soft); }

/* Compacter vel voor tekstzware pagina's, zodat alles binnen één A4 past */
.page--tight { padding-top: 14mm; padding-bottom: 18mm; }
.page--tight p { margin-bottom: 9px; line-height: 1.5; }
.page--tight h2 { margin-bottom: 10px; }
.page--tight h3 { margin-top: 14px; margin-bottom: 8px; }
.page--tight .eyebrow { margin-bottom: 8px; }
.page--tight .feat { margin: 9px 0; }
.page--tight .feat li { padding-top: 2px; padding-bottom: 2px; line-height: 1.45; }
.page--tight .callout { margin: 12px 0; padding: 13px 16px; }

/* ============================================================
   PRINT · exact A4, één .page per vel, geen schermruis
   ============================================================ */
@page { size: A4; margin: 0; }

@media print {
  body { background: #fff; }
  .no-print { display: none !important; }
  .page {
    width: 210mm;
    min-height: 297mm;
    margin: 0;
    box-shadow: none;
    page-break-after: always;
    break-after: page;
  }
  .page:last-child { page-break-after: auto; }
  a { color: var(--navy); }
}

/* ---------- "Van de Family" persoonlijk blok ---------- */
.family-note {
  position: relative;
  background: linear-gradient(135deg, rgba(214,34,208,0.06), rgba(255,140,66,0.06));
  border: 1px solid var(--mist);
  border-left: 4px solid var(--magenta);
  border-radius: 14px;
  padding: 16px 18px 16px 20px;
  margin: 18px 0;
}
.family-note__label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--magenta); margin-bottom: 6px;
}
.family-note p { font-style: italic; color: var(--navy); margin: 0 0 8px; }
.family-note p:last-child { margin-bottom: 0; }
.family-note__sign {
  font-family: var(--font-display); font-style: normal;
  font-size: 18px; color: var(--navy-soft);
}
.family-note--todo { border-left-color: var(--orange); }
.family-note--todo .family-note__label { color: var(--orange-deep); }
.family-note--todo p { font-style: normal; color: var(--navy-soft); }

/* ---------- Video-plek (les-video van de Family) ---------- */
.video-slot {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin: 16px 0;
  background: var(--navy);
}
.video-slot iframe, .video-slot video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-slot--todo {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(214,34,208,0.10), rgba(255,140,66,0.10));
  border: 2px dashed var(--magenta-soft);
  color: var(--navy-soft); text-align: center; padding: 16px;
}
.video-slot--todo .play {
  width: 54px; height: 54px; border-radius: 999px; background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
.video-slot--todo .play::after { content: "▶"; color: #fff; font-size: 18px; margin-left: 3px; }
.video-slot__label { font-weight: 800; color: var(--navy); font-size: 14px; }
.video-slot__hint { font-size: 12px; }

/* ---------- Status-tabel (wat kan wel/niet) ---------- */
table.status {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 12.5px;
}
table.status th {
  text-align: left;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
}
table.status td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--mist);
  vertical-align: top;
  color: var(--navy-soft);
}
table.status td:first-child { font-weight: 800; color: var(--navy); width: 32%; }
table.status .ok  { color: #1a9d6a; font-weight: 800; }
table.status .no  { color: var(--magenta); font-weight: 800; }
table.status .soon{ color: var(--orange-deep); font-weight: 800; }

/* ---------- Glossary / ABC ---------- */
.abc-letter {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--magenta);
  line-height: 1;
  margin: 18px 0 8px;
  border-bottom: 2px solid var(--mist);
  padding-bottom: 4px;
}
.abc-letter:first-of-type { margin-top: 4px; }
dl.abc { margin: 0; }
dl.abc dt {
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
  margin-top: 11px;
}
dl.abc dt .tag { font-weight: 600; color: var(--navy-soft); font-size: 11px; }
dl.abc dd {
  margin: 2px 0 0;
  color: var(--navy-soft);
  font-size: 12.5px;
  line-height: 1.5;
}

/* ============================================================
   VISUALS · routekaart + partner-lockup
   ============================================================ */

/* Partner-lockup (OKX × JBF) — slanke premium strip */
.partner-lockup {
  position: relative;
  background: #0d1117;            /* sluit naadloos aan op de zwarte lockup */
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 13px 20px 15px;
  margin: 16px 0;
  text-align: center;
  overflow: hidden;
}
.partner-lockup::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-brand);
}
.partner-lockup__label {
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange-soft); margin: 0 0 9px;
}
.partner-lockup img { width: 100%; max-width: 320px; height: auto; display: block; margin: 0 auto; }

/* Routekaart — donkere, gloeiende 5-stappen visual */
.roadmap {
  position: relative;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(214,34,208,0.20), transparent 55%),
    radial-gradient(120% 90% at 100% 100%, rgba(255,140,66,0.20), transparent 55%),
    var(--navy-deep);
  border-radius: 18px;
  padding: 22px 26px 24px;
  margin: 18px 0 6px;
  overflow: hidden;
}
.roadmap::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-brand);
}
.roadmap__head {
  font-size: 10px; font-weight: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--orange-soft); margin: 0 0 18px;
}
.roadmap__step { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding-bottom: 15px; }
.roadmap__step:last-child { padding-bottom: 0; }
.roadmap__step:not(:last-child)::before {
  content: ""; position: absolute; left: 23px; top: 50px; bottom: -1px; width: 2px;
  background: linear-gradient(var(--magenta-soft), var(--orange-soft)); opacity: 0.4;
}
.roadmap__no {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--gradient-brand); color: #fff;
  font-family: var(--font-display); font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(214,34,208,0.45);
  position: relative; z-index: 1;
}
.roadmap__title { color: #fff; font-weight: 800; font-size: 15.5px; margin: 5px 0 2px; }
.roadmap__desc { color: rgba(255,255,255,0.66); font-size: 12.5px; line-height: 1.45; }

/* Hot wallet vs Cold wallet — vergelijkingsvisual */
.wallet-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0; }
.wallet {
  position: relative;
  background: var(--navy-deep);
  border-radius: 16px;
  padding: 18px 18px 16px;
  overflow: hidden;
}
.wallet::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.wallet--hot::before  { background: linear-gradient(90deg, var(--orange), var(--orange-soft)); }
.wallet--cold::before { background: linear-gradient(90deg, var(--magenta), var(--magenta-soft)); }
.wallet__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.wallet--hot  .wallet__icon { background: rgba(255,140,66,0.15); }
.wallet--cold .wallet__icon { background: rgba(214,34,208,0.15); }
.wallet__icon svg { width: 24px; height: 24px; display: block; }
.wallet__title { color: #fff; font-weight: 800; font-size: 16px; margin: 0 0 2px; }
.wallet__sub { font-size: 9.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 12px; }
.wallet--hot  .wallet__sub { color: var(--orange-soft); }
.wallet--cold .wallet__sub { color: var(--magenta-soft); }
.wallet__list { list-style: none; padding: 0; margin: 0 0 12px; }
.wallet__list li { position: relative; padding: 3px 0 3px 18px; color: rgba(255,255,255,0.78); font-size: 12px; line-height: 1.4; }
.wallet__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 999px; }
.wallet--hot  .wallet__list li::before { background: var(--orange); }
.wallet--cold .wallet__list li::before { background: var(--magenta); }
.wallet__analogy {
  font-family: var(--font-display); font-size: 14px; color: rgba(255,255,255,0.9);
  margin: 0; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1);
}

/* Platform-vergelijking (Bybit EU vs OKX) */
.plat-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0 10px; }
.plat {
  position: relative; overflow: hidden; border-radius: 16px; padding: 15px 18px 17px;
  background: radial-gradient(120% 90% at 0% 0%, rgba(214,34,208,0.16), transparent 55%), var(--navy-deep);
}
.plat--okx { background: radial-gradient(120% 90% at 100% 0%, rgba(255,140,66,0.20), transparent 55%), var(--navy-deep); }
.plat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-brand); }
.plat__tag { font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--magenta-soft); margin: 0 0 3px; }
.plat--okx .plat__tag { color: var(--orange-soft); }
.plat__name { color: #fff; font-weight: 800; font-size: 17px; margin: 0; }
.plat__list { list-style: none; padding: 0; margin: 9px 0 0; }
.plat__list li { position: relative; color: rgba(255,255,255,0.82); font-size: 12.5px; padding: 2px 0 2px 19px; }
.plat__list li::before { content: "✓"; position: absolute; left: 0; top: 2px; color: var(--magenta-soft); font-weight: 900; font-size: 11px; }
.plat--okx .plat__list li::before { color: var(--orange-soft); }
.plat__list li.extra { color: #fff; font-weight: 700; }

/* Inflatie-tabel (koopkrachtverlies €100.000) */
.inflatie {
  position: relative; overflow: hidden; border-radius: 16px; padding: 16px 20px 14px; margin: 14px 0 6px;
  background: radial-gradient(120% 90% at 0% 0%, rgba(214,34,208,0.16), transparent 55%), radial-gradient(120% 90% at 100% 100%, rgba(255,140,66,0.16), transparent 55%), var(--navy-deep);
}
.inflatie::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-brand); }
.inflatie__head { font-size: 10px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-soft); margin: 0 0 4px; }
.inflatie__title { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 2px; }
.inflatie__sub { font-size: 12px; color: rgba(255,255,255,0.65); margin: 0 0 12px; }
.inflatie__row { display: flex; align-items: center; gap: 10px; margin: 5px 0; }
.inflatie__year { width: 40px; font-weight: 800; font-size: 12px; color: rgba(255,255,255,0.8); }
.inflatie__barwrap { flex: 1; background: rgba(255,255,255,0.06); border-radius: 6px; height: 20px; }
.inflatie__bar { height: 100%; background: var(--gradient-brand); border-radius: 6px; }
.inflatie__amt { width: 74px; text-align: right; font-weight: 800; font-size: 12.5px; color: #fff; }
.inflatie__row--last .inflatie__amt { color: var(--orange-soft); }
.inflatie__loss { margin: 12px 0 0; font-weight: 800; font-size: 14px; color: var(--orange-soft); }
.inflatie__cap { margin: 6px 0 0; font-size: 11px; line-height: 1.4; color: rgba(255,255,255,0.55); }

/* Welkom-video (9:16, eigen class i.p.v. de oude 16:9 .video-slot) */
.welkomvid { text-align: center; margin: 22px 0 6px; }
.welkomvid video { display: block; margin: 0 auto; width: 256px; max-width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 18px; background: var(--navy-deep); box-shadow: 0 12px 32px rgba(38,42,63,0.22); }
.welkomvid__cap { margin: 14px 0 0; font-size: 12.5px; color: #6b7280; }

/* ---------- Scherm-only: cursus-hub ---------- */
.hub { max-width: 880px; margin: 0 auto; padding: 60px 24px 100px; color: var(--navy); }
.hub-card {
  display: flex; gap: 18px; align-items: center;
  background: #fff; border: 1px solid var(--mist);
  border-radius: 16px; padding: 20px 22px; margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(38,42,63,0.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.hub-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(38,42,63,0.14); }
.hub-card__no { font-family: var(--font-display); font-size: 40px; color: var(--magenta); line-height: 1; min-width: 54px; }
.hub-card__status { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.status--live { background: rgba(214,34,208,0.12); color: var(--magenta); }
.status--soon { background: rgba(255,140,66,0.14); color: var(--orange-deep); }
