:root {
  --ink: #111719;
  --paper: #f4f6f5;
  --white: #ffffff;
  --steel: #668f97;
  --steel-dark: #18292e;
  --mist: #e7eceb;
  --line: rgba(17, 23, 25, 0.16);
  --muted: #556164;
  --accent: #6f98a0;
  --page: min(1280px, calc(100% - 96px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

section[id] {
  scroll-margin-top: 76px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

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

::selection {
  background: #b8cdd0;
  color: #0f1719;
}

:focus-visible {
  outline: 3px solid #8ab1b8;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}

.skip-link:focus {
  transform: none;
}

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

#services,
#updates,
#about,
#contact {
  scroll-margin-top: 96px;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 18px max(0px, env(safe-area-inset-right)) 0 max(0px, env(safe-area-inset-left));
  color: var(--white);
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease), transform .24s var(--ease);
}

.nav-inner {
  width: var(--page);
  min-height: 64px;
  display: flex;
  align-items: center;
  margin-inline: auto;
}

.nav-header.scrolled {
  padding-top: 0;
  border-bottom: 1px solid rgba(17, 23, 25, .1);
  background: rgba(244, 246, 245, .9);
  color: var(--ink);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-symbol {
  width: 40px;
  height: 40px;
  display: grid;
  position: relative;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 900;
}

.brand-symbol i {
  width: 7px;
  height: 7px;
  position: absolute;
  right: -4px;
  bottom: -4px;
  background: #9db9be;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
}

.nav-inner nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
}

.nav-inner nav a,
.nav-action {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

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

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

.nav-action {
  margin-left: 36px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .32);
}

.nav-header.scrolled .nav-action {
  border-left-color: var(--line);
}

.nav-action b {
  margin-left: 8px;
  color: #b8cdd0;
  font-size: 18px;
}

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

.hero-shell {
  min-height: 680px;
  height: 100svh;
  max-height: none;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-viewport,
.hero-video,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.05);
}

.hero-shell.video-mode .hero-viewport {
  visibility: hidden;
}

.hero-shell.video-mode::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(7, 14, 16, .5);
  pointer-events: none;
}

.hero-viewport {
  overflow: hidden;
}

.hero-slide {
  z-index: 0;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  transform: translateX(100%);
}

.hero-slide.active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.05s var(--ease), opacity .8s var(--ease);
}

.hero-slide.entering {
  z-index: 3;
  visibility: visible;
  opacity: 1;
  transform: translateX(100%);
  transition: none;
}

.hero-slide.leaving {
  z-index: 1;
  visibility: visible;
  opacity: 0;
  transform: translateX(-14%);
  transition: transform 1.05s var(--ease), opacity 1.05s var(--ease);
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.05);
  transform: scale(1.01);
}

.hero-slide.active img {
  animation: hero-drift 7s linear both;
}

.hero-slide:nth-child(2) img {
  object-position: center 45%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 16, .52);
}

.hero-identity {
  position: absolute;
  top: 25%;
  left: 50%;
  z-index: 8;
  color: var(--white);
  pointer-events: none;
  opacity: calc(1 - var(--hero-progress, 0) * 1.25);
  transform: translate(-50%, calc(var(--hero-progress, 0) * -30px));
}

.hero-place {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 600;
  color: #dce8e7;
}

.hero-identity h1 {
  max-width: 920px;
  margin: 0;
  font-size: 92px;
  font-weight: 900;
  line-height: 1.05;
}

.hero-identity h1 span {
  color: #c8dcda;
}

.hero-statement {
  margin: 26px 0 0;
  font-size: 24px;
  font-weight: 500;
  color: #f4f7f6;
}

.hero-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 500;
  color: #c8d6d7;
}

.hero-scope span + span {
  position: relative;
}

.hero-scope span + span::before {
  content: "";
  width: 3px;
  height: 3px;
  position: absolute;
  left: -10px;
  top: 50%;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.hero-next {
  width: 62px;
  height: 62px;
  display: grid;
  position: absolute;
  right: max(48px, calc((100vw - 1280px) / 2));
  bottom: 72px;
  z-index: 10;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: rgba(12, 20, 23, .32);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.hero-next:hover {
  background: #b8cdd0;
  color: #0f1719;
  transform: translateX(5px);
}

.hero-pause {
  width: 46px;
  height: 46px;
  display: grid;
  position: absolute;
  right: max(126px, calc((100vw - 1120px) / 2));
  bottom: 80px;
  z-index: 10;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  background: rgba(12, 20, 23, .3);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: max(48px, calc((100vw - 1280px) / 2));
  z-index: 10;
  color: var(--white);
  font-size: 15px;
  text-decoration: none;
}

.hero-scroll span {
  display: inline-block;
  margin-left: 8px;
  color: #b8cdd0;
  animation: scroll-cue 1.8s var(--ease) infinite;
}

.manifesto {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  min-height: 170px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 12;
  background: var(--paper);
}

.manifesto > p {
  margin: 0;
  color: var(--steel);
  font-size: 15px;
  font-weight: 700;
}

.manifesto strong {
  max-width: 760px;
  font-size: 25px;
  line-height: 1.6;
  text-align: left;
}

.manifesto span {
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.services {
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 70px;
}

.section-label {
  margin: 0;
  align-self: start;
  color: var(--steel);
  font-size: 16px;
  font-weight: 700;
}

.section-heading h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 800;
  line-height: 1.18;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.service-stage {
  display: block;
}

.service-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
}

.service-tab {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  position: relative;
  padding: 18px 22px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color .3s var(--ease), padding .3s var(--ease);
}

.service-tab:first-child {
  border-left: 0;
}

.service-tab::before {
  content: "";
  width: auto;
  height: 3px;
  position: absolute;
  top: auto;
  right: 22px;
  bottom: -1px;
  left: 22px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.service-tab strong {
  font-size: 20px;
  font-weight: 750;
}

.service-tab b {
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  color: var(--steel);
  font-size: 24px;
  transform: translateX(-12px);
  opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.service-tab:hover,
.service-tab.active {
  padding-left: 22px;
  background: rgba(231, 236, 235, .58);
  color: var(--steel-dark);
}

.service-tab.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-tab:hover b,
.service-tab.active b {
  opacity: 1;
  transform: none;
}

.service-visual {
  min-width: 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 520px;
  border: 1px solid var(--line);
}

.service-image-wrap {
  min-height: 520px;
  overflow: hidden;
  background: #dce3e2;
}

.service-image-wrap img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.04);
  transition: opacity .35s var(--ease), transform .7s var(--ease);
}

.service-visual:hover .service-image-wrap img {
  transform: scale(1.025);
}

.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 48px;
  border-left: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.service-copy > p:first-child {
  margin: 0 0 14px;
  color: var(--steel);
  font-size: 15px;
  font-weight: 700;
}

.service-copy h3 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
}

.service-copy > p:not(:first-child) {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.service-copy a {
  display: inline-flex;
  align-self: flex-start;
  gap: 10px;
  align-items: center;
  margin-top: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  text-decoration: none;
}

.service-copy a span {
  color: var(--accent);
}

.updates {
  padding: 130px 0;
  background: var(--mist);
}

.updates-scroll {
  height: 225vh;
  min-height: 1550px;
  width: 100vw;
  margin-inline: calc((100vw - 100%) / -2);
}

.updates-sticky {
  width: 100vw;
  height: calc(100svh - 96px);
  min-height: 590px;
  max-height: 780px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 64px;
  position: sticky;
  top: 78px;
  overflow: hidden;
}

.update-story-viewport {
  width: 100vw;
  min-width: 0;
  overflow: hidden;
}

.update-story-track {
  --story-card: min(1760px, calc(100vw - 96px));
  height: 100%;
  display: flex;
  gap: 28px;
  align-items: center;
  padding-inline: calc((100% - var(--story-card)) / 2);
  will-change: transform;
  transition: transform .58s var(--ease);
}

.update-story {
  width: var(--story-card);
  height: min(630px, calc(100% - 20px));
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 25, .14);
  background: var(--white);
  opacity: .4;
  transform: scale(.94);
  transform-origin: center;
  transition: opacity .45s var(--ease), transform .55s var(--ease), border-color .3s var(--ease);
}

.update-story.active,
.update-story:hover {
  opacity: 1;
  transform: none;
  border-color: rgba(17, 23, 25, .28);
}

.update-story-media {
  overflow: hidden;
  background: #dfe5e4;
}

.update-story-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.68) contrast(1.05);
  transition: transform .8s var(--ease), filter .4s var(--ease);
}

.update-story:hover .update-story-media img {
  transform: scale(1.045);
  filter: saturate(.82) contrast(1.05);
}

.update-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 40px;
}

.update-story-copy > span {
  display: inline-block;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}

.update-story-copy h3 {
  margin: 22px 0 14px;
  font-size: 34px;
  line-height: 1.45;
}

.update-story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.update-jump {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.update-jump button {
  position: relative;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.update-jump button:first-child {
  border-left: 0;
}

.update-jump button::after {
  content: "";
  height: 3px;
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.update-jump button:hover,
.update-jump button.active {
  background: rgba(255, 255, 255, .5);
  color: var(--ink);
}

.update-jump button.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.verification-banner {
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(340px, 1.12fr) auto;
  gap: 52px;
  align-items: center;
  margin-top: 76px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.verification-banner > span {
  color: var(--steel);
  font-size: 15px;
  font-weight: 700;
}

.verification-banner h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.5;
}

.verification-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.verification-banner a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.verification-banner a b {
  margin-left: 8px;
  color: var(--accent);
}

.about {
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--steel-dark);
  color: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 110px;
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-copy .section-label {
  color: #bcd4d1;
}

.about-copy h2 {
  margin-top: 28px;
  font-size: 72px;
}

.about-copy > p:last-child {
  max-width: 570px;
  margin: 34px 0 0;
  color: #d6e0df;
  font-size: 18px;
  line-height: 2;
}

.method-steps {
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.method-steps article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 28px;
  gap: 18px;
  position: relative;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  transition: padding .35s var(--ease), background .35s var(--ease);
}

.method-steps article:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, .06);
}

.method-steps span {
  color: #b9cecc;
  font-size: 15px;
  font-weight: 700;
}

.method-steps h3 {
  margin: 0;
  font-size: 22px;
}

.method-steps p {
  grid-column: 2;
  margin: 7px 0 0;
  color: #c8d5d4;
  font-size: 15px;
}

.method-steps b {
  grid-row: 1 / span 2;
  grid-column: 3;
  color: #b8cdd0;
  font-size: 20px;
}

.contact {
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.contact h2 {
  margin-top: 26px;
  font-size: 70px;
}

.contact-details > p {
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 18px;
}

.contact-details > div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact-details span {
  display: block;
  color: var(--steel);
  font-size: 15px;
  font-weight: 700;
}

.contact-details strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.8;
}

.footer {
  padding: 48px 0 30px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: flex;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.footer-nav a {
  color: #cfdbda;
  font-size: 15px;
  text-decoration: none;
}

.back-top {
  width: 48px;
  height: 48px;
  display: grid;
  margin-left: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: #b8cdd0;
  font-size: 22px;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: #aebdbc;
  font-size: 14px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.needs-section,
.resources-section {
  padding-block: 128px;
}

.compact-heading {
  margin-bottom: 64px;
}

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

.need-row {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr) 38px;
  gap: 54px;
  align-items: center;
  min-height: 142px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: padding .35s var(--ease), background-color .35s var(--ease);
}

.need-row:hover,
.need-row:focus-visible {
  padding-inline: 24px;
  background: var(--white);
}

.need-row h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.45;
}

.need-row p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.need-row b {
  color: var(--steel);
  font-size: 24px;
  font-weight: 400;
  transition: transform .3s var(--ease);
}

.need-row:hover b {
  transform: translateX(7px);
}

.capabilities-section {
  overflow: hidden;
  padding-top: 128px;
  background: var(--white);
}

.capabilities-heading {
  margin-bottom: 70px;
}

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

.capability-group {
  display: block;
  height: 100%;
  min-height: 360px;
  padding: 36px 30px 44px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.capability-group + .capability-group {
  border-left: 1px solid var(--line);
}

.capability-group h3 {
  min-height: 70px;
  margin: 0;
  font-size: 24px;
}

.capability-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-group li {
  position: relative;
  padding: 15px 0 15px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.capability-group li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 26px;
  left: 0;
  background: var(--steel);
}

.capability-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding-block: 22px;
  background: var(--steel-dark);
  color: #c9dbdd;
  white-space: nowrap;
}

.capability-marquee div {
  min-width: max-content;
  padding-left: 100%;
  font-size: 18px;
  font-weight: 600;
  animation: capability-run 28s linear infinite;
}

.deliverables-section {
  background: #10191b;
  color: var(--white);
}

.deliverables-scroll {
  height: 235vh;
  min-height: 1650px;
}

.deliverables-sticky {
  width: var(--page);
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(0, 1.28fr);
  gap: 72px;
  position: sticky;
  top: 0;
  align-items: center;
  margin-inline: auto;
  overflow: hidden;
}

.deliverables-intro h2 {
  margin: 20px 0 28px;
  font-size: 52px;
  line-height: 1.22;
}

.deliverables-intro > p:last-child {
  margin: 0;
  color: #b8c5c6;
  font-size: 16px;
}

.deliverables-viewport {
  width: 100%;
  overflow: hidden;
}

.deliverables-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.deliverable-item {
  width: min(440px, 36vw);
  min-width: 360px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: #172427;
  opacity: .5;
  transform: scale(.94);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background-color .35s var(--ease);
}

.deliverable-item.active {
  background: #213438;
  opacity: 1;
  transform: scale(1);
}

.deliverable-item span {
  margin-bottom: auto;
  color: #9fbfc4;
  font-size: 15px;
  font-weight: 700;
}

.deliverable-item h3 {
  margin: 0 0 22px;
  font-size: 31px;
  line-height: 1.35;
}

.deliverable-item p {
  margin: 0;
  color: #c1cdce;
  font-size: 16px;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.resource-item {
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px 34px 30px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.resource-item:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.resource-item span {
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}

.resource-item h3 {
  margin: 8px 0 0;
  font-size: 22px;
}

.resource-item p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.resource-item b {
  font-size: 23px;
  font-weight: 400;
}

.resource-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.method-steps article {
  grid-template-columns: 105px minmax(0, 1fr) 22px;
}

.facts-band {
  position: relative;
  overflow: hidden;
  background: #dfe6e5;
}

.facts-fill {
  position: absolute;
  inset: 0;
  background: #b8ced1;
  transform: scaleX(var(--facts-progress, .08));
  transform-origin: left center;
  will-change: transform;
}

.facts-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  gap: 80px;
  position: relative;
  z-index: 1;
  align-content: center;
}

.facts-inner h2 {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: 52px;
  line-height: 1.25;
}

.facts-inner dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 1px solid rgba(17, 23, 25, .24);
}

.facts-inner dl div {
  min-height: 120px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 23, 25, .24);
}

.facts-inner dl div:nth-child(even) {
  padding-left: 30px;
  border-left: 1px solid rgba(17, 23, 25, .24);
}

.facts-inner dt {
  color: #4e6367;
  font-size: 14px;
}

.facts-inner dd {
  margin: 10px 0 0;
  font-size: 21px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.facts-inner > a {
  grid-column: 2;
  width: max-content;
  font-weight: 700;
  text-decoration: none;
}

@keyframes capability-run {
  to { transform: translateX(-100%); }
}

.reveal-target.is-visible {
  animation: content-rise .7s var(--ease) both;
}

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

.micro-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-drift {
  from { transform: scale(1.01); }
  to { transform: scale(1.08); }
}

@keyframes scroll-cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes content-rise {
  from { opacity: .25; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  :root {
    --page: calc(100% - 48px);
  }

  .nav-inner nav,
  .nav-action {
    display: none;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    display: block;
    margin-left: auto;
    padding: 10px;
    border: 0;
    background: transparent;
    color: currentColor;
    position: relative;
    z-index: 3;
  }

  .menu-button span {
    width: 24px;
    height: 2px;
    display: block;
    margin: 7px 0;
    background: currentColor;
    transition: transform .3s var(--ease);
  }

  .mobile-menu {
    display: grid;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(86vw, 380px);
    height: 100svh;
    align-content: start;
    padding: 104px 32px 32px;
    border-left: 1px solid rgba(255, 255, 255, .22);
    background: rgba(13, 22, 25, .97);
    color: var(--white);
    box-shadow: 0 24px 60px rgba(4, 10, 12, .25);
    backdrop-filter: blur(20px);
    visibility: hidden;
    transform: translateX(100%);
    transition: transform .4s var(--ease), visibility .4s;
  }

  .mobile-menu.open {
    visibility: visible;
    transform: none;
  }

  .mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    font-size: 19px;
    font-weight: 650;
    text-decoration: none;
  }

  .hero-identity h1 {
    font-size: 68px;
  }

  .hero-next {
    right: 48px;
  }

  .hero-pause {
    right: 124px;
  }

  .section-heading {
    grid-template-columns: 120px 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .service-stage {
    grid-template-columns: 1fr;
  }

  .service-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-tab {
    padding-right: 20px;
    padding-left: 20px;
    border-left: 1px solid var(--line);
  }

  .service-tab:nth-child(odd) {
    border-left: 0;
  }

  .service-tab:hover,
  .service-tab.active {
    padding-left: 28px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

}

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 32px);
  }

  body {
    font-size: 16px;
  }

  .nav-header {
    top: 0;
  }

  .nav-inner {
    min-height: 58px;
    padding: 0 12px;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

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

  .hero-shell {
    min-height: 620px;
    height: 100svh;
    max-height: none;
  }

  .hero-slide img {
    object-position: 56% center;
  }

  .hero-slide:nth-child(2) img {
    object-position: 52% center;
  }

  .hero-identity {
    top: 18%;
    width: var(--page);
    max-width: var(--page);
  }

  .hero-place {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .hero-identity h1 {
    font-size: 46px;
    line-height: 1.1;
  }

  .hero-statement {
    margin-top: 18px;
    font-size: 19px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-scope {
    max-width: 26ch;
    line-height: 1.65;
    word-break: keep-all;
    overflow-wrap: normal;
    gap: 4px 14px;
  }

  .hero-scope span + span::before {
    display: none;
  }

  .hero-next {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 78px;
    font-size: 24px;
  }

  .hero-pause {
    right: 78px;
    bottom: 80px;
  }

  .hero-scroll {
    display: none;
  }

  .manifesto {
    display: block;
    padding: 38px 4px;
  }

  .manifesto strong {
    display: block;
    margin-top: 14px;
    font-size: 22px;
  }

  .manifesto span {
    display: block;
    margin-top: 18px;
    text-align: left;
  }

  .services,
  .updates {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-heading {
    display: block;
    margin-bottom: 46px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact h2 {
    margin-top: 20px;
    font-size: 42px;
    line-height: 1.25;
  }

  .section-heading > p:last-child {
    margin-top: 24px;
    font-size: 16px;
  }

  .service-selector {
    display: block;
  }

  .service-tab {
    min-height: 104px;
    padding: 18px 8px;
    border-left: 0;
  }

  .service-tab:hover,
  .service-tab.active {
    padding-left: 20px;
  }

  .service-tab strong {
    font-size: 21px;
  }

  .service-tab span {
    font-size: 15px;
  }

  .service-image-wrap {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .service-copy {
    display: block;
    padding: 28px 22px 30px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-copy > p:first-child {
    margin-bottom: 10px;
  }

  .service-copy h3 {
    font-size: 30px;
  }

  .service-copy > p:not(:first-child) {
    font-size: 15px;
  }

  .service-copy a {
    margin-top: 0;
  }

  .updates-scroll {
    height: 240vh;
    min-height: 1600px;
  }

  .updates-sticky {
    height: calc(100svh - 74px);
    min-height: 0;
    max-height: none;
    grid-template-rows: minmax(0, 1fr) 96px;
    top: 64px;
  }

  .update-story-track {
    --story-card: calc(100vw - 48px);
    gap: 16px;
  }

  .update-story {
    height: min(590px, calc(100% - 18px));
    grid-template-columns: 1fr;
    grid-template-rows: minmax(190px, 60%) minmax(0, 40%);
  }

  .update-story-copy {
    justify-content: center;
    padding: 20px;
  }

  .update-story-copy h3 {
    margin: 12px 0 8px;
    font-size: 21px;
  }

  .update-story-copy p {
    font-size: 14px;
    line-height: 1.7;
  }

  .update-jump {
    grid-template-columns: 1fr 1fr;
  }

  .update-jump button {
    border-top: 1px solid var(--line);
    font-size: 14px;
  }

  .update-jump button:nth-child(odd) {
    border-left: 0;
  }

  .verification-banner {
    display: block;
    margin-top: 54px;
    padding: 32px 4px;
  }

  .verification-banner h3 {
    margin-top: 14px;
    font-size: 23px;
  }

  .verification-banner p {
    margin-top: 14px;
  }

  .verification-banner a {
    display: inline-block;
    margin-top: 20px;
  }

  .about {
    min-height: 760px;
  }

  .about-inner {
    gap: 56px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .about-copy h2 {
    font-size: 48px;
  }

  .about-copy > p:last-child {
    margin-top: 26px;
    font-size: 17px;
  }

  .method-steps article {
    grid-template-columns: 68px minmax(0, 1fr) 22px;
    gap: 12px;
  }

  .method-steps h3 {
    font-size: 20px;
  }

  .contact {
    min-height: 0;
    display: block;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .contact-details {
    margin-top: 60px;
  }

  .contact-details > p {
    font-size: 17px;
  }

  .footer-main,
  .footer-bottom {
    display: block;
  }

  .footer-nav {
    flex-wrap: wrap;
    margin: 34px 0 0;
  }

  .back-top {
    margin: 28px 0 0;
  }

  .footer-bottom span {
    display: block;
    margin-top: 10px;
  }
}

@media (max-width: 980px) {
  .needs-section,
  .resources-section,
  .capabilities-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .need-row {
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1fr) 28px;
    gap: 28px;
  }

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

  .capability-group:nth-child(odd) {
    border-left: 0;
  }

  .capability-group:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .deliverables-sticky {
    grid-template-columns: minmax(290px, .65fr) minmax(0, 1.35fr);
    gap: 38px;
  }

  .deliverables-intro h2,
  .facts-inner h2 {
    font-size: 42px;
  }

  .deliverable-item {
    width: 380px;
    min-width: 340px;
    min-height: 440px;
  }

  .facts-inner {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 90px;
  }

  .facts-inner > a {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .needs-section,
  .resources-section,
  .capabilities-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .compact-heading,
  .capabilities-heading {
    margin-bottom: 42px;
  }

  .need-row {
    width: calc(100vw - 56px);
    min-width: calc(100vw - 56px);
    min-height: 238px;
    grid-template-columns: 1fr 24px;
    align-content: start;
    gap: 10px 14px;
    padding: 26px 22px;
    border: 1px solid var(--line);
    background: var(--white);
    scroll-snap-align: start;
  }

  .need-row p {
    grid-column: 1 / -1;
    font-size: 15px;
  }

  .need-row h3 {
    font-size: 23px;
    line-height: 1.45;
  }

  .needs-list {
    width: calc(100vw - 16px);
    display: flex;
    gap: 12px;
    overflow-x: auto;
    border-top: 0;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .need-row:hover,
  .need-row:focus-visible {
    padding: 26px 22px;
  }

  .service-selector {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-tab {
    width: 190px;
    min-width: 190px;
    min-height: 82px;
    padding: 14px 18px;
    border-left: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .service-tab:hover,
  .service-tab.active {
    padding-left: 18px;
  }

  .service-tab strong {
    font-size: 18px;
  }

  .service-tab span,
  .service-tab b {
    display: none;
  }

  .capability-grid {
    width: calc(100vw - 16px);
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .capability-group {
    width: calc(100vw - 56px);
    min-width: calc(100vw - 56px);
    min-height: 318px;
    padding: 28px 24px 30px;
    border: 1px solid var(--line) !important;
    background: #f7f9f8;
    scroll-snap-align: start;
  }

  .capability-group + .capability-group {
    border-top: 1px solid var(--line);
  }

  .capability-group h3 {
    min-height: 0;
    margin-bottom: 24px;
    font-size: 23px;
  }

  .capability-marquee div {
    font-size: 16px;
  }

  .deliverables-scroll {
    height: auto;
    min-height: 0;
  }

  .deliverables-sticky {
    width: calc(100% - 32px);
    height: auto;
    display: block;
    position: static;
    padding-block: 72px;
    overflow: visible;
  }

  .deliverables-intro h2,
  .facts-inner h2 {
    font-size: 37px;
  }

  .deliverables-viewport {
    width: calc(100vw - 16px);
    margin-top: 38px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .deliverables-track {
    transform: none !important;
  }

  .deliverable-item {
    width: calc(100vw - 64px);
    min-width: calc(100vw - 64px);
    min-height: 350px;
    padding: 30px;
    opacity: 1;
    transform: none;
    scroll-snap-align: start;
  }

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

  .resource-item:nth-child(n) {
    min-height: 112px;
    padding: 20px 0;
    border-left: 0;
  }

  .method-steps article {
    grid-template-columns: 1fr 20px;
  }

  .facts-inner {
    min-height: 0;
    padding-block: 64px;
  }

  .facts-inner dl {
    grid-template-columns: 1fr;
  }

  .facts-inner dl div:nth-child(n) {
    min-height: 88px;
    padding: 16px 0;
    border-left: 0;
  }

  .updates {
    padding-block: 72px;
  }

  .updates-scroll {
    width: 100vw;
    height: auto;
    min-height: 0;
    margin-inline: calc((100vw - 100%) / -2);
  }

  .updates-sticky {
    width: 100vw;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    position: static;
    overflow: visible;
  }

  .update-story-viewport {
    width: 100vw;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .update-story-track {
    --story-card: calc(100vw - 40px);
    height: auto;
    gap: 12px;
    align-items: stretch;
    padding-inline: 16px;
    transform: none !important;
    transition: none;
  }

  .update-story {
    height: 560px;
    grid-template-rows: minmax(250px, 54%) minmax(0, 46%);
    opacity: 1;
    transform: none;
    scroll-snap-align: center;
  }

  .update-story-copy {
    justify-content: flex-start;
    padding: 24px 22px;
  }

  .update-story-copy > span,
  .update-story-copy p,
  .update-jump button {
    font-size: 15px;
  }

  .update-story-copy h3 {
    margin: 14px 0 10px;
    font-size: 23px;
    line-height: 1.45;
  }

  .update-jump {
    order: -1;
    width: calc(100% - 32px);
    display: flex;
    margin: 0 auto 18px;
    overflow-x: auto;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }

  .update-jump button {
    min-width: max-content;
    min-height: 48px;
    padding-inline: 18px;
    border-left: 0;
  }

  .update-jump button::after {
    right: 18px;
    left: 18px;
  }

  .about {
    min-height: 0;
  }

  .about-inner {
    gap: 44px;
    padding-block: 72px;
  }

  .about-copy h2 {
    font-size: 40px;
  }

  .about-copy > p:last-child {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.8;
  }

  .method-steps {
    width: calc(100vw - 16px);
    display: flex;
    gap: 12px;
    overflow-x: auto;
    border-top: 0;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .method-steps article {
    width: calc(100vw - 56px);
    min-width: calc(100vw - 56px);
    min-height: 370px;
    align-content: start;
    padding: 26px 24px;
    border: 1px solid rgba(255, 255, 255, .28);
    scroll-snap-align: start;
  }

  .method-steps article:hover {
    padding: 26px 24px;
  }

  .method-steps span,
  .method-steps h3,
  .method-steps p {
    grid-column: 1;
  }

  .method-steps h3 {
    margin-top: 18px;
    font-size: 23px;
    line-height: 1.45;
  }

  .method-steps p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.75;
  }

  .method-steps b {
    grid-row: 1;
    grid-column: 2;
  }

}

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