/* ==========================================================================
   TenCate Grass — ESG Report microsite
   Voorstel 2: out-of-the-box, scroll-driven storytelling
   Dark, cinematic chapter structure. Brand tokens: TenCate Brand Guidelines v1.1
   Scroll engine (js/scroll.js) writes a 0..1 progress value to --p on every
   [data-scene]; this stylesheet turns that progress into motion.
   ========================================================================== */

@font-face {
  font-family: "Bliss Pro";
  src: url("../assets/fonts/blsprw-rg.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Bliss Pro";
  src: url("../assets/fonts/blsprw-bd.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Bliss Pro";
  src: url("../assets/fonts/blsprw-it.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}

:root {
  --c-blue: #002866;
  --c-blue-deep: #001338;
  --c-blue-night: #000c24;
  --c-orange: #F26A14;
  --c-orange-soft: #ff8a3d;
  --c-orange-btn: #c24e00; /* white text passes AA (4.79:1); reads as brand orange */
  --c-steel: #398ccb;
  --c-steel-soft: #9fd0f2;
  --c-grey: #b2b2b2;
  --c-mist: #ccd4e0;      /* blue 20% tint — body text on dark */
  --c-haze: #8fa1bd;
  --font: "Bliss Pro", "Open Sans", "Segoe UI", system-ui, sans-serif;
  --w-copy: 44rem;
  --w-wide: 78rem;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --p: 0; /* scene progress fallback */
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--c-mist);
  background: var(--c-blue-deep);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { color: #fff; line-height: 1.08; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
a { color: var(--c-orange-soft); }
a:hover { color: #fff; }
:focus-visible { outline: 3px solid var(--c-steel); outline-offset: 3px; border-radius: 2px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 300;
  background: var(--c-orange); color: var(--c-blue);
  font-weight: 700; padding: .6rem 1.2rem; border-radius: 0 0 6px 6px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---------- Reading progress "touchline" ---------- */
.progress-line {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(255, 255, 255, .08); z-index: 210;
}
.progress-line span {
  display: block; height: 100%; width: 0;
  background: var(--c-orange);
}

/* ---------- Fixed header ---------- */
.site-header {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--pad);
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }
.brand img { width: 132px; height: auto; }
.btn-download {
  font-weight: 700; font-size: .9rem; text-decoration: none;
  color: #fff; background: var(--c-orange-btn);
  padding: .55rem 1.2rem; border-radius: 99px;
  transition: background .2s, color .2s, transform .2s;
}
.btn-download:hover { background: #fff; color: var(--c-blue); transform: translateY(-1px); }

/* ---------- Chapter navigation (right-side dots) ---------- */
.chapter-nav {
  position: fixed; right: clamp(.6rem, 2vw, 1.6rem); top: 50%;
  transform: translateY(-50%); z-index: 190;
}
.chapter-nav ol { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.chapter-nav a {
  display: flex; align-items: center; gap: .6rem;
  flex-direction: row-reverse;
  text-decoration: none; color: var(--c-haze);
}
.cn-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  transition: background .2s, transform .2s;
  flex: 0 0 auto;
}
.cn-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  opacity: 0; transform: translateX(6px);
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.chapter-nav a:hover .cn-label, .chapter-nav a:focus-visible .cn-label,
.chapter-nav a.is-current .cn-label { opacity: 1; transform: none; }
.chapter-nav a.is-current .cn-dot { background: var(--c-orange); transform: scale(1.5); }
.chapter-nav a.is-current { color: var(--c-orange-soft); }
@media (max-width: 56rem) { .chapter-nav { display: none; } }

/* ---------- Chapter scaffolding ---------- */
.chapter { position: relative; padding: clamp(5rem, 12vh, 9rem) var(--pad); }
.chapter-head { max-width: var(--w-copy); margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.chapter-head--overlay { margin-bottom: 0; }
.chapter-tag {
  display: flex; align-items: center; gap: .7rem;
  text-transform: uppercase; letter-spacing: .16em;
  font-size: .78rem; font-weight: 700; color: var(--c-haze);
  margin-bottom: 1.4rem;
}
.chapter-num {
  color: var(--c-orange); font-size: .9rem;
  border: 1.5px solid rgba(242, 106, 20, .5); border-radius: 50%;
  width: 2rem; height: 2rem; display: inline-grid; place-items: center;
}
.chapter-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  text-transform: uppercase; letter-spacing: .01em;
  text-wrap: balance;
}
.chapter-lede { font-size: 1.15rem; max-width: 38rem; }
.fine-print { font-size: .82rem; color: var(--c-haze); max-width: var(--w-copy); }

.chip {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(57, 140, 203, .18); color: var(--c-steel-soft);
  padding: .22rem .7rem; border-radius: 99px;
}

/* ---------- 01 · Hero ---------- */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  /* top padding also clears the fixed logo/header so the gap above the text
     matches the gap below it (balanced top/bottom framing) */
  padding-top: calc(clamp(4rem, 10vh, 7rem) + 3.2rem);
  padding-bottom: clamp(4rem, 10vh, 7rem);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .42;
  transform: scale(calc(1 + var(--p) * .18)) translateY(calc(var(--p) * -4%));
  will-change: transform;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(10deg, var(--c-blue-deep) 8%, rgba(0, 19, 56, .25) 55%, rgba(0, 19, 56, .65) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: var(--w-wide); }
.hero-title {
  font-size: clamp(3.2rem, 11.5vw, 9rem);
  text-transform: uppercase; margin: 0 0 .3em;
}
.ht-line { display: block; }
.ht-solid, .ht-outline {
  opacity: 0; transform: translateY(.6em);
  animation: ht-in .9s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero-title .ht-line:nth-child(2) { animation-delay: .18s; }
.hero-title .ht-line:nth-child(3) { animation-delay: .36s; }
@keyframes ht-in { to { opacity: 1; transform: none; } }
.ht-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .8);
}
@supports not (-webkit-text-stroke: 1px #fff) {
  .ht-outline { color: rgba(255, 255, 255, .5); }
}
/* Report-title hero (V1-aligned): solid title + orange subtitle, left at gutter */
.hero-title--report {
  font-size: clamp(2.6rem, 8vw, 6rem); color: #fff; text-transform: uppercase;
  line-height: 1.02; letter-spacing: .01em; margin: 0 0 .2em;
  opacity: 0; animation: ht-in .9s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero-subtitle {
  position: relative; z-index: 1;
  color: var(--c-orange-soft); font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem); margin: 0 0 1.3rem;
  opacity: 0; animation: ht-in .9s .2s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero-lede {
  position: relative; z-index: 1;
  max-width: 34rem; font-size: 1.2rem;
  opacity: 0; animation: ht-in .9s .6s cubic-bezier(.2, .7, .2, 1) forwards;
}
.scroll-cue {
  position: absolute; z-index: 2; right: calc(var(--pad) + 5.5rem); bottom: clamp(4rem, 10vh, 7rem);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  color: var(--c-mist); text-decoration: none;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  writing-mode: vertical-rl;
}
.scroll-cue-line {
  width: 2px; height: 3.6rem; background: var(--c-orange);
  transform-origin: top; animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0%, 100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }
@media (max-width: 48rem) { .scroll-cue { display: none; } }

/* ---------- Message from the CEO (paragraphs swipe in from the right) ---------- */
.ceo-message { min-height: 300vh; padding-block: 0; }
.ceo-sticky {
  position: sticky; top: 0; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; gap: clamp(1.5rem, 4vh, 2.5rem); padding-block: 6rem;
}
.ceo-slides { position: relative; width: 100%; max-width: 46rem; margin-inline: auto; min-height: clamp(16rem, 44vh, 21rem); }
.ceo-slide {
  position: absolute; inset: 0; margin: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: clamp(1rem, 1.85vw, 1.3rem); font-weight: 500; line-height: 1.55; color: var(--c-mist);
  transform: translateX(70px); opacity: 0;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1), opacity .5s ease;
}
.ceo-message[data-step="1"] .ceo-slide[data-step="1"],
.ceo-message[data-step="2"] .ceo-slide[data-step="2"],
.ceo-message[data-step="3"] .ceo-slide[data-step="3"] { transform: none; opacity: 1; }
.ceo-message[data-step="2"] .ceo-slide[data-step="1"],
.ceo-message[data-step="3"] .ceo-slide[data-step="1"],
.ceo-message[data-step="3"] .ceo-slide[data-step="2"] { transform: translateX(-70px); opacity: 0; }
.ceo-progress { display: flex; justify-content: center; gap: .5rem; }
.ceo-progress span { width: 2rem; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, .2); transition: background .3s; }
.ceo-message[data-step="1"] .ceo-progress span:nth-child(1),
.ceo-message[data-step="2"] .ceo-progress span:nth-child(-n+2),
.ceo-message[data-step="3"] .ceo-progress span { background: var(--c-orange); }
.ceo-message .statement-person { flex-direction: row; align-items: center; justify-content: center; gap: 1rem; margin: 0; opacity: 1; text-align: left; }
.ceo-message .statement-person .statement-credit { margin: 0; }

@media (prefers-reduced-motion: reduce), (max-width: 56rem) {
  .ceo-message { min-height: auto; padding-block: clamp(4rem, 10vh, 7rem); }
  .ceo-sticky { position: static; min-height: 0; padding-block: 0; }
  .ceo-slides { position: static; min-height: 0; }
  .ceo-slide { position: static; transform: none !important; opacity: 1 !important; margin-bottom: 1.4rem; }
  .ceo-progress { display: none; }
}

/* ---------- 02 · Bento grid ---------- */
.bento {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  max-width: var(--w-wide);
}
.bento-cell {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px; padding: 1.6rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 13rem;
}
.bento-cell--wide { grid-column: span 2; }
@media (max-width: 40rem) { .bento-cell--wide { grid-column: span 1; } }
.bento-cell--img { position: relative; overflow: hidden; padding: 0; min-height: 17rem; }
.bento-cell--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.bento-cell--img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0, 19, 56, 0) 30%, rgba(0, 12, 36, .92));
}
.bento-body { position: relative; z-index: 1; padding: 1.6rem; margin-top: auto; }
.bento-body h3 { font-size: 1.3rem; margin: .5rem 0 .3rem; }
.bento-body p { margin: 0; font-size: .95rem; }
.bento-stat {
  font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; color: var(--c-orange);
  line-height: 1; display: block; margin-bottom: .5rem;
  font-variant-numeric: tabular-nums;
}
.bento-stat em { font-style: normal; font-size: .55em; }
.bento-cell > p { margin: 0; font-size: .95rem; }
.bento-cell .chip { margin-left: .3rem; transform: translateY(-1px); }

/* ---------- Signature scene: vision → policy → proof (pinned) ---------- */
.vpp { height: 300vh; margin-top: clamp(4rem, 10vh, 7rem); }
.vpp-sticky {
  position: sticky; top: 0; min-height: 100svh;
  display: grid; align-items: center; gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  padding-block: 5rem;
}
@media (max-width: 56rem) {
  .vpp { height: auto; }
  .vpp-sticky { position: static; grid-template-columns: 1fr; min-height: 0; }
  /* no pinned scene on small screens: show all steps, statically */
  .vpp-step { opacity: 1 !important; transform: none !important; }
}
.vpp-copy h3 {
  font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase;
  color: #fff; letter-spacing: .01em;
}
.vpp-copy p { max-width: 22rem; }
.vpp-steps { list-style: none; margin: 0; padding: 0; counter-reset: vpp; }
.vpp-step {
  padding: 1.3rem 1.5rem; margin-bottom: .8rem;
  border-left: 3px solid rgba(255, 255, 255, .15);
  border-radius: 0 14px 14px 0;
  opacity: .25; transform: translateX(14px);
  transition: opacity .45s ease, transform .45s ease, border-color .45s, background .45s;
}
.vpp-k {
  display: block; font-size: .78rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--c-haze);
  margin-bottom: .35rem;
}
.vpp-step p { margin: 0; color: #fff; font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-weight: 700; line-height: 1.45; }
.vpp[data-step="1"] .vpp-step[data-step="1"],
.vpp[data-step="2"] .vpp-step[data-step="2"],
.vpp[data-step="3"] .vpp-step[data-step="3"] {
  opacity: 1; transform: none;
  border-color: var(--c-orange); background: rgba(255, 255, 255, .05);
}
.vpp[data-step="2"] .vpp-step[data-step="1"],
.vpp[data-step="3"] .vpp-step[data-step="1"],
.vpp[data-step="3"] .vpp-step[data-step="2"] { opacity: .55; transform: none; }
.vpp[data-step="3"] .vpp-step[data-step="3"] .vpp-k,
.vpp-step[data-step="3"] .vpp-k { color: var(--c-orange); }
.vpp-proof { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; }
.vpp-proof strong {
  display: block; font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--c-orange); font-variant-numeric: tabular-nums; line-height: 1.1;
}
.vpp-proof span { font-size: .85rem; color: var(--c-haze); font-weight: 400; }

/* ---------- 03 · Timeline (pinned horizontal) ---------- */
.chapter--full { padding-inline: 0; }
#ahead { height: 380vh; }
.timeline-sticky {
  position: sticky; top: 0; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; gap: clamp(2rem, 6vh, 4rem);
  padding-block: 5rem;
}
.timeline-sticky .chapter-head { padding-inline: var(--pad); }
.timeline-track-wrap { position: relative; }
.timeline-track-wrap::before {
  content: ""; position: absolute; left: 0; right: 0; top: 1.05rem;
  height: 2px; background: rgba(255, 255, 255, .15);
}
.timeline-track {
  display: flex; gap: clamp(2rem, 5vw, 4.5rem);
  padding-inline: var(--pad);
  transform: translateX(calc(var(--p) * var(--tl-shift, 0px)));
  will-change: transform;
}
.tl-item { flex: 0 0 auto; width: min(21rem, 74vw); position: relative; padding-top: 2.6rem; }
.tl-item::before {
  content: ""; position: absolute; top: .65rem; left: 0;
  width: .9rem; height: .9rem; border-radius: 50%;
  background: var(--c-orange); box-shadow: 0 0 0 5px rgba(242, 106, 20, .22);
}
.tl-year { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 700; color: #fff; display: block; margin-bottom: .4rem; }
.tl-item p { font-size: .98rem; }
.tl-item--ambition .tl-year { color: var(--c-orange); }
.tl-item--ambition::before { background: #fff; }
@media (max-width: 56rem) {
  #ahead { height: auto; }
  .timeline-sticky { position: static; min-height: 0; }
  .timeline-track { flex-direction: column; transform: none; gap: 2rem; }
  .timeline-track-wrap::before { display: none; }
  .tl-item { width: auto; padding-top: 0; padding-left: 2rem; }
  .tl-item::before { top: .5rem; left: 0; }
}

/* ---------- 04 · Metrics ---------- */
.bignum-stack { max-width: var(--w-wide); margin-bottom: clamp(3rem, 7vh, 5rem); }
.bignum {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 1rem 2rem;
  padding: 1.6rem 0; border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.bignum strong {
  font-size: clamp(3rem, 9vw, 6.5rem); font-weight: 700; color: #fff;
  line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.01em;
}
.bignum strong [data-counter] { color: var(--c-orange); }
.bignum-label { font-size: 1.05rem; max-width: 24rem; }
.bignum-label em { display: block; font-style: normal; color: var(--c-haze); font-size: .9rem; }

.metric-panels {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
  max-width: var(--w-wide);
}
.metric-panel {
  margin: 0; background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px; padding: 1.6rem;
}
.metric-panel h3 { font-size: 1.05rem; margin-bottom: 1.1rem; }
.metric-panel figcaption { font-size: .8rem; color: var(--c-haze); margin-top: .9rem; }
.barchart { display: grid; gap: .8rem; }
.bar-row { display: grid; grid-template-columns: 6.5rem 1fr; align-items: center; gap: .7rem; }
.bar-label { font-size: .84rem; }
.bar-track { position: relative; background: rgba(255, 255, 255, .09); border-radius: 4px; height: 1.8rem; }
.bar-fill {
  height: 100%; width: 0; min-width: 2px; border-radius: 4px;
  background: var(--c-orange); display: flex; align-items: center;
  transition: width 1.1s cubic-bezier(.2, .7, .2, 1);
}
.bar-fill--muted { background: rgba(143, 161, 189, .6); }
.bar-fill--steel { background: var(--c-steel); }
.bar-fill b { font-size: .78rem; color: #fff; padding-left: .55rem; white-space: nowrap; }
.bar-target { position: absolute; top: -4px; bottom: -4px; width: 3px; background: #fff; border-radius: 2px; }
.metric-panel--counters {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; align-content: center;
}
.mini strong { display: block; font-size: 1.7rem; color: var(--c-orange); font-variant-numeric: tabular-nums; }
.mini span { font-size: .82rem; }

/* ---------- 05 · Case gallery (horizontal snap) ---------- */
.chapter--bleed { padding-inline: 0; }
.chapter--bleed .chapter-head { padding-inline: var(--pad); }
.gallery-wrap { position: relative; }
.gallery {
  display: flex; gap: 1.4rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 var(--pad) 1.4rem;
  scrollbar-width: thin; scrollbar-color: var(--c-orange) rgba(255,255,255,.08);
}
.gcard {
  flex: 0 0 min(30rem, 86vw); scroll-snap-align: start;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px; overflow: hidden;
}
.gcard img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.gcard-body { padding: 1.5rem; }
.gcard-body h3 { font-size: 1.35rem; margin: .6rem 0 .4rem; }
.gcard-body p { font-size: .95rem; }
.gcard-stat {
  margin: 1rem 0 0; font-weight: 700; color: var(--c-orange);
  font-size: 1.6rem;
}
.gcard-stat span { display: block; font-size: .82rem; color: var(--c-haze); font-weight: 400; }
.gallery-controls { display: flex; gap: .6rem; padding: .6rem var(--pad) 0; }
.gbtn {
  font: inherit; font-size: 1.1rem; line-height: 1;
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  background: none; color: #fff; border: 2px solid rgba(255, 255, 255, .3);
  cursor: pointer; transition: border-color .2s, background .2s, color .2s;
}
.gbtn:hover { border-color: var(--c-orange); background: var(--c-orange); color: var(--c-blue); }

/* ---------- 06 · World map (dark) ---------- */
.map-filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.4rem; max-width: var(--w-wide); }
.map-filter {
  font: inherit; font-size: .86rem; font-weight: 700;
  background: none; color: var(--c-mist);
  border: 2px solid rgba(255, 255, 255, .22); border-radius: 99px;
  padding: .42rem 1.05rem; cursor: pointer;
  display: inline-flex; align-items: center; gap: .45rem;
  transition: border-color .2s, background .2s, color .2s;
}
.map-filter:hover { border-color: var(--c-steel); }
.map-filter.is-active { background: var(--c-orange); color: var(--c-blue); border-color: var(--c-orange); }
.dot { width: .68rem; height: .68rem; border-radius: 50%; display: inline-block; }
.dot--mfg { background: var(--c-orange); }
.dot--di { background: var(--c-steel); }
.dot--dist { background: var(--c-haze); }
.dot--rec { background: #35b07c; }

.world-map { position: relative; max-width: var(--w-wide); overflow: hidden; touch-action: pan-y; }
.wm-viewport { position: relative; overflow: hidden; border-radius: 12px; touch-action: pan-y;
  background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .08); cursor: pointer; }
.wm-viewport.is-engaged { cursor: grab; box-shadow: inset 0 0 0 2px rgba(242, 106, 20, .55); }
.wm-viewport.is-panning { cursor: grabbing; }
.wm-canvas { position: relative; width: 100%; transform-origin: 0 0; transition: transform .12s ease-out; }
.wm-canvas.no-anim { transition: none; }
.wm-canvas svg { width: 100%; height: auto; display: block; }
.wm-land { fill: rgba(255, 255, 255, .1); }
.map-loading { color: var(--c-haze); padding: 3rem 0; text-align: center; }
.wm-zoom { position: absolute; right: .8rem; bottom: .8rem; z-index: 20;
  display: flex; flex-direction: column; gap: .35rem; }
.wm-zoom button {
  width: 2.4rem; height: 2.4rem; border-radius: 8px; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .18); background: rgba(0, 12, 36, .8); color: #fff;
  font: inherit; font-size: 1.2rem; font-weight: 700; line-height: 1;
  transition: background .2s, color .2s;
}
.wm-zoom button:hover { background: var(--c-orange); color: var(--c-blue); }
.wm-hint { position: absolute; left: .8rem; bottom: .8rem; z-index: 20; margin: 0;
  font-size: .72rem; color: var(--c-mist); background: rgba(0, 12, 36, .7);
  padding: .25rem .6rem; border-radius: 6px; }

.map-marker {
  position: absolute; transform: translate(-50%, -50%);
  width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid var(--c-blue-deep); cursor: pointer; padding: 0;
  background: var(--c-haze); box-shadow: 0 1px 4px rgba(0, 5, 16, .5);
}
.wm-canvas .map-marker { transform: translate(-50%, -50%) scale(var(--mz, 1)); }
.wm-canvas .map-marker:hover,
.wm-canvas .map-marker:focus-visible { transform: translate(-50%, -50%) scale(calc(var(--mz, 1) * 1.6)); z-index: 3; }
.map-marker--mfg { background: var(--c-orange); }
.map-marker--di { background: var(--c-steel); }
.map-marker--dist { background: var(--c-haze); }
.map-marker--maint { background: var(--c-haze); }
.map-marker--rec { background: #35b07c; }
.map-marker--hq { width: 17px; height: 17px; outline: 3px solid rgba(242, 106, 20, .4); }
.map-marker.is-dimmed { opacity: .15; pointer-events: none; }
.dot--maint { background: var(--c-haze); }

/* Phones: make the world map bigger and squarer — full-bleed width and a taller
   frame. map.js scales the map to fill this height (capped at 1.2×, so every
   marker stays visible) and biases the centre to the marker cluster. */
@media (max-width: 700px) {
  #map .world-map { width: 100vw; margin-left: calc(50% - 50vw); max-width: none; }
  #map .wm-viewport { aspect-ratio: 15 / 7; border-radius: 0; }
  #map .map-marker { width: 16px; height: 16px; }
  #map .map-marker--hq { width: 20px; height: 20px; }
}

.map-tooltip {
  position: absolute; z-index: 50; max-width: 18rem;
  background: #fff; color: var(--c-blue);
  border-radius: 10px; padding: .8rem 1rem;
  font-size: .85rem; line-height: 1.45;
  box-shadow: 0 10px 30px rgba(0, 5, 16, .5);
  pointer-events: none;
}
.map-tooltip strong { color: var(--c-orange); display: block; font-size: .95rem; }
.map-tooltip em { font-size: .8rem; display: block; margin-top: .1rem; }
.map-tooltip ul { list-style: none; margin: .35rem 0 0; padding: 0; }
.map-tooltip li { display: flex; align-items: baseline; gap: .45rem; }
.map-tooltip .dot { flex: 0 0 auto; width: .6rem; height: .6rem; border-radius: 50%; }

/* Region-grouped location list */
.map-table { margin-top: 1.6rem; max-width: var(--w-wide); }
.map-table summary { cursor: pointer; font-weight: 700; color: #fff; padding: .5rem 0; }
.map-table-body { margin-top: 1rem; display: block; }
.ct-region { margin-top: 1.8rem; }
.ct-region:first-child { margin-top: .5rem; }
.ct-region-title {
  font-size: 1.05rem; color: #fff; text-transform: uppercase; letter-spacing: .08em;
  margin: 0 0 1rem; padding-bottom: .45rem; border-bottom: 2px solid var(--c-orange);
}
.ct-region-grid { display: grid; gap: 1.2rem 1.5rem; align-items: start;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr)); }
.ct-country h4 {
  display: flex; align-items: baseline; gap: .5rem; color: #fff;
  font-size: 1rem; margin: 0 0 .5rem; padding-bottom: .4rem;
  border-bottom: 2px solid rgba(255, 255, 255, .14);
}
.ct-country h4 .ct-count { color: var(--c-haze); font-weight: 400; font-size: .85rem; margin-left: auto; }
.ct-city { padding: .45rem 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.ct-city:last-child { border-bottom: 0; }
.ct-city strong { display: block; font-size: .92rem; color: #fff; }
.ct-city span { font-size: .82rem; color: var(--c-mist); }

/* ---------- 07 · Values (kinetic list) ---------- */
.values-list { list-style: none; margin: 0; padding: 0; max-width: var(--w-wide); }
.values-item { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.values-trigger {
  display: flex; align-items: baseline; gap: clamp(1rem, 3vw, 2.5rem);
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: clamp(1.1rem, 3vh, 1.8rem) 0; color: inherit; font: inherit;
}
.values-index { font-size: .95rem; font-weight: 700; color: var(--c-orange); flex: 0 0 2.2rem; }
.values-name {
  font-size: clamp(1.8rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.05;
  text-transform: uppercase; letter-spacing: .01em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .55);
  transition: color .25s, -webkit-text-stroke-color .25s;
}
@supports not (-webkit-text-stroke: 1px #fff) { .values-name { color: rgba(255,255,255,.6); } }
.values-item:hover .values-name,
.values-trigger:focus-visible .values-name,
.values-trigger[aria-expanded="true"] .values-name { color: #fff; -webkit-text-stroke-color: transparent; }
.values-desc {
  max-height: 0; overflow: hidden; margin: 0 0 0 calc(2.2rem + clamp(1rem, 3vw, 2.5rem));
  max-width: 40rem; transition: max-height .45s ease, padding .45s ease;
  padding: 0;
}
.values-trigger[aria-expanded="true"] + .values-desc { max-height: 12rem; padding-bottom: 1.6rem; }

/* ---------- 08 · Outro ---------- */
.outro {
  min-height: 92svh; display: grid; place-items: center; text-align: center;
  overflow: hidden;
}
.outro-media { position: absolute; inset: 0; }
.outro-media img {
  width: 100%; height: 100%; object-fit: cover; opacity: .3;
  transform: scale(calc(1.15 - var(--p) * .15));
}
.outro::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 19, 56, .25), var(--c-blue-night) 85%);
}
.outro-content { position: relative; z-index: 1; max-width: 56rem; }
.outro-content .chapter-tag { justify-content: center; }
.outro-title {
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  text-transform: uppercase; margin-bottom: .3em;
}
.outro-title span { display: block; }
.outro-credit { color: var(--c-haze); margin-bottom: 2.2rem; }
.outro-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-solid, .btn-line {
  font-weight: 700; text-decoration: none; border-radius: 99px;
  padding: .85rem 1.8rem; transition: background .2s, color .2s, border-color .2s;
}
.btn-solid { background: var(--c-orange-btn); color: #fff; }
.btn-solid:hover { background: #fff; color: var(--c-blue); }
.btn-line { border: 2px solid rgba(255, 255, 255, .4); color: #fff; }
.btn-line:hover { border-color: var(--c-orange); color: var(--c-orange-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-blue-night); padding: 3rem var(--pad); }
.footer-inner { display: grid; gap: 1.2rem; justify-items: start; max-width: var(--w-wide); }
.footer-inner p { margin: 0; font-size: .9rem; }
.footer-legal { color: var(--c-haze); font-size: .8rem !important; }
.lang-switch { display: flex; gap: .5rem; }
.lang-btn {
  font: inherit; font-weight: 700; font-size: .85rem;
  background: none; color: var(--c-mist);
  border: 2px solid rgba(255, 255, 255, .25); border-radius: 6px;
  padding: .32rem .75rem; cursor: pointer;
}
.lang-btn.is-active { background: var(--c-orange); border-color: var(--c-orange); color: var(--c-blue); }
.lang-btn:disabled { opacity: .45; cursor: not-allowed; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  background: #fff; color: var(--c-blue);
  padding: .9rem 1.4rem; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 5, 16, .5);
  z-index: 300; font-size: .95rem; max-width: min(92vw, 30rem); text-align: center;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Reduced motion: the story stays, the motion goes ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .ht-solid, .ht-outline, .hero-lede { opacity: 1; transform: none; animation: none; transition: none; }
  .hero-media img, .outro-media img { transform: none; }
  .scroll-cue-line { animation: none; }
  .st-line { opacity: 1; transform: none; transition: none; }
  .statement { min-height: 0; }
  .statement-inner { position: static; min-height: 0; padding-block: 4rem; }
  .anatomy { height: auto; }
  .anatomy-sticky { position: static; min-height: 0; }
  .anatomy-layer { position: static; transform: skewX(-14deg); margin-bottom: 1rem; }
  .anatomy-stage { height: auto; display: block; padding-block: 1rem; }
  .anatomy-ghost { position: static; opacity: 1; margin-bottom: 1rem; }
  .anatomy-legend li { opacity: 1; }
  #ahead { height: auto; }
  .timeline-sticky { position: static; min-height: 0; }
  .timeline-track { flex-wrap: wrap; transform: none !important; }
  .bar-fill { transition: none; }
  .map-marker { transform: translate(-50%, -50%) scale(1) !important; transition: none; }
  .values-desc { max-height: none; padding-bottom: 1.4rem; }
}

/* ---------- 2025 rework additions ---------- */
.statement-credit {
  margin: 1.6rem 0 0; color: var(--c-haze); font-size: .95rem;
  opacity: 0; transition: opacity .5s ease .2s;
}
.statement[data-step="4"] .statement-credit { opacity: 1; }

.dot--maint { background: #8fa1bd; }
.map-marker--maint { background: #8fa1bd; }

.metrics-highlight {
  margin: clamp(2rem, 5vh, 3rem) 0 1rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem); color: #fff;
  max-width: 44rem; font-weight: 700; line-height: 1.5;
}
.metrics-highlight strong { color: var(--c-orange); }
.mini-todo { color: var(--c-orange); letter-spacing: .04em; }

.cso-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  max-width: var(--w-wide);
}
.cso-item {
  padding: 1.3rem 1.4rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
}
.cso-item strong { display: block; color: #fff; margin-bottom: .35rem; font-size: 1.02rem; }
.cso-item p { margin: 0; font-size: .9rem; }
.cso-item:last-child { border-color: rgba(242, 106, 20, .5); }
.cso-item:last-child strong { color: var(--c-orange); }

/* ==========================================================================
   V2 port from V1: chip-in-image, smooth read-more, portraits
   ========================================================================== */

/* ---- Case gallery: tag on the image ---- */
.gcard-media { position: relative; overflow: hidden; }
.gcard-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.gcard-media .chip {
  position: absolute; top: .85rem; left: .85rem; z-index: 2;
  background: var(--c-orange-btn); color: #fff;
  box-shadow: 0 2px 10px rgba(0, 5, 16, .45);
}

/* ---- Read more / less (smooth) ---- */
.readmore { margin-top: .3rem; }
/* Read-more removed — all body text is shown immediately. */
.readmore-body { max-height: none; opacity: 1; overflow: visible; }
.readmore-body p { font-size: .92rem; color: var(--c-mist); margin: .6rem 0 0; }
.readmore-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  font: inherit; font-weight: 700; font-size: .85rem;
  color: var(--c-orange-soft); background: none; border: 0;
  padding: .4rem 0; cursor: pointer;
}
.readmore-toggle:hover { color: #fff; }
.readmore-icon {
  display: inline-grid; place-items: center;
  width: 1.3rem; height: 1.3rem; border-radius: 50%;
  border: 2px solid currentColor; font-weight: 700; line-height: 1;
}
@media (prefers-reduced-motion: reduce) { .readmore-body { transition: none; } }

/* ---- Portraits (CEO / CSO) with monogram fallback ---- */
.person-photo {
  position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: 10px;
  overflow: hidden; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 25%, #12315f, #000c24 70%);
  border: 1px solid rgba(255, 255, 255, .12);
}
.person-photo span { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--c-orange); letter-spacing: .04em; }
.person-photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.person-photo--round { width: 6rem; aspect-ratio: 1; border-radius: 50%; }

/* CEO portrait under the pinned intro statement */
.statement-person {
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  margin: 2.2rem 0 0; opacity: 0; transition: opacity .5s ease .1s;
}
.statement[data-step="4"] .statement-person { opacity: 1; }
.statement-person .statement-credit { margin: 0; opacity: 1; color: var(--c-mist); }

/* CSO portrait beside the summary heading */
.cso-person { display: flex; align-items: center; gap: 1rem; margin: 0 0 2rem; flex-wrap: wrap; }
.cso-person .person-photo { width: 5rem; aspect-ratio: 1; border-radius: 50%; flex: 0 0 auto; }
.cso-person figcaption { display: flex; flex-direction: column; }
.cso-person-name { font-weight: 700; color: #fff; font-size: 1.05rem; }
.cso-person-role { color: var(--c-orange-soft); font-size: .9rem; }

/* ==========================================================================
   Strategy — Progress cards (auto-advancing slider, 4 cards)
   ========================================================================== */
.pcards { width: 100%; }
/* Height follows content: the row is as tall as the tallest card (the open one),
   so it shrinks to fit the text + metrics. A min-height keeps the closed photo
   tiles looking substantial before anything is opened. */
.pcards-row { display: flex; gap: .8rem; align-items: stretch; min-height: 360px; }

.pcard {
  position: relative; overflow: hidden;
  background: var(--c-blue-night);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  transition: flex-grow .55s cubic-bezier(.4, 0, .2, 1), flex-basis .55s cubic-bezier(.4, 0, .2, 1);
  /* no card active → all four equal (1/4). One active → active 1/2 (flex 3),
     the three closed share the other 1/2 (flex 1 each). */
  flex: 1 1 0; min-width: 0;
}
.pcard.is-active { flex: 3 1 0; }

/* Closed cards: photo fully visible, NO overlay (text stays legible via shadow).
   Open card: photo hidden, background matches the KPI cards (subtle white on the
   card's dark base) for a clean, readable panel. */
.pcard-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transition: transform .6s cubic-bezier(.2, .6, .2, 1); }
/* subtle photo zoom on hover for closed cards (no colour shift on the title) */
.pcard:not(.is-active):hover .pcard-bg { transform: scale(1.06); }
.pcard-bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0); /* transparent when closed */
  transition: background .45s ease;
}
.pcard.is-active .pcard-bg { background-image: none !important; } /* hide photo when open */
.pcard.is-active .pcard-bg::after { background: rgba(255, 255, 255, .06); } /* same as .kpi */
.pcard-collapsed, .pcard-active { position: relative; z-index: 1; }

/* No timer — the left-edge progress bar is removed. */
.pcard-progress { display: none !important; }
.pcard-progress-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: var(--c-orange); }
.pcard.is-active .pcard-progress-fill.is-running { animation: pcard-fill 14s linear forwards; }
@keyframes pcard-fill { from { height: 0; } to { height: 100%; } }

/* Collapsed state: number + upright wrapping title + hairline */
.pcard-collapsed {
  display: flex; flex-direction: column; width: 100%; height: 100%;
  padding: 1.4rem 1.3rem; background: none; border: 0; cursor: pointer;
  text-align: left; color: inherit; font: inherit;
}
.pcard.is-active .pcard-collapsed { display: none; }
.pcard-num { font-size: .8rem; font-weight: 700; letter-spacing: .12em; color: rgba(255, 255, 255, .9); margin-bottom: .8rem; text-shadow: 0 1px 3px rgba(0, 0, 0, .9), 0 1px 12px rgba(0, 0, 0, .6); }
/* category label shown in the collapsed preview too */
.pcard-tag--sm { align-self: flex-start; margin-bottom: .7rem; box-shadow: 0 1px 6px rgba(0, 5, 16, .4); }
.pcard-ctitle { font-size: 1.05rem; font-weight: 600; line-height: 1.25; color: #fff; text-shadow: 0 1px 4px rgba(0, 0, 0, .9), 0 2px 14px rgba(0, 0, 0, .6); }
.pcard-hair { margin-top: 1.1rem; flex: 1; width: 2px; border-radius: 2px;
  background: linear-gradient(rgba(255, 255, 255, .18), rgba(255, 255, 255, 0)); }

/* Active state content — grows to fit its text + metrics (no inner scroll) */
.pcard-active { display: none; height: auto; }
.pcard.is-active .pcard-active { display: block; }
.pcard-scroll { height: auto; overflow: visible; padding: 1.6rem 1.8rem 1.8rem 2rem; }

/* Close (X) — only on the open card; clicking the card also closes it (see pcards.js) */
.pcard-close {
  position: absolute; top: .7rem; right: .8rem; z-index: 2;
  width: 2rem; height: 2rem; border-radius: 50%;
  display: none; place-items: center;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18);
  color: #fff; cursor: pointer; font-size: 1.05rem; line-height: 1;
  transition: background .2s, border-color .2s, transform .2s;
}
.pcard.is-active .pcard-close { display: grid; }
.pcard-close:hover { background: rgba(242, 106, 20, .25); border-color: var(--c-orange); transform: rotate(90deg); }
.pcard-tag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: rgba(242, 106, 20, .85);
  padding: .3rem .7rem; border-radius: 99px; margin-bottom: .9rem;
  box-shadow: 0 2px 8px rgba(0, 5, 16, .4);
}
.pcard-title { font-size: 18px; font-weight: 500; color: #fff; margin: 0 0 .8rem; line-height: 1.25; }
.pcard-intro, .pcard-active .readmore-body p { font-size: 13.5px; line-height: 1.65; color: var(--c-mist); }
.pcard-intro { margin: 0; }

/* Expanded: metrics + image */
.pcard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin: 1.2rem 0; }
.pcard-metric { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: 8px; padding: .8rem .7rem; }
.pcard-metric strong { display: block; font-size: 15px; font-weight: 500; color: var(--c-orange); line-height: 1.1; }
.pcard-metric span { display: block; font-size: 11px; color: var(--c-haze); margin-top: .25rem; }
.pcard-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; border: 1px solid rgba(255, 255, 255, .1); }

/* Controls */
.pcards-controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.4rem; }
.pcards-dots { display: flex; gap: .55rem; }
.pcard-dot { width: 8px; height: 8px; border-radius: 50%; padding: 0; cursor: pointer;
  background: rgba(255, 255, 255, .25); border: 0; transition: background .2s, transform .2s; }
.pcard-dot:hover { transform: scale(1.25); }
.pcard-dot.is-active { background: var(--c-orange); }
.pcards-toggle { width: 2.2rem; height: 2.2rem; border-radius: 50%; cursor: pointer;
  background: none; border: 2px solid rgba(255, 255, 255, .3); color: #fff;
  display: inline-grid; place-items: center; transition: border-color .2s, background .2s; }
.pcards-toggle:hover { border-color: var(--c-orange); }
.pcards-toggle-icon { display: block; }
/* pause = two bars (auto-advance running) */
.pcards-toggle[aria-pressed="false"] .pcards-toggle-icon {
  width: 10px; height: 12px; border-left: 3px solid #fff; border-right: 3px solid #fff;
}
/* play = triangle (auto-advance paused) */
.pcards-toggle[aria-pressed="true"] .pcards-toggle-icon {
  width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent;
  border-left: 11px solid #fff; margin-left: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .pcard { transition: none; }
  .pcard.is-active .pcard-progress-fill.is-running { animation: none; }
}

/* Mobile: cards stacked as an accordion. Collapsed shows the photo tile with the
   number + tag on one line and a chevron; tapping expands with a smooth reveal. */
@media (max-width: 768px) {
  .pcards-row { flex-direction: column; align-items: stretch; min-height: 0; gap: .8rem; }
  .pcard { flex: none !important; width: auto; min-height: 116px; }
  .pcard.is-active { min-height: 0; }
  .pcard-hair { display: none; }
  .pcards-controls { display: none; }

  /* collapsed header: "02 Circularity" on one line + chevron */
  .pcard-collapsed { min-height: 116px; flex-direction: row; flex-wrap: wrap; align-items: center;
    align-content: flex-start; gap: .55rem; padding: 1.05rem 1.2rem; }
  .pcard.is-active .pcard-collapsed { display: flex; min-height: 0; }
  .pcard-num { margin: 0; font-size: .85rem; font-weight: 700; color: var(--c-orange-soft); }
  .pcard-tag--sm { margin: 0; }
  .pcard-ctitle { display: none; }
  .pcard-collapsed::after { content: ""; margin-left: auto; width: .62rem; height: .62rem;
    border-right: 2px solid rgba(255, 255, 255, .65); border-bottom: 2px solid rgba(255, 255, 255, .65);
    transform: rotate(45deg); transition: transform .3s ease; }
  .pcard.is-active .pcard-collapsed::after { transform: rotate(-135deg); }

  /* smooth open/close */
  .pcard-active { display: block; max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .5s cubic-bezier(.4, 0, .2, 1), opacity .35s ease; }
  .pcard.is-active .pcard-active { max-height: 280rem; opacity: 1; }
  .pcard-close { display: none; }  /* the chevron header handles collapse on mobile */
  .pcard-scroll { height: auto; overflow: visible; padding: 0 1.2rem 1.3rem; }

  /* metrics: 3 compact blocks side by side */
  .pcard-metrics { grid-template-columns: repeat(3, 1fr); gap: .5rem; margin: 1rem 0; }
  .pcard-metric { padding: .6rem .5rem; }
  .pcard-metric strong { font-size: 1.05rem; }
  .pcard-metric span { font-size: 9px; margin-top: .15rem; }
}

/* ==========================================================================
   Metrics — ported from Voorstel 1 (labelled KPI grid + theme filter + charts)
   ========================================================================== */
.metric-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.6rem; }
.metric-filter {
  font: inherit; font-size: .88rem; font-weight: 700;
  background: rgba(255, 255, 255, .06); color: #fff;
  border: 2px solid rgba(255, 255, 255, .22); border-radius: 99px;
  padding: .45rem 1.1rem; cursor: pointer; transition: border-color .2s, background .2s, transform .2s;
}
.metric-filter:hover { border-color: var(--c-orange); transform: translateY(-1px); }
.metric-filter.is-active { background: var(--c-orange-btn); border-color: var(--c-orange-btn); color: #fff; }

.kpi-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(4, 1fr); margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: var(--w-wide); }
@media (max-width: 60rem) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 34rem) { .kpi-grid { grid-template-columns: 1fr; } }
.kpi {
  position: relative; background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; padding: 1.4rem 1.5rem;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.kpi:hover { transform: translateY(-4px); border-color: rgba(242, 106, 20, .5); background-color: rgba(255, 255, 255, .09); }
.kpi[hidden] { display: none; }
.kpi-cat { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-orange); margin-bottom: .5rem; }
.kpi-headline { display: flex; align-items: baseline; flex-wrap: wrap; gap: .1rem .5rem; margin: 0 0 .15rem; }
.kpi-value { display: inline-flex; align-items: baseline; font-size: clamp(2.2rem, 4vw, 2.9rem); font-weight: 700; color: #fff; line-height: 1.1; }
.kpi-value [data-counter] { color: #fff; font-variant-numeric: tabular-nums; }
.kpi-unit { font-size: .6em; color: #fff; font-weight: 700; }
.kpi-noun { font-size: 1.1rem; font-weight: 700; color: var(--c-orange); line-height: 1.2; }
.kpi-label { display: block; margin-top: .4rem; font-size: .92rem; color: var(--c-mist); }
.kpi-delta { display: inline-block; margin-top: .6rem; font-size: .8rem; font-weight: 700; padding: .15rem .6rem; border-radius: 99px; }
.kpi-delta--up { background: rgba(57, 140, 203, .25); color: #9fd0f2; }
.kpi-delta--down { background: rgba(242, 106, 20, .22); color: #ffb185; }

.chart-row { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); max-width: var(--w-wide); }
.chart-card { margin: 0; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; padding: 1.6rem; }
.chart-card h3 { font-size: 1.1rem; margin-bottom: 1.2rem; color: #fff; }
.chart-card .barchart { display: grid; gap: .9rem; margin-bottom: 1rem; }
.bar-value { font-size: .8rem; font-weight: 700; color: #fff; padding-left: .6rem; white-space: nowrap; }

/* ==========================================================================
   ESG topics — tabbed component (Environment / Social / Governance)
   ========================================================================== */
/* ESG topics live in their own section after Metrics: intro above, tabs below */
.esg-section { padding-top: clamp(2rem, 5vh, 3.5rem); }
.esg-intro { text-align: center; max-width: 48rem; margin: 0 auto clamp(1.6rem, 4vh, 2.6rem); }
.esg-intro .esg-kicker { display: inline-block; margin-bottom: .6rem; }
.esg-intro .esg-title { margin: 0 0 .6rem; }
.esg-intro .esg-lede { margin: 0; }
.esg-tabs { max-width: var(--w-wide); }
.esg-tablist {
  display: flex; justify-content: center; flex-wrap: wrap; gap: .3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12); margin-bottom: clamp(2rem, 5vh, 3.2rem);
}
.esg-tab {
  font: inherit; font-weight: 700; font-size: 1.02rem; letter-spacing: .02em;
  color: var(--c-haze); background: none; border: 0; cursor: pointer;
  padding: .9rem 1.5rem; position: relative; transition: color .2s;
}
.esg-tab::after {
  content: ""; position: absolute; left: 1.1rem; right: 1.1rem; bottom: -1px; height: 3px;
  background: var(--c-orange); border-radius: 3px 3px 0 0; transform: scaleX(0); transition: transform .25s ease;
}
.esg-tab:hover { color: #fff; }
.esg-tab.is-active { color: #fff; }
.esg-tab.is-active::after { transform: scaleX(1); }

.esg-panel { animation: esg-fade .4s ease; }
.esg-panel[hidden] { display: none; }
@keyframes esg-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .esg-panel { animation: none; } }

.esg-head { text-align: center; max-width: 48rem; margin: 0 auto clamp(2rem, 5vh, 3rem); }
.esg-kicker { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--c-orange); margin-bottom: .7rem; }
.esg-title { font-size: clamp(1.6rem, 3.2vw, 2.4rem); text-transform: none; margin: 0 0 .6rem; }
.esg-lede { color: var(--c-mist); font-size: 1.1rem; margin: 0; }

.esg-body {
  display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
}
@media (max-width: 56rem) { .esg-body { grid-template-columns: 1fr; } }
.esg-col { display: flex; flex-direction: column; gap: 1.8rem; }
.esg-block h4 {
  color: #fff; font-size: 1.12rem; margin: 0 0 .7rem;
  border-left: 3px solid var(--c-orange); padding-left: .75rem;
}
.esg-block ul { margin: 0; padding-left: 1.15rem; }
.esg-block li { color: var(--c-mist); font-size: .96rem; line-height: 1.6; margin-bottom: .5rem; }
.esg-block li strong { color: #fff; }
.esg-block p { color: var(--c-mist); font-size: .96rem; line-height: 1.65; margin: 0 0 .8rem; }
.esg-block p:last-child { margin-bottom: 0; }

.esg-side { display: flex; flex-direction: column; gap: 1.2rem; position: sticky; top: 2rem; }
@media (max-width: 56rem) { .esg-side { position: static; } }
.esg-figure { margin: 0; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); }
.esg-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.esg-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: 12px; padding: 1.3rem 1.4rem; }
.esg-card h4 { color: #fff; font-size: 1rem; margin: 0 0 1rem; }
.esg-note { font-size: .8rem; color: var(--c-haze); margin: .9rem 0 0; }

.esg-meter-row { margin-bottom: .85rem; }
.esg-meter-row:last-child { margin-bottom: 0; }
.esg-meter-top { display: flex; justify-content: space-between; align-items: baseline; font-size: .85rem; color: var(--c-mist); margin-bottom: .3rem; }
.esg-meter-top strong { color: #fff; font-variant-numeric: tabular-nums; }
.esg-meter-bar { height: 6px; background: rgba(255, 255, 255, .1); border-radius: 3px; overflow: hidden; }
.esg-meter-fill { display: block; height: 100%; border-radius: 3px; }
.esg-meter-fill--fossil { background: var(--c-haze); }
.esg-meter-fill--renew { background: var(--c-orange); }
.esg-meter-fill--nuclear { background: var(--c-steel); }

.esg-duo { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.esg-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-bottom: 1.2rem; }
.esg-stat { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08); border-radius: 8px; padding: .8rem .7rem; }
.esg-stat strong { display: block; font-size: 1.35rem; font-weight: 700; color: var(--c-orange); line-height: 1.05; font-variant-numeric: tabular-nums; }
.esg-stat span { display: block; font-size: .74rem; color: var(--c-haze); margin-top: .3rem; }

/* New company types from the full list */
.dot--hold { background: #5f6b82; }
.dot--other { background: #9aa0a8; }
.map-marker--hold { background: #5f6b82; }
.map-marker--other { background: #9aa0a8; }

/* KPI cards with a photo background (dark overlay keeps the white text readable) */
/* Photo KPI: the photo lives on a dedicated .kpi-bg child (inline background-image
   resolves relative to the document — reliable on file:// and http). The child can
   be scaled on hover without the card's hover background wiping the image. A gradient
   ::after over the photo keeps text legible; content sits above via z-index. */
.kpi--photo { position: relative; overflow: hidden; }
.kpi-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform .6s cubic-bezier(.2, .6, .2, 1);
}
.kpi-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(0, 20, 52, .48) 0%, rgba(0, 14, 40, .7) 55%, rgba(0, 10, 32, .84) 100%);
}
.kpi--photo > *:not(.kpi-bg) { position: relative; z-index: 1; }
.kpi--photo:hover .kpi-bg { transform: scale(1.06); }

/* ==========================================================================
   Case studies — masonry gallery (cards open the lightbox below)
   ========================================================================== */
/* JS distributes cards into the shortest column, so columns stay balanced (no gaps).
   Each card is a fixed-aspect tile (mixed portrait / landscape / square) with the
   title + excerpt overlaid on the photo. */
.masonry { display: flex; gap: 1.1rem; align-items: flex-start; max-width: var(--w-wide); }
.masonry-col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.mcard {
  position: relative; display: block; width: 100%; padding: 0; margin: 0;
  aspect-ratio: var(--ar, 1); border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px;
  overflow: hidden; cursor: pointer; text-align: left; font: inherit; color: #fff;
  background: var(--c-blue-night);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.mcard:hover { border-color: rgba(242, 106, 20, .55); box-shadow: 0 26px 54px -30px rgba(0, 0, 0, .8); }
.mcard:focus-visible { outline: 2px solid var(--c-orange); outline-offset: 3px; }
.mcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .6, .2, 1); }
.mcard:hover img { transform: scale(1.07); }
.mcard::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 6, 20, .92) 0%, rgba(0, 6, 20, .55) 34%, rgba(0, 6, 20, 0) 68%); }
.mcard-label {
  position: absolute; left: .8rem; top: .8rem; z-index: 2;
  font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff;
  background: rgba(242, 106, 20, .9); padding: .3rem .65rem; border-radius: 99px;
  box-shadow: 0 2px 8px rgba(0, 5, 16, .4);
}
.mcard-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.1rem 1.15rem 1.15rem; }
.mcard-title { font-size: 1.05rem; font-weight: 600; line-height: 1.25; color: #fff; margin: 0 0 .35rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5); }
.mcard-excerpt {
  font-size: .82rem; line-height: 1.5; color: rgba(255, 255, 255, .82); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (prefers-reduced-motion: reduce) { .mcard, .mcard img { transition: none; } }

/* ==========================================================================
   Case studies — 3D Axis Carousel + pop-up
   ========================================================================== */
.axis { position: relative; width: 100%; }
.axis-viewport {
  position: relative; height: 520px;
  perspective: 1800px;
  overflow: hidden;
  cursor: grab; touch-action: pan-y;
}
.axis-viewport.is-grabbing { cursor: grabbing; }
.axis-viewport:focus-visible { outline: 2px solid var(--c-orange); outline-offset: 4px; border-radius: 12px; }
.axis-stage { position: absolute; inset: 0; transform-style: preserve-3d; }

.axis-card {
  position: absolute; top: 50%; left: 50%;
  width: clamp(260px, 30vw, 360px); height: clamp(340px, 40vw, 440px);
  margin: 0; padding: 1.7rem; border: 0; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start; gap: .75rem;
  text-align: left; font: inherit; color: #fff; cursor: pointer;
  border-radius: 16px; border: 0;
  background-color: var(--c-blue-night);
  background-size: cover; background-position: center;   /* photo set inline in axis.js */
  /* crisp, consistent hairline via an inset ring (reads cleanly on any photo) */
  box-shadow: 0 30px 60px -32px rgba(0, 0, 0, .85), inset 0 0 0 1px rgba(255, 255, 255, .16);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1), opacity .6s ease,
              border-color .4s ease, box-shadow .4s ease;
}
/* legibility overlay over the photo */
.axis-card::after {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit;
  background: linear-gradient(178deg, rgba(0, 8, 24, .2) 0%, rgba(0, 8, 24, .5) 46%, rgba(0, 6, 20, .92) 100%);
  transition: background .4s ease;
}
.axis-card > * { position: relative; z-index: 1; }
.axis-card-num { font-size: .8rem; font-weight: 700; letter-spacing: .14em; color: rgba(255, 255, 255, .7); text-shadow: 0 1px 6px rgba(0, 0, 0, .6); }
.axis-card-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: rgba(242, 106, 20, .85);
  padding: .3rem .7rem; border-radius: 99px; box-shadow: 0 2px 8px rgba(0, 5, 16, .4);
}
.axis-card-title { font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 600; line-height: 1.22; margin-top: auto; text-shadow: 0 1px 4px rgba(0, 0, 0, .8), 0 2px 16px rgba(0, 0, 0, .5); }
.axis-card-cue {
  font-size: .8rem; font-weight: 700; color: var(--c-orange-soft); text-shadow: 0 1px 6px rgba(0, 0, 0, .7);
  opacity: 0; transform: translateY(6px); transition: opacity .35s ease, transform .35s ease;
}
.axis-card.is-active {
  box-shadow: 0 44px 90px -34px rgba(0, 0, 0, .95), inset 0 0 0 2px var(--c-orange);
}
.axis-card.is-active::after {
  background: linear-gradient(178deg, rgba(0, 8, 24, .05) 0%, rgba(0, 8, 24, .34) 44%, rgba(0, 6, 20, .84) 100%);
}
.axis-card.is-active .axis-card-cue { opacity: 1; transform: none; }

.axis-controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.6rem; }
.axis-btn {
  width: 2.8rem; height: 2.8rem; border-radius: 50%; flex: none;
  border: 1px solid rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .05);
  color: #fff; font-size: 1.1rem; cursor: pointer; display: grid; place-items: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.axis-btn:hover { background: rgba(242, 106, 20, .2); border-color: var(--c-orange); }
.axis-btn:active { transform: scale(.92); }
.axis-dots { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; max-width: min(60%, 420px); }
.axis-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(255, 255, 255, .25); transition: background .2s, transform .2s; }
.axis-dot:hover { transform: scale(1.25); }
.axis-dot.is-active { background: var(--c-orange); transform: scale(1.3); }

/* Pop-up */
.case-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem); }
.case-modal[hidden] { display: none; }
.case-modal-backdrop { position: absolute; inset: 0; background: rgba(0, 6, 20, .72);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .35s ease; }
.case-modal.is-open .case-modal-backdrop { opacity: 1; }
.case-modal-dialog {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  width: min(940px, 100%); max-height: min(86vh, 660px); overflow: hidden;
  border-radius: 18px; border: 1px solid rgba(255, 255, 255, .14);
  background: var(--c-blue-night); box-shadow: 0 50px 130px -30px rgba(0, 0, 0, .92);
  opacity: 0; transform: translateY(16px) scale(.975);
  transition: opacity .35s ease, transform .42s cubic-bezier(.2, .7, .2, 1);
}
.case-modal.is-open .case-modal-dialog { opacity: 1; transform: none; }
.case-modal-media { margin: 0; background: #00060f; }
.case-modal-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-modal-scroll { min-height: 0; max-height: min(86vh, 660px);
  padding: 2.1rem 2.1rem 2.3rem; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--c-orange) rgba(255,255,255,.08); }
.case-modal-media { min-height: 0; position: relative; }

/* play button + video (case cards + modal) */
.mcard-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 2.4rem; height: 2.4rem; border-radius: 50%; pointer-events: none;
  background: rgba(242, 106, 20, .92); display: grid; place-items: center;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .6);
  transition: transform .3s cubic-bezier(.2, .6, .2, 1), background .2s;
}
.mcard:hover .mcard-play { transform: translate(-50%, -50%) scale(1.12); background: var(--c-orange); }
.mcard-play::before, .case-modal-play::before {
  content: ""; width: 0; height: 0;
  border-style: solid; border-color: transparent transparent transparent #fff;
}
.mcard-play::before { margin-left: .18rem; border-width: .42rem 0 .42rem .68rem; }
.case-modal-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 4;
  width: 4.6rem; height: 4.6rem; border-radius: 50%; cursor: pointer; border: 0;
  background: rgba(242, 106, 20, .94); display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(0, 0, 0, .65);
  transition: transform .2s cubic-bezier(.2, .6, .2, 1), background .2s;
}
.case-modal-play:hover { transform: translate(-50%, -50%) scale(1.09); background: var(--c-orange); }
.case-modal-play:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.case-modal-play[hidden] { display: none; }
.case-modal-play::before { margin-left: .3rem; border-width: .85rem 0 .85rem 1.4rem; }
.case-modal-video { position: absolute; inset: 0; z-index: 5; background: #000; }
.case-modal-video iframe, .case-modal-video video {
  width: 100%; height: 100%; border: 0; display: block; background: #000;
}
/* keep landscape footage fully visible (letterboxed) instead of cropped */
.case-modal-video video { object-fit: contain; }

/* prev/next navigation arrows (flanking the dialog) */
.case-modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .28); background: rgba(0, 6, 20, .55); color: #fff;
  font-size: 1.2rem; line-height: 1; display: grid; place-items: center;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s, transform .2s;
}
.case-modal-nav:hover { background: rgba(242, 106, 20, .35); border-color: var(--c-orange); transform: translateY(-50%) scale(1.08); }
.case-modal-nav--prev { left: clamp(.6rem, 3vw, 2rem); }
.case-modal-nav--next { right: clamp(.6rem, 3vw, 2rem); }

/* subtle content cross-fade when navigating between cases */
.case-modal-dialog.is-swapping .case-modal-scroll,
.case-modal-dialog.is-swapping .case-modal-media { animation: caseSwap .34s ease; }
@keyframes caseSwap { from { opacity: .25; } to { opacity: 1; } }
.case-modal-tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-orange-soft); background: rgba(242, 106, 20, .15);
  padding: .3rem .7rem; border-radius: 99px; margin-bottom: 1rem; }
.case-modal-title { font-size: clamp(1.2rem, 2.3vw, 1.6rem); font-weight: 600; color: #fff;
  line-height: 1.25; margin: 0 0 1.1rem; }
.case-modal-body p { font-size: .94rem; line-height: 1.72; color: var(--c-mist); margin: 0 0 1rem; }
.case-modal-body p:last-child { margin-bottom: 0; }
.case-modal-close { position: absolute; top: .8rem; right: .9rem; z-index: 6;
  width: 2.4rem; height: 2.4rem; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .22); background: rgba(0, 6, 20, .55); color: #fff;
  font-size: 1.35rem; line-height: 1; display: grid; place-items: center;
  transition: background .2s, border-color .2s, transform .2s; }
.case-modal-close:hover { background: rgba(242, 106, 20, .3); border-color: var(--c-orange); transform: rotate(90deg); }
body.modal-open { overflow: hidden; }

@media (max-width: 760px) {
  .case-modal-dialog { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); max-height: 84vh; }
  .case-modal-media { max-height: 30vh; }
  .case-modal-scroll { max-height: none; }
  .case-modal-nav { top: auto; bottom: .7rem; transform: none; width: 2.7rem; height: 2.7rem; }
  .case-modal-nav:hover { transform: scale(1.08); }
  .case-modal-nav--prev { left: calc(50% - 3.6rem); }
  .case-modal-nav--next { right: calc(50% - 3.6rem); }
}
@media (max-width: 600px) {
  .axis-viewport { height: 430px; }
  .axis-card { width: clamp(210px, 66vw, 260px); }
}
@media (prefers-reduced-motion: reduce) {
  .axis-card, .case-modal-dialog, .case-modal-backdrop, .kpi-bg { transition: none; }
}

/* ==========================================================================
   Business model — interactive value-chain wheel
   ========================================================================== */
.bizmodel {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem); align-items: center; max-width: var(--w-wide);
}
.bizmodel-wheel { width: 100%; max-width: 500px; margin: 0 auto; }
#bizmodel-svg { width: 100%; height: auto; display: block; overflow: visible; }

.bm-stage { cursor: pointer; outline: none; }
/* clean segments: no heavy outline — separation comes from the angular gap */
.bm-sector {
  fill: rgba(255, 255, 255, .05);
  stroke: none;
  transition: fill .25s ease;
}
.bm-stage:hover .bm-sector,
.bm-stage:focus-visible .bm-sector { fill: rgba(255, 255, 255, .11); }
.bm-stage.is-active .bm-sector { fill: var(--c-orange); }
.bm-icon { fill: #9cc4e8; transition: fill .25s ease; }
.bm-stage:hover .bm-icon, .bm-stage:focus-visible .bm-icon { fill: #fff; }
.bm-stage.is-active .bm-icon { fill: #fff; }
.bm-label { fill: var(--c-mist); font-size: 11px; font-weight: 600; letter-spacing: .02em; transition: fill .25s ease; }
.bm-stage:hover .bm-label, .bm-stage:focus-visible .bm-label { fill: #fff; }
.bm-stage.is-active .bm-label { fill: #fff; }
.bm-stage:focus-visible .bm-sector { fill: rgba(242, 106, 20, .28); }
.bm-hub { cursor: pointer; outline: none; }
.bm-hub-text { fill: #fff; font-size: 15px; font-weight: 700; letter-spacing: .01em; }
.bm-hub:focus-visible circle { stroke: var(--c-orange); stroke-width: 2; }

.bizmodel-detail { min-height: 15rem; }
.bizmodel-detail.is-in { animation: bmFade .35s ease; }
@keyframes bmFade { from { opacity: .2; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.bizmodel-kicker { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c-orange-soft); margin: 0 0 .6rem; }
.bizmodel-dtitle { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 600; color: #fff; line-height: 1.2; margin: 0 0 1rem; }
.bizmodel-dtext { font-size: .96rem; line-height: 1.72; color: var(--c-mist); margin: 0; }
.bizmodel-hint { margin: 1.2rem 0 0; font-size: .82rem; color: var(--c-haze); font-style: italic; }

@media (max-width: 820px) {
  .bizmodel { grid-template-columns: 1fr; gap: 1.6rem; }
  .bizmodel-wheel { max-width: 420px; }
  .bizmodel-detail { min-height: 0; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .bm-sector, .bm-icon, .bm-label { transition: none; }
  .bizmodel-detail.is-in { animation: none; }
}

/* ==========================================================================
   ESG — full-width accordion (Environment / Social / Governance)
   ========================================================================== */
.esg-accordion { display: flex; flex-direction: column; max-width: var(--w-wide);
  border-top: 1px solid rgba(255, 255, 255, .14); }
.esg-acc-header {
  display: flex; align-items: center; gap: 1.5rem; width: 100%;
  background: none; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .14);
  padding: 1.4rem 0; cursor: pointer; text-align: left; color: #fff; font: inherit;
  transition: padding .3s ease;
}
.esg-acc-word { font-size: clamp(2.4rem, 6vw, 5.2rem); font-weight: 700; line-height: .95;
  text-transform: uppercase; letter-spacing: -.01em; white-space: nowrap; }
.esg-acc-first { color: #fff; }
.esg-acc-rest {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, .55);
  transition: color .3s ease, -webkit-text-stroke-color .3s ease;
}
.esg-acc-header:hover .esg-acc-rest,
.esg-acc-header[aria-expanded="true"] .esg-acc-rest { color: #fff; -webkit-text-stroke-color: transparent; }
.esg-acc-sub { margin-left: auto; font-size: .92rem; font-weight: 500; color: var(--c-haze); }
.esg-acc-icon { position: relative; flex: none; width: 1.5rem; height: 1.5rem; }
.esg-acc-icon::before, .esg-acc-icon::after { content: ""; position: absolute; background: var(--c-orange);
  border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.esg-acc-icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.esg-acc-icon::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.esg-acc-header[aria-expanded="true"] .esg-acc-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }

.esg-acc-panel { overflow: hidden; transition: height .45s cubic-bezier(.4, 0, .2, 1); }
.esg-acc-panel[hidden] { display: none; }
.esg-acc-inner { position: relative; padding: 2rem 0 2.6rem; }
.esg-acc-media { position: absolute; top: 1.4rem; right: 0; bottom: 1.6rem; width: 30%;
  border-radius: 12px; overflow: hidden; background-size: cover; background-position: center; }
.esg-acc-media::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0, 10, 30, .96) 0%, rgba(0, 10, 30, .55) 38%, rgba(0, 10, 30, .18) 100%); }
.esg-acc-content { padding-right: calc(30% + 2.5rem); }
.esg-acc-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.esg-acc-col h4 { font-size: 1rem; font-weight: 600; color: var(--c-orange-soft); margin: 0 0 .7rem; }
.esg-acc-col ul { margin: 0; padding-left: 1.1rem; }
.esg-acc-col li { font-size: .85rem; line-height: 1.5; color: var(--c-mist); margin-bottom: .5rem; }
.esg-acc-col p { font-size: .85rem; line-height: 1.6; color: var(--c-mist); margin: 0 0 .7rem; }
.esg-acc-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.8rem; }
.esg-acc-metric { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px; padding: 1rem 1.1rem; }
.esg-acc-metric strong { display: block; font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1; }
.esg-acc-metric span { display: block; font-size: .78rem; color: var(--c-haze); margin-top: .35rem; }

/* Mobile: E / S / G become a 3-across tab row; panel opens below; metrics stack */
@media (max-width: 820px) {
  .esg-accordion { flex-flow: row wrap; border-top: 0; }
  .esg-acc-header { flex: 1 1 0; order: 0; flex-direction: column; align-items: center; gap: .25rem;
    padding: .9rem .3rem; border-bottom: 2px solid rgba(255, 255, 255, .14); text-align: center; }
  .esg-acc-header .esg-acc-first { color: var(--c-haze); transition: color .25s ease; }
  .esg-acc-header:hover .esg-acc-first,
  .esg-acc-header[aria-expanded="true"] .esg-acc-first { color: #fff; }
  .esg-acc-header[aria-expanded="true"] { border-bottom-color: var(--c-orange); }
  .esg-acc-word { font-size: 2.4rem; }
  .esg-acc-rest, .esg-acc-sub, .esg-acc-icon { display: none; }
  .esg-acc-panel { order: 1; flex-basis: 100%; width: 100%; }
  .esg-acc-inner { padding: 1.5rem 0 1.8rem; }
  .esg-acc-media { display: none; }
  .esg-acc-content { padding-right: 0; }
  .esg-acc-cols { grid-template-columns: 1fr; gap: 1.3rem; }
  .esg-acc-metrics { grid-template-columns: 1fr; gap: .7rem; }
}
@media (prefers-reduced-motion: reduce) {
  .esg-acc-panel, .esg-acc-rest, .esg-acc-icon::after { transition: none; }
}

/* ==========================================================================
   Mobile bottom tab menu
   ========================================================================== */
.mobile-tabs { display: none; }
@media (max-width: 56rem) {
  .mobile-tabs {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    background: rgba(0, 8, 24, .82); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: .25rem .2rem calc(.25rem + env(safe-area-inset-bottom, 0px));
  }
  .mobile-tabs a {
    position: relative; flex: 1; text-align: center; text-decoration: none;
    padding: .55rem .1rem; font-size: .62rem; font-weight: 600; letter-spacing: .02em;
    color: var(--c-haze); transition: color .2s ease;
  }
  .mobile-tabs a.is-current { color: #fff; }
  .mobile-tabs a.is-current::before {
    content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 1.6rem; height: 2px; border-radius: 2px; background: var(--c-orange);
  }
  main { padding-bottom: 3.6rem; }
}

/* ==========================================================================
   Mobile: hide the header download button + more uniform type scale
   ========================================================================== */
@media (max-width: 40rem) {
  .site-header .btn-download { display: none; }
  .site-header { justify-content: flex-start; }

  /* one consistent type scale instead of very large / very small extremes */
  .hero-title, .hero-title--report { font-size: 2.1rem; line-height: 1.1; }
  .chapter-title { font-size: 1.9rem; line-height: 1.15; }
  .hero-subtitle { font-size: 1.05rem; }
  .hero-lede, .chapter-lede { font-size: 1rem; line-height: 1.55; }
  .chapter-tag { font-size: .72rem; }
  .kpi-value { font-size: 1.9rem; }
  .kpi-noun { font-size: 1rem; }
  .kpi-label { font-size: .85rem; }
  .pcard-title { font-size: 1.05rem; }
  .pcard-intro, .pcard-active .readmore-body p { font-size: .92rem; }
  .esg-acc-col h4 { font-size: .95rem; }
  .esg-acc-col li, .esg-acc-col p { font-size: .88rem; }
  .bizmodel-dtitle { font-size: 1.3rem; }
  .bizmodel-dtext { font-size: .92rem; }
  .ceo-slide { font-size: 1.05rem; }
}

/* ==========================================================================
   VOORSTEL 3 — structure-specific sections
   ========================================================================== */
.hero-lede--sub { color: var(--c-haze); font-size: .98rem; margin-top: .8rem; }

/* --- 03 · Approach: three priority cards --- */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: var(--w-wide); }
.approach-card { position: relative; overflow: hidden; display: flex; flex-direction: column; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px; transition: border-color .3s ease, transform .3s ease, background .3s ease; }
.approach-card:hover { border-color: rgba(242, 106, 20, .45); transform: translateY(-4px); background: rgba(255, 255, 255, .07); }
.approach-media { position: relative; flex: 0 0 auto; aspect-ratio: 16 / 10; overflow: hidden; }
.approach-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2, .6, .2, 1); }
.approach-card:hover .approach-media img { transform: scale(1.05); }
.approach-num { position: absolute; top: .85rem; left: .95rem; font-size: .74rem; font-weight: 700; letter-spacing: .12em;
  color: #fff; background: rgba(0, 6, 20, .55); padding: .25rem .6rem; border-radius: 99px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.approach-body { flex: 1 1 auto; display: flex; flex-direction: column; padding: 1.4rem 1.6rem 1.6rem; }
.approach-title { font-size: 1.35rem; font-weight: 600; color: #fff; line-height: 1.2; margin: 0 0 .7rem; }
.approach-card p { font-size: .9rem; line-height: 1.6; color: var(--c-mist); margin: 0 0 1.5rem; }
.approach-stat { margin-top: auto; padding-top: 1.35rem; border-top: 1px solid rgba(255, 255, 255, .12); }
.approach-stat strong { display: block; font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.approach-stat span { display: block; font-size: .8rem; line-height: 1.35; color: var(--c-haze); margin-top: .45rem; min-height: 2.7em; }

/* --- Full-bleed image band --- */
.imageband { position: relative; width: 100%; min-height: 46vh; display: grid; place-items: center;
  overflow: hidden; margin: 1rem 0; }
.imageband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.imageband::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0, 8, 24, .55), rgba(0, 8, 24, .74)); }
.imageband-inner { position: relative; z-index: 1; max-width: 50rem; text-align: center; padding: 3rem var(--pad); }
.imageband-quote { position: relative; font-size: clamp(1.5rem, 3.4vw, 2.6rem); font-weight: 500; color: #fff;
  line-height: 1.34; letter-spacing: -.005em; margin: 0; text-wrap: balance; }
.imageband-quote::before { content: ""; display: block; width: 2.6rem; height: 3px; border-radius: 2px;
  background: var(--c-orange); margin: 0 auto 1.6rem; }

/* --- 04 · Innovation: feature cards --- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: var(--w-wide); }
.feat-card { position: relative; overflow: hidden; background: linear-gradient(160deg, rgba(0, 40, 102, .35), rgba(0, 10, 30, .6));
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 14px;
  transition: border-color .3s ease, transform .3s ease; }
.feat-card:hover { border-color: rgba(242, 106, 20, .5); transform: translateY(-4px); }
.feat-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.feat-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2, .6, .2, 1); }
.feat-card:hover .feat-media img { transform: scale(1.06); }
.feat-stat { position: absolute; left: .9rem; bottom: .8rem; font-size: 1rem; font-weight: 700; color: #fff; line-height: 1;
  background: rgba(242, 106, 20, .92); padding: .3rem .65rem; border-radius: 99px; box-shadow: 0 2px 8px rgba(0, 5, 16, .4); }
.feat-body { padding: 1.4rem 1.5rem 1.5rem; }
.feat-title { font-size: 1.12rem; font-weight: 600; color: #fff; margin: 0 0 .6rem; line-height: 1.25; }
.feat-card p { font-size: .86rem; line-height: 1.6; color: var(--c-mist); margin: 0; }

/* --- 06 · Measuring progress: accordion --- */
.prog-accordion { max-width: var(--w-wide); border-top: 1px solid rgba(255, 255, 255, .14); }
.prog-header { display: flex; align-items: center; gap: 1.2rem; width: 100%; background: none;
  border: 0; border-bottom: 1px solid rgba(255, 255, 255, .14); padding: 1.3rem 0; cursor: pointer;
  text-align: left; color: #fff; font: inherit; }
.prog-name { font-size: clamp(1.2rem, 2.4vw, 1.7rem); font-weight: 600; }
.prog-teaser { margin-left: auto; font-size: .86rem; color: var(--c-haze); text-align: right; }
.prog-icon { position: relative; flex: none; width: 1.3rem; height: 1.3rem; }
.prog-icon::before, .prog-icon::after { content: ""; position: absolute; background: var(--c-orange); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease; }
.prog-icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.prog-icon::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.prog-header[aria-expanded="true"] .prog-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.prog-header:hover .prog-name { color: var(--c-orange-soft); }
.prog-panel { overflow: hidden; transition: height .45s cubic-bezier(.4, 0, .2, 1); }
.prog-panel[hidden] { display: none; }
.prog-inner { padding: 1.6rem 0 2rem; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1.6rem 2.4rem; align-items: start; }
.prog-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.prog-metric { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: 10px; padding: .9rem 1rem; }
.prog-metric strong { display: block; font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1.1; }
.prog-metric span { display: block; font-size: .76rem; color: var(--c-haze); margin-top: .3rem; }
.prog-context { font-size: .9rem; line-height: 1.7; color: var(--c-mist); margin: 0; }
.prog-panel .prog-inner > .prog-context:only-child { grid-column: 1 / -1; max-width: var(--w-copy); }

/* --- 07 · Lifecycle: horizontal value chain --- */
.lifecycle { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1rem; max-width: var(--w-wide); counter-reset: lc; }
.lc-step { position: relative; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px; padding: 1.3rem 1.1rem; }
.lc-step:not(:last-child)::after { content: "→"; position: absolute; right: -0.85rem; top: 50%; transform: translateY(-50%);
  color: var(--c-orange); font-size: 1.1rem; z-index: 1; }
.lc-num { font-size: .78rem; font-weight: 700; letter-spacing: .12em; color: var(--c-orange-soft); }
.lc-title { font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.25; margin: .4rem 0 .5rem; }
.lc-step p { font-size: .8rem; line-height: 1.5; color: var(--c-mist); margin: 0; }
.lifecycle-highlight { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem;
  padding: 1.3rem 1.5rem; border-radius: 12px; background: rgba(242, 106, 20, .1); border: 1px solid rgba(242, 106, 20, .3);
  max-width: var(--w-wide); }
.lifecycle-highlight strong { font-size: 1.8rem; font-weight: 700; color: var(--c-orange-soft); }
.lifecycle-highlight span { font-size: .92rem; color: var(--c-mist); }

/* --- 08 · Downloads --- */
.downloads { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: var(--w-wide); }
.dl-card { display: flex; flex-direction: column; gap: .3rem; text-decoration: none; color: #fff;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px;
  padding: 1.2rem 1.3rem; transition: border-color .3s ease, transform .3s ease, background .3s ease; }
.dl-card:hover { border-color: rgba(242, 106, 20, .5); transform: translateY(-3px); background: rgba(255, 255, 255, .08); }
.dl-icon { font-size: 1.1rem; color: var(--c-orange-soft); }
.dl-name { font-size: 1rem; font-weight: 600; }
.dl-meta { font-size: .78rem; color: var(--c-haze); }

/* --- footer additions --- */
.footer-title { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 600; color: #fff; line-height: 1.2; margin: 1rem 0 .8rem; max-width: 22ch; }
.footer-lede { font-size: .95rem; line-height: 1.7; color: var(--c-mist); max-width: var(--w-copy); margin: 0 0 1.4rem; }
.footer-address { font-size: .82rem; color: var(--c-haze); }

@media (max-width: 900px) {
  .approach-grid, .feat-grid, .downloads { grid-template-columns: 1fr 1fr; }
  .lifecycle { grid-template-columns: 1fr 1fr; }
  .lc-step:not(:last-child)::after { display: none; }
  .prog-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .approach-grid, .feat-grid, .downloads, .lifecycle { grid-template-columns: 1fr; }
  .prog-metrics { grid-template-columns: 1fr; }
  .prog-teaser { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .approach-card, .feat-card, .dl-card, .prog-panel, .prog-icon::after { transition: none; }
}

/* ==========================================================================
   LIGHT THEME (Voorstel 3 — huisstijl: white surfaces, navy text, orange accent)
   ========================================================================== */
body.theme-light { background: #eef1f5; color: #33415a; }

/* Header: no white bar — transparent with the diapositive (white) logo, kept
   legible by a soft top scrim that fades away. */
body.theme-light .site-header { background: transparent; border-bottom: 0;
  -webkit-backdrop-filter: none; backdrop-filter: none; }
body.theme-light .site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 16, 40, .38), rgba(0, 16, 40, 0));
}

/* Chapter side-nav */
body.theme-light .chapter-nav a { color: rgba(0, 40, 102, .5); }
body.theme-light .chapter-nav .cn-dot { background: rgba(0, 40, 102, .28); }
body.theme-light .chapter-nav a.is-current { color: #C24E00; }
body.theme-light .chapter-nav a.is-current .cn-dot { background: var(--c-orange); }

/* Section headings & fine print */
body.theme-light .chapter-title { color: #002866; }
body.theme-light .chapter-lede { color: #4a5a72; }
body.theme-light .chapter-tag { color: #6b7a90; }
body.theme-light .chapter-num { color: #C24E00; border-color: rgba(194, 78, 0, .45); }
body.theme-light .fine-print { color: #8090a4; }

/* KPI dashboard */
body.theme-light .kpi { background: #fff; border-color: rgba(0, 40, 102, .12); box-shadow: 0 12px 32px -24px rgba(0, 20, 60, .45); }
body.theme-light .kpi:hover { background: #fff; border-color: rgba(242, 106, 20, .5); }
body.theme-light .kpi-cat { color: #C24E00; }
body.theme-light .kpi-value, body.theme-light .kpi-value [data-counter], body.theme-light .kpi-unit { color: #002866; }
body.theme-light .kpi-noun { color: #C24E00; }
body.theme-light .kpi-label { color: #6b7a90; }
body.theme-light .kpi-delta--up { background: rgba(57, 140, 203, .16); color: #2b6ca3; }
body.theme-light .kpi-delta--down { background: rgba(242, 106, 20, .14); color: #C24E00; }

/* Approach + feature cards */
body.theme-light .approach-card,
body.theme-light .feat-card,
body.theme-light .lc-step,
body.theme-light .dl-card { background: #fff; border-color: rgba(0, 40, 102, .12); box-shadow: 0 14px 36px -26px rgba(0, 20, 60, .45); }
body.theme-light .approach-title, body.theme-light .feat-title, body.theme-light .lc-title,
body.theme-light .approach-stat strong, body.theme-light .dl-name { color: #002866; }
body.theme-light .approach-card p, body.theme-light .feat-card p, body.theme-light .lc-step p { color: #4a5a72; }
body.theme-light .approach-stat { border-top-color: rgba(0, 40, 102, .12); }
body.theme-light .approach-stat span, body.theme-light .dl-meta { color: #6b7a90; }
body.theme-light .dl-icon, body.theme-light .lc-num { color: #C24E00; }

/* Measuring-progress accordion */
body.theme-light .prog-accordion { border-top-color: rgba(0, 40, 102, .15); }
body.theme-light .prog-header { border-bottom-color: rgba(0, 40, 102, .15); }
body.theme-light .prog-name { color: #002866; }
body.theme-light .prog-header:hover .prog-name { color: #C24E00; }
body.theme-light .prog-teaser { color: #6b7a90; }
body.theme-light .prog-metric { background: #fff; border-color: rgba(0, 40, 102, .12); }
body.theme-light .prog-metric strong { color: #002866; }
body.theme-light .prog-metric span { color: #6b7a90; }
body.theme-light .prog-context { color: #4a5a72; }

/* Lifecycle highlight */
body.theme-light .lifecycle-highlight { background: rgba(242, 106, 20, .1); border-color: rgba(242, 106, 20, .32); }
body.theme-light .lifecycle-highlight strong { color: #C24E00; }
body.theme-light .lifecycle-highlight span { color: #4a5a72; }

/* Case masonry + lightbox */
body.theme-light .mcard { background: #fff; border-color: rgba(0, 40, 102, .12); }
body.theme-light .mcard:hover { box-shadow: 0 26px 54px -30px rgba(0, 20, 60, .5); }
body.theme-light .case-modal-backdrop { background: rgba(18, 30, 52, .5); }
body.theme-light .case-modal-dialog { background: #fff; border-color: rgba(0, 40, 102, .12); }
body.theme-light .case-modal-title { color: #002866; }
body.theme-light .case-modal-body p { color: #4a5a72; }
body.theme-light .case-modal-close { background: rgba(0, 40, 102, .06); border-color: rgba(0, 40, 102, .2); color: #002866; }
body.theme-light .case-modal-scroll { scrollbar-color: var(--c-orange) rgba(0, 40, 102, .1); }

/* Mobile bottom tabs */
body.theme-light .mobile-tabs { background: rgba(255, 255, 255, .93); border-top-color: rgba(0, 40, 102, .12); }
body.theme-light .mobile-tabs a { color: #6b7a90; }
body.theme-light .mobile-tabs a.is-current { color: #002866; }

/* Buttons: accessible orange on light (AA) */
body.theme-light .btn--primary, body.theme-light .btn-download { background: #C24E00; color: #fff; }
body.theme-light .btn--primary:hover, body.theme-light .btn-download:hover { background: #a53f00; }

/* Footer: keep a navy band for contrast against the light page */
body.theme-light .site-footer { background: #002866; }

/* ---- V3 Light refinements (round 2) ---- */
.hero-actions { margin-top: 1.7rem; }

/* Hero: lighter, balanced photo treatment (full photo + bottom navy scrim) */
body.theme-light .hero-media img { opacity: 1; }
body.theme-light .hero::after {
  background: linear-gradient(to top, rgba(0, 20, 50, .82) 0%, rgba(0, 20, 50, .42) 46%, rgba(0, 18, 45, .06) 80%);
}
/* Hero copy stays white over the photo */
body.theme-light .hero-title { color: #fff; }
body.theme-light .hero-subtitle { color: #fff; }
body.theme-light .hero-lede { color: rgba(255, 255, 255, .92); }
body.theme-light .hero .chapter-tag { color: rgba(255, 255, 255, .8); }
body.theme-light .hero .chapter-num { color: var(--c-orange-soft); border-color: rgba(255, 255, 255, .4); }
body.theme-light .scroll-cue { color: rgba(255, 255, 255, .85); }

/* Buttons: use the real button classes, accessible orange on light */
body.theme-light .btn-solid, body.theme-light .btn-download { background: #C24E00; color: #fff; }
body.theme-light .btn-solid:hover, body.theme-light .btn-download:hover { background: #a53f00; color: #fff; }

/* Footer: soft light band instead of the strong navy block */
body.theme-light .site-footer { background: #e6ebf2; border-top: 1px solid rgba(0, 40, 102, .1); }
body.theme-light .footer-title { color: #002866; }
body.theme-light .footer-lede { color: #4a5a72; }
body.theme-light .footer-address { color: #6b7a90; }
body.theme-light .site-footer a { color: #C24E00; }

/* Photo-backed KPI cards keep white text over the dark image overlay */
body.theme-light .kpi--photo { border-color: rgba(0, 40, 102, .12); }
body.theme-light .kpi--photo .kpi-value,
body.theme-light .kpi--photo .kpi-value [data-counter],
body.theme-light .kpi--photo .kpi-unit { color: #fff; }
body.theme-light .kpi--photo .kpi-cat,
body.theme-light .kpi--photo .kpi-noun { color: var(--c-orange-soft); }
body.theme-light .kpi--photo .kpi-label { color: rgba(255, 255, 255, .85); }
body.theme-light .kpi--photo .kpi-delta--up,
body.theme-light .kpi--photo .kpi-delta--down { background: rgba(255, 255, 255, .2); color: #fff; }

/* ---- Innovation: CTI lead card + product row ---- */
.innov-lead { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); overflow: hidden;
  border-radius: 16px; border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .05);
  max-width: var(--w-wide); margin-bottom: 1.6rem; }
.innov-lead-media { position: relative; min-height: 280px; }
.innov-lead-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.innov-lead-body { padding: 2.2rem 2.3rem; align-self: center; }
.innov-lead-tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: rgba(242, 106, 20, .92); padding: .3rem .7rem; border-radius: 99px; margin-bottom: 1rem; }
.innov-lead-title { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; color: #fff; margin: 0 0 .9rem; line-height: 1.15; }
.innov-lead-body p { font-size: .95rem; line-height: 1.65; color: var(--c-mist); margin: 0; }
.innov-connector { text-align: center; margin: .2rem 0 1.5rem; }
.innov-connector span { display: inline-flex; align-items: center; gap: .5rem; font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--c-orange-soft); }
.innov-connector span::after { content: "\2193"; font-size: 1rem; }
.feat-grid--4 { grid-template-columns: repeat(4, 1fr); }

body.theme-light .innov-lead { background: #fff; border-color: rgba(0, 40, 102, .12); box-shadow: 0 16px 40px -28px rgba(0, 20, 60, .45); }
body.theme-light .innov-lead-title { color: #002866; }
body.theme-light .innov-lead-body p { color: #4a5a72; }
body.theme-light .innov-connector span { color: #C24E00; }

@media (max-width: 820px) {
  .innov-lead { grid-template-columns: 1fr; }
  .innov-lead-media { min-height: 200px; aspect-ratio: 16 / 9; }
  .feat-grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .feat-grid--4 { grid-template-columns: 1fr; }
}

/* ---- Impact: playful masonry, columns stretched so bottoms align (no gaps) ---- */
.masonry { display: flex; align-items: stretch; gap: 1.1rem; max-width: var(--w-wide); }
.masonry-col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.mcard { aspect-ratio: var(--ar, 1); }
.mcard--fill { aspect-ratio: auto; flex: 1 1 auto; min-height: 210px; }

/* ---- World map (light theme) ---- */
body.theme-light .wm-viewport { background: #d3dded; border-color: rgba(0, 40, 102, .12); }
body.theme-light .wm-land { fill: #ffffff; }
body.theme-light .map-loading { color: #6b7a90; }
body.theme-light .map-filter { border-color: rgba(0, 40, 102, .22); color: #33415a; }
body.theme-light .map-filter:hover { border-color: var(--c-steel); }
body.theme-light .map-filter.is-active { background: #C24E00; color: #fff; border-color: #C24E00; }
body.theme-light .wm-zoom button { background: #fff; border-color: rgba(0, 40, 102, .2); color: #002866; }
body.theme-light .wm-zoom button:hover { background: var(--c-orange); color: #fff; }
body.theme-light .wm-hint { background: rgba(255, 255, 255, .92); color: #33415a; border: 1px solid rgba(0, 40, 102, .12); }
body.theme-light .map-marker--dist, body.theme-light .map-marker--maint { background: #6b7a90; }
body.theme-light .map-marker--other { background: #8894a8; }
/* remove the dark outline on the map dots (light theme) */
body.theme-light .map-marker { border: none; box-shadow: 0 1px 3px rgba(0, 40, 102, .18); }
body.theme-light .map-marker--hq { outline: 3px solid rgba(242, 106, 20, .4); }

/* ---- Business model wheel (light theme) ---- */
body.theme-light .bm-sector { fill: rgba(0, 40, 102, .07); }
body.theme-light .bm-stage:hover .bm-sector,
body.theme-light .bm-stage:focus-visible .bm-sector { fill: rgba(0, 40, 102, .13); }
body.theme-light .bm-stage.is-active .bm-sector { fill: var(--c-orange); }
body.theme-light .bm-label { fill: #33415a; }
body.theme-light .bm-stage:hover .bm-label,
body.theme-light .bm-stage:focus-visible .bm-label { fill: #002866; }
body.theme-light .bm-stage.is-active .bm-label { fill: #fff; }
body.theme-light .bizmodel-kicker { color: #C24E00; }
body.theme-light .bizmodel-dtitle { color: #002866; }
body.theme-light .bizmodel-dtext { color: #4a5a72; }
body.theme-light .bizmodel-hint { color: #6b7a90; }

/* ==========================================================================
   V3 Light — round 3 (metric filters, innovation split+accordion)
   ========================================================================== */
/* Metric filter bar */
.metric-filters { margin-bottom: 1.4rem; }
body.theme-light .metric-filter { background: #fff; border-color: rgba(0, 40, 102, .2); color: #33415a; }
body.theme-light .metric-filter:hover { border-color: var(--c-orange); }
body.theme-light .metric-filter.is-active { background: #002866; border-color: #002866; color: #fff; }

/* Innovation: CTI (left) + accordion (right), height-matched */
.innov-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.4rem;
  align-items: stretch; max-width: var(--w-wide); }
.innov-cti { display: flex; flex-direction: column; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .05); }
.innov-cti .innov-lead-tag { align-self: flex-start; margin: 1.8rem 1.8rem 0; }
.innov-cti-title { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; color: #fff; line-height: 1.15; margin: .7rem 1.8rem .9rem; }
.innov-cti p { font-size: .95rem; line-height: 1.65; color: var(--c-mist); margin: 0 1.8rem; }
.innov-cti-driver { margin-top: 1rem !important; font-weight: 500; color: #e6edf6; }
.innov-cti-driver strong { color: var(--c-orange-soft); font-weight: 700; }
.innov-cti-media { flex: 1 1 auto; min-height: 200px; margin-top: 1.5rem; }
.innov-cti-media img { display: block; width: 100%; height: 100%; object-fit: cover; }

.innov-acc { display: flex; flex-direction: column; gap: .8rem; }
.innov-item { border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; overflow: hidden;
  background: rgba(255, 255, 255, .04); transition: border-color .3s ease; }
.innov-item:hover { border-color: rgba(242, 106, 20, .4); }
.innov-head { display: flex; align-items: center; gap: 1rem; width: 100%; background: none; border: 0;
  padding: 1.15rem 1.35rem; cursor: pointer; text-align: left; color: #fff; font: inherit; }
.innov-name { flex: 1; font-size: 1.1rem; font-weight: 600; }
.innov-ic { position: relative; flex: none; width: 1.15rem; height: 1.15rem; }
.innov-ic::before, .innov-ic::after { content: ""; position: absolute; background: var(--c-orange); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease; }
.innov-ic::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.innov-ic::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.innov-head[aria-expanded="true"] .innov-ic::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.innov-head:hover .innov-name { color: var(--c-orange-soft); }
.innov-panel { overflow: hidden; transition: height .4s cubic-bezier(.4, 0, .2, 1); }
.innov-panel[hidden] { display: none; }
.innov-inner { padding: 0 1.35rem 1.25rem; }
.innov-inner p { font-size: .9rem; line-height: 1.62; color: var(--c-mist); margin: 0; }
.innov-media { margin: 0 0 1rem; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 9; }
.innov-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

body.theme-light .innov-cti { background: #fff; border-color: rgba(0, 40, 102, .12); box-shadow: 0 16px 40px -28px rgba(0, 20, 60, .45); }
body.theme-light .innov-cti-title { color: #002866; }
body.theme-light .innov-cti p { color: #4a5a72; }
body.theme-light .innov-cti-driver { color: #33415a; }
body.theme-light .innov-item { background: #fff; border-color: rgba(0, 40, 102, .12); }
body.theme-light .innov-head, body.theme-light .innov-name { color: #002866; }
body.theme-light .innov-inner p { color: #4a5a72; }

@media (max-width: 820px) {
  .innov-split { grid-template-columns: 1fr; }
  .innov-cti-media { min-height: 200px; aspect-ratio: 16 / 9; flex: none; }
}

/* ---- Subtle, corporate scroll animations (staggered fade + rise) ---- */
.reveal[data-reveal-delay="1"] { transition-delay: .08s; }
.reveal[data-reveal-delay="2"] { transition-delay: .16s; }
.reveal[data-reveal-delay="3"] { transition-delay: .24s; }
.downloads .dl-card:nth-child(2) { transition-delay: .05s; }
.downloads .dl-card:nth-child(3) { transition-delay: .10s; }
.downloads .dl-card:nth-child(4) { transition-delay: .15s; }
.downloads .dl-card:nth-child(5) { transition-delay: .20s; }
.downloads .dl-card:nth-child(6) { transition-delay: .25s; }
.prog-accordion .prog-item:nth-child(2) { transition-delay: .05s; }
.prog-accordion .prog-item:nth-child(3) { transition-delay: .10s; }
.prog-accordion .prog-item:nth-child(4) { transition-delay: .15s; }
.prog-accordion .prog-item:nth-child(5) { transition-delay: .20s; }
@media (prefers-reduced-motion: reduce) {
  .reveal[data-reveal-delay], .downloads .dl-card, .prog-accordion .prog-item { transition-delay: 0s !important; }
}

/* ---- V3 Light round 4: side-nav over hero, bare header ---- */
/* White, semi-transparent dots while the side-nav sits over the dark hero */
body.theme-light .chapter-nav.on-dark a { color: rgba(255, 255, 255, .7); }
body.theme-light .chapter-nav.on-dark .cn-dot { background: rgba(255, 255, 255, .45); }
body.theme-light .chapter-nav.on-dark a:hover .cn-label,
body.theme-light .chapter-nav.on-dark a.is-current .cn-label { color: #fff; }
body.theme-light .chapter-nav.on-dark a.is-current { color: #fff; }
body.theme-light .chapter-nav.on-dark a.is-current .cn-dot { background: var(--c-orange); transform: scale(1.5); }
/* smooth colour transition when switching between hero and light sections */
.chapter-nav .cn-dot { transition: background .35s ease, transform .3s ease; }
.chapter-nav a { transition: color .35s ease; }

/* ---- Message from the CEO (foreword, below hero) ---- */
.foreword { display: grid; grid-template-columns: minmax(0, 1fr) clamp(180px, 24%, 280px);
  gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; max-width: var(--w-wide); }
.foreword-body { order: 1; }   /* text + navigation on the left */
.foreword-media { order: 2;    /* photo on the right */
  position: relative; margin: 0; border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 46px -28px rgba(0, 20, 60, .5); }
.foreword-media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 5; }
.foreword-media figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem 1.2rem;
  background: linear-gradient(to top, rgba(0, 12, 34, .82), rgba(0, 12, 34, 0)); color: #fff; }
.foreword-media figcaption strong { display: block; font-size: 1.02rem; font-weight: 600; }
.foreword-media figcaption span { display: block; font-size: .8rem; opacity: .85; }
.foreword-body .chapter-tag { margin: 0 0 .5rem; }
.foreword-body .chapter-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 1.2rem; }
.foreword-body p { font-size: .98rem; line-height: 1.72; margin: 0 0 1rem; }
/* CEO message as a swipeable / arrow-navigated carousel of 6 sections */
.cmsg-slider { overflow: hidden; margin-top: .2rem; border-top: 1px solid rgba(0, 40, 102, .14);
  padding-top: 1.1rem; touch-action: pan-y; }
.cmsg-slider:focus-visible { outline: 2px solid var(--c-orange); outline-offset: 3px; }
.cmsg-track { display: flex; align-items: flex-start; transition: transform .45s cubic-bezier(.4, 0, .2, 1); }
.cmsg-slide { flex: 0 0 100%; min-width: 0; padding-right: .3rem; }
.cmsg-slide .foreword-sub:first-child { margin-top: 0; }
.cmsg-nav { display: flex; align-items: center; flex-wrap: wrap; gap: .9rem; margin-top: 1.15rem; }
.cmsg-arrow { width: 2.6rem; height: 2.6rem; flex: 0 0 auto; border-radius: 50%; cursor: pointer;
  border: 1.5px solid rgba(0, 40, 102, .35); background: transparent; color: #002866;
  font-size: 1.15rem; line-height: 1; display: grid; place-items: center;
  transition: background .2s, border-color .2s, color .2s, opacity .2s; }
.cmsg-arrow:hover:not(:disabled) { background: #002866; border-color: #002866; color: #fff; }
.cmsg-arrow:focus-visible { outline: 3px solid var(--c-orange); outline-offset: 2px; }
.cmsg-arrow:disabled { opacity: .3; cursor: default; }
.cmsg-count { font-size: .82rem; font-weight: 700; letter-spacing: .1em; color: #6b7a90; }
.foreword-sub { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
  margin: 0 0 .6rem; }
.foreword-sign { font-weight: 700 !important; letter-spacing: .01em; margin: 0 0 0 auto !important; }
body.theme-light .foreword-body p { color: #4a5a72; }
body.theme-light .foreword-lead { color: #33415a; }
body.theme-light .foreword-sub { color: #002866; }
body.theme-light .foreword-body .chapter-tag { color: #C24E00; }
body.theme-light .foreword-sign { color: #002866; }
@media (max-width: 820px) {
  .foreword { grid-template-columns: 1fr; gap: 1.4rem; }
  .foreword-media img { aspect-ratio: 16 / 10; }
  .foreword-media { max-width: 460px; }
}

/* ---- CSO "way of working" section — light theme ---- */
body.theme-light .cso-item { background: #fff; border-color: rgba(0, 40, 102, .12);
  box-shadow: 0 12px 32px -26px rgba(0, 20, 60, .4); }
body.theme-light .cso-item strong { color: #002866; }
body.theme-light .cso-item p { color: #4a5a72; }
body.theme-light .cso-item:last-child { border-color: rgba(242, 106, 20, .5); }
body.theme-light .cso-item:last-child strong { color: #C24E00; }
body.theme-light .cso-person-name { color: #002866; }
body.theme-light .cso-person-role { color: #6b7a90; }

/* ==========================================================================
   Brand tagline — lens-blur hero ("Play on. Today and tomorrow.")
   A full-bleed photo (randomised each load) with a soft, cursor-following
   blur "lens": a sharp base image plus a blurred copy revealed only inside a
   feathered circle at the pointer. js/v3.js drives --mx / --my (with easing).
   The tagline sits centred on the visual. White on a subtle scrim for
   legibility across any background photo.
   ========================================================================== */
.tagline-scene { position: relative; min-height: 100svh; overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 14vh 6vw;
  background: #001c47; }
/* `hidden` on the section must win over the display:flex above (re-enable by
   removing the hidden attribute in index.html) */
.tagline-scene[hidden] { display: none; }

/* lens layers */
.lens { position: absolute; inset: 0; z-index: 0; }
.lens-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
/* base layer is permanently blurred */
.lens-img--blurred { filter: blur(var(--lens-blur, 15px)); will-change: filter; }
/* the sharp layer sits on top and is revealed only inside the feathered lens circle */
.lens-img--sharp {
  -webkit-mask-image: radial-gradient(circle var(--lr, 170px) at var(--mx, 50%) var(--my, 50%),
    #000 0, #000 var(--core, 58%), transparent 100%);
          mask-image: radial-gradient(circle var(--lr, 170px) at var(--mx, 50%) var(--my, 50%),
    #000 0, #000 var(--core, 58%), transparent 100%);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
/* legibility scrim over the photo */
.lens-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 20, 60, .38) 0%, rgba(0, 20, 60, .16) 42%, rgba(0, 20, 60, .52) 100%); }

/* tagline copy: three stacked words, left-aligned lines, centred on the visual */
.tl-copy { position: relative; z-index: 2; text-align: left; max-width: 42rem; margin-inline: auto;
  pointer-events: none; }
.tl-tagline { margin: 0; line-height: .96; text-transform: uppercase;
  text-shadow: 0 2px 26px rgba(0, 10, 30, .4); }
.tl-word { display: block; font-weight: 700; font-size: clamp(2.4rem, 8.5vw, 6.6rem); letter-spacing: .022em; }
.tl-word--fill { color: #fff; -webkit-text-stroke: 0.02em #fff; text-stroke: 0.02em #fff; }
.tl-word--outline { color: transparent;
  -webkit-text-stroke: 0.014em #fff; text-stroke: 0.014em #fff; }

@media (max-width: 760px) {
  .lens-img--sharp { --lr: 120px; }
  .lens-img--blurred { --lens-blur: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .lens-img--blurred, .lens-img--sharp { transition: none; }
}
