@import url("./fonts/manrope/wght.css");
@import url("./fonts/noto-sans-sc/wght.css");

:root {
  color-scheme: light;
  --blue: #2377f2;
  --blue-deep: #071a45;
  --blue-mid: #8cb8f2;
  --blue-pale: #e7f0ff;
  --blue-mist: #f1f6fc;
  --ink: #111722;
  --muted: #657083;
  --line: rgba(17, 23, 34, 0.15);
  --white: #ffffff;
  --black: #03060d;
  --font-cn: "Noto Sans SC Variable", "Microsoft YaHei", sans-serif;
  --font-en: "Manrope Variable", Arial, sans-serif;
  --shell: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  letter-spacing: 0;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

button {
  border: 0;
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

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

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(92px, 10vw, 150px);
}

.section--dark {
  color: var(--white);
  background: var(--blue-deep);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(3, 6, 13, 0.08);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background-color: rgba(7, 26, 69, 0.96);
  box-shadow: 0 16px 42px rgba(3, 9, 25, 0.18);
}

.site-header--inner {
  color: var(--ink);
  border-bottom-color: rgba(17, 23, 34, 0.12);
  background-color: rgba(255, 255, 255, 0.98);
}

.site-header--inner.is-scrolled {
  color: var(--ink);
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(3, 9, 25, 0.12);
}

.site-header--inner .header-cta {
  color: var(--ink);
}

.site-header--inner .header-cta img,
.site-header--inner .menu-toggle img {
  filter: none;
}

.site-header--inner .header-cta:hover {
  color: var(--white);
  border-color: var(--blue-deep);
  background: var(--blue-deep);
}

.site-header--inner .header-cta:hover img {
  filter: brightness(0) invert(1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  display: block;
  width: clamp(198px, 18vw, 246px);
  flex: 0 0 auto;
}

.brand__logo {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 32px);
  min-width: 0;
  margin-left: auto;
}

.desktop-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  font-size: 13px;
  font-weight: 520;
  white-space: nowrap;
}

.desktop-nav__item {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 3px;
}

.desktop-nav__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  padding: 0 0 0 2px;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.desktop-nav__trigger img {
  width: 13px;
  height: 13px;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.site-header:not(.site-header--inner) .desktop-nav__trigger img {
  filter: brightness(0) invert(1);
}

.desktop-nav__item.is-open .desktop-nav__trigger img {
  transform: rotate(-90deg);
}

.desktop-nav__link span {
  display: none;
}

.desktop-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav__link:hover::after,
.desktop-nav__link.is-active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: fixed;
  z-index: 1010;
  top: var(--header-height);
  left: 50%;
  width: min(1060px, calc(100vw - (var(--gutter) * 2)));
  padding: 34px;
  color: var(--ink);
  border: 1px solid rgba(17, 23, 34, 0.14);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(3, 9, 25, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -12px);
  transition: opacity 190ms ease, visibility 190ms ease, transform 190ms ease;
}

.desktop-nav__item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown__heading {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.nav-dropdown__heading > span {
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 750;
}

.nav-dropdown__heading div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.nav-dropdown__heading strong {
  font-size: 28px;
  font-weight: 580;
}

.nav-dropdown__heading small {
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.nav-dropdown__grid--insights {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.nav-dropdown__grid a {
  display: flex;
  flex-direction: column;
  min-height: 142px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-dropdown__grid a > span {
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.nav-dropdown__grid a strong {
  margin-top: auto;
  font-size: 17px;
  font-weight: 590;
}

.nav-dropdown__grid a small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 9px;
}

.nav-dropdown__grid a:hover {
  color: var(--white);
  background: var(--blue);
}

.nav-dropdown__grid a:hover > span,
.nav-dropdown__grid a:hover small {
  color: rgba(255, 255, 255, 0.72);
}

.nav-dropdown__sub {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

.nav-dropdown__sub > span {
  color: var(--ink);
  font-weight: 650;
}

.nav-dropdown__sub a {
  border-bottom: 1px solid transparent;
}

.nav-dropdown__sub a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 20px;
  gap: 22px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta {
  flex: 0 0 auto;
  min-height: 46px;
  padding-inline: 18px;
}

.header-cta img,
.button img {
  filter: brightness(0) invert(1);
}

.header-cta:hover,
.button--light:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.header-cta:hover img,
.button--light:hover img {
  filter: none;
}

.button--light {
  color: var(--white);
  background: transparent;
}

.button--light img {
  filter: none;
}

.button--light:hover img {
  filter: brightness(0) invert(1);
}

.button--solid-light {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.button--solid-light img {
  filter: none;
}

.button--solid-light:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-2px);
}

.button--solid-light:hover img {
  filter: brightness(0) invert(1);
}

.button--dark {
  color: var(--white);
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.button--dark img {
  filter: brightness(0) invert(1);
}

.button--dark:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.text-link {
  position: relative;
  display: inline-block;
  padding-block: 3px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 650;
}

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

button.text-link {
  padding: 3px 0;
  background: transparent;
  cursor: pointer;
}

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

.hero {
  --hero-pointer-x: 0px;
  --hero-pointer-y: 0px;
  --hero-scroll-y: 0px;
  position: relative;
  display: grid;
  min-height: 100svh;
  height: 100svh;
  max-height: none;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  inset: -4%;
  width: auto;
  height: auto;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--hero-pointer-x), calc(var(--hero-pointer-y) + var(--hero-scroll-y)), 0) scale(1.035);
  transform-origin: 68% 48%;
}

.hero__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-sculpture-cycle 56s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  backface-visibility: hidden;
  transform-origin: 68% 48%;
}

.hero.is-motion-active .hero__media,
.hero.is-motion-active .hero__art,
.hero.is-motion-active .hero__veil,
.hero.is-motion-active .hero__brand-stage,
.page-hero.is-motion-active .page-hero__media,
.page-hero.is-motion-active .page-hero__art {
  will-change: transform;
}

.hero:not(.is-motion-active) .hero__art,
.hero:not(.is-motion-active) .hero__veil,
.hero:not(.is-motion-active) .hero__brand-stage,
.page-hero:not(.is-motion-active) .page-hero__art {
  animation-play-state: paused;
}

@keyframes hero-sculpture-cycle {
  0%, 20% {
    opacity: 1;
    filter: brightness(1) saturate(1);
    transform: translate3d(-1.25%, -0.65%, 0) scale(1.035) rotate(-0.12deg);
  }
  29% {
    opacity: 0.3;
    filter: brightness(0.5) saturate(0.72);
    transform: translate3d(-0.45%, -0.2%, 0) scale(1.1) rotate(0.02deg);
  }
  34%, 66% {
    opacity: 0.06;
    filter: brightness(0.2) saturate(0.32);
    transform: translate3d(0.2%, 0.15%, 0) scale(1.14) rotate(0.08deg);
  }
  74% {
    opacity: 0.52;
    filter: brightness(0.78) saturate(0.82);
    transform: translate3d(1.5%, 0.9%, 0) scale(1.65) rotate(0.16deg);
  }
  86% {
    opacity: 1;
    filter: brightness(1) saturate(1);
    transform: translate3d(1.35%, 0.8%, 0) scale(1.46) rotate(0.13deg);
  }
  100% {
    opacity: 1;
    filter: brightness(1) saturate(1);
    transform: translate3d(-1.25%, -0.65%, 0) scale(1.035) rotate(-0.12deg);
  }
}

@keyframes hero-veil-cycle {
  0%, 20% { background: rgba(1, 5, 14, 0.18); }
  34%, 66% { background: rgba(0, 3, 13, 0.94); }
  74% { background: rgba(1, 5, 14, 0.46); }
  86%, 100% { background: rgba(1, 5, 14, 0.18); }
}

@keyframes hero-brand-cycle {
  0%, 27% {
    opacity: 0;
    transform: translate3d(-50%, calc(-50% + 18px), 0) scale(0.96);
  }
  35%, 64% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  73%, 100% {
    opacity: 0;
    transform: translate3d(-50%, calc(-50% - 18px), 0) scale(1.035);
  }
}

.hero__veil {
  background: rgba(1, 5, 14, 0.18);
  animation: hero-veil-cycle 56s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.hero__brand-stage {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(38vw, 540px);
  min-width: 330px;
  max-width: calc(100% - 80px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, calc(-50% + 18px), 0) scale(0.96);
  animation: hero-brand-cycle 56s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.hero__brand-stage img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: calc(var(--header-height) + 40px) 0 72px;
}

.hero__copy {
  width: min(520px, 64vw);
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(46px, 5.2vw, 76px);
  font-weight: 520;
  line-height: 1.12;
}

.hero__lead {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 650;
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  line-height: 2;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
}

.scroll-cue img {
  filter: brightness(0) invert(1);
  transform: rotate(90deg);
}

.services {
  overflow: hidden;
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  margin-bottom: 72px;
}

.section-heading h2,
.about__copy h2,
.contact__intro h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 520;
  line-height: 1.12;
}

.section-heading__aside {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1.8;
  text-align: right;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-tab {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 128px;
  padding: 28px;
  column-gap: 22px;
  color: var(--ink);
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.service-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-tab:hover,
.service-tab.is-active {
  background: var(--blue-pale);
}

.service-tab.is-active::after {
  transform: scaleX(1);
}

.service-tab span {
  grid-row: 1 / 3;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
}

.service-tab strong {
  font-size: 22px;
  font-weight: 590;
}

.service-tab small {
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-panels {
  position: relative;
}

.section-route {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.section-route a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  gap: 26px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.section-route a span {
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 9px;
  text-transform: uppercase;
}

.section-route a:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.section-route a:hover span {
  color: rgba(255, 255, 255, 0.7);
}

.section-route a:hover img {
  filter: brightness(0) invert(1);
}

.section-route--dark a {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.section-route--dark a span {
  color: rgba(255, 255, 255, 0.5);
}

.section-route--dark a img {
  filter: brightness(0) invert(1);
}

.service-panel {
  min-height: 600px;
  padding: clamp(38px, 5.5vw, 72px);
  background: var(--blue-pale);
  animation: panel-enter 320ms ease both;
}

@keyframes panel-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-panel__intro {
  display: grid;
  grid-template-columns: 160px 1fr minmax(250px, 0.55fr);
  align-items: start;
  gap: 30px;
  margin-bottom: clamp(70px, 9vw, 116px);
}

.service-panel__intro > p {
  margin: 16px 0 0;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
}

.service-panel__intro h3 {
  margin: 0;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 620;
  line-height: 0.98;
}

.service-panel__intro div {
  padding-top: 12px;
  border-top: 1px solid rgba(17, 23, 34, 0.28);
}

.service-panel__intro div p {
  max-width: 390px;
  margin: 0;
  color: #47536a;
  font-size: 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 23, 34, 0.16);
  border-left: 1px solid rgba(17, 23, 34, 0.16);
}

.feature-card {
  min-height: 242px;
  padding: 30px;
  border-right: 1px solid rgba(17, 23, 34, 0.16);
  border-bottom: 1px solid rgba(17, 23, 34, 0.16);
  background: rgba(255, 255, 255, 0.54);
  transition: background-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.feature-card > img {
  width: 34px;
  height: 34px;
  margin-bottom: 46px;
  color: var(--blue);
}

.feature-card h4 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 620;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.philosophy {
  min-height: 940px;
  overflow: hidden;
}

.philosophy__mark {
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: min(60vw, 760px);
  opacity: 0.12;
  transform: rotate(-8deg);
}

.philosophy__content {
  position: relative;
  z-index: 1;
}

.philosophy__heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.philosophy__heading h2 {
  margin: 0;
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 500;
  line-height: 1;
}

.philosophy__body {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(40px, 8vw, 120px);
  padding: 78px 0 86px;
}

.philosophy__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.9;
}

.philosophy blockquote {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 560;
  line-height: 1.22;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.principle-list article {
  min-height: 184px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.principle-list span {
  color: var(--blue-mid);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
}

.principle-list h3 {
  margin: 48px 0 4px;
  font-size: 20px;
  font-weight: 560;
}

.principle-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
}

.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 620px;
}

.about__brand {
  display: grid;
  place-items: center;
  padding: clamp(46px, 7vw, 92px);
  background: var(--blue-mist);
}

.about__brand img {
  width: min(100%, 520px);
}

.about__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(52px, 8vw, 112px);
  border: 1px solid var(--line);
  border-left: 0;
}

.about__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 34px 0 40px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.app-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(220px, 0.5fr);
  align-items: center;
  margin-top: 54px;
  padding: clamp(34px, 5vw, 68px);
  gap: clamp(34px, 5vw, 70px);
  color: var(--white);
  background: var(--blue-deep);
}

.app-card__icon img {
  width: 100%;
  height: auto;
}

.app-card__copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 520;
  line-height: 1.1;
}

.app-card__copy > p:last-child {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.app-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.app-card__actions > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.contact {
  background: var(--blue-mist);
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 140px);
}

.contact__intro > p:not(.eyebrow) {
  max-width: 460px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact__location {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 650;
}

.contact-form {
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field--full {
  grid-column: 1 / -1;
}

.field > span {
  font-size: 12px;
  font-weight: 620;
}

.field b {
  color: var(--blue);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 23, 34, 0.32);
  border-radius: 0;
  outline: none;
  background: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field select {
  min-height: 53px;
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 2px 0 var(--blue);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: #b42318;
}

.form-note {
  max-width: 720px;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.form-success {
  align-self: stretch;
  padding: clamp(42px, 7vw, 90px);
  color: var(--white);
  background: var(--blue-deep);
}

.form-success > img {
  margin-bottom: 46px;
  filter: brightness(0) invert(1);
}

.form-success h3 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 540;
  line-height: 1.16;
}

.form-success > p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 40px;
  color: rgba(255, 255, 255, 0.68);
}

.form-success .text-link {
  color: var(--white);
}

.site-footer {
  color: var(--white);
  background: var(--black);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 160px);
  padding-block: 92px;
}

.site-footer__brand > img {
  width: min(100%, 430px);
}

.site-footer__brand > p {
  margin: 42px 0 0;
  font-size: 18px;
}

.site-footer__brand > p span {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-en);
  font-size: 13px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
  transition: background-color 180ms ease;
}

.site-footer__nav a:hover {
  background: rgba(35, 119, 242, 0.28);
}

.site-footer__nav span {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-en);
  font-size: 10px;
  text-transform: uppercase;
}

.site-footer__legal {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-block: 28px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.site-footer__legal > p {
  max-width: 880px;
  margin: 0;
}

.site-footer__legal > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-en);
  white-space: nowrap;
}

.site-footer__legal b {
  font-weight: inherit;
}

.back-to-top {
  position: fixed;
  z-index: 850;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-deep);
}

.back-to-top img {
  filter: brightness(0) invert(1);
  transform: rotate(-90deg);
}

.noscript {
  position: fixed;
  z-index: 2000;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 12px 20px;
  color: var(--white);
  background: #b42318;
  text-align: center;
}

[data-reveal] {
  transition: opacity 660ms ease, transform 660ms ease;
}

[data-reveal].is-pending {
  opacity: 0;
  transform: translateY(24px);
}

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

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .service-panel__intro {
    grid-template-columns: 120px 1fr;
  }

  .service-panel__intro > div {
    grid-column: 2;
  }

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

  .app-card {
    grid-template-columns: 170px 1fr;
  }

  .app-card__actions {
    grid-column: 2;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 76px;
  }

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

  .site-header:not(.site-header--inner) {
    background-color: rgba(7, 26, 69, 0.96);
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    cursor: pointer;
  }

  .site-header:not(.site-header--inner) .menu-toggle img {
    filter: brightness(0) invert(1);
  }

  .mobile-menu {
    position: fixed;
    z-index: 990;
    inset: var(--header-height) 0 auto;
    display: block;
    max-height: calc(100svh - var(--header-height));
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 24px 56px rgba(3, 9, 25, 0.18);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transform: translateY(-8px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

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

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mobile-menu__nav > a,
  .mobile-nav-group__link {
    display: grid;
    grid-template-columns: 36px 1fr auto auto;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(20px, 5.5vw, 30px);
    font-weight: 520;
    line-height: 1.2;
  }

  .mobile-nav-group {
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-group__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: stretch;
  }

  .mobile-nav-group__link {
    min-width: 0;
  }

  .mobile-nav-group__trigger {
    display: grid;
    place-items: center;
    width: 48px;
    padding: 0;
    color: var(--blue);
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .mobile-nav-group__trigger::after {
    color: var(--blue);
    content: "+";
    font-family: var(--font-en);
    font-size: 18px;
  }

  .mobile-nav-group.is-open > .mobile-nav-group__row .mobile-nav-group__trigger::after {
    content: "−";
  }

  .mobile-nav-sub {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
    background: var(--pale);
  }

  .mobile-nav-sub a {
    display: flex;
    flex-direction: column;
    min-height: 74px;
    padding: 15px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 540;
  }

  .mobile-nav-sub a small {
    margin-top: 3px;
    color: var(--muted);
    font-family: var(--font-en);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-menu__nav span,
  .mobile-menu__nav > a small,
  .mobile-nav-group__link small {
    color: var(--muted);
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-menu__foot {
    padding-top: 12px;
    padding-bottom: 18px;
    color: var(--muted);
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 700;
  }

}

@media (max-width: 900px) {

  .hero {
    min-height: 680px;
    height: 100svh;
  }

  .hero__art {
    object-position: 64% center;
  }

  .hero__content {
    padding-bottom: 40px;
  }

  .hero__copy {
    width: min(680px, 100%);
  }

  .hero__meta,
  .scroll-cue {
    display: none;
  }

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

  .section-heading__aside {
    text-align: left;
  }

  .service-tab {
    min-height: 110px;
    padding: 22px;
  }

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

  .service-panel {
    padding: 34px;
  }

  .service-panel__intro {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 58px;
  }

  .service-panel__intro > p {
    margin: 0;
  }

  .service-panel__intro > div {
    grid-column: 1;
  }

  .philosophy__heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

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

  .about__brand {
    min-height: 460px;
  }

  .about__copy {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

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

  .contact__intro {
    max-width: 650px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__legal {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__legal > div {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 206px;
  }

  .hero {
    min-height: 660px;
  }

  .hero__art {
    object-position: 61% center;
  }

  .hero__brand-stage {
    width: min(72vw, 440px);
    min-width: 0;
    max-width: calc(100% - 40px);
  }

  .hero__veil {
    background: rgba(1, 5, 14, 0.28);
  }

  .hero__copy {
    padding: 0;
    backdrop-filter: none;
  }

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

  .hero__lead {
    max-width: 420px;
    margin-top: 0;
    font-size: 14px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 26px;
  }

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

  .section-heading h2,
  .about__copy h2,
  .contact__intro h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

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

  .service-tab {
    min-height: 92px;
  }

  .service-panel {
    padding: 26px;
  }

  .service-panel__intro h3 {
    font-size: 52px;
  }

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

  .feature-card {
    min-height: 216px;
  }

  .philosophy {
    min-height: auto;
  }

  .philosophy__heading h2 {
    font-size: clamp(52px, 16vw, 74px);
  }

  .philosophy__body {
    padding: 54px 0 62px;
  }

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

  .principle-list article {
    min-height: 154px;
  }

  .principle-list h3 {
    margin-top: 34px;
  }

  .about__brand {
    min-height: 360px;
    padding: 42px 24px;
  }

  .about__copy {
    padding: 54px 26px;
  }

  .app-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .app-card__icon {
    width: 112px;
  }

  .app-card__actions {
    grid-column: 1;
  }

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

  .field--full {
    grid-column: auto;
  }

  .site-footer__top {
    padding-block: 68px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero__media,
  .page-hero__media,
  .hero__art,
  .page-hero__art,
  .hero__veil,
  .hero__brand-stage {
    animation: none !important;
    transform: none !important;
    will-change: auto !important;
  }

  .hero__brand-stage {
    display: none;
  }

}
