:root {
  --ink: #132b4e;
  --paper: #f7f8f3;
  --lime: #d9ff43;
  --orange: #ff5b35;
  --sky: #e8f2fa;
  --blue: #234b91;
  --muted: #74849a;
  --line: rgba(19, 43, 78, 0.18);
  --gutter: clamp(22px, 4vw, 64px);
  --sans: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --serif: "Songti SC", "STSong", Georgia, serif;
  --mono: "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

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

.site-header {
  position: fixed;
  top: 0;
  z-index: 40;
  display: flex;
  width: 100%;
  height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(19, 43, 78, 0.14);
  color: var(--ink);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(247, 248, 243, 0.92);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  width: 128px;
  height: 58px;
}

.brand-logo-frame {
  position: relative;
  display: flex;
  width: 120px;
  height: 58px;
  align-items: center;
  justify-content: center;
}

.brand-logo-frame img {
  display: block;
  width: 94px;
  max-width: 100%;
  height: auto;
  filter: saturate(1.15) brightness(1.12);
  transition: filter 0.35s ease;
}

.site-header.scrolled .brand-logo-frame img {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}

.site-nav a {
  position: relative;
  font-size: 13px;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 28%, rgba(189, 219, 241, 0.55), transparent 32%),
    linear-gradient(145deg, #fbfcf7 0%, #edf5fa 100%);
  color: var(--ink);
}

#compute-field,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-grid {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(35, 75, 145, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 75, 145, 0.08) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(to bottom, transparent 0, black 38%, black 100%);
}

.hero-index,
.hero-status {
  position: absolute;
  top: 108px;
  z-index: 3;
  color: #718198;
}

.hero-index {
  left: var(--gutter);
}

.hero-status {
  right: var(--gutter);
}

.hero-status span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.hero-copy {
  position: absolute;
  bottom: clamp(72px, 9vh, 120px);
  left: var(--gutter);
  z-index: 5;
  width: min(800px, 72vw);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 8.2vw, 126px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  font-family: var(--serif);
}

.hero-bottom {
  display: flex;
  max-width: 720px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 36px;
}

.hero-bottom p {
  margin: 0;
  color: #5f7188;
  font-size: 14px;
  line-height: 1.85;
}

.arrow-link {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 44px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(19, 43, 78, 0.5);
  font-size: 13px;
}

.arrow-link span {
  color: var(--blue);
  font-size: 20px;
}

.orb {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
}

.orb-main {
  top: 19%;
  right: 8%;
  width: clamp(210px, 25vw, 420px);
  aspect-ratio: 1;
  animation: float 8s ease-in-out infinite;
}

.orb-core {
  position: absolute;
  inset: 8%;
  overflow: hidden;
  border: 1px solid rgba(35, 75, 145, 0.55);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.9), transparent 7%),
    radial-gradient(circle at 60% 58%, rgba(217, 255, 67, 0.5), transparent 4%),
    repeating-radial-gradient(ellipse at 20% 80%, transparent 0 9px, rgba(255, 255, 255, 0.18) 10px 11px),
    radial-gradient(circle at 48% 45%, #7f9fd2 0%, #315b9c 38%, #132b4e 74%);
  box-shadow: inset -28px -24px 48px rgba(8, 30, 66, 0.55), inset 14px 10px 30px rgba(255, 255, 255, 0.22), 0 24px 80px rgba(35, 75, 145, 0.2);
}

.orb-core::after {
  position: absolute;
  inset: -15%;
  background: repeating-linear-gradient(25deg, transparent 0 12px, rgba(255, 255, 255, 0.2) 13px, transparent 14px 22px);
  content: "";
  animation: rotate 30s linear infinite;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(35, 75, 145, 0.25);
  border-radius: 50%;
  transform: rotateX(67deg) rotateZ(20deg);
}

.orbit-b {
  inset: -15%;
  transform: rotateY(65deg) rotateZ(-36deg);
}

.orb-label {
  position: absolute;
  right: 10%;
  bottom: 1%;
  color: var(--blue);
}

.orb-small {
  width: 90px;
  aspect-ratio: 1;
  opacity: 0.65;
}

.orb-small .orb-core {
  background: radial-gradient(circle at 40% 38%, #cdddef, #6585b7 48%, #23416d);
  border-color: rgba(35, 75, 145, 0.45);
}

.orb-one {
  top: 22%;
  left: 29%;
  animation: float 10s ease-in-out -2s infinite;
}

.orb-two {
  top: 16%;
  left: 7%;
  width: 48px;
  animation: float 7s ease-in-out -5s infinite;
}

.orb-three {
  right: 34%;
  bottom: 15%;
  width: 56px;
  animation: float 12s ease-in-out -6s infinite;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 30px;
  z-index: 4;
  color: #718198;
}

.scroll-cue span {
  display: inline-block;
  margin-left: 14px;
  color: var(--blue);
  animation: nudge 1.8s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.26s;
}

.section-pad {
  padding: clamp(80px, 11vw, 170px) var(--gutter);
}

.section-kicker {
  margin-bottom: 54px;
  color: #6f706b;
}

.statement {
  display: grid;
  min-height: 88vh;
  grid-template-columns: 1fr 3.25fr 1fr;
  gap: clamp(24px, 5vw, 88px);
  align-items: start;
}

.statement-copy .lead {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1.38;
}

.statement-copy em {
  padding: 0 0.12em;
  background: var(--lime);
  font-style: normal;
  box-decoration-break: clone;
}

.statement-copy .support {
  max-width: 650px;
  margin: 72px 0 0 auto;
  color: #5b5c57;
  font-size: 17px;
  line-height: 2;
}

.statement-note {
  align-self: end;
  color: #777873;
  line-height: 1.8;
}

.origin {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: #17201c;
  color: white;
}

.origin > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.78) contrast(1.06);
  transform: scale(1.015);
  transition: transform 1.4s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.origin:hover > img {
  transform: scale(1.045);
}

.origin-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 8, 6, 0.9) 0%, rgba(5, 8, 6, 0.18) 56%, rgba(5, 8, 6, 0.5) 100%),
    linear-gradient(to right, rgba(5, 8, 6, 0.25), transparent 55%);
}

.origin-top {
  position: absolute;
  top: 34px;
  right: var(--gutter);
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
}

.origin-copy {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(58px, 8vw, 118px);
  left: var(--gutter);
}

.origin-copy > .mono {
  margin: 0 0 22px;
  color: var(--lime);
}

.origin-copy h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.origin-copy > p:last-child {
  max-width: 530px;
  margin: 34px 0 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.8;
}

.capabilities {
  background: var(--sky);
  color: var(--ink);
}

.cap-intro {
  display: grid;
  grid-template-columns: 1fr 4.25fr;
  gap: 40px;
  padding-bottom: 90px;
}

.cap-intro h2,
.approach h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.22;
}

.cap-list {
  border-top: 1px solid var(--line);
}

.cap-row {
  display: grid;
  min-height: 200px;
  grid-template-columns: 0.7fr 1.7fr 2.2fr 0.5fr;
  gap: 32px;
  align-items: center;
  padding: 30px var(--gutter);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease, color 0.35s ease;
}

.cap-row:hover {
  background: var(--lime);
  color: var(--ink);
}

.cap-number {
  color: #747670;
}

.cap-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 46px);
  font-weight: 500;
}

.cap-row p {
  max-width: 520px;
  margin: 0;
  color: #60738b;
  font-size: 15px;
  line-height: 1.8;
}

.cap-row:hover p,
.cap-row:hover .cap-number {
  color: #31322f;
}

.cap-symbol {
  justify-self: end;
  font-size: 42px;
}

.approach h2 {
  max-width: 940px;
  margin-left: calc(20% + 32px);
}

.pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 140px;
}

.pipeline-line {
  position: absolute;
  top: 41px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.pipeline-step {
  position: relative;
  padding-right: 30px;
}

.pipeline-step > span {
  color: #777873;
}

.pipeline-step i {
  position: relative;
  z-index: 2;
  display: block;
  width: 13px;
  height: 13px;
  margin: 24px 0 44px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--ink);
}

.pipeline-step h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.pipeline-step p {
  max-width: 160px;
  margin: 0;
  color: #747570;
  font-size: 13px;
  line-height: 1.7;
}

.belief {
  display: grid;
  min-height: 90vh;
  grid-template-columns: 1fr 1fr;
  background: #eef4f8;
}

.belief-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(217, 255, 67, 0.32), transparent 34%),
    #d9e8f4;
}

.rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(58vw, 740px);
  aspect-ratio: 1;
  border: 1px solid rgba(35, 75, 145, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 45px rgba(35, 75, 145, 0.045),
    0 0 0 90px rgba(35, 75, 145, 0.045),
    0 0 0 135px rgba(35, 75, 145, 0.045),
    0 0 0 180px rgba(35, 75, 145, 0.045);
}

.rings::before,
.rings::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.rings::before {
  inset: 26%;
  background: radial-gradient(circle at 34% 28%, #f7ffcf, #b6d33d 20%, #426ca8 58%, #16335d);
  box-shadow: 0 20px 90px rgba(35, 75, 145, 0.23);
}

.rings::after {
  inset: -15%;
  border: 1px dashed rgba(35, 75, 145, 0.2);
  animation: rotate 36s linear infinite;
}

.belief-visual span {
  position: absolute;
  bottom: 38px;
  left: 42px;
  color: #5b7292;
}

.belief-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px);
}

.belief-copy blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 66px);
  line-height: 1.45;
}

.belief-copy > p {
  max-width: 500px;
  margin: 80px 0 0;
  font-size: 16px;
  line-height: 1.9;
}

.home-partners {
  background: var(--paper);
}

.home-section-heading {
  display: grid;
  grid-template-columns: 1fr 4.25fr;
  gap: 40px;
}

.home-section-heading h2,
.home-team-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.home-section-heading > div > p {
  margin: 30px 0 0;
  color: #5d7088;
  font-size: 15px;
}

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

.logo-tile {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  transition: background 0.25s ease;
}

.logo-tile:hover {
  background: var(--sky);
}

.logo-tile img {
  width: min(170px, 82%);
  max-height: 46px;
  object-fit: contain;
}

.logo-tile-dark img {
  width: min(145px, 74%);
  padding: 10px 16px;
  border-radius: 2px;
  background: var(--ink);
}

.logo-more {
  flex-direction: column;
  gap: 3px;
  color: #647993;
}

.logo-more strong {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 0.75;
}

.logo-more span {
  font-size: 12px;
}

.home-team {
  background: var(--sky);
}

.home-team-head {
  display: grid;
  grid-template-columns: 1fr 4.25fr;
  gap: 40px;
  padding-bottom: 76px;
}

.leader-profile {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  padding: 76px var(--gutter) clamp(92px, 9vw, 140px);
  border-top: 1px solid var(--line);
}

.leader-name > span,
.leader-focus > span {
  color: #647993;
}

.leader-name h3 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.leader-name p {
  margin: 14px 0 0;
  color: #62758d;
  font-family: var(--mono);
  font-size: 12px;
}

.leader-bio p {
  max-width: 670px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.75;
}

.leader-bio a {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
}

.leader-focus ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.leader-focus li {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.contact {
  min-height: auto;
  padding-top: clamp(76px, 8vw, 112px);
  padding-bottom: clamp(82px, 9vw, 128px);
  background: var(--paper);
}

.contact-overline {
  margin-top: 52px;
  color: #73746f;
}

.contact-mail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0 40px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.025em;
}

.contact-mail span {
  font-family: var(--sans);
  font-size: 0.55em;
  transition: transform 0.25s ease;
}

.contact-mail:hover span {
  transform: translate(8px, -8px);
}

.contact-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  color: #70716c;
  font-size: 13px;
}

.footer {
  padding: 54px var(--gutter) 32px;
  background: #dfeefa;
  color: var(--ink);
}

.footer-lockup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-lockup > img {
  width: 132px;
  filter: saturate(1.1);
  opacity: 0.9;
}

.footer-lockup > p {
  margin: 0;
  color: #536a86;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding-top: 24px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  color: #536a86;
  text-transform: none;
}

.filings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
}

.footer-bottom a {
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--blue);
}

.inner-page {
  background: var(--paper);
}

.inner-page .site-header {
  background: rgba(247, 248, 243, 0.92);
  backdrop-filter: blur(16px);
}

.site-nav a.active::after {
  transform: scaleX(1);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 76vh;
  grid-template-columns: 1fr 3.4fr;
  gap: 50px;
  align-content: end;
  padding: 160px var(--gutter) 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(176, 209, 235, 0.62), transparent 31%),
    linear-gradient(145deg, #fbfcf7 0%, #eaf4fa 100%);
}

.page-hero::after {
  position: absolute;
  top: 20%;
  right: 7%;
  width: min(30vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(35, 75, 145, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(35, 75, 145, 0.035),
    0 0 0 110px rgba(35, 75, 145, 0.035);
  content: "";
}

.page-index {
  position: relative;
  z-index: 2;
  align-self: start;
  color: #647993;
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(68px, 10vw, 152px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.page-hero > p {
  position: relative;
  z-index: 2;
  grid-column: 2;
  max-width: 480px;
  margin: 34px 0 0;
  color: #5d7088;
  font-size: 15px;
  line-height: 1.8;
}

.partner-directory {
  border-top: 1px solid var(--line);
}

.partner-entry {
  display: grid;
  min-height: 190px;
  grid-template-columns: 0.6fr 1.5fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 32px var(--gutter);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.partner-entry:hover {
  background: var(--sky);
}

.partner-entry > span {
  color: #73849a;
}

.partner-entry img {
  width: min(240px, 80%);
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.partner-entry:last-child img {
  width: min(205px, 80%);
  padding: 12px 18px;
  border-radius: 2px;
  background: var(--ink);
}

.partner-entry h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 500;
  text-align: right;
}

.page-note {
  display: grid;
  grid-template-columns: 1fr 3.4fr;
  gap: 50px;
  padding: 86px var(--gutter) 120px;
}

.page-note span {
  color: #718198;
}

.page-note p {
  max-width: 600px;
  margin: 0;
  color: #5d7088;
  font-size: 15px;
  line-height: 1.8;
}

.team-page-hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(217, 255, 67, 0.33), transparent 22%),
    linear-gradient(145deg, #fbfcf7 0%, #eaf4fa 100%);
}

.profile {
  display: grid;
  grid-template-columns: 0.65fr 1.5fr 2fr;
  gap: clamp(30px, 5vw, 90px);
  padding: clamp(90px, 12vw, 170px) var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-number {
  color: #718198;
}

.profile-name h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 106px);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.profile-name p {
  margin: 26px 0 0;
  color: #526b8b;
  font-size: 15px;
  line-height: 1.9;
}

.profile-bio {
  padding-top: 14px;
}

.profile-bio p {
  max-width: 650px;
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.75;
}

.profile-scope {
  display: grid;
  grid-template-columns: 1fr 3.4fr;
  gap: 50px;
  padding: 90px var(--gutter);
  background: var(--sky);
}

.profile-scope > div {
  color: #718198;
}

.profile-scope ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.profile-scope li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 24px;
}

.profile-scope li:nth-child(odd) {
  padding-right: 24px;
}

.compact-footer {
  border-top: 1px solid var(--line);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

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

@keyframes nudge {
  50% {
    transform: translateY(7px);
  }
}

@media (max-width: 800px) {
  .site-header {
    height: 66px;
  }

  .brand small {
    display: none;
  }

  .brand,
  .brand-logo-frame {
    width: 106px;
  }

  .brand-logo-frame img {
    width: 90px;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: block;
    width: 36px;
    height: 36px;
    padding: 8px;
    border: 0;
    background: transparent;
    color: inherit;
  }

  .menu-button span {
    display: block;
    height: 1px;
    margin: 6px 0;
    background: currentColor;
    transition: transform 0.25s ease;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--gutter);
    background: var(--lime);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .site-nav a {
    font-family: var(--serif);
    font-size: 44px;
  }

  .hero-copy {
    bottom: 86px;
    width: calc(100% - 2 * var(--gutter));
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .hero-bottom {
    display: block;
  }

  .hero-bottom p br {
    display: none;
  }

  .arrow-link {
    margin-top: 24px;
  }

  .orb-main {
    top: 17%;
    right: -12%;
    width: 230px;
    opacity: 0.8;
  }

  .orb-one {
    top: 28%;
    left: 8%;
    width: 62px;
  }

  .orb-two,
  .orb-three,
  .hero-status,
  .scroll-cue {
    display: none;
  }

  .statement,
  .cap-intro {
    grid-template-columns: 1fr;
  }

  .statement {
    min-height: auto;
  }

  .statement-copy .support {
    margin: 48px 0 0;
  }

  .statement-note {
    margin-top: 40px;
  }

  .origin {
    min-height: 76vh;
  }

  .origin > img {
    object-position: 58% center;
  }

  .origin-top span:first-child {
    display: none;
  }

  .origin-top {
    justify-content: flex-end;
  }

  .origin-copy h2 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .origin-copy > p:last-child {
    margin-left: 0;
  }

  .cap-row {
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .cap-row p {
    grid-column: 2 / 4;
  }

  .cap-symbol {
    font-size: 26px;
  }

  .approach h2 {
    margin-left: 0;
  }

  .pipeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 74px;
    padding-left: 26px;
  }

  .pipeline-line {
    top: 0;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .pipeline-step {
    padding: 0 0 48px 30px;
  }

  .pipeline-step i {
    position: absolute;
    top: 3px;
    left: -26px;
    margin: 0;
  }

  .pipeline-step p {
    max-width: none;
  }

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

  .belief-visual {
    min-height: 55vh;
  }

  .belief-copy {
    padding: 80px var(--gutter);
  }

  .home-section-heading,
  .home-team-head,
  .leader-profile {
    grid-template-columns: 1fr;
  }

  .logo-rail {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 58px;
  }

  .logo-tile {
    min-height: 104px;
    padding: 18px;
  }

  .logo-tile img {
    width: min(135px, 86%);
    max-height: 38px;
  }

  .logo-tile-dark img {
    width: min(120px, 78%);
  }

  .leader-profile {
    gap: 52px;
  }

  .leader-name h3 {
    font-size: 68px;
  }

  .leader-bio p {
    font-size: 21px;
  }

  .contact {
    min-height: auto;
  }

  .contact-mail {
    font-size: clamp(25px, 7.3vw, 46px);
  }

  .contact-meta,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-lockup > img {
    width: 112px;
  }

  .footer-lockup {
    align-items: flex-end;
  }

  .footer-lockup > p {
    max-width: 120px;
    text-align: right;
  }

  .page-hero {
    min-height: 66vh;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 130px;
    padding-bottom: 72px;
  }

  .page-hero h1 {
    font-size: clamp(62px, 21vw, 86px);
  }

  .page-hero > p {
    grid-column: 1;
    margin-top: 0;
  }

  .page-hero::after {
    top: 24%;
    right: -25%;
    width: 72vw;
  }

  .partner-entry {
    min-height: 148px;
    grid-template-columns: 36px 1fr;
    gap: 18px;
  }

  .partner-entry img {
    width: min(210px, 90%);
  }

  .partner-entry h2 {
    grid-column: 2;
    font-size: 25px;
    text-align: left;
  }

  .page-note,
  .profile,
  .profile-scope {
    grid-template-columns: 1fr;
  }

  .page-note {
    padding-top: 64px;
    padding-bottom: 84px;
  }

  .profile {
    gap: 34px;
  }

  .profile-name h2 {
    font-size: 68px;
  }

  .profile-bio p {
    font-size: 23px;
  }

  .profile-scope ul {
    grid-template-columns: 1fr;
  }

  .profile-scope li:nth-child(odd) {
    padding-right: 0;
  }
}

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

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