/* ============================================================
   Ynvest Fund | polish stylesheet · brand colours
   Brand: deep petrol teal #015870 on white, bold grotesque type.
   Three directions selected via [data-theme] on <html>:
   - helder : "Helder"          (white + teal cards | closest to live site)
   - petrol : "Petrol"          (deep teal, immersive)
   - inst   : "Institutioneel"  (cool paper, outlined, restrained)
   ============================================================ */

/* ---------- Fonts (all-sans, matching the brand) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@500;600;700;800&family=Hanken+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ---------- Theme tokens ---------- */
:root {
  /* "serif" token kept for backward-compat | now a display grotesque */
  --serif: "Schibsted Grotesk", "Hanken Grotesk", -apple-system, sans-serif;
  --sans: "Hanken Grotesk", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 6px;

  /* defaults = HELDER (white + teal) */
  --bg: #ffffff;
  --bg-2: #eef4f5;
  --surface: #ffffff;
  --ink: #0c3a45;
  --ink-soft: #2f5b66;
  --muted: #6a8a92;
  --line: rgba(1,88,112,0.18);
  --line-soft: rgba(1,88,112,0.10);
  --accent: #015870;
  --accent-ink: #ffffff;
  --accent-deep: #013f51;
  /* cards (the teal blocks on the live site) */
  --card-bg: #015870;
  --card-ink: #ffffff;
  --card-muted: rgba(255,255,255,0.80);
  --card-accent: rgba(255,255,255,0.92);
  --card-line: rgba(255,255,255,0.16);
  --ph-bg: rgba(1,88,112,0.05);
  --ph-stripe: rgba(1,88,112,0.08);
  --shadow: 0 30px 70px -38px rgba(1,60,76,0.35);
  --serif-weight: 700;
  --head-letter: -0.02em;
}

html[data-theme="helder"] { /* same as :root, explicit for clarity */ }

html[data-theme="zacht"] {
  --bg: #f6f3ec;
  --bg-2: #eaf1f1;
  --surface: #ffffff;
  --ink: #103a43;
  --ink-soft: #335860;
  --muted: #6f8990;
  --line: rgba(1,88,112,0.16);
  --line-soft: rgba(1,88,112,0.09);
  --accent: #015870;
  --accent-ink: #ffffff;
  --accent-deep: #013f51;
  --card-bg: #e6f1f2;
  --card-ink: #0c3a45;
  --card-muted: #50727a;
  --card-accent: #015870;
  --card-line: transparent;
  --ph-bg: rgba(1,88,112,0.05);
  --ph-stripe: rgba(1,88,112,0.07);
  --shadow: 0 30px 70px -42px rgba(1,60,76,0.22);
  --radius: 12px;
}

html[data-theme="inst"] {
  --bg: #f5f8f8;
  --bg-2: #eaf0f1;
  --surface: #ffffff;
  --ink: #0f333c;
  --ink-soft: #38545c;
  --muted: #6f888e;
  --line: rgba(15,51,60,0.16);
  --line-soft: rgba(15,51,60,0.08);
  --accent: #015870;
  --accent-ink: #ffffff;
  --accent-deep: #013f51;
  --card-bg: #ffffff;
  --card-ink: #0f333c;
  --card-muted: #5e787f;
  --card-accent: #015870;
  --card-line: rgba(15,51,60,0.14);
  --ph-bg: rgba(15,51,60,0.04);
  --ph-stripe: rgba(15,51,60,0.06);
  --shadow: 0 24px 56px -42px rgba(15,51,60,0.28);
  --radius: 3px;
  --serif-weight: 700;
  --head-letter: -0.022em;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: var(--serif-weight); letter-spacing: var(--head-letter); line-height: 1.05; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.display { font-family: var(--serif); }
.lede { color: var(--ink-soft); font-size: clamp(18px, 2vw, 22px); line-height: 1.5; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- Placeholder (drop real assets here) ---------- */
.ph {
  position: relative;
  background-color: var(--ph-bg);
  background-image: repeating-linear-gradient(135deg, var(--ph-stripe) 0 1px, transparent 1px 9px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; align-items: flex-start; justify-content: flex-start;
  overflow: hidden;
}
.ph::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(135deg, transparent calc(50% - 0.5px), var(--line) calc(50% - 0.5px), var(--line) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(45deg,  transparent calc(50% - 0.5px), var(--line) calc(50% - 0.5px), var(--line) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  opacity: 0.5;
}
.ph span {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--muted); background: var(--bg);
  padding: 6px 10px; margin: 14px; border: 1px solid var(--line); border-radius: 2px;
}

/* ============================================================
   Header
   ============================================================ */
/* ============================================================
   Header | transparent over the video hero, solid on scroll
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 86px; gap: 24px; }
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom-color: var(--line-soft);
}
.site-header.scrolled .wrap { min-height: 70px; }

.brand { display: inline-flex; align-items: center; order: 2; }
.brand img { height: 35px; width: auto; display: block; }
/* over hero = white logo; scrolled = themed logo */
.brand .logo-teal { display: none; }
.brand .logo-white { display: block; }
.site-header.scrolled .brand .logo-teal { display: block; }
.site-header.scrolled .brand .logo-white { display: none; }
html[data-theme="petrol"] .site-header.scrolled .brand .logo-teal { display: none; }
html[data-theme="petrol"] .site-header.scrolled .brand .logo-white { display: block; }

/* hamburger in a circle */
.menu-btn {
  order: 1; display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55); background: transparent; cursor: pointer;
  -webkit-appearance: none; appearance: none; transition: border-color .25s, background .25s;
}
.menu-btn:hover { background: rgba(255,255,255,0.12); }
.menu-btn .bars { display: flex; flex-direction: column; gap: 5px; width: 20px; }
.menu-btn .bars span { height: 1.5px; width: 100%; background: #fff; transition: background .25s; }
.site-header.scrolled .menu-btn { border-color: var(--line); }
.site-header.scrolled .menu-btn:hover { background: var(--bg-2); }
.site-header.scrolled .menu-btn .bars span { background: var(--ink); }

/* AFM notice pinned at top of the hero */
.afm-note {
  position: absolute; z-index: 3; top: 16px; left: 50%; transform: translateX(-50%);
  background: #ffffff; color: #143038; border-radius: var(--radius);
  padding: 9px 18px; max-width: min(92vw, 540px); text-align: center;
  box-shadow: 0 12px 32px -18px rgba(0,0,0,0.45);
}
.afm-note p { font-size: 12px; line-height: 1.4; font-weight: 600; letter-spacing: 0.01em; }

/* Fullscreen slide-down menu */
.menu-panel {
  position: fixed; inset: 0; z-index: 70; background: var(--bg);
  display: flex; flex-direction: column; padding: clamp(22px, 4.5vw, 52px);
  transform: translateY(-101%); transition: transform .44s cubic-bezier(.16,.84,.44,1);
  visibility: hidden;
}
.menu-panel.open { transform: none; visibility: visible; }
.mp-top { display: flex; align-items: center; justify-content: space-between; }
.mp-top .brand .logo-white { display: none; } .mp-top .brand .logo-teal { display: block; }
html[data-theme="petrol"] .mp-top .brand .logo-teal { display: none; }
html[data-theme="petrol"] .mp-top .brand .logo-white { display: block; }
.mp-close {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--ink); cursor: pointer; font-size: 22px; line-height: 1;
  -webkit-appearance: none; appearance: none; transition: border-color .2s, color .2s;
}
.mp-close:hover { border-color: var(--accent); color: var(--accent); }
.mp-links { margin: auto 0; display: flex; flex-direction: column; gap: clamp(4px, 0.6vw, 10px); }
.mp-links a {
  font-family: var(--serif); font-weight: 700; font-size: clamp(26px, 3.4vw, 40px);
  letter-spacing: -0.022em; color: var(--ink); line-height: 1.12; width: max-content; max-width: 100%;
  transition: color .2s;
}
.mp-links a:hover { color: var(--accent); }
.mp-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.mp-foot .mp-contact { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   Hero | fullscreen video, left-aligned content
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; padding: 0; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video, .hero-bg .hero-ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-ph {
  background-color: #0a3f4f;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 12px);
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.hero-ph span {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.32); padding: 9px 15px; border-radius: 3px; margin: 20px;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(3,24,31,0.66) 0%, rgba(3,24,31,0.30) 48%, rgba(3,24,31,0.16) 100%), linear-gradient(0deg, rgba(3,22,28,0.5), transparent 42%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: clamp(110px, 18vh, 200px); padding-bottom: clamp(54px, 9vh, 110px); }
.hero .eyebrow { color: var(--accent); }
.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(38px, 6vw, 84px); line-height: 1.02; letter-spacing: -0.025em;
  color: #ffffff; margin-top: 18px; max-width: 17ch; text-wrap: balance;
}
.hero h1 em { font-style: normal; color: inherit; }
.hero .lede { margin-top: 24px; color: rgba(255,255,255,0.88); max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero .btn-primary { background: #ffffff; color: #015870; }
.hero .btn-primary:hover { background: #e8f3f5; }
.hero .btn-ghost { color: #ffffff; border-color: rgba(255,255,255,0.5); }
.hero .btn-ghost:hover { border-color: #ffffff; color: #ffffff; background: rgba(255,255,255,0.10); }
.scroll-cue {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,0.7); font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.scroll-cue::after { content: ""; width: 1px; height: 26px; background: linear-gradient(rgba(255,255,255,0.6), transparent); }

/* stat strip */
.stats { border-top: 1px solid var(--line); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 0; border-left: 1px solid var(--line-soft); padding-left: 26px; }
.stat:first-child { border-left: none; padding-left: 0; }
.stat .v { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 44px); line-height: 1; }
.stat .v .accent { color: var(--accent); }
.stat .k { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }

/* ============================================================
   Section heading block
   ============================================================ */
.shead { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
.shead h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(27px, 3.2vw, 42px); line-height: 1.08; letter-spacing: -0.02em; }
.shead .sub { color: var(--muted); max-width: 46ch; }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.pillar { background: var(--card-bg); color: var(--card-ink); padding: 34px clamp(22px, 2.4vw, 34px) 40px; display: flex; flex-direction: column; gap: 14px; transition: transform .25s ease; }
.pillar:hover { transform: translateY(-3px); }
.pillar .idx { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--card-accent); }
.pillar h3 { font-family: var(--serif); font-size: 25px; color: var(--card-ink); }
.pillar p { color: var(--card-muted); font-size: 16px; line-height: 1.55; }

/* ---------- Highlight statement ---------- */
.statement { background: var(--bg-2); border-block: 1px solid var(--line); }
.statement .wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.statement .big { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.32; letter-spacing: -0.01em; color: var(--ink); }
.statement .big .accent { color: var(--accent); font-style: normal; font-weight: 600; }
.statement p { color: var(--ink-soft); }
.statement .num { font-family: var(--serif); font-weight: 500; font-size: clamp(56px, 7vw, 92px); line-height: 0.9; color: var(--accent); letter-spacing: -0.02em; }
.statement .num small { display:block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 18px; }

/* ---------- Why / 3 columns ---------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 3vw, 48px); }
.why-col { display: flex; flex-direction: column; gap: 14px; }
.why-col .num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.why-col h3 { font-family: var(--serif); font-size: 26px; line-height: 1.1; }
.why-col p { color: var(--muted); font-size: 16px; line-height: 1.6; }

/* ---------- Structure / flow ---------- */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.flow-step { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; background: var(--surface); position: relative; }
.flow-step .s { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.flow-step .n { font-family: var(--serif); font-weight: 700; font-size: clamp(44px, 4.8vw, 66px); line-height: 1; color: var(--accent); letter-spacing: -0.02em; margin-top: 16px; }
.flow-step h4 { font-family: var(--serif); font-size: 22px; margin-top: 8px; }
.flow-step p { color: var(--muted); font-size: 15px; margin-top: 10px; line-height: 1.55; }
.flow-step .conn { position: absolute; right: -16px; top: 50%; width: 16px; height: 1px; background: var(--line); z-index: 2; }
.flow-step:last-child .conn { display: none; }

/* ---------- Founder ---------- */
.founder-media-wide .ph { aspect-ratio: 16/9; width: 100%; }
.founder-id { margin-top: clamp(26px, 3vw, 40px); }
.founder-id .founder-name { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 2.8vw, 34px); letter-spacing: -0.015em; margin-top: 10px; }
.founder-id .founder-mail { display: inline-block; margin-top: 12px; color: var(--accent); font-size: 16px; }
.founder .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.founder-media .ph { aspect-ratio: 4/5; width: 100%; }
.founder blockquote { font-family: var(--serif); font-style: normal; font-weight: 600; font-size: clamp(24px, 3vw, 36px); line-height: 1.18; margin: 0; letter-spacing: -0.01em; }
.founder .who { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.founder .who .n { font-family: var(--serif); font-size: 21px; }
.founder .who .r { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.founder .who a { color: var(--accent); font-size: 15px; margin-top: 6px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); color: var(--accent-ink); }
.cta-band .wrap { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 32px; align-items: center; padding-block: clamp(54px, 7vw, 88px); }
.cta-band h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; letter-spacing: -0.02em; }
.cta-band p { color: color-mix(in srgb, var(--accent-ink) 78%, transparent); margin-top: 14px; max-width: 42ch; }
.cta-band .actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.cta-band .btn-primary { background: var(--accent-ink); color: var(--accent); }
.cta-band .btn-primary:hover { background: color-mix(in srgb, var(--accent-ink) 86%, #fff); }
.cta-band .btn-ghost { color: var(--accent-ink); border-color: color-mix(in srgb, var(--accent-ink) 30%, transparent); }
.cta-band .btn-ghost:hover { border-color: var(--accent-ink); color: var(--accent-ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 88px); }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px 28px; }
.foot-brand .brand img { height: 35px; }
/* footer sits on a light background | always use the teal logo */
.foot-brand .brand .logo-teal { display: block; }
.foot-brand .brand .logo-white { display: none; }
html[data-theme="petrol"] .foot-brand .brand .logo-teal { display: none; }
html[data-theme="petrol"] .foot-brand .brand .logo-white { display: block; }
.foot-brand p { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 30ch; line-height: 1.6; }
.foot-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; font-weight: 500; }
.foot-col a { display: block; color: var(--ink-soft); font-size: 15px; padding: 5px 0; transition: color .18s ease; }
.foot-col a:hover { color: var(--accent); }
.afm {
  margin-top: clamp(48px, 6vw, 72px); padding: 24px 0 40px; border-top: 1px solid var(--line-soft);
  display: flex; gap: 18px; align-items: flex-start; flex-wrap: wrap;
}
.afm .badge { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--accent); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px 12px; text-transform: uppercase; white-space: nowrap; }
.afm p { color: var(--muted); font-size: 13.5px; line-height: 1.55; max-width: 64ch; }
.afm-copy { margin-left: auto; align-self: flex-end; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

/* ============================================================
   Style switcher (hidden when embedded / printing)
   ============================================================ */
.switcher {
  position: fixed; z-index: 80; right: 18px; bottom: 18px;
  display: flex; gap: 4px; padding: 5px; border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  backdrop-filter: blur(8px); font-family: var(--mono);
}
.switcher button {
  border: none; background: transparent; color: var(--muted);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  padding: 8px 14px; border-radius: 999px; cursor: pointer; text-transform: uppercase;
  transition: background .2s, color .2s; white-space: nowrap;
}
.switcher button[aria-pressed="true"] { background: var(--accent); color: var(--accent-ink); }
body[data-embed="1"] .switcher { display: none; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  html.anim .reveal:not(.in) { opacity: 0; transform: translateY(18px); }
  .reveal { transition: opacity .7s ease, transform .7s ease; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .hero h1 { font-size: clamp(34px, 9vw, 60px); }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat { padding-left: 22px; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .statement .wrap, .founder .wrap, .cta-band .wrap { grid-template-columns: 1fr; }
  .why, .flow { grid-template-columns: 1fr; }
  .flow-step .conn { display: none; }
  .founder-media { max-width: 360px; }
  .shead { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .pillars { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
}
