:root {
  --ink: #04141a;
  --deep-teal: #0e2e32;
  --teal: #0f5c67;
  --sky-blue: #8fd3f4;
  --mist-white: #f4fbfa;
  --soft-white: #dceae6;
  --mint: #9be7b0;
  --line-green: #7df2c2;
  --glass: rgba(255, 255, 255, 0.12);
  --glass-strong: rgba(10, 43, 50, 0.42);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow: 0 24px 70px rgba(3, 22, 29, 0.28);
  --header-height: 86px;
  /* Shared overlay for image-heavy "world" blades (platform, global, final) */
  --world-overlay:
    linear-gradient(100deg, rgba(2, 10, 18, 0.78) 0%, rgba(2, 10, 18, 0.46) 38%, rgba(2, 10, 18, 0.28) 60%, rgba(2, 10, 18, 0.52) 100%),
    radial-gradient(ellipse at 30% 35%, rgba(2, 10, 18, 0.55) 0%, rgba(2, 10, 18, 0) 55%),
    linear-gradient(180deg, rgba(2, 10, 18, 0.18) 0%, rgba(2, 10, 18, 0) 30%, rgba(2, 10, 18, 0.45) 100%);
  --h3-card: clamp(20px, 1.6vw, 26px);
  --eyebrow-size: clamp(11px, 0.78vw, 13px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--mist-white);
  background:
    linear-gradient(180deg, rgba(3, 18, 24, 0.12), rgba(3, 18, 24, 0.74)),
    #071d24;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.45;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--mint);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  transition: transform 180ms ease;
}

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

.container {
  width: min(100%, 1580px);
  margin: 0 auto;
  padding-inline: clamp(24px, 5vw, 82px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
  padding: 18px clamp(22px, 4.4vw, 72px);
  color: rgba(255, 255, 255, 0.94);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    background 240ms ease,
    border-color 240ms ease,
    min-height 240ms ease,
    backdrop-filter 240ms ease;
}

body.is-loading .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

/* Sequenced reveal once the intro loader releases */
body.intro-ready .site-header {
  animation: headerDrop 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.intro-ready .hero-copy .eyebrow,
body.intro-ready .hero-copy h1 {
  animation: heroTitleIn 1100ms cubic-bezier(0.22, 1, 0.36, 1) 350ms both;
}

body.intro-ready .hero-copy .lead,
body.intro-ready .hero-copy .hero-actions {
  animation: heroTitleIn 1100ms cubic-bezier(0.22, 1, 0.36, 1) 650ms both;
}

body.intro-ready .hero-pills {
  animation: heroPillsRise 1200ms cubic-bezier(0.22, 1, 0.36, 1) 900ms both;
}

body.intro-ready .hero-pills span {
  animation: heroPillsRise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(950ms + var(--pill-index, 0) * 110ms);
}

@keyframes headerDrop {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroPillsRise {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

.site-header.is-scrolled,
.site-header.menu-active {
  min-height: 72px;
  background: rgba(6, 32, 39, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-weight: 680;
  line-height: 1.05;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 47px;
  height: 47px;
  border: 1px solid rgba(185, 255, 205, 0.9);
  border-radius: 50%;
  color: var(--mist-white);
  background: rgba(44, 104, 101, 0.35);
  box-shadow: inset 0 0 22px rgba(155, 231, 176, 0.18);
  font-size: 21px;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark > :not(.brand-sub) {
  transform: translateY(-5px);
}

.brand-sub {
  position: absolute;
  left: calc(50% + 0.42em + 1px);
  top: 50%;
  transform: translateY(calc(-50% + 0.3em + 1px));
  margin-left: 2px;
  margin-top: 2px;
  font-size: 0.52em;
  line-height: 1;
}

.brand-name {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 14px;
  font-weight: 590;
  white-space: nowrap;
}

.site-nav a,
.footer a,
.text-link {
  position: relative;
}

.site-nav a::after,
.footer nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: rgba(155, 231, 176, 0.86);
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer nav a:hover::after,
.footer nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border: 1px solid rgba(197, 255, 209, 0.55);
  border-radius: 999px;
  color: #f6fffb;
  background: rgba(95, 143, 120, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.header-cta {
  justify-self: end;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 720;
}

.button {
  padding: 0 24px;
  font-size: 14px;
  font-weight: 760;
}

.button-primary:hover,
.button-primary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(209, 255, 218, 0.92);
  background: rgba(109, 164, 131, 0.68);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 60;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(7, 37, 45, 0.38);
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 13px;
  display: block;
  width: 18px;
  height: 1px;
  border-radius: 1px;
  background: currentColor;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.blade {
  position: relative;
  min-height: clamp(680px, 92svh, 1080px);
  scroll-margin-top: var(--header-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(128px, 16vh, 220px);
}

.blade::before,
.blade::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  height: 190px;
  pointer-events: none;
}

.blade::before {
  top: 0;
  background: linear-gradient(180deg, rgba(3, 19, 25, 0.5), rgba(3, 19, 25, 0));
}

.blade::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(3, 19, 25, 0.58), rgba(3, 19, 25, 0));
}

.blade-art {
  position: absolute;
  inset: -8vh -4vw;
  z-index: -4;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  background-image:
    linear-gradient(90deg, rgba(4, 18, 26, 0.54), rgba(4, 18, 26, 0.18) 44%, rgba(4, 18, 26, 0.33)),
    linear-gradient(180deg, rgba(185, 232, 235, 0.08), rgba(3, 18, 24, 0.24)),
    url("/assets/hydrogen-cinematic-canvas.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}

.art-thesis {
  background-image:
    linear-gradient(90deg, rgba(4, 18, 26, 0.78), rgba(4, 18, 26, 0.36) 42%, rgba(4, 18, 26, 0.18)),
    linear-gradient(180deg, rgba(185, 232, 235, 0.02), rgba(3, 18, 24, 0.4)),
    url("assets/thesis-background.webp");
  background-position: center;
  background-size: cover;
}

.art-chain {
  background-position: center 38%;
}

.art-market {
  background-image:
    linear-gradient(90deg, rgba(244, 251, 250, 0.02), rgba(244, 251, 250, 0.14) 40%, rgba(244, 251, 250, 0.54) 58%, rgba(244, 251, 250, 0.78)),
    linear-gradient(180deg, rgba(244, 251, 250, 0.04), rgba(244, 251, 250, 0.26) 62%, rgba(244, 251, 250, 0.66)),
    url("assets/market-background.webp");
  background-position: center;
  background-size: cover;
}

.art-advantage {
  background-image:
    linear-gradient(90deg, rgba(5, 21, 27, 0.34), rgba(5, 21, 27, 0.08) 44%, rgba(5, 21, 27, 0.2)),
    linear-gradient(180deg, rgba(241, 249, 251, 0.16), rgba(5, 22, 29, 0.34)),
    url("assets/advantage-background.webp");
  background-position: center;
  background-size: cover;
}

.art-impact {
  background-image:
    linear-gradient(90deg, rgba(5, 21, 27, 0.46), rgba(5, 21, 27, 0.2) 40%, rgba(5, 21, 27, 0.24)),
    linear-gradient(180deg, rgba(5, 22, 29, 0.18), rgba(5, 22, 29, 0.54)),
    url("assets/impact-background.webp");
  background-position: center;
  background-size: cover;
}

.art-platform {
  background-image:
    var(--world-overlay),
    url("/__l5e/assets-v1/3e83d98d-0f0f-4e3f-a49b-321a52b81851/platform-network.webp");
  background-size: cover;
  background-position: center 40%;
}

.art-global {
  background-image:
    var(--world-overlay),
    url("/__l5e/assets-v1/56c3cef3-079e-4e9c-a309-2ed336f838ed/global-platform-earth.png");
  background-size: cover;
  background-position: center 54%;
}

.art-final {
  background-image:
    var(--world-overlay),
    url("assets/final-background.webp");
  background-size: cover;
  background-position: center;
}

.hero {
  min-height: 100svh;
  align-items: stretch;
  padding-block: 0;
  color: #fff;
  background: #092630;
}

.hero-poster,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-poster,
.hero-video {
  object-fit: cover;
  object-position: center top;
}

.hero-video {
  z-index: -3;
  opacity: 0.94;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-intro-video {
  z-index: -2;
  opacity: 0;
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.video-ready .hero-intro-video {
  opacity: 1;
}

.hero.intro-finished .hero-intro-video {
  opacity: 0;
}

.hero.main-video-active .hero-video {
  opacity: 0.94;
}

.hero-poster {
  z-index: -4;
  filter: saturate(1.04);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 18, 26, 0.84) 0%, rgba(4, 18, 26, 0.38) 37%, rgba(4, 18, 26, 0.04) 72%),
    linear-gradient(180deg, rgba(8, 36, 45, 0.18), rgba(8, 36, 45, 0.13) 52%, rgba(8, 36, 45, 0.46));
}

.hero.video-failed .hero-video,
.hero.static-hero .hero-video {
  opacity: 0;
}

.hero-loader {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  gap: 18px;
  align-content: center;
  background:
    linear-gradient(180deg, rgba(8, 40, 36, 0.55), rgba(4, 20, 26, 0.65)),
    radial-gradient(ellipse at center, rgba(15, 92, 103, 0.35), rgba(4, 20, 26, 0.85));
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 700ms cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
}

body.is-loading .hero-loader {
  opacity: 1;
  visibility: visible;
}

.loader-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(185, 255, 205, 0.88);
  border-radius: 50%;
  color: var(--mist-white);
  background: rgba(44, 104, 101, 0.36);
  box-shadow:
    inset 0 0 24px rgba(155, 231, 176, 0.2),
    0 0 50px rgba(125, 242, 194, 0.16);
  font-size: 28px;
  font-weight: 720;
}

.loader-mark span {
  align-self: end;
  transform: translate(-1px, -8px);
  font-size: 0.5em;
  line-height: 1;
}

.loader-track {
  position: relative;
  display: block;
  width: min(220px, 48vw);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.loader-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(155, 231, 176, 0), rgba(155, 231, 176, 0.95), rgba(255, 255, 255, 0.9));
  box-shadow: 0 0 22px rgba(125, 242, 194, 0.5);
  animation: loaderSweep 1.45s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: var(--header-height);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loading .hero-content {
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
}

.hero-copy {
  width: min(560px, 94%);
  padding-top: 4vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(191, 255, 218, 0.82);
  font-size: clamp(11px, 0.78vw, 13px);
  font-weight: 780;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-weight: 360;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(58px, 7.4vw, 118px);
}

h1 span,
.hero-copy .eyebrow,
.check-list li::before {
  color: var(--mint);
}

h2 {
  font-size: clamp(42px, 5.3vw, 86px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(19px, 1.35vw, 24px);
  font-weight: 720;
  line-height: 1.08;
}

.lead,
.market-copy > p,
.final-copy > p {
  max-width: 560px;
  color: rgba(247, 255, 252, 0.88);
  font-size: clamp(17px, 1.38vw, 23px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(7, 38, 46, 0.22);
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(12px);
}

.section-heading {
  position: relative;
  z-index: 2;
}

.section-heading.centered {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.impact-copy h2,
.platform-copy h2,
.final-copy h2 {
  color: rgba(246, 252, 250, 0.94);
  text-shadow: 0 12px 42px rgba(3, 17, 22, 0.42);
}

.thesis-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1fr);
  align-items: end;
  gap: clamp(40px, 6vw, 92px);
}

.thesis-layout .section-heading {
  align-self: start;
  padding-top: 11vh;
}

.energy-line {
  position: absolute;
  right: 8vw;
  bottom: 36%;
  left: 34vw;
  z-index: 0;
  height: 2px;
  overflow: hidden;
  opacity: 0.82;
  background: linear-gradient(90deg, transparent, rgba(255, 247, 192, 0.82), rgba(125, 242, 194, 0.72), transparent);
  box-shadow: 0 0 22px rgba(255, 246, 194, 0.52);
}

.energy-line::after {
  content: "";
  position: absolute;
  inset: -3px auto -3px 0;
  width: 28%;
  background: rgba(255, 255, 255, 0.9);
  filter: blur(7px);
  animation: linePulse 5.8s ease-in-out infinite;
}

.thesis-grid,
.advantage-grid,
.people-track,
.region-track {
  display: grid;
  gap: 22px;
}

.thesis-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}

.glass-card,
.stage-card,
.pillar,
.person-card,
 .country-card,
.region-card {
  border: 1px solid rgba(255, 255, 255, 0.19);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(7, 39, 47, 0.26);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.glass-card {
  min-height: 210px;
  padding: 28px 24px 24px;
  border-radius: 8px;
}

.glass-card p,
.stage-card p,
.pillar p,
.person-card p,
.region-card p,
 .country-card p,
.check-list {
  margin-bottom: 0;
  color: rgba(247, 255, 252, 0.82);
}

.card-kicker,
.stage-card span,
.pillar-icon {
  display: inline-grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 22px;
  border: 1px solid rgba(186, 255, 204, 0.54);
  border-radius: 50%;
  color: rgba(219, 255, 232, 0.92);
  background: rgba(24, 87, 83, 0.34);
  font-size: 12px;
  font-weight: 800;
}

.chain-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.3fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 4vw, 70px);
}

.chain-track {
  position: relative;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  padding: 6px 6px 18px;
  scroll-padding-inline: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.chain-track::-webkit-scrollbar {
  height: 6px;
}

.chain-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(190, 255, 214, 0.34);
}

.stage-card {
  position: relative;
  flex: 0 0 clamp(230px, 18vw, 292px);
  aspect-ratio: 9 / 19;
  min-height: clamp(440px, 70vh, 640px);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 39, 47, 0.24);
  box-shadow: 0 22px 62px rgba(3, 22, 29, 0.26);
  scroll-snap-align: start;
  transform: translateZ(0);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.stage-card:hover,
.stage-card:focus-visible,
.stage-card.is-playing {
  border-color: rgba(210, 255, 224, 0.55);
  box-shadow: 0 26px 76px rgba(3, 22, 29, 0.4);
  transform: translateY(-4px);
}

.stage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(3, 18, 24, 0.03), rgba(3, 18, 24, 0.08) 42%, rgba(3, 18, 24, 0.84)),
    linear-gradient(90deg, rgba(3, 18, 24, 0.25), rgba(3, 18, 24, 0));
  pointer-events: none;
}

.stage-poster,
.stage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-poster {
  z-index: 0;
}

.stage-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 260ms ease;
}

.stage-card:hover .stage-video,
.stage-card:focus-visible .stage-video,
.stage-card.is-playing .stage-video {
  opacity: 1;
}

.stage-content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 3;
}

.stage-content span {
  display: inline-flex;
  width: auto;
  height: auto;
  margin-bottom: 58%;
  border: 0;
  border-radius: 0;
  color: rgba(246, 255, 250, 0.92);
  background: none;
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 330;
  line-height: 1;
}

.stage-content h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.11em;
}

.stage-content p {
  max-width: 22ch;
  font-size: 14px;
}

.investment-blade {
  min-height: auto;
  align-items: flex-start;
  padding-block: clamp(140px, 18vh, 220px) clamp(120px, 14vh, 180px);
}

.investment-blade::before {
  background: linear-gradient(180deg, rgba(3, 19, 25, 0.34), rgba(3, 19, 25, 0));
}

.investment-blade::after {
  background: linear-gradient(0deg, rgba(3, 19, 25, 0.4), rgba(3, 19, 25, 0));
}

.investment-layout {
  display: grid;
  gap: clamp(96px, 12vh, 160px);
}

.thesis-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 4.8vw, 76px);
  align-items: center;
}

.investment-blade .section-heading h2 {
  font-size: clamp(32px, 3.8vw, 58px);
  line-height: 1.04;
}

.thesis-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 50px);
  padding-top: 8px;
}

.thesis-journey::before {
  content: "";
  position: absolute;
  top: 31px;
  right: 5%;
  left: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 247, 192, 0.9), rgba(125, 242, 194, 0.68), transparent);
  box-shadow: 0 0 20px rgba(255, 246, 194, 0.46);
}

.thesis-node {
  position: relative;
  z-index: 1;
  max-width: 210px;
}

.node-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  place-items: center;
  border: 1px solid rgba(214, 255, 226, 0.72);
  border-radius: 50%;
  color: rgba(246, 255, 250, 0.94);
  background: rgba(25, 83, 83, 0.28);
  box-shadow:
    inset 0 0 18px rgba(155, 231, 176, 0.14),
    0 0 22px rgba(255, 246, 194, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.thesis-node h3 {
  margin-bottom: 8px;
  font-size: clamp(14px, 1.05vw, 17px);
}

.thesis-node p {
  margin: 0;
  color: rgba(247, 255, 252, 0.78);
  font-size: clamp(12px, 0.92vw, 14px);
  line-height: 1.45;
}

.universe-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.27fr) minmax(0, 1fr);
  gap: clamp(22px, 3.2vw, 44px);
  align-items: end;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.universe-heading h2 {
  font-size: clamp(30px, 3.3vw, 48px);
}

.investment-blade .chain-track {
  gap: 12px;
  padding: 6px 4px 12px;
}

.investment-blade .stage-card {
  flex-basis: clamp(180px, 22vw, 280px);
  aspect-ratio: auto;
  min-height: clamp(240px, 32vh, 320px);
  border-radius: 4px;
}

.investment-blade .stage-card::after {
  background:
    linear-gradient(180deg, rgba(3, 18, 24, 0.02), rgba(3, 18, 24, 0.08) 38%, rgba(3, 18, 24, 0.88)),
    linear-gradient(90deg, rgba(3, 18, 24, 0.18), rgba(3, 18, 24, 0));
}

.investment-blade .stage-content {
  right: 14px;
  left: 14px;
  top: 14px;
  bottom: auto;
}

.investment-blade .stage-content span {
  position: static;
  display: block;
  margin-bottom: 4px;
  font-size: clamp(24px, 2vw, 32px);
}

.investment-blade .stage-content h3 {
  margin-bottom: 6px;
  font-size: 10px;
}

.investment-blade .stage-content p {
  max-width: 18ch;
  font-size: 11px;
  line-height: 1.38;
}

.market {
  min-height: 100svh;
  align-items: flex-start;
  padding-block: clamp(108px, 15vh, 160px) clamp(72px, 10vh, 120px);
}

.market::before {
  background: linear-gradient(180deg, rgba(4, 20, 26, 0.12), rgba(244, 251, 250, 0));
}

.market::after {
  background: linear-gradient(0deg, rgba(244, 251, 250, 0.55), rgba(244, 251, 250, 0));
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, min(60vw, 760px));
  align-items: start;
  gap: clamp(24px, 4vw, 96px);
}

.market-copy {
  grid-column: 2;
  width: 100%;
  margin-top: clamp(4px, 2.5vh, 28px);
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #0d2933;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 1px 24px rgba(255, 255, 255, 0.62);
}

.market-copy .eyebrow {
  margin-bottom: 12px;
  color: rgba(23, 88, 83, 0.72);
}

.market-copy h2 {
  max-width: 460px;
  margin-bottom: 18px;
  color: #17313d;
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 1.03;
  text-shadow: 0 2px 30px rgba(255, 255, 255, 0.54);
}

.market-copy > p {
  max-width: 650px;
  color: rgba(10, 39, 49, 0.86);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(30px, 4vh, 48px);
}

.stat {
  min-height: 92px;
  padding: 0 clamp(18px, 2vw, 30px);
  border-left: 1px solid rgba(14, 63, 75, 0.24);
}

.stat:first-child {
  padding-left: 0;
  border-left: 0;
}

.stat strong {
  display: block;
  margin-bottom: 18px;
  color: #083540;
  font-size: 40px;
  font-weight: 360;
  letter-spacing: 0;
  line-height: 0.98;
  white-space: nowrap;
}

.stat span:last-child {
  color: rgba(9, 38, 48, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.source-line,
.market-copy > .source-line {
  color: rgba(9, 38, 48, 0.58);
  font-size: 10.5px;
  line-height: 1.45;
  margin-top: 18px;
}

.advantage {
  min-height: 50svh;
  align-items: center;
  padding-block: clamp(54px, 6vh, 78px) clamp(22px, 3vh, 36px);
}

.advantage::before {
  background: linear-gradient(180deg, rgba(3, 19, 25, 0.16), rgba(3, 19, 25, 0));
}

.advantage::after {
  background: linear-gradient(0deg, rgba(3, 19, 25, 0.2), rgba(3, 19, 25, 0));
}

.advantage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin-top: clamp(28px, 4vh, 42px);
}

.advantage .section-heading h2 {
  max-width: 840px;
  color: rgba(247, 255, 252, 0.96);
  font-size: clamp(34px, 4.2vw, 64px);
}

.pillar {
  min-height: clamp(150px, 18vh, 210px);
  padding: 22px 22px 20px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: rgba(4, 17, 24, 0.55);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 17, 24, 0.35) 0%, rgba(2, 12, 18, 0.78) 100%);
  pointer-events: none;
}

.advantage-grid .pillar:nth-of-type(1) {
  background-image: url("/__l5e/assets-v1/87c810da-ee04-4e43-a09a-f8d996377a08/advantage-expertise.png");
}
.advantage-grid .pillar:nth-of-type(2) {
  background-image: url("/__l5e/assets-v1/d6bbfadd-5042-492f-95c4-07ad4012f4cf/advantage-dealflow.png");
}
.advantage-grid .pillar:nth-of-type(3) {
  background-image: url("/__l5e/assets-v1/dd22be74-4769-4ada-adbc-8db55c12dab7/advantage-value.png");
}
.advantage-grid .pillar:nth-of-type(4) {
  background-image: url("/__l5e/assets-v1/8796288f-8699-4c53-ab14-d220606063a2/advantage-capital.png");
}

.pillar-icon {
  margin-bottom: 18px;
}

.pillar h3 {
  font-size: clamp(17px, 1.15vw, 21px);
}

.pillar p {
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.48;
}

.impact {
  min-height: 36svh;
  align-items: center;
  padding-block: clamp(18px, 2.3vh, 30px) clamp(34px, 4vh, 58px);
}

.impact-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 4.8vw, 74px);
}

.impact-copy {
  align-self: center;
  padding-top: 0;
}

.impact-copy h2,
.platform-copy h2,
.final-copy h2 {
  font-size: clamp(42px, 4.8vw, 78px);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(246, 255, 250, 0.92);
  font-weight: 720;
}

.people-track {
  display: flex;
  align-items: end;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  padding: 8px 4px 16px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.people-track::-webkit-scrollbar {
  height: 6px;
}

.people-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(190, 255, 214, 0.34);
}

.person-card {
  position: relative;
  display: flex;
  flex: 0 0 clamp(205px, 18vw, 290px);
  height: 380px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 24px;
  border-radius: 8px;
  background-color: rgba(5, 29, 38, 0.4);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  scroll-snap-align: start;
}

.person-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 29, 38, 0) 0%,
    rgba(5, 29, 38, 0.15) 38%,
    rgba(3, 20, 28, 0.78) 72%,
    rgba(2, 14, 20, 0.94) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.person-card > * {
  position: relative;
  z-index: 2;
}

.person-card[data-person="investor"] {
  background-image: url("/__l5e/assets-v1/211c8307-172c-4ac5-a263-79fccd1e7697/investor.png");
}
.person-card[data-person="operator"] {
  background-image: url("/__l5e/assets-v1/f0252d08-27b4-475e-99e0-426a4b269a7b/operator.png");
}
.person-card[data-person="engineer"] {
  background-image: url("/__l5e/assets-v1/bca23162-a1a0-4412-bb18-0358aaa23ff1/engineer.png");
}
.person-card[data-person="policy"] {
  background-image: url("/__l5e/assets-v1/90a0fdf6-a02a-488c-9d72-8ce88c08990e/policy.png");
}

.person-card span {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(38px, 7vw, 110px);
}

.platform-copy {
  max-width: 560px;
}

.country-track {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  overflow: hidden;
  padding: 6px 4px 18px;
}

.country-track::-webkit-scrollbar { display: none; }

.country-marquee {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  width: max-content;
  transform: translateX(0);
  transition: transform 900ms cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform;
}

.country-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  grid-column: 1 / -1;
  width: 100%;
}

.country-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(219, 255, 232, 0.55);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.country-dot:hover {
  border-color: rgba(219, 255, 232, 0.9);
}

.country-dot.is-active {
  background: rgba(186, 255, 204, 0.92);
  border-color: rgba(186, 255, 204, 0.92);
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .country-marquee { transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  .country-marquee { animation: none; }
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
  font-size: clamp(16px, 1.2vw, 20px);
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}

.check-list li::before {
  content: "\2713";
  font-weight: 900;
}

.country-card {
  position: relative;
  display: flex;
  flex: 0 0 min(900px, 100%);
  width: min(900px, 100%);
  min-height: 470px;
  flex-direction: column;
  justify-content: start;
  overflow: hidden;
  border-radius: 8px;
  scroll-snap-align: start;
  background: rgba(7, 38, 47, 0.42);
}

.country-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 55%;
  background: linear-gradient(90deg, rgba(2, 12, 18, 0.45) 0%, rgba(2, 12, 18, 0) 40%);
  pointer-events: none;
}

.country-card img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.country-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 32px;
  max-width: 45%;
  text-align: left;
}

.country-card-copy h3 {
  margin: 0;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.14;
}

.check-list.compact {
  margin-top: 24px;
  gap: 9px;
  font-size: 15px;
}

.global {
  min-height: 92svh;
}

.global-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.6fr) minmax(600px, 1fr);
  align-items: end;
  gap: clamp(40px, 6vw, 96px);
}

.region-track {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  align-items: end;
}

.region-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(7, 37, 47, 0.46);
}

.region-card h3 {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.region-card p {
  margin: 0 0 8px;
}

.final {
  min-height: 72svh;
  align-items: end;
}

.final-layout {
  width: min(100%, 1540px);
}

.final-copy {
  width: min(660px, 100%);
  margin-bottom: clamp(24px, 4vh, 56px);
}

.final-copy > p {
  margin-bottom: clamp(28px, 4vh, 48px);
}

.final-copy .button {
  margin-top: clamp(20px, 3.2vh, 40px);
}

/* Contact modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 24, 0.72);
  backdrop-filter: blur(10px);
}

.contact-modal-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(180deg, #0c2f37 0%, #07212a 100%);
  border: 1px solid rgba(155, 231, 176, 0.22);
  border-radius: 18px;
  color: rgba(247, 255, 252, 0.94);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(12px);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal.is-open .contact-modal-panel {
  transform: translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(247, 255, 252, 0.7);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.contact-modal-close:hover { color: #fff; background: rgba(255,255,255,0.08); }

.contact-modal-panel h3 {
  margin: 6px 0 8px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-modal-lead {
  margin: 0 0 18px;
  color: rgba(247, 255, 252, 0.7);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247, 255, 252, 0.72);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(155, 231, 176, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-form-status {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(155, 231, 176, 0.9);
  min-height: 1em;
}

.contact-form .button {
  justify-self: start;
  margin-top: 6px;
}

body.modal-open {
  overflow: hidden;
}

.footer {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 26px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(248, 255, 252, 0.86);
}

.footer nav,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 680;
}

.footer-legal {
  justify-content: end;
}

.linkedin {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 4px;
  color: #0d2933;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.reveal:nth-child(3) {
  transition-delay: 140ms;
}

.reveal:nth-child(4) {
  transition-delay: 200ms;
}

.reveal:nth-child(5) {
  transition-delay: 260ms;
}

@keyframes linePulse {
  0%,
  100% {
    transform: translateX(-110%);
    opacity: 0;
  }

  18%,
  72% {
    opacity: 0.72;
  }

  82% {
    transform: translateX(450%);
    opacity: 0;
  }
}

@keyframes loaderSweep {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(260%);
  }
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    gap: 20px;
    font-size: 13px;
  }

  .investment-blade {
    align-items: center;
    padding-block: clamp(48px, 7vh, 68px) clamp(128px, 17vh, 156px);
  }

  .market {
    align-items: center;
    padding-block: clamp(108px, 14vh, 132px) clamp(76px, 10vh, 108px);
  }

  .market-layout {
    grid-template-columns: 1fr;
  }

  .market-copy {
    grid-column: 1;
    justify-self: end;
    width: min(680px, 100%);
    padding-inline: clamp(22px, 3.2vw, 34px);
  }

  .market-copy h2,
  .market-copy > p {
    max-width: 620px;
  }

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

  .stat {
    min-height: auto;
    padding: 18px clamp(18px, 3vw, 28px) 0 0;
    border-top: 1px solid rgba(14, 63, 75, 0.2);
    border-left: 0;
  }

  .stat:nth-child(-n + 2) {
    padding-top: 0;
    border-top: 0;
  }

  .stat:nth-child(even) {
    padding-right: 0;
    padding-left: clamp(18px, 3vw, 28px);
    border-left: 1px solid rgba(14, 63, 75, 0.2);
  }

  .thesis-layout,
  .chain-layout,
  .impact-layout,
  .global-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .thesis-layout .section-heading,
  .impact-copy {
    padding-top: 0;
  }

  .thesis-grid,
  .advantage-grid,
  .people-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-layout {
    grid-template-columns: 1fr;
  }

  .country-track > * {
    min-width: min(62vw, 360px);
  }

  .advantage {
    min-height: 50svh;
  }

  .impact {
    min-height: 36svh;
  }

  .advantage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .impact-layout {
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    align-items: center;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: var(--header-height);
    padding: 14px 20px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .brand-name {
    font-size: 13px;
  }

  .menu-toggle {
    display: grid;
    position: fixed;
    top: 14px;
    right: 20px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 104px 28px 32px;
    background:
      linear-gradient(180deg, rgba(6, 31, 38, 0.96), rgba(5, 22, 28, 0.98)),
      url("/assets/hydrogen-cinematic-canvas.jpg") center top / cover no-repeat;
    font-size: clamp(28px, 9vw, 52px);
    font-weight: 360;
    transform: translateY(-100%);
    visibility: hidden;
    transition:
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 320ms;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .header-cta {
    display: none;
  }

  .container {
    padding-inline: clamp(20px, 6vw, 34px);
  }

  .blade {
    min-height: auto;
    padding-block: 96px;
  }

  .market {
    min-height: 100svh;
    padding-block: 104px 82px;
  }

  .market-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100svh;
    align-items: end;
    padding-bottom: 58px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 21, 27, 0.22), rgba(5, 21, 27, 0.18) 36%, rgba(5, 21, 27, 0.86)),
      linear-gradient(90deg, rgba(5, 21, 27, 0.68), rgba(5, 21, 27, 0.16));
  }

  h1 {
    font-size: clamp(49px, 15vw, 82px);
  }

  h2,
  .impact-copy h2,
  .platform-copy h2,
  .final-copy h2 {
    font-size: clamp(38px, 11vw, 62px);
  }

  .lead,
  .market-copy > p,
  .final-copy > p {
    font-size: 17px;
  }

  .snap-track {
    display: flex;
    gap: 16px;
    margin-inline: calc(clamp(20px, 6vw, 34px) * -1);
    padding-inline: clamp(20px, 6vw, 34px);
    overflow-x: auto;
    scroll-padding-inline: clamp(20px, 6vw, 34px);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .snap-track::-webkit-scrollbar {
    display: none;
  }

  .snap-track > * {
    min-width: min(78vw, 420px);
    scroll-snap-align: start;
  }

  .snap-track > .stage-card {
    min-width: min(68vw, 310px);
  }

  .energy-line,
  .chain-track::before {
    display: none;
  }

  .glass-card,
  .stage-card,
  .pillar,
  .person-card,
  .region-card {
    border-radius: 8px;
  }

  .stage-card {
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.19);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
      rgba(8, 39, 48, 0.36);
  }

  .stage-content h3 {
    margin-top: 0;
  }

  .market-copy {
    width: min(620px, 100%);
    margin-top: 0;
    margin-left: auto;
    padding-inline: clamp(20px, 5vw, 30px);
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .market-copy h2,
  .market-copy > p,
  .stat strong,
  .stat span:last-child,
  .source-line {
    color: #12333d;
  }

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

  .stat {
    min-height: auto;
    padding: 18px 16px 0 0;
    border-top: 1px solid rgba(14, 63, 75, 0.2);
    border-left: 0;
  }

  .stat:nth-child(-n + 2) {
    padding-top: 0;
    border-top: 0;
  }

  .stat:nth-child(even) {
    padding-right: 0;
    padding-left: 16px;
    border-left: 1px solid rgba(14, 63, 75, 0.2);
  }

  .market-copy > .source-line {
    color: rgba(9, 38, 48, 0.58);
    font-size: 10px;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .impact-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .people-track > * {
    min-width: min(74vw, 360px);
  }

  .country-track > * {
    min-width: min(82vw, 360px);
  }

  .region-track {
    align-items: stretch;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer nav,
  .footer-legal {
    justify-content: start;
  }
}

@media (max-width: 540px) {
  .hero-pills span {
    min-height: 30px;
    font-size: 11px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .glass-card,
  .stage-card,
  .pillar,
  .person-card,
  .region-card,
  .country-card-copy {
    padding: 22px;
  }

  .stage-card {
    padding: 0;
  }

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

  .stat {
    padding-right: 0;
  }

  .stat strong {
    font-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Card heading + eyebrow normalisation (audit pass) ---------- */
.thesis-node h3,
.pillar h3,
.country-card-copy h3,
.stage-content h3:not(.investment-blade .stage-content h3) {
  font-size: var(--h3-card);
  line-height: 1.18;
}

.eyebrow {
  font-size: var(--eyebrow-size);
  letter-spacing: 0.18em;
}

/* Earlier collapse for image-heavy 2-col layouts so the copy isn't crushed */
@media (max-width: 1024px) {
  .platform-layout,
  .global-layout,
  .impact-layout {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vh, 56px);
  }
  .country-card {
    min-height: 420px;
  }
  .blade {
    min-height: auto;
    padding-block: clamp(112px, 14vh, 180px);
  }
}

/* Phone tightening */
@media (max-width: 540px) {
  .blade {
    padding-block: clamp(88px, 14vh, 140px);
  }
  .blade-art {
    opacity: 0.55;
  }
  .country-card {
    min-height: 380px;
  }
  .country-card img {
    width: 100%;
    opacity: 0.35;
  }
  .country-card::after {
    width: 100%;
    background: linear-gradient(180deg, rgba(2, 12, 18, 0.2) 0%, rgba(2, 12, 18, 0.75) 70%);
  }
  .country-card-copy {
    max-width: 100%;
  }
}
