/* ==========================================================================
   BLACKPOINT — Canadian Strategic Holding Inc.
   Design system v2 — institutional / sovereign / industrial, 2026 editorial.

   Brand palette (client spec):
     Navy   #0D1B2A  primary background / headers
     Steel  #1B3A5C  secondary
     Gold   #C8A84B  accent · CTAs · dividers
     Silver #8C9BAB  muted text / borders
     Light  #F2F4F7  section alternation
     White  #FFFFFF
   Type: Georgia (serif) display · Inter (sans) UI/body.

   Contents:
     1. Tokens            6. Hero                11. Team
     2. Base              7. Stat bar            12. Contact + map
     3. Layout & text     8. Editorial blocks    13. CTA band
     4. Buttons & links   9. Phases (sticky)     14. Footer
     5. Header / nav     9b. Refinery process    15. Vector art / 15b. Motion
                         10. Partners            16. Responsive
                                                 17. v3 · 18 Roadmap · 18b Cards · 18c Scene v3
                                                 19 Phase pages · 19b Ambient
   ========================================================================== */

/* ── 1. Tokens ───────────────────────────────────────────────────────────── */
:root {
  --navy:       #0D1B2A;
  --navy-800:   #12253a;
  --steel:      #1B3A5C;
  --gold:       #C8A84B;
  --gold-600:   #a3873a;   /* darker gold — accessible on light bg */
  --gold-200:   #e6d49a;
  --silver:     #8C9BAB;
  --silver-300: #b9c4cf;
  --light:      #F2F4F7;
  --white:      #FFFFFF;
  --ink:        #101a24;   /* near-black body text, navy-derived */
  --slate:      #55677A;   /* muted body text */

  --line:        #dde3ea;              /* hairline on light */
  --line-dark:   rgba(255,255,255,.14);/* hairline on navy  */

  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Inter', Arial, 'Helvetica Neue', sans-serif;

  --shell: 1320px;
  --shell-narrow: 880px;
  --pill: 999px;
  --radius: 4px;

  --shadow-md: 0 10px 34px rgba(13,27,42,.12);
  --shadow-lg: 0 26px 64px rgba(13,27,42,.22);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --header-h: 84px;

  /* Refinery process-flow stream colours (also read by JS for the canvas) */
  --stream-feed:   #E08A3C;
  --stream-liquid: #7FB069;
  --stream-inter:  #9FB3C8;
  --stream-final:  #C8A84B;
}

/* ── 2. Base ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
address { font-style: normal; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--navy);
}
p { color: var(--slate); }
strong { color: var(--navy); }
::selection { background: var(--gold); color: var(--navy); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 300;
  background: var(--gold); color: var(--navy); padding: 10px 16px;
  border-radius: var(--radius); font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* Themed scrollbar — quiet, on-brand */
html { scrollbar-color: var(--silver) var(--light); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--silver); border: 3px solid var(--light); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--steel); }

/* ── 3. Layout & text ────────────────────────────────────────────────────── */
.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 clamp(22px, 4vw, 48px); }
.shell--narrow { max-width: var(--shell-narrow); }

.section { padding: clamp(80px, 10vw, 150px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }
.section--alt { background: var(--light); }
.section--navy { background: var(--navy); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: var(--silver-300); }

/* Eyebrow — small uppercase label with gold tick */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.section--navy .eyebrow { color: var(--gold); }

/* Chapter — index · label · hairline, opens every section */
.chapter { display: flex; align-items: center; gap: 20px; margin-bottom: clamp(40px, 6vw, 76px); }
.chapter-num { font-family: var(--serif); font-weight: 700; font-size: 15px; letter-spacing: .1em; color: var(--gold-600); }
.chapter-label { font-size: 12px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--slate); white-space: nowrap; }
.chapter-line { flex: 1; height: 1px; background: var(--line); }
.section--navy .chapter-num { color: var(--gold); }
.section--navy .chapter-label { color: var(--silver); }
.section--navy .chapter-line { background: var(--line-dark); }

/* Display headings — oversized serif */
.display {
  font-family: var(--serif); font-weight: 700;
  line-height: 1.02; letter-spacing: -.025em; color: var(--navy);
  font-size: clamp(38px, 6vw, 82px);
}
.display--mid { font-size: clamp(32px, 4.4vw, 58px); }
.section--navy .display { color: var(--white); }
.measure { max-width: 42ch; }

h3 { font-size: clamp(20px, 1.8vw, 24px); }

.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.6; color: var(--ink); }
.lead + p { margin-top: 18px; }
.section--navy .lead { color: var(--silver-300); }
.center { text-align: center; }

.gold-rule { width: 64px; height: 3px; background: var(--gold); border: 0; margin: 24px 0; }
.section-head--center { max-width: 780px; margin: 0 auto; text-align: center; }
.section-head--center .gold-rule { margin: 24px auto; }

/* Ghost index — giant outlined numeral behind editorial sections */
.editorial { position: relative; }
.editorial > * { position: relative; z-index: 1; }
.ghost-index {
  position: absolute; top: -.24em; right: 1%; z-index: 0; pointer-events: none;
  font-family: var(--serif); font-weight: 700; line-height: .8;
  font-size: clamp(150px, 23vw, 360px);
  color: transparent; -webkit-text-stroke: 1px var(--line);
  user-select: none;
}
.section--navy .ghost-index { -webkit-text-stroke: 1px rgba(255,255,255,.07); }

/* 12-column asymmetric grid */
.grid12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(28px, 4vw, 72px); }
.grid12 > .c5 { grid-column-end: span 5; }
.grid12 > .c7 { grid-column-end: span 7; }
.grid12 > .c8 { grid-column-end: span 8; }
.grid12 > .center-y { align-self: center; }
/* Standard gap between a section's heading row and its body content */
.head-gap { margin-bottom: clamp(36px, 5vw, 64px); }
.nudge-down { margin-top: clamp(36px, 6vw, 96px); }
.stack-lg > * + * { margin-top: clamp(18px, 2.2vw, 30px); }

/* ── 4. Buttons & links ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; border-radius: var(--pill);
  font-family: var(--sans); font-weight: 700; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1.5px solid transparent; white-space: nowrap; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.btn::after {
  content: ""; width: 15px; height: 15px; flex: none; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 11h12.2l-5.6-5.6L12 4l8 8-8 8-1.4-1.4 5.6-5.6H4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 11h12.2l-5.6-5.6L12 4l8 8-8 8-1.4-1.4 5.6-5.6H4z'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateX(4px); }
.btn:active { transform: translateY(0); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: #05101c; box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-200); box-shadow: 0 12px 30px rgba(200,168,75,.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-lg { padding: 18px 38px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }
/* Submit feedback — main.js flags the button while a POST (and its
   reCAPTCHA round-trip) is in flight, so the click never feels dead */
.btn.is-loading { pointer-events: none; opacity: .75; }
.btn.is-loading::after {
  -webkit-mask: none; mask: none; background: transparent;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid currentColor; border-right-color: transparent;
  animation: btn-spin .7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
/* Standard gap between a section body and its closing CTA row */
.cta-row { margin-top: 28px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; color: var(--navy); font-size: 12.5px;
  letter-spacing: .13em; text-transform: uppercase;
}
.link-arrow svg { width: 18px; height: 18px; fill: currentColor; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.section--navy .link-arrow { color: var(--gold); }

/* ── 5. Header / nav ─────────────────────────────────────────────────────── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
.header-bar {
  border-bottom: 1px solid var(--line-dark);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }

/* Transparent over the hero → white glass once scrolled (or menu open) */
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 46px; width: auto; transition: filter .35s var(--ease); }
.site-header:not(.is-solid) .brand-logo { filter: brightness(0) invert(1); }
.site-header.is-solid .header-bar {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(13,27,42,.07);
}

.primary-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-item { position: static; }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 15px; font-weight: 600; font-size: 13.5px;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.88); transition: color .3s var(--ease);
}
.site-header.is-solid .nav-link { color: var(--ink); }
.nav-link::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav-link:hover, .nav-item.is-active .nav-link, .nav-item.is-open .nav-link { color: var(--gold); }
.site-header.is-solid .nav-link:hover,
.site-header.is-solid .nav-item.is-active .nav-link,
.site-header.is-solid .nav-item.is-open .nav-link { color: var(--navy); }
.nav-link:hover::after, .nav-item.is-active .nav-link::after, .nav-item.is-open .nav-link::after { transform: scaleX(1); }
.nav-caret { width: 11px; height: 8px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .3s var(--ease); }
.nav-item.is-open .nav-caret { transform: rotate(180deg); }

/* Mega panel */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  pointer-events: none;
}
.nav-item.is-open .mega { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.mega-inner { display: grid; grid-template-columns: .85fr 2fr; gap: 48px; padding: 44px clamp(22px,4vw,48px) 48px; }
.mega-intro { border-right: 1px solid var(--line); padding-right: 40px; }
.mega-heading { font-size: 25px; margin: 14px 0 12px; }
.mega-lede { color: var(--slate); font-size: 15px; margin-bottom: 20px; }
.mega-cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; color: var(--gold-600); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
}
.mega-cta svg { width: 18px; height: 18px; fill: currentColor; transition: transform .3s var(--ease); }
.mega-cta:hover svg { transform: translateX(5px); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.mega-card {
  display: flex; flex-direction: column; gap: 6px; padding: 22px 20px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; transition: background .25s var(--ease);
}
.mega-card::after { content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 0; background: var(--gold); transition: width .35s var(--ease); }
.mega-card:hover { background: var(--light); }
.mega-card:hover::after { width: 100%; }
.mega-card-code { font-weight: 800; font-size: 12px; color: var(--gold-600); letter-spacing: .12em; }
.mega-card-title { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 16.5px; }
.mega-card-text { font-size: 13.5px; color: var(--slate); line-height: 1.45; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 12.5px; letter-spacing: .1em;
  padding: 9px 14px; border-radius: var(--pill);
  color: var(--white); border: 1px solid rgba(255,255,255,.35);
  transition: color .3s, border-color .3s, background .3s;
}
.lang-switch svg { width: 15px; height: 15px; fill: currentColor; }
.lang-switch:hover { border-color: var(--gold); color: var(--gold); }
.site-header.is-solid .lang-switch { color: var(--ink); border-color: var(--line); }
.site-header.is-solid .lang-switch:hover { color: var(--gold-600); border-color: var(--gold); }
.login-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  color: var(--white); border: 1px solid rgba(255,255,255,.35);
  transition: color .3s, border-color .3s, background .3s;
}
.login-link svg { width: 16px; height: 16px; fill: currentColor; }
.login-link:hover { border-color: var(--gold); color: var(--gold); }
.site-header.is-solid .login-link { color: var(--ink); border-color: var(--line); }
.site-header.is-solid .login-link:hover { color: var(--gold-600); border-color: var(--gold); }

.header-cta { padding: 12px 24px; font-size: 11.5px; }
.site-header:not(.is-solid) .header-cta { background: var(--gold); color: var(--navy); }

.nav-toggle {
  display: none; width: 46px; height: 42px; background: transparent;
  border: 1px solid rgba(255,255,255,.35); border-radius: var(--pill); position: relative;
}
.site-header.is-solid .nav-toggle, body.nav-open .nav-toggle { border-color: var(--line); }
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--white);
  transition: transform .3s var(--ease), opacity .2s, background .3s;
}
.site-header.is-solid .nav-toggle span, body.nav-open .nav-toggle span { background: var(--navy); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 25px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mega-scrim {
  position: fixed; inset: var(--header-h) 0 0; z-index: 90;
  background: rgba(13,27,42,.4); opacity: 0; transition: opacity .3s;
}
.mega-scrim.is-shown { opacity: 1; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--navy); padding: 30px clamp(22px,5vw,40px);
  transform: translateX(100%); transition: transform .38s var(--ease-out);
  overflow-y: auto;
}
body.nav-open .mobile-drawer { transform: translateX(0); }
body.nav-open .site-header .header-bar { background: var(--white); border-color: var(--line); }
.drawer-nav li { border-bottom: 1px solid rgba(255,255,255,.09); }
/* Scoped to list rows — the drawer CTA / language / login links below the
   list must keep their own (pill button) styling. */
.drawer-nav li a {
  display: flex; align-items: baseline; gap: 16px;
  padding: 20px 4px; color: rgba(255,255,255,.92);
  font-family: var(--serif); font-size: 26px; font-weight: 700;
}
.drawer-nav li a .idx { font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .1em; }
.drawer-nav li a.is-active { color: var(--gold); }
.drawer-row { display: flex; align-items: center; }
.drawer-row > a { flex: 1; min-width: 0; }
.drawer-sub-toggle {
  flex: 0 0 auto; background: none; border: 0; cursor: pointer;
  padding: 20px 8px 20px 24px; margin: 0; line-height: 0;
}
.drawer-sub-toggle svg {
  width: 16px; height: 11px; fill: none;
  stroke: var(--gold); stroke-width: 2; stroke-linecap: round;
  transition: transform .3s var(--ease-out);
}
.drawer-nav li.is-open .drawer-sub-toggle svg { transform: rotate(180deg); }
.drawer-sub { display: none; list-style: none; margin: 0; padding: 0 0 16px 42px; }
.drawer-nav li.is-open > .drawer-sub { display: block; animation: drawer-sub-in .28s var(--ease-out); }
.drawer-nav .drawer-sub li { border-bottom: 0; }
.drawer-nav .drawer-sub a {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,.78); padding: 10px 4px; gap: 12px;
}
.drawer-nav .drawer-sub a .sub-code {
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: .08em; min-width: 20px;
}
@keyframes drawer-sub-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.drawer-cta { margin-top: 28px; width: 100%; justify-content: center; }
.drawer-lang {
  display: inline-block; margin-top: 20px; color: var(--gold);
  font-weight: 700; letter-spacing: .08em; font-size: 13px;
  border: 1px solid rgba(255,255,255,.25); padding: 10px 18px; border-radius: var(--pill);
}

/* ── 6. Hero ─────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,27,42,.62) 0%, rgba(13,27,42,.45) 45%, rgba(13,27,42,.94) 100%),
    linear-gradient(90deg, rgba(13,27,42,.85) 0%, rgba(13,27,42,.35) 60%, rgba(13,27,42,.2) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 900px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: clamp(20px, 3vw, 34px);
}
.hero-eyebrow::before { content: ""; width: 38px; height: 2px; background: var(--gold); }
/* Sized so the full hero (eyebrow + title + sub + CTAs) fits one viewport */
.hero-title {
  font-size: clamp(32px, 4.6vw, 58px); line-height: 1.06; color: var(--white);
  letter-spacing: -.025em; max-width: 20ch;
}
.hero-title .accent { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px); color: var(--silver-300);
  max-width: 58ch; margin-top: clamp(20px, 2.6vw, 30px); line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 3.6vw, 44px); }

/* Full-height home hero — lighter overlay so the campus image reads as the
   highlight, with a left scrim + text-shadow keeping the reduced copy crisp. */
.hero--full .hero-overlay {
  background:
    linear-gradient(180deg, rgba(13,27,42,.34) 0%, rgba(13,27,42,.20) 45%, rgba(13,27,42,.80) 100%),
    linear-gradient(90deg, rgba(13,27,42,.74) 0%, rgba(13,27,42,.22) 60%, rgba(13,27,42,0) 100%);
}
.hero--full .hero-title { font-size: clamp(29px, 3.9vw, 50px); text-shadow: 0 2px 24px rgba(13,27,42,.5); }
.hero--full .hero-sub { max-width: 52ch; text-shadow: 0 1px 14px rgba(13,27,42,.55); }
.hero--full { min-height: 100svh; display: flex; align-items: center; }
.hero--full .hero-content { padding: calc(var(--header-h) + 40px) 0 130px; }
/* Short laptops (≈720–820px tall): trim padding so the pinned baseline strip
   and the taller French hero content still fit one screen without scrolling. */
@media (min-width: 768px) and (max-height: 820px) {
  .hero--full .hero-content { padding: calc(var(--header-h) + 16px) 0 60px; }
}

/* Hero baseline — hairline strip pinned to the hero foot */
.hero-base {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-base-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px 0; font-size: 11px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.55);
}
.hero-base-inner .gold-dot { color: var(--gold); }
#stats { scroll-margin-top: var(--header-h); }

/* Rotated side label */
.side-label {
  position: absolute; left: 28px; bottom: 150px; z-index: 3;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 11px; font-weight: 700; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 16px;
}
.side-label::after { content: ""; width: 1px; height: 60px; background: rgba(255,255,255,.3); }

/* Interior page hero */
.hero--page .hero-content { padding: calc(var(--header-h) + clamp(56px,9vw,110px)) 0 clamp(56px,7vw,88px); }
.hero--page .hero-title { font-size: clamp(34px, 4.8vw, 62px); }
.breadcrumb {
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }
.breadcrumb .current { color: var(--white); }

/* Ken-Burns drift on hero media (parallax elements are JS-driven instead) */
.hero-media img { animation: kenburns 24s var(--ease) infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to   { transform: scale(1.13) translate3d(-1.2%,-1.5%,0); }
}
[data-parallax] { animation: none !important; will-change: transform; }

/* ── 7. Stat bar — the single numbers component ──────────────────────────── */
.statbar { display: grid; grid-template-columns: repeat(4, 1fr); }
.statbar--push { margin-top: clamp(28px, 4vw, 48px); }
/* Centered closing note under a navy statbar */
.section-note { max-width: 66ch; margin: 36px auto 0; text-align: center; }
.statbar .cell {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  padding: clamp(30px, 4vw, 56px) clamp(20px, 2.6vw, 44px);
}
.statbar .cell + .cell::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line-dark);
}
.statbar-num {
  font-family: var(--serif); font-weight: 700; line-height: 1;
  color: var(--white); font-size: clamp(42px, 4.8vw, 70px); letter-spacing: -.02em;
}
.statbar-label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-200); }

/* Light-surface adaptation — full statbar on --alt (project Impact) keeps
   the same anatomy with inverted inks so it can close into the navy CTA
   without stacking two dark surfaces */
.section--alt .statbar .cell + .cell::before { background: var(--line); }
.section--alt .statbar-num { color: var(--navy); }
.section--alt .statbar-label { color: var(--gold-600); }
.section--alt .statbar .cell { border-top-color: var(--line); }

/* Inline variant — small stat row inside light editorial copy */
.statbar--inline { grid-template-columns: repeat(3, auto); justify-content: start; gap: clamp(28px, 4vw, 60px); border-top: 1px solid var(--line); margin-top: 30px; }
.statbar--inline .cell { padding: 24px 0 0; }
.statbar--inline .cell + .cell::before { display: none; }
.statbar--inline .statbar-num { color: var(--navy); font-size: clamp(32px, 3vw, 44px); }
.statbar--inline .statbar-label { color: var(--slate); letter-spacing: .1em; }

/* ── 8. Editorial blocks ─────────────────────────────────────────────────── */
/* Figure with curtain reveal */
.figure { position: relative; overflow: hidden; background: var(--light); }
.figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; }
.figure--43 img { aspect-ratio: 4 / 3; }
.figure--wide img { aspect-ratio: 21 / 9; }
.figure::after { content: ""; position: absolute; left: 0; bottom: 0; width: 76px; height: 4px; background: var(--gold); z-index: 2; }
.figure-caption { margin-top: 14px; font-size: 13px; color: var(--slate); letter-spacing: .04em; }

/* Showcase — cinematic full-width media, offset gold frame, floating navy card */
.showcase { position: relative; }
.showcase::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -18px; left: 18px; right: -18px; bottom: 36px;
  border: 1px solid rgba(200,168,75,.45);
}
.showcase-media { position: relative; z-index: 1; overflow: hidden; background: var(--navy); }
.showcase-media img { width: 100%; aspect-ratio: 5 / 2; object-fit: cover; }
.showcase-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(13,27,42,0) 55%, rgba(13,27,42,.42) 100%);
}
.showcase-tag {
  position: absolute; top: 20px; left: 22px; z-index: 2;
  padding: 8px 14px; border: 1px solid rgba(255,255,255,.35); border-radius: var(--pill);
  font-size: 10.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.85); background: rgba(13,27,42,.35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.showcase-card {
  position: absolute; z-index: 2;
  right: clamp(20px, 4vw, 56px); bottom: clamp(-64px, -3.5vw, -36px);
  max-width: clamp(440px, 38vw, 540px); background: var(--navy); color: var(--white);
  padding: clamp(30px, 3.4vw, 52px); border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.showcase-card .eyebrow { color: var(--gold); margin-bottom: 16px; }
.showcase-card h3 { color: var(--white); font-size: clamp(24px, 2.4vw, 33px); margin-bottom: 14px; }
.showcase-card p { color: var(--silver-300); font-size: clamp(15.5px, 1.15vw, 17px); line-height: 1.7; margin-bottom: 24px; }
.showcase-card .link-arrow { color: var(--gold); }
.showcase-meta {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 16px 4px 0; margin-right: min(600px, 42vw);
}
.showcase-meta .figure-caption { margin-top: 0; }
.showcase-meta-brand { font-size: 10.5px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-600); white-space: nowrap; }

/* Marquee ticker */
.marquee { overflow: hidden; padding: 24px 0; background: var(--navy); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.marquee-track { display: inline-flex; align-items: center; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 24px; padding: 0 30px;
  font-family: var(--serif); font-size: clamp(19px, 2vw, 28px); color: var(--white);
}
.marquee-item::after { content: ""; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Numbered ledger — hairline grid of strategic anchors */
.ledger { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.ledger-item {
  position: relative; display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 2.4vw, 36px);
  padding: clamp(30px, 3.6vw, 54px) clamp(24px, 3vw, 48px);
  border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.ledger-item:nth-child(2n) { border-right: 0; }
.ledger-item:hover { background: var(--white); }
.section:not(.section--alt) .ledger-item:hover { background: var(--light); }
.ledger-item::after { content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 0; background: var(--gold); transition: width .5s var(--ease); }
.ledger-item:hover::after { width: 100%; }
.ledger-num { font-family: var(--serif); font-weight: 700; font-size: clamp(30px, 3vw, 44px); line-height: 1; color: var(--gold); opacity: .55; transition: opacity .3s; }
.ledger-item:hover .ledger-num { opacity: 1; }
.ledger-title { font-size: clamp(19px, 1.5vw, 22px); margin-bottom: 10px; }
.ledger-text { font-size: 15.5px; color: var(--slate); line-height: 1.6; }

/* Index list — compact hairline rows (corridor teaser) */
.index-list { border-top: 1px solid var(--line-dark); }
.index-row {
  display: grid; grid-template-columns: 56px 1fr auto; align-items: baseline; gap: 18px;
  padding: 18px 4px; border-bottom: 1px solid var(--line-dark);
  transition: background .25s var(--ease), padding-left .25s var(--ease);
}
.index-row:hover { background: rgba(255,255,255,.04); padding-left: 14px; }
.index-code { font-weight: 800; font-size: 13px; letter-spacing: .1em; color: var(--gold); }
.index-title { font-family: var(--serif); font-weight: 700; font-size: clamp(17px, 1.5vw, 21px); color: var(--white); }
.index-kind { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--silver); }

/* Team capsule — compact leadership card (home team section) */
.team-capsule {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  padding: clamp(26px, 3vw, 40px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-capsule:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.capsule-cluster { display: flex; }
.capsule-avatar {
  width: 46px; height: 46px; display: grid; place-items: center; flex: none;
  border-radius: 50%; margin-left: -10px;
  background: linear-gradient(150deg, var(--navy), var(--steel));
  border: 2px solid var(--white); box-shadow: 0 0 0 1px rgba(200,168,75,.35);
  color: var(--gold); font-family: var(--serif); font-weight: 700;
  font-size: 10.5px; letter-spacing: 0;
}
.capsule-avatar:first-child { margin-left: 0; }
.capsule-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.capsule-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.capsule-name { font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--navy); white-space: nowrap; }
.capsule-role {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--slate); text-align: right;
}
.capsule-more {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-600);
}
.capsule-more svg { width: 15px; height: 15px; fill: currentColor; transition: transform .3s var(--ease); }
.team-capsule:hover .capsule-more svg { transform: translateX(5px); }

/* Split (two-column media/text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split--top { align-items: start; }
.split--reverse .split-text { order: 2; }
.split--reverse .split-media { order: 1; }
.split-text p + p { margin-top: 16px; }
.split-text h3 + p { margin-top: 12px; }
.split-text .lead + p { margin-top: 18px; }
.split-text .btn, .split-text .link-arrow { margin-top: 28px; }

/* Spec + step lists (Phase 1 focus) */
.spec-list { margin-top: 22px; border-top: 1px solid var(--line); }
.spec-list li {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.spec-cal { font-weight: 800; color: var(--navy); letter-spacing: .02em; }
.spec-desc { color: var(--slate); text-align: right; font-size: 15px; }
.step-list { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.step-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 600; font-size: 15.5px; }
.step-list li::before { content: ""; width: 8px; height: 8px; background: var(--gold); flex: none; transform: rotate(45deg); }
.footnote { margin-top: 20px; font-size: 14px; color: var(--slate); }
.section--navy .footnote { color: var(--silver); }

/* ── 9. Phases — sticky numeral rail + rows (Project page) ───────────────── */
.phases-wrap { display: grid; grid-template-columns: minmax(260px, .8fr) 2fr; gap: clamp(36px, 5vw, 90px); align-items: start; }
.phase-rail { position: sticky; top: calc(var(--header-h) + 40px); }
.phase-rail-code {
  font-family: var(--serif); font-weight: 700; line-height: .9; letter-spacing: -.03em;
  font-size: clamp(110px, 13vw, 210px); color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  transition: opacity .3s var(--ease);
}
.phase-rail-short { font-family: var(--serif); font-weight: 700; font-size: clamp(22px, 2vw, 30px); color: var(--navy); margin-top: 14px; }
.phase-rail-kind { font-size: 11.5px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-600); margin-top: 8px; }
.phase-rail.is-switching .phase-rail-code,
.phase-rail.is-switching .phase-rail-short,
.phase-rail.is-switching .phase-rail-kind { opacity: 0; transform: translateY(14px); }
.phase-rail-code, .phase-rail-short, .phase-rail-kind { transition: opacity .28s var(--ease), transform .28s var(--ease-out); }

/* Rows — generous rhythm; the row in focus carries full ink + gold indicator,
   the rest sit dimmed. .is-active is driven by the same scroll-sync as the rail. */
.phase-list { border-top: 1px solid var(--line); }
.phase-row {
  position: relative;
  padding: clamp(56px, 7vw, 104px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .45s var(--ease-out);
}
.phase-row::before {
  content: ""; position: absolute; left: 0; top: 50%;
  height: clamp(48px, 5vw, 76px); width: 0; transform: translateY(-50%);
  background: var(--gold); transition: width .35s var(--ease-out);
}
.phase-row.is-active { padding-left: clamp(22px, 2.4vw, 36px); }
.phase-row.is-active::before { width: 3px; }
.phase-row-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 16px; }
.phase-row-code {
  font-weight: 800; font-size: 13px; letter-spacing: .12em;
  color: var(--gold-600); transition: color .45s var(--ease);
}
.phase-row-kind { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--silver); }
.phase-row-title {
  font-size: clamp(21px, 2.1vw, 29px); max-width: 26ch;
  color: var(--navy); transform-origin: left center;
  transition: color .45s var(--ease), transform .45s var(--ease-out);
}
.phase-row-text {
  margin-top: 16px; color: var(--slate); font-size: 16px; line-height: 1.7;
  max-width: 60ch; transition: color .45s var(--ease);
}
/* Key figures pulled out of the prose — equal-column ledger. Fixed columns
   (not content-sized flex) so the stat origins and hairlines align across
   every phase row; the gold tick widens on the row in focus. */
.phase-row-facts {
  --fact-gutter: clamp(18px, 2vw, 28px);
  margin-top: 30px; max-width: 640px;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--fact-gutter);
}
.phase-fact { position: relative; padding-top: 14px; border-top: 1px solid var(--line); min-width: 0; }
.phase-fact::before {
  content: ""; position: absolute; left: 0; top: -1px;
  width: 22px; height: 2px; background: var(--gold);
  transition: width .5s var(--ease-out), background .45s var(--ease);
}
.phase-row.is-active .phase-fact::before { width: 44px; }
.phase-fact-value {
  display: block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(19px, 1.8vw, 24px); letter-spacing: -.01em;
  font-variant-numeric: tabular-nums lining-nums; overflow-wrap: break-word;
  color: var(--navy); transition: color .45s var(--ease);
}
.phase-fact-label {
  display: block; margin-top: 6px; font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--silver);
  line-height: 1.5;
}
/* Corridor link — how this phase feeds the platform */
.phase-row-link {
  margin-top: 24px; display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; line-height: 1.5; max-width: 58ch;
  color: var(--gold-600); transition: color .45s var(--ease);
}
.phase-row-link::before {
  content: ""; width: 7px; height: 7px; flex: none;
  background: var(--gold); transform: rotate(45deg);
}
/* Dim non-focused rows only once JS is live (js-ok), so no-JS stays readable */
.js-ok .phase-row:not(.is-active) .phase-row-code,
.js-ok .phase-row:not(.is-active) .phase-row-title,
.js-ok .phase-row:not(.is-active) .phase-fact-value,
.js-ok .phase-row:not(.is-active) .phase-row-link,
.js-ok .phase-row:not(.is-active) .phase-row-text { color: var(--silver); }
.js-ok .phase-row:not(.is-active) .phase-fact::before { background: var(--line); }
.phase-row.is-active .phase-row-title { transform: scale(1.04); }

/* ── 9b. Refinery process ────────────────────────────────────────────────── */
/* A lead paragraph directly under a display heading needs its own breath */
.grid12 .display + .lead { margin-top: 18px; }

/* Pillar strip — four uppercase anchors under intro copy (light) */
.pillar-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); margin-top: 40px;
}
.pillar-strip li {
  padding: 22px 8px 0;
  font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--slate);
}
.pillar-strip li::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  background: var(--gold); transform: rotate(45deg);
  margin-right: 12px; vertical-align: 1px;
}

/* Process-flow panel (navy) — canvas stream diagram with accessible fallback */
.flow-panel {
  position: relative; margin-top: clamp(36px, 5vw, 64px);
  border: 1px solid var(--line-dark); background: rgba(255,255,255,.02);
  padding: clamp(18px, 3vw, 40px);
}
.flow-panel::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 76px; height: 4px; background: var(--gold);
}
.process-canvas { display: block; width: 100%; height: auto; }

/* Fallback list — SR-only while JS is live; readable chip list without JS */
.js .flow-fallback {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
html:not(.js) .process-canvas { display: none; }
.flow-fallback { display: grid; gap: 10px; }
.flow-fallback li {
  padding: 12px 16px; border: 1px solid var(--line-dark);
  color: var(--silver-300); font-size: 14px;
}
.flow-fallback-num { color: var(--gold); font-weight: 800; letter-spacing: .08em; margin-right: 6px; }

.flow-panel-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-dark);
}
.flow-hint { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--silver); }
.flow-legend { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.flow-key { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--silver-300); }
.flow-key-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.flow-key-dot[data-stream="feed"]   { background: var(--stream-feed); }
.flow-key-dot[data-stream="liquid"] { background: var(--stream-liquid); }
.flow-key-dot[data-stream="inter"]  { background: var(--stream-inter); }
.flow-key-dot[data-stream="final"]  { background: var(--stream-final); }

/* Station groups — outlined unit ranges + hairline station lattice (light) */
.station-groups { border-top: 1px solid var(--line); }
.station-group {
  display: grid; grid-template-columns: minmax(240px, .9fr) 2fr;
  gap: clamp(24px, 4vw, 72px);
  padding: clamp(36px, 4.5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}
.station-group-range {
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(30px, 3.4vw, 48px);
  color: transparent; -webkit-text-stroke: 1.2px var(--gold);
}
.station-group-name { font-size: clamp(20px, 1.9vw, 26px); margin-top: 10px; }
.station-group-desc { margin-top: 12px; font-size: 15px; color: var(--slate); line-height: 1.65; max-width: 38ch; }
.station-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
  align-self: start;
}
.station {
  position: relative; display: flex; align-items: baseline; gap: 14px;
  padding: 16px 18px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--white); font-size: 15px;
  transition: background .3s var(--ease);
}
.station::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 2px; height: 0; background: var(--gold);
  transition: height .35s var(--ease);
}
.station:hover { background: var(--light); }
.station:hover::before { height: 100%; }
.station-num { font-weight: 800; font-size: 12px; letter-spacing: .1em; color: var(--gold-600); flex: none; }
.station-title { color: var(--ink); font-weight: 600; font-size: 14.5px; line-height: 1.45; }

/* Product tiles — five outputs in the hairline lattice (light) */
.product-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.product-tile {
  position: relative;
  padding: clamp(24px, 2.6vw, 38px) clamp(18px, 2vw, 30px);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.product-tile::after { content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 0; background: var(--gold); transition: width .4s var(--ease); }
.product-tile:hover { background: var(--light); }
.product-tile:hover::after { width: 100%; }
.product-swatch { width: 52px; height: 52px; border-radius: 50%; margin-bottom: 18px; border: 1px solid var(--line); }
.product-swatch--apt   { background: radial-gradient(circle at 32% 30%, #ffffff, #dfe5ec 70%, #c7d0da); }
.product-swatch--wo3   { background: radial-gradient(circle at 32% 30%, #f4c94e, #d9a821 70%, #b3871a); }
.product-swatch--w     { background: radial-gradient(circle at 32% 30%, #9aa6b2, #5d6a77 70%, #46525e); }
.product-swatch--wc    { background: radial-gradient(circle at 32% 30%, #5a636d, #2e363f 70%, #1d242c); }
.product-swatch--parts { background: linear-gradient(145deg, #b9c4cf 0%, #6f7f8f 45%, #3a4754 100%); border-radius: 10px; }
.product-code { font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-600); }
.product-name { font-size: clamp(17px, 1.4vw, 20px); margin-top: 8px; }
.product-desc { margin-top: 10px; font-size: 13.5px; line-height: 1.6; color: var(--slate); }

/* Value ladder — ascending price steps joined by gold arrows.
   NOTE: shares .ladder-* names with the v3 bar ladder (section 17); every rule
   here is scoped under .ladder-wrap so the two variants stay independent. */
.ladder-wrap { margin-top: clamp(48px, 6vw, 84px); padding-top: clamp(28px, 3.5vw, 44px); border-top: 1px solid var(--line); }
.ladder-title { text-align: center; font-size: clamp(19px, 1.7vw, 24px); margin-bottom: clamp(24px, 3vw, 40px); }
.ladder-wrap .ladder { display: flex; align-items: flex-end; justify-content: center; gap: clamp(16px, 3vw, 44px); }
.ladder-wrap .ladder-step { display: block; text-align: center; padding-bottom: 18px; border-bottom: 3px solid var(--gold); }
.ladder-wrap .ladder-step:nth-child(3) { padding-bottom: 46px; }
.ladder-wrap .ladder-step:nth-child(5) { padding-bottom: 74px; }
.ladder-wrap .ladder-value {
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(28px, 3.4vw, 52px); color: var(--navy); letter-spacing: -.02em;
}
.ladder-wrap .ladder-label {
  margin-top: 8px; font-family: var(--sans); font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--slate);
}
.ladder-arrow {
  width: clamp(26px, 3vw, 44px); height: 2px; background: var(--gold);
  position: relative; margin-bottom: 34px; align-self: flex-end;
  transform: rotate(-14deg);
}
.ladder-arrow::after {
  content: ""; position: absolute; right: -1px; top: -4px; width: 10px; height: 10px;
  border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}
/* Keep the section-17 JS reveal (which hides .ladder-value) off this variant */
.js .ladder-wrap .ladder .ladder-value { opacity: 1; }
.footnote.center { text-align: center; }

/* Spec table — quiet key figures, mirrors the .index-row hover (navy) */
.spec-table { max-width: 880px; margin: clamp(36px, 5vw, 60px) auto 0; border-top: 1px solid var(--line-dark); }
.spec-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 15px 4px; border-bottom: 1px solid var(--line-dark);
  transition: background .25s var(--ease), padding-left .25s var(--ease);
}
.spec-row:hover { background: rgba(255,255,255,.04); padding-left: 14px; }
.spec-row dt { color: var(--silver-300); font-size: 15px; }
.spec-row dd { margin: 0; color: var(--white); font-weight: 700; font-size: 15px; white-space: nowrap; font-variant-numeric: tabular-nums; }

/* Tick list — single-column checklist for split columns (light) */
.tick-list { border-top: 1px solid var(--line); margin-top: 18px; }
.tick-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  color: var(--ink); font-weight: 600; font-size: 15.5px;
}
.tick-list li::before {
  content: ""; width: 8px; height: 8px; flex: none;
  background: var(--gold); transform: rotate(45deg); margin-top: 7px;
}

/* ── 10. Partners ────────────────────────────────────────────────────────── */
/* Hairline partner grid */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.partner-tile {
  position: relative; padding: clamp(28px, 3vw, 44px) clamp(20px, 2.4vw, 34px);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--white); transition: background .3s var(--ease);
}
.partner-tile::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--gold); transition: width .4s var(--ease); }
.partner-tile:hover { background: var(--light); }
.partner-tile:hover::after { width: 100%; }
.partner-name { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--navy); }
.partner-role { display: block; margin-top: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); }

/* Institutional panels (government / community) */
.panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
.panel {
  position: relative; background: var(--white); border: 1px solid var(--line);
  padding: clamp(30px, 3.4vw, 46px) clamp(26px, 2.8vw, 40px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.panel::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--gold); transition: width .45s var(--ease); }
.panel:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-200); }
.panel:hover::before { width: 100%; }
.panel-icon {
  width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold);
  font-family: var(--serif); font-weight: 700; font-size: 21px; margin-bottom: 22px;
}
.panel-title { font-size: 21px; margin-bottom: 12px; }
.panel-text { font-size: 15.5px; color: var(--slate); line-height: 1.65; }
/* Panels are light cards even on navy sections (CarbonFX partnership) —
   keep their ink dark there or the h3 goes white-on-white. */
.section--navy .panel-title { color: var(--navy); }
.section--navy .panel-text { color: var(--slate); }

/* ── 11. Team ────────────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.member {
  position: relative; background: var(--white);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(30px, 3.4vw, 46px) clamp(26px, 2.8vw, 40px);
  transition: background .3s var(--ease);
}
.member::after { content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 0; background: var(--gold); transition: width .45s var(--ease); }
.member:hover { background: var(--light); }
.member:hover::after { width: 100%; }
.member-photo {
  width: 74px; height: 74px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--navy), var(--steel));
  color: var(--gold); font-family: var(--serif); font-weight: 700; font-size: 22px;
  letter-spacing: .04em; border: 1px solid rgba(200,168,75,.3);
}
.member-name { font-size: 21px; }
.member-role { display: block; margin: 8px 0 14px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); }
.member-bio { font-size: 15px; color: var(--slate); line-height: 1.65; }

/* ── 12. Contact + map ───────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact-info .lead { margin-bottom: 14px; }
.contact-person { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-person .name { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--navy); }
.contact-person .role { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); margin: 3px 0 6px; }
.contact-person a { color: var(--steel); font-weight: 600; transition: color .2s; }
.contact-person a:hover { color: var(--gold-600); }
.contact-meta { margin-top: 28px; }
.contact-meta h3 { margin-top: 24px; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-600); }
.contact-meta address, .contact-meta a { color: var(--slate); line-height: 1.8; font-size: 15.5px; }
.contact-meta a { font-weight: 600; color: var(--steel); }
.contact-meta a:hover { color: var(--gold-600); }

/* Form — underline fields, editorial */
.contact-form { border: 1px solid var(--line); background: var(--white); padding: clamp(30px, 4vw, 52px); position: relative; }
.contact-form::before { content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 3px; background: var(--gold); }
.contact-form h3 { margin-bottom: 28px; }
.field { margin-bottom: 26px; }
.field label {
  display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .16em;
  color: var(--navy); margin-bottom: 10px; text-transform: uppercase;
}
.field label .req { color: var(--gold-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 2px; font: inherit; font-size: 16px; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1.5px solid var(--line); border-radius: 0;
  transition: border-color .25s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); box-shadow: 0 1.5px 0 0 var(--gold); }
.form-note { font-size: 13px; color: var(--slate); margin-top: 16px; }
.form-banner { margin-bottom: 24px; padding: 14px 16px; font-weight: 600; font-size: 15px; }
.form-banner--ok { background: rgba(46,110,74,.1); color: #2e6e4a; border: 1px solid rgba(46,110,74,.25); }
.form-banner--err { background: rgba(193,39,45,.08); color: #a51f24; border: 1px solid rgba(193,39,45,.25); }
.field.has-error input, .field.has-error textarea { border-bottom-color: #a51f24; }
.field.has-error label { color: #a51f24; }
/* Honeypot — off-screen for humans, present for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Map band */
.map-embed { position: relative; height: 440px; overflow: hidden; background: var(--navy); }
.map-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 24px;
  background:
    radial-gradient(circle at 30% 30%, rgba(27,58,92,.6), transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(200,168,75,.1), transparent 55%),
    var(--navy);
}
.map-fallback svg { width: 40px; height: 40px; fill: var(--gold); }
.map-place { font-family: var(--serif); font-weight: 700; font-size: 23px; color: var(--white); }
.map-coords { font-size: 13px; letter-spacing: .12em; color: var(--silver); }
.map-link {
  margin-top: 12px; color: var(--gold); font-weight: 700; font-size: 12.5px;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(200,168,75,.4); padding: 10px 20px; border-radius: var(--pill);
  transition: background .2s, color .2s;
}
.map-link:hover { background: var(--gold); color: var(--navy); }

/* ── 13. CTA band ────────────────────────────────────────────────────────── */
.cta-band { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.cta-band-media { position: absolute; inset: 0; z-index: 0; opacity: .28; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(13,27,42,.92), rgba(13,27,42,.62)); }
.cta-band-inner { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; padding: clamp(76px, 10vw, 130px) 0; }
.cta-band-inner h2 { color: var(--white); font-size: clamp(30px, 4vw, 52px); letter-spacing: -.02em; }
.cta-band-inner p { color: var(--silver-300); font-size: 17.5px; margin: 20px auto 34px; max-width: 58ch; }

/* ── 14. Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  position: relative; overflow: hidden;
  background: var(--navy); color: var(--silver-300);
  border-top: 1px solid rgba(200,168,75,.35); padding: clamp(64px, 8vw, 96px) 0 30px;
}
.site-footer::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold), var(--gold-200), var(--gold));
}
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 70%; z-index: 0;
  pointer-events: none;
  background: radial-gradient(60% 90% at 50% 100%, rgba(200,168,75,.09), transparent 70%);
}
.footer-lines {
  position: absolute; left: 0; right: 0; bottom: 0; height: 70%; z-index: 0;
  pointer-events: none; opacity: .6;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 42%);
  mask-image: linear-gradient(to bottom, transparent, #000 42%);
}
.footer-lines svg { width: 100%; height: 100%; overflow: visible; }
.footer-lines path { fill: none; stroke: url(#fl-grad); }
.footer-lines .fl-back path { stroke-width: 1; opacity: .32; }
.footer-lines .fl-back path:nth-child(2) { opacity: .26; }
.footer-lines .fl-back path:nth-child(3) { opacity: .21; }
.footer-lines .fl-back path:nth-child(4) { opacity: .17; }
.footer-lines .fl-back path:nth-child(5) { opacity: .13; }
.footer-lines .fl-back path:nth-child(6) { opacity: .1; }
.footer-lines .fl-front path { stroke-width: 1.6; opacity: .85; }
.footer-lines .fl-front circle { fill: var(--gold); opacity: .9; }
.footer-lines .fl-back  { animation: fl-drift 36s ease-in-out infinite alternate; }
.footer-lines .fl-front { animation: fl-drift 24s ease-in-out infinite alternate-reverse; }
@keyframes fl-drift { to { transform: translateX(-70px); } }
@media (prefers-reduced-motion: reduce) {
  .footer-lines .fl-back, .footer-lines .fl-front { animation: none; }
}
.site-footer .shell { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1fr; gap: 40px; }
.brand--footer .brand-logo { height: 58px; filter: brightness(0) invert(1); }
.footer-blurb { margin: 22px 0; color: var(--silver); font-size: 15px; max-width: 42ch; }
.footer-badge { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--gold-200); letter-spacing: .04em; }
.footer-badge svg { width: 18px; height: 18px; fill: var(--gold); }
.footer-h { color: var(--white); font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: var(--silver-300); font-size: 15px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-address { color: var(--silver-300); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.footer-email, .footer-web { display: block; color: var(--gold-200); font-weight: 600; font-size: 15px; margin-top: 4px; }
.footer-email:hover, .footer-web:hover { color: var(--gold); }
.footer-bottom {
  position: relative;
  margin-top: 56px; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 13px; color: var(--silver);
}
.footer-bottom::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,.45) 20%, rgba(255,255,255,.18) 50%, rgba(200,168,75,.45) 80%, transparent);
}
.footer-flags { display: inline-flex; align-items: center; gap: 8px; letter-spacing: .04em; }
.footer-leaf { width: 14px; height: 14px; fill: var(--gold); flex: none; }

/* ── 15. Dark-section vector art ─────────────────────────────────────────── */
/* Each dark surface carries its own vector motif: navy sections — topographic
   rings + dot matrix; CTA band — radiating arcs; hero — architectural
   hairlines; map — radar pulse. Footer contours live in section 14. */

.section--navy { position: relative; overflow: hidden; z-index: 0; }
.section--navy::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  top: -150px; right: -170px; width: 660px; height: 660px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%23C8A84B'%3E%3Cpath stroke-opacity='.38' d='M300,225 C365,220 420,260 420,315 C420,373 355,405 298,400 C240,395 190,360 195,308 C200,258 240,230 300,225 Z'/%3E%3Cpath stroke-opacity='.3' d='M300,180 C390,170 470,230 470,310 C470,395 380,440 300,435 C215,430 140,380 145,300 C150,222 215,188 300,180 Z'/%3E%3Cpath stroke-opacity='.22' d='M300,140 C420,130 515,215 512,310 C509,415 400,478 295,472 C185,466 100,395 105,295 C110,200 185,150 300,140 Z'/%3E%3Cpath stroke-opacity='.15' d='M300,100 C450,90 555,200 552,310 C549,435 415,515 292,508 C155,500 62,410 68,292 C74,180 160,110 300,100 Z'/%3E%3Cpath stroke-opacity='.09' d='M300,60 C480,50 595,185 592,312 C589,455 430,552 288,545 C125,536 25,425 32,288 C39,158 135,70 300,60 Z'/%3E%3Ccircle cx='300' cy='312' r='3' fill='%23C8A84B' fill-opacity='.55' stroke='none'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  opacity: .55;
}
.section--navy::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: clamp(22px, 4vw, 60px); bottom: 44px; width: 230px; height: 130px;
  background-image: radial-gradient(rgba(200,168,75,.4) 1px, transparent 1.6px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(135deg, #000, transparent 78%);
  mask-image: linear-gradient(135deg, #000, transparent 78%);
}
/* One-motif rule opt-out — navy sections whose component IS the motif
   (e.g. the refinery flow canvas) suppress the default rings + dots */
.section--navy.no-motif::before, .section--navy.no-motif::after { display: none; }

.cta-band::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 80%;
  z-index: 2; pointer-events: none; opacity: .45;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 480' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23C8A84B'%3E%3Ccircle cx='720' cy='640' r='250' stroke-opacity='.5'/%3E%3Ccircle cx='720' cy='640' r='340' stroke-opacity='.38'/%3E%3Ccircle cx='720' cy='640' r='430' stroke-opacity='.28'/%3E%3Ccircle cx='720' cy='640' r='520' stroke-opacity='.2'/%3E%3Ccircle cx='720' cy='640' r='610' stroke-opacity='.13'/%3E%3Ccircle cx='720' cy='640' r='700' stroke-opacity='.08'/%3E%3Ccircle cx='720' cy='388' r='3' fill='%23C8A84B' fill-opacity='.7' stroke='none'/%3E%3C/g%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 45%);
  mask-image: linear-gradient(to bottom, transparent, #000 45%);
}

.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: repeating-linear-gradient(to right,
    rgba(255,255,255,.055) 0, rgba(255,255,255,.055) 1px,
    transparent 1px, transparent 240px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 8%, #000 55%);
  mask-image: linear-gradient(to bottom, transparent 8%, #000 55%);
}

.map-fallback::before, .map-fallback::after {
  content: ""; position: absolute; left: 50%; top: 38%;
  width: 130px; height: 130px; margin: -65px 0 0 -65px;
  border: 1px solid rgba(200,168,75,.55); border-radius: 50%;
  pointer-events: none; opacity: 0;
}
.map-fallback::before { animation: map-pulse 3.4s var(--ease) infinite; }
.map-fallback::after  { animation: map-pulse 3.4s var(--ease) 1.7s infinite; }
@keyframes map-pulse {
  0%   { transform: scale(.3); opacity: .85; }
  100% { transform: scale(2.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .map-fallback::before, .map-fallback::after { animation: none; }
}

/* Back to top */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: var(--navy); color: var(--gold); box-shadow: var(--shadow-md);
  display: grid; place-items: center; opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: opacity .3s, transform .3s, visibility .3s, background .2s;
}
.to-top svg { width: 22px; height: 22px; fill: currentColor; }
.to-top.is-shown { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--steel); }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120; pointer-events: none; }
.scroll-progress span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold), var(--gold-200));
  transform: scaleX(0); transform-origin: 0 50%; transition: transform .1s linear;
}

/* ── 15b. Motion ──────────────────────────────────────────────────────────── */
/* Scroll reveal — hidden only when JS is live (html.js); main.js reveals just
   before viewport entry and layered failsafes ensure nothing stays blank. */
.js [data-reveal] {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .9s var(--ease-out), clip-path .9s var(--ease-out);
  will-change: opacity, transform;
}
.js [data-reveal],
.js [data-reveal="up"]    { transform: translateY(38px); }
.js [data-reveal="left"]  { transform: translateX(-48px); }
.js [data-reveal="right"] { transform: translateX(48px); }
.js [data-reveal="scale"] { transform: scale(.92); }
.js [data-reveal="wipe"]  { opacity: 1; transform: none; clip-path: inset(0 0 100% 0); }
.js [data-reveal].is-visible { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }

/* Wipe figures also drift the image slightly for a curtain-parallax feel */
.js [data-reveal="wipe"] img { transform: scale(1.08); transition: transform 1.2s var(--ease-out); }
.js [data-reveal="wipe"].is-visible img { transform: scale(1); }

/* Auto-stagger children of [data-stagger] via --i (capped) */
.js [data-stagger] > [data-reveal] { transition-delay: calc(min(var(--i, 0), 6) * 60ms); }

/* Gold rule draws in with its section */
.js [data-reveal] .gold-rule, .js .gold-rule[data-reveal] { width: 0; transition: width .7s var(--ease) .2s; }
.js [data-reveal].is-visible .gold-rule { width: 64px; }

/* FAILSAFE — if main.js never boots, force-reveal everything after a delay. */
@keyframes bp-failsafe-reveal { to { opacity: 1; transform: none; clip-path: inset(0 0 0 0); } }
.js [data-reveal]:not(.is-visible) { animation: bp-failsafe-reveal .6s var(--ease) 3s both; }
.js-ok [data-reveal]:not(.is-visible) { animation: none !important; }

/* Hero load sequence */
.js [data-hero] .hero-eyebrow, .js [data-hero] .breadcrumb,
.js [data-hero] .hero-title, .js [data-hero] .hero-sub,
.js [data-hero] .hero-actions, .js [data-hero] .hero-base, .js [data-hero] .side-label {
  opacity: 0; transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease-out);
}
.js [data-hero].is-ready .breadcrumb   { opacity: 1; transform: none; transition-delay: .1s; }
.js [data-hero].is-ready .hero-eyebrow { opacity: 1; transform: none; transition-delay: .15s; }
.js [data-hero].is-ready .hero-title   { opacity: 1; transform: none; transition-delay: .3s; }
.js [data-hero].is-ready .hero-sub     { opacity: 1; transform: none; transition-delay: .5s; }
.js [data-hero].is-ready .hero-actions { opacity: 1; transform: none; transition-delay: .68s; }
.js [data-hero].is-ready .hero-base    { opacity: 1; transform: none; transition-delay: .85s; }
.js [data-hero].is-ready .side-label   { opacity: 1; transform: none; transition-delay: .95s; }
/* Same failsafe guarantee for the hero */
.js [data-hero]:not(.is-ready) .hero-eyebrow, .js [data-hero]:not(.is-ready) .breadcrumb,
.js [data-hero]:not(.is-ready) .hero-title, .js [data-hero]:not(.is-ready) .hero-sub,
.js [data-hero]:not(.is-ready) .hero-actions, .js [data-hero]:not(.is-ready) .hero-base,
.js [data-hero]:not(.is-ready) .side-label {
  animation: bp-failsafe-reveal .6s var(--ease) 2s both;
}
.js-ok [data-hero]:not(.is-ready) .hero-eyebrow, .js-ok [data-hero]:not(.is-ready) .breadcrumb,
.js-ok [data-hero]:not(.is-ready) .hero-title, .js-ok [data-hero]:not(.is-ready) .hero-sub,
.js-ok [data-hero]:not(.is-ready) .hero-actions, .js-ok [data-hero]:not(.is-ready) .hero-base,
.js-ok [data-hero]:not(.is-ready) .side-label { animation: none !important; }

/* ── 16. Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .mega-inner { grid-template-columns: 1fr; gap: 28px; }
  .mega-intro { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  :root { --header-h: 68px; }
  .primary-nav, .header-cta, .lang-switch, .login-link { display: none; }
  .nav-toggle { display: block; }
  .grid12 { grid-template-columns: 1fr; gap: 32px; }
  .grid12 > [class*="c"], .grid12 > .start2 { grid-column: 1 / -1 !important; }
  .nudge-down { margin-top: 40px; }
  .ledger { grid-template-columns: 1fr; }
  .ledger-item { border-right: 0 !important; }
  .statbar { grid-template-columns: 1fr 1fr; }
  .statbar .cell:nth-child(odd)::before { display: none; }
  .phases-wrap { grid-template-columns: 1fr; }
  .phase-rail { display: none; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-grid { grid-template-columns: 1fr; gap: 18px; }
  .showcase::before { display: none; }
  .showcase-media img { aspect-ratio: 16 / 10; }
  .showcase-card { position: relative; right: auto; bottom: auto; z-index: 2; max-width: none; margin: -48px clamp(16px, 5vw, 40px) 0; }
  .showcase-meta { margin-right: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .side-label { display: none; }
  .pillar-strip { grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .station-group { grid-template-columns: 1fr; gap: 22px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .ladder-wrap .ladder { gap: 14px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .figure--wide img { aspect-ratio: 16 / 10; }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .split--reverse .split-text { order: 1; }
  .split--reverse .split-media { order: 2; }
  .step-list { grid-template-columns: 1fr; }
  .statbar--inline { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero--full .hero-content { padding-bottom: 150px; }
  .hero-base-inner { flex-wrap: wrap; gap: 10px 20px; letter-spacing: .2em; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .station-grid { grid-template-columns: 1fr; }
  .flow-panel-foot { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .team-grid, .partner-grid { grid-template-columns: 1fr; }
  .statbar { grid-template-columns: 1fr; }
  .statbar .cell::before { display: none !important; }
  .statbar .cell { border-top: 1px solid var(--line-dark); }
  .statbar .cell:first-child { border-top: 0; }
  .statbar--inline .cell { border-top: 0; }
  .spec-list li { flex-direction: column; gap: 4px; }
  .spec-desc { text-align: left; }
  .index-row { grid-template-columns: 44px 1fr; }
  .index-kind { grid-column: 2; }
  .pillar-strip { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .ladder-wrap .ladder { flex-direction: column; align-items: center; gap: 18px; }
  .ladder-arrow { transform: rotate(76deg); margin: 0; align-self: center; }
  .ladder-wrap .ladder-step { padding-bottom: 18px !important; }
  .spec-row { flex-direction: column; gap: 2px; }
  .spec-row dd { white-space: normal; }
}

@media (max-width: 560px) {
  /* Phase facts collapse to stacked ledger lines — value left, label right */
  .phase-row-facts { grid-template-columns: 1fr; max-width: none; column-gap: 0; }
  .phase-fact {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 18px; padding: 12px 0;
  }
  .phase-fact-label { margin-top: 0; text-align: right; }
  /* Footer columns stack — two columns leave no room for the address/email */
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
}

/* Compact phones — tighten the editorial scale so display type, ghost
   numerals and stat figures sit comfortably inside a ~360–430px viewport */
@media (max-width: 430px) {
  .hero-title { font-size: clamp(27px, 8vw, 32px); }
  .hero--page .hero-title { font-size: clamp(26px, 7.6vw, 31px); }
  .display { font-size: clamp(32px, 9.4vw, 37px); }
  .display--mid { font-size: clamp(28px, 8.4vw, 32px); }
  .statbar-num { font-size: clamp(34px, 10.5vw, 42px); }
  .ghost-index { font-size: clamp(104px, 34vw, 132px); }
  .chapter { gap: 14px; }
  .chapter-label { white-space: normal; line-height: 1.6; }
  .quote-band blockquote p { font-size: clamp(20px, 5.9vw, 23px); }
  .btn { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js [data-reveal],
  .js [data-hero] .hero-eyebrow, .js [data-hero] .breadcrumb, .js [data-hero] .hero-title,
  .js [data-hero] .hero-sub, .js [data-hero] .hero-actions, .js [data-hero] .hero-base,
  .js [data-hero] .side-label {
    opacity: 1 !important; transform: none !important; clip-path: none !important;
  }
  [data-parallax] { transform: none !important; }
  .marquee-track { animation: none !important; }
}

/* ── 17. v3 components — timeline · value ladder · quote band · logo strip · panels-4 · form steps ── */

/* Roadmap timeline — vertical editorial rail; JS drives .timeline-fill height
   and flips items to .is-passed as the gold bar crosses their node. */
.timeline { position: relative; max-width: 880px; }
.timeline::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--line);
}
.timeline-fill {
  position: absolute; left: -.5px; top: 0; width: 2px; height: 0;
  background: linear-gradient(180deg, var(--gold-600), var(--gold));
  transition: height .15s linear;
}
.tl-item {
  position: relative; display: grid; grid-template-columns: minmax(90px, 120px) 1fr;
  gap: 10px clamp(20px, 3vw, 40px);
  padding: 0 0 clamp(40px, 5vw, 64px) clamp(40px, 4vw, 64px);
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -7px; top: clamp(6px, .8vw, 12px);
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--silver-300);
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.section--alt .tl-item::before { background: var(--light); }
.tl-item.is-passed::before {
  background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(200,168,75,.18);
}
.tl-year {
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(26px, 2.6vw, 38px); letter-spacing: -.02em;
  color: var(--silver); transition: color .35s var(--ease);
}
.tl-item.is-passed .tl-year { color: var(--gold-600); }
.tl-title { font-size: clamp(19px, 1.7vw, 23px); margin-bottom: 8px; }
.tl-text { font-size: 15.5px; color: var(--slate); line-height: 1.65; max-width: 52ch; }

/* Value ladder — three ascending tungsten bars; bar 3 is the gold payoff */
.ladder {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px); align-items: end;
}
.ladder-step { display: flex; flex-direction: column; justify-content: flex-end; }
.ladder-bar {
  position: relative; padding: 14px 16px;
  background: linear-gradient(180deg, var(--steel), var(--navy));
  border-top: 3px solid var(--gold);
}
.ladder-step:nth-child(1) .ladder-bar { height: clamp(110px, 14vw, 180px); }
.ladder-step:nth-child(2) .ladder-bar { height: clamp(170px, 22vw, 280px); }
.ladder-step:nth-child(3) .ladder-bar {
  height: clamp(240px, 30vw, 380px);
  background: var(--gold); border-top-color: var(--gold-200);
}
.ladder-value {
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(24px, 2.6vw, 40px); letter-spacing: -.02em; color: var(--white);
}
.ladder-value small {
  display: block; margin-top: 6px;
  font-family: var(--sans); font-weight: 700; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--silver-300);
}
.ladder-step:nth-child(3) .ladder-value { color: var(--navy); }
.ladder-step:nth-child(3) .ladder-value small { color: var(--steel); }
.ladder-label { font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--navy); margin-top: 16px; }
.ladder-desc { font-size: 14px; color: var(--slate); }

/* Bars grow from the base once the ladder reveals; values fade in after */
.js .ladder .ladder-bar { transform: scaleY(0); transform-origin: bottom; transition: transform .9s var(--ease-out); }
.js .ladder .ladder-value { opacity: 0; transition: opacity .6s var(--ease); }
.js .ladder.is-visible .ladder-bar { transform: scaleY(1); }
.js .ladder.is-visible .ladder-value { opacity: 1; }
.js .ladder .ladder-step:nth-child(1) .ladder-bar { transition-delay: 0s; }
.js .ladder .ladder-step:nth-child(2) .ladder-bar { transition-delay: .15s; }
.js .ladder .ladder-step:nth-child(3) .ladder-bar { transition-delay: .3s; }
.js .ladder .ladder-step:nth-child(1) .ladder-value { transition-delay: .5s; }
.js .ladder .ladder-step:nth-child(2) .ladder-value { transition-delay: .65s; }
.js .ladder .ladder-step:nth-child(3) .ladder-value { transition-delay: .8s; }

/* FAILSAFE — mirrors section 15; bp-failsafe-reveal only covers [data-reveal]
   itself, not these hidden children. */
@keyframes bp-ladder-failsafe { to { transform: scaleY(1); opacity: 1; } }
.js .ladder:not(.is-visible) .ladder-bar,
.js .ladder:not(.is-visible) .ladder-value { animation: bp-ladder-failsafe .6s var(--ease) 3.5s both; }
.js-ok .ladder:not(.is-visible) .ladder-bar,
.js-ok .ladder:not(.is-visible) .ladder-value { animation: none !important; }

/* Quote band — centered pull quote inside .section--navy */
.quote-band { max-width: 900px; margin: 0 auto; text-align: center; }
.quote-mark {
  display: block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(70px, 8vw, 110px); line-height: .4; color: var(--gold);
}
.quote-band blockquote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(23px, 3vw, 38px); line-height: 1.4;
  letter-spacing: -.01em; color: var(--white);
}
.quote-band figcaption { margin-top: 32px; }
.quote-band figcaption::before {
  content: ""; display: block; width: 40px; height: 2px;
  background: var(--gold); margin: 0 auto 16px;
}
.quote-name { font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.quote-role { display: block; margin-top: 6px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--silver); }

/* Logo strip — partner wordmarks in the hairline lattice */
.logo-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.logo-item {
  position: relative; text-align: center;
  padding: clamp(26px, 3vw, 40px) 18px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-weight: 700; font-size: clamp(17px, 1.5vw, 21px);
  color: var(--slate); background: var(--white);
  transition: color .3s var(--ease), background .3s var(--ease);
}
.logo-item::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: var(--gold); transition: width .4s var(--ease);
}
.logo-item:hover { color: var(--navy); background: var(--light); }
.logo-item:hover::after { width: 100%; }

/* 4-column panel variant */
.panel-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Form steps — "what happens next" under the contact form */
.form-steps { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 18px; }
.form-steps h4 {
  font-family: var(--sans); font-size: 11.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 10px;
}
.form-steps ol { list-style: none; padding: 0; margin: 0; }
.form-steps li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 7px 0; font-size: 14px; color: var(--slate);
}
.form-steps .n { font-family: var(--sans); font-weight: 800; font-size: 11px; letter-spacing: .08em; color: var(--gold-600); }

/* v3 responsive */
@media (max-width: 1100px) {
  .panel-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .tl-year { font-size: clamp(22px, 4vw, 28px); }
  .ladder { gap: 14px; }
  .ladder-value { font-size: clamp(17px, 4vw, 24px); }
  .ladder-bar { padding: 10px 12px; }
}
@media (max-width: 600px) {
  .panel-grid--4 { grid-template-columns: 1fr; }
}

/* v3 reduced motion — the global rule kills the ladder failsafe animation, so
   force the JS-hidden states visible (same guarantee section 16 gives reveals) */
@media (prefers-reduced-motion: reduce) {
  .js .ladder .ladder-bar { transform: scaleY(1) !important; }
  .js .ladder .ladder-value { opacity: 1 !important; }
}

/* ── 18. Roadmap journey — canvas scene (home + project) ────────────────── */
/* The canvas IS this section's motif — the default navy vector art is
   suppressed. JS paints the route on .roadmap-canvas, flips items to
   .is-passed/.is-current, and drives .hud-fill width + hud text. */

.section--navy.roadmap-scene::before,
.section--navy.roadmap-scene::after { display: none; }
.roadmap-scene {
  background: linear-gradient(180deg, var(--navy) 0%, #0a1622 50%, var(--navy) 100%);
  /* The navy motif trick sets overflow:hidden, which breaks the sticky HUD
     and watermark year — nothing overflows here (motifs are suppressed,
     the canvas is inset:0), so restore visibility for sticky to work. */
  overflow: visible;
}

.roadmap { position: relative; }
.roadmap-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}

/* HUD — year · progress track · percent, pinned just below the header */
.roadmap-hud {
  position: sticky; top: calc(var(--header-h) + 16px); z-index: 2;
  display: flex; align-items: center; gap: 14px;
  pointer-events: none; margin-bottom: clamp(20px, 3vw, 36px);
  /* Glass chip — the HUD floats over cards while pinned, so it needs its
     own surface to stay legible */
  width: fit-content; margin-left: auto;
  padding: 8px 16px;
  background: rgba(13, 27, 42, .72);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line-dark);
}
.hud-year {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(20px, 2vw, 27px); color: var(--gold);
  transition: color .3s;
}
.hud-track { position: relative; width: 140px; height: 2px; background: var(--line-dark); }
.hud-fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-200));
  transition: width .2s linear;
}
.hud-pct {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  color: var(--silver); min-width: 4ch; text-align: right; /* stops layout jitter */
}

.roadmap-list {
  position: relative; z-index: 1; list-style: none; margin: 0;
  padding: clamp(24px, 3vw, 48px) 0 clamp(32px, 4vw, 64px);
  display: flex; flex-direction: column; gap: clamp(48px, 7vw, 100px);
}
.rm-item { display: flex; }
.rm-item--l { justify-content: flex-start; }
.rm-item--r { justify-content: flex-end; }

.rm-card {
  width: min(460px, calc(50% - clamp(90px, 10vw, 140px)));
  position: relative;
  background: rgba(18, 37, 58, .55); border: 1px solid var(--line-dark);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: clamp(22px, 2.6vw, 38px);
  transition: opacity .5s var(--ease), transform .5s var(--ease-out), border-color .5s, box-shadow .5s;
}
/* .rm-card carries data-reveal, so `.js [data-reveal]` (section 15) out-ranks
   the card's own transition list — restate it at higher specificity so the
   border/glow transitions survive alongside the reveal */
.js .rm-card[data-reveal] {
  transition: opacity .5s var(--ease), transform .5s var(--ease-out), border-color .5s, box-shadow .5s;
}
/* Left gold ignition bar — lights when the route passes the milestone */
.rm-card::before {
  /* Inside the padding box — the card's overflow:hidden (18b) would clip
     the old -1px overhang to a sliver. */
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  transform: scaleY(0); transform-origin: top;
  transition: transform .6s var(--ease-out);
}
.rm-item.is-passed .rm-card::before { transform: scaleY(1); }

.rm-year {
  display: block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(28px, 3vw, 44px); line-height: 1;
  color: var(--gold); letter-spacing: -.02em;
}
.rm-title { color: var(--white); font-size: clamp(19px, 1.8vw, 24px); margin: 12px 0 8px; }
.rm-text { color: var(--silver-300); font-size: 15px; line-height: 1.65; margin: 0; }

/* Focus — un-passed cards sit dim, the current one carries the gold glow.
   Dim is scoped to .is-visible (specificity 0,5,0) so it only applies after
   the data-reveal entrance and out-ranks `.js [data-reveal].is-visible`
   (0,3,0): hidden → 0 · visible+not-passed → .38 · visible+passed → 1 */
.js-ok .rm-item:not(.is-passed) .rm-card.is-visible { opacity: .38; transform: translateY(8px); }
.rm-item.is-current .rm-card {
  border-color: rgba(200,168,75,.55);
  box-shadow: 0 22px 54px rgba(0,0,0,.4), 0 0 24px rgba(200,168,75,.12);
}

/* No-JS fallback — a plain centre spine keeps the list reading as a timeline
   even with a dead canvas (html gets .js immediately; .js-ok only once
   main.js boots) */
html:not(.js-ok) .roadmap-list::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: var(--line-dark);
}

/* Roadmap responsive — single column; the JS path spine sits at x=26 */
@media (max-width: 760px) {
  .rm-item--l, .rm-item--r { justify-content: flex-start; }
  .rm-card { width: 100%; margin-left: 52px; }
  html:not(.js-ok) .roadmap-list::before { left: 26px; }
}

/* ── 19. Phase pages — corridor atlas · calibres · LAP line · elements · dep bars · chain · manifest · reach · pager ── */

/* Explore link inside project phase rows — dims with the row (section 9) */
.phase-row-explore {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-600); transition: color .45s var(--ease);
}
.phase-row-explore svg { width: 18px; height: 18px; fill: currentColor; transition: transform .3s var(--ease); }
.phase-row-explore:hover svg { transform: translateX(5px); }
.js-ok .phase-row:not(.is-active) .phase-row-explore { color: var(--silver); }

/* Corridor Atlas (navy) — phase menu · stylized province SVG · site card.
   JS (initGeoMap) drives .is-active / .is-on / .is-switching; without JS the
   map stays fully lit and the floating card is dropped. */
.geo {
  display: grid; grid-template-columns: minmax(300px, .9fr) 1.6fr;
  gap: clamp(28px, 4vw, 64px); align-items: start;
}

.geo-menu { border-top: 1px solid var(--line-dark); }
/* Row works as <button> or <a> — reset first, then the hairline row idiom */
.geo-item {
  position: relative; width: 100%; background: transparent; border: 0;
  color: inherit; font: inherit; text-align: left; cursor: pointer;
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 16px;
  padding: 18px 8px; border-bottom: 1px solid var(--line-dark);
  transition: background .25s var(--ease), padding-left .25s var(--ease);
}
.geo-item:hover, .geo-item.is-active { background: rgba(255,255,255,.04); padding-left: 14px; }
.geo-item.is-active::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: -1px;
  width: 2px; background: var(--gold);
}
.geo-item-code { font-weight: 800; font-size: 13px; letter-spacing: .1em; color: var(--gold); }
.geo-item-title { font-family: var(--serif); font-weight: 700; font-size: clamp(17px, 1.5vw, 20px); color: var(--white); }
.geo-item-site {
  display: block; margin-top: 4px; font-family: var(--sans); font-weight: 700;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--silver);
}
.geo-item-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  opacity: 0; transition: opacity .3s var(--ease);
}
.geo-item-cta svg { width: 16px; height: 16px; fill: currentColor; transition: transform .3s var(--ease); }
.geo-item:hover .geo-item-cta,
.geo-item:focus-visible .geo-item-cta,
.geo-item:focus-within .geo-item-cta,
.geo-item.is-active .geo-item-cta { opacity: 1; }
.geo-item-cta:hover svg { transform: translateX(4px); }

.geo-map {
  position: relative; border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.02); padding: clamp(16px, 2.4vw, 32px);
}
.geo-map::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 76px; height: 4px; background: var(--gold);
}
.geo-svg { display: block; width: 100%; height: auto; }
.geo-land {
  fill: rgba(255,255,255,.03); stroke: rgba(255,255,255,.25);
  stroke-width: 1.2; stroke-linejoin: round;
}
.geo-route {
  fill: none; stroke: var(--silver-300); stroke-width: 1.6; stroke-dasharray: 5 7;
  opacity: 0; transition: opacity .4s var(--ease);
}
.geo-route.is-on { opacity: .9; animation: geo-dash 1.4s var(--ease) both; }
.geo-route--export.is-on { stroke: var(--gold); }
@keyframes geo-dash { from { stroke-dashoffset: 120; } to { stroke-dashoffset: 0; } }

.geo-pin { cursor: pointer; opacity: .55; transition: opacity .35s var(--ease); }
.geo-pin.is-active { opacity: 1; }
.geo-pin-dot { fill: var(--gold); }
.geo-pin-halo { fill: none; stroke: var(--gold); opacity: .5; }
/* Ring pulse — r isn't animatable cross-browser, so scale the element itself */
.geo-pin-ring {
  fill: none; stroke: var(--gold); opacity: 0;
  transform-box: fill-box; transform-origin: center;
}
.geo-pin.is-active .geo-pin-ring { animation: geo-pulse 2.6s var(--ease) infinite; }
@keyframes geo-pulse {
  0%   { transform: scale(.35); opacity: .8; }
  100% { transform: scale(2.4); opacity: 0; }
}
.geo-pin-label { fill: var(--white); font-family: var(--sans); font-weight: 700; font-size: 12.5px; }
.geo-pin-tag { fill: var(--silver-300); font-family: var(--sans); font-weight: 700; font-size: 10.5px; letter-spacing: .14em; }

/* Floating site card — swapped by JS; .is-switching covers the text change */
.geo-card {
  position: absolute; top: 18px; right: 18px; min-width: 190px;
  background: rgba(13,27,42,.85);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line-dark); border-top: 2px solid var(--gold);
  padding: 14px 18px;
  transition: opacity .25s var(--ease), transform .25s var(--ease-out);
}
.geo-card.is-switching { opacity: 0; transform: translateY(6px); }
.geo-card-code { font-weight: 800; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.geo-card-title { display: block; font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--white); }
.geo-card-site {
  display: block; margin-top: 4px; font-weight: 700; font-size: 10.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--silver);
}

.geo-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px 20px; flex-wrap: wrap;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-dark);
}
.geo-hint { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--silver); }
.geo-legend { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.geo-key { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--silver-300); }
.geo-key-swatch { flex: none; }
.geo-key-swatch[data-key="site"]   { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.geo-key-swatch[data-key="flow"]   { width: 18px; height: 0; border-top: 2px dashed var(--silver-300); }
.geo-key-swatch[data-key="export"] { width: 18px; height: 0; border-top: 2px dashed var(--gold); }
.geo-note { margin-top: 10px; font-size: 11.5px; color: var(--silver); }

/* No-JS — everything lit, no floating card */
html:not(.js) .geo-route { opacity: .55; }
html:not(.js) .geo-pin { opacity: 1; }
html:not(.js) .geo-card { display: none; }

/* Chain — horizontal process strip with gold arrow connectors (light/alt) */
.chain { display: flex; align-items: stretch; gap: 30px; flex-wrap: wrap; }
.chain-step {
  position: relative; flex: 1; min-width: 150px;
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 20px; border: 1px solid var(--line); background: var(--white);
  transition: background .3s var(--ease);
}
.chain-step::after {
  content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 0;
  background: var(--gold); transition: width .4s var(--ease);
}
.chain-step:hover { background: var(--light); }
.chain-step:hover::after { width: 100%; }
.chain-step + .chain-step::before {
  content: ""; position: absolute; left: -21px; top: 50%;
  width: 12px; height: 12px; margin-top: -6px;
  border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}
.chain-kicker { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600); }
.chain-label { font-family: var(--serif); font-weight: 700; font-size: clamp(17px, 1.6vw, 21px); color: var(--navy); }
.chain-sub { font-size: 13px; color: var(--slate); }

/* Calibre board — cartridge silhouettes in the hairline lattice (alt) */
.cal-board {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.cal-card {
  position: relative; padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--white); transition: background .3s var(--ease);
}
.cal-card::after {
  content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 0;
  background: var(--gold); transition: width .4s var(--ease);
}
.cal-card:hover { background: var(--light); }
.cal-card:hover::after { width: 100%; }
.cal-visual {
  height: 150px; display: flex; align-items: flex-end; justify-content: center;
  margin-bottom: 18px; border-bottom: 1px solid var(--line);
}
/* --scale (template-set, 0–100) drives silhouette height against the baseline */
.cartridge {
  width: 22px; height: max(40px, calc(var(--scale, 100) * 1.15px));
  background: linear-gradient(180deg, #d8c07a, #a3873a 60%, #8a7030);
  clip-path: polygon(50% 0, 68% 10%, 72% 26%, 72% 78%, 100% 84%, 100% 100%, 0 100%, 0 84%, 28% 78%, 28% 26%, 32% 10%);
}
.cal-mm { font-family: var(--serif); font-weight: 700; font-size: clamp(30px, 3vw, 44px); line-height: 1; color: var(--navy); }
.cal-mm small {
  font-family: var(--sans); font-weight: 700; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--slate); margin-left: 4px;
}
.cal-name { font-size: 17px; margin-top: 8px; }
.cal-variants { margin-top: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); }
.cal-use { margin-top: 10px; font-size: 14px; color: var(--slate); line-height: 1.6; }

/* LAP line — six numbered stations on a navy conveyor track */
.lap-line { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); }
/* Track runs through the number circles — 44px circle, centre at 22px */
.lap-line::before {
  content: ""; position: absolute; left: 22px; right: 22px; top: 22px;
  height: 1px; background: rgba(200,168,75,.45);
}
.lap-step { padding: 0 18px 0 0; }
.lap-num {
  position: relative; z-index: 1; display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gold); background: var(--navy); color: var(--gold);
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  margin-bottom: 16px;
}
.lap-title { color: var(--white); font-size: 19px; }
.lap-text { margin-top: 8px; color: var(--silver-300); font-size: 14px; line-height: 1.6; }

/* Element grid — periodic-table entries in the hairline lattice (alt) */
.element-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.element {
  position: relative; padding: clamp(26px, 3vw, 40px);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--white); transition: background .3s var(--ease);
}
.element::after {
  content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 0;
  background: var(--gold); transition: width .4s var(--ease);
}
.element:hover { background: var(--light); }
.element:hover::after { width: 100%; }
.element-z { position: absolute; top: 18px; right: 18px; font-size: 12px; font-weight: 700; color: var(--slate); }
.element-sym { display: block; font-family: var(--serif); font-weight: 700; font-size: clamp(40px, 4vw, 56px); line-height: 1; color: var(--navy); }
.element-name { display: block; margin-top: 6px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600); }
.element-role { margin-top: 12px; font-size: 14.5px; color: var(--slate); line-height: 1.6; }

/* Dependence ledger (navy) — v2. Numbered rows in a bordered panel, tone
   spine per row, quartile gridlines on tracks, tip markers and a one-shot
   sheen sweep. Fills grow to --w once the [data-reveal] host lands. */
.dep-bars {
  max-width: 980px; margin: 0 auto;
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
}
.dep-bar {
  position: relative; display: grid; grid-template-columns: 68px 1fr;
  align-items: start; gap: 0 30px;
  padding: clamp(24px, 3.2vw, 34px) clamp(22px, 4vw, 44px);
  border-bottom: 1px solid var(--line-dark);
  transition: background .35s var(--ease);
}
.dep-bar:last-child { border-bottom: 0; }
.dep-bar:hover { background: rgba(255,255,255,.028); }
.dep-bar--alert { --tone: #b0413e; }
.dep-bar--zero  { --tone: var(--silver); }
.dep-bar--gold  { --tone: var(--gold); }

/* Tone spine — draws down the left edge as the row reveals */
.dep-bar::before {
  content: ''; position: absolute; left: -1px; top: 0; bottom: -1px; width: 2px;
  background: var(--tone); opacity: 0; transform: scaleY(.35);
  transform-origin: top;
  transition: opacity .5s var(--ease), transform .8s var(--ease-out);
}
[data-reveal].is-visible .dep-bar::before,
html:not(.js) .dep-bar::before { opacity: 1; transform: none; }

.dep-bar-index {
  font-family: var(--serif); font-size: 15px; letter-spacing: .14em;
  color: var(--silver); padding-top: 4px;
}
.dep-bar-index::after {
  content: ''; display: block; width: 22px; height: 1px;
  margin-top: 10px; background: var(--tone, var(--line-dark)); opacity: .55;
}

.dep-bar-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 14px; }
.dep-bar-tag {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--tone, var(--silver)); margin-bottom: 7px;
}
.dep-bar-label { display: block; color: var(--silver-300); font-size: 15.5px; line-height: 1.45; max-width: 560px; }
.dep-bar-value {
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(24px, 3vw, 34px); color: var(--white);
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.dep-bar--gold .dep-bar-value { color: var(--gold-200); }

.dep-bar-track {
  position: relative; height: 12px;
  border: 1px solid var(--line-dark); background: rgba(255,255,255,.03);
  /* quartile gridlines */
  background-image: repeating-linear-gradient(90deg,
    transparent, transparent calc(25% - 1px),
    rgba(255,255,255,.10) calc(25% - 1px), rgba(255,255,255,.10) 25%);
}
.dep-bar-fill {
  position: relative; display: block; height: 100%; width: 0;
  transition: width 1.3s var(--ease-out) .25s; overflow: visible;
}
[data-reveal].is-visible .dep-bar-fill { width: var(--w); }
.dep-bar:nth-child(2) .dep-bar-fill { transition-delay: .45s; }
.dep-bar:nth-child(3) .dep-bar-fill { transition-delay: .65s; }
.dep-bar--alert .dep-bar-fill { background: linear-gradient(90deg, #8f2f2c, #b0413e); box-shadow: 0 0 18px rgba(176,65,62,.32); }
.dep-bar--zero .dep-bar-fill { background: var(--silver); opacity: .7; }
.dep-bar--gold .dep-bar-fill { background: linear-gradient(90deg, var(--gold-600), var(--gold)); box-shadow: 0 0 18px rgba(200,168,75,.32); }
html:not(.js) .dep-bar-fill { width: var(--w); }

/* One-shot sheen sweep once the fill has landed */
.dep-bar-fill::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.35) 50%, transparent 75%);
  background-size: 240% 100%; background-position: 180% 0; opacity: 0;
}
[data-reveal].is-visible .dep-bar-fill::after { animation: bp-depbar-sheen 2.4s var(--ease) 1.4s 2; }
@keyframes bp-depbar-sheen {
  0%   { background-position: 180% 0; opacity: 0; }
  15%  { opacity: 1; }
  100% { background-position: -60% 0; opacity: 0; }
}

/* Tip marker — small diamond riding the leading edge */
.dep-bar-tip {
  position: absolute; right: 0; top: 50%; width: 7px; height: 7px;
  transform: translate(50%, -50%) rotate(45deg);
  background: var(--white); box-shadow: 0 0 10px rgba(255,255,255,.5);
  opacity: 0; transition: opacity .4s var(--ease) 1.1s;
}
.dep-bar--zero .dep-bar-tip { display: none; }
[data-reveal].is-visible .dep-bar-tip,
html:not(.js) .dep-bar-tip { opacity: 1; }

.dep-bar-desc { margin-top: 11px; font-size: 13.5px; color: var(--silver); line-height: 1.55; max-width: 640px; }

@media (max-width: 640px) {
  .dep-bar { grid-template-columns: 1fr; gap: 0; }
  .dep-bar-index { display: none; }
  .dep-bar-head { flex-wrap: wrap; align-items: flex-start; gap: 6px 24px; }
}

/* FAILSAFE — mirrors sections 15/17; the reveal failsafe covers the host,
   not these width/opacity-driven children. */
@keyframes bp-depbar-failsafe { to { width: var(--w); } }
@keyframes bp-depbar-fade { to { opacity: 1; transform: none; } }
.js [data-reveal]:not(.is-visible) .dep-bar-fill { animation: bp-depbar-failsafe .9s var(--ease-out) 3.5s both; }
.js [data-reveal]:not(.is-visible) .dep-bar::before,
.js [data-reveal]:not(.is-visible) .dep-bar-tip { animation: bp-depbar-fade .9s var(--ease-out) 3.5s both; }
.js-ok [data-reveal]:not(.is-visible) .dep-bar-fill,
.js-ok [data-reveal]:not(.is-visible) .dep-bar::before,
.js-ok [data-reveal]:not(.is-visible) .dep-bar-tip { animation: none !important; }

/* Manifest (navy) — cargo table, mirrors the .spec-table hover idiom */
.manifest { max-width: 980px; margin: 0 auto; border-top: 1px solid var(--line-dark); }
.manifest-row {
  display: grid; grid-template-columns: 64px 1.2fr 1fr; gap: 18px; align-items: baseline;
  padding: 16px 8px; border-bottom: 1px solid var(--line-dark);
  transition: background .25s var(--ease), padding-left .25s var(--ease);
}
.manifest-row:hover { background: rgba(255,255,255,.04); padding-left: 18px; }
.manifest-head { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--silver); }
.manifest-row.manifest-head:hover { background: transparent; padding-left: 8px; }
.manifest-code { font-weight: 800; font-size: 13px; letter-spacing: .1em; color: var(--gold); }
.manifest-cargo { color: var(--white); font-weight: 600; font-size: 15.5px; }
.manifest-dest { color: var(--silver-300); font-size: 15px; }

/* Shipping reach (light) — route ledger + framed lane chart. Flow dashes
   march port → destination; hovering a route row spotlights its lane on the
   map (:has() linkage — without support the chart simply idles). */
.reach { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.reach-list { margin-top: 26px; border-top: 1px solid var(--line); }
.reach-route {
  display: grid; grid-template-columns: 40px 1fr auto; align-items: baseline; gap: 16px;
  padding: 18px 6px; border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease), padding-left .25s var(--ease);
}
.reach-route:hover { background: var(--light); padding-left: 16px; }
.reach-idx { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--gold-600); }
.reach-label { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--navy); }
.reach-note { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); text-align: right; }

.reach-chart {
  position: relative; border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), var(--light));
  padding: clamp(18px, 2.6vw, 32px);
}
.reach-chart::before, .reach-chart::after { content: ""; position: absolute; width: 16px; height: 16px; border: 1px solid var(--gold); }
.reach-chart::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.reach-chart::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.reach-map { display: block; width: 100%; height: auto; }
.reach-grat { fill: none; stroke: var(--line); stroke-width: 1; }
.reach-lane { transition: opacity .3s var(--ease); }
.reach-track { fill: none; stroke: var(--line); stroke-width: 1.4; }
.reach-flow {
  fill: none; stroke: var(--silver-300); stroke-width: 1.6;
  stroke-dasharray: 3 9; stroke-linecap: round;
  animation: bp-reach-flow 3.2s linear infinite;
  transition: stroke .3s var(--ease);
}
.reach-flow--gold { stroke: var(--gold); }
@keyframes bp-reach-flow { to { stroke-dashoffset: -12; } } /* -12 = one dash period, loops seamlessly */
.reach-port { fill: var(--navy); stroke: var(--gold); stroke-width: 1.5; }
.reach-pulse {
  fill: none; stroke: var(--gold); stroke-width: 1; opacity: 0;
  transform-box: fill-box; transform-origin: center;
  animation: bp-reach-pulse 3.2s var(--ease-out) infinite;
}
.reach-pulse--2 { animation-delay: 1.6s; }
@keyframes bp-reach-pulse {
  0% { transform: scale(.4); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.reach-node { fill: var(--gold); r: 5px; transition: r .25s var(--ease); }
.reach-tag { font-family: var(--sans); font-size: 9.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; fill: var(--slate); }
.reach-tag--port { fill: var(--navy); font-size: 10px; }
.reach-chart-cap {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: clamp(14px, 2vw, 20px); padding-top: 12px; border-top: 1px solid var(--line);
  font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--slate);
}
.reach:has(.reach-route:nth-child(1):hover) .reach-lane:not(:nth-of-type(1)),
.reach:has(.reach-route:nth-child(2):hover) .reach-lane:not(:nth-of-type(2)),
.reach:has(.reach-route:nth-child(3):hover) .reach-lane:not(:nth-of-type(3)) { opacity: .18; }
.reach:has(.reach-route:nth-child(1):hover) .reach-lane:nth-of-type(1) .reach-flow,
.reach:has(.reach-route:nth-child(2):hover) .reach-lane:nth-of-type(2) .reach-flow,
.reach:has(.reach-route:nth-child(3):hover) .reach-lane:nth-of-type(3) .reach-flow { stroke: var(--gold); }
.reach:has(.reach-route:nth-child(1):hover) .reach-lane:nth-of-type(1) .reach-node,
.reach:has(.reach-route:nth-child(2):hover) .reach-lane:nth-of-type(2) .reach-node,
.reach:has(.reach-route:nth-child(3):hover) .reach-lane:nth-of-type(3) .reach-node { r: 7px; }

/* Phase pager — prev · all six · next band closing every phase page.
   Light surface on purpose: the pages it closes end on navy key-figures
   and the CTA band after it is navy too — this band is the breather that
   keeps dark surfaces from stacking. */
.phase-pager { background: var(--light); border-top: 1px solid var(--line); }
.phase-pager-grid { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 150px; }
.pager-card {
  position: relative; display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.pager-card:last-child { border-right: 0; }
.pager-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .4s var(--ease);
}
a.pager-card:hover { background: rgba(13,27,42,.04); }
a.pager-card:hover::after { width: 100%; }
.pager-card--empty { pointer-events: none; }
.pager-card--all { align-items: center; text-align: center; }
.pager-card--next { align-items: flex-end; text-align: right; }
.pager-kicker { font-size: 10.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-600); }
.pager-title { font-family: var(--serif); font-weight: 700; font-size: clamp(17px, 1.6vw, 22px); line-height: 1.25; color: var(--navy); }
.pager-code { font-family: var(--sans); font-weight: 800; font-size: 13px; letter-spacing: .12em; color: var(--gold-600); margin-right: 10px; }
.pager-all-mark { color: var(--gold-600); font-size: 20px; line-height: 1; }
.pager-card--prev::before, .pager-card--next::before {
  content: ""; width: 16px; height: 16px; background: var(--gold-600);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 11h12.2l-5.6-5.6L12 4l8 8-8 8-1.4-1.4 5.6-5.6H4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 11h12.2l-5.6-5.6L12 4l8 8-8 8-1.4-1.4 5.6-5.6H4z'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .3s var(--ease);
}
.pager-card--prev::before { transform: scaleX(-1); }
.pager-card--prev:hover::before { transform: scaleX(-1) translateX(4px); }
.pager-card--next:hover::before { transform: translateX(4px); }

/* Phase-pages responsive */
@media (max-width: 980px) {
  .geo { grid-template-columns: 1fr; }
  .geo-map { order: -1; }
  .cal-board { grid-template-columns: repeat(2, 1fr); }
  .lap-line { grid-template-columns: repeat(3, 1fr); gap: 32px 8px; }
  .lap-line::before { display: none; } /* track can't cross wrapped rows */
  .element-grid { grid-template-columns: repeat(2, 1fr); }
  .reach { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .chain { flex-direction: column; gap: 26px; }
  .chain-step + .chain-step::before {
    left: 50%; top: -19px; margin: 0 0 0 -6px;
    transform: rotate(135deg);
  }
  .manifest-row { grid-template-columns: 48px 1fr; gap: 4px 14px; }
  .manifest-dest { grid-column: 2; }
  .manifest-head span:nth-child(3) { display: none; }
  /* SVG text scales down with the viewBox — bump user units so the map
     labels stay legible once the charts shrink to phone width */
  .geo-pin-label { font-size: 15px; }
  .geo-pin-tag { font-size: 12px; }
  .reach-tag { font-size: 12px; }
  .reach-tag--port { font-size: 13px; }
  .phase-pager-grid { grid-template-columns: 1fr; }
  .pager-card { border-right: 0; border-bottom: 1px solid var(--line); min-height: 110px; }
  .pager-card:last-child { border-bottom: 0; }
  .pager-card--empty { display: none; }
  .geo-foot { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .lap-line { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .cal-board, .element-grid { grid-template-columns: 1fr; }
  .geo-card { position: static; margin-bottom: 14px; min-width: 0; }
  .reach-route { grid-template-columns: 40px 1fr; gap: 2px 16px; }
  .reach-note { grid-column: 2; text-align: left; }
  /* Second bump — at true phone width the viewBox scale is ~0.5 */
  .geo-pin-label { font-size: 20px; }
  .geo-pin-tag { font-size: 15px; }
  .reach-tag { font-size: 16px; }
  .reach-tag--port { font-size: 17px; }
}

/* Panel icon variants — partnership cards (CarbonFX page) */
.panel-icon--gold { background: var(--gold); color: var(--navy); }
.panel-icon--green { background: #2e6e4a; color: var(--white); }

/* Phase-pages reduced motion — the global rule kills the dep-bar failsafe,
   so force the width (same guarantee section 17 gives the ladder) */
@media (prefers-reduced-motion: reduce) {
  .geo-route, .geo-pin.is-active .geo-pin-ring, .dep-bar-fill,
  .dep-bar-fill::after, .dep-bar::before, .dep-bar-tip { animation: none !important; }
  .js .dep-bar-fill { width: var(--w) !important; transition: none !important; }
  .js .dep-bar::before { opacity: 1 !important; transform: none !important; transition: none !important; }
  .js .dep-bar-tip { opacity: 1 !important; transition: none !important; }
}

/* ── 19b. Ambient video layers — CTA band + intelligence sections ─────────── */
/* The CTA band's media slot now hosts a looping ambient video (same dimming
   as the old image: container opacity + gradient overlay from section 13). */
.cta-band-media video { width: 100%; height: 100%; object-fit: cover; }

/* Full-bleed ambient layer inside a dark section (RedZone). The video sits
   behind everything at low opacity under a navy wash so text stays AAA;
   .has-ambient makes the video the section's one motif (rings/dots off). */
.section--navy.has-ambient::before,
.section--navy.has-ambient::after { display: none; }

/* RedZone radar — live operational-picture canvas (Partners 04). Glass
   panel like .flow-panel; the RedZone red is scoped here, used only for
   the sweep, threat contacts and live dot. */
.radar-panel {
  --rz-red: #E04C4C;
  position: relative; border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.02);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: clamp(14px, 2vw, 22px);
}
.radar-panel::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 76px; height: 4px; background: var(--rz-red);
}
.radar-canvas { display: block; width: 100%; height: auto; }
html:not(.js) .radar-canvas { display: none; }
/* Fallback list — SR-only while JS is live; readable chips without JS */
.js .radar-fallback {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.radar-fallback { display: grid; gap: 10px; }
.radar-fallback li {
  padding: 12px 16px; border: 1px solid var(--line-dark);
  border-left: 2px solid var(--rz-red);
  color: var(--silver-300); font-size: 14px;
}
.radar-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px 20px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-dark);
}
.radar-live {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.radar-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--rz-red);
  animation: rz-live 2.2s ease-out infinite;
}
@keyframes rz-live {
  0% { box-shadow: 0 0 0 0 rgba(224,76,76,.45); }
  70% { box-shadow: 0 0 0 9px rgba(224,76,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,76,76,0); }
}
.radar-zone {
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--silver);
}
.ambient-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.ambient-media video {
  width: 100%; height: 100%; object-fit: cover; opacity: .34;
}
.ambient-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,.9), rgba(13,27,42,.55) 55%, rgba(13,27,42,.78));
}

/* ── 18b. Roadmap card anatomy v2 — technical, reaction-based ────────────── */
/* Card gets: scanline glass, ghost-year watermark, milestone index row,
   corner brackets, pointer spotlight + 3D tilt (JS sets --mx/--my/transform
   on [data-tilt]; fine pointers only), and a gold light-sweep on ignition. */

.rm-card {
  overflow: hidden;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.016) 0 1px, transparent 1px 4px);
}
/* Corner brackets — technical-drawing marks, top-left + bottom-right */
.rm-card::after {
  content: ""; position: absolute; inset: 10px; pointer-events: none;
  background:
    linear-gradient(var(--gold), var(--gold)) top left / 18px 1.5px,
    linear-gradient(var(--gold), var(--gold)) top left / 1.5px 18px,
    linear-gradient(var(--gold), var(--gold)) bottom right / 18px 1.5px,
    linear-gradient(var(--gold), var(--gold)) bottom right / 1.5px 18px;
  background-repeat: no-repeat;
  opacity: .28; transition: opacity .5s var(--ease), inset .5s var(--ease);
}
.rm-item.is-passed .rm-card::after { opacity: .75; }
.rm-item.is-current .rm-card::after { opacity: 1; inset: 6px; }

/* Ghost year — outlined serif watermark behind the copy */
.rm-ghost {
  position: absolute; right: -8px; bottom: -18px; pointer-events: none;
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(72px, 7vw, 108px); letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(200,168,75,.12);
  user-select: none; transition: -webkit-text-stroke-color .5s;
}
.rm-item.is-passed .rm-ghost { -webkit-text-stroke-color: rgba(200,168,75,.22); }

/* Meta row — milestone index + diamond tick */
.rm-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark);
}
.rm-idx {
  font-size: 10.5px; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold-200);
}
.rm-idx em { font-style: normal; color: var(--silver); }
.rm-diamond { color: var(--gold); font-size: 9px; opacity: .5; transition: opacity .4s, transform .6s var(--ease-out); }
.rm-item.is-passed .rm-diamond { opacity: 1; transform: rotate(180deg); }

/* Divider between title and body */
.rm-text { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-dark); }

/* Pointer spotlight + one-shot ignition sweep */
.rm-card-glow {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%),
              rgba(200,168,75,.13), transparent 65%);
  transition: opacity .4s var(--ease);
}
.rm-card.is-tilting .rm-card-glow { opacity: 1; }
.rm-card-glow::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(230,212,154,.16) 50%, transparent 68%);
  transform: translateX(-130%);
}
.rm-item.is-passed .rm-card-glow::after {
  animation: rm-sweep 1.1s var(--ease-out) .15s both;
}
@keyframes rm-sweep { to { transform: translateX(130%); } }

/* Tilt runtime — snappy transform while the pointer drives the card */
.js .rm-card.is-tilting { transition: opacity .5s var(--ease), border-color .5s, box-shadow .5s; }

/* Content sits above the decor layers */
.rm-meta, .rm-year, .rm-title, .rm-text { position: relative; z-index: 1; }

@media (max-width: 760px) {
  .rm-ghost { font-size: 64px; right: -4px; bottom: -12px; }
}

/* ── 18c. Roadmap scene v3 — kinetic year, HUD milestone ticks, beacons ──── */
/* JS swaps the watermark/HUD year text and retriggers .is-swap, lights the
   .hud-tick diamonds (i <= current), and paints branch connectors + energy
   motes on the canvas. Global reduced-motion (section 16) kills the
   keyframes; JS skips .is-swap under REDUCED anyway. */

/* Giant sticky year — outlined serif watermark drifting behind the route */
.rm-bigyear {
  position: sticky; top: 32vh; height: 0; z-index: 0;
  pointer-events: none;
}
.rm-bigyear span {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%);
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(96px, 17vw, 250px); letter-spacing: .02em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(200,168,75,.09);
  user-select: none;
}

/* Year swap — blur-in retriggered by JS on milestone change */
.js-ok .hud-year.is-swap,
.js-ok .rm-bigyear span.is-swap { animation: rm-yearswap .8s var(--ease-out); }
@keyframes rm-yearswap {
  0% { opacity: 0; filter: blur(10px); }
}

/* HUD milestone ticks — diamonds along the progress track */
.hud-tick {
  position: absolute; top: 50%; width: 5px; height: 5px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--navy); border: 1px solid rgba(140,155,171,.45);
  transition: background .35s, border-color .35s, box-shadow .35s;
}
.hud-tick.is-on {
  background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 8px rgba(200,168,75,.55);
}

/* Current card — the diamond becomes a breathing beacon and the title
   draws a gold underline */
.rm-item.is-current .rm-diamond { animation: rm-beacon 2.4s ease-in-out infinite; }
@keyframes rm-beacon {
  0%, 100% { text-shadow: 0 0 0 rgba(200,168,75,0); }
  50% { text-shadow: 0 0 14px rgba(200,168,75,.9); }
}
.rm-title::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 34px; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease-out) .1s;
}
.rm-item.is-current .rm-card .rm-title::after { transform: scaleX(1); }

@media (max-width: 760px) {
  .rm-bigyear span { left: auto; right: 0; transform: translateY(-50%); }
}

/* §17 ladder — collapse to stacked rows on phones (audit fix) */
@media (max-width: 520px) {
  .ladder { grid-template-columns: 1fr; gap: 18px; align-items: stretch; }
  .ladder-step:nth-child(1) .ladder-bar,
  .ladder-step:nth-child(2) .ladder-bar,
  .ladder-step:nth-child(3) .ladder-bar { height: auto; min-height: 96px; }
}

/* ── 19c. Calibre stage v2 — true-scale cartridges on a mm blueprint ─────── */
/* Replaces the old .cal-visual/.cartridge blob: real NATO profiles (inline
   SVG in ammunition.html), shared baseline, faint 20mm grid, per-round
   dimension callout. Heights are OAL fractions of the 12.7×99 (138.4mm). */
.cal-stage {
  position: relative; height: clamp(170px, 20vw, 232px);
  display: flex; align-items: flex-end; justify-content: center;
  border-bottom: 1px solid var(--line); margin-bottom: 18px;
}
.cal-stage::before {
  /* 20mm rule lines, fading toward the top */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(to top, var(--line) 0 1px, transparent 1px);
  background-size: 100% 14.45%; background-position: 0 100%;
  opacity: .55;
  -webkit-mask-image: linear-gradient(to top, #000 30%, transparent 96%);
  mask-image: linear-gradient(to top, #000 30%, transparent 96%);
}
.ctg {
  position: relative; z-index: 1; width: auto; display: block;
  transition: transform .45s var(--ease-out), filter .45s var(--ease),
              clip-path .9s var(--ease-out) calc(min(var(--i, 0), 6) * 70ms + .1s);
}
.cal-card:hover .ctg {
  transform: translateY(-6px);
  filter: brightness(1.1) drop-shadow(0 10px 18px rgba(200,168,75,.3));
}
/* Draw in from the baseline once the card reveals (js-ok only, so a dead
   boot can never leave the rounds hidden). */
.js-ok .cal-card:not(.is-visible) .ctg { clip-path: inset(100% 0 0 0); }

/* Dimension callout — extension line + rotated OAL label, engineering style */
.cal-dim {
  position: absolute; right: 10%; bottom: 0; width: 14px;
  opacity: .3; transition: opacity .4s var(--ease);
}
.cal-dim i { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--gold-600); }
.cal-dim i::before, .cal-dim i::after {
  content: ""; position: absolute; left: -4px; width: 9px; height: 1px; background: var(--gold-600);
}
.cal-dim i::before { top: 0; }
.cal-dim i::after { bottom: 0; }
.cal-dim b {
  position: absolute; top: 50%; right: 11px; transform: translateY(-50%);
  writing-mode: vertical-rl; rotate: 180deg;
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  color: var(--gold-600); white-space: nowrap;
}
.cal-card:hover .cal-dim { opacity: 1; }

@media (max-width: 520px) {
  .cal-stage { height: 150px; }
  .cal-dim { right: 6%; }
}

/* ── 19d. Value chain — vertical-integration flow (home 04) ──────────────
   Four stations threaded onto a gold rail that draws left→right as the block
   reveals, with a travelling energy pulse riding behind the station discs.
   Mirrors the dep-bar / ladder idiom: content lives in [data-reveal] nodes
   (covered by the section-15 failsafe); the rail is decorative and force-
   completes on html:not(.js), under reduced motion, and via a keyframe
   backstop, so a stalled observer never leaves it half-drawn. */
.vchain {
  --vgap: clamp(22px, 3vw, 40px);
  --vc-mark: 60px;                         /* station disc + rail-centre band */
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--vgap);
  margin-top: clamp(30px, 4vw, 56px);
}

/* Rail — anchored to the outer disc centres so the ends tuck under the first
   and last stations. Discs are LEFT-aligned in their columns, so a disc centre
   sits at (column-left + radius): the left end is one radius in; the right end
   is one column-width minus a radius from the container's right edge. */
.vchain-rail {
  position: absolute; z-index: 0; height: 2px;
  top: calc(var(--vc-mark) / 2 - 1px);
  left: calc(var(--vc-mark) / 2);
  right: calc((100% - 3 * var(--vgap)) / 4 - var(--vc-mark) / 2);
  background: var(--line);
}
.vchain-rail-fill {
  position: absolute; inset: 0; transform-origin: left; transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold-600), var(--gold), var(--gold-200));
  box-shadow: 0 0 14px rgba(200,168,75,.35);
}
.js .vchain-rail-fill { transition: transform 1.2s var(--ease-out) .25s; }
.vchain.is-visible .vchain-rail-fill,
html:not(.js) .vchain-rail-fill { transform: scaleX(1); }

/* Travelling pulse — threads behind the discs, so it reads as flow through
   the stations rather than over them. */
.vchain-rail-pulse {
  position: absolute; top: 50%; left: 0; width: 16px; height: 16px;
  margin: -8px 0 0 -8px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-200) 0%, rgba(200,168,75,0) 70%);
}
.js .vchain-rail-pulse { animation: bp-vchain-pulse 3.6s var(--ease) infinite; }
@keyframes bp-vchain-pulse {
  0%   { left: 0;    opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.vchain-node { position: relative; z-index: 1; display: flex; flex-direction: column; }

.vchain-marker { position: relative; height: var(--vc-mark); margin-bottom: 24px; }
.vchain-icon {
  width: var(--vc-mark); height: var(--vc-mark); border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--line);
  color: var(--gold-600); position: relative; z-index: 1;
  transition: border-color .3s var(--ease), color .3s var(--ease),
              transform .3s var(--ease), box-shadow .3s var(--ease);
}
.vchain-icon svg { width: 27px; height: 27px; }
.vchain-node:hover .vchain-icon {
  border-color: var(--gold); color: var(--navy);
  transform: translateY(-3px); box-shadow: 0 12px 26px rgba(13,27,42,.12);
}
.vchain-step {
  position: absolute; top: -6px; left: calc(var(--vc-mark) - 14px);
  min-width: 26px; height: 22px; padding: 0 7px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold);
  font-family: var(--sans); font-weight: 800; font-size: 11px; letter-spacing: .08em;
  border-radius: var(--pill);
}

.vchain-value {
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(30px, 3.2vw, 44px); letter-spacing: -.02em;
  color: var(--navy); font-variant-numeric: tabular-nums;
}
.vchain-metric {
  margin-top: 9px; font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600);
}
.vchain-name { margin-top: 20px; font-size: clamp(18px, 1.6vw, 22px); color: var(--navy); }
.vchain-text { margin-top: 10px; font-size: 14.5px; color: var(--slate); line-height: 1.6; max-width: 34ch; }

/* Closing ledger line */
.vchain-note {
  display: flex; align-items: center; gap: 16px 22px; flex-wrap: wrap;
  margin-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--line); padding-top: clamp(24px, 3vw, 34px);
}
.vchain-note .gold-dot { color: var(--gold); font-size: 13px; }
.vchain-note p {
  flex: 1 1 320px; margin: 0;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.8vw, 25px); line-height: 1.35; color: var(--navy);
}
.vchain-note .link-arrow { flex: none; }

/* FAILSAFE — the section-15 reveal failsafe covers the nodes, not the
   transform-driven rail fill (mirrors dep-bar §19). */
@keyframes bp-vchain-fill { to { transform: scaleX(1); } }
.js .vchain:not(.is-visible) .vchain-rail-fill { animation: bp-vchain-fill 1s var(--ease-out) 3.5s both; }
.js-ok .vchain:not(.is-visible) .vchain-rail-fill { animation: none !important; }

@media (max-width: 900px) {
  .vchain { grid-template-columns: repeat(2, 1fr); gap: clamp(30px, 5vw, 44px); }
  .vchain-rail { display: none; }        /* horizontal rail only reads across 4 */
  /* Step badges number the stations ALONG the rail; with the rail hidden they
     read as orphaned tags floating on the discs, so drop them here too. */
  .vchain-step { display: none; }
}
@media (max-width: 560px) {
  .vchain { grid-template-columns: 1fr; }
  .vchain-text { max-width: none; }
}

/* Reduced motion — the global rule handles [data-reveal]; force the rail's
   JS-hidden transform open and drop the travelling pulse. */
@media (prefers-reduced-motion: reduce) {
  .js .vchain-rail-fill { transform: scaleX(1) !important; }
  .vchain-rail-pulse { display: none !important; }
}

/* ── 19e. MKE technology reel — cinematic proof video on a light section ──── */
/* Stacked header — title then description below, spanning the full width. */
.reel-head { max-width: none; margin-bottom: clamp(30px, 4vw, 48px); }
.reel-title { text-wrap: balance; font-size: clamp(27px, 3.4vw, 44px); max-width: 24ch; }
.reel-lead {
  margin-top: clamp(14px, 1.7vw, 20px); max-width: none;
  font-size: clamp(15px, 1.35vw, 17.5px);
}
.reel-scene .chapter-num { font-size: 12px; }
.reel { position: relative; margin-top: clamp(34px, 5vw, 60px); }
.reel-frame {
  position: relative; overflow: hidden; aspect-ratio: 16 / 9;
  background: var(--navy); border: 1px solid var(--line);
  box-shadow: 0 44px 100px -46px rgba(13,27,42,.55);
  transition: box-shadow .5s var(--ease), transform .5s var(--ease);
}
.reel:hover .reel-frame { box-shadow: 0 54px 120px -44px rgba(13,27,42,.6); }
.reel-video, .reel-frame > .reel-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  display: block;
}
/* Subtle cinematic vignette + a gold sheen that sweeps once on reveal */
.reel-frame::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(13,27,42,0) 55%, rgba(13,27,42,.35) 100%),
    linear-gradient(180deg, rgba(13,27,42,.18) 0%, rgba(13,27,42,0) 22%, rgba(13,27,42,0) 60%, rgba(13,27,42,.72) 100%);
}
/* Gold corner ticks — technical framing */
.reel-corner {
  position: absolute; z-index: 3; width: 26px; height: 26px; pointer-events: none;
  border: 2px solid var(--gold); opacity: .9;
}
.reel-corner--tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.reel-corner--tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.reel-corner--bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.reel-corner--br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

/* Centre play/pause control — glass disc, gold on hover */
.reel-play {
  position: absolute; z-index: 4; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: clamp(60px, 7vw, 84px); height: clamp(60px, 7vw, 84px); border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  border: 1px solid rgba(255,255,255,.5); color: var(--white);
  background: rgba(13,27,42,.42);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .3s var(--ease), border-color .3s var(--ease),
              transform .3s var(--ease), opacity .4s var(--ease);
}
.reel-play:hover, .reel-play:focus-visible {
  background: var(--gold); border-color: var(--gold); color: var(--navy);
  transform: translate(-50%, -50%) scale(1.06); outline: none;
}
.reel-ico { width: 34%; height: 34%; fill: currentColor; }
.reel-ico--pause { display: none; }
/* While playing, swap to pause icon and fade the disc back until hovered */
.reel.is-playing .reel-ico--play { display: none; }
.reel.is-playing .reel-ico--pause { display: block; }
.reel.is-playing .reel-play { opacity: 0; }
.reel.is-playing:hover .reel-play,
.reel.is-playing .reel-play:focus-visible { opacity: 1; }

/* Bottom caption / live bar */
.reel-bar {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: clamp(16px, 2.4vw, 26px) clamp(18px, 3vw, 34px);
  padding-bottom: clamp(20px, 3vw, 32px);
}
.reel-live {
  display: inline-flex; align-items: center; gap: 9px; flex: none;
  font-size: 10.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.reel-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(200,168,75,.5);
}
.reel.is-playing .reel-live-dot { animation: reel-live 2s ease-out infinite; }
@keyframes reel-live {
  0% { box-shadow: 0 0 0 0 rgba(200,168,75,.5); }
  70% { box-shadow: 0 0 0 8px rgba(200,168,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,168,75,0); }
}
.reel-caption {
  font-size: 12.5px; color: rgba(255,255,255,.82); text-align: right;
  letter-spacing: .01em;
}
/* Slim progress bar pinned to the frame foot */
.reel-progress {
  position: absolute; z-index: 4; left: 0; right: 0; bottom: 0; height: 3px;
  background: rgba(255,255,255,.15);
}
.reel-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold));
}

/* Stat chips under the reel */
.reel-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 30px); margin-top: clamp(22px, 3vw, 34px);
}
.reel-stat {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 18px; border-left: 2px solid var(--gold);
}
.reel-stat-value {
  font-family: var(--serif); font-weight: 700; line-height: 1;
  font-size: clamp(26px, 3vw, 40px); color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.reel-stat-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-600);
}
@media (max-width: 640px) {
  .reel-stats { grid-template-columns: 1fr; gap: 16px; }
  .reel-caption { display: none; }
  .reel-corner { width: 18px; height: 18px; }
}

/* ── 20. Print ───────────────────────────────────────────────────────────── */
/* Investor-grade print sheet: chrome and motion off, ink-friendly surfaces,
   every reveal forced visible so nothing prints blank. */
@media print {
  .site-header, .to-top, .scroll-progress, .mobile-drawer, .mega-scrim,
  .marquee, .cta-band, .phase-pager, video, canvas, .ambient-media,
  .skip-link { display: none !important; }
  body { padding-top: 0 !important; }
  .js [data-reveal], .js [data-reveal]:not(.is-visible) {
    opacity: 1 !important; transform: none !important;
    clip-path: none !important; animation: none !important;
  }
  .section, .section--tight { padding: 28pt 0; }
  .section--navy, .roadmap-scene, .hero, .map-fallback {
    background: #fff !important; color: var(--ink) !important;
  }
  .section--navy::before, .section--navy::after,
  .cta-band::before, .hero::before { display: none !important; }
  .section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4,
  .section--navy .display, .statbar-num, .pager-title,
  .hero-title { color: var(--navy) !important; }
  .section--navy p, .section--navy .lead, .statbar-label,
  .hero-sub { color: var(--slate) !important; }
  .hero { min-height: auto !important; }
  .hero-media, .hero-overlay, .hero-base { display: none !important; }
  .ledger-item, .panel, .rm-card, .phase-row, .dash-card,
  .contact-person { break-inside: avoid; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 90%; color: var(--slate); }
  .btn::after, .link-arrow svg { display: none !important; }
}
