:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --ink: #09090b;
  --muted: #67676d;
  --line: rgba(9, 9, 11, 0.12);
  --blue: #0066cc;
  --blue-light: #2997ff;
  --night: #050506;
  --night-soft: #111114;
  --radius-lg: 34px;
  --radius-md: 24px;
  --content: min(1180px, calc(100vw - 48px));
  --narrow: min(860px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

html[lang="nl"] .en,
html[lang="en"] .nl { display: none !important; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
p, h1, h2, h3 { text-wrap: balance; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: #000;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: saturate(180%) blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 620;
}

.intro-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
  width: var(--content);
  min-height: calc(100svh - 64px);
  margin: 0 auto;
  padding: 100px 0 94px;
}

.intro-copy h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(4rem, 7.7vw, 7.35rem);
  font-weight: 670;
  letter-spacing: -.067em;
  line-height: .92;
}

.intro-lead {
  max-width: 760px;
  margin: 34px 0 0;
  color: #323237;
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  line-height: 1.45;
}

.intro-body {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.portrait-wrap { align-self: center; }

.portrait-card {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  place-items: center;
  border-radius: min(3.2vw, 38px);
  background: linear-gradient(145deg, #dedee3, #f7f7f9);
  box-shadow: 0 28px 80px rgba(0,0,0,.1);
}

.portrait-fallback {
  color: #94949a;
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 680;
  letter-spacing: -.08em;
}

.portrait-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  transform: scale(1.025);
  filter: saturate(.88) contrast(1.02);
}

.portrait-card img.is-missing { opacity: 0; }

.portrait-caption {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: .82rem;
}

.portrait-caption p { margin: 0; }
.caption-line { width: 28px; height: 1px; background: var(--blue); }

.project-showcase { padding-top: 145px; padding-bottom: 145px; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-lg);
  background: var(--night-soft);
  transition: transform 280ms cubic-bezier(.2,.75,.25,1), border-color 280ms ease, background 280ms ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.24);
  background: #18181c;
}

.project-card-wide { grid-column: span 2; min-height: 430px; }
.project-card-top { display: flex; justify-content: space-between; color: #8e8e95; font-size: .74rem; font-weight: 700; letter-spacing: .09em; }
.project-card-top span:last-child { color: var(--blue-light); font-size: 1.05rem; transition: transform 180ms ease; }
.project-card:hover .project-card-top span:last-child { transform: translate(4px,-4px); }
.project-card-copy { max-width: 800px; margin-top: auto; }
.project-card-copy h3 { margin: 0 0 14px; font-size: clamp(2rem, 4.3vw, 4.4rem); letter-spacing: -.055em; line-height: .98; }
.project-card:not(.project-card-wide) .project-card-copy h3 { font-size: clamp(2rem, 3vw, 3rem); }
.project-card-copy p { max-width: 680px; margin: 0; color: #a2a2a8; font-size: .98rem; }

.project-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.project-metrics > div { min-width: 145px; }
.project-metrics strong { display: block; color: #fff; font-size: clamp(2.1rem, 4.5vw, 4.2rem); font-weight: 660; letter-spacing: -.055em; line-height: 1; }
.project-metrics span { display: block; margin-top: 8px; color: #8f8f96; font-size: .8rem; }

.venture-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.venture-story h2 { margin: 0; font-size: clamp(3rem, 6.2vw, 6rem); font-weight: 670; letter-spacing: -.06em; line-height: .96; }
.venture-story > p:last-of-type { max-width: 650px; margin: 30px 0 0; color: var(--muted); font-size: 1.08rem; }
.venture-roles { border-top: 1px solid var(--line); }
.venture-roles a { position: relative; display: block; padding: 25px 38px 25px 0; border-bottom: 1px solid var(--line); transition: color 180ms ease; }
.venture-roles a::after { position: absolute; top: 50%; right: 0; color: var(--blue); content: "→"; transform: translateY(-50%); transition: transform 180ms ease; }
.venture-roles a:hover { color: var(--blue); }
.venture-roles a:hover::after { transform: translate(6px,-50%); }
.venture-roles span, .venture-roles small { display: block; color: var(--muted); font-size: .78rem; }
.venture-roles strong { display: block; margin: 7px 0; font-size: 1.12rem; }
.routes-two { grid-template-columns: repeat(2, 1fr); }

.venture-case {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 58px;
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.venture-case h2 { max-width: 820px; margin: 0; font-size: clamp(2.6rem,5vw,5rem); letter-spacing: -.055em; line-height: .98; }
.venture-case .case-lead { margin-bottom: 40px; }
.ownership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.ownership-card { min-height: 220px; padding: 28px; border-radius: var(--radius-md); background: var(--surface); }
.ownership-card span { color: var(--blue); font-size: .76rem; font-weight: 740; letter-spacing: .08em; text-transform: uppercase; }
.ownership-card h3 { margin: 62px 0 8px; font-size: 1.25rem; letter-spacing: -.03em; }
.ownership-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.nav a {
  position: relative;
  padding: 22px 0 20px;
  color: #3f3f43;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--ink); }

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
}

.language-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.lang-button,
.menu-button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.lang-button {
  min-width: 38px;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 720;
}

.lang-button.is-active {
  color: #fff;
  background: var(--ink);
}

.menu-button {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.7);
}

.menu-button span,
.menu-button::before {
  display: block;
  width: 14px;
  height: 1px;
  margin: 0 auto;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.menu-button span { margin-top: 5px; }
.menu-button[aria-expanded="true"]::before { transform: translateY(3px) rotate(45deg); }
.menu-button[aria-expanded="true"] span { transform: translateY(-3px) rotate(-45deg); }

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  align-content: center;
  width: var(--content);
  min-height: calc(100svh - 64px);
  margin: 0 auto;
  padding: 100px 0 84px;
}

.hero-copy { position: relative; z-index: 2; max-width: 1030px; }

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3.6rem, 8.8vw, 8rem);
  font-weight: 670;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.hero h1 span { display: block; }
.hero h1 .soft { color: #a4a4aa; }

.hero-intro {
  max-width: 720px;
  margin: 38px 0 0;
  color: #3d3d42;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); }
.button-primary:hover { background: #0057b3; }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.68); }
.button-dark { color: #000; background: #fff; }

.hero-signal {
  position: absolute;
  z-index: 0;
  top: 8%;
  right: -20%;
  width: min(64vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(0,102,204,.17);
  border-radius: 50%;
  pointer-events: none;
}

.hero-signal::before,
.hero-signal::after {
  position: absolute;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 50%;
  content: "";
}

.hero-signal::before { inset: 17%; }
.hero-signal::after { inset: 34%; }

.signal-dot {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 60px 26px rgba(0,102,204,.16);
}

.hero-status {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-status p,
.hero-status strong { display: block; margin: 0; }
.hero-status p { color: var(--muted); font-size: .83rem; }
.hero-status strong { font-size: 1rem; }

.status-line {
  width: 30px;
  height: 2px;
  background: var(--blue);
}

.home-section,
.content-section {
  width: var(--content);
  margin: 0 auto;
  padding: 145px 0;
}

.dark-section {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--night);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, .55fr) 1.8fr;
  gap: 42px;
  margin-bottom: 68px;
}

.section-heading h2,
.split-copy h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(2.75rem, 5.8vw, 5.65rem);
  font-weight: 670;
  letter-spacing: -0.058em;
  line-height: .97;
}

.section-heading .eyebrow { margin-top: 8px; }
.dark-section .eyebrow { color: var(--blue-light); }

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.counter-card {
  min-height: 310px;
  padding: 38px 28px 34px;
  border-right: 1px solid rgba(255,255,255,.2);
}

.counter-card:last-child { border-right: 0; }

.counter-value {
  display: block;
  min-height: 1em;
  margin-bottom: 108px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 670;
  letter-spacing: -0.06em;
  line-height: .9;
}

.counter-card h3 { margin: 0 0 8px; font-size: 1rem; }
.counter-card p { margin: 0; color: #99999f; font-size: .9rem; }

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 18px;
}

.spotlight,
.route-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 280ms cubic-bezier(.2,.75,.25,1), box-shadow 280ms ease;
}

.spotlight:hover,
.route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0,0,0,.09);
}

.spotlight {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 44px;
  color: #fff;
  background: linear-gradient(145deg, #0066cc 0%, #003b78 100%);
}

.spotlight-secondary {
  min-height: 540px;
  color: var(--ink);
  background: #e8e8ed;
}

.spotlight-index {
  color: rgba(255,255,255,.62);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.spotlight-secondary .spotlight-index { color: var(--muted); }

.spotlight-copy { margin-top: auto; }
.spotlight h3 { max-width: 670px; margin: 0 0 18px; font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.05em; line-height: 1; }
.spotlight p { max-width: 610px; margin: 0; color: rgba(255,255,255,.75); font-size: 1.04rem; }
.spotlight-secondary p { color: var(--muted); }
.spotlight-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 28px; font-weight: 680; }
.spotlight-link span:last-child { transition: transform 180ms ease; }
.spotlight:hover .spotlight-link span:last-child { transform: translateX(5px); }

.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.route-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(0,0,0,.05);
}

.route-card:nth-child(2) { background: #e8e8ed; }
.route-card:nth-child(3) { color: #fff; background: var(--night); }
.route-label { color: var(--blue); font-size: .78rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.route-card:nth-child(3) .route-label { color: var(--blue-light); }
.route-card h3 { margin: auto 0 12px; font-size: 2rem; letter-spacing: -.045em; line-height: 1.04; }
.route-card p { margin: 0; color: var(--muted); }
.route-card:nth-child(3) p { color: #9d9da3; }
.route-arrow { position: absolute; top: 30px; right: 30px; font-size: 1.3rem; transition: transform 180ms ease; }
.route-card:hover .route-arrow { transform: translate(4px,-4px); }

.page-hero {
  width: var(--content);
  margin: 0 auto;
  padding: 150px 0 104px;
}

.page-hero h1 { max-width: 1020px; font-size: clamp(3.6rem, 8vw, 7.3rem); }
.page-hero p:last-child { max-width: 740px; margin: 34px 0 0; color: var(--muted); font-size: clamp(1.1rem,2vw,1.45rem); }

.page-nav {
  display: flex;
  gap: 8px;
  width: var(--content);
  margin: 0 auto;
  padding-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-nav::-webkit-scrollbar { display: none; }
.page-nav a { flex: 0 0 auto; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.66); font-size: .85rem; font-weight: 640; }
.page-nav a:hover { border-color: var(--blue); color: var(--blue); }

.case-study {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 58px;
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.case-meta { position: sticky; top: 100px; align-self: start; }
.case-number { display: block; margin-bottom: 16px; color: var(--blue); font-size: .78rem; font-weight: 760; letter-spacing: .1em; }
.case-type { color: var(--muted); font-size: .88rem; }
.case-content h2 { max-width: 850px; margin: 0; font-size: clamp(2.5rem,5vw,4.9rem); letter-spacing: -.055em; line-height: .98; }
.case-lead { max-width: 760px; margin: 28px 0 50px; color: var(--muted); font-size: 1.18rem; }

.case-facts {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 46px;
}

.case-fact { min-height: 150px; padding: 24px; border-radius: 20px; background: var(--surface); }
.case-fact strong { display: block; margin-bottom: 20px; font-size: 1.65rem; letter-spacing: -.04em; }
.case-fact span { color: var(--muted); font-size: .86rem; }

.case-details { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.case-detail h3 { margin: 0 0 10px; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.case-detail p { margin: 0; color: var(--muted); }

.career-stage {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 50px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.career-stage:last-child { border-bottom: 1px solid var(--line); }
.career-date { color: var(--muted); font-size: .9rem; font-weight: 650; }
.career-role { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.career-role h2 { margin: 0; font-size: clamp(1.65rem,3vw,2.65rem); letter-spacing: -.045em; line-height: 1.05; }
.career-role span { flex: 0 0 auto; color: var(--muted); font-size: .92rem; font-weight: 650; }
.career-description { max-width: 790px; margin: 20px 0 0; color: var(--muted); font-size: 1.04rem; }
.career-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.career-tags span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 620; }
.career-stage.is-next { position: relative; }
.career-stage.is-next::before { position: absolute; top: 0; bottom: 0; left: -24px; width: 3px; border-radius: 3px; background: var(--blue); content: ""; }

.profile-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  align-items: start;
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

.split-copy h2 { font-size: clamp(2.5rem,5vw,4.8rem); }
.split-copy > p { max-width: 560px; margin: 28px 0 0; color: var(--muted); font-size: 1.1rem; }

.skill-stack { display: grid; gap: 10px; }
.skill-row { display: flex; justify-content: space-between; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.skill-row span:first-child { font-weight: 650; }
.skill-row span:last-child { color: var(--muted); text-align: right; }

.education-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.education-card { min-height: 290px; padding: 30px; border-radius: var(--radius-md); background: var(--surface); }
.education-card span { color: var(--blue); font-size: .78rem; font-weight: 720; }
.education-card h3 { margin: 78px 0 8px; font-size: 1.3rem; letter-spacing: -.03em; line-height: 1.18; }
.education-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.contact-band {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: 70px;
  width: var(--content);
  margin: 0 auto;
  padding: 160px 0;
}

.contact-band p { max-width: 650px; margin: 26px 0 0; color: var(--muted); font-size: 1.08rem; }
.contact-links { align-self: end; border-top: 1px solid var(--line); }
.contact-links a { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); font-weight: 650; transition: color 180ms ease; }
.contact-links a:hover { color: var(--blue); }

.next-page {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  width: var(--content);
  margin: 0 auto;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.next-page span { color: var(--muted); font-size: .82rem; }
.next-page strong { display: block; margin-top: 6px; font-size: 1.5rem; }
.next-page .next-arrow { color: var(--blue); font-size: 2rem; transition: transform 180ms ease; }
.next-page:hover .next-arrow { transform: translateX(7px); }

footer {
  display: flex;
  justify-content: space-between;
  width: var(--content);
  margin: 0 auto;
  padding: 27px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}

footer p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(.2,.75,.25,1), transform 700ms cubic-bezier(.2,.75,.25,1);
}

.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid rgba(0,102,204,.42); outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --content: min(100% - 32px, 760px); --narrow: min(100% - 32px, 760px); }
  .site-header { grid-template-columns: 1fr auto; padding: 0 16px; }
  .nav {
    position: absolute;
    top: 64px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 2px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .menu-button { display: block; }
  .hero { min-height: auto; padding: 110px 0 72px; }
  .intro-hero { grid-template-columns: 1fr; min-height: auto; padding: 110px 0 90px; }
  .portrait-wrap { width: min(100%, 470px); }
  .project-grid { grid-template-columns: 1fr; }
  .project-card-wide { grid-column: auto; }
  .venture-home { grid-template-columns: 1fr; }
  .routes-two { grid-template-columns: 1fr; }
  .venture-case { grid-template-columns: 1fr; gap: 25px; }
  .ownership-grid { grid-template-columns: 1fr; }
  .hero-signal { top: 3%; right: -42%; width: 100vw; }
  .section-heading,
  .profile-split,
  .contact-band { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
  .counter-card:nth-child(2) { border-right: 0; }
  .counter-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight, .spotlight-secondary { min-height: 450px; }
  .routes { grid-template-columns: 1fr; }
  .route-card { min-height: 280px; }
  .case-study { grid-template-columns: 1fr; gap: 25px; }
  .case-meta { position: static; }
  .case-facts, .case-details, .education-grid { grid-template-columns: 1fr; }
  .career-stage { grid-template-columns: 1fr; gap: 14px; }
  .profile-split { gap: 50px; }
  .contact-links { margin-top: 20px; }
}

@media (max-width: 560px) {
  .brand-name { display: none; }
  .hero h1, .page-hero h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
  .intro-copy h1 { font-size: clamp(3.25rem, 15.5vw, 5rem); }
  .intro-hero { gap: 54px; }
  .project-showcase { padding-top: 105px; padding-bottom: 105px; }
  .project-card, .project-card-wide { min-height: 430px; padding: 27px; border-radius: 25px; }
  .project-metrics { gap: 24px; }
  .venture-case { padding: 70px 0; }
  .hero-intro { font-size: 1.08rem; }
  .hero-status { margin-top: 54px; }
  .home-section, .content-section { padding: 105px 0; }
  .dark-section { padding-right: 16px; padding-left: 16px; }
  .section-heading { gap: 12px; margin-bottom: 48px; }
  .counter-grid { grid-template-columns: 1fr; }
  .counter-card { min-height: 240px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .counter-card:last-child { border-bottom: 0; }
  .counter-value { margin-bottom: 70px; }
  .spotlight { min-height: 440px; padding: 30px; border-radius: 25px; }
  .page-hero { padding: 110px 0 72px; }
  .case-study { padding: 70px 0; }
  .case-fact { min-height: 120px; }
  .career-role { display: block; }
  .career-role span { display: block; margin-top: 8px; }
  .career-stage.is-next::before { left: -12px; }
  .education-card h3 { margin-top: 54px; }
  .contact-band { padding: 115px 0; }
  .next-page { padding: 40px 0; }
  footer { display: block; }
  footer p + p { margin-top: 5px; }
}

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

/* Editorial homepage — modular, calm and intentionally scannable. */
body.home-page {
  background: #f5f5f7;
}

.home-main {
  padding: 12px 12px 0;
}

.home-panel,
.home-duo,
.home-section-intro {
  width: min(1440px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.home-panel {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 28px;
}

.home-kicker,
.feature-label {
  margin: 0;
  font-size: .78rem;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-kicker { color: #6e6e73; }

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: clamp(36px, 5vw, 84px);
  min-height: min(780px, calc(100svh - 88px));
  padding: 20px;
  background: #fff;
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 96px);
}

.home-hero h1 {
  max-width: 830px;
  margin: 22px 0 0;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 680;
  letter-spacing: -.066em;
  line-height: .93;
}

.home-hero-lead {
  max-width: 720px;
  margin: 34px 0 0;
  color: #4d4d52;
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  line-height: 1.5;
}

.home-role-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 650px;
  margin-top: 24px;
  color: #6e6e73;
  font-size: .9rem;
  font-weight: 560;
}

.role-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: .48em;
  border-radius: 50%;
  background: #34c759;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}

.home-text-link,
.feature-link {
  color: #0066cc;
  font-weight: 650;
}

.home-text-link span,
.feature-link span:last-child {
  display: inline-block;
  transition: transform 180ms ease;
}

.home-text-link:hover span,
.home-panel:hover .feature-link span:last-child {
  transform: translate(3px, -3px);
}

.home-hero-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 620px;
  place-items: center;
  border-radius: 22px;
  background: #65725b;
}

.home-hero-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% 38%;
  transform: scale(1.015);
  transition: transform 900ms cubic-bezier(.2,.75,.25,1);
}

.home-hero:hover .home-hero-visual > img { transform: scale(1.035); }
.home-hero-visual .portrait-fallback { color: rgba(255,255,255,.35); }

.portrait-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  color: #fff;
  background: rgba(19,24,18,.48);
  backdrop-filter: blur(20px) saturate(150%);
  font-size: .78rem;
}

.portrait-label strong { font-size: .86rem; }
.portrait-label span { color: rgba(255,255,255,.76); }

.home-section-intro {
  padding: clamp(110px, 12vw, 180px) clamp(24px, 8vw, 120px) clamp(62px, 7vw, 96px);
  text-align: center;
}

.home-section-intro h2 {
  margin: 18px 0 0;
  font-size: clamp(3.4rem, 7.2vw, 7rem);
  font-weight: 680;
  letter-spacing: -.065em;
  line-height: .94;
}

.home-section-intro > p:last-child {
  margin: 24px 0 0;
  color: #6e6e73;
  font-size: 1.05rem;
}

.home-section-intro.compact-intro {
  padding-top: clamp(110px, 11vw, 165px);
}

.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .62fr);
  gap: clamp(60px, 8vw, 128px);
  min-height: 650px;
  padding: clamp(54px, 7vw, 104px);
  background: #fff;
  transition: transform 350ms cubic-bezier(.2,.75,.25,1), box-shadow 350ms ease;
}

.feature-block:hover,
.duo-card:hover,
.ownership-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 70px rgba(0,0,0,.08);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-label {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #6e6e73;
}

.feature-label > span:first-child {
  color: #0066cc;
}

.feature-copy h2,
.ownership-copy h2 {
  max-width: 850px;
  margin: auto 0 24px;
  font-size: clamp(3rem, 5.7vw, 6rem);
  font-weight: 680;
  letter-spacing: -.06em;
  line-height: .95;
}

.feature-copy > p:not(.feature-label),
.ownership-copy > p:not(.feature-label) {
  max-width: 680px;
  margin: 0;
  color: #6e6e73;
  font-size: 1.06rem;
}

.feature-link { margin-top: 28px; }

.feature-metrics {
  display: grid;
  gap: 16px;
  align-self: end;
  padding: 34px;
  border-radius: 24px;
  background: #f5f5f7;
}

.feature-metrics > div + div {
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,.1);
}

.feature-metrics strong,
.duo-metric strong {
  display: block;
  font-size: clamp(4rem, 7vw, 7.4rem);
  font-weight: 680;
  letter-spacing: -.07em;
  line-height: .9;
}

.feature-metrics > div > span,
.duo-metric > span {
  display: block;
  margin-top: 13px;
  color: #6e6e73;
  font-size: .9rem;
  font-weight: 590;
}

.home-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.duo-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 590px;
  flex-direction: column;
  padding: clamp(38px, 5vw, 68px);
  border-radius: 28px;
  background: #fff;
  transition: transform 350ms cubic-bezier(.2,.75,.25,1), box-shadow 350ms ease;
}

.duo-card-grey { background: #e8e8ed; }

.duo-copy { margin-top: auto; }

.duo-copy h2 {
  max-width: 620px;
  margin: 0 0 20px;
  font-size: clamp(2.7rem, 4.5vw, 5rem);
  font-weight: 680;
  letter-spacing: -.058em;
  line-height: .96;
}

.duo-copy p {
  max-width: 580px;
  margin: 0;
  color: #6e6e73;
  font-size: 1rem;
}

.duo-metric {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,.1);
}

.duo-metric strong { font-size: clamp(4.3rem, 7.8vw, 7.5rem); }

.card-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 50%;
  color: #0066cc;
  background: rgba(255,255,255,.55);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.duo-card:hover .card-arrow { transform: translate(3px,-3px); }

.feature-digital {
  color: #f5f5f7;
  background: #1d1d1f;
}

.feature-digital .feature-label,
.feature-digital .feature-copy > p:not(.feature-label) { color: #a1a1a6; }
.feature-digital .feature-label > span:first-child,
.feature-digital .feature-link { color: #2997ff; }

.feature-metrics-dark {
  background: #2c2c2e;
}

.feature-metrics-dark > div + div { border-color: rgba(255,255,255,.14); }
.feature-metrics-dark > div > span { color: #a1a1a6; }

.ownership-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: clamp(60px, 9vw, 140px);
  min-height: 600px;
  align-items: center;
  padding: clamp(54px, 7vw, 104px);
  background: #e8e8ed;
  transition: transform 350ms cubic-bezier(.2,.75,.25,1), box-shadow 350ms ease;
}

.ownership-copy h2 { margin: 26px 0 24px; }

.ownership-list {
  border-top: 1px solid rgba(0,0,0,.14);
}

.ownership-list > div {
  padding: 27px 0;
  border-bottom: 1px solid rgba(0,0,0,.14);
}

.ownership-list span,
.ownership-list strong { display: block; }
.ownership-list > div > span { margin-bottom: 6px; color: #6e6e73; font-size: .78rem; }
.ownership-list strong { font-size: 1.05rem; letter-spacing: -.02em; }

.home-routes { margin-top: 12px; }
.route-tile { min-height: 470px; background: #fff; }
.route-tile .duo-copy h2 { font-size: clamp(2.8rem, 4.7vw, 5.1rem); }

.route-tile-dark {
  color: #f5f5f7;
  background: #000;
}

.route-tile-dark .feature-label,
.route-tile-dark .duo-copy p { color: #a1a1a6; }
.route-tile-dark .feature-label > span:first-child { color: #2997ff; }
.route-tile-dark .card-arrow { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); }

.home-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  gap: 80px;
  min-height: 500px;
  align-items: end;
  padding: clamp(54px, 7vw, 104px);
  color: #fff;
  background: #0066cc;
}

.home-contact .home-kicker { color: rgba(255,255,255,.68); }

.home-contact h2 {
  margin: 20px 0 0;
  font-size: clamp(3.5rem, 6.8vw, 7rem);
  font-weight: 680;
  letter-spacing: -.065em;
  line-height: .94;
}

.home-contact-links { border-top: 1px solid rgba(255,255,255,.35); }

.home-contact-links a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.35);
  font-weight: 650;
}

.home-contact-links a span { transition: transform 180ms ease; }
.home-contact-links a:hover span { transform: translate(3px,-3px); }

.home-page footer {
  padding-top: 34px;
  padding-bottom: 34px;
}

@media (max-width: 1040px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-copy { padding: 64px clamp(26px, 6vw, 68px) 36px; }
  .home-hero-visual { min-height: min(720px, 90vw); }
  .feature-block,
  .ownership-feature { grid-template-columns: 1fr; gap: 64px; }
  .feature-copy h2 { margin-top: 100px; }
  .feature-metrics { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature-metrics > div + div { padding-top: 0; padding-left: 28px; border-top: 0; border-left: 1px solid rgba(0,0,0,.1); }
  .feature-metrics-dark > div + div { border-color: rgba(255,255,255,.14); }
}

@media (max-width: 760px) {
  .home-main { padding: 8px 8px 0; }
  .home-panel { margin-bottom: 8px; border-radius: 24px; }
  .home-duo { grid-template-columns: 1fr; gap: 8px; margin-bottom: 8px; }
  .home-hero { gap: 12px; padding: 12px; }
  .home-hero-copy { padding: 46px 20px 38px; }
  .home-hero h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .home-hero-lead { margin-top: 26px; font-size: 1.03rem; }
  .home-role-line { font-size: .82rem; }
  .home-hero-visual { min-height: 118vw; border-radius: 18px; }
  .portrait-label { display: block; }
  .portrait-label span { display: block; margin-top: 3px; }
  .home-section-intro { padding: 100px 16px 54px; }
  .home-section-intro h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .home-section-intro > p:last-child { font-size: .96rem; }
  .feature-block,
  .ownership-feature,
  .home-contact { padding: 42px 26px; }
  .feature-block { min-height: 660px; }
  .feature-copy h2 { margin-top: 84px; font-size: clamp(2.8rem, 13vw, 4.7rem); }
  .feature-copy > p:not(.feature-label),
  .ownership-copy > p:not(.feature-label) { font-size: 1rem; }
  .feature-metrics { grid-template-columns: 1fr; padding: 26px; }
  .feature-metrics > div + div { padding-top: 24px; padding-left: 0; border-top: 1px solid rgba(0,0,0,.1); border-left: 0; }
  .feature-metrics-dark > div + div { border-color: rgba(255,255,255,.14); }
  .feature-metrics strong { font-size: clamp(4rem, 21vw, 6.5rem); }
  .duo-card { min-height: 520px; padding: 36px 26px; border-radius: 24px; }
  .duo-copy h2 { font-size: clamp(2.7rem, 12vw, 4.5rem); }
  .card-arrow { top: 24px; right: 24px; }
  .ownership-feature { min-height: auto; gap: 54px; }
  .ownership-copy h2 { font-size: clamp(2.8rem, 13vw, 4.7rem); }
  .route-tile { min-height: 440px; }
  .home-contact { grid-template-columns: 1fr; gap: 80px; min-height: 570px; }
  .home-contact h2 { font-size: clamp(3.2rem, 14vw, 5rem); }
}
