
/* ============================================================
   1 · TOKENS  (uit colors_and_type.css — Bricks → Global Variables)
   ============================================================ */
:root {
  /* Brand */
  --navy:#1B3A6B; --navy-light:#4A6FA5; --link-blue:#6B8FC9; --accent-violet:#7B68EE;
  /* Neutrals / surfaces */
  --bg:#FFFFFF; --surface:#F5F5F5; --border:#D0D5DD; --text:#555F6E;
  /* Derived / support */
  --navy-darker:#142C52; --surface-2:#ECEFF3; --text-strong:#1B3A6B; --text-muted:#8A93A2;
  --violet-soft:#EEEBFE; --navy-soft:#EAF0F9;
  /* Semantic */
  --success:#1F9D6B; --warning:#E0A000; --danger:#D64545;
  /* Logo palette */
  --logo-blue:#0084FE; --logo-black:#000000; --dot-red:#FF272B; --dot-green:#24AD39; --dot-yellow:#FFBE1C;
  /* Type families */
  --font-display:'Thicccboi','Poppins',system-ui,-apple-system,'Segoe UI',sans-serif;
  --font-body:'Nunito',system-ui,-apple-system,'Segoe UI',sans-serif;
  /* Type scale */
  --fs-display:56px; --fs-h1:44px; --fs-h2:40px; --fs-h3:28px; --fs-h4:22px;
  --fs-lead:20px; --fs-body:16px; --fs-small:14px; --fs-caption:13px;
  /* Weights */
  --w-regular:400; --w-medium:500; --w-semibold:600; --w-bold:700; --w-extra:800;
  /* Line heights */
  --lh-tight:1.1; --lh-heading:1.2; --lh-snug:1.4; --lh-body:1.6;
  /* Spacing */
  --space-1:4px; --space-2:8px; --space-3:16px; --space-4:24px; --space-5:48px; --space-6:80px;
  /* Radii */
  --radius-nav:6px; --radius-btn:8px; --radius-card:12px; --radius-pill:999px;
  /* Shadows */
  --shadow-sm:0 1px 2px rgba(27,58,107,.06); --shadow-card:0 8px 24px rgba(27,58,107,.08);
  --shadow-lg:0 16px 40px rgba(27,58,107,.12); --shadow-btn:0 4px 12px rgba(27,58,107,.18);
  /* Layout */
  --container:1160px; --container-narrow:760px;
  /* Motion */
  --ease:cubic-bezier(0.22,1,0.36,1); --dur-fast:140ms; --dur:220ms; --dur-slow:380ms;
}

/* ============================================================
   2 · FUNNEL BASE  (uit funnel.css — alleen de regels die de content gebruikt;
   ============================================================ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body); background: var(--navy); color: var(--text);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; line-height: var(--lh-body);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--navy-soft); border-radius: 4px; }

/* layout */
.fn-container { width: 100%; max-width: 1080px; margin-inline: auto; padding-inline: clamp(1.25rem, .5rem + 3vw, 2.5rem); }

/* type helpers */
.fn-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-size: .8125rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy-light); margin: 0 0 1rem;
}
.fn-h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); line-height: 1.08; letter-spacing: -.02em; color: var(--navy); margin: 0; text-wrap: balance; }
.fn-h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; line-height: 1.25; color: var(--navy); margin: 0; }
.fn-lead { font-size: clamp(1.0625rem, 1rem + .4vw, 1.3125rem); line-height: 1.55; color: var(--text); margin: 0; text-wrap: pretty; }
.fn-muted { color: var(--text-muted); }

/* brand dots */
.fn-dots { display: inline-flex; gap: 8px; }
.fn-dots span { width: 11px; height: 11px; border-radius: 999px; display: block; }
.fn-dots span:nth-child(1) { background: var(--dot-red); }
.fn-dots span:nth-child(2) { background: var(--dot-green); }
.fn-dots span:nth-child(3) { background: var(--dot-yellow); }

/* buttons */
.fn-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; line-height: 1;
  border: 1.5px solid transparent; border-radius: var(--radius-btn); cursor: pointer;
  text-decoration: none; white-space: nowrap; text-align: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.fn-btn svg { width: 1.1em; height: 1.1em; flex: 0 0 auto; }
.fn-btn--primary { background: var(--navy); color: #fff; padding: 1rem 1.75rem; font-size: 1.0625rem; box-shadow: var(--shadow-btn); }
.fn-btn--primary:hover { background: var(--navy-light); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.fn-btn--primary:active { background: var(--navy-darker); box-shadow: none; transform: translateY(0); }
.fn-btn--block { display: flex; width: 100%; }

/* checklist */
.fn-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.fn-checklist li { display: flex; gap: .75rem; align-items: flex-start; font-size: 1.05rem; line-height: 1.5; }
.fn-check {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 999px;
  background: var(--success); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
}
.fn-check svg { width: 15px; height: 15px; stroke: #fff; stroke-width: 3.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* forms */
.fn-form { display: grid; gap: 1rem; }
.fn-field { display: grid; gap: .4rem; }
.fn-field label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--navy); }
.fn-field input {
  font-family: var(--font-body); font-size: 1.0625rem; color: var(--navy);
  padding: .85rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-btn);
  background: #fff; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  width: 100%;
}
.fn-field input::placeholder { color: var(--text-muted); }
.fn-field input:focus { border-color: var(--navy-light); box-shadow: 0 0 0 3px var(--navy-soft); outline: none; }
.fn-form__note { font-size: .8125rem; line-height: 1.5; color: var(--text-muted); margin: .35rem 0 0; }
.fn-form__note a { color: var(--link-blue); font-weight: 600; text-decoration: none; }
.fn-form__note a:hover { text-decoration: underline; }

/* form success state (getoggeld door de globale funnel.js — hier alleen de stijl) */
.fn-success { display: none; }
.fn-form.is-done { display: none; }
.fn-form.is-done + .fn-success { display: block; }
.fn-success__icon {
  width: 64px; height: 64px; border-radius: 999px; background: var(--success);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.fn-success__icon svg { width: 34px; height: 34px; stroke: #fff; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* trust row (Google rating) */
.fn-trust__stars { display: inline-flex; gap: 2px; color: var(--dot-yellow); }
.fn-trust__stars svg { width: 18px; height: 18px; fill: var(--dot-yellow); stroke: none; }
.fn-trust__text { font-size: .95rem; color: var(--text); }
.fn-trust__text strong { color: var(--navy); font-weight: 700; }

/* utilities */
.fn-center { text-align: center; }
.fn-stack { display: grid; gap: 1.25rem; }

/* ============================================================
   3 · PAGINA-EIGEN  (de inline <style> uit optin-ebook.html — verbatim,
   ============================================================ */
.op-main { flex: 1; display: flex; align-items: center; padding-block: clamp(1.5rem, 4vw, 3.5rem); }
.op-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.op-pitch .fn-h1 { color: #fff; font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); }
.op-pitch .fn-lead { color: #C6D2E6; margin-top: 1rem; }
.op-pitch .fn-checklist { margin-top: 1.75rem; }
.op-pitch .fn-checklist li { color: #EAF0F9; }

/* form card */
.op-card { background: #fff; border-radius: 18px; box-shadow: 0 40px 80px rgba(0,0,0,.4); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.op-card__head { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; }
.op-cover { flex: 0 0 auto; width: 76px; aspect-ratio: 3/4; border-radius: 6px; background: linear-gradient(150deg, #244a82, #16315c); box-shadow: 0 10px 24px rgba(0,0,0,.3); position: relative; }
.op-cover::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 7px; background: rgba(0,0,0,.28); border-radius: 6px 0 0 6px; }
.op-card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--navy); line-height: 1.15; margin: 0 0 .25rem; }
.op-card__meta { font-size: .82rem; color: var(--text-muted); margin: 0; }

.op-trust { display: flex; align-items: center; gap: .6rem; justify-content: center; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }

@media (max-width: 860px) {
  .op-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .op-pitch { text-align: center; }
  .op-pitch .fn-checklist { text-align: left; max-width: 380px; margin-inline: auto; }
}

/* ===== Bricks-conversie fixes (stripped-chrome landing, page-scoped) ===== */
html{font-size:100%!important;}                       /* rem-root reset */
.fn-h1.brxe-text-basic,.op-card__title.brxe-text-basic,.fn-h3.brxe-text-basic,.fn-eyebrow.brxe-text-basic{font-family:var(--font-display)!important;}         /* self-assert display font (chrome protection dequeued) */

