/* =========================================================
   Wolf of Washington — Sollicitatie Elmer Emanuels
   Premium dark theme · gold accents
   ========================================================= */

:root {
  /* Brand */
  --gold: #C9A227;
  --gold-light: #E5C84B;
  --gold-deep: #9c7d1d;
  --navy: #0F2A47;
  --success: #10B981;
  --accent: #3B82F6;

  /* Surfaces (warm dark) */
  --bg: #131211;
  --bg-alt: #0c0b0a;
  --surface: #1b1a16;
  --surface-2: #232017;
  --cream: #F8F6F0;

  /* Lines & text */
  --border: rgba(201, 162, 39, .18);
  --border-soft: rgba(255, 255, 255, .07);
  --text: #ECE8E0;
  --text-dim: #b1aa9d;
  --text-mute: #7e786d;

  /* Type */
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Misc */
  --maxw: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, .7);
  --glow: 0 0 0 1px var(--border), 0 18px 50px -22px rgba(201, 162, 39, .35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--gold); color: #1a1505; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.section { padding: clamp(72px, 11vw, 130px) 0; position: relative; scroll-margin-top: 84px; }
.section-alt { background: var(--bg-alt); }
section[id] { scroll-margin-top: 84px; }

/* Section headings */
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.section-head h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
}
.section-sub { margin-top: 14px; color: var(--text-dim); font-size: 1.05rem; }

/* ---------- Progress bar ---------- */
.progress-track {
  position: fixed; inset: 0 0 auto 0; height: 3px;
  background: rgba(255, 255, 255, .06); z-index: 1000;
}
.progress-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  box-shadow: 0 0 14px rgba(201, 162, 39, .7);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px clamp(18px, 4vw, 40px);
  background: rgba(15, 14, 13, 0);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12, 11, 10, .82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border-soft);
  padding-top: 10px; padding-bottom: 10px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.01em; }
.brand-name { font-size: 1rem; white-space: nowrap; }

/* Medallion logo */
.brand-badge, .hero-medallion {
  --size: 38px;
  width: var(--size); height: var(--size);
  border-radius: 50%; flex: none;
  display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(circle at 50% 38%, #ffffff 0%, #fbf8f0 58%, #efe7d4 100%);
  box-shadow: 0 0 0 1.5px var(--gold), 0 0 0 4px rgba(201, 162, 39, .14), 0 6px 18px -6px rgba(0, 0, 0, .6);
}
.brand-badge img { width: 100%; height: 100%; object-fit: cover; }
.brand-badge.small { --size: 30px; }

/* Foto-medaillon (vult de cirkel, gezicht gecentreerd) */
.brand-photo { background: var(--surface-2); }
.brand-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.brand-x { font-size: 1rem; font-weight: 700; color: var(--gold); opacity: .75; margin: 0 1px; line-height: 1; }
.brand-rocket { font-size: 1.35rem; line-height: 1; margin-left: 2px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: .92rem; font-weight: 500; color: var(--text-dim);
  padding: 8px 13px; border-radius: 999px; transition: color .25s, background .25s;
}
.nav a:hover { color: var(--text); }
.nav a.active { color: var(--gold); }
.nav a.nav-cta {
  color: #1a1505; font-weight: 700; background: linear-gradient(135deg, var(--gold-light), var(--gold));
  margin-left: 8px;
}
.nav a.nav-cta:hover { box-shadow: 0 8px 22px -8px rgba(201, 162, 39, .8); color: #1a1505; }

/* Hamburger */
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; position: relative; }
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .25s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 850;
  background: rgba(10, 9, 8, .97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; visibility: hidden; transform: scale(1.04);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: scale(1); }
.mobile-menu a { font-size: 1.4rem; font-weight: 700; color: var(--text-dim); padding: 10px 18px; transition: color .2s; }
.mobile-menu a:hover, .mobile-menu a:active { color: var(--gold); }
.mobile-menu a.nav-cta { margin-top: 14px; color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  letter-spacing: .01em; transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1505; box-shadow: 0 14px 34px -14px rgba(201, 162, 39, .8);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -14px rgba(201, 162, 39, .95); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); background: rgba(255, 255, 255, .02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 90px; overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(15, 42, 71, .55), transparent 60%),
    radial-gradient(80% 60% at 50% 120%, rgba(201, 162, 39, .12), transparent 60%),
    var(--bg);
}
.hero-glow {
  position: absolute; top: 32%; left: 50%; width: 760px; height: 760px; max-width: 120vw;
  transform: translate(-50%, -50%); pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(201, 162, 39, .22), rgba(201, 162, 39, .05) 42%, transparent 68%);
  filter: blur(8px);
}
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero-medallion { --size: clamp(86px, 13vw, 124px); margin-bottom: 30px; }
.hero-medallion img { width: 80%; height: 80%; object-fit: contain; }
.eyebrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-name {
  font-size: clamp(2.6rem, 9vw, 6rem); font-weight: 900; letter-spacing: -.03em; line-height: .98;
  background: linear-gradient(180deg, #fff 0%, #efe7d2 60%, var(--gold) 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-role {
  margin-top: 16px; font-size: clamp(1.05rem, 2.5vw, 1.5rem); font-weight: 600; color: var(--text);
  letter-spacing: .01em;
}
.hero-role::after { content: ""; display: block; width: 64px; height: 3px; margin: 22px auto 0; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-tagline {
  margin-top: 30px; max-width: 720px; font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  color: var(--text-dim); font-style: italic; line-height: 1.6;
}
.hero-cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.scroll-indicator {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-mute); font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}
.mouse { width: 24px; height: 38px; border: 2px solid var(--text-mute); border-radius: 14px; display: grid; justify-items: center; padding-top: 6px; }
.wheel { width: 4px; height: 8px; border-radius: 2px; background: var(--gold); animation: wheel 1.6s var(--ease) infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translateY(10px); } }
.scroll-text { animation: fade 1.6s ease infinite; }
@keyframes fade { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }

/* ---------- Prose ---------- */
.prose { font-size: 1.06rem; color: var(--text-dim); }
.prose p + p { margin-top: 1.05em; }
.prose.narrow { max-width: 760px; }
.prose.center { margin-inline: auto; }
.prose strong { color: var(--text); font-weight: 700; }
.prose .punchline {
  margin-top: 1.3em; font-size: 1.5rem; font-weight: 800; color: var(--gold);
  letter-spacing: -.01em;
}
.prose-intro { font-size: 1.12rem; color: var(--text); margin-bottom: 26px; }
.lead-line { margin: 46px 0 22px; font-size: 1.15rem; font-weight: 700; color: var(--text); }
.lead-line .hint { font-weight: 400; font-size: .92rem; color: var(--text-mute); }
.micro-note { margin-top: 18px; font-size: .92rem; color: var(--text-mute); }

/* ---------- Grids & cards ---------- */
.card-grid { display: grid; gap: 20px; margin-bottom: 8px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }

.feature {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.feature:hover { transform: translateY(-5px); border-color: var(--border); background: var(--surface-2); }
.feature-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 26px;
  background: radial-gradient(circle at 40% 30%, rgba(201, 162, 39, .25), rgba(201, 162, 39, .06));
  border: 1px solid var(--border); margin-bottom: 18px;
}
.feature h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--text-dim); font-size: .98rem; }

/* Split 2-col */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: center; }
.split + .lead-line { margin-top: 56px; }

/* Media card (light frame for white-bg images) */
.media-card {
  background: linear-gradient(180deg, #ffffff, #f4f1e8);
  border-radius: var(--radius); padding: 18px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  position: relative;
}
.media-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
}
.media-card img { border-radius: 8px; width: 100%; height: auto; }
.media-card figcaption {
  margin-top: 14px; padding: 0 4px 4px; font-size: .9rem; color: #5b564c; line-height: 1.5;
}
.media-card.wide { margin: 30px 0; }

/* Focus pills (section 3) */
.focus-grid { margin-top: 4px; }
.focus-pill {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px;
  position: relative; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s;
}
.focus-pill::after {
  content: ""; position: absolute; right: -30px; top: -30px; width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, .3), transparent 70%);
}
.focus-pill:hover { transform: translateY(-5px); box-shadow: var(--glow); }
.focus-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.focus-pill h3 { font-size: 1.35rem; font-weight: 800; margin: 8px 0 10px; color: #fff; }
.focus-pill p { color: var(--text-dim); font-size: .96rem; }

/* ---------- Big stat / stat rows ---------- */
.bigstat { text-align: center; margin: 8px 0 50px; }
.bigstat-num {
  display: block; font-family: var(--mono); font-weight: 700; line-height: 1;
  font-size: clamp(4rem, 16vw, 9rem); letter-spacing: -.03em;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bigstat-label { display: block; margin-top: 8px; font-size: 1.15rem; color: var(--text-dim); letter-spacing: .02em; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.stat {
  text-align: center; padding: 34px 20px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border-soft);
  transition: transform .3s var(--ease), border-color .3s;
}
.stat:hover { transform: translateY(-4px); border-color: var(--border); }
.stat-num {
  display: block; font-family: var(--mono); font-weight: 700; font-size: clamp(2.6rem, 6vw, 3.8rem);
  line-height: 1; color: var(--gold-light); letter-spacing: -.02em;
}
.stat-label { display: block; margin-top: 12px; color: var(--text-dim); font-size: .98rem; }

/* ---------- Flow grid (section 5) ---------- */
.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.flow-card {
  text-align: left; background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 22px 20px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.flow-card:hover, .flow-card.open { transform: translateY(-4px); border-color: var(--gold); background: var(--surface-2); }
.flow-no { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: .1em; }
.flow-card h3 { font-size: 1.08rem; font-weight: 700; margin: 8px 0 6px; line-height: 1.25; }
.flow-meta {
  display: inline-block; font-family: var(--mono); font-size: 11px; color: var(--text-mute);
  border: 1px solid var(--border-soft); border-radius: 999px; padding: 3px 10px;
}
.flow-desc {
  color: var(--text-dim); font-size: .92rem; max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .4s var(--ease), opacity .35s, margin-top .4s var(--ease);
}
.flow-card:hover .flow-desc, .flow-card.open .flow-desc { max-height: 140px; opacity: 1; margin-top: 12px; }

/* Callout */
.callout {
  margin-top: 38px; padding: 30px 32px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(16, 185, 129, .1), rgba(201, 162, 39, .06));
  border: 1px solid var(--border); border-left: 4px solid var(--success);
}
.callout h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.callout p { color: var(--text-dim); }
.callout em { color: var(--gold-light); font-style: italic; }

/* ---------- Tool grid (section 6) ---------- */
.tool-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.tool-card {
  text-align: center; padding: 30px 18px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border-soft);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.tool-card:hover { transform: translateY(-6px); border-color: var(--border); }
.tool-card.highlight { background: linear-gradient(180deg, rgba(201, 162, 39, .14), var(--surface)); border-color: var(--gold); box-shadow: var(--glow); }
.tool-mark {
  display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 14px;
  font-family: var(--mono); font-weight: 700; font-size: 1.05rem; color: var(--gold-light);
  background: radial-gradient(circle at 40% 30%, rgba(201, 162, 39, .28), rgba(201, 162, 39, .05));
  border: 1px solid var(--border); margin-bottom: 14px;
}
.tool-card.highlight .tool-mark { color: #1a1505; background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.tool-card h3 { font-size: 1.05rem; font-weight: 700; }
.tool-tag { display: block; margin-top: 6px; font-size: .82rem; color: var(--text-mute); }

/* Badge row */
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; }
.badge-row li {
  font-family: var(--mono); font-size: .85rem; color: var(--text-dim);
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--border);
  background: rgba(201, 162, 39, .05); transition: all .25s var(--ease);
}
.badge-row li:hover { color: #1a1505; background: linear-gradient(135deg, var(--gold-light), var(--gold)); border-color: transparent; transform: translateY(-2px); }

/* ---------- Accordion (section 7) ---------- */
.accordion { display: flex; flex-direction: column; gap: 16px; }
.acc-item { border: 1px solid var(--border-soft); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: border-color .3s; }
.acc-item.open { border-color: var(--gold); }
.acc-header {
  width: 100%; display: flex; align-items: center; gap: 18px; text-align: left;
  padding: 24px 26px; transition: background .25s;
}
.acc-header:hover { background: var(--surface-2); }
.acc-q {
  flex: none; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px;
}
.acc-title { flex: 1; font-size: clamp(1.05rem, 2.2vw, 1.3rem); font-weight: 700; }
.acc-chevron { flex: none; width: 14px; height: 14px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); transition: transform .35s var(--ease); margin-right: 4px; }
.acc-item.open .acc-chevron { transform: rotate(-135deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc-body-inner { padding: 4px 26px 30px; color: var(--text-dim); }
.acc-body-inner > p { font-size: 1.04rem; }
.acc-body-inner > p + * { margin-top: 18px; }
.acc-body-inner strong { color: var(--text); }
.acc-body-inner em { color: var(--gold-light); font-style: italic; }

/* Welcome series stepper */
.series { margin: 26px 0; }
.series-nodes { display: flex; gap: 10px; flex-wrap: wrap; }
.series-node {
  flex: 1 1 90px; display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 10px; border-radius: 12px; border: 1px solid var(--border-soft);
  background: var(--bg-alt); transition: all .25s var(--ease); position: relative;
}
.series-node:hover { border-color: var(--border); transform: translateY(-2px); }
.series-node.active { border-color: var(--gold); background: linear-gradient(180deg, rgba(201, 162, 39, .16), var(--bg-alt)); }
.node-dot {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--mono); font-weight: 700; color: var(--text-dim);
  border: 1px solid var(--border); background: var(--surface);
}
.series-node.active .node-dot { color: #1a1505; background: linear-gradient(135deg, var(--gold-light), var(--gold)); border-color: transparent; }
.node-when { font-size: .8rem; color: var(--text-mute); font-family: var(--mono); }
.series-node.active .node-when { color: var(--gold); }
.series-detail {
  margin-top: 16px; padding: 24px 26px; border-radius: 12px;
  background: var(--bg-alt); border: 1px solid var(--border);
}
.series-detail-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.series-detail h4 { font-size: 1.2rem; font-weight: 700; color: #fff; margin: 8px 0 8px; }
.series-detail p { color: var(--text-dim); }

/* Mini stats */
.mini-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.mini-stat { text-align: center; padding: 18px 8px; border-radius: 12px; background: var(--bg-alt); border: 1px solid var(--border-soft); }
.mini-num { display: block; font-family: var(--mono); font-weight: 700; font-size: 1.7rem; color: var(--gold-light); }
.mini-lbl { display: block; margin-top: 4px; font-size: .8rem; color: var(--text-mute); }

/* Steps (Q2) */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.steps li { position: relative; padding: 20px 22px 20px 66px; border-radius: 12px; background: var(--bg-alt); border: 1px solid var(--border-soft); }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 18px; top: 18px; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--mono); font-weight: 700; color: #1a1505;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.steps h4 { font-size: 1.08rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.steps p { font-size: .98rem; }

/* Layers (Q3) */
.layer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; }
.layer { padding: 20px 22px; border-radius: 12px; background: var(--bg-alt); border: 1px solid var(--border-soft); border-left: 3px solid var(--gold); transition: transform .25s var(--ease), border-color .25s; }
.layer:hover { transform: translateY(-3px); border-color: var(--border); border-left-color: var(--gold-light); }
.layer-no { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.layer h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin: 6px 0 6px; }
.layer p { font-size: .95rem; }
.layer em { color: var(--gold-light); font-style: italic; }

/* ---------- Pyramid levels (section 9) ---------- */
.pyramid-levels { display: flex; flex-direction: column; gap: 10px; }
.pyramid-levels li {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border-soft);
  margin-inline: auto; width: 100%; transition: all .3s var(--ease);
}
.pyramid-levels li[data-level="5"] { width: 66%; }
.pyramid-levels li[data-level="4"] { width: 74%; }
.pyramid-levels li[data-level="3"] { width: 84%; }
.pyramid-levels li[data-level="2"] { width: 92%; }
.pyramid-levels li[data-level="1"] { width: 100%; }
.pyramid-levels li:hover { border-color: var(--gold); background: var(--surface-2); transform: scale(1.02); }
.lvl-no {
  flex: none; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  font-family: var(--mono); font-weight: 700; font-size: .9rem; color: var(--gold-light);
  background: rgba(201, 162, 39, .12); border: 1px solid var(--border);
}
.pyramid-levels h4 { font-size: 1.02rem; font-weight: 700; color: #fff; }
.pyramid-levels p { font-size: .88rem; color: var(--text-dim); }
.pyramid-levels li[data-level="5"] .lvl-no { color: #1a1505; background: linear-gradient(135deg, var(--gold-light), var(--gold)); border-color: transparent; }

/* ---------- Ventures (section 10) ---------- */
.venture { padding: 30px 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border-soft); transition: transform .3s var(--ease), border-color .3s; }
.venture:hover { transform: translateY(-4px); border-color: var(--border); }
.venture.subtle { background: var(--bg-alt); }
.venture-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.venture h3 { font-size: 1.4rem; font-weight: 800; }
.venture-stat { font-family: var(--mono); font-size: .9rem; color: var(--gold); white-space: nowrap; }
.venture-stat span { font-weight: 700; }
.venture p { color: var(--text-dim); font-size: 1rem; }
#overmij .split { align-items: stretch; }
#overmij .split { margin-top: 8px; }

/* Pull quotes */
.pullquote {
  margin: 50px auto; max-width: 800px; text-align: center; font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700; line-height: 1.45; color: #fff; letter-spacing: -.01em; position: relative; padding: 0 20px;
}
.pullquote::before {
  content: "“"; display: block; font-size: 4rem; line-height: .4; color: var(--gold); opacity: .5; margin-bottom: 18px;
}

/* ---------- CTA (section 11) ---------- */
.section-cta {
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(15, 42, 71, .5), transparent 60%),
    radial-gradient(70% 60% at 50% 120%, rgba(201, 162, 39, .14), transparent 60%),
    var(--bg-alt);
}
.contact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 44px auto 0; max-width: 880px; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  padding: 28px 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border-soft);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.contact-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--glow); }
.contact-ico { font-size: 26px; }
.contact-lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.contact-val { font-weight: 600; color: var(--text); word-break: break-word; }

.proposal {
  margin: 46px auto 0; max-width: 760px; text-align: center;
  padding: 34px 34px 38px; border-radius: var(--radius); border: 1px dashed var(--border);
  background: rgba(201, 162, 39, .05);
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.proposal-quote {
  font-size: clamp(1.15rem, 2.6vw, 1.45rem); font-style: italic; font-weight: 600;
  line-height: 1.55; color: var(--gold-light); margin: 0;
}
.btn-whatsapp {
  background: #25D366; color: #06351a; box-shadow: 0 14px 34px -14px rgba(37, 211, 102, .7);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -14px rgba(37, 211, 102, .95); color: #06351a; }
.btn-whatsapp svg { flex: none; }
.proposal-num { font-family: var(--mono); font-size: .9rem; color: var(--text-dim); letter-spacing: .04em; }

/* ---------- Footer ---------- */
.site-footer { padding: 40px 0; border-top: 1px solid var(--border-soft); background: var(--bg); }
.footer-inner { display: flex; align-items: center; gap: 16px; justify-content: center; text-align: center; flex-wrap: wrap; }
.site-footer p { font-size: .9rem; color: var(--text-mute); }

/* ---------- Reveal animations ---------- */
/* Reveal hides only when JS is active — no-JS or a JS failure leaves content fully visible */
:where(html.js) .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.card-grid .reveal.visible:nth-child(2), .stat-row .reveal.visible:nth-child(2),
.flow-grid .reveal.visible:nth-child(2), .tool-grid .reveal.visible:nth-child(2) { transition-delay: .08s; }
.card-grid .reveal.visible:nth-child(3), .stat-row .reveal.visible:nth-child(3),
.flow-grid .reveal.visible:nth-child(3), .tool-grid .reveal.visible:nth-child(3) { transition-delay: .16s; }
.flow-grid .reveal.visible:nth-child(4), .tool-grid .reveal.visible:nth-child(4) { transition-delay: .24s; }
.flow-grid .reveal.visible:nth-child(5) { transition-delay: .32s; }
.flow-grid .reveal.visible:nth-child(6) { transition-delay: .40s; }
.flow-grid .reveal.visible:nth-child(7) { transition-delay: .48s; }
.flow-grid .reveal.visible:nth-child(8) { transition-delay: .56s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 26px; }
  .tool-grid, .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .cols-3 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .layer-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  .pyramid-levels li { width: 100% !important; }
  .acc-header { padding: 20px 18px; gap: 12px; flex-wrap: wrap; }
  .acc-chevron { order: 3; }
  .acc-body-inner { padding-inline: 18px; }
  .section-head { margin-bottom: 38px; }
}
@media (max-width: 480px) {
  .container { padding-inline: 20px; }
  .flow-grid { grid-template-columns: 1fr; }
  .series-node { flex-basis: 100%; flex-direction: row; justify-content: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .hero-cta { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Password gate ---------- */
.gate {
  position: fixed; inset: 0; z-index: 2000; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(15, 42, 71, .6), transparent 60%),
    radial-gradient(80% 60% at 50% 120%, rgba(201, 162, 39, .12), transparent 60%),
    var(--bg);
}
body.locked { overflow: hidden; }
body.locked .gate { display: flex; }
body.locked .site-header,
body.locked .progress-track,
body.locked main,
body.locked .site-footer { display: none !important; }
.gate-card {
  max-width: 420px; width: 100%; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 42px 34px; box-shadow: var(--shadow);
}
.gate-badge { --size: 64px; margin: 0 auto 22px; }
.gate-card h1 { font-size: 1.6rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 10px; }
.gate-card > p { color: var(--text-dim); font-size: .98rem; margin-bottom: 24px; }
.gate-card form { display: flex; flex-direction: column; gap: 12px; }
.gate-card input {
  padding: 14px 16px; border-radius: 10px; border: 1px solid var(--border-soft);
  background: var(--bg-alt); color: var(--text); font-size: 1rem; text-align: center; letter-spacing: .05em;
  transition: border-color .2s;
}
.gate-card input:focus { outline: none; border-color: var(--gold); }
.gate-card .btn { justify-content: center; }
.gate-error { color: #f87171; font-size: .9rem; margin-top: 16px !important; }
.gate.shake .gate-card { animation: gate-shake .42s var(--ease); }
@keyframes gate-shake { 0%, 100% { transform: translateX(0); } 20%, 60% { transform: translateX(-9px); } 40%, 80% { transform: translateX(9px); } }
