@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-latin-variable-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-latin-variable-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin-variable-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #07111f;
  --ink-soft: #101d31;
  --ink-lift: #18263b;
  --porcelain: #f1f0ea;
  --paper: #f8f7f3;
  --cobalt: #2855f5;
  --cobalt-dark: #1739b8;
  --cyan: #72d9ff;
  --gold: #b39a68;
  --mist: #a9b4c2;
  --slate: #5e6978;
  --line-dark: rgba(7, 17, 31, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --font-display: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
  --container: 1440px;
  --gutter: clamp(22px, 4vw, 68px);
  --section-space: clamp(96px, 11vw, 180px);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

:focus-visible {
  outline: 3px solid var(--cobalt-dark);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px var(--white);
}

:where(.site-header, .hero, .section-focus, .platform-card, .section-hong-kong, .site-footer, .utility-header)
  :focus-visible {
  outline-color: var(--cyan);
  box-shadow: 0 0 0 2px var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(56px, 7vw, 104px);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.section-heading-light {
  border-bottom-color: var(--line-light);
}

.eyebrow,
.section-index,
.official-strip,
.system-visual-topline,
.system-visual-legend,
.focus-card-kicker,
.focus-card-footer,
.model-step-num,
.model-step-output,
.platform-card-meta,
.provenance-label,
.investhk-card-label,
.footer-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow,
.section-index {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.eyebrow-dark {
  color: var(--cobalt-dark);
}

.section-heading:not(.section-heading-light) .section-index {
  color: var(--slate);
}

.section-title {
  max-width: 850px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-title-light {
  color: var(--white);
}

.section-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: #3e4958;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.section-copy-light {
  color: rgba(255, 255, 255, 0.7);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s var(--ease);
}

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

.button-primary {
  background: var(--cobalt);
  color: var(--white);
}

.button-primary:hover {
  background: #3966ff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--cobalt-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--cobalt);
}

.text-link-light {
  color: var(--cyan);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    height 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  height: 72px;
  border-bottom-color: rgba(255, 255, 255, 0.09);
  background: rgba(7, 17, 31, 0.93);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(18px);
}

.site-header.menu-visible {
  backdrop-filter: none;
}

.header-inner {
  display: grid;
  width: min(100%, var(--container));
  height: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand-lockup {
  width: 259px;
  height: auto;
  flex: 0 0 auto;
  shape-rendering: geometricPrecision;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 38px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: color 0.2s ease;
}

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

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.header-cta:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

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

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

.mobile-menu {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(7, 17, 31, 0.98) 15%, rgba(7, 17, 31, 0.89) 62%, rgba(9, 20, 37, 0.96)),
    var(--ink);
  color: var(--white);
}

.hero-grid,
.hong-kong-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 92%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.hero-glow-one {
  top: -18vw;
  right: -16vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(40, 85, 245, 0.2), transparent 68%);
}

.hero-glow-two {
  bottom: -32vw;
  left: 12vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(114, 217, 255, 0.08), transparent 67%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(150px, 13vw, 198px);
  padding-bottom: 28px;
}

.official-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 46px;
  margin-bottom: clamp(54px, 6vw, 88px);
  padding: 10px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.74);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.official-strip:hover {
  border-color: rgba(114, 217, 255, 0.6);
  color: var(--white);
}

.official-strip-label {
  color: var(--cyan);
}

.official-strip-copy {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.015em;
  text-transform: none;
}

.official-strip-arrow {
  color: var(--white);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
}

.hero-copy .eyebrow {
  margin-bottom: 26px;
}

.hero-title {
  max-width: 930px;
  margin-bottom: 36px;
  font-family: var(--font-display);
  font-size: clamp(67px, 8.4vw, 136px);
  font-weight: 350;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.hero-title span {
  display: block;
  color: var(--cyan);
  font-style: italic;
  font-weight: 400;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.6;
}

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

.system-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 590px;
  padding: 18px;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 40px 120px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease-out;
  backdrop-filter: blur(10px);
}

.system-visual::before,
.system-visual::after {
  position: absolute;
  width: 22px;
  height: 22px;
  content: "";
}

.system-visual::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}

.system-visual::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.system-visual-topline,
.system-visual-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.64);
}

.system-map {
  width: 100%;
  max-height: 500px;
  margin-block: 8px;
  overflow: visible;
}

.map-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.085);
  stroke-width: 1;
}

.map-ring-mid {
  stroke-dasharray: 2 7;
}

.map-ring-inner {
  stroke: rgba(114, 217, 255, 0.15);
}

.map-route,
.map-output {
  fill: none;
  stroke: url(#cobaltLine);
  stroke-dasharray: 7 8;
  stroke-linecap: round;
  stroke-width: 1.5;
  animation: route-flow 14s linear infinite;
}

.route-two {
  animation-direction: reverse;
  animation-duration: 18s;
}

.route-three {
  animation-duration: 22s;
}

.map-output {
  stroke: var(--gold);
  stroke-width: 2;
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -180;
  }
}

.map-node > circle:first-child {
  fill: var(--cyan);
  filter: drop-shadow(0 0 7px rgba(114, 217, 255, 0.7));
}

.node-venture > circle:first-child,
.node-capital > circle:first-child {
  fill: var(--cobalt);
}

.node-industry > circle:first-child {
  fill: var(--gold);
}

.node-pulse {
  fill: none;
  stroke: rgba(114, 217, 255, 0.34);
  stroke-width: 1;
  transform-origin: center;
  animation: node-pulse 3.6s ease-out infinite;
}

.node-venture .node-pulse {
  animation-delay: 0.9s;
}

.node-capital .node-pulse {
  animation-delay: 1.8s;
}

.node-industry .node-pulse {
  animation-delay: 2.7s;
  stroke: rgba(179, 154, 104, 0.48);
}

@keyframes node-pulse {
  0%,
  34% {
    transform: scale(0.48);
    opacity: 1;
  }
  76%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.map-core > rect {
  fill: rgba(7, 17, 31, 0.88);
  stroke: rgba(114, 217, 255, 0.8);
  stroke-width: 1.2;
}

.map-core-mark {
  opacity: 0.96;
}

.map-label,
.map-caption {
  fill: rgba(255, 255, 255, 0.74);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.map-label-output {
  fill: var(--gold);
}

.map-caption {
  fill: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.system-visual-legend {
  justify-content: flex-start;
  gap: 22px;
}

.system-visual-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.legend-dot-cyan {
  background: var(--cyan);
}

.legend-dot-blue {
  background: var(--cobalt);
}

.legend-dot-gold {
  background: var(--gold);
}

.hero-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--line-light);
}

.hero-foot span {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-foot span + span {
  padding-left: 24px;
  border-left: 1px solid var(--line-light);
}

/* Thesis */

.section-thesis {
  background: var(--porcelain);
}

.thesis-statement {
  max-width: 1220px;
  margin-bottom: clamp(70px, 9vw, 136px);
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 350;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.thesis-statement em {
  color: var(--cobalt);
  font-weight: 400;
}

.thesis-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(56px, 9vw, 150px);
}

.thesis-lede {
  max-width: 470px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.8vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.thesis-points {
  border-top: 1px solid var(--ink);
}

.thesis-point {
  display: grid;
  grid-template-columns: minmax(145px, 0.42fr) 1fr;
  gap: 36px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line-dark);
}

.thesis-point span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.thesis-point p {
  max-width: 560px;
  margin-bottom: 0;
  color: #4b5665;
  font-size: 16px;
}

/* Focus */

.section-focus {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(40, 85, 245, 0.1), transparent 28%),
    var(--ink);
  color: var(--white);
}

.section-focus::before {
  position: absolute;
  top: 0;
  right: 12%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  content: "";
}

.focus-intro,
.model-intro,
.platforms-intro,
.partnership-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: end;
  gap: clamp(48px, 7vw, 120px);
  margin-bottom: clamp(64px, 8vw, 112px);
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.focus-card {
  position: relative;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  padding: 32px clamp(24px, 3vw, 44px);
  overflow: hidden;
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

.focus-card + .focus-card {
  border-left: 1px solid var(--line-light);
}

.focus-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), var(--cobalt), var(--gold));
  content: "";
  transition: transform 0.4s var(--ease);
}

.focus-card:hover,
.focus-card:focus-visible {
  background: rgba(255, 255, 255, 0.055);
}

.focus-card:hover::before,
.focus-card:focus-visible::before {
  transform: scaleX(1);
}

.focus-card-kicker {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
}

.focus-card-arrow {
  color: var(--cyan);
  font-size: 18px;
  transition: transform 0.3s var(--ease);
}

.focus-card:hover .focus-card-arrow {
  transform: translate(4px, -4px);
}

.focus-card h3 {
  max-width: 300px;
  margin: auto 0 30px;
  font-family: var(--font-display);
  font-size: clamp(39px, 3.4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.focus-card > p {
  min-height: 130px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.focus-card-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.08em;
  text-transform: none;
}

/* Operating model */

.section-model {
  background: var(--paper);
}

.model-intro .section-copy,
.partnership-intro .section-copy,
.platforms-intro .section-copy {
  justify-self: end;
}

.model-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.model-step {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 150px;
  border-bottom: 1px solid var(--line-dark);
}

.model-step-num {
  color: var(--cobalt);
  font-size: 13px;
}

.model-step h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}

.model-step p {
  max-width: 720px;
  margin-bottom: 0;
  color: #566171;
}

.model-step-output {
  display: inline-flex;
  min-width: 112px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid var(--line-dark);
  color: var(--slate);
}

/* Partnership */

.section-partnership {
  overflow: hidden;
  background: #e5e2d9;
}

.section-partnership::after {
  position: absolute;
  top: -210px;
  right: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(40, 85, 245, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 68px rgba(40, 85, 245, 0.035),
    0 0 0 136px rgba(40, 85, 245, 0.025);
}

.section-partnership .container {
  position: relative;
  z-index: 1;
}

.partner-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.partner-value {
  min-height: 330px;
  padding: 28px clamp(22px, 2.4vw, 36px);
}

.partner-value + .partner-value {
  border-left: 1px solid rgba(7, 17, 31, 0.22);
}

.partner-value-label {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(7, 17, 31, 0.28);
  color: var(--cobalt-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-value h3 {
  margin: 100px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.25vw, 36px);
  font-weight: 450;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.partner-value p {
  margin-bottom: 0;
  color: #4c5664;
  font-size: 14px;
  line-height: 1.65;
}

.partner-principle {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
}

.partner-principle span {
  color: var(--cobalt-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-principle p {
  max-width: 770px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(29px, 3vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

/* Platforms */

.section-platforms {
  background: var(--porcelain);
}

.platform-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.platform-card::after {
  position: absolute;
  top: -25%;
  right: -8%;
  width: 52%;
  height: 100%;
  transform: rotate(-16deg);
  background: linear-gradient(180deg, rgba(40, 85, 245, 0.34), transparent 72%);
  content: "";
  filter: blur(1px);
}

.platform-card-meta,
.platform-card-body {
  position: relative;
  z-index: 2;
}

.platform-card-meta {
  display: flex;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.5);
}

.platform-card-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding: clamp(52px, 7vw, 96px) clamp(28px, 5vw, 72px);
}

.platform-wordmark {
  margin-bottom: 80px;
  color: var(--white);
  font-size: clamp(16px, 1.7vw, 23px);
  font-weight: 300;
  letter-spacing: 0.13em;
}

.platform-wordmark span {
  margin-left: 8px;
  color: var(--cyan);
  font-weight: 700;
}

.platform-card h3 {
  max-width: 720px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.4vw, 84px);
  font-weight: 350;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.platform-card-body > div:last-child {
  align-self: end;
}

.platform-card-body > div:last-child > p {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.platform-landscape {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 250px;
}

.platform-landscape svg {
  width: 100%;
  height: 100%;
}

.platform-landscape path {
  fill: none;
  stroke: rgba(114, 217, 255, 0.36);
  stroke-width: 1.2;
}

.platform-landscape path + path {
  stroke: rgba(179, 154, 104, 0.24);
}

.platform-landscape circle:first-of-type {
  fill: var(--cyan);
}

.landscape-pulse {
  fill: none;
  stroke: var(--cyan);
  opacity: 0.4;
  animation: landscape-pulse 3s ease-out infinite;
}

@keyframes landscape-pulse {
  0% {
    r: 9px;
    opacity: 0.7;
  }
  70%,
  100% {
    r: 42px;
    opacity: 0;
  }
}

.provenance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 22px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.provenance-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 56px);
}

.provenance-card + .provenance-card {
  border-left: 1px solid var(--ink);
}

.provenance-label {
  color: var(--cobalt-dark);
}

.provenance-card h3 {
  max-width: 600px;
  margin: 68px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.provenance-card p {
  max-width: 600px;
  margin-bottom: 32px;
  color: #536070;
}

.provenance-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.provenance-card-quiet {
  background: #e8e7e1;
}

/* Hong Kong bridge */

.section-hong-kong {
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--white);
}

.hong-kong-grid {
  opacity: 0.15;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 72%);
}

.hong-kong-layout {
  position: relative;
  z-index: 1;
}

.bridge-system {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 80px);
  margin-top: clamp(78px, 9vw, 130px);
  padding-top: 56px;
  border-top: 1px solid var(--line-light);
}

.bridge-line {
  position: absolute;
  top: -1px;
  left: 0;
  width: 33.333%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cobalt));
}

.bridge-line i {
  position: absolute;
  top: -4px;
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(114, 217, 255, 0.8);
}

.bridge-system article > span {
  display: inline-block;
  margin-bottom: 88px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px;
}

.bridge-system h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.bridge-system p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

.investhk-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: clamp(80px, 10vw, 150px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.investhk-card:hover {
  border-color: rgba(114, 217, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
}

.investhk-card-label {
  display: block;
  margin-bottom: 15px;
  color: var(--cyan);
}

.investhk-card strong {
  display: block;
  max-width: 900px;
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.investhk-card-arrow {
  font-size: 36px;
  transition: transform 0.25s var(--ease);
}

.investhk-card:hover .investhk-card-arrow {
  transform: translate(5px, -5px);
}

.investhk-card small {
  grid-column: 1 / -1;
  max-width: 800px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.6;
}

/* Contact */

.section-contact {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(70px, 10vw, 160px);
}

.contact-title {
  max-width: 680px;
  margin: 30px 0 32px;
  font-family: var(--font-display);
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.93;
}

.contact-fit {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.contact-fit > span {
  color: var(--cobalt-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-fit ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-fit li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--line-dark);
  color: #4a5665;
  font-size: 14px;
}

.contact-fit li::before {
  position: absolute;
  top: 22px;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cobalt);
  content: "";
}

.contact-form {
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid var(--line-dark);
  background: var(--porcelain);
  box-shadow: 24px 24px 0 rgba(7, 17, 31, 0.055);
}

.contact-form label {
  display: block;
  margin-bottom: 28px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #4e5967;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form label > span b {
  color: var(--cobalt);
  font: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(7, 17, 31, 0.42);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 44px;
}

.contact-form textarea {
  min-height: 120px;
  padding: 10px 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cobalt);
  box-shadow: 0 1px 0 var(--cobalt);
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid var(--cobalt-dark);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--porcelain);
}

.contact-form textarea::placeholder {
  color: #5e6978;
}

.contact-form .field-help {
  display: block;
  margin-top: 10px;
  color: #515d6c;
  font-size: 12px;
  line-height: 1.55;
}

.hidden-field {
  display: none !important;
}

.form-submit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  padding-top: 20px;
}

.form-submit-row p {
  max-width: 500px;
  margin-bottom: 0;
  color: #515d6c;
  font-size: 11px;
  line-height: 1.6;
}

.form-submit-row p a {
  border-bottom: 1px solid currentColor;
}

.form-submit-row .button {
  border: 0;
}

/* Footer */

.site-footer {
  padding: clamp(68px, 8vw, 110px) 0 30px;
  background: #050c17;
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line-light);
}

.brand-footer .brand-lockup {
  width: min(288px, 100%);
}

.footer-top p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  padding-block: 66px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-label {
  margin-bottom: 12px;
  color: var(--cyan);
}

.footer-grid a,
.footer-grid div > span:not(.footer-label) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--white);
}

.brand-disclosure {
  max-width: 860px;
  margin: -16px 0 36px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.75;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.03em;
}

/* Utility pages */

.page-legal,
.page-message {
  min-height: 100vh;
  background: var(--paper);
}

.utility-header {
  height: 82px;
  background: var(--ink);
  color: var(--white);
}

.utility-header .header-inner {
  display: flex;
  justify-content: space-between;
}

.utility-back {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.utility-back:hover {
  color: var(--white);
}

.legal-main,
.message-main {
  padding: clamp(100px, 12vw, 180px) 0;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(60px, 10vw, 160px);
}

.legal-kicker {
  color: var(--cobalt-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-title,
.message-title {
  margin: 24px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(55px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.legal-updated {
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  margin: 60px 0 16px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 450;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #4d5867;
}

.legal-content a {
  color: var(--cobalt-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.message-main {
  display: grid;
  min-height: calc(100vh - 82px);
  place-items: center;
}

.message-card {
  max-width: 860px;
  padding: clamp(32px, 6vw, 80px);
  border: 1px solid var(--line-dark);
  background: var(--porcelain);
}

.message-card p:not(.legal-kicker) {
  max-width: 640px;
  color: #4d5867;
  font-size: 18px;
}

.message-card .button {
  margin-top: 22px;
}

/* Scroll reveal */

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

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

/* Responsive */

@media (max-width: 1180px) {
  .header-inner {
    gap: 20px;
  }

  .brand-lockup {
    width: 230px;
  }

  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.82fr;
    gap: 44px;
  }

  .system-visual {
    min-height: 500px;
  }

  .focus-card {
    min-height: 460px;
  }

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

  .partner-value:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(7, 17, 31, 0.22);
  }

  .partner-value:nth-child(4) {
    border-top: 1px solid rgba(7, 17, 31, 0.22);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .contact-copy {
    max-width: 760px;
  }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 34px var(--gutter) 60px;
    transform: translateY(-12px);
    visibility: hidden;
    background: rgba(7, 17, 31, 0.98);
    opacity: 0;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
    backdrop-filter: blur(18px);
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .mobile-menu a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--font-display);
    font-size: 30px;
  }

  .mobile-menu a:last-child {
    margin-top: auto;
    border-bottom: 0;
    color: var(--cyan);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-title {
    max-width: 830px;
    font-size: clamp(72px, 13vw, 120px);
  }

  .hero-lede {
    max-width: 760px;
  }

  .system-visual {
    width: min(100%, 700px);
    min-height: 560px;
    justify-self: center;
  }

  .thesis-grid,
  .focus-intro,
  .model-intro,
  .platforms-intro,
  .partnership-intro,
  .contact-layout,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .model-intro .section-copy,
  .partnership-intro .section-copy,
  .platforms-intro .section-copy {
    justify-self: start;
  }

  .focus-list {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: 390px;
  }

  .focus-card + .focus-card {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .focus-card > p {
    min-height: auto;
  }

  .platform-card-body {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .platform-card-body > div:last-child {
    max-width: 600px;
  }

  .bridge-system {
    grid-template-columns: 1fr;
  }

  .bridge-line {
    width: 100%;
  }

  .bridge-system article {
    display: grid;
    grid-template-columns: 56px 0.8fr 1.2fr;
    gap: 26px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line-light);
  }

  .bridge-system article > span {
    margin-bottom: 0;
  }

  .bridge-system h3 {
    margin-bottom: 0;
  }

  .contact-layout {
    gap: 70px;
  }

  .contact-copy {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 20px;
    --section-space: 76px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-visible {
    height: 68px;
  }

  .brand-lockup {
    width: 216px;
  }

  .mobile-menu {
    top: 68px;
  }

  .section-heading {
    align-items: flex-end;
    margin-bottom: 48px;
  }

  .section-index {
    max-width: 120px;
    text-align: right;
  }

  .section-title {
    font-size: clamp(46px, 14vw, 68px);
  }

  .official-strip {
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    margin-bottom: 48px;
  }

  .official-strip-label {
    grid-column: 1 / -1;
  }

  .official-strip-copy {
    font-size: 11px;
  }

  .official-strip-arrow {
    font-size: 9px;
  }

  .hero-inner {
    padding-top: 112px;
  }

  .hero-title {
    margin-bottom: 28px;
    font-size: clamp(59px, 18vw, 88px);
    line-height: 0.86;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .system-visual {
    min-height: 420px;
    padding: 13px;
  }

  .system-visual-topline,
  .system-visual-legend {
    font-size: 8px;
  }

  .system-map {
    min-height: 340px;
  }

  .hero-foot {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .hero-foot span {
    padding: 12px 0;
  }

  .hero-foot span + span {
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .thesis-statement {
    font-size: clamp(47px, 14vw, 67px);
  }

  .thesis-grid {
    gap: 56px;
  }

  .thesis-point {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .focus-card {
    min-height: 350px;
    padding: 26px 22px;
  }

  .focus-card h3 {
    margin-top: 58px;
  }

  .model-step {
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding-block: 28px;
  }

  .model-step-output {
    grid-column: 2;
    min-width: 0;
    justify-self: start;
  }

  .partner-value-grid {
    grid-template-columns: 1fr;
  }

  .partner-value + .partner-value,
  .partner-value:nth-child(3),
  .partner-value:nth-child(4) {
    border-top: 1px solid rgba(7, 17, 31, 0.22);
    border-left: 0;
  }

  .partner-value {
    min-height: 240px;
  }

  .partner-value h3 {
    margin-top: 48px;
  }

  .partner-principle {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 620px;
  }

  .platform-card-meta {
    align-items: flex-start;
    gap: 18px;
  }

  .platform-card-meta span:last-child {
    text-align: right;
  }

  .platform-card-body {
    gap: 52px;
    padding: 42px 22px;
  }

  .platform-wordmark {
    margin-bottom: 48px;
  }

  .platform-card h3 {
    font-size: clamp(45px, 14vw, 65px);
  }

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

  .provenance-card + .provenance-card {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .bridge-system article {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }

  .bridge-system article p {
    grid-column: 2;
  }

  .investhk-card {
    grid-template-columns: 1fr;
  }

  .investhk-card-arrow {
    display: none;
  }

  .form-row,
  .form-submit-row,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

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

  .footer-top p {
    font-size: 20px;
  }

  .legal-main,
  .message-main {
    padding-top: 80px;
  }
}

@media print {
  @page {
    margin: 14mm;
  }

  :root {
    --section-space: 42px;
  }

  html,
  body {
    min-width: 0;
    overflow: visible;
    background: #fff;
    color: var(--ink);
  }

  .brand-lockup {
    filter: brightness(0);
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    box-shadow: none !important;
    transition: none !important;
  }

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

  .container,
  .header-inner {
    width: 100%;
    max-width: none;
    padding-inline: 0;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-visible {
    position: static;
    height: 62px;
    border-bottom: 1px solid var(--line-dark);
    background: #fff;
    color: var(--ink);
  }

  .header-inner {
    display: flex;
  }

  .desktop-nav,
  .header-cta,
  .menu-toggle,
  .mobile-menu,
  .skip-link,
  .hero-grid,
  .hero-glow,
  .system-visual,
  .bridge-line,
  .platform-landscape,
  .hero-actions {
    display: none !important;
  }

  .section {
    padding-block: var(--section-space);
    break-inside: auto;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .hero,
  .section-focus,
  .section-hong-kong,
  .site-footer {
    min-height: 0;
    background: #fff;
    color: var(--ink);
  }

  .hero-inner {
    padding-block: 54px 36px;
  }

  .hero-layout,
  .focus-intro,
  .model-intro,
  .partnership-intro,
  .platforms-intro,
  .contact-layout,
  .legal-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-title,
  .section-title,
  .contact-title,
  .thesis-statement {
    max-width: none;
    color: var(--ink);
    font-size: 44pt;
  }

  .hero-title span {
    color: var(--cobalt-dark);
  }

  .hero-lede,
  .section-copy,
  .section-copy-light,
  .eyebrow,
  .section-index,
  .section-heading-light .section-index,
  .bridge-system p,
  .footer-bottom p {
    color: #303b49;
  }

  .hero-foot,
  .focus-list,
  .partner-value-grid,
  .model-steps,
  .bridge-system,
  .platform-card,
  .contact-form {
    border-color: var(--line-dark);
  }

  .focus-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .focus-card,
  .partner-value,
  .model-step,
  .platform-card,
  .investhk-card,
  .contact-form {
    min-height: 0;
    break-inside: avoid;
  }

  .focus-card,
  .partner-value {
    padding: 22px;
  }

  .focus-card + .focus-card,
  .partner-value + .partner-value {
    border-color: var(--line-dark);
  }

  .focus-card h3,
  .partner-value h3 {
    margin-top: 32px;
  }

  .focus-card > p,
  .focus-card-footer,
  .partner-value p {
    color: #303b49;
  }

  .platform-card,
  .investhk-card {
    border: 1px solid var(--line-dark);
    background: #fff;
    color: var(--ink);
  }

  .platform-card-body {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 32px;
  }

  .platform-card h3 {
    font-size: 32pt;
  }

  .platform-wordmark,
  .text-link-light {
    color: var(--ink);
  }

  .investhk-card small {
    color: #303b49;
  }

  .contact-layout {
    display: block;
  }

  .contact-form {
    margin-top: 34px;
    background: #fff;
  }

  .footer-grid {
    display: none;
  }

  .footer-top,
  .footer-bottom {
    border-color: var(--line-dark);
  }

  .footer-top p {
    color: #4a5564;
  }
}

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

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

  .js .reveal {
    transform: none;
  }
}
