:root {
  --ink: #202327;
  --paper: #f3f4f2;
  --white: #ffffff;
  --blue: #003c87;
  --blue-light: #154a8c;
  --blue-pale: #95aac6;
  --scroll-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.is-locked {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

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

.section-shell {
  width: min(100% - 40px, 1340px);
  margin-inline: auto;
}

.vaulta-js [data-reveal] {
  opacity: 0;
  transform: translateY(54px);
  transition:
    opacity 0.9s ease,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.intro-loader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  transition:
    clip-path 0.65s cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0s linear 0.65s;
  clip-path: inset(0 0 0 0);
}

.vaulta-js .intro-loader {
  display: grid;
}

.intro-loader--done {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}

.intro-loader__line {
  overflow: hidden;
  line-height: 0.72;
}

.intro-loader__line span {
  display: block;
  font-size: clamp(4.5rem, 15vw, 13.5rem);
  font-weight: 700;
  letter-spacing: -0.085em;
  transform: translateY(115%);
  animation: loader-word 0.65s 0.08s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-loader p {
  position: absolute;
  left: 50%;
  bottom: 9vh;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.28em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.intro-loader__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: rgba(255, 255, 255, 0.26);
}

.intro-loader__progress::after {
  content: "";
  display: block;
  height: 100%;
  background: var(--white);
  transform-origin: left;
  animation: loader-progress 0.82s 0.06s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes loader-word {
  to {
    transform: translateY(0);
  }
}

@keyframes loader-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 112px;
  padding: 0 60px;
  color: var(--white);
  mix-blend-mode: difference;
  transition: height 0.45s ease;
}

.site-header--menu-open {
  z-index: 1300;
  mix-blend-mode: normal;
}

.site-header--scrolled {
  height: 84px;
}

body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .menu-overlay {
  top: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  transition: opacity 0.3s ease;
}

.brand__mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.69rem;
}

.brand__name {
  letter-spacing: 0.06em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.site-header--menu-open .brand,
.site-header--menu-open .desktop-nav {
  opacity: 0;
  pointer-events: none;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

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

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

.menu-button {
  position: fixed;
  z-index: 1200;
  top: 29px;
  right: 60px;
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  mix-blend-mode: difference;
  transition:
    transform 0.4s ease,
    top 0.45s ease;
}

.site-header--scrolled .menu-button {
  top: 15px;
}

.menu-button:hover {
  transform: rotate(90deg) scale(1.1);
}

.menu-button span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transition:
    width 0.35s ease,
    height 0.35s ease,
    transform 0.35s ease;
}

.menu-button--open {
  mix-blend-mode: normal;
}

.menu-button--open span {
  position: absolute;
  width: 15px;
  height: 1px;
  border-radius: 0;
}

.menu-button--open span:first-child {
  transform: rotate(45deg);
}

.menu-button--open span:last-child {
  transform: rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  z-index: 1100;
  inset: 0;
  color: var(--white);
  background: rgba(24, 31, 41, 0.84);
  backdrop-filter: blur(35px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    visibility 0s linear 0.45s;
}

.menu-overlay--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.menu-overlay__grain {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  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='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  pointer-events: none;
}

.menu-overlay__inner {
  position: relative;
  display: grid;
  width: min(100% - 120px, 1240px);
  height: 100%;
  margin-inline: auto;
  align-content: center;
}

.menu-overlay__eyebrow {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
}

.menu-overlay nav {
  display: grid;
}

.menu-overlay nav a {
  display: flex;
  align-items: baseline;
  gap: 34px;
  width: fit-content;
  font-size: clamp(2.7rem, 6.5vw, 6.6rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1.02;
  transition:
    opacity 0.3s ease,
    transform 0.4s ease;
}

.menu-overlay nav:hover a {
  opacity: 0.28;
}

.menu-overlay nav a:hover {
  opacity: 1;
  transform: translateX(18px);
}

.menu-overlay nav a span {
  width: 28px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.menu-overlay__foot {
  position: absolute;
  right: 0;
  bottom: 42px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
}

.menu-overlay__foot p {
  margin: 0;
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  padding: 20px;
  background: var(--paper);
}

.hero__frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  color: var(--white);
  background: #0d1219;
}

.hero__media,
.hero__image,
.hero__veil,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__media {
  transform: translateY(calc(var(--scroll-y) * 0.28));
}

.hero__image {
  width: 100%;
  height: calc(100% + 40px);
  object-fit: cover;
  opacity: 0;
  transform: scale(1.09);
  transition:
    opacity 1.35s ease,
    transform 7s cubic-bezier(0.2, 0.55, 0.25, 1);
}

.hero__image--active {
  opacity: 1;
  transform: scale(1.015);
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(5, 12, 23, 0.43), transparent 38%),
    linear-gradient(0deg, rgba(4, 13, 25, 0.66), transparent 55%),
    linear-gradient(90deg, rgba(0, 36, 84, 0.3), transparent 58%);
}

.hero__grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 25% 100%, 100% 25%;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero__topline {
  position: absolute;
  z-index: 2;
  top: 96px;
  right: 40px;
  left: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.2em;
}

.hero__topline p {
  margin: 0;
}

.hero__copy {
  position: absolute;
  z-index: 2;
  top: 25%;
  left: 6.2%;
}

.hero__kicker {
  margin: 0 0 23px 4px;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.hero__copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5.6vw, 5.9rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 1.08;
}

.hero__wordmark {
  position: absolute;
  z-index: 2;
  right: 3.3%;
  bottom: 2.9%;
  left: 3.3%;
  font-size: clamp(5.5rem, 16.5vw, 15.8rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.72;
  white-space: nowrap;
}

.hero__action {
  position: absolute;
  z-index: 3;
  right: 4.3%;
  bottom: 28%;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.hero__action i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-size: 0.9rem;
  font-style: normal;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.hero__action:hover i {
  color: var(--blue);
  background: var(--white);
  transform: rotate(-45deg);
}

.hero__counter {
  position: absolute;
  z-index: 3;
  right: 4.2%;
  bottom: 19%;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.58rem;
}

.hero__counter-line {
  display: block;
  width: 68px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.hero__counter-line i {
  display: block;
  height: 100%;
  background: var(--white);
  transition: width 0.5s ease;
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(32, 35, 39, 0.25);
}

.hero__scroll i::after {
  content: "";
  display: block;
  width: 100%;
  height: 45%;
  background: var(--ink);
  animation: scroll-pulse 1.7s ease-in-out infinite;
}

@keyframes scroll-pulse {
  from {
    transform: translateY(-110%);
  }
  to {
    transform: translateY(250%);
  }
}

.news-strip {
  padding: 98px 0 130px;
}

.news-strip__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: start;
  gap: 54px;
}

.news-strip__title {
  display: flex;
  flex-direction: column;
}

.news-strip__title span {
  font-size: 4.6rem;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.news-strip__title small {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 650;
}

.news-strip__inner > a {
  display: grid;
  grid-template-columns: 120px 170px 1fr 24px;
  align-items: center;
  gap: 24px;
  padding: 20px 0 26px;
  border-bottom: 1px solid #c8cac7;
  font-size: 0.8rem;
}

.news-strip time {
  font-weight: 650;
}

.news-strip em {
  justify-self: start;
  padding: 6px 13px;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 7px;
  font-style: normal;
  font-size: 0.68rem;
}

.news-strip strong {
  font-weight: 500;
}

.news-strip i {
  font-size: 1.15rem;
  font-style: normal;
  transition: transform 0.3s ease;
}

.news-strip a:hover i {
  transform: translate(4px, -4px);
}

.manifesto {
  padding: 40px 0 210px;
}

.manifesto__index {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid #c8cac7;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.manifesto__index span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  letter-spacing: 0;
}

.manifesto__index p {
  margin: 0;
}

.manifesto__copy {
  padding-top: 94px;
}

.manifesto__lead {
  margin: 0 0 46px 0.6vw;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.75;
}

.manifesto h2 {
  margin: 0;
  font-size: clamp(4rem, 10.5vw, 10.5rem);
  font-weight: 650;
  letter-spacing: -0.085em;
  line-height: 0.94;
}

.manifesto h2 span {
  color: var(--blue);
}

.manifesto__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 310px));
  justify-content: end;
  gap: 56px;
  margin-top: 82px;
}

.manifesto__body p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 2;
}

.statement-marquee {
  overflow: hidden;
  padding-block: 23px;
  color: var(--white);
  background: var(--ink);
}

.statement-marquee div,
.business__ticker div {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.statement-marquee span {
  padding-right: 7vw;
  font-size: clamp(1.35rem, 3vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

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

.business {
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.business__ticker {
  overflow: hidden;
  padding-block: 34px;
}

.business__ticker div {
  animation-duration: 22s;
}

.business__ticker span {
  padding-right: 120px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.business__visual {
  position: relative;
  width: calc(100% - 40px);
  height: min(72vw, 820px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: 13px;
}

.business__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 30, 69, 0.65), transparent 65%),
    linear-gradient(0deg, rgba(1, 28, 65, 0.45), transparent 45%);
}

.business__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.business__visual.is-visible img {
  transform: scale(1);
}

.business__visual-copy {
  position: absolute;
  z-index: 2;
  top: 11%;
  left: 6%;
}

.business__visual-copy span {
  display: block;
  margin-bottom: 34px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.business__visual-copy strong {
  font-size: clamp(2.5rem, 5.5vw, 5.6rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 1.08;
}

.business__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 120px 0 100px;
}

.business__head h2 {
  margin: 0;
  font-size: clamp(4.3rem, 9vw, 8.4rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.76;
}

.business__head > div > p {
  margin: 22px 0 0 6px;
  font-size: 1rem;
  font-weight: 650;
}

.business__head > p {
  width: 340px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.9;
}

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

.service-card {
  position: relative;
  min-height: 470px;
  padding: 48px 50px;
  overflow: hidden;
  background: var(--blue);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-card:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.service-card--light {
  background: var(--blue-light);
}

.service-card__wipe {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-101%);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.service-card:hover .service-card__wipe {
  transform: translateY(101%);
}

.service-card__top,
.service-card__body,
.service-card__arrow {
  position: relative;
  z-index: 1;
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  color: var(--blue-pale);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.service-card__body {
  display: grid;
  height: 310px;
  align-content: space-between;
  margin-top: 50px;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  font-weight: 650;
  letter-spacing: -0.05em;
}

.service-card__sub {
  margin: 14px 0 0;
  color: #b7c7dc;
  font-size: 0.86rem;
}

.service-card__text {
  width: min(100%, 390px);
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.9;
}

.service-card__arrow {
  position: absolute;
  right: 48px;
  bottom: 46px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
}

.service-card:hover .service-card__arrow {
  color: var(--blue);
  background: var(--white);
  transform: rotate(45deg);
}

.business__ticker--bottom {
  margin-top: 55px;
  padding-bottom: 50px;
}

.focus {
  padding: 190px 0 210px;
  overflow: hidden;
  background: var(--paper);
}

.focus__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.focus__title > span,
.process__head > span {
  display: block;
  margin-bottom: 50px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.focus__title h2 {
  margin: 0;
  font-size: clamp(5rem, 11vw, 10.7rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.72;
}

.focus__title > p {
  margin: 28px 0 0 6px;
  font-size: 1rem;
  font-weight: 650;
}

.focus__lead {
  width: 360px;
  margin: 0 0 6px;
  font-size: 0.91rem;
  line-height: 1.95;
}

.focus__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 125px;
  border-top: 1px solid #bfc2bf;
  border-bottom: 1px solid #bfc2bf;
}

.focus__tabs button {
  position: relative;
  display: grid;
  min-height: 126px;
  padding: 24px 22px;
  text-align: left;
  color: var(--ink);
  border: 0;
  border-right: 1px solid #bfc2bf;
  background: transparent;
  cursor: pointer;
  transition:
    color 0.35s ease,
    background 0.35s ease;
}

.focus__tabs button:last-child {
  border-right: 0;
}

.focus__tabs button span {
  position: absolute;
  top: 24px;
  right: 22px;
  font-size: 0.65rem;
}

.focus__tabs button strong {
  align-self: end;
  font-size: 1.42rem;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.focus__tabs button small {
  margin-top: 8px;
  font-size: 0.72rem;
}

.focus__tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.focus__tabs button:hover,
.focus__tabs button.is-active {
  color: var(--white);
  background: var(--blue);
}

.focus__tabs button.is-active::after {
  transform: scaleX(1);
}

.focus__stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 760px;
  margin-top: 38px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink);
}

.focus__stage[hidden] {
  display: none;
}

.vaulta-js .focus__stage:not(.is-active) {
  display: none;
}

.focus__image-wrap {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.focus__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 60%, rgba(8, 17, 28, 0.58)),
    linear-gradient(0deg, rgba(4, 13, 25, 0.55), transparent 50%);
}

.focus__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: focus-image-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes focus-image-in {
  from {
    opacity: 0.2;
    transform: scale(1.08);
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0 0 0 0);
  }
}

.focus__image-wrap > span {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.focus__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 55px 50px 45px;
  color: var(--white);
  background: var(--blue);
}

.focus__content-number {
  position: absolute;
  top: 50px;
  right: 50px;
  color: #9fb3ce;
  font-size: 0.7rem;
}

.focus__content-label {
  margin: 0;
  color: #b7c7dc;
  font-size: 0.78rem;
}

.focus__content h3 {
  margin: 72px 0 0;
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.2;
}

.focus__content-text {
  margin: 38px 0 0;
  font-size: 0.86rem;
  line-height: 1.95;
}

.focus__content ol {
  display: grid;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.focus__content li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.focus__content li span {
  color: #a8bbd3;
  font-size: 0.65rem;
}

.focus__content li strong {
  font-size: 0.8rem;
  font-weight: 550;
}

.image-statement {
  position: relative;
  height: min(82vw, 960px);
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
}

.image-statement > img,
.image-statement__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-statement > img {
  object-fit: cover;
  object-position: center;
}

.image-statement__veil {
  background:
    linear-gradient(90deg, rgba(2, 13, 27, 0.82), rgba(2, 13, 27, 0.1) 68%),
    linear-gradient(0deg, rgba(2, 14, 31, 0.7), transparent 48%);
}

.image-statement__copy {
  position: absolute;
  z-index: 2;
  top: 16%;
  left: 7%;
}

.image-statement__copy > span {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.17em;
}

.image-statement__copy h2 {
  margin: 52px 0 0;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 1.08;
}

.image-statement__copy p {
  margin: 48px 0 0;
  font-size: 0.9rem;
  line-height: 2;
}

.image-statement__word {
  position: absolute;
  z-index: 2;
  right: 2.2%;
  bottom: 1.8%;
  left: 2.2%;
  font-size: clamp(6rem, 19.3vw, 18.5rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.72;
  white-space: nowrap;
}

.process {
  padding: 180px 0 0;
  color: var(--white);
  background: var(--ink);
}

.process__head {
  padding-bottom: 130px;
}

.process__head h2 {
  margin: 0;
  font-size: clamp(5rem, 12vw, 11.8rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.76;
}

.process__head > p {
  margin: 44px 0 0 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process__list article {
  position: relative;
  min-height: 520px;
  padding: 38px 34px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    color 0.45s ease,
    background 0.45s ease;
}

.process__list article:last-child {
  border-right: 0;
}

.process__list article:hover {
  color: var(--blue);
  background: var(--white);
}

.process__meta {
  display: flex;
  justify-content: space-between;
  color: #8897aa;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.process__list h3 {
  margin: 120px 0 0;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.process__list p {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.9;
  transition: color 0.45s ease;
}

.process__list article:hover p {
  color: rgba(0, 60, 135, 0.74);
}

.process__list article > i {
  position: absolute;
  right: 30px;
  bottom: 32px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-style: normal;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}

.process__list article:hover > i {
  border-color: var(--blue);
  transform: rotate(-45deg);
}

.journal {
  padding: 190px 0 210px;
  background: var(--paper);
}

.journal__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.journal__head h2 {
  margin: 0;
  font-size: clamp(5rem, 11vw, 10.5rem);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.75;
}

.journal__head p {
  margin: 26px 0 0 6px;
  font-size: 0.95rem;
  font-weight: 650;
}

.journal__head > a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.journal__head > a i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  font-style: normal;
}

.journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 95px;
}

.journal-card__image {
  position: relative;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #dfe1de;
}

.journal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.journal-card:hover .journal-card__image img {
  transform: scale(1.08);
}

.journal-card__image > span {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  font-size: 0.62rem;
  backdrop-filter: blur(10px);
}

.journal-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
  color: var(--blue);
  font-size: 0.68rem;
}

.journal-card__meta i {
  font-size: 1rem;
  font-style: normal;
  transition: transform 0.35s ease;
}

.journal-card:hover .journal-card__meta i {
  transform: translate(4px, -4px);
}

.journal-card h3 {
  margin: 18px 0 0;
  font-size: 1rem;
  font-weight: 550;
  line-height: 1.75;
}

.contact-panel {
  display: grid;
  min-height: 530px;
  grid-template-columns: 1.18fr 0.82fr;
  color: var(--white);
}

.contact-panel__copy {
  padding: 92px 6vw;
  background: var(--blue-light);
}

.contact-panel__copy > span {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.contact-panel h2 {
  margin: 64px 0 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.contact-panel p {
  margin: 45px 0 0;
  font-size: 0.9rem;
  line-height: 2;
}

.contact-panel > a {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 92px 4.5vw 78px;
  background: var(--blue);
}

.contact-panel > a span {
  font-size: 1rem;
  font-weight: 650;
}

.contact-panel > a i {
  display: grid;
  width: 75px;
  height: 75px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 1.3rem;
  font-style: normal;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
}

.contact-panel > a:hover i {
  color: var(--blue);
  background: var(--white);
  transform: rotate(45deg);
}

.site-footer {
  overflow: hidden;
  padding: 130px 60px 42px;
  color: var(--white);
  background: #2f3236;
}

.site-footer__word {
  font-size: clamp(6rem, 20vw, 19rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.72;
  white-space: nowrap;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 34px;
  margin-top: 105px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.68rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom > p:last-child {
  text-align: right;
}

.site-footer__bottom div {
  display: flex;
  gap: 24px;
}

@media (max-width: 900px) {
  body.admin-bar .site-header,
  body.admin-bar .menu-overlay {
    top: 46px;
  }

  .site-header {
    height: 76px;
    padding: 0 24px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button,
  .site-header--scrolled .menu-button {
    top: 17px;
    right: 20px;
    width: 46px;
    height: 46px;
  }

  .menu-overlay__inner {
    width: calc(100% - 48px);
  }

  .menu-overlay nav a {
    gap: 18px;
    font-size: clamp(2.3rem, 11vw, 4rem);
    line-height: 1.18;
  }

  .hero {
    min-height: 650px;
    padding: 5px 5px 42px;
  }

  .hero__frame {
    border-radius: 8px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__topline {
    top: 82px;
    right: 20px;
    left: 20px;
  }

  .hero__topline p:last-child {
    display: none;
  }

  .hero__copy {
    top: 25%;
    right: 22px;
    left: 22px;
  }

  .hero__kicker {
    font-size: 0.72rem;
  }

  .hero__copy h1 {
    font-size: clamp(2.7rem, 11vw, 4rem);
    line-height: 1.12;
  }

  .hero__wordmark {
    right: 16px;
    bottom: 8.5%;
    left: 16px;
    font-size: 20vw;
  }

  .hero__action {
    right: auto;
    bottom: 24%;
    left: 22px;
  }

  .hero__counter {
    right: 20px;
    bottom: 24%;
  }

  .hero__scroll {
    right: 50%;
    bottom: 0;
    flex-direction: row;
    transform: translateX(50%);
    writing-mode: horizontal-tb;
  }

  .hero__scroll i {
    width: 42px;
    height: 1px;
  }

  .hero__scroll i::after {
    width: 45%;
    height: 100%;
    animation-name: scroll-pulse-x;
  }

  @keyframes scroll-pulse-x {
    from {
      transform: translateX(-110%);
    }
    to {
      transform: translateX(250%);
    }
  }

  .news-strip {
    padding: 90px 0 110px;
  }

  .news-strip__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .news-strip__title span {
    font-size: 4rem;
  }

  .news-strip__inner > a {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .news-strip time,
  .news-strip em {
    grid-row: 1;
  }

  .news-strip strong {
    grid-column: 1 / -1;
    line-height: 1.7;
  }

  .news-strip i {
    display: none;
  }

  .manifesto {
    padding-bottom: 130px;
  }

  .manifesto__copy {
    padding-top: 70px;
  }

  .manifesto h2 {
    font-size: clamp(3.5rem, 16vw, 6rem);
    line-height: 1.02;
  }

  .manifesto__body {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 62px;
  }

  .business__visual {
    width: calc(100% - 12px);
    height: 145vw;
    max-height: 720px;
  }

  .business__visual img {
    object-position: 64% center;
  }

  .business__visual-copy {
    top: 9%;
    right: 24px;
    left: 24px;
  }

  .business__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 65px;
    padding: 90px 0 72px;
  }

  .business__head h2 {
    font-size: clamp(4rem, 18vw, 6rem);
    line-height: 0.84;
  }

  .business__head > p {
    width: 100%;
  }

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

  .service-card,
  .service-card:nth-child(odd) {
    min-height: 420px;
    padding: 34px 24px;
    border-right: 0;
  }

  .service-card:nth-child(odd) {
    background: var(--blue-light);
  }

  .service-card:nth-child(even) {
    background: var(--blue);
  }

  .service-card__body {
    height: 285px;
    margin-top: 35px;
  }

  .service-card__text {
    padding-right: 60px;
  }

  .service-card__arrow {
    right: 22px;
    bottom: 28px;
    width: 46px;
    height: 46px;
  }

  .focus {
    padding: 125px 0 130px;
  }

  .focus__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 70px;
  }

  .focus__title > span,
  .process__head > span {
    margin-bottom: 38px;
  }

  .focus__title h2 {
    font-size: 18vw;
    line-height: 0.76;
  }

  .focus__lead {
    width: 100%;
  }

  .focus__tabs {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .focus__tabs button {
    min-height: 106px;
    border-right: 0;
    border-bottom: 1px solid #bfc2bf;
  }

  .focus__tabs button:last-child {
    border-bottom: 0;
  }

  .focus__stage {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 18px;
  }

  .focus__image-wrap {
    min-height: 82vw;
  }

  .focus__image-wrap img {
    object-position: center;
  }

  .focus__content {
    min-height: 610px;
    padding: 42px 24px 34px;
  }

  .focus__content-number {
    top: 38px;
    right: 24px;
  }

  .focus__content h3 {
    margin-top: 58px;
  }

  .image-statement {
    height: 162vw;
    min-height: 700px;
  }

  .image-statement > img {
    object-position: 66% center;
  }

  .image-statement__copy {
    top: 12%;
    right: 24px;
    left: 24px;
  }

  .image-statement__copy h2 {
    margin-top: 42px;
    font-size: 10vw;
  }

  .image-statement__word {
    right: 16px;
    bottom: 4%;
    left: 16px;
    font-size: 21vw;
  }

  .process {
    padding-top: 125px;
  }

  .process__head {
    padding-bottom: 90px;
  }

  .process__head h2 {
    font-size: 17vw;
    line-height: 0.8;
  }

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

  .process__list article {
    min-height: 340px;
    padding: 30px 24px 38px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process__list h3 {
    margin-top: 72px;
  }

  .process__list p {
    max-width: 78%;
  }

  .journal {
    padding: 130px 0 145px;
  }

  .journal__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 56px;
  }

  .journal__head h2 {
    font-size: 18vw;
  }

  .journal__grid {
    grid-template-columns: 1fr;
    gap: 64px;
    margin-top: 70px;
  }

  .journal-card__image {
    aspect-ratio: 1.32 / 1;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel__copy {
    padding: 70px 24px;
  }

  .contact-panel h2 {
    margin-top: 45px;
  }

  .contact-panel > a {
    min-height: 260px;
    padding: 50px 24px 42px;
  }

  .site-footer {
    padding: 100px 24px 30px;
  }

  .site-footer__word {
    font-size: 22vw;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 78px;
  }

  .site-footer__bottom > p:last-child {
    text-align: left;
  }
}

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

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

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