:root {
  --paper: #f8faff;
  --paper-bright: #ffffff;
  --ink: #10194a;
  --ink-soft: #3f486f;
  --cobalt: #3d4ed7;
  --cobalt-deep: #26349e;
  --blue: #6386ee;
  --ice: #e8efff;
  --ice-2: #dbe6ff;
  --amber: #ffb938;
  --mint: #50d7c9;
  --line: rgba(42, 58, 143, 0.14);
  --line-strong: rgba(42, 58, 143, 0.24);
  --shadow: 0 24px 80px rgba(42, 58, 143, 0.12);
  --shell: min(1240px, calc(100vw - 64px));
  --display: "Syne", sans-serif;
  --body: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--cobalt);
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 130px 0;
}

.ambient,
.page-grid {
  position: fixed;
  z-index: -2;
  pointer-events: none;
}

.ambient {
  width: 40vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .23;
}

.ambient-one {
  top: -18vw;
  right: -10vw;
  background: var(--blue);
}

.ambient-two {
  bottom: -22vw;
  left: -14vw;
  background: var(--mint);
  opacity: .12;
}

.page-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(38, 52, 158, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 52, 158, .028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 250, 255, .88);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(27, 42, 122, .06);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-shell {
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 162px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}

.desktop-nav a::after {
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transition: right .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.nav-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-self: end;
  width: 184px;
  padding: 11px 15px;
  color: #fff;
  border: 1px solid var(--cobalt);
  border-radius: 4px;
  background: var(--cobalt);
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.nav-cta:hover {
  background: var(--cobalt-deep);
  box-shadow: 0 12px 28px rgba(61, 78, 215, .2);
  transform: translateY(-2px);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  padding-top: 84px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .52;
}

.hero::before {
  position: absolute;
  inset: 84px 0 0;
  background:
    radial-gradient(circle at 72% 45%, rgba(99, 134, 238, .18), transparent 27%),
    linear-gradient(90deg, rgba(248, 250, 255, .97) 0%, rgba(248, 250, 255, .77) 47%, rgba(248, 250, 255, .35) 100%);
  content: "";
  pointer-events: none;
}

.hero-beam {
  position: absolute;
  top: 12%;
  right: -13%;
  width: 62%;
  height: 86%;
  background: linear-gradient(100deg, transparent 22%, rgba(100, 131, 242, .03) 43%, rgba(100, 131, 242, .16) 70%, transparent 91%);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  filter: blur(2px);
  transform-origin: 0 50%;
  animation: beam-scan 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes beam-scan {
  from { transform: rotate(-7deg); opacity: .4; }
  to { transform: rotate(8deg); opacity: .9; }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  min-height: 720px;
  padding: 70px 0 80px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.eyebrow,
.section-marker,
.card-number,
.leader-role,
.system-label,
.system-status {
  font-family: var(--mono);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  background: var(--amber);
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(62px, 6.3vw, 100px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .93;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--cobalt-deep), var(--blue) 70%, var(--cobalt));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-intro {
  max-width: 660px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  min-width: 268px;
  color: #fff;
  border-color: var(--cobalt);
  background: var(--cobalt);
  box-shadow: 0 14px 36px rgba(61, 78, 215, .18);
}

.button-primary:hover {
  background: var(--cobalt-deep);
  box-shadow: 0 18px 42px rgba(61, 78, 215, .28);
}

.button-quiet {
  min-width: 220px;
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(10px);
}

.button-quiet:hover {
  border-color: var(--cobalt);
  background: #fff;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.hero-proof div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
}

.hero-proof span {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.hero-system {
  position: relative;
  justify-self: end;
  width: min(500px, 39vw);
  aspect-ratio: 1;
  border: 1px solid rgba(61, 78, 215, .16);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .95) 0 17%, rgba(232, 239, 255, .65) 18% 40%, rgba(255, 255, 255, .24) 41% 62%, transparent 63%),
    repeating-radial-gradient(circle at center, transparent 0 48px, rgba(61, 78, 215, .08) 49px 50px);
  box-shadow: inset 0 0 80px rgba(61, 78, 215, .08), 0 34px 100px rgba(61, 78, 215, .09);
}

.hero-system::before,
.hero-system::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(61, 78, 215, .1);
  content: "";
  transform: translate(-50%, -50%);
}

.hero-system::before {
  width: 112%;
  height: 1px;
}

.hero-system::after {
  width: 1px;
  height: 112%;
}

.system-orbit {
  position: absolute;
  border: 1px dashed rgba(61, 78, 215, .28);
  border-radius: 50%;
}

.orbit-outer {
  inset: 5%;
  animation: orbit 34s linear infinite;
}

.orbit-inner {
  inset: 24%;
  animation: orbit 20s linear infinite reverse;
}

@keyframes orbit {
  to { transform: rotate(1turn); }
}

.orbit-node {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 6px rgba(61, 78, 215, .1), 0 0 24px rgba(61, 78, 215, .55);
}

.node-one { top: 13%; right: 12%; }
.node-two { right: 0; bottom: 28%; background: var(--amber); }
.node-three { bottom: 9%; left: 22%; background: var(--mint); }

.system-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 154px;
  aspect-ratio: 1;
  border: 1px solid rgba(61, 78, 215, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 60px rgba(61, 78, 215, .16);
  transform: translate(-50%, -50%);
}

.system-core img {
  width: 48px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 2px;
}

.system-core span {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.system-core small {
  margin-top: 4px;
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
}

.system-label {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 30px rgba(61, 78, 215, .08);
  backdrop-filter: blur(10px);
  font-size: 8px;
  letter-spacing: .08em;
  white-space: nowrap;
}

.system-label span {
  color: var(--cobalt);
}

.label-strategy { top: 8%; left: 1%; }
.label-build { top: 28%; right: -8%; }
.label-market { right: -2%; bottom: 15%; }
.label-scale { bottom: 7%; left: 5%; }

.system-status {
  position: absolute;
  bottom: -44px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 8px;
  letter-spacing: .08em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.system-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: .35; transform: scale(.72); }
}

.signal-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  padding: 15px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .58);
  backdrop-filter: blur(12px);
}

.signal-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.signal-track span {
  padding: 0 28px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
}

.signal-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.manifesto {
  background: var(--paper-bright);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: .13em;
}

.section-marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--cobalt);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  letter-spacing: 0;
}

.manifesto-copy {
  max-width: 900px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.manifesto h2,
.section-heading h2,
.approach h2,
.global-copy h2,
.leadership h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.manifesto h2 {
  max-width: 960px;
  font-size: clamp(40px, 4.7vw, 68px);
}

.manifesto h2 em {
  color: var(--cobalt);
  font-style: normal;
}

.manifesto-copy > p:last-child {
  max-width: 720px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.capabilities {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f4f7ff 0%, var(--paper) 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.5fr .65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.section-heading .section-marker {
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(42px, 4.3vw, 64px);
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 16px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.capability-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 0 0 rgba(61, 78, 215, 0);
  transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.capability-card::before {
  position: absolute;
  top: -30%;
  right: -16%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(99, 134, 238, .08);
  filter: blur(5px);
  content: "";
  transition: transform .6s ease, background-color .6s ease;
}

.capability-card:hover {
  z-index: 2;
  border-color: rgba(61, 78, 215, .34);
  box-shadow: 0 30px 80px rgba(42, 58, 143, .13);
  transform: translateY(-8px);
}

.capability-card:hover::before {
  background: rgba(255, 185, 56, .13);
  transform: translate(-22%, 28%) scale(1.3);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-number {
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: .1em;
}

.card-signal {
  position: relative;
  width: 36px;
  height: 8px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.card-signal::after {
  position: absolute;
  top: -3px;
  left: 6px;
  width: 3px;
  height: 12px;
  background: var(--amber);
  content: "";
}

.card-icon {
  position: relative;
  width: 66px;
  height: 66px;
  margin: 44px 0 28px;
  border: 1px solid rgba(61, 78, 215, .23);
  border-radius: 50%;
  background: var(--ice);
}

.icon-compass::before,
.icon-compass::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--cobalt);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.icon-compass::before { width: 24px; height: 1px; }
.icon-compass::after { width: 1px; height: 24px; }
.icon-compass i {
  position: absolute;
  top: 11px;
  left: 31px;
  width: 5px;
  height: 22px;
  background: var(--amber);
  clip-path: polygon(50% 0, 100% 100%, 50% 75%, 0 100%);
}

.icon-flow::before,
.icon-flow::after,
.icon-flow i {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--cobalt);
  border-radius: 50%;
  background: #fff;
  content: "";
}

.icon-flow::before { top: 14px; left: 13px; }
.icon-flow::after { right: 13px; bottom: 14px; }
.icon-flow i { top: 13px; right: 14px; background: var(--amber); }
.icon-flow b {
  position: absolute;
  top: 21px;
  left: 21px;
  width: 28px;
  height: 24px;
  border-right: 1px solid var(--cobalt);
  border-bottom: 1px solid var(--cobalt);
  transform: skew(-20deg);
}

.icon-globe::before {
  position: absolute;
  inset: 13px;
  border: 1px solid var(--cobalt);
  border-radius: 50%;
  content: "";
}

.icon-globe::after {
  position: absolute;
  top: 32px;
  left: 12px;
  width: 42px;
  height: 1px;
  background: var(--cobalt);
  content: "";
}

.icon-globe i,
.icon-globe b {
  position: absolute;
  top: 14px;
  left: 28px;
  width: 10px;
  height: 36px;
  border-right: 1px solid var(--cobalt);
  border-left: 1px solid var(--cobalt);
  border-radius: 50%;
}

.icon-globe b {
  top: 9px;
  left: auto;
  right: 9px;
  width: 7px;
  height: 7px;
  border: 3px solid #fff;
  background: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
}

.icon-grid i,
.icon-grid b,
.icon-grid em,
.icon-grid::before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid var(--cobalt);
  background: rgba(255, 255, 255, .7);
  content: "";
}

.icon-grid i { top: 15px; left: 15px; }
.icon-grid b { top: 15px; right: 15px; background: rgba(255, 185, 56, .55); }
.icon-grid em { bottom: 15px; left: 15px; }
.icon-grid::before { right: 15px; bottom: 15px; }

.capability-card h3 {
  position: relative;
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.capability-card > p {
  position: relative;
  max-width: 500px;
  margin: 15px 0 20px;
  color: var(--ink-soft);
}

.capability-card ul {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.capability-card li {
  color: var(--ink-soft);
  font-size: 12px;
}

.capability-card li::before {
  margin-right: 10px;
  color: var(--cobalt);
  content: "↳";
}

.approach {
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    radial-gradient(circle at 15% 10%, rgba(99, 134, 238, .32), transparent 27%),
    #121b4d;
  background-size: 50px 50px, 50px 50px, auto, auto;
}

.approach::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 55%, rgba(84, 215, 201, .07));
  content: "";
}

.approach-shell {
  position: relative;
  z-index: 1;
}

.section-marker-light {
  color: rgba(255, 255, 255, .62);
}

.section-marker-light span {
  color: #fff;
  border-color: rgba(255, 255, 255, .24);
}

.approach-intro {
  display: grid;
  grid-template-columns: .75fr 1.65fr .8fr;
  align-items: start;
  gap: 60px;
}

.approach h2 {
  max-width: 610px;
  font-size: clamp(40px, 4.2vw, 62px);
}

.approach-intro > p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .63);
  font-size: 15px;
}

.approach-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  margin-top: 100px;
}

.route-line {
  position: absolute;
  top: 61px;
  right: 5%;
  left: 5%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .13);
}

.route-line span {
  display: block;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  animation: route-scan 4s ease-in-out infinite;
}

@keyframes route-scan {
  from { transform: translateX(-100%); }
  to { transform: translateX(450%); }
}

.route-step {
  position: relative;
  min-height: 270px;
  padding-top: 104px;
}

.step-index {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(255, 255, 255, .42);
  font-family: var(--mono);
  font-size: 10px;
}

.step-dot {
  position: absolute;
  top: 51px;
  left: 0;
  z-index: 2;
  width: 20px;
  height: 20px;
  border: 5px solid #18235b;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .24), 0 0 28px rgba(255, 185, 56, .35);
}

.route-step h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
}

.route-step p {
  min-height: 74px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .63);
  font-size: 13px;
}

.route-step small {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
}

.global {
  overflow: hidden;
  background: var(--paper-bright);
}

.global-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 100px;
}

.global-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 47%, rgba(99, 134, 238, .2), transparent 20%),
    linear-gradient(135deg, rgba(232, 239, 255, .8), rgba(255, 255, 255, .9));
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 78, 215, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 78, 215, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.global-visual::before,
.global-visual::after {
  position: absolute;
  border: 1px solid rgba(61, 78, 215, .13);
  border-radius: 50%;
  content: "";
}

.global-visual::before {
  top: 14%;
  left: 9%;
  width: 80%;
  aspect-ratio: 1;
}

.global-visual::after {
  top: 27%;
  left: 22%;
  width: 54%;
  aspect-ratio: 1;
}

.map-dot {
  position: absolute;
  z-index: 4;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 7px rgba(61, 78, 215, .12), 0 0 25px rgba(61, 78, 215, .45);
}

.dot-singapore { top: 62%; left: 67%; background: var(--amber); }
.dot-shanghai { top: 40%; left: 72%; }
.dot-sea { top: 69%; left: 55%; background: var(--mint); }
.dot-global { top: 36%; left: 19%; }

.map-route {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, var(--cobalt), var(--amber));
  transform-origin: 0 50%;
}

.map-route::after {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px var(--amber);
  content: "";
  animation: route-light 3s linear infinite;
}

@keyframes route-light {
  from { left: 0; }
  to { left: 100%; }
}

.route-a {
  top: 37%;
  left: 20%;
  width: 54%;
  transform: rotate(8deg);
}

.route-b {
  top: 42%;
  left: 71%;
  width: 24%;
  transform: rotate(98deg);
}

.route-c {
  top: 64%;
  left: 55%;
  width: 17%;
  transform: rotate(-18deg);
}

.map-label {
  position: absolute;
  color: rgba(38, 52, 158, .08);
  font-family: var(--display);
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -.06em;
}

.map-label-asia {
  right: -4px;
  bottom: 10%;
}

.map-label-global {
  top: 10%;
  left: -16px;
}

.map-readout {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 5;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 30px rgba(42, 58, 143, .08);
  backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: 10px;
}

.map-readout span {
  display: block;
  margin-bottom: 5px;
  color: var(--cobalt);
  font-size: 7px;
  letter-spacing: .1em;
}

.global-copy .section-marker {
  margin-bottom: 32px;
}

.global-copy h2 {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: clamp(43px, 4.3vw, 64px);
}

.global-copy > p:not(.kicker) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.global-points {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.global-points > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.global-points span {
  grid-row: span 2;
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 9px;
}

.global-points h3 {
  margin: -4px 0 6px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.global-points p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.experience {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #eef3ff;
}

.section-heading.compact {
  margin-bottom: 54px;
}

.experience-marquee {
  position: relative;
  left: 50%;
  width: 100vw;
  padding: 21px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .42);
  transform: translateX(-50%);
}

.experience-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite reverse;
}

.experience-track span {
  display: flex;
  align-items: center;
  color: var(--cobalt-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
}

.experience-track span::after {
  width: 5px;
  height: 5px;
  margin: 0 36px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 66px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-card {
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .55);
  transition: background-color .25s ease, transform .25s ease;
}

.trust-card:hover {
  z-index: 2;
  background: #fff;
  transform: translateY(-5px);
}

.trust-card > span {
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 9px;
}

.trust-card h3 {
  margin: 64px 0 14px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
}

.trust-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.leadership {
  background: var(--paper-bright);
}

.leadership-head {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 60px;
  margin-bottom: 66px;
}

.leadership h2 {
  font-size: clamp(44px, 4.4vw, 66px);
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.leader-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7f9ff;
}

.leader-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(61, 78, 215, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 78, 215, .075) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(99, 134, 238, .24), transparent 50%),
    #eff3ff;
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.leader-fisher .leader-visual {
  background:
    linear-gradient(rgba(61, 78, 215, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 78, 215, .075) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(80, 215, 201, .23), transparent 50%),
    #eff8f8;
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.leader-jason .leader-visual {
  background:
    linear-gradient(rgba(61, 78, 215, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 78, 215, .075) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(126, 103, 224, .24), transparent 50%),
    #f4f0ff;
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.leader-initials {
  position: relative;
  z-index: 2;
  color: transparent;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--display);
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -.09em;
}

.leader-fisher .leader-initials {
  background: linear-gradient(135deg, var(--ink), #36afa2);
  -webkit-background-clip: text;
  background-clip: text;
}

.leader-jason .leader-initials {
  background: linear-gradient(135deg, var(--ink), #7457d9);
  -webkit-background-clip: text;
  background-clip: text;
}

.leader-scan {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -20%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7), transparent);
  transform: rotate(18deg);
  animation: leader-scan 6s ease-in-out infinite;
}

@keyframes leader-scan {
  0%, 20% { left: -30%; }
  75%, 100% { left: 120%; }
}

.leader-visual small {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
}

.leader-copy {
  padding: 30px;
}

.leader-role {
  margin: 0 0 18px;
  color: var(--cobalt);
  font-size: 8px;
  letter-spacing: .1em;
}

.leader-copy h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.leader-copy > p:not(.leader-role) {
  min-height: 174px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}

.leader-tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: #fff;
  font-family: var(--mono);
  font-size: 8px;
}

.founder-statement {
  margin: 90px 0 0;
  padding: 70px 10%;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-statement p {
  max-width: 960px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.25;
}

.founder-statement cite {
  display: block;
  margin-top: 28px;
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  letter-spacing: .12em;
}

.contact {
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(99, 134, 238, .42), transparent 30%),
    linear-gradient(120deg, rgba(255, 255, 255, .03), transparent 50%),
    #111a49;
}

.contact::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black);
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 100px;
}

.contact-copy .section-marker {
  margin-bottom: 34px;
}

.contact h2 {
  max-width: 750px;
  font-size: clamp(48px, 5.4vw, 78px);
}

.contact-copy > p {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: 17px;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 98px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
}

.contact-link:hover {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .1);
  transform: translateX(5px);
}

.contact-email {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

.contact-email:hover {
  border-color: var(--amber);
  background: var(--amber);
}

.contact-link span {
  font-size: 15px;
  font-weight: 600;
}

.contact-link small {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
}

.contact-email small {
  color: var(--cobalt);
}

.contact-link b {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 400;
}

.site-footer {
  padding: 60px 0 32px;
  color: #fff;
  background: #0c1339;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.footer-brand {
  width: 172px;
}

.footer-top p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.35;
}

.footer-top > a:last-child {
  justify-self: end;
  color: rgba(255, 255, 255, .65);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.footer-top > a:last-child span {
  margin-left: 8px;
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  color: rgba(255, 255, 255, .4);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .05em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: #fff;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
}

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

.capability-card:nth-child(2),
.trust-card:nth-child(2),
.route-step:nth-of-type(3) {
  transition-delay: .08s;
}

.capability-card:nth-child(3),
.trust-card:nth-child(3),
.route-step:nth-of-type(4) {
  transition-delay: .16s;
}

.capability-card:nth-child(4),
.trust-card:nth-child(4),
.route-step:nth-of-type(5) {
  transition-delay: .24s;
}

.hero .reveal:nth-child(2) { transition-delay: .08s; }
.hero .reveal:nth-child(3) { transition-delay: .16s; }
.hero .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 44px, 980px);
  }

  .nav-shell {
    grid-template-columns: 160px 1fr 176px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero {
    min-height: 900px;
  }

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

  .hero-system {
    width: 39vw;
  }

  .hero h1 {
    font-size: clamp(58px, 7vw, 76px);
  }

  .global-grid {
    gap: 60px;
  }

  .approach-intro {
    grid-template-columns: .6fr 1.4fr .7fr;
    gap: 36px;
  }

  .contact-shell {
    gap: 60px;
  }

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

  .leader-robin {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100vw - 40px);
  }

  .section {
    padding: 96px 0;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
    min-height: 72px;
  }

  .brand {
    width: 145px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform .25s ease, width .25s ease;
  }

  .menu-button span:last-child {
    width: 16px;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    width: 24px;
    transform: translateY(3px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    width: 24px;
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(248, 250, 255, .97);
    box-shadow: 0 30px 50px rgba(27, 42, 122, .12);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 15px 3px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 17px;
  }

  .mobile-nav a:last-child {
    margin-top: 14px;
    padding: 13px 15px;
    color: #fff;
    border: 0;
    background: var(--cobalt);
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero::before {
    inset: 72px 0 0;
    background: linear-gradient(180deg, rgba(248, 250, 255, .95), rgba(248, 250, 255, .72));
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 0 120px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(55px, 12vw, 86px);
  }

  .hero-system {
    justify-self: center;
    width: min(520px, 84vw);
    margin-top: 100px;
  }

  .hero-proof {
    max-width: 100%;
  }

  .manifesto-grid,
  .section-heading,
  .approach-intro,
  .global-grid,
  .leadership-head,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .section-heading,
  .leadership-head {
    gap: 44px;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p {
    max-width: 560px;
  }

  .approach-intro {
    gap: 38px;
  }

  .approach-intro > p {
    max-width: 520px;
  }

  .approach-route {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .route-line {
    display: none;
  }

  .route-step {
    min-height: 230px;
    padding-top: 84px;
  }

  .step-dot {
    top: 40px;
  }

  .global-grid {
    gap: 80px;
  }

  .global-visual {
    min-height: 560px;
  }

  .global-copy {
    grid-row: 1;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leader-copy > p:not(.leader-role) {
    min-height: 180px;
  }

  .contact-shell {
    gap: 64px;
  }

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

  .leader-robin {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .section {
    padding: 78px 0;
  }

  .hero-layout {
    padding: 84px 0 110px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(51px, 16vw, 72px);
    line-height: .96;
  }

  .hero-intro {
    margin-top: 27px;
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-width: 0;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-proof div,
  .hero-proof div:first-child {
    padding: 0 0 0 15px;
    border-left: 1px solid var(--line);
  }

  .hero-system {
    width: min(390px, 88vw);
    margin-top: 84px;
  }

  .system-core {
    width: 120px;
  }

  .system-core img {
    width: 38px;
    height: 36px;
  }

  .system-label {
    padding: 6px 8px;
    font-size: 6px;
  }

  .label-strategy { left: -2%; }
  .label-build { right: -2%; }
  .label-market { right: 0; }
  .label-scale { left: 0; }

  .manifesto h2,
  .section-heading h2,
  .approach h2,
  .global-copy h2,
  .leadership h2 {
    font-size: 39px;
  }

  .manifesto-copy > p:last-child {
    font-size: 16px;
  }

  .capability-grid,
  .leader-grid,
  .approach-route,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
    padding: 24px;
  }

  .card-icon {
    margin: 36px 0 24px;
  }

  .approach-route {
    gap: 0;
    margin-top: 60px;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, .15);
  }

  .route-step {
    min-height: 0;
    padding: 30px 0 50px 30px;
  }

  .step-index {
    top: 0;
    left: 30px;
  }

  .step-dot {
    top: 33px;
    left: -34px;
  }

  .route-step p {
    min-height: 0;
  }

  .global-visual {
    min-height: 430px;
  }

  .map-label {
    font-size: 54px;
  }

  .trust-card {
    min-height: 220px;
  }

  .trust-card h3 {
    margin-top: 48px;
  }

  .leader-copy {
    padding: 26px;
  }

  .leader-copy > p:not(.leader-role) {
    min-height: 0;
  }

  .leader-visual {
    min-height: 220px;
  }

  .founder-statement {
    margin-top: 62px;
    padding: 54px 0;
  }

  .contact h2 {
    font-size: 46px;
  }

  .contact-link {
    min-height: 90px;
    padding: 18px;
  }

  .contact-link span {
    font-size: 13px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-top > a:last-child {
    justify-self: start;
  }

  .footer-bottom,
  .footer-bottom div {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

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