/* ============================================================
   1. RESET AND BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
/* Lenis takes over smooth scrolling when it loads. */
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-color: var(--ground);
  color: var(--on-ground);
  transition: background-color .6s ease, color .6s ease;
}

img, svg, canvas, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

/* ============================================================
   2. BRAND TOKENS
   ============================================================ */
:root {
  --ink:        #071426;
  --navy:       #0a1b33;
  --blue:       #2360b4;
  --blue-br:    #3d7fd4;
  --gold:       #b89455;
  --gold-br:    #cbab74;
  --paper:      #ffffff;
  --paper-cool: #f5f7fa;

  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --hdr: 76px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---- Ground system. The page background is part of the story. ---- */
body[data-ground="paper"] {
  --ground: var(--paper);
  --on-ground: var(--ink);
  --muted: #56677f;
  --line: rgba(7, 20, 38, .13);
  --line-soft: rgba(7, 20, 38, .07);
  --glass: rgba(255, 255, 255, .88);
  --accent: var(--blue);
  --tile: #ffffff;
}
body[data-ground="cool"] {
  --ground: var(--paper-cool);
  --on-ground: var(--ink);
  --muted: #56677f;
  --line: rgba(7, 20, 38, .13);
  --line-soft: rgba(7, 20, 38, .07);
  --glass: rgba(245, 247, 250, .88);
  --accent: var(--blue);
  --tile: #ffffff;
}
body[data-ground="navy"] {
  --ground: var(--navy);
  --on-ground: #ffffff;
  --muted: #9db0c7;
  --line: rgba(255, 255, 255, .16);
  --line-soft: rgba(255, 255, 255, .08);
  --glass: rgba(10, 27, 51, .86);
  --accent: var(--blue-br);
  --tile: rgba(255, 255, 255, .05);
}
body[data-ground="ink"] {
  --ground: var(--ink);
  --on-ground: #ffffff;
  --muted: #93a7bf;
  --line: rgba(255, 255, 255, .16);
  --line-soft: rgba(255, 255, 255, .08);
  --glass: rgba(7, 20, 38, .86);
  --accent: var(--blue-br);
  --tile: rgba(255, 255, 255, .05);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, .display {
  font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.026em;
}
h4, h5 {
  font-family: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.012em;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2.25rem, 5.4vw, 4.5rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.06rem, 1.5vw, 1.28rem); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow-gold { color: var(--gold-br); }

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
}
.gold { color: var(--gold-br); }

/* ============================================================
   4. LAYOUT
   ============================================================ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(88px, 12vw, 168px); position: relative; }
.section-head { max-width: 900px; margin-bottom: clamp(48px, 6vw, 86px); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: #fff;
  padding: 14px 22px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold-br);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent; border-radius: 2px;
  font-size: .88rem; font-weight: 600; letter-spacing: .04em;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-br); }

.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-br); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }

.btn-outline {
  background: transparent; border-color: var(--line); color: var(--on-ground);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   6. HEADER
   ============================================================ */
#header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--hdr);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease),
              backdrop-filter .4s var(--ease);
}
#header .wrap { display: flex; align-items: center; gap: 28px; }

#header.stuck {
  background: var(--glass);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
}

.brand { flex: none; display: block; }
.brand img { width: 172px; height: 37px; object-fit: contain; }
/* Two logo lockups: the light knockout rides dark grounds, the full
   colour version rides light grounds. Only one is ever visible. */
.brand .lg-light { display: block; }
.brand .lg-dark  { display: none; }
body[data-ground="paper"] .brand .lg-light,
body[data-ground="cool"]  .brand .lg-light { display: none; }
body[data-ground="paper"] .brand .lg-dark,
body[data-ground="cool"]  .brand .lg-dark  { display: block; }
/* Over the hero the header is always on dark footage. */
#header:not(.stuck) .lg-light { display: block; }
#header:not(.stuck) .lg-dark  { display: none; }
#header:not(.stuck) { color: #fff; }

.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a {
  position: relative; font-size: .86rem; font-weight: 500;
  padding-block: 6px; white-space: nowrap;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }

.hdr-cta { flex: none; padding: 12px 22px; font-size: .82rem; }

.burger {
  display: none; flex: none;
  width: 44px; height: 44px; margin-left: auto;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px; padding: 0 10px;
}
.burger span {
  display: block; height: 2px; width: 100%; background: currentColor;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobnav {
  position: fixed; inset: var(--hdr) 0 auto 0; z-index: 89;
  background: var(--ink); color: #fff;
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease);
}
.mobnav.open { max-height: 78vh; }
.mobnav-in { padding: 18px var(--gutter) 34px; display: flex; flex-direction: column; gap: 4px; }
.mobnav a {
  padding: 15px 0; font-size: 1.05rem; font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.mobnav .btn { margin-top: 20px; justify-content: center; border-bottom: 0; }

/* ============================================================
   7. HERO. Three layers on independent planes.
   ============================================================ */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-block: calc(var(--hdr) + 40px) clamp(56px, 9vh, 104px);
  overflow: hidden;
  color: #fff;
}

/* Layer 1: footage */
.hero-stage { position: absolute; inset: 0; z-index: 0; }
.hero-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; transition: opacity .7s ease;
}
#hero-canvas.ready { opacity: 1; }

.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(7, 20, 38, .93) 0%, rgba(7, 20, 38, .55) 42%, rgba(7, 20, 38, .3) 72%, rgba(7, 20, 38, .5) 100%),
    linear-gradient(to right, rgba(7, 20, 38, .68) 0%, rgba(7, 20, 38, .1) 62%);
}

/* Pointer counter-motion and scroll drift share one transform.
   JS writes --px / --py (pointer) and GSAP writes --sy (scroll), so
   neither ever clobbers the other. */
[data-pointer] { --px: 0px; --py: 0px; }
.hero-grid, .hero-in { --px: 0px; --py: 0px; --sy: 0px; }
.hero-grid, .hero-in {
  transform: translate3d(var(--px), calc(var(--py) + var(--sy)), 0);
}

/* Layer 2: dot grid plane */
.hero-grid {
  position: absolute; inset: -8%; z-index: 2;
  background-image: radial-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse 74% 62% at 62% 46%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 74% 62% at 62% 46%, #000 0%, transparent 72%);
  opacity: .55;
  will-change: transform;
}

/* Layer 3: copy plane */
.hero-in { position: relative; z-index: 3; width: 100%; will-change: transform; }
.hero-copy { max-width: none; }

/* Sized so each masked line holds on one line down to tablet widths.
   The ceiling is set by the longest line, "Connecting resources.". */
#hero h1 { font-size: clamp(2.5rem, 6.6vw, 6rem); margin-bottom: 30px; }
.ln { display: block; overflow: hidden; padding-block: .04em; }
.ln-i { display: block; }

#hero .lede {
  color: rgba(255, 255, 255, .8);
  max-width: 60ch;
  margin-bottom: 38px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-cue {
  position: absolute; left: 50%; bottom: 22px; z-index: 4;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  transition: opacity .5s ease;
}
.hero-cue i { display: block; width: 1px; height: 42px; background: linear-gradient(rgba(255, 255, 255, .6), transparent); }
.hero-cue.gone { opacity: 0; }

/* ============================================================
   8. ACT I. Pinned capability panels.
   ============================================================ */
#resources { position: relative; }
.act-intro { padding-block: clamp(88px, 12vw, 150px) clamp(40px, 5vw, 70px); }

.panel-stage {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.panels { position: relative; width: 100%; }

.panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
/* Stacked panels, but only when the pinned choreography is running.
   Overlapping grid areas keep the container as tall as the tallest
   panel without any measuring in JS. */
.js-pin .panels { display: grid; }
.js-pin .panel {
  grid-area: 1 / 1;
  opacity: 0; visibility: hidden;
  transform: translateY(28px);
  transition: opacity .55s var(--ease), transform .55s var(--ease),
              visibility 0s linear .55s;
}
.js-pin .panel.live {
  opacity: 1; visibility: visible;
  transform: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease),
              visibility 0s linear 0s;
}

.panel-copy { position: relative; z-index: 2; }
.panel-n {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(5rem, 13vw, 12rem); line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line);
  margin-bottom: 6px;
  transform: translate3d(var(--px), var(--py), 0);
  will-change: transform;
}
.panel h3 { margin-bottom: 18px; }
.panel p { color: var(--muted); max-width: 46ch; margin-bottom: 26px; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  font-size: .74rem; font-weight: 500; letter-spacing: .06em;
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 100px;
  color: var(--muted);
}

.panel-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
}
.panel-media img { width: 100%; height: 100%; object-fit: cover; }

/* The one big number in Act I */
.stat { margin: 30px 0 26px; }
.stat-v {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem); line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--gold);
}
.stat-s { font-size: .92rem; color: var(--muted); margin-top: 8px; }

/* Progress ticks for the pinned run */
.panel-ticks { display: flex; gap: 8px; margin-top: 34px; }
.panel-ticks i {
  display: block; width: 34px; height: 2px; background: var(--line);
  transition: background-color .4s var(--ease);
}
.panel-ticks i.on { background: var(--gold); }

/* ============================================================
   9. ACT II. Horizontal corridor rail.
   ============================================================ */
#markets { position: relative; }
.rail-stage {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.rail-map {
  position: absolute; inset: 0; z-index: 0;
  opacity: .3;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}
.rail-map img { width: 100%; height: 100%; object-fit: cover; }

.rail-track {
  position: relative; z-index: 1;
  display: flex; gap: clamp(20px, 2.4vw, 34px);
  padding-inline: var(--gutter);
  will-change: transform;
}
.corridor {
  flex: none;
  width: clamp(280px, 30vw, 400px);
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.corridor:hover, .corridor:focus-within { border-color: var(--gold); }

.corridor-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.corridor-media img {
  width: 100%; height: 100%; object-fit: cover;
  /* Overscaled so the pointer parallax never exposes an edge. */
  transform: scale(1.1) translate3d(var(--px), var(--py), 0);
  will-change: transform;
}
.corridor-body { padding: 26px 26px 30px; }
.corridor .role {
  display: block;
  font-size: .68rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-br); margin-bottom: 10px;
}
.corridor h4 { margin-bottom: 12px; }
.corridor p { font-size: .93rem; color: var(--muted); }

/* ============================================================
   10. ACT III. Process and reasons.
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 40px);
}
.step { border-top: 1px solid var(--line); padding-top: 24px; }
.step-n {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.05rem; color: var(--gold); margin-bottom: 14px;
}
.step h4 { margin-bottom: 10px; }
.step p { font-size: .93rem; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}
.reasons { display: flex; flex-direction: column; gap: 26px; }
.reason { display: flex; gap: 18px; }
.reason-ico {
  flex: none; width: 42px; height: 42px; border-radius: 2px;
  display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--gold-br);
}
.reason-ico svg { width: 20px; height: 20px; }
.reason h4 { margin-bottom: 6px; }
.reason p { font-size: .93rem; color: var(--muted); }

.figure { position: relative; overflow: hidden; border-radius: 2px; }
.figure img { width: 100%; height: auto; }

/* ============================================================
   11. PARTNERS
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  /* overflow clips at the padding edge, so this padding is the room the
     hover lift and the focus ring need. Without it the top border of a
     lifted tile is cut off. */
  padding-block: 12px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 18px; width: max-content;
  animation: slide 46s linear infinite;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Logo files are trimmed to their artwork, and the image fills the tile's
   content box with object-fit: contain, so every mark sits at the true
   optical centre whatever its proportions. Marks supplied on a coloured
   ground set --pbg to that colour, so the tile becomes the ground rather
   than framing a rectangle inside a rectangle. */
.plogo {
  --pbg: #fff;
  flex: none;
  width: 232px; height: 118px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pbg);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 20px 24px;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plogo-dark { border-color: transparent; }
.plogo-nexfuel { --pbg: #24312a; }
.plogo-parcel  { --pbg: #073d7d; border-color: transparent; }
a.plogo { cursor: pointer; }
a.plogo:hover, a.plogo:focus-visible {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(7, 20, 38, .10);
}
.plogo img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* Awosika has no mark yet, so it gets a typographic lockup. */
.plogo-type {
  flex-direction: column; text-align: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-variant-caps: all-small-caps;
  letter-spacing: .1em; line-height: 1.25;
  color: var(--ink); font-size: .96rem;
}
.plogo-type .sub {
  display: block;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-variant-caps: normal;
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: #7d8ea3; margin-top: 7px;
}

/* ============================================================
   12. COMMUNITY IMPACT
   ============================================================ */
.impact {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 5vw, 76px); align-items: center;
}
.impact-media { overflow: hidden; border-radius: 2px; }
.impact-body p { color: var(--muted); margin-bottom: 16px; max-width: 56ch; }

.impact-logo {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 16px; padding: 12px 20px 12px 12px;
  background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease);
}
.impact-logo:hover { transform: translateY(-3px); }
.impact-logo img { width: 46px; height: 46px; object-fit: contain; }
.impact-logo .n { display: block; font-weight: 600; color: var(--ink); font-size: .95rem; }
.impact-logo .s {
  display: flex; align-items: center; gap: 4px;
  font-size: .78rem; color: #7d8ea3;
}
.impact-logo .s svg { width: 14px; height: 14px; }

/* ============================================================
   13. FAQ
   ============================================================ */
.faq-list { max-width: 900px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 26px 0; text-align: left;
  background: none; border: 0; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.16rem); letter-spacing: -.01em;
  transition: color .25s var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  position: relative; flex: none; width: 18px; height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 100%; height: 1.5px; background: var(--gold-br);
  transition: transform .35s var(--ease);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-icon::after { transform: rotate(0); }

.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-a p { padding-bottom: 26px; color: var(--muted); max-width: 74ch; }

/* ============================================================
   14. CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 78px); align-items: start;
}
.contact-info p { color: var(--muted); max-width: 48ch; margin-bottom: 34px; }
.contact-block { margin-bottom: 28px; }
.contact-block h5 {
  font-size: .7rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-br); margin-bottom: 14px;
}
.contact-line { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 10px; }
.contact-line svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--gold-br); }
.contact-line a:hover { color: var(--gold-br); }

.phone-grid { display: flex; flex-wrap: wrap; gap: 26px; }
.phone { display: flex; flex-direction: column; }
.phone .lbl {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3px;
}
.phone a { font-weight: 500; }
.phone a:hover { color: var(--gold-br); }

.form-card {
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(26px, 3.4vw, 44px);
}
.form-card h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); margin-bottom: 6px; }
.fh { font-size: .82rem; color: var(--muted); margin-bottom: 26px; }

.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block; font-size: .78rem; font-weight: 500;
  letter-spacing: .04em; margin-bottom: 7px; color: var(--muted);
}
.req { color: var(--gold-br); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line); border-radius: 2px;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; }
.field select option { color: #071426; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-br);
  background: rgba(255, 255, 255, .1);
}
.field input.bad, .field select.bad, .field textarea.bad { border-color: #d76a5c; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-msg { margin-top: 16px; font-size: .88rem; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { color: var(--gold-br); }
.form-msg.err { color: #eb9184; }
.form-legal { margin-top: 20px; font-size: .74rem; line-height: 1.55; color: var(--muted); }

/* ============================================================
   15. FOOTER
   ============================================================ */
#footer {
  background: var(--ink); color: #fff;
  padding-block: clamp(64px, 8vw, 96px) 34px;
}
#footer a:hover { color: var(--gold-br); }
.f-grid {
  display: grid; grid-template-columns: 1.4fr .8fr 1.3fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: 52px; border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.f-plate {
  display: inline-block; background: #fff;
  padding: 14px 20px; border-radius: 2px; margin-bottom: 22px;
}
.f-plate img { width: 168px; height: 36px; object-fit: contain; }
.f-brand p { color: #93a7bf; font-size: .93rem; max-width: 40ch; }
.f-tag {
  margin-top: 18px; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .84rem; letter-spacing: -.005em; color: var(--gold-br);
}
#footer h5 {
  font-size: .7rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: #93a7bf; margin-bottom: 18px;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.f-col a { font-size: .93rem; }
.f-contact .contact-line svg { color: var(--gold-br); }
.f-contact .contact-line span, .f-contact .contact-line a { font-size: .93rem; }
.f-contact address { font-style: normal; }
.f-contact .phone-grid { margin-top: 16px; }

.f-bottom {
  padding-top: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.f-bottom p { font-size: .8rem; color: #7d8ea3; }
.f-legal { max-width: 92ch; line-height: 1.6; }

/* ============================================================
   16. MOTION UTILITIES
   Everything is visible by default. The .motion class is only added
   when the device asks for animation, so a failed CDN, a blocked
   script or reduced motion all land on a clean, readable page.
   ============================================================ */
.motion .rv {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.motion .rv.on { opacity: 1; transform: none; }

.motion .ln-i { transform: translateY(106%); transition: transform .95s var(--ease); }
.motion .ln.on .ln-i { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .rv, .ln-i { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================
   17. RESPONSIVE
   Mobile is its own design, not a shrunken desktop: no canvas,
   no pinning, no pointer parallax, single column.
   ============================================================ */
@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .impact, .contact-grid { grid-template-columns: 1fr; }
  .figure { max-width: 560px; }
  .f-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav, .hdr-cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 768px) {
  :root { --hdr: 66px; }

  #hero { min-height: 92svh; align-items: flex-end; }
  .hero-grid { display: none; }
  #hero-canvas { display: none; }
  .hero-cue { display: none; }

  .panel-stage, .rail-stage { min-height: 0; display: block; }
  .panels { display: flex; flex-direction: column; gap: clamp(56px, 12vw, 88px); }
  .panel { grid-template-columns: 1fr; gap: 26px; }
  .panel-media { aspect-ratio: 16 / 10; }
  .panel-ticks { display: none; }

  .rail-track {
    flex-direction: column;
    padding-inline: 0;
    transform: none !important;
  }
  .corridor { width: 100%; }
  .rail-map { opacity: .18; }

  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .plogo { width: 186px; height: 100px; }
}

/* ============================================================
   18. INNER PAGES
   Shared by about/, contact/ and news/. The homepage does not
   use any of these rules.
   ============================================================ */
.page-hero {
  padding-block: calc(var(--hdr) + clamp(64px, 9vw, 120px)) clamp(48px, 6vw, 84px);
}
.page-hero h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); margin-bottom: 26px; }
.page-hero .lede { max-width: 66ch; }

.prose > * + * { margin-top: 22px; }
.prose p { color: var(--muted); max-width: 68ch; }
.prose h3 { margin-top: 54px; }

.rule { height: 1px; background: var(--line); border: 0; margin-block: clamp(48px, 6vw, 80px); }

.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.4vw, 52px);
}
.pillar { border-top: 1px solid var(--line); padding-top: 26px; }
.pillar h4 { margin-bottom: 12px; }
.pillar p { font-size: .95rem; color: var(--muted); }

.soon {
  border: 1px solid var(--line); border-radius: 2px;
  padding: clamp(34px, 5vw, 64px);
  max-width: 720px;
}
.soon h3 { margin-bottom: 16px; }
.soon p { color: var(--muted); margin-bottom: 26px; }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   19. LEADERSHIP
   A featured founder split, then the rest of the team. Photos
   are supplied on white, so they sit on light grounds.
   ============================================================ */
.exec-lead {
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 4.4vw, 64px); align-items: center;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.exec-photo {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: 2px; background: #eef1f5;
}
.exec-photo img { width: 100%; height: 100%; object-fit: cover; }

.exec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(26px, 3.2vw, 48px);
}
.exec .exec-photo { margin-bottom: 20px; }
.exec-name {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.06rem; letter-spacing: -.012em; margin-bottom: 5px;
}
.exec-role {
  display: block;
  font-size: .68rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-br); margin-bottom: 13px;
}
.exec p { font-size: .9rem; color: var(--muted); }
.exec-lead .exec-name { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.exec-lead p { font-size: .97rem; }

@media (max-width: 1080px) {
  .exec-grid { grid-template-columns: repeat(2, 1fr); }
  .exec-lead { grid-template-columns: 1fr; }
  .exec-lead .exec-photo { max-width: 380px; }
}
@media (max-width: 700px) {
  .exec-grid { grid-template-columns: 1fr; gap: 40px; }
  .exec .exec-photo { max-width: 320px; }
}

/* ============================================================
   20. OUR REACH (About)
   The corridor map is the ground of the section. A navy gradient
   holds the copy side dark for contrast and lets the map breathe
   on the right, where the corridors are.
   ============================================================ */
.reach {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: min(88vh, 820px);
  display: flex; align-items: center;
}
.reach > .wrap { width: 100%; }
.reach-bg { position: absolute; inset: 0; z-index: -1; }
.reach-bg picture, .reach-bg img { display: block; width: 100%; height: 100%; }
.reach-bg img { object-fit: cover; object-position: 62% 50%; }
.reach-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 27, 51, .96) 0%, rgba(10, 27, 51, .86) 34%, rgba(10, 27, 51, .35) 64%, rgba(10, 27, 51, .15) 100%),
    linear-gradient(to bottom, var(--navy) 0%, transparent 16%, transparent 84%, var(--navy) 100%);
}
.reach-copy { position: relative; max-width: 620px; }

@media (max-width: 768px) {
  .reach { min-height: 0; }
  .reach-bg img { object-position: 58% 50%; }
  .reach-bg::after {
    background: linear-gradient(to bottom, rgba(10, 27, 51, .78), rgba(10, 27, 51, .9));
  }
}
