:root {
  --blue: #1374e7;
  --blue-deep: #0057c8;
  --blue-soft: #dcecff;
  --ink: #07101f;
  --muted: #657083;
  --line: rgba(7, 16, 31, 0.12);
  --paper: #f7f9fc;
  --white: #ffffff;
  --radius: 24px;
  --page: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  gap: 22px;
  align-content: center;
  background: #f7f9fc;
  transition: opacity .65s var(--ease), visibility .65s;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #0b1b31;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .18em;
}

.loader__brand img {
  width: 28px;
  height: 28px;
}

.loader__track {
  width: 180px;
  height: 2px;
  overflow: hidden;
  background: rgba(19, 116, 231, .12);
}

.loader__track i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: translateX(-100%);
  animation: load 1s var(--ease) forwards;
}

@keyframes load {
  to { transform: translateX(0); }
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 101;
  height: 2px;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding: 0 var(--page);
  border-bottom: 1px solid transparent;
  transition: min-height .4s var(--ease), background .4s, border-color .4s, backdrop-filter .4s;
}

.header.is-scrolled {
  min-height: 72px;
  border-color: rgba(7, 16, 31, .08);
  background: rgba(247, 249, 252, .76);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 25px rgba(19, 116, 231, .09), inset 0 0 0 1px rgba(19, 116, 231, .08);
}

.brand__mark img {
  width: 24px;
  height: 24px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 13px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: .17em;
}

.brand__text small {
  color: #788398;
  font-size: 7px;
  font-weight: 650;
  letter-spacing: .22em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 10px 18px;
  border: 1px solid rgba(7, 16, 31, .07);
  border-radius: 100px;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 12px 35px rgba(14, 39, 78, .04);
}

.nav a {
  position: relative;
  color: #364154;
  font-size: 12px;
  font-weight: 600;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}

.header__cta span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  transition: transform .35s var(--ease), box-shadow .35s;
}

.header__cta:hover span {
  transform: rotate(45deg);
  box-shadow: 0 10px 25px rgba(19, 116, 231, .3);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.menu-button span {
  position: absolute;
  width: 16px;
  height: 1px;
  margin-left: -8px;
  background: var(--white);
  transition: transform .35s var(--ease);
}

.menu-button span:first-child {
  transform: translateY(-3px);
}

.menu-button span:last-child {
  transform: translateY(3px);
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 40px;
  background: rgba(247, 249, 252, .98);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(34px, 10vw, 58px);
  font-weight: 620;
  letter-spacing: -.05em;
}

.mobile-menu nav small {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: .1em;
}

.mobile-menu__mail {
  margin-top: auto;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  padding: clamp(145px, 18vh, 190px) var(--page) 48px;
  overflow: hidden;
  isolation: isolate;
}

.hero__grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: .52;
  background-image:
    linear-gradient(rgba(16, 45, 85, .042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 45, 85, .042) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 15%, transparent 86%);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 75% 38%, rgba(19, 116, 231, .12), transparent 30%),
    radial-gradient(circle at 87% 20%, rgba(96, 180, 255, .11), transparent 20%),
    linear-gradient(145deg, #fff 0%, #f7faff 48%, #f3f7fd 100%);
  content: "";
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  transition: transform .2s linear;
}

.hero__glow--one {
  top: 16%;
  right: 2%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(19, 116, 231, .11);
  box-shadow: inset 0 0 100px rgba(19, 116, 231, .025);
}

.hero__glow--two {
  right: 30%;
  bottom: 12%;
  width: 160px;
  height: 160px;
  background: rgba(19, 116, 231, .06);
  filter: blur(40px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 840px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 30px;
  color: #536075;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
}

.eyebrow__pulse {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(19, 116, 231, .1);
}

.eyebrow__pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(19, 116, 231, .25);
  border-radius: 50%;
  content: "";
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% { opacity: 0; transform: scale(1.8); }
}

.hero h1 {
  margin: 0;
  font-size: clamp(59px, 7.15vw, 118px);
  font-weight: 620;
  line-height: .91;
  letter-spacing: -.075em;
}

.hero h1 span {
  display: block;
}

.gradient-text {
  width: max-content;
  max-width: 100%;
  padding-right: .08em;
  color: transparent;
  background: linear-gradient(100deg, #0c62ca 0%, #1688ff 48%, #58b7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 610px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  letter-spacing: -.02em;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  min-height: 58px;
  padding: 0 18px 0 26px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 650;
  transition: transform .35s var(--ease), box-shadow .35s, background .35s;
}

.button span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: transform .35s var(--ease);
}

.button--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 45px rgba(19, 116, 231, .24);
}

.button--primary span {
  color: var(--blue);
  background: var(--white);
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover span {
  transform: rotate(45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(7, 16, 31, .22);
  color: #344052;
  font-size: 12px;
  font-weight: 620;
}

.text-link span {
  color: var(--blue);
}

.hero-system {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(40vw, 610px);
  aspect-ratio: 1;
  margin: -5% -8% 0 0;
  transition: transform .3s var(--ease);
}

.system__halo,
.system__axis {
  position: absolute;
  pointer-events: none;
}

.system__halo {
  inset: 8%;
  border: 1px solid rgba(19, 116, 231, .14);
  border-radius: 50%;
}

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

.system__halo--outer::before {
  inset: 12%;
  border: 1px dashed rgba(19, 116, 231, .12);
  animation: rotate 24s linear infinite;
}

.system__halo--outer::after {
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--blue);
  box-shadow: 0 0 24px rgba(19, 116, 231, .65);
}

.system__halo--inner {
  inset: 24%;
  border-color: rgba(255, 255, 255, .7);
  box-shadow: 0 35px 100px rgba(19, 116, 231, .08), inset 0 0 80px rgba(19, 116, 231, .03);
  animation: breathe 5s var(--ease) infinite;
}

.system__axis--x {
  top: 50%;
  right: 3%;
  left: 3%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(19, 116, 231, .15), transparent);
}

.system__axis--y {
  top: 3%;
  bottom: 3%;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(19, 116, 231, .15), transparent);
}

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

@keyframes breathe {
  50% { transform: scale(1.035); }
}

.system__core {
  position: absolute;
  inset: 31%;
  display: grid;
  place-items: center;
  border-radius: 36%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(234, 243, 255, .6)),
    var(--white);
  box-shadow:
    0 45px 90px rgba(22, 80, 153, .15),
    inset 0 0 0 1px rgba(255, 255, 255, .95),
    inset -18px -22px 38px rgba(19, 116, 231, .06);
  transform: rotate(-12deg);
}

.system__glass {
  display: grid;
  place-items: center;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(19, 116, 231, .09);
  border-radius: 32%;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 38px rgba(19, 116, 231, .1);
  transform: rotate(12deg);
}

.system__glass img {
  width: 58%;
  height: 58%;
}

.system__node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(19, 116, 231, .1);
  border-radius: 50px;
  color: #526079;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 35px rgba(14, 51, 100, .06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: .12em;
}

.system__node i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.system__node--strategy { top: 16%; left: 7%; }
.system__node--design { top: 48%; right: -2%; }
.system__node--tech { bottom: 11%; left: 18%; }

.system__coordinates {
  position: absolute;
  right: 3%;
  bottom: 23%;
  color: #8590a2;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}

.hero__meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-self: end;
  gap: clamp(28px, 4vw, 70px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.hero__meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #7a8494;
  font-size: 9px;
  font-weight: 620;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__meta span {
  color: var(--ink);
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -.04em;
  text-transform: none;
}

.scroll-cue {
  position: absolute;
  right: var(--page);
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8791a1;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .18em;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  width: 45px;
  height: 1px;
  overflow: hidden;
  background: rgba(7, 16, 31, .18);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  content: "";
  animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.statement {
  position: relative;
  padding: clamp(100px, 13vw, 190px) var(--page);
  background: var(--white);
  overflow: hidden;
}

.statement::before {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 116, 231, .08), transparent 68%);
  content: "";
}

.section-index {
  display: flex;
  gap: 10px;
  margin-bottom: clamp(60px, 9vw, 130px);
  color: #8290a4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.section-index span {
  color: var(--blue);
}

.statement__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  align-items: end;
}

.statement h2 {
  margin: 0;
  font-size: clamp(52px, 7.4vw, 112px);
  font-weight: 580;
  line-height: .94;
  letter-spacing: -.07em;
}

.statement h2 em {
  color: var(--blue);
  font-style: normal;
}

.statement__copy {
  max-width: 500px;
  padding-bottom: 1vw;
}

.statement__copy p {
  margin: 0;
  color: #5e6879;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  letter-spacing: -.025em;
}

.statement__copy p + p {
  margin-top: 28px;
  color: #8b93a2;
  font-size: clamp(14px, 1.08vw, 17px);
}

.statement__line {
  height: 1px;
  margin-top: clamp(70px, 10vw, 150px);
  background: linear-gradient(90deg, var(--blue) 0 18%, var(--line) 18%);
}

.section-index--light {
  color: rgba(255, 255, 255, .42);
}

.section-index--light span {
  color: #6db8ff;
}

.impact {
  position: relative;
  padding: clamp(100px, 12vw, 180px) var(--page) clamp(80px, 10vw, 150px);
  color: var(--white);
  background:
    radial-gradient(circle at 77% 0%, rgba(87, 176, 255, .38), transparent 27%),
    linear-gradient(140deg, #0d6ddd 0%, #087bf0 53%, #0066d8 100%);
  overflow: hidden;
}

.impact::before,
.impact::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
}

.impact::before {
  top: -40vw;
  right: -18vw;
  width: 78vw;
  height: 78vw;
}

.impact::after {
  top: -25vw;
  right: -3vw;
  width: 48vw;
  height: 48vw;
}

.impact__intro,
.impact__metrics {
  position: relative;
  z-index: 1;
}

.impact__overline {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  font-weight: 550;
}

.impact h2 {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(53px, 7.2vw, 112px);
  font-weight: 570;
  line-height: .95;
  letter-spacing: -.07em;
}

.impact h2 span {
  color: #b9ddff;
}

.impact__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(75px, 10vw, 140px);
  background: rgba(255, 255, 255, .16);
}

.metric-card {
  position: relative;
  min-height: 350px;
  padding: clamp(28px, 3vw, 48px);
  background: rgba(11, 100, 207, .74);
  overflow: hidden;
}

.metric-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), transparent 48%);
  content: "";
  opacity: 0;
  transition: opacity .45s;
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-card__index {
  color: rgba(255, 255, 255, .43);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: .15em;
}

.metric-card strong {
  display: block;
  margin-top: clamp(65px, 7vw, 105px);
  font-size: clamp(70px, 8vw, 125px);
  font-weight: 520;
  line-height: .75;
  letter-spacing: -.075em;
}

.metric-card p {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  line-height: 1.55;
}

.metric-card i {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
}

.metric-card i::before,
.metric-card i::after {
  position: absolute;
  top: 4px;
  left: -12px;
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, .18);
  content: "";
}

.metric-card i::after {
  transform: rotate(90deg);
}

.services {
  position: relative;
  padding: clamp(110px, 13vw, 190px) var(--page);
  color: var(--white);
  background: #050a12;
  overflow: hidden;
}

.services::before {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 62%);
}

.services__ambient {
  position: absolute;
  top: -20vw;
  left: 45%;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: rgba(19, 116, 231, .22);
  filter: blur(140px);
  pointer-events: none;
}

.services__heading,
.service-list {
  position: relative;
}

.services__title-row {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 8vw;
  align-items: end;
}

.services__title-row h2 {
  margin: 0;
  font-size: clamp(58px, 8vw, 124px);
  font-weight: 550;
  line-height: .86;
  letter-spacing: -.075em;
}

.services__title-row h2 em {
  color: #63adfa;
  font-style: normal;
}

.services__title-row > p {
  max-width: 460px;
  margin: 0 0 1vw;
  color: rgba(255, 255, 255, .47);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
}

.service-list {
  margin-top: clamp(80px, 10vw, 150px);
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.service-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 65px 150px minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 55px);
  align-items: center;
  min-height: 250px;
  padding: 35px 22px 35px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  overflow: hidden;
  isolation: isolate;
}

.service-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(500px circle at var(--mouse-x) var(--mouse-y), rgba(19, 116, 231, .18), transparent 44%);
  content: "";
  opacity: 0;
  transition: opacity .35s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__number {
  align-self: start;
  padding-top: 9px;
  color: rgba(255, 255, 255, .35);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: .16em;
}

.service-card__icon {
  position: relative;
  width: 125px;
  height: 125px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 35px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .015));
  box-shadow: inset 0 0 35px rgba(19, 116, 231, .06);
  transition: transform .5s var(--ease), border-color .5s;
}

.service-card:hover .service-card__icon {
  border-color: rgba(93, 175, 255, .35);
  transform: rotate(-4deg) scale(1.03);
}

.icon-platform i {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1px solid #3293f6;
  border-radius: 12px;
}

.icon-platform i:nth-child(1) { top: 23px; left: 23px; }
.icon-platform i:nth-child(2) { top: 23px; right: 23px; }
.icon-platform i:nth-child(3) { right: 23px; bottom: 23px; }

.icon-platform::before {
  position: absolute;
  top: 41px;
  left: 42px;
  width: 42px;
  height: 42px;
  border-right: 1px solid rgba(50,147,246,.45);
  border-bottom: 1px solid rgba(50,147,246,.45);
  content: "";
}

.icon-web i:first-child {
  position: absolute;
  inset: 27px 20px 34px;
  border: 1px solid #3293f6;
  border-radius: 8px;
}

.icon-web i:first-child::before {
  display: block;
  height: 12px;
  border-bottom: 1px solid rgba(50,147,246,.5);
  content: "•••";
  padding-left: 7px;
  color: #3293f6;
  font-size: 6px;
  letter-spacing: 2px;
  line-height: 10px;
}

.icon-web i:last-child {
  position: absolute;
  bottom: 21px;
  left: 46px;
  width: 34px;
  height: 1px;
  background: #3293f6;
}

.icon-mobile i {
  position: absolute;
  top: 22px;
  width: 42px;
  height: 82px;
  border: 1px solid #3293f6;
  border-radius: 12px;
}

.icon-mobile i:first-child { left: 25px; }
.icon-mobile i:last-child { right: 25px; transform: translateY(7px); opacity: .45; }

.icon-mobile i::after {
  position: absolute;
  right: 14px;
  bottom: 7px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #3293f6;
  content: "";
}

.icon-auto i {
  position: absolute;
  border: 1px solid #3293f6;
  border-radius: 50%;
}

.icon-auto i:nth-child(1) { inset: 26px; }
.icon-auto i:nth-child(2) { inset: 45px; background: rgba(50,147,246,.16); }
.icon-auto i:nth-child(3) {
  top: 15px;
  left: 60px;
  width: 6px;
  height: 95px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(transparent, #3293f6, transparent);
  transform: rotate(45deg);
}

.icon-growth i {
  position: absolute;
  bottom: 28px;
  width: 14px;
  border: 1px solid #3293f6;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background: rgba(50,147,246,.1);
}

.icon-growth i:nth-child(1) { left: 31px; height: 24px; }
.icon-growth i:nth-child(2) { left: 55px; height: 47px; }
.icon-growth i:nth-child(3) { left: 79px; height: 69px; }

.service-card__content {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) 1.25fr;
  gap: clamp(25px, 4vw, 70px);
  align-items: center;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 540;
  line-height: 1;
  letter-spacing: -.05em;
}

.service-card p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 14px;
  line-height: 1.65;
}

.service-card__tags {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: -15px;
}

.service-card__tags span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 30px;
  color: rgba(255, 255, 255, .42);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card > a {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  color: #75baff;
  font-size: 20px;
  transition: color .35s, background .35s, border-color .35s, transform .35s var(--ease);
}

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

.principles {
  padding: clamp(105px, 13vw, 190px) var(--page);
  background: #f8fafc;
}

.principles__header {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 9vw;
  align-items: end;
}

.principles__header h2 {
  margin: 0;
  font-size: clamp(54px, 7vw, 106px);
  font-weight: 570;
  line-height: .94;
  letter-spacing: -.07em;
}

.principles__header h2 em {
  color: var(--blue);
  font-style: normal;
}

.principles__header > p {
  max-width: 520px;
  margin: 0 0 1vw;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(75px, 9vw, 130px);
}

.principle-card {
  position: relative;
  min-height: 540px;
  padding: 28px;
  border: 1px solid rgba(7, 16, 31, .08);
  border-radius: 4px;
  background: rgba(255, 255, 255, .72);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s;
}

.principle-card:hover {
  box-shadow: 0 35px 80px rgba(14, 54, 105, .08);
  transform: translateY(-8px);
}

.principle-card > span {
  color: #8d98a9;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: .15em;
}

.principle-card__visual {
  position: relative;
  width: 100%;
  height: 275px;
  margin: 20px 0 35px;
  border-radius: 2px;
  background: #f3f7fc;
  overflow: hidden;
}

.principle-card__visual::before {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(19,116,231,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,116,231,.07) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
}

.principle-card__visual--system i {
  position: absolute;
  border: 1px solid rgba(19, 116, 231, .25);
  border-radius: 50%;
}

.principle-card__visual--system i:nth-child(1) { inset: 46px 90px; }
.principle-card__visual--system i:nth-child(2) { inset: 78px 122px; background: rgba(19,116,231,.08); }
.principle-card__visual--system i:nth-child(3) {
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 5px solid var(--blue);
  box-shadow: 0 0 0 12px rgba(19,116,231,.08);
  transform: translate(-50%, -50%);
}

.principle-card__visual--focus i:first-child {
  position: absolute;
  inset: 55px 80px;
  border: 1px solid rgba(19,116,231,.22);
  border-radius: 30px;
  transform: rotate(-9deg);
}

.principle-card__visual--focus i:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85px;
  height: 85px;
  border-radius: 24px;
  background: var(--blue);
  box-shadow: 0 28px 48px rgba(19,116,231,.22);
  transform: translate(-50%, -50%) rotate(9deg);
}

.principle-card__visual--motion i {
  position: absolute;
  top: 50%;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(19,116,231,.26);
  border-radius: 16px;
  transform: translateY(-50%) rotate(45deg);
}

.principle-card__visual--motion i:nth-child(1) { left: 56px; opacity: .3; }
.principle-card__visual--motion i:nth-child(2) { left: calc(50% - 28px); background: rgba(19,116,231,.1); }
.principle-card__visual--motion i:nth-child(3) { right: 56px; background: var(--blue); box-shadow: 0 20px 38px rgba(19,116,231,.2); }

.principle-card h3 {
  margin: 0;
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 570;
  letter-spacing: -.045em;
}

.principle-card p {
  margin: 18px 0 0;
  color: #717b8c;
  font-size: 14px;
  line-height: 1.65;
}

.process {
  position: relative;
  padding: clamp(110px, 13vw, 190px) var(--page);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 22%, rgba(29, 132, 239, .18), transparent 28%),
    #07101f;
  overflow: hidden;
}

.process__grid {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 65%);
}

.process > *:not(.process__grid) {
  position: relative;
}

.process__header {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 9vw;
  align-items: end;
}

.process__header h2 {
  margin: 0;
  font-size: clamp(58px, 7.5vw, 116px);
  font-weight: 550;
  line-height: .92;
  letter-spacing: -.075em;
}

.process__header h2 em {
  color: #66b4ff;
  font-style: normal;
}

.process__header > p {
  max-width: 470px;
  margin: 0 0 1vw;
  color: rgba(255, 255, 255, .45);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(85px, 10vw, 145px);
  background: rgba(255, 255, 255, .13);
}

.process-step {
  min-height: 500px;
  padding: clamp(25px, 3vw, 45px);
  background: rgba(7, 16, 31, .9);
  transition: background .5s;
}

.process-step:hover {
  background: rgba(12, 38, 72, .93);
}

.process-step__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,.38);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: .15em;
}

.process-step__top i {
  height: 1px;
  background: rgba(255,255,255,.12);
}

.process-step__top b {
  color: #64b2ff;
  font-size: inherit;
  font-weight: 500;
}

.process-step h3 {
  margin: 100px 0 25px;
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 530;
  line-height: .9;
  letter-spacing: -.065em;
}

.process-step > p {
  max-width: 360px;
  margin: 0;
  color: rgba(255,255,255,.47);
  font-size: 14px;
  line-height: 1.65;
}

.process-step ul {
  display: grid;
  gap: 10px;
  margin: 55px 0 0;
  padding: 0;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  list-style: none;
}

.process-step li::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  box-shadow: 0 0 0 4px rgba(19,116,231,.12);
}

.director {
  position: relative;
  padding: clamp(105px, 13vw, 190px) var(--page);
  background:
    radial-gradient(circle at 10% 90%, rgba(19,116,231,.08), transparent 30%),
    #f5f8fc;
  overflow: hidden;
}

.director::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(7,16,31,.05);
  content: "";
}

.director__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .85fr) 1.15fr;
  gap: clamp(55px, 9vw, 145px);
  align-items: center;
}

.director__portrait {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.55), rgba(213,229,248,.45)),
    #dce8f7;
  box-shadow: 0 45px 110px rgba(15, 60, 115, .12);
}

.director__portrait::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.8);
  content: "";
  pointer-events: none;
}

.director__portrait > img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.03);
}

.director__portrait.is-placeholder > img {
  display: none;
}

.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  color: #0b60c7;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.92), transparent 25%),
    linear-gradient(145deg, #e7f1fc, #bfd7f2);
}

.portrait-placeholder::after {
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image:
    linear-gradient(rgba(19,116,231,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,116,231,.07) 1px, transparent 1px);
  background-size: 50px 50px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.portrait-placeholder__rings {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 410px;
  height: 410px;
  transform: translate(-50%, -55%);
}

.portrait-placeholder__rings i {
  position: absolute;
  border: 1px solid rgba(19,116,231,.13);
  border-radius: 50%;
}

.portrait-placeholder__rings i:nth-child(1) { inset: 0; }
.portrait-placeholder__rings i:nth-child(2) { inset: 15%; border-style: dashed; animation: rotate 25s linear infinite; }
.portrait-placeholder__rings i:nth-child(3) { inset: 32%; background: rgba(255,255,255,.36); }

.portrait-placeholder strong {
  position: relative;
  z-index: 2;
  font-size: clamp(90px, 10vw, 155px);
  font-weight: 550;
  line-height: .8;
  letter-spacing: -.1em;
}

.portrait-placeholder > span,
.portrait-placeholder > small {
  position: relative;
  z-index: 2;
  margin-top: 45px;
  color: #54718f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: .17em;
}

.portrait-placeholder > small {
  margin-top: 8px;
  color: #8296ab;
  font-size: 7px;
}

.director__portrait figcaption {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 24px;
  left: 25px;
  display: flex;
  justify-content: space-between;
  padding: 17px 20px;
  border: 1px solid rgba(255,255,255,.55);
  color: #4f637a;
  background: rgba(255,255,255,.64);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  letter-spacing: .12em;
}

.director__portrait figcaption b {
  color: var(--blue);
  font-size: inherit;
}

.quote-mark {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: .5;
}

.director__message blockquote {
  max-width: 780px;
  margin: 45px 0 0;
  font-size: clamp(35px, 4vw, 62px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.director__text {
  max-width: 700px;
  margin: 45px 0 0;
  color: #687486;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.7;
}

.director__signature {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  max-width: 700px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid rgba(7,16,31,.12);
}

.director__signature > div {
  display: grid;
  gap: 12px;
}

.director__signature strong {
  font-size: 20px;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.director__signature span {
  color: #8791a2;
  font-size: 10px;
  line-height: 1.45;
}

.director__signature > i {
  color: var(--blue);
  font-family: "Segoe Script", cursive;
  font-size: 38px;
  font-style: italic;
  transform: rotate(-9deg);
}

.expertise {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 88vh;
  padding: clamp(100px, 12vw, 170px) var(--page) 50px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 50%, rgba(19,116,231,.22), transparent 31%),
    #050a12;
  overflow: hidden;
}

.expertise__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78vw, 1000px);
  aspect-ratio: 1;
  border: 1px solid rgba(87,169,255,.09);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.expertise__orbit::before,
.expertise__orbit::after {
  position: absolute;
  border: 1px solid rgba(87,169,255,.08);
  border-radius: 50%;
  content: "";
}

.expertise__orbit::before { inset: 16%; }
.expertise__orbit::after { inset: 33%; border-style: dashed; animation: rotate 35s linear infinite; }

.expertise__orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 22px rgba(80,165,255,.75);
}

.expertise__orbit i:nth-child(1) { top: 10%; left: 27%; }
.expertise__orbit i:nth-child(2) { top: 50%; right: -3px; }
.expertise__orbit i:nth-child(3) { bottom: 19%; left: 12%; }

.expertise > *:not(.expertise__orbit) {
  position: relative;
  z-index: 1;
}

.expertise__lead {
  max-width: 720px;
  margin: auto auto 55px;
  color: rgba(255,255,255,.48);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.6;
  text-align: center;
}

.expertise__words {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  white-space: nowrap;
}

.expertise__words span {
  font-size: clamp(43px, 7.6vw, 116px);
  font-weight: 560;
  line-height: .9;
  letter-spacing: -.07em;
}

.expertise__words span:nth-of-type(2) {
  color: #6bb6ff;
}

.expertise__words i {
  color: rgba(255,255,255,.18);
  font-size: clamp(28px, 4vw, 60px);
  font-style: normal;
  font-weight: 250;
}

.expertise__caption {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.4);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.expertise__caption p {
  margin: 0;
}

.expertise__caption p:nth-child(2) { text-align: center; }
.expertise__caption p:last-child { text-align: right; }

.mini-contact {
  position: relative;
  min-height: 92vh;
  padding: clamp(100px, 12vw, 180px) var(--page) 45px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 30%, rgba(45, 146, 255, .35), transparent 28%),
    radial-gradient(circle at 18% 90%, rgba(19, 116, 231, .25), transparent 25%),
    #061124;
  overflow: hidden;
}

.mini-contact::before {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.mini-contact > * {
  position: relative;
}

.mini-contact .eyebrow {
  color: rgba(255, 255, 255, .58);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 8vw;
  align-items: end;
}

.mini-contact h2 {
  max-width: 1050px;
  margin: 0 0 55px;
  font-size: clamp(56px, 8vw, 122px);
  font-weight: 570;
  line-height: .94;
  letter-spacing: -.07em;
}

.mini-contact h2 span {
  color: #71b9ff;
}

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

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

.contact__details {
  display: grid;
  align-self: stretch;
  align-content: center;
  max-width: 470px;
  padding: 35px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.contact__details > p {
  margin: 0 0 45px;
  color: rgba(255,255,255,.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact__details > a {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: clamp(16px, 1.4vw, 21px);
  letter-spacing: -.025em;
}

.contact__details > a span {
  color: #6db8ff;
}

.contact__details address {
  margin-top: 45px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  font-style: normal;
  line-height: 1.7;
}

.mini-contact__footer {
  position: absolute;
  right: var(--page);
  bottom: 42px;
  left: var(--page);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.footer-brand img {
  width: 26px;
  height: 26px;
}

.footer-brand > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .16em;
}

.footer-brand small {
  color: rgba(255,255,255,.4);
  font-size: 6px;
  letter-spacing: .2em;
}

.mini-contact__footer a:hover {
  color: var(--white);
}

.mini-contact__footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }

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

/* Strict, compact refinement */
:root {
  --radius: 14px;
}

.header {
  min-height: 76px;
  border-bottom-color: rgba(7, 16, 31, .06);
}

.header.is-scrolled {
  min-height: 66px;
}

.brand__mark {
  border-radius: 9px;
  box-shadow: inset 0 0 0 1px rgba(19, 116, 231, .09);
}

.nav {
  gap: 26px;
  padding: 9px 16px;
  border-radius: 10px;
  box-shadow: none;
}

.header__cta span,
.button,
.button span {
  border-radius: 10px;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 1fr);
  min-height: min(100svh, 820px);
  padding: 126px var(--page) 32px;
}

.hero h1 {
  font-size: clamp(52px, 5.5vw, 86px);
  font-weight: 610;
  line-height: .98;
  letter-spacing: -.058em;
}

.hero__lead {
  max-width: 570px;
  margin-top: 25px;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.5;
}

.hero__actions {
  margin-top: 29px;
}

.hero-system {
  width: min(36vw, 490px);
  margin: 0;
}

.system__core,
.system__glass {
  border-radius: 25%;
}

.hero__meta {
  gap: clamp(26px, 3vw, 48px);
  padding-top: 23px;
}

.section-index {
  margin-bottom: clamp(42px, 5vw, 64px);
}

.statement,
.impact,
.services,
.process,
.director {
  padding-top: clamp(72px, 7.5vw, 108px);
  padding-bottom: clamp(72px, 7.5vw, 108px);
}

.statement__grid,
.services__title-row,
.process__header,
.director__grid,
.contact__layout {
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 6vw, 92px);
}

.statement__grid {
  align-items: center;
}

.statement h2,
.impact h2,
.services__title-row h2,
.process__header h2 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.056em;
}

.statement__copy p {
  font-size: clamp(16px, 1.25vw, 19px);
}

.statement__copy p + p {
  margin-top: 20px;
  font-size: 15px;
}

.statement__line {
  margin-top: clamp(46px, 5vw, 72px);
}

.impact__metrics {
  margin-top: clamp(46px, 5.5vw, 72px);
}

.metric-card {
  min-height: 280px;
  padding: 30px;
}

.metric-card strong {
  margin-top: 54px;
  font-size: clamp(60px, 6vw, 86px);
}

.metric-card p {
  margin-top: 24px;
}

.services__title-row > p,
.process__header > p {
  font-size: clamp(15px, 1.15vw, 18px);
}

.service-list {
  margin-top: clamp(48px, 5.5vw, 76px);
}

.service-card {
  grid-template-columns: 48px 112px minmax(0, 1fr) auto;
  gap: clamp(18px, 2.4vw, 36px);
  min-height: 190px;
  padding: 25px 18px 25px 0;
}

.service-card__icon {
  width: 108px;
  height: 108px;
  border-radius: 20px;
}

.service-card:hover .service-card__icon {
  transform: none;
}

.service-card h3 {
  font-size: clamp(27px, 2.7vw, 40px);
}

.service-card p {
  font-size: 13px;
}

.service-card > a {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.process__steps {
  margin-top: clamp(50px, 5.5vw, 78px);
}

.process-step {
  min-height: 390px;
  padding: 32px;
}

.process-step h3 {
  margin-top: 64px;
  font-size: clamp(38px, 4vw, 58px);
}

.process-step ul {
  margin-top: 40px;
}

.director__grid {
  align-items: stretch;
}

.director__portrait {
  min-height: 610px;
  max-height: 680px;
}

.director__portrait > img {
  object-position: center 48%;
}

.director__message {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  font-size: 76px;
}

.director__message blockquote {
  margin-top: 30px;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.director__text {
  margin-top: 30px;
  font-size: clamp(14px, 1.08vw, 17px);
}

.director__signature {
  margin-top: 42px;
}

.mini-contact {
  min-height: 0;
  padding-top: clamp(72px, 7.5vw, 108px);
  padding-bottom: 38px;
}

.mini-contact h2 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.056em;
}

.contact__details {
  max-width: none;
  padding: 30px;
}

.mini-contact__footer {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  margin-top: clamp(54px, 6vw, 84px);
}

@media (max-width: 1050px) {
  .nav,
  .header__cta {
    display: none;
  }

  .header {
    grid-template-columns: 1fr auto;
  }

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

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding-top: 122px;
  }

  .hero-system {
    grid-row: 2;
    width: min(68vw, 480px);
    margin: 22px auto 0;
  }

  .hero__meta {
    grid-row: 3;
    margin-top: 20px;
  }

  .scroll-cue {
    display: none;
  }

  .services__title-row,
  .principles__header,
  .process__header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card {
    grid-template-columns: 50px 115px 1fr auto;
    gap: 20px;
  }

  .service-card__icon {
    width: 105px;
    height: 105px;
    transform: scale(.84);
    transform-origin: center;
  }

  .service-card:hover .service-card__icon {
    transform: rotate(-4deg) scale(.88);
  }

  .service-card__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card__tags {
    grid-column: auto;
    margin-top: 0;
  }

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

  .principle-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    min-height: 390px;
  }

  .principle-card > span,
  .principle-card h3,
  .principle-card p {
    grid-column: 2;
  }

  .principle-card > span {
    align-self: end;
  }

  .principle-card__visual {
    grid-row: 1 / 5;
    width: 100%;
    height: 330px;
    margin: 0;
  }

  .principle-card h3 {
    align-self: end;
  }

  .principle-card p {
    align-self: start;
  }

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

  .process-step {
    min-height: 350px;
  }

  .process-step h3 {
    margin-top: 52px;
  }

  .director__grid {
    grid-template-columns: minmax(320px, .82fr) 1.18fr;
    gap: 50px;
  }

  .director__portrait {
    min-height: 560px;
  }

  .expertise__words {
    flex-wrap: wrap;
    gap: 14px 2vw;
    white-space: normal;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__details {
    max-width: none;
  }

  .mini-contact {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --page: 20px;
  }

  .header {
    min-height: 76px;
  }

  .brand__mark {
    width: 35px;
    height: 35px;
  }

  .hero {
    padding-top: 108px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(44px, 12.5vw, 60px);
  }

  .gradient-text {
    width: auto;
  }

  .hero__lead {
    max-width: 95%;
    margin-top: 27px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    justify-content: space-between;
  }

  .hero-system {
    width: min(88vw, 420px);
    margin: 24px auto 0;
  }

  .system__node {
    font-size: 7px;
  }

  .hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 5px;
  }

  .hero__meta span {
    font-size: 16px;
  }

  .statement__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .statement h2 {
    font-size: clamp(40px, 11vw, 54px);
  }

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

  .metric-card {
    min-height: 250px;
  }

  .metric-card strong {
    margin-top: 45px;
  }

  .services {
    padding-right: var(--page);
    padding-left: var(--page);
  }

  .services__title-row h2,
  .process__header h2,
  .principles__header h2,
  .impact h2 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .service-card {
    grid-template-columns: 38px 1fr auto;
    gap: 13px;
    min-height: 0;
    padding: 26px 0;
  }

  .service-card__number {
    grid-column: 1;
  }

  .service-card__icon {
    grid-column: 2 / 4;
    width: 110px;
    height: 110px;
    margin-bottom: 22px;
  }

  .service-card__content {
    grid-column: 2 / 4;
  }

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

  .service-card > a {
    grid-column: 3;
    grid-row: 1;
    width: 44px;
    height: 44px;
  }

  .principle-card {
    display: block;
    min-height: 525px;
    padding: 20px;
  }

  .principle-card__visual {
    height: 270px;
    margin: 18px 0 32px;
  }

  .process-step {
    min-height: 380px;
    padding: 28px 22px;
  }

  .process-step h3 {
    margin-top: 52px;
  }

  .director::before {
    display: none;
  }

  .director__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .director__portrait {
    min-height: 520px;
  }

  .portrait-placeholder__rings {
    width: 310px;
    height: 310px;
  }

  .director__message blockquote {
    font-size: 30px;
  }

  .director__signature {
    align-items: start;
    flex-direction: column;
  }

  .expertise {
    min-height: 800px;
  }

  .expertise__lead {
    text-align: left;
  }

  .expertise__words {
    align-items: flex-start;
    flex-direction: column;
  }

  .expertise__words i {
    margin-left: 12px;
  }

  .expertise__caption {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .expertise__caption p:nth-child(2),
  .expertise__caption p:last-child {
    text-align: left;
  }

  .mini-contact {
    min-height: 0;
    padding-top: 72px;
  }

  .mini-contact h2 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .contact__details {
    padding: 24px 18px;
  }

  .contact__details > a {
    font-size: 16px;
  }

  .mini-contact__footer {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

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

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