: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;
  }
}
/* Expanded VAULTA corporate site */
body.vaulta-premium-site .vaulta-line-image-banner-fallback {
  display: none !important;
}

.service-card,
.journal-card,
.article-hub-card {
  display: block;
}

.service-card {
  color: var(--white);
}

.brand:focus-visible,
.desktop-nav a:focus-visible,
.menu-button:focus-visible,
.service-card:focus-visible,
.journal-card:focus-visible,
.article-hub-card:focus-visible,
.page-cta a:focus-visible {
  outline: 3px solid #eaff00;
  outline-offset: 4px;
}

.focus__detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 18px 0 10px;
  border-bottom: 1px solid rgba(32, 35, 39, 0.35);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.focus__detail:hover i {
  transform: translate(5px, -5px);
}

.evidence {
  padding: 150px 0;
  color: var(--white);
  background: #181e28;
}

.evidence__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 60px;
  align-items: end;
}

.evidence__head span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.evidence__head h2 {
  margin: 24px 0 0;
  font-size: clamp(4.2rem, 9vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.evidence__head > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 2;
}

.evidence__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.78fr 0.78fr;
  gap: 1px;
  margin-top: 84px;
  background: rgba(255, 255, 255, 0.18);
}

.evidence-card {
  position: relative;
  display: flex;
  min-height: 440px;
  padding: 42px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #f2f3f1;
  color: var(--ink);
}

.evidence-card--wide {
  color: var(--white);
}

.evidence-card--blue {
  color: var(--white);
  background: var(--blue);
}

.evidence-card__media,
.evidence-card__media::after {
  position: absolute;
  inset: 0;
}

.evidence-card__media::after {
  content: "";
  background: linear-gradient(180deg, rgba(0, 18, 41, 0.04), rgba(0, 18, 41, 0.86));
}

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

.evidence-card:hover .evidence-card__media img {
  transform: scale(1.045);
}

.evidence-card > span,
.evidence-card > h3,
.evidence-card > p,
.evidence-card > i {
  position: relative;
  z-index: 1;
}

.evidence-card > span {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.evidence-card h3 {
  margin: 24px 0 16px;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.evidence-card p {
  max-width: 620px;
  margin: 0;
  color: inherit;
  font-size: 0.92rem;
  line-height: 1.85;
  opacity: 0.72;
}

.evidence-card > i {
  position: absolute;
  top: 36px;
  right: 38px;
  font-size: 1.5rem;
  font-style: normal;
  transition: transform 0.3s ease;
}

.evidence-card:hover > i {
  transform: translate(6px, -6px);
}

.journal-card__meta time {
  margin-left: auto;
  color: rgba(32, 35, 39, 0.55);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  width: min(100%, 900px);
  margin: 80px 0 0 auto;
}

.site-footer__nav > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.site-footer__nav strong {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
}

.site-footer__nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  transition: color 0.25s ease;
}

.site-footer__nav a:hover {
  color: var(--white);
}

.sr-only {
  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;
}

.interior-main {
  background: var(--paper);
}

.interior-header.site-header--scrolled {
  background: rgba(0, 24, 57, 0.78);
  backdrop-filter: blur(18px);
  mix-blend-mode: normal;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: min(820px, 88vh);
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.page-hero > img,
.page-hero__veil,
.page-hero__grid {
  position: absolute;
  inset: 0;
}

.page-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__veil {
  background:
    linear-gradient(90deg, rgba(0, 25, 61, 0.92) 0%, rgba(0, 32, 77, 0.64) 48%, rgba(0, 24, 57, 0.36) 100%),
    linear-gradient(0deg, rgba(0, 19, 45, 0.6), transparent 58%);
}

.page-hero__grid {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 88px 88px;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 170px;
  padding-bottom: clamp(70px, 9vw, 125px);
}

.page-hero__inner > p {
  margin: 0 0 34px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.page-hero h1 {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(4rem, 9.8vw, 10.5rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.page-hero h1 span {
  display: block;
}

.page-hero__bottom {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: 70px;
  max-width: 1000px;
  margin-top: clamp(52px, 7vw, 90px);
  align-items: start;
}

.page-hero__bottom strong {
  font-size: clamp(1.35rem, 2.3vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.page-hero__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  line-height: 2;
}

.page-hero__word {
  position: absolute;
  z-index: 1;
  right: -0.04em;
  bottom: -0.2em;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(8rem, 22vw, 25rem);
  font-weight: 750;
  line-height: 0.75;
  letter-spacing: -0.09em;
  pointer-events: none;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
  color: #66707c;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.breadcrumbs span {
  display: inline-flex;
  gap: 10px;
  min-width: 0;
  align-items: center;
}

.breadcrumbs i {
  color: #a1a7ae;
  font-style: normal;
}

.breadcrumbs b {
  overflow: hidden;
  color: var(--ink);
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-section {
  padding-top: clamp(100px, 11vw, 170px);
  padding-bottom: clamp(100px, 11vw, 170px);
}

.detail-section--intro {
  padding-top: 90px;
}

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

.detail-section--soft {
  background: #e9eceb;
}

.detail-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 70px;
  align-items: end;
  margin-bottom: clamp(62px, 8vw, 110px);
}

.detail-section__head span,
.detail-image-split__content > span,
.contact-detail__copy > span {
  display: block;
  margin-bottom: 24px;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.detail-section__head h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.5rem, 5.8vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.detail-section__head > p {
  margin: 0;
  color: #626c76;
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  line-height: 2;
}

.detail-section--blue .detail-section__head > p {
  color: rgba(255, 255, 255, 0.68);
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #b9bdc1;
  border-left: 1px solid #b9bdc1;
}

.issue-grid article {
  min-height: 250px;
  padding: 38px;
  border-right: 1px solid #b9bdc1;
  border-bottom: 1px solid #b9bdc1;
}

.issue-grid span,
.principle-list article > span,
.standard-grid article > span,
.responsibility-grid article::before,
.press-topics article > span,
.supervision-scope article > span,
.editorial-grid article > span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.issue-grid p {
  max-width: 500px;
  margin: 70px 0 0;
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  font-weight: 650;
  line-height: 1.65;
  letter-spacing: -0.025em;
}

.principle-list {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.principle-list article {
  display: grid;
  grid-template-columns: 80px minmax(230px, 0.7fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.principle-list article > span {
  color: rgba(255, 255, 255, 0.56);
}

.principle-list h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1.4;
}

.principle-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
}

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

.deliverable-grid article {
  position: relative;
  min-height: 360px;
  padding: 46px;
  overflow: hidden;
  border: 1px solid #c5c9cb;
  background: #f8f8f6;
}

.deliverable-grid article > div {
  position: absolute;
  right: 18px;
  bottom: -0.16em;
  color: rgba(0, 60, 135, 0.08);
  font-size: 12rem;
  font-weight: 750;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.deliverable-grid h3 {
  position: relative;
  margin: 140px 0 20px;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  letter-spacing: -0.04em;
}

.deliverable-grid p {
  position: relative;
  max-width: 490px;
  margin: 0;
  color: #66707a;
  line-height: 1.9;
}

.detail-image-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, 0.92fr);
  min-height: 850px;
  color: var(--white);
  background: #181e28;
}

.detail-image-split__media {
  min-height: 650px;
  overflow: hidden;
}

.detail-image-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-image-split__content {
  padding: clamp(70px, 8vw, 120px) clamp(40px, 6vw, 90px);
}

.detail-image-split__content h2 {
  margin: 0 0 65px;
  font-size: clamp(2.4rem, 4.6vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.detail-image-split ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.detail-image-split li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.detail-image-split li > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.detail-image-split li strong {
  font-size: 1.1rem;
}

.detail-image-split li p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.8;
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: 38px;
}

.fit-grid__main {
  border-top: 1px solid #b8bdc2;
}

.fit-grid__main p {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid #b8bdc2;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 600;
  line-height: 1.55;
}

.fit-grid__main span {
  color: var(--blue);
}

.fit-grid aside {
  padding: 38px;
  color: var(--white);
  background: var(--blue);
}

.fit-grid aside strong {
  display: block;
  margin-bottom: 26px;
  font-size: 1.25rem;
}

.fit-grid aside p {
  margin: 0;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.8;
}

.knowledge-link {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid #b8bdc2;
  border-bottom: 1px solid #b8bdc2;
}

.knowledge-link > div:first-child span,
.editorial-banner span,
.research-feature span,
.media-assets span,
.supervisor-card span {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.knowledge-link h2 {
  margin: 18px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.045em;
}

.knowledge-link > div:last-child {
  display: flex;
  flex-direction: column;
}

.knowledge-link a,
.company-links a,
.download-row a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid #b8bdc2;
  font-weight: 650;
}

.knowledge-link a:last-child {
  border-bottom: 1px solid #b8bdc2;
}

.knowledge-link i,
.company-links i,
.download-row i {
  font-style: normal;
}

.faq-list {
  border-top: 1px solid #b8bdc2;
}

.faq-list details {
  border-bottom: 1px solid #b8bdc2;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 30px 0;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.faq-list details > p {
  max-width: 900px;
  margin: 0 0 34px 90px;
  color: #626d76;
  line-height: 1.95;
}

.page-cta {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.42fr);
  color: var(--white);
  background: #181e28;
}

.page-cta > div {
  padding: clamp(75px, 9vw, 130px) clamp(30px, 7vw, 105px);
}

.page-cta > div > span {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.page-cta h2 {
  margin: 48px 0 24px;
  font-size: clamp(2.2rem, 5vw, 5.3rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.page-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.page-cta > a {
  display: flex;
  min-height: 360px;
  padding: 52px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--blue);
}

.page-cta > a span {
  font-size: 1rem;
  font-weight: 650;
}

.page-cta > a i {
  align-self: flex-end;
  font-size: 4rem;
  font-style: normal;
  transition: transform 0.35s ease;
}

.page-cta > a:hover i {
  transform: translate(10px, -10px);
}

.page-cta--compact h2 {
  font-size: clamp(2rem, 4.2vw, 4.5rem);
}

.overview-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #aeb4b8;
}

.overview-service-grid > a {
  display: flex;
  min-height: 540px;
  padding: clamp(34px, 4.6vw, 68px);
  flex-direction: column;
  background: #f5f6f4;
  transition: color 0.35s ease, background 0.35s ease;
}

.overview-service-grid > a:hover {
  color: var(--white);
  background: var(--blue);
}

.overview-service-grid__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.overview-service-grid h2 {
  margin: 100px 0 22px;
  font-size: clamp(2rem, 4.4vw, 4.7rem);
  letter-spacing: -0.06em;
}

.overview-service-grid strong {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.overview-service-grid p {
  max-width: 560px;
  margin: 0;
  color: #65707a;
  line-height: 1.9;
}

.overview-service-grid > a:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.overview-service-grid > a > i {
  margin-top: auto;
  padding-top: 60px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.route-table {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.route-table > div {
  display: grid;
  grid-template-columns: 1fr 0.5fr 1.2fr;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  align-items: center;
}

.route-table strong {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.route-table span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
}

.route-table p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.standard-grid,
.responsibility-grid,
.press-topics,
.supervision-scope,
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #b4b9bd;
}

.standard-grid article,
.responsibility-grid article,
.press-topics article,
.supervision-scope article,
.editorial-grid article {
  min-height: 320px;
  padding: 34px;
  background: #f5f6f4;
}

.standard-grid h3,
.responsibility-grid h3,
.press-topics h3,
.supervision-scope h3,
.editorial-grid h3 {
  margin: 100px 0 18px;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  letter-spacing: -0.035em;
}

.standard-grid p,
.responsibility-grid p,
.press-topics p,
.supervision-scope p,
.editorial-grid p {
  margin: 0;
  color: #66707a;
  font-size: 0.86rem;
  line-height: 1.85;
}

.detail-section--blue .standard-grid,
.detail-section--blue .press-topics,
.detail-section--blue .supervision-scope {
  background: rgba(255, 255, 255, 0.28);
}

.detail-section--blue .standard-grid article,
.detail-section--blue .press-topics article,
.detail-section--blue .supervision-scope article {
  background: var(--blue);
}

.detail-section--blue .standard-grid article > span,
.detail-section--blue .press-topics article > span,
.detail-section--blue .supervision-scope article > span {
  color: rgba(255, 255, 255, 0.5);
}

.detail-section--blue .standard-grid p,
.detail-section--blue .press-topics p,
.detail-section--blue .supervision-scope p {
  color: rgba(255, 255, 255, 0.68);
}

.company-manifesto__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 75px;
  max-width: 1120px;
  margin-left: auto;
}

.company-manifesto__copy p {
  margin: 0;
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  line-height: 2.15;
}

.company-table {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.company-table > div {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.company-table dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.company-table dd {
  margin: 0;
  line-height: 1.85;
}

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

.responsibility-grid article {
  min-height: 350px;
}

.responsibility-grid article::before {
  content: "RESPONSIBILITY";
}

.company-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 70px;
}

.company-links a {
  border-bottom: 1px solid #b8bdc2;
}

.press-quote {
  max-width: 1100px;
  margin: 0;
  padding: 0 0 0 42px;
  border-left: 6px solid var(--blue);
  font-size: clamp(1.8rem, 3.7vw, 4.2rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.05em;
}

.press-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 90px;
  background: #bbc0c3;
}

.press-facts article {
  min-height: 280px;
  padding: 36px;
  background: #f5f6f4;
}

.press-facts strong {
  display: block;
  color: var(--blue);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.press-facts span {
  display: block;
  margin-top: 35px;
  font-weight: 700;
}

.press-facts p {
  margin: 10px 0 0;
  color: #6b747c;
  font-size: 0.82rem;
}

.press-topics,
.supervision-scope {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.research-feature {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  padding: clamp(36px, 6vw, 80px);
  color: var(--white);
  background: #181e28;
}

.research-feature h3 {
  margin: 28px 0;
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.research-feature p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
}

.research-feature dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.research-feature dl > div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.research-feature dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.research-feature dd {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.research-feature small {
  margin-left: 5px;
  font-size: 0.28em;
}

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

.media-assets article {
  min-height: 300px;
  padding: 40px;
  border: 1px solid #c1c6c9;
  background: #f6f6f4;
}

.media-assets p {
  margin: 90px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.85;
}

.download-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 42px;
}

.download-row a {
  border-bottom: 1px solid #b8bdc2;
}

.usage-note,
.notice-panel,
.correction-box {
  margin-top: 42px;
  padding: 34px;
  border-left: 4px solid var(--blue);
  background: #f6f6f4;
}

.usage-note strong {
  display: block;
  margin-bottom: 12px;
}

.usage-note p,
.notice-panel p,
.correction-box p {
  margin: 0;
  color: #5f6972;
  line-height: 1.9;
}

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

.editorial-flow {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  list-style: none;
}

.editorial-flow li {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.editorial-flow li > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.editorial-flow strong {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.editorial-flow p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
}

.supervisor-card {
  display: flex;
  min-height: 370px;
  padding: clamp(38px, 6vw, 80px);
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  color: var(--white);
  background: #181e28;
}

.supervisor-card h3 {
  margin: 36px 0 16px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.supervisor-card p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
}

.supervisor-card > i {
  font-style: normal;
  white-space: nowrap;
}

.correction-box a {
  display: inline-block;
  margin-top: 24px;
  font-weight: 700;
}

.profile-lead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.profile-lead > p {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.8;
}

.profile-lead aside {
  padding: 32px;
  border: 1px solid #b8bdc2;
  color: #626d76;
  line-height: 1.9;
}

.legal-page {
  max-width: 980px;
  padding-top: 80px;
  padding-bottom: 150px;
}

.legal-page > header {
  padding-bottom: 46px;
  border-bottom: 1px solid #b8bdc2;
}

.legal-page > header > p:first-child {
  color: #6a737b;
  font-size: 0.78rem;
}

.legal-page > header > p:last-child {
  margin: 24px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.9;
}

.legal-page section {
  padding: 44px 0;
  border-bottom: 1px solid #b8bdc2;
}

.legal-page h2 {
  margin: 0 0 20px;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
}

.legal-page section p {
  margin: 0;
  color: #5e6871;
  line-height: 2;
}

.legal-page a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.8fr);
  gap: 90px;
  padding-top: 120px;
  padding-bottom: 150px;
}

.contact-detail__copy h2 {
  margin: 0 0 34px;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.contact-detail__copy > p {
  max-width: 650px;
  color: #626d76;
  line-height: 2;
}

.contact-detail__copy > a {
  display: flex;
  max-width: 560px;
  margin-top: 44px;
  padding: 28px 30px;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
}

.contact-detail__copy > a i {
  font-size: 1.7rem;
  font-style: normal;
}

.contact-detail__copy small {
  display: block;
  max-width: 560px;
  margin-top: 15px;
  color: #737b82;
  font-size: 0.72rem;
  line-height: 1.7;
}

.contact-detail__copy small a {
  text-decoration: underline;
}

.contact-detail__topics {
  border-top: 1px solid #b8bdc2;
}

.contact-detail__topics > strong {
  display: block;
  padding: 0 0 22px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.contact-detail__topics > a {
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid #b8bdc2;
  align-items: start;
}

.contact-detail__topics > a > span {
  color: var(--blue);
  font-size: 0.7rem;
}

.contact-detail__topics b {
  font-size: 1.05rem;
}

.contact-detail__topics p {
  margin: 7px 0 0;
  color: #6c757d;
  font-size: 0.78rem;
  line-height: 1.65;
}

.contact-detail__topics i {
  font-style: normal;
}

.article-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 55px 24px;
}

.article-hub-card {
  position: relative;
}

.article-hub-card > div {
  position: relative;
  aspect-ratio: 1.42;
  overflow: hidden;
  background: #cdd2d3;
}

.article-hub-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-hub-card:hover img {
  transform: scale(1.04);
}

.article-hub-card > div > span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-size: 0.68rem;
}

.article-hub-card > p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 0;
  color: #69727a;
  font-size: 0.68rem;
}

.article-hub-card > p b {
  color: var(--blue);
}

.article-hub-card h2 {
  margin: 14px 42px 0 0;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.6;
  letter-spacing: -0.025em;
}

.article-hub-card > i {
  position: absolute;
  right: 0;
  bottom: 4px;
  font-style: normal;
}

.category-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.category-hub-grid a {
  position: relative;
  min-height: 290px;
  padding: 34px;
  background: var(--blue);
  transition: background 0.3s ease;
}

.category-hub-grid a:hover {
  background: #124f98;
}

.category-hub-grid span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.category-hub-grid h2 {
  margin: 105px 0 12px;
  font-size: clamp(1.3rem, 2.2vw, 2.1rem);
  letter-spacing: -0.04em;
}

.category-hub-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.category-hub-grid i {
  position: absolute;
  top: 30px;
  right: 32px;
  font-style: normal;
}

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

.pillar-grid a {
  position: relative;
  display: flex;
  min-height: 340px;
  padding: 40px;
  flex-direction: column;
  border: 1px solid #b8bdc2;
}

.pillar-grid span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.pillar-grid h2 {
  margin: 80px 50px 16px 0;
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  line-height: 1.42;
  letter-spacing: -0.04em;
}

.pillar-grid p {
  margin: auto 50px 0 0;
  color: #68727b;
  font-size: 0.82rem;
}

.pillar-grid i {
  position: absolute;
  right: 34px;
  bottom: 34px;
  font-style: normal;
}

.editorial-banner {
  display: flex;
  margin-bottom: 140px;
  padding: clamp(38px, 6vw, 76px);
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  color: var(--white);
  background: #181e28;
}

.editorial-banner h2 {
  margin: 24px 0 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
}

.editorial-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.editorial-banner > a {
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .evidence__grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .evidence-card--wide {
    grid-row: span 2;
  }

  .standard-grid,
  .press-topics,
  .supervision-scope {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-image-split {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 900px) {
  .site-footer__nav {
    grid-template-columns: 1fr;
    margin: 58px 0 0;
  }

  .page-hero {
    min-height: 720px;
  }

  .page-hero__inner {
    padding-top: 150px;
  }

  .page-hero h1 {
    font-size: clamp(3.25rem, 15vw, 7rem);
    line-height: 0.86;
  }

  .page-hero__bottom,
  .detail-section__head,
  .evidence__head,
  .knowledge-link,
  .research-feature,
  .profile-lead,
  .contact-detail {
    grid-template-columns: 1fr;
  }

  .detail-section__head {
    gap: 32px;
  }

  .issue-grid,
  .deliverable-grid,
  .overview-service-grid,
  .company-manifesto__copy,
  .media-assets,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

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

  .principle-list article p {
    grid-column: 2;
  }

  .detail-image-split {
    grid-template-columns: 1fr;
  }

  .detail-image-split__media {
    min-height: 65vw;
  }

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

  .page-cta {
    grid-template-columns: 1fr;
  }

  .page-cta > a {
    min-height: 260px;
  }

  .responsibility-grid,
  .editorial-grid,
  .category-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-links {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .route-table > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-detail {
    gap: 80px;
  }
}

@media (max-width: 640px) {
  .evidence {
    padding: 100px 0;
  }

  .evidence__head h2 {
    font-size: 17vw;
  }

  .evidence__grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .evidence-card--wide {
    grid-row: auto;
  }

  .evidence-card {
    min-height: 390px;
    padding: 30px 24px;
  }

  .page-hero {
    min-height: 670px;
  }

  .page-hero__inner {
    padding-top: 135px;
    padding-bottom: 70px;
  }

  .page-hero__inner > p {
    margin-bottom: 25px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 16vw, 5.7rem);
  }

  .page-hero__bottom {
    gap: 20px;
    margin-top: 48px;
  }

  .page-hero__bottom strong {
    font-size: 1.25rem;
  }

  .breadcrumbs {
    width: min(100% - 28px, 1340px);
    overflow: hidden;
    white-space: nowrap;
  }

  .detail-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .detail-section__head {
    margin-bottom: 50px;
  }

  .detail-section__head h2 {
    font-size: 11vw;
  }

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

  .issue-grid article {
    min-height: 220px;
    padding: 28px 24px;
  }

  .issue-grid p {
    margin-top: 50px;
  }

  .principle-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .deliverable-grid article {
    min-height: 320px;
    padding: 30px 24px;
  }

  .deliverable-grid article > div {
    font-size: 9rem;
  }

  .deliverable-grid h3 {
    margin-top: 120px;
  }

  .detail-image-split__content {
    padding: 70px 24px;
  }

  .fit-grid aside {
    padding: 28px 24px;
  }

  .knowledge-link {
    gap: 45px;
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .faq-list summary {
    grid-template-columns: 48px 1fr;
  }

  .faq-list details > p {
    margin-left: 68px;
  }

  .page-cta > div,
  .page-cta > a {
    padding: 65px 24px;
  }

  .overview-service-grid > a {
    min-height: 480px;
    padding: 30px 24px;
  }

  .overview-service-grid h2 {
    margin-top: 85px;
  }

  .standard-grid,
  .responsibility-grid,
  .press-topics,
  .supervision-scope,
  .editorial-grid,
  .category-hub-grid,
  .article-hub-grid {
    grid-template-columns: 1fr;
  }

  .standard-grid article,
  .responsibility-grid article,
  .press-topics article,
  .supervision-scope article,
  .editorial-grid article {
    min-height: 280px;
    padding: 30px 24px;
  }

  .company-manifesto__copy {
    gap: 36px;
  }

  .company-table > div {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .press-quote {
    padding-left: 25px;
  }

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

  .research-feature {
    gap: 50px;
    padding: 48px 24px;
  }

  .download-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .media-assets article {
    padding: 30px 24px;
  }

  .supervisor-card {
    min-height: 450px;
    padding: 45px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .editorial-flow li {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .legal-page {
    padding-top: 55px;
    padding-bottom: 100px;
  }

  .contact-detail {
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .contact-detail__copy h2 {
    font-size: 11vw;
  }

  .article-hub-grid {
    gap: 55px;
  }

  .pillar-grid a {
    min-height: 320px;
    padding: 32px 24px;
  }

  .editorial-banner {
    margin-bottom: 90px;
    padding: 50px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
