@font-face {
  font-family: Manrope;
  src: url("/northvale/fonts/manrope-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("/northvale/fonts/manrope-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("/northvale/fonts/manrope-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("/northvale/fonts/manrope-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("/northvale/fonts/instrument-serif-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("/northvale/fonts/instrument-serif-latin-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #07151f;
  --navy: #0a2433;
  --paper: #f3f1ea;
  --mineral: #d9d7cf;
  --mist: #aab7b8;
  --blue: #135dff;
  --amber: #f2a33a;
  --line-light: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(7, 21, 31, 0.18);
  --pad: clamp(18px, 2.25vw, 36px);
  --display: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 0 var(--pad);
  color: var(--paper);
  border-bottom: 1px solid var(--line-light);
  transition: color 0.35s ease, background-color 0.35s ease, min-height 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  color: var(--ink);
  background: rgba(243, 241, 234, 0.94);
  border-color: var(--line-dark);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand svg {
  width: 32px;
  fill: currentColor;
}

.brand .brand-signal {
  fill: var(--blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

.menu-toggle {
  display: inline-grid;
  grid-template-columns: auto 28px;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  justify-self: end;
  column-gap: 14px;
  width: 100px;
  height: 40px;
  padding: 0 13px;
  border: 1px solid currentColor;
  border-radius: 30px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  grid-row: 1 / 3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-of-type {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px var(--pad) 40px;
  background: var(--blue);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.4);
  font-family: var(--display);
  font-size: clamp(42px, 12vw, 74px);
  line-height: .95;
}

.mobile-menu a span {
  font-family: var(--sans);
  font-size: 11px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-content: start;
  min-height: 100svh;
  overflow: hidden;
  padding: 112px var(--pad) 28px;
  background: var(--ink);
}

.hero-grid,
.careers-grid {
  position: absolute;
  z-index: 2;
  inset: 0 var(--pad);
  background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(255,255,255,.08) 1px);
  background-size: calc(100% / 12) 100%;
  pointer-events: none;
}

.hero-kicker {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-kicker span:nth-child(2) {
  text-align: center;
}

.hero-kicker span:last-child {
  text-align: right;
}

.hero-title {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  margin: clamp(64px, 10vh, 104px) 0 0;
  font-family: var(--sans);
  font-size: clamp(66px, 9.3vw, 150px);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.07em;
}

.hero-title span {
  display: block;
}

.hero-title span:last-child {
  padding-left: 8.1vw;
}

.hero-title em {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,21,31,.54) 0%, rgba(7,21,31,.12) 72%),
    linear-gradient(180deg, rgba(7,21,31,.69) 0%, rgba(7,21,31,.18) 46%, rgba(7,21,31,.8) 100%);
  content: "";
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  scale: 1.015;
}

.hero-bottom {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  margin-top: auto;
}

.hero-bottom p {
  grid-column: 1 / 5;
  max-width: 430px;
  margin: 0;
  color: rgba(243,241,234,.76);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
}

.circle-link {
  display: flex;
  grid-column: 11 / 13;
  align-items: center;
  justify-content: space-between;
  width: 136px;
  height: 136px;
  justify-self: end;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.circle-link:hover {
  color: var(--ink);
  background: var(--paper);
  transform: rotate(5deg);
}

.circle-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.route-line {
  position: absolute;
  z-index: 4;
  top: 0;
  right: clamp(48px, 6vw, 100px);
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.15);
}

.route-line span {
  position: absolute;
  top: 0;
  width: 100%;
  height: var(--hero-progress, 35%);
  background: var(--blue);
}

.route-line i {
  position: absolute;
  top: var(--hero-progress, 35%);
  left: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 0 24px var(--blue);
  transform: translate(-50%, -50%);
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.glance {
  padding: clamp(100px, 12vw, 184px) var(--pad) 46px;
}

.section-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 0;
}

.eyebrow {
  display: flex;
  grid-column: 1 / 4;
  justify-content: space-between;
  max-width: 270px;
  margin: 10px 0 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--blue);
}

.section-head h2 {
  grid-column: 4 / 10;
  margin: 0;
  font-size: clamp(54px, 6.6vw, 104px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.065em;
}

.section-head h2 em,
.careers h2 em {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.035em;
}

.section-head > p:last-child {
  grid-column: 10 / 13;
  align-self: end;
  max-width: 330px;
  margin: 0 0 4px;
  color: rgba(7,21,31,.68);
  font-size: 13px;
  line-height: 1.55;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(90px, 11vw, 170px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.stat {
  min-height: 340px;
  padding: 17px 18px 26px 0;
  border-right: 1px solid var(--line-dark);
}

.stat:not(:first-child) {
  padding-left: 18px;
}

.stat:last-child {
  border-right: 0;
}

.stat-index {
  display: block;
  color: rgba(7,21,31,.5);
  font-size: 10px;
  letter-spacing: .08em;
}

.stat strong {
  display: block;
  margin-top: 70px;
  font-size: clamp(70px, 7.8vw, 124px);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.08em;
}

.stat:nth-child(3) strong {
  font-size: clamp(54px, 6.3vw, 104px);
}

.stat:nth-child(4) strong {
  font-size: clamp(58px, 6.3vw, 104px);
}

.stat sup {
  margin-left: 4px;
  color: var(--blue);
  font-size: .28em;
  font-weight: 700;
  letter-spacing: -.02em;
  vertical-align: top;
}

.stat p {
  max-width: 220px;
  margin: 50px 0 0;
  color: rgba(7,21,31,.7);
  font-size: 11px;
  line-height: 1.55;
}

.glance-note {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  color: rgba(7,21,31,.45);
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.businesses {
  padding: clamp(96px, 8vw, 124px) var(--pad) 0;
  background: var(--ink);
}

.business-head {
  padding-bottom: clamp(52px, 5.5vw, 84px);
}

.business-head .eyebrow {
  color: rgba(243,241,234,.72);
}

.division {
  scroll-margin-top: 76px;
  border-top: 1px solid var(--line-light);
}

.division:last-child {
  border-bottom: 1px solid var(--line-light);
}

.division-trigger {
  display: grid;
  grid-template-columns: 1fr 5fr 2fr auto;
  align-items: center;
  width: 100%;
  min-height: 142px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.division-no,
.division-meta {
  color: rgba(243,241,234,.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.division-name {
  font-size: clamp(35px, 4.3vw, 70px);
  font-weight: 500;
  letter-spacing: -.06em;
  transition: color .3s ease, transform .3s ease;
}

.division-trigger:hover .division-name,
.division.is-active .division-name {
  color: var(--blue);
  transform: translateX(10px);
}

.division-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-size: 20px;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.division.is-active .division-icon {
  color: var(--ink);
  background: var(--paper);
  transform: rotate(90deg);
}

.division-panel {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .7s cubic-bezier(.2,.8,.2,1), opacity .5s ease, padding .7s ease;
}

.division.is-active .division-panel {
  max-height: 620px;
  padding: 8px 0 36px;
  opacity: 1;
}

.division-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 28px;
}

.division-copy p {
  max-width: 330px;
  margin: 0;
  color: rgba(243,241,234,.68);
  font-size: 14px;
  line-height: 1.6;
}

.division-copy a,
.news-content a,
.report-card a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.division-art {
  height: min(31vw, 430px);
  min-height: 330px;
  overflow: hidden;
}

.division-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}

.division:hover .division-art img {
  transform: scale(1.025);
}

.ports-art img { object-position: center 54%; }
.energy-art img { object-position: center 60%; }
.water-art img { object-position: center 57%; }

.noise {
  filter: url(#grain);
  opacity: .15;
}

.transition {
  position: relative;
  height: auto;
  color: var(--paper);
  background: var(--navy);
}

.transition-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .18;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.transition-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(10,36,51,.6) 55%, rgba(10,36,51,.18));
  content: "";
}

.transition-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.transition-sticky {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: max(760px, 100svh);
  overflow: hidden;
  padding: 106px var(--pad) 28px;
}

.transition-head .eyebrow {
  color: rgba(243,241,234,.7);
}

.transition-head > div {
  display: flex;
  grid-column: 4 / 13;
  align-items: end;
  justify-content: space-between;
}

.transition-head h2 {
  margin: 0;
  font-size: clamp(48px, 5.5vw, 86px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.06em;
}

.transition-head h2 em {
  color: var(--amber);
  font-family: var(--display);
  font-weight: 400;
}

.transition-head > div > p {
  max-width: 310px;
  margin: 0;
  color: rgba(243,241,234,.62);
  font-size: 12px;
}

.roadmap {
  position: relative;
  display: flex;
  gap: 0;
  width: calc(100vw - (var(--pad) * 2));
  margin-top: auto;
  padding-left: 0;
  transform: translate3d(var(--road-x, 0),0,0);
  transition: transform .08s linear;
}

.roadmap-line {
  position: absolute;
  top: 54px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255,255,255,.22);
}

.roadmap-line span {
  display: block;
  width: var(--road-progress, 0%);
  height: 2px;
  background: var(--blue);
  transform: translateY(-.5px);
}

.milestone {
  position: relative;
  width: 25%;
  min-width: 0;
  opacity: .36;
  transition: opacity .35s ease;
}

.milestone.is-current {
  opacity: 1;
}

.milestone .milestone-period {
  display: block;
  margin-bottom: 25px;
  color: var(--paper);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1;
  text-transform: none;
}

.milestone > i {
  position: absolute;
  top: 48px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--mist);
  box-shadow: 0 0 0 1px rgba(255,255,255,.5);
}

.milestone.is-current > i {
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 0 22px rgba(19,93,255,.8);
}

.milestone > div {
  min-height: 235px;
  padding: 38px 30px 30px;
  border-left: 1px solid var(--line-light);
}

.milestone > div > span {
  display: block;
  margin-bottom: 54px;
  color: var(--amber);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.milestone h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.milestone p {
  max-width: 300px;
  margin: 18px 0 0;
  color: rgba(243,241,234,.6);
  font-size: 11px;
}

.roadmap-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
  color: rgba(243,241,234,.5);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.roadmap-footer strong {
  color: var(--paper);
  font-size: 14px;
}

.investors {
  padding: clamp(100px, 12vw, 180px) var(--pad);
}

.investor-head {
  margin-bottom: clamp(75px, 9vw, 130px);
}

.market-strip {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 2.4fr 1fr;
  align-items: stretch;
  min-height: 128px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.market-strip > * {
  padding: 24px 18px;
  border-right: 1px solid var(--line-dark);
}

.market-strip > :first-child {
  padding-left: 0;
}

.market-strip > :last-child {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  padding-right: 0;
  border: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.market-strip div:not(.spark) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.market-strip span {
  color: rgba(7,21,31,.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.market-strip strong {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.04em;
}

.market-strip .up {
  color: var(--blue);
}

.spark svg {
  width: 100%;
  height: 100%;
}

.spark path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.feature-news {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.news-visual {
  position: absolute;
  inset: 0;
}

.news-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,21,31,.97), transparent 60%);
  content: "";
}

.news-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
}

.feature-news:hover .news-visual img {
  transform: scale(1.03);
}

.news-content {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 24px;
  left: 30px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  margin: 0 0 22px;
  color: rgba(243,241,234,.6);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.news-content h3 {
  max-width: 720px;
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 65px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}

.news-list {
  display: grid;
  grid-template-rows: auto auto 1fr;
  border-top: 1px solid var(--line-dark);
}

.news-item {
  position: relative;
  min-height: 180px;
  padding: 22px 60px 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.news-item .news-meta {
  color: rgba(7,21,31,.5);
}

.news-item h3 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.news-item > a {
  position: absolute;
  right: 5px;
  bottom: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transition: color .3s ease, background .3s ease;
}

.news-item:hover > a {
  color: var(--paper);
  background: var(--blue);
}

.report-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
  padding: 24px;
  color: var(--paper);
  background: var(--blue);
}

.report-card > div {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.report-card h3 {
  margin: auto 0 0;
  font-family: var(--display);
  font-size: 43px;
  font-weight: 400;
}

.report-card p {
  max-width: 390px;
  margin: 8px 0 20px;
  font-size: 11px;
}

.careers {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  padding: clamp(100px, 11vw, 170px) var(--pad) 58px;
  background: var(--ink);
}

.careers::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(19,93,255,.96) 0%, rgba(19,93,255,.91) 47%, rgba(7,21,31,.34) 100%);
  content: "";
}

.careers-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.careers-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.careers .eyebrow span {
  color: var(--paper);
}

.careers > .eyebrow {
  position: relative;
  z-index: 3;
}

.careers-main {
  position: relative;
  z-index: 3;
  margin: clamp(90px, 12vh, 150px) 0 0 25%;
}

.careers h2 {
  margin: 0;
  font-size: clamp(58px, 8.2vw, 130px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.07em;
}

.careers-main > p {
  max-width: 390px;
  margin: 45px 0 0;
  font-size: 14px;
}

.pill-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 250px;
  margin-top: 38px;
  padding: 16px 18px;
  color: var(--ink);
  border-radius: 30px;
  background: var(--paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .3s ease;
}

.pill-link:hover {
  transform: translateX(8px);
}

.orbit-word {
  position: absolute;
  z-index: 3;
  right: -84px;
  bottom: -86px;
  width: min(36vw, 520px);
  color: rgba(7,21,31,.4);
  animation: orbit 28s linear infinite;
}

.orbit-word svg {
  width: 100%;
  overflow: visible;
  fill: currentColor;
}

.orbit-word text {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 4px;
}

.orbit-word circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

@keyframes orbit { to { transform: rotate(360deg); } }

.footer {
  padding: 70px var(--pad) 24px;
  color: var(--paper);
  background: var(--ink);
}

.prototype-gate {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 24px;
  padding: 72px var(--pad);
  color: var(--paper);
  background: var(--blue);
}

.prototype-gate .eyebrow { margin: 0; }
.prototype-gate > div { max-width: 760px; }
.prototype-gate h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: .95;
}
.prototype-gate p:not(.eyebrow) { max-width: 620px; margin: 26px 0; line-height: 1.65; }
.prototype-gate a { display: inline-flex; gap: 28px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: start;
  padding-bottom: 75px;
  border-bottom: 1px solid var(--line-light);
}

.footer-top > p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 62px);
  line-height: .95;
}

.footer-top > a:last-child {
  justify-self: end;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-light);
  font-size: 11px;
}

.offices {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 48px 0 76px;
  border-bottom: 1px solid var(--line-light);
}

.offices > div {
  min-height: 120px;
  padding-left: 20px;
  border-left: 1px solid var(--line-light);
}

.offices > div:first-child {
  padding-left: 0;
  border: 0;
}

.offices span {
  color: var(--amber);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offices p {
  margin: 28px 0 0;
  color: rgba(243,241,234,.6);
  font-size: 11px;
  line-height: 1.7;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  padding-top: 22px;
  color: rgba(243,241,234,.42);
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.footer-study {
  text-align: right;
}

.zedech-credit {
  color: var(--paper);
  text-align: right;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}

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

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; min-height: 72px; }
  .menu-toggle { grid-column: 2; }
  .hero { padding-top: 96px; min-height: 780px; }
  .hero-title { font-size: clamp(57px, 11vw, 92px); }
  .hero-title span:last-child { padding-left: 0; }
  .hero-bottom p { grid-column: 1 / 7; }
  .circle-link { grid-column: 10 / 13; }
  .section-head h2 { grid-column: 4 / 13; }
  .section-head > p:last-child { grid-column: 4 / 9; margin-top: 38px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .division-trigger { grid-template-columns: 1fr 4fr 2fr auto; }
  .division-panel { grid-template-columns: 1fr 2fr; }
  .transition-head > div { flex-direction: column; align-items: start; gap: 26px; }
  .market-strip { grid-template-columns: 1fr 1fr 2fr; }
  .market-strip > a { display: none; }
  .news-grid { grid-template-columns: 1.25fr 1fr; }
  .offices { grid-template-columns: repeat(3, 1fr); gap: 30px 0; }
  .offices > div:nth-child(4) { padding-left: 0; border-left: 0; }
}

@media (max-width: 640px) {
  :root { --pad: 18px; }
  body { font-size: 14px; }
  .site-header { min-height: 66px; }
  .site-header.is-scrolled { min-height: 58px; }
  .brand svg { width: 28px; }
  .menu-toggle {
    grid-template-columns: auto 24px;
    width: 96px;
    height: 36px;
    padding: 0 12px;
    column-gap: 10px;
  }
  .hero { display: block; min-height: 760px; height: 100svh; padding-top: 84px; }
  .hero-grid, .careers-grid { background-size: 25% 100%; }
  .hero-kicker { display: flex; justify-content: space-between; }
  .hero-kicker span:nth-child(2) { display: none; }
  .hero-title { margin-top: 78px; font-size: clamp(54px, 15.7vw, 68px); line-height: .87; letter-spacing: -.072em; }
  .hero-title span { display: inline; }
  .hero-title em { display: block; }
  .hero-visual { height: auto; }
  .hero-visual::before {
    background:
      linear-gradient(90deg, rgba(7,21,31,.55), rgba(7,21,31,.12)),
      linear-gradient(180deg, rgba(7,21,31,.8) 0%, rgba(7,21,31,.22) 50%, rgba(7,21,31,.88) 100%);
  }
  .hero-visual img { object-position: 57% center; }
  .hero-bottom { position: absolute; right: var(--pad); bottom: 22px; left: var(--pad); display: flex; align-items: end; justify-content: space-between; }
  .hero-bottom p { max-width: 240px; font-size: 11px; }
  .circle-link { width: 94px; height: 94px; padding: 0 12px; font-size: 8px; }
  .circle-link svg { width: 16px; }
  .route-line { right: 22px; opacity: .65; }
  .glance { padding-top: 100px; }
  .section-head { display: block; }
  .eyebrow { max-width: none; margin: 0 0 54px; }
  .section-head h2 { font-size: 52px; line-height: .9; }
  .section-head > p:last-child { max-width: 280px; margin: 35px 0 0 25%; font-size: 12px; }
  .stats-grid { margin-top: 78px; }
  .stat { min-height: 235px; padding: 12px 12px 18px 0; }
  .stat:not(:first-child) { padding-left: 12px; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat strong { margin-top: 42px; font-size: 58px; }
  .stat p { margin-top: 35px; font-size: 9px; }
  .glance-note { display: block; line-height: 1.8; }
  .glance-note span { display: block; }
  .businesses { padding-top: 100px; }
  .business-head { padding-bottom: 75px; }
  .division-trigger { grid-template-columns: 46px 1fr auto; min-height: 100px; }
  .division-no { font-size: 8px; }
  .division-name { font-size: 30px; }
  .division-meta { display: none; }
  .division-icon { width: 40px; height: 40px; font-size: 15px; }
  .division-panel { display: flex; flex-direction: column-reverse; gap: 24px; }
  .division.is-active .division-panel { max-height: 650px; padding-bottom: 26px; }
  .division-art { height: 250px; min-height: 250px; }
  .division-art img { width: 100%; transform: none; }
  .division:hover .division-art img { transform: scale(1.025); }
  .division-copy { padding: 0; }
  .division-copy a { margin-top: 28px; }
  .transition { height: auto; }
  .transition-sticky { position: relative; height: auto; min-height: 0; padding: 100px var(--pad) 45px; }
  .transition-head > div { display: block; }
  .transition-head h2 { font-size: 49px; }
  .transition-head > div > p { margin-top: 28px; }
  .roadmap { display: block; width: 100%; margin-top: 78px; padding: 0; transform: none !important; }
  .roadmap-line { top: 0; bottom: 0; left: 12px; width: 1px; height: auto; }
  .roadmap-line span { width: 2px; height: 100%; }
  .milestone { width: auto; min-width: 0; margin-bottom: 58px; padding-left: 42px; opacity: 1; }
  .milestone time { margin: 0 0 18px; font-size: 28px; }
  .milestone > i { top: 8px; left: 6px; }
  .milestone > div { min-height: 0; padding: 0; border: 0; }
  .milestone span { margin-bottom: 18px; }
  .milestone h3 { font-size: 32px; }
  .roadmap-footer { display: none; }
  .investors { padding-top: 100px; }
  .investor-head { margin-bottom: 70px; }
  .market-strip { grid-template-columns: 1fr 1fr; min-height: 110px; }
  .market-strip .spark { display: none; }
  .market-strip > :nth-child(2) { padding-right: 0; border-right: 0; }
  .market-strip strong { font-size: 22px; }
  .news-grid { display: block; }
  .feature-news { min-height: 540px; }
  .news-content { right: 20px; bottom: 18px; left: 20px; }
  .news-content h3 { font-size: 39px; }
  .news-list { margin-top: 42px; }
  .report-card { margin-top: 20px; }
  .careers { min-height: 760px; padding-top: 98px; }
  .careers::before { background: linear-gradient(180deg, rgba(19,93,255,.97) 0%, rgba(19,93,255,.88) 54%, rgba(7,21,31,.38) 100%); }
  .careers-photo img { object-position: 52% center; }
  .careers-main { margin: 115px 0 0; }
  .careers h2 { font-size: 61px; line-height: .86; }
  .careers-main > p { max-width: 290px; font-size: 12px; }
  .orbit-word { right: -105px; bottom: -66px; width: 330px; }
  .footer { padding-top: 60px; }
  .prototype-gate { display: block; padding-top: 64px; padding-bottom: 64px; }
  .prototype-gate .eyebrow { margin-bottom: 42px; }
  .footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 70px 20px; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; font-size: 43px; }
  .footer-top > a:last-child { justify-self: end; font-size: 9px; }
  .offices { grid-template-columns: 1fr 1fr; }
  .offices > div:nth-child(odd) { padding-left: 0; border-left: 0; }
  .offices > div:nth-child(4) { padding-left: 20px; border-left: 1px solid var(--line-light); }
  .footer-bottom { display: flex; flex-direction: column; gap: 20px; }
  .footer-bottom div { justify-content: flex-start; }
  .footer-study, .zedech-credit { text-align: left; }
}

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

/* Keep captions readable without changing the source layout's hierarchy. */
.hero-kicker,
.eyebrow,
.division-no,
.division-meta,
.news-meta,
.market-strip span,
.offices span,
.footer-bottom,
.glance-note {
  font-size: 12px;
}

.hero-bottom p,
.section-head > p:last-child,
.stat p,
.division-copy p,
.transition-head p,
.milestone p,
.report-card p,
.careers-main p,
.offices p {
  font-size: 14px;
}

@media (max-width: 640px) {
  .hero-kicker { font-size: 10px; }
  .stat:nth-child(3) strong { font-size: 45px; }
  .stat:nth-child(4) strong { font-size: 50px; }
}
