:root {
  --ink: #061421;
  --ink-2: #0b1e2c;
  --ink-3: #102c3c;
  --cream: #f4f0e7;
  --paper: #faf8f2;
  --paper-2: #e8e3d8;
  --gold: #d8b46f;
  --gold-2: #f0d69b;
  --cyan: #6dd8e8;
  --white: #ffffff;
  --muted: #99aab3;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(6, 20, 33, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 72px));
  --section-space: clamp(96px, 10vw, 180px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

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

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

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

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

.page-noise {
  position: fixed;
  z-index: 300;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(109, 216, 232, 0.07), transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}

.site-progress {
  position: fixed;
  z-index: 98;
  top: 148px;
  right: 17px;
  bottom: 38px;
  display: flex;
  width: 18px;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.site-progress > span,
.site-progress > small {
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.site-progress__rail {
  position: relative;
  width: 1px;
  flex: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}

.site-progress__rail i {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--gold), var(--cyan));
  box-shadow: 0 0 12px rgba(109, 216, 232, 0.55);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.08s linear;
}

.global-story-canvas {
  position: fixed;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: brightness(1.32) saturate(1.3) contrast(1.04);
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    opacity: 1;
  }
}

.status-bar {
  position: relative;
  z-index: 102;
  height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #03101b;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-bar__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.status-bar__signal {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
}

.status-bar__signal i,
.contact-card__top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6de89e;
  box-shadow: 0 0 0 5px rgba(109, 232, 158, 0.1);
  animation: signalPulse 2s ease-in-out infinite;
}

.status-bar a {
  color: var(--gold-2);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 34px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--white);
  transition:
    top 0.35s var(--ease),
    background 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  background: rgba(3, 16, 27, 0.88);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  height: 86px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  display: block;
  width: auto;
  height: 70px;
  object-fit: contain;
}

.brand--footer .brand__logo {
  height: 104px;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(216, 180, 111, 0.55);
  border-radius: 50%;
  color: var(--gold-2);
}

.brand__mark::before,
.brand__mark::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.brand__mark::before {
  top: -3px;
}

.brand__mark::after {
  bottom: -3px;
}

.brand__mark span {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name b {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand__name small {
  margin-top: 7px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.primary-nav a::after {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width 0.25s var(--ease);
}

.primary-nav a:hover {
  color: var(--white);
}

.primary-nav .primary-nav__return {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: clamp(12px, 1.5vw, 24px);
  border-right: 1px solid rgba(216, 180, 111, 0.3);
  color: var(--gold-2);
}

.primary-nav a:not(.primary-nav__cta):hover::after {
  width: 100%;
}

.primary-nav .primary-nav__cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0 19px;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(216, 180, 111, 0.6);
  color: var(--gold-2);
}

.primary-nav .primary-nav__cta::after {
  display: none;
}

.primary-nav .primary-nav__cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.nav-toggle i {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.3s ease;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 940px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(48, 116, 141, 0.18), transparent 31%),
    linear-gradient(135deg, #020c15 0%, #071826 51%, #06111d 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero__canvas-wrap,
.hero__vignette {
  position: absolute;
  inset: 0;
}

.hero__canvas-wrap {
  display: none;
}

.hero-showcase {
  position: relative;
  z-index: 2;
  padding-top: 154px;
}

.hero-showcase__frame {
  --hero-depth: 0;
  --hero-shell: 1;
  position: relative;
  width: min(100%, 1200px);
  margin-inline: auto;
  overflow: visible;
  border: 1px solid rgba(216, 180, 111, 0.28);
  border-radius: clamp(16px, 2vw, 30px);
  background: #020b14;
  box-shadow:
    0 50px 140px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  isolation: isolate;
  transform-style: preserve-3d;
  perspective: 1400px;
  will-change: background-color, border-color, box-shadow;
}

.hero-showcase__frame::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(4, 15, 26, 0.18);
  opacity: var(--hero-shell);
  content: "";
  pointer-events: none;
}

.hero-showcase img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  will-change: opacity, filter;
}

.hero-showcase__shards {
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  transform-style: preserve-3d;
}

.hero-showcase__shard {
  position: absolute;
  display: block;
  background-image: url("assets/media/og-card.png");
  background-repeat: no-repeat;
  backface-visibility: hidden;
  box-shadow:
    0 0 0 0.5px rgba(154, 225, 236, calc(var(--hero-depth) * 0.16)),
    0 18px 42px rgba(0, 0, 0, calc(var(--hero-depth) * 0.22));
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.hero-showcase__depth {
  position: absolute;
  z-index: 4;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
  transform-style: preserve-3d;
}

.hero-showcase__depth::before {
  position: absolute;
  inset: 0;
  opacity: calc(0.15 + var(--hero-depth) * 0.45);
  background:
    linear-gradient(105deg, transparent 42%, rgba(109, 216, 232, 0.09), transparent 66%),
    radial-gradient(circle at 73% 42%, transparent 0 28%, rgba(216, 180, 111, 0.12) 29%, transparent 29.5%);
  content: "";
}

.hero-showcase__orbit {
  position: absolute;
  top: 50%;
  left: 72%;
  border: 1px solid rgba(109, 216, 232, 0.38);
  border-radius: 50%;
  opacity: calc(0.22 + var(--hero-depth) * 0.5);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-showcase__orbit--one {
  width: 38%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(calc(68deg - var(--hero-depth) * 25deg)) rotateZ(calc(18deg + var(--hero-depth) * 90deg)) scale(calc(0.9 + var(--hero-depth) * 0.28));
}

.hero-showcase__orbit--two {
  width: 49%;
  aspect-ratio: 1;
  border-color: rgba(216, 180, 111, 0.29);
  transform: translate(-50%, -50%) rotateY(calc(68deg - var(--hero-depth) * 26deg)) rotateZ(calc(-24deg - var(--hero-depth) * 72deg)) scale(calc(0.92 + var(--hero-depth) * 0.2));
}

.hero-showcase__coordinate,
.hero-showcase__enter {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 16, 27, 0.54);
  color: rgba(255, 255, 255, 0.62);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-showcase__coordinate {
  top: 24px;
  right: 26px;
  transform: translate3d(calc(var(--hero-depth) * -32px), calc(var(--hero-depth) * 24px), 70px);
}

.hero-showcase__enter {
  bottom: 23px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-2);
  transform: translate3d(calc(var(--hero-depth) * 24px), calc(var(--hero-depth) * -20px), 90px);
}

.hero-showcase__enter b {
  animation: enterField 1.8s ease-in-out infinite;
}

#heroCanvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.93;
}

.hero__vignette {
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 12, 21, 0.92) 0%, rgba(2, 12, 21, 0.42) 52%, rgba(2, 12, 21, 0.12) 100%),
    linear-gradient(0deg, rgba(2, 12, 21, 0.88) 0%, transparent 32%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 830px;
  padding-top: 90px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.55fr);
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
}

.hero__content {
  max-width: 810px;
}

.eyebrow {
  display: flex;
  margin: 0 0 28px;
  align-items: center;
  gap: 16px;
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.eyebrow span {
  color: var(--white);
}

.eyebrow--dark {
  color: #80653c;
}

.hero h1,
.section-heading h2,
.intro__heading h2,
.contact__headline h2,
.methodology__heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(68px, 7.25vw, 118px);
}

.hero h1 em {
  display: block;
  color: var(--gold-2);
  font-weight: 500;
}

.hero__lede {
  max-width: 690px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.85;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

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

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

.button--gold:hover {
  background: var(--gold-2);
}

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

.button--dark:hover {
  background: var(--ink-3);
}

.button--line {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.button--line:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.25s ease;
}

.text-link:hover,
.arrow-link:hover {
  border-color: var(--gold);
}

.hero__proof {
  display: flex;
  margin-top: 68px;
  gap: 0;
}

.hero__proof > div {
  display: flex;
  padding-right: 36px;
  align-items: center;
  gap: 15px;
}

.hero__proof > div + div {
  padding-left: 36px;
  border-left: 1px solid var(--line-dark);
}

.hero__proof strong {
  font-family: var(--serif);
  color: var(--gold-2);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.hero__proof span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-console {
  position: relative;
  align-self: center;
  width: min(100%, 390px);
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(4, 21, 33, 0.5);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.hero-console::before,
.hero-console::after {
  position: absolute;
  width: 15px;
  height: 15px;
  border-style: solid;
  border-color: var(--gold);
  content: "";
}

.hero-console::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.hero-console::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}

.hero-console__top,
.hero-console__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-console__top span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
}

.hero-console__top span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6de89e;
  box-shadow: 0 0 10px #6de89e;
}

.hero-console__top b {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 600;
}

.hero-console__radar {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 28px auto;
  overflow: hidden;
  border: 1px solid rgba(109, 216, 232, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 216, 232, 0.09), transparent 65%);
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(109, 216, 232, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring--1 {
  width: 34%;
  height: 34%;
}

.radar-ring--2 {
  width: 66%;
  height: 66%;
}

.radar-ring--3 {
  width: 94%;
  height: 94%;
}

.radar-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(109, 216, 232, 0.15);
  transform: translate(-50%, -50%);
}

.radar-cross--x {
  width: 94%;
  height: 1px;
}

.radar-cross--y {
  width: 1px;
  height: 94%;
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform-origin: 0 0;
  background: conic-gradient(from 0deg, rgba(109, 216, 232, 0.32), transparent 35deg);
  animation: radarSweep 6s linear infinite;
}

.radar-point {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 14px var(--gold);
}

.radar-point--1 {
  top: 27%;
  left: 34%;
}

.radar-point--2 {
  top: 60%;
  left: 70%;
}

.radar-point--3 {
  top: 74%;
  left: 43%;
}

.hero-console__regions {
  display: grid;
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.hero-console__regions span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-console__regions i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.hero-console__regions .is-active {
  background: #6de89e;
  box-shadow: 0 0 7px #6de89e;
}

.hero-console__foot {
  padding-top: 17px;
}

.hero-console__foot span {
  color: rgba(255, 255, 255, 0.38);
}

.hero-console__foot strong {
  color: var(--white);
  font-weight: 600;
}

.client-strip {
  position: relative;
  z-index: 2;
  display: flex;
  height: 110px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
  gap: 48px;
}

.client-strip > span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-strip__list {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}

.client-strip__list b {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}

.client-strip__list i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  position: relative;
  z-index: 2;
  padding: var(--section-space) 0;
}

.intro {
  overflow: hidden;
  background: var(--paper);
}

.intro::after {
  position: absolute;
  top: 8%;
  right: -13%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(6, 20, 33, 0.05);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 90px rgba(6, 20, 33, 0.018),
    0 0 0 180px rgba(6, 20, 33, 0.012);
}

.intro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.25fr 0.82fr 0.62fr;
  gap: clamp(36px, 5vw, 90px);
}

.section-index {
  display: flex;
  padding-top: 8px;
  align-items: center;
  align-self: start;
  gap: 14px;
  color: #7b715f;
}

.section-index span {
  font-family: var(--serif);
  font-size: 28px;
}

.section-index i {
  width: 50px;
  height: 1px;
  background: rgba(6, 20, 33, 0.25);
}

.section-index small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro__heading h2 {
  max-width: 690px;
  font-size: clamp(48px, 5vw, 82px);
}

.intro__copy {
  padding-top: 54px;
}

.intro__copy p {
  margin: 0 0 22px;
  color: #52606a;
  font-size: 14px;
  line-height: 1.95;
}

.arrow-link {
  margin-top: 14px;
  border-color: rgba(6, 20, 33, 0.25);
  color: var(--ink);
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: clamp(70px, 8vw, 130px);
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  perspective: 1200px;
}

.value-card {
  position: relative;
  min-height: 330px;
  padding: 37px 33px;
  overflow: hidden;
  background: var(--paper);
  transform-style: preserve-3d;
  transition:
    transform 0.25s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.value-card:not(.value-card--feature):hover {
  background: var(--ink);
  color: var(--white);
}

.value-card__number {
  color: #9c8a6d;
  font-family: var(--serif);
  font-size: 18px;
}

.value-card h3 {
  margin: 110px 0 15px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.05;
}

.value-card p {
  margin: 0;
  color: #65727b;
  font-size: 12px;
  line-height: 1.75;
}

.value-card:hover p {
  color: rgba(255, 255, 255, 0.56);
}

.value-card--feature {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background:
    radial-gradient(circle at 22% 30%, rgba(109, 216, 232, 0.16), transparent 35%),
    var(--ink);
  color: var(--white);
}

.value-card--feature::before {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
}

.value-card__seal {
  position: absolute;
  top: -19px;
  right: -12px;
  width: 178px;
  opacity: 0.92;
  filter: saturate(0.85);
  transform: rotate(9deg);
}

.value-card--feature small {
  position: relative;
  color: var(--gold-2);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-card--feature h3 {
  position: relative;
  margin: 13px 0 0;
  font-size: 36px;
}

.capabilities {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(72, 139, 158, 0.13), transparent 25%),
    var(--ink);
  color: var(--white);
}

.capabilities::after {
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  content: "";
}

.section-heading h2 {
  max-width: 880px;
  font-size: clamp(52px, 5.6vw, 92px);
}

.section-heading > p:not(.eyebrow) {
  max-width: 600px;
  margin: 28px 0 0;
  color: inherit;
  opacity: 0.62;
  font-size: 14px;
  line-height: 1.9;
}

.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
}

.section-heading--split > p {
  max-width: 440px;
  padding-bottom: 8px;
}

.service-switcher {
  margin-top: clamp(70px, 8vw, 120px);
}

.service-tabs {
  display: grid;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 1fr 1fr;
}

.service-tab {
  position: relative;
  display: grid;
  min-height: 98px;
  padding: 0 28px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  font-family: var(--serif);
  font-size: 27px;
  text-align: left;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.service-tab::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width 0.4s var(--ease);
}

.service-tab span {
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.service-tab i {
  font-family: var(--sans);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-tab:hover,
.service-tab.is-active {
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
}

.service-tab.is-active::after {
  width: 100%;
}

.service-panel {
  display: grid;
  padding-top: 70px;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(70px, 10vw, 160px);
  animation: panelIn 0.55s var(--ease);
}

.service-panel[hidden] {
  display: none;
}

.service-panel__intro {
  align-self: start;
  padding: 36px;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(255, 255, 255, 0.015);
}

.service-panel__intro > span {
  color: var(--gold-2);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-panel__intro h3 {
  margin: 70px 0 24px;
  font-family: var(--serif);
  font-size: clamp(38px, 3.3vw, 53px);
  font-weight: 500;
  line-height: 0.98;
}

.service-panel__intro p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.85;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: services;
}

.service-list li {
  display: grid;
  min-height: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.095);
  color: rgba(255, 255, 255, 0.75);
  grid-template-columns: 56px 1fr;
  align-items: center;
  font-size: 12px;
  transition:
    color 0.2s ease,
    padding-left 0.25s var(--ease);
}

.service-list li:hover {
  padding-left: 8px;
  color: var(--white);
}

.service-list li span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story {
  position: relative;
  z-index: 2;
  height: 440vh;
  min-height: 2500px;
  background: rgba(2, 11, 19, 0.38);
  color: var(--white);
}

.story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 43%, rgba(46, 154, 188, 0.31), transparent 34%),
    radial-gradient(circle at 67% 72%, rgba(216, 180, 111, 0.11), transparent 25%),
    linear-gradient(135deg, rgba(2, 10, 17, 0.88) 0%, rgba(8, 34, 50, 0.58) 56%, rgba(3, 17, 28, 0.7) 100%);
}

.story__atmosphere {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 10, 17, 0.84) 0%, rgba(2, 10, 17, 0.2) 45%, rgba(2, 10, 17, 0.015) 76%),
    linear-gradient(0deg, rgba(2, 10, 17, 0.47) 0%, transparent 40%, rgba(2, 10, 17, 0.12) 100%);
}

.story__grid-lines {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.09;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.story__interface {
  position: relative;
  z-index: 3;
  height: 100%;
  pointer-events: none;
}

.story__topline {
  position: absolute;
  top: clamp(105px, 13vh, 140px);
  right: 0;
  left: 0;
  display: flex;
  padding-bottom: 17px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story__topline span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
}

.story__topline i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6de89e;
  box-shadow: 0 0 12px #6de89e;
  animation: signalPulse 2s ease-in-out infinite;
}

.story__topline small {
  font: inherit;
}

.story__chapters {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(47vw, 620px);
  transform: translateY(-46%);
  perspective: 1200px;
}

.story__chapter {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(52px) rotateX(-9deg) translateZ(-80px);
  transform-origin: left bottom;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease,
    transform 0.8s var(--ease);
}

.story__chapter.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) rotateX(0) translateZ(0);
}

.story__chapter.is-past {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-48px) rotateX(8deg) translateZ(-90px);
}

.story__chapter p {
  margin: 0 0 23px;
  color: var(--gold-2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.story__chapter h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 5.25vw, 84px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.story__chapter h2 em {
  color: var(--gold-2);
  font-weight: 500;
}

.story__chapter > span {
  display: block;
  max-width: 470px;
  margin-top: 31px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.85;
}

.story__hud {
  position: absolute;
  right: 0;
  bottom: clamp(72px, 10vh, 110px);
  display: flex;
  width: min(29vw, 380px);
  align-items: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.34);
}

.story__hud > div {
  display: flex;
  align-items: flex-end;
  gap: 11px;
}

.story__hud small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story__hud strong {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 0.75;
}

.story__hud-line {
  position: relative;
  display: block;
  height: 1px;
  margin-bottom: 4px;
  overflow: hidden;
  flex: 1;
  background: rgba(255, 255, 255, 0.17);
}

.story__hud-line i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.08s linear;
}

.story__scroll-cue {
  position: absolute;
  bottom: clamp(70px, 10vh, 105px);
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story__scroll-cue i {
  position: relative;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.17);
}

.story__scroll-cue i::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  content: "";
  animation: storyScroll 2.2s ease-in-out infinite;
}

.fieldwork {
  background: var(--paper);
}

.fieldwork .section-heading {
  color: var(--ink);
}

.fieldwork-grid {
  display: grid;
  margin-top: clamp(70px, 8vw, 125px);
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 500px;
  gap: 16px;
  perspective: 1400px;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.work-card--wide {
  grid-column: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06);
  transition:
    transform 0.9s var(--ease),
    filter 0.5s ease;
}

.work-card:hover img {
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.055);
}

.work-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 16, 27, 0.22), transparent 45%),
    linear-gradient(0deg, rgba(3, 16, 27, 0.92), transparent 60%);
}

.work-card__tag {
  position: absolute;
  top: 26px;
  left: 27px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(3, 16, 27, 0.23);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.work-card__content {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.work-card__content h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.work-card__content p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 11px;
  line-height: 1.7;
}

.methodology {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    var(--ink-2);
  background-size: calc(100% / 6) 100%;
  color: var(--white);
}

.methodology__grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(70px, 11vw, 170px);
}

.methodology__heading {
  position: sticky;
  top: 140px;
  align-self: start;
}

.methodology__heading h2 {
  font-size: clamp(50px, 4.8vw, 75px);
}

.methodology__heading > p:not(.eyebrow) {
  max-width: 410px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.9;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  display: grid;
  min-height: 190px;
  padding: 40px 22px 40px 0;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 78px 1fr auto;
  gap: 20px;
  transition:
    padding-left 0.3s var(--ease),
    background 0.3s ease;
}

.method-steps li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.method-steps li:hover {
  padding-left: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.method-steps > li > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.method-steps h3 {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.method-steps p {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.method-steps i {
  color: var(--gold);
  font-size: 18px;
  font-style: normal;
}

.network {
  overflow: hidden;
  background: #040f19;
  color: var(--white);
}

.network::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(28, 82, 98, 0.13), transparent);
  content: "";
}

.network__grid {
  position: relative;
  display: grid;
  min-height: 800px;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: clamp(60px, 8vw, 140px);
}

.network__visual {
  position: relative;
  min-height: 660px;
}

.orbital {
  position: absolute;
  top: 50%;
  left: 47%;
  width: 550px;
  height: 550px;
  transform: translate(-50%, -50%);
  perspective: 1100px;
}

.orbital__globe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  overflow: hidden;
  border: 1px solid rgba(109, 216, 232, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(109, 216, 232, 0.27), transparent 35%),
    linear-gradient(145deg, rgba(11, 55, 74, 0.76), rgba(3, 17, 27, 0.9));
  box-shadow:
    inset -40px -40px 80px rgba(0, 0, 0, 0.58),
    0 0 100px rgba(109, 216, 232, 0.13);
  transform: translate(-50%, -50%);
}

.orbital__grid {
  position: absolute;
  inset: -20%;
  opacity: 0.43;
  border-radius: 50%;
  background-image:
    repeating-radial-gradient(ellipse at center, transparent 0 28px, rgba(109, 216, 232, 0.22) 30px),
    repeating-linear-gradient(90deg, transparent 0 37px, rgba(109, 216, 232, 0.18) 38px, transparent 39px);
  animation: globeShift 18s linear infinite;
}

.orbital__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(216, 180, 111, 0.22);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.orbital__ring--1 {
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(8deg);
}

.orbital__ring--2 {
  width: 460px;
  height: 460px;
  transform: translate(-50%, -50%) rotateY(72deg) rotateZ(24deg);
}

.orbital__ring--3 {
  width: 410px;
  height: 410px;
  transform: translate(-50%, -50%) rotateX(18deg) rotateY(70deg);
}

.orbital__pin {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(216, 180, 111, 0.09), 0 0 20px var(--gold);
  animation: pinPulse 2.8s ease-in-out infinite;
}

.orbital__pin--1 { top: 34%; left: 62%; }
.orbital__pin--2 { top: 44%; left: 28%; animation-delay: -0.7s; }
.orbital__pin--3 { top: 65%; left: 52%; animation-delay: -1.1s; }
.orbital__pin--4 { top: 25%; left: 45%; animation-delay: -1.8s; }
.orbital__pin--5 { top: 57%; left: 73%; animation-delay: -2.2s; }

.orbital__label {
  position: absolute;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(3, 17, 27, 0.72);
  color: rgba(255, 255, 255, 0.65);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.orbital__label--1 {
  top: 25%;
  right: -4%;
  color: var(--gold-2);
}

.orbital__label--2 {
  bottom: 20%;
  left: -5%;
}

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

.network__content .section-heading h2 {
  font-size: clamp(48px, 4.7vw, 72px);
}

.region-list {
  margin-top: 60px;
  border-top: 1px solid var(--line-dark);
}

.region-item {
  display: grid;
  width: 100%;
  min-height: 74px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  grid-template-columns: 48px 0.8fr 1.4fr auto;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    padding 0.25s var(--ease);
}

.region-item:hover,
.region-item.is-active {
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
}

.region-item > span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
}

.region-item strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.region-item small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-item i {
  color: var(--gold);
  font-style: normal;
}

.contact {
  overflow: hidden;
  background: var(--cream);
}

.contact::before {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(6, 20, 33, 0.06);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 80px rgba(6, 20, 33, 0.02),
    0 0 0 160px rgba(6, 20, 33, 0.015);
}

.contact__headline {
  position: relative;
  max-width: 880px;
}

.contact__headline h2 {
  font-size: clamp(60px, 7.1vw, 110px);
}

.contact__headline > p:not(.eyebrow) {
  max-width: 580px;
  margin: 28px 0 0;
  color: #5e696f;
  font-size: 13px;
}

.contact__grid {
  position: relative;
  display: grid;
  margin-top: clamp(70px, 8vw, 125px);
  grid-template-columns: 1.15fr 0.58fr;
  gap: 16px;
}

.inquiry-form {
  padding: clamp(30px, 4vw, 64px);
  border: 1px solid var(--line-light);
  background: rgba(250, 248, 242, 0.7);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.inquiry-form label {
  display: block;
  margin-bottom: 25px;
}

.inquiry-form label > span {
  display: block;
  margin-bottom: 9px;
  color: #6f705f;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  display: block;
  width: 100%;
  min-height: 53px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(6, 20, 33, 0.25);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
  transition: border-color 0.25s ease;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  border-color: var(--gold);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #9a9c94;
}

.form-submit {
  display: flex;
  margin-top: 20px;
  align-items: center;
  gap: 25px;
}

.form-submit small {
  color: #7c827e;
  font-size: 9px;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 -10px;
  color: #5f522e;
  font-size: 11px;
}

.contact-card {
  position: relative;
  padding: clamp(32px, 4vw, 55px);
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 12%, rgba(109, 216, 232, 0.14), transparent 26%),
    var(--ink);
  color: var(--white);
}

.contact-card::after {
  position: absolute;
  right: -60px;
  bottom: -75px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(216, 180, 111, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 34px rgba(216, 180, 111, 0.025),
    0 0 0 68px rgba(216, 180, 111, 0.018);
}

.contact-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-card__top span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card__top small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h3 {
  position: relative;
  z-index: 1;
  margin: 65px 0 52px;
  font-family: var(--serif);
  font-size: clamp(40px, 3.4vw, 55px);
  font-weight: 500;
  line-height: 0.96;
}

.contact-card__details {
  position: relative;
  z-index: 1;
}

.contact-card__details > * {
  position: relative;
  display: grid;
  min-height: 76px;
  padding: 15px 0;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 1fr auto;
  align-content: center;
}

.contact-card__details small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card__details strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-card__details span {
  align-self: center;
  color: var(--gold);
}

.contact-card__map {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 25px;
  padding-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(216, 180, 111, 0.4);
  color: var(--gold-2);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 75px 0 30px;
  background: #020b12;
  color: var(--white);
}

.site-footer__top {
  display: grid;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
}

.site-footer__top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.2;
}

.footer-up {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(216, 180, 111, 0.45);
  color: var(--gold);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.footer-up:hover {
  background: var(--gold);
  color: var(--ink);
}

.site-footer__bottom {
  display: flex;
  padding-top: 28px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.32);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__watermark {
  position: relative;
  margin-top: 68px;
  padding-top: 28px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__watermark small {
  display: block;
  margin-bottom: -7px;
  color: var(--gold);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__watermark strong {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: rgba(216, 180, 111, 0.13);
  font-family: var(--serif);
  font-size: clamp(72px, 13vw, 190px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.8;
  text-shadow: 0 0 70px rgba(216, 180, 111, 0.045);
  white-space: nowrap;
}

.site-footer__watermark strong span {
  color: rgba(109, 216, 232, 0.11);
  font-family: var(--sans);
  font-size: 0.28em;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.site-footer__bottom nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-footer__bottom a,
.site-footer__bottom button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: color 0.25s ease;
}

.site-footer__bottom a:hover,
.site-footer__bottom button:hover {
  color: var(--gold-2);
}

.offline-toast {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  max-width: 330px;
  padding: 13px 17px;
  border: 1px solid rgba(216, 180, 111, 0.6);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  font-size: 11px;
}

.page-transition {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(17, 58, 76, 0.55), rgba(2, 10, 17, 0.97) 52%),
    #020a11;
  place-items: center;
  perspective: 1000px;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.page-transition::before,
.page-transition::after {
  position: absolute;
  content: "";
}

.page-transition::before {
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.page-transition::after {
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--cyan), transparent);
  transform: translateX(-50vw);
}

.page-transition.is-active {
  opacity: 1;
  visibility: visible;
}

.page-transition.is-active::after {
  animation: transitionScan 0.75s var(--ease) both;
}

.page-transition__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(216, 180, 111, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.55) rotateX(62deg);
  transition: transform 0.65s var(--ease);
}

.page-transition__ring--outer {
  width: min(70vw, 630px);
  height: min(70vw, 630px);
}

.page-transition__ring--middle {
  width: min(48vw, 430px);
  height: min(48vw, 430px);
  border-color: rgba(109, 216, 232, 0.34);
  transition-delay: 0.05s;
}

.page-transition__ring--inner {
  width: min(28vw, 250px);
  height: min(28vw, 250px);
  transition-delay: 0.1s;
}

.page-transition.is-active .page-transition__ring {
  transform: translate(-50%, -50%) scale(1) rotateX(0) rotateZ(180deg);
}

.page-transition__core {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  opacity: 0;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: var(--serif);
  transform: scale(0.5) translateZ(-100px);
  transition:
    opacity 0.35s ease 0.12s,
    transform 0.6s var(--ease) 0.12s;
}

.page-transition.is-active .page-transition__core {
  opacity: 1;
  transform: scale(1) translateZ(0);
}

.page-transition > small {
  position: absolute;
  top: calc(50% + 74px);
  opacity: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(12px);
  transition:
    opacity 0.35s ease 0.18s,
    transform 0.35s ease 0.18s;
}

.page-transition.is-active > small {
  opacity: 1;
  transform: translateY(0);
}

.story-fallback .story {
  height: auto;
  min-height: 0;
  padding: 100px 0;
}

.story-fallback .story__sticky {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: visible;
}

.story-fallback .story__canvas,
.story-fallback .global-story-canvas,
.story-fallback .story__atmosphere,
.story-fallback .story__grid-lines,
.story-fallback .story__hud,
.story-fallback .story__scroll-cue {
  display: none;
}

.story-fallback .story__interface {
  height: auto;
}

.story-fallback .story__topline,
.story-fallback .story__chapters,
.story-fallback .story__chapter,
.story-fallback .story__chapter.is-active,
.story-fallback .story__chapter.is-past {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.story-fallback .story__topline {
  margin-bottom: 60px;
}

.story-fallback .story__chapters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-dark);
}

.story-fallback .story__chapter {
  padding: 36px;
  background: var(--ink);
}

.story-fallback .network .orbital {
  display: block;
}

/* Continuous deep-ocean edition */
.section {
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.intro {
  background:
    radial-gradient(circle at 88% 14%, rgba(109, 216, 232, 0.08), transparent 27%),
    linear-gradient(90deg, rgba(6, 20, 33, 0.95) 0%, rgba(8, 27, 40, 0.74) 55%, rgba(5, 19, 30, 0.5) 100%);
  color: var(--white);
}

.intro::after {
  border-color: rgba(109, 216, 232, 0.08);
  box-shadow:
    0 0 0 90px rgba(109, 216, 232, 0.018),
    0 0 0 180px rgba(216, 180, 111, 0.012);
}

.intro__heading h2,
.fieldwork .section-heading,
.contact__headline h2 {
  color: var(--white);
}

.intro .eyebrow--dark,
.fieldwork .eyebrow--dark,
.contact .eyebrow--dark {
  color: var(--gold-2);
}

.intro__copy p {
  color: rgba(255, 255, 255, 0.6);
}

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

.section-index i {
  background: rgba(216, 180, 111, 0.4);
}

.intro .arrow-link {
  border-color: rgba(216, 180, 111, 0.42);
  color: var(--gold-2);
}

.values-grid {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.09);
}

.value-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent),
    #091c29;
  color: var(--white);
}

.value-card:not(.value-card--feature):hover {
  background: #102c3c;
}

.value-card p {
  color: rgba(255, 255, 255, 0.52);
}

.value-card__seal {
  width: 146px;
  border-radius: 50%;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
}

.value-card__seal img {
  border-radius: 50%;
}

.fieldwork {
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 180, 111, 0.065), transparent 22%),
    linear-gradient(90deg, rgba(8, 27, 40, 0.91) 0%, rgba(6, 21, 33, 0.72) 62%, rgba(5, 18, 28, 0.54) 100%);
  color: var(--white);
}

.work-card {
  border: 1px solid rgba(216, 180, 111, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.contact {
  background:
    radial-gradient(circle at 80% 12%, rgba(109, 216, 232, 0.09), transparent 25%),
    linear-gradient(90deg, rgba(7, 24, 36, 0.94) 0%, rgba(6, 19, 30, 0.76) 58%, rgba(5, 16, 25, 0.62) 100%);
  color: var(--white);
}

.contact::before {
  border-color: rgba(109, 216, 232, 0.07);
  box-shadow:
    0 0 0 80px rgba(109, 216, 232, 0.015),
    0 0 0 160px rgba(216, 180, 111, 0.012);
}

.contact__headline > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.58);
}

.inquiry-form {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent),
    rgba(3, 16, 27, 0.64);
  color-scheme: dark;
}

.inquiry-form label > span {
  color: var(--gold-2);
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.inquiry-form select option {
  background: var(--ink-2);
  color: var(--white);
}

.contact .button--dark {
  background: var(--gold);
  color: var(--ink);
}

.contact .button--dark:hover {
  background: var(--gold-2);
}

.form-submit small,
.form-status {
  color: rgba(255, 255, 255, 0.45);
}

.hero {
  background:
    radial-gradient(circle at 72% 42%, rgba(48, 146, 176, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(2, 12, 21, 0.7) 0%, rgba(7, 24, 38, 0.5) 51%, rgba(6, 17, 29, 0.64) 100%);
}

.capabilities {
  background:
    radial-gradient(circle at 10% 10%, rgba(72, 139, 158, 0.13), transparent 25%),
    linear-gradient(90deg, rgba(6, 20, 33, 0.94), rgba(4, 15, 25, 0.7) 58%, rgba(3, 13, 22, 0.48));
}

.methodology {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 30, 44, 0.92), rgba(7, 23, 35, 0.68) 62%, rgba(4, 16, 25, 0.5));
  background-size: calc(100% / 6) 100%;
}

.network {
  background: linear-gradient(90deg, rgba(4, 15, 25, 0.5), rgba(4, 15, 25, 0.7) 52%, rgba(4, 15, 25, 0.93));
}

.network .orbital {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: perspective(1000px) translateY(34px) rotateX(3deg) scale(0.992);
  transform-origin: center bottom;
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes signalPulse {
  0%,
  100% { opacity: 1; }
  50% { opacity: 0.45; }
}

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

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

@keyframes globeShift {
  to { transform: translateX(38px); }
}

@keyframes pinPulse {
  0%,
  100% { transform: scale(0.85); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

@keyframes storyScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(300%); }
}

@keyframes transitionScan {
  to { transform: translateX(50vw); }
}

@keyframes enterField {
  0%,
  100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(calc(100% - 48px), 1120px);
  }

  .status-bar__inner > span:nth-child(2) {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(65px, 8vw, 95px);
  }

  .hero__proof > div {
    padding-right: 22px;
  }

  .hero__proof > div + div {
    padding-left: 22px;
  }

  .intro__grid {
    grid-template-columns: 0.16fr 0.9fr 0.62fr;
    gap: 35px;
  }

  .values-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .value-card:last-child {
    grid-column: 2 / 4;
  }

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

  .story__chapters {
    width: min(49vw, 540px);
  }

  .work-card--wide {
    grid-column: span 1;
  }

  .network__grid {
    grid-template-columns: 0.82fr 1fr;
  }

  .orbital {
    left: 43%;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100% - 40px);
    --section-space: 100px;
  }

  .status-bar__inner {
    justify-content: center;
  }

  .status-bar__inner > a {
    display: none;
  }

  .site-progress {
    display: none;
  }

  .site-header__inner {
    height: 76px;
  }

  .brand__logo {
    height: 62px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] i:first-of-type {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] i:last-of-type {
    transform: translateY(-3px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 120px 32px 50px;
    opacity: 0;
    visibility: hidden;
    background:
      radial-gradient(circle at 78% 18%, rgba(109, 216, 232, 0.12), transparent 25%),
      rgba(3, 16, 27, 0.98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .primary-nav a {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .primary-nav .primary-nav__return {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 180, 111, 0.3);
    color: var(--gold);
  }

  .primary-nav .primary-nav__cta {
    min-height: 54px;
    margin-top: 14px;
    padding: 0 21px;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero {
    min-height: auto;
  }

  .hero__vignette {
    background:
      linear-gradient(90deg, rgba(2, 12, 21, 0.85), rgba(2, 12, 21, 0.35)),
      linear-gradient(0deg, rgba(2, 12, 21, 0.96), transparent 47%);
  }

  .hero__grid {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 60px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero-console {
    width: min(100%, 480px);
    justify-self: end;
  }

  .client-strip {
    height: auto;
    padding: 28px 0 35px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .client-strip__list {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 22px;
  }

  .intro__grid {
    grid-template-columns: 0.18fr 1fr;
  }

  .intro__copy {
    padding: 20px 0 0;
    grid-column: 2;
  }

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

  .value-card:last-child {
    grid-column: auto;
  }

  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .service-panel {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .service-panel__intro h3 {
    margin-top: 40px;
  }

  .story {
    height: 400vh;
  }

  .story__chapters {
    width: min(58vw, 560px);
  }

  .story__hud {
    width: 300px;
  }

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

  .methodology__grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .methodology__heading {
    position: static;
  }

  .network__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .network__visual {
    min-height: 560px;
    order: 2;
  }

  .orbital {
    left: 50%;
  }

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

  .contact-card {
    min-height: 640px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .primary-nav {
    gap: 12px;
  }

  .primary-nav a {
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .primary-nav .primary-nav__cta {
    padding-inline: 12px;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
    --section-space: 84px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .status-bar {
    height: 30px;
    font-size: 8px;
  }

  .site-header {
    top: 30px;
  }

  .site-header__inner {
    height: 70px;
  }

  .brand {
    gap: 11px;
  }

  .brand__logo {
    height: 55px;
  }

  .brand--footer .brand__logo {
    height: 86px;
  }

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

  .brand__name b {
    font-size: 12px;
  }

  .brand__name small {
    font-size: 7px;
  }

  .nav-toggle {
    width: 43px;
    height: 43px;
  }

  .hero__grid {
    padding-top: 62px;
    gap: 55px;
  }

  .hero-showcase {
    padding-top: 126px;
  }

  .hero-showcase__frame {
    border-radius: 15px;
  }

  .hero-showcase__coordinate {
    display: none;
  }

  .hero-showcase__enter {
    bottom: 12px;
    left: 12px;
    font-size: 6px;
  }

  .eyebrow {
    align-items: flex-start;
    line-height: 1.6;
  }

  .eyebrow span {
    display: block;
  }

  .hero h1 {
    font-size: clamp(53px, 17vw, 74px);
  }

  .hero__lede {
    margin-top: 27px;
    font-size: 14px;
    line-height: 1.75;
  }

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

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero__proof {
    display: grid;
    margin-top: 48px;
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }

  .hero__proof > div {
    padding-right: 15px;
  }

  .hero__proof > div + div {
    padding-left: 18px;
  }

  .hero__proof > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-console {
    padding: 15px;
  }

  .hero-console__radar {
    width: min(70vw, 250px);
    height: min(70vw, 250px);
  }

  .client-strip__list {
    gap: 11px 14px;
  }

  .client-strip__list b {
    font-size: 14px;
  }

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

  .section-index {
    display: none;
  }

  .intro__copy {
    padding-top: 0;
    grid-column: 1;
  }

  .intro__heading h2,
  .section-heading h2 {
    font-size: clamp(46px, 14vw, 62px);
  }

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

  .value-card {
    min-height: 285px;
  }

  .value-card h3 {
    margin-top: 88px;
  }

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

  .service-tab {
    min-height: 79px;
    padding: 0 18px;
    grid-template-columns: 42px 1fr auto;
    font-size: 23px;
  }

  .service-panel {
    padding-top: 43px;
  }

  .story {
    height: 380vh;
    min-height: 2200px;
  }

  .story__sticky {
    min-height: 560px;
  }

  .story__topline {
    top: 100px;
  }

  .story__topline small {
    display: none;
  }

  .story__chapters {
    top: auto;
    bottom: 120px;
    width: 100%;
    transform: none;
  }

  .story__chapter {
    padding: 75px 0 0;
    background: linear-gradient(0deg, rgba(2, 10, 17, 0.98) 0%, rgba(2, 10, 17, 0.82) 64%, transparent 100%);
  }

  .story__chapter h2 {
    font-size: clamp(45px, 13.5vw, 62px);
  }

  .story__chapter > span {
    max-width: 92%;
    margin-top: 22px;
    font-size: 11px;
  }

  .story__hud {
    right: 0;
    bottom: 45px;
    width: min(64vw, 280px);
  }

  .story__scroll-cue {
    bottom: 42px;
  }

  .service-panel__intro {
    padding: 28px 23px;
  }

  .service-list li {
    min-height: 65px;
    grid-template-columns: 43px 1fr;
    line-height: 1.5;
  }

  .fieldwork-grid {
    display: flex;
    margin-right: -14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .fieldwork-grid::-webkit-scrollbar {
    display: none;
  }

  .work-card {
    width: min(82vw, 340px);
    height: 475px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .method-steps li {
    min-height: 215px;
    padding: 32px 0;
    grid-template-columns: 45px 1fr;
  }

  .method-steps i {
    display: none;
  }

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

  .network__visual {
    min-height: 440px;
  }

  .orbital {
    transform: translate(-50%, -50%) scale(0.65);
  }

  .region-item {
    min-height: 92px;
    padding: 12px 5px;
    grid-template-columns: 35px 1fr auto;
  }

  .region-item small {
    grid-column: 2 / 4;
    margin-top: -18px;
  }

  .contact__headline h2 {
    font-size: clamp(53px, 17vw, 76px);
  }

  .inquiry-form {
    padding: 30px 20px;
  }

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

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

  .contact-card {
    min-height: 590px;
  }

  .contact-card__details strong {
    font-size: 16px;
  }

  .site-footer__top {
    padding-bottom: 48px;
    grid-template-columns: 1fr auto;
    gap: 30px;
  }

  .site-footer__top > p {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    line-height: 1.8;
  }

  .site-footer__bottom nav {
    flex-wrap: wrap;
    gap: 17px 24px;
  }

  .site-footer__watermark strong {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    font-size: clamp(65px, 21vw, 105px);
  }
}

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

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

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

  .story {
    height: auto;
    min-height: 0;
    padding: 90px 0;
  }

  .story__sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .story__canvas,
  .global-story-canvas,
  .story__atmosphere,
  .story__grid-lines,
  .story__hud,
  .story__scroll-cue {
    display: none;
  }

  .story__interface {
    height: auto;
  }

  .story__topline,
  .story__chapters,
  .story__chapter {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .story__topline {
    margin-bottom: 60px;
  }

  .story__chapters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line-dark);
  }

  .story__chapter,
  .story__chapter.is-active,
  .story__chapter.is-past {
    padding: 36px;
    background: var(--ink);
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .story__chapter h2 {
    font-size: 44px;
  }

  .network .orbital {
    display: block;
  }
}

@media (prefers-contrast: more) {
  :root {
    --gold: #f0c979;
    --gold-2: #ffe3a4;
  }

  .hero__lede,
  .section-heading > p:not(.eyebrow),
  .service-list li,
  .work-card__content p {
    color: rgba(255, 255, 255, 0.84);
  }
}

/* Luminous ocean edition */
:root {
  --ink: #063d63;
  --ink-2: #075a7a;
  --ink-3: #087f91;
  --cream: #eaf8f6;
  --paper: #f4fbfa;
  --paper-2: #d9efec;
  --gold: #e7bd68;
  --gold-2: #ffe0a0;
  --cyan: #77e6ee;
  --muted: #b9dce3;
  --line-dark: rgba(255, 255, 255, 0.21);
}

body {
  background:
    radial-gradient(circle at 78% 12%, rgba(119, 230, 238, 0.3), transparent 30%),
    linear-gradient(145deg, #07527b 0%, #087d91 48%, #214f8f 100%);
}

.page-noise {
  opacity: 0.018;
}

.cursor-glow {
  background: radial-gradient(circle, rgba(139, 245, 242, 0.18), transparent 65%);
}

.global-story-canvas {
  filter: brightness(1.48) saturate(1.42) contrast(1.03);
}

.site-header.is-fixed {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 74, 112, 0.76);
  box-shadow: 0 14px 42px rgba(4, 57, 91, 0.16);
}

.hero {
  overflow: clip;
  background:
    radial-gradient(circle at 83% 23%, rgba(255, 192, 98, 0.32), transparent 24%),
    radial-gradient(circle at 14% 60%, rgba(78, 224, 210, 0.34), transparent 32%),
    linear-gradient(135deg, rgba(5, 64, 126, 0.8), rgba(6, 142, 155, 0.62) 56%, rgba(52, 72, 151, 0.68));
}

.hero::before {
  opacity: 0.17;
}

.hero-showcase {
  min-height: 135vh;
}

.hero-showcase__frame {
  position: sticky;
  top: 112px;
  background: rgba(4, 48, 90, 0.74);
  box-shadow:
    0 46px 120px rgba(5, 46, 91, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.hero-showcase__shard {
  box-shadow:
    0 0 0 1px rgba(146, 240, 244, calc(var(--hero-depth) * 0.5)),
    0 22px 50px rgba(10, 63, 117, calc(var(--hero-depth) * 0.42)),
    0 0 32px rgba(255, 211, 127, calc(var(--hero-depth) * 0.16));
}

.hero-console,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.19);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 200, 105, 0.22), transparent 27%),
    linear-gradient(145deg, rgba(18, 121, 157, 0.88), rgba(30, 73, 142, 0.84));
  box-shadow: 0 34px 85px rgba(5, 57, 104, 0.22);
}

.intro {
  background:
    radial-gradient(circle at 88% 14%, rgba(248, 181, 117, 0.26), transparent 27%),
    radial-gradient(circle at 12% 85%, rgba(106, 233, 221, 0.24), transparent 31%),
    linear-gradient(112deg, rgba(8, 112, 147, 0.86), rgba(32, 77, 151, 0.72) 58%, rgba(73, 69, 156, 0.58));
}

.intro::after {
  border-color: rgba(152, 239, 239, 0.18);
  box-shadow:
    0 0 0 90px rgba(117, 230, 238, 0.04),
    0 0 0 180px rgba(255, 203, 111, 0.025);
}

.intro__copy p,
.section-heading > p:not(.eyebrow),
.methodology__heading > p:not(.eyebrow),
.contact__headline > p:not(.eyebrow) {
  color: rgba(244, 253, 255, 0.76);
}

.values-grid {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 38px 90px rgba(18, 54, 116, 0.17);
}

.value-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 58%),
    rgba(7, 109, 146, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.13);
}

.value-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(255, 224, 160, 0.14), transparent 58%),
    rgba(38, 79, 155, 0.76);
}

.value-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(119, 230, 238, 0.2), transparent 58%),
    rgba(13, 132, 148, 0.75);
}

.value-card:not(.value-card--feature):hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), transparent),
    rgba(26, 105, 166, 0.88);
}

.value-card p,
.value-card:hover p {
  color: rgba(248, 253, 255, 0.72);
}

.value-card--feature {
  background:
    radial-gradient(circle at 22% 30%, rgba(123, 238, 238, 0.28), transparent 35%),
    linear-gradient(135deg, rgba(38, 76, 159, 0.9), rgba(100, 66, 156, 0.78));
}

.capabilities {
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 187, 104, 0.26), transparent 25%),
    radial-gradient(circle at 84% 76%, rgba(87, 236, 217, 0.28), transparent 31%),
    linear-gradient(112deg, rgba(25, 73, 153, 0.84), rgba(8, 126, 157, 0.74) 58%, rgba(11, 142, 145, 0.64));
}

.service-tab {
  color: rgba(255, 255, 255, 0.67);
}

.service-tab:hover,
.service-tab.is-active {
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.service-tab span {
  color: rgba(255, 255, 255, 0.58);
}

.service-panel__intro {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 209, 125, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(12, 100, 158, 0.38));
  box-shadow: 0 28px 68px rgba(15, 61, 126, 0.18);
  backdrop-filter: blur(18px);
}

.service-panel__intro p,
.service-list li {
  color: rgba(248, 253, 255, 0.78);
}

.story {
  height: auto;
  min-height: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 189, 104, 0.27), transparent 24%),
    linear-gradient(115deg, rgba(7, 128, 159, 0.76), rgba(43, 73, 157, 0.68) 54%, rgba(89, 66, 151, 0.58));
}

.story__sticky {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  padding: var(--section-space) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 42%, rgba(100, 238, 225, 0.24), transparent 35%),
    radial-gradient(circle at 67% 72%, rgba(255, 203, 112, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(6, 100, 152, 0.46), rgba(54, 74, 157, 0.36));
}

.story__atmosphere {
  background:
    linear-gradient(90deg, rgba(13, 82, 142, 0.52), rgba(7, 143, 160, 0.12) 55%, transparent 82%),
    linear-gradient(0deg, rgba(43, 73, 153, 0.22), transparent 46%);
}

.story__grid-lines {
  opacity: 0.16;
}

.story__interface {
  height: auto;
  min-height: 0;
}

.story__topline {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  color: rgba(255, 255, 255, 0.68);
}

.story__chapters {
  position: relative;
  top: auto;
  left: auto;
  display: grid;
  width: 100%;
  margin-top: clamp(58px, 7vw, 96px);
  background: rgba(255, 255, 255, 0.17);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  transform: none;
}

.story__chapter,
.story__chapter.is-active,
.story__chapter.is-past {
  position: relative;
  top: auto;
  left: auto;
  min-height: 310px;
  padding: clamp(30px, 4vw, 54px);
  opacity: 1;
  visibility: visible;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(16, 95, 154, 0.28)),
    rgba(13, 91, 145, 0.48);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.13);
  transform: none;
  backdrop-filter: blur(16px);
}

.story__chapter:nth-child(2),
.story__chapter:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(255, 218, 146, 0.13), rgba(77, 61, 151, 0.28)),
    rgba(37, 78, 151, 0.5);
}

.story__chapter h2 {
  font-size: clamp(39px, 3.6vw, 59px);
}

.story__chapter > span {
  color: rgba(248, 253, 255, 0.76);
}

.story__hud,
.story__scroll-cue {
  display: none;
}

.fieldwork {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 204, 113, 0.22), transparent 24%),
    radial-gradient(circle at 92% 70%, rgba(97, 230, 218, 0.27), transparent 30%),
    linear-gradient(105deg, rgba(9, 135, 151, 0.77), rgba(22, 92, 157, 0.7) 58%, rgba(62, 76, 157, 0.58));
}

.work-card {
  border-color: rgba(255, 224, 160, 0.28);
  box-shadow: 0 30px 70px rgba(17, 55, 124, 0.2);
}

.work-card img {
  filter: saturate(1.08) contrast(1.02) brightness(1.04);
}

.work-card__shade {
  background:
    linear-gradient(180deg, rgba(10, 98, 149, 0.08), transparent 45%),
    linear-gradient(0deg, rgba(13, 48, 111, 0.88), transparent 62%);
}

.methodology {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(240, 157, 136, 0.23), transparent 25%),
    linear-gradient(108deg, rgba(32, 75, 153, 0.8), rgba(8, 132, 159, 0.7) 62%, rgba(9, 151, 151, 0.6));
  background-size: calc(100% / 6) 100%, auto, auto;
}

.method-steps li {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent);
}

.method-steps li:hover {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(94, 231, 218, 0.08));
}

.method-steps p {
  color: rgba(248, 253, 255, 0.72);
}

.network {
  background:
    radial-gradient(circle at 18% 32%, rgba(105, 229, 222, 0.28), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(255, 190, 106, 0.24), transparent 23%),
    linear-gradient(105deg, rgba(64, 69, 151, 0.7), rgba(11, 96, 157, 0.72) 56%, rgba(8, 139, 157, 0.7));
}

.region-item {
  color: rgba(255, 255, 255, 0.72);
}

.region-item:hover,
.region-item.is-active {
  background: rgba(255, 255, 255, 0.11);
}

.region-item small {
  color: rgba(255, 255, 255, 0.61);
}

.contact {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 189, 105, 0.28), transparent 25%),
    radial-gradient(circle at 12% 78%, rgba(96, 231, 218, 0.27), transparent 30%),
    linear-gradient(100deg, rgba(7, 135, 154, 0.8), rgba(30, 82, 153, 0.7) 58%, rgba(77, 66, 151, 0.62));
}

.inquiry-form {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent),
    rgba(16, 85, 148, 0.54);
  box-shadow: 0 34px 85px rgba(12, 54, 123, 0.18);
  backdrop-filter: blur(18px);
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  border-color: rgba(255, 255, 255, 0.34);
}

.site-footer {
  background:
    radial-gradient(circle at 78% 18%, rgba(112, 231, 224, 0.16), transparent 27%),
    linear-gradient(110deg, #15427f, #087b91 58%, #315292);
}

.site-footer__watermark strong {
  color: rgba(255, 224, 160, 0.21);
}

.site-footer__watermark strong span {
  color: rgba(132, 239, 240, 0.2);
}

@media (max-width: 760px) {
  .hero-showcase {
    min-height: 112vh;
  }

  .hero-showcase__frame {
    top: 96px;
  }

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

  .story__chapter,
  .story__chapter.is-active,
  .story__chapter.is-past {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-showcase {
    min-height: 0;
  }

  .hero-showcase__frame {
    position: relative;
    top: auto;
  }

  .hero-showcase__shards {
    display: none;
  }
}

/* Pearl spectrum edition */
:root {
  --ink: #20232c;
  --ink-2: #34303d;
  --ink-3: #5f5268;
  --cream: #fbf8f2;
  --paper: #ffffff;
  --paper-2: #f0ebe2;
  --gold: #c8943e;
  --gold-2: #e7b95f;
  --cyan: #159873;
  --white: #ffffff;
  --muted: #6f6f76;
  --line-dark: rgba(32, 35, 44, 0.15);
  --line-light: rgba(32, 35, 44, 0.13);
}

body {
  background: #fff;
  color: var(--ink);
}

::selection {
  background: #f3c7b5;
  color: #32252a;
}

.global-story-canvas {
  opacity: 0.92;
  filter: brightness(1.06) saturate(1.2) contrast(1.06);
}

.page-noise {
  opacity: 0.012;
}

.cursor-glow {
  background: radial-gradient(circle, rgba(227, 102, 82, 0.1), transparent 66%);
}

.status-bar {
  border-bottom-color: rgba(32, 35, 44, 0.1);
  background: rgba(255, 255, 255, 0.94);
  color: rgba(32, 35, 44, 0.68);
}

.status-bar__signal {
  color: var(--ink);
}

.status-bar a {
  color: #a7546d;
}

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

.site-header.is-fixed {
  border-bottom: 1px solid rgba(32, 35, 44, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 42px rgba(70, 48, 52, 0.08);
}

.primary-nav a {
  color: rgba(32, 35, 44, 0.72);
}

.primary-nav a:hover {
  color: #a7546d;
}

.primary-nav .primary-nav__cta,
.button--gold {
  border-color: transparent;
  background: linear-gradient(110deg, #d65855, #e8a542 56%, #c9893a);
  box-shadow: 0 14px 34px rgba(190, 90, 66, 0.2);
  color: #fff;
}

.primary-nav .primary-nav__cta:hover,
.button--gold:hover {
  background: linear-gradient(110deg, #b94863, #dc7a46 55%, #d8a23e);
  color: #fff;
}

.nav-toggle {
  border-color: rgba(32, 35, 44, 0.18);
}

.nav-toggle i {
  background: var(--ink);
}

.site-progress {
  color: rgba(32, 35, 44, 0.4);
}

.site-progress__rail {
  background: rgba(32, 35, 44, 0.13);
}

.site-progress__rail i {
  background: linear-gradient(to bottom, #d65855, #e3a139 34%, #159873 67%, #775bb4);
  box-shadow: 0 0 12px rgba(200, 148, 62, 0.32);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 17%, rgba(226, 82, 87, 0.13), transparent 24%),
    radial-gradient(circle at 70% 82%, rgba(22, 156, 112, 0.12), transparent 29%),
    radial-gradient(circle at 8% 68%, rgba(232, 165, 66, 0.12), transparent 27%),
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 253, 249, 0.66));
  color: var(--ink);
}

.hero::before {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(32, 35, 44, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 35, 44, 0.12) 1px, transparent 1px);
}

.hero__grid {
  min-height: 100vh;
  padding-top: clamp(180px, 18vh, 230px);
  padding-bottom: clamp(100px, 12vh, 150px);
}

.hero h1 {
  color: #24222a;
}

.hero h1 em {
  background: linear-gradient(100deg, #b84c68, #df7148 48%, #c8953e);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.eyebrow,
.intro .eyebrow--dark,
.fieldwork .eyebrow--dark,
.contact .eyebrow--dark {
  color: #a7546d;
}

.eyebrow span {
  color: #2d6b57;
}

.hero__lede {
  color: rgba(32, 35, 44, 0.7);
}

.text-link,
.arrow-link {
  border-color: rgba(32, 35, 44, 0.25);
  color: var(--ink);
}

.hero__proof > div + div {
  border-left-color: rgba(32, 35, 44, 0.14);
}

.hero__proof strong {
  color: #bd6650;
}

.hero__proof > div:nth-child(2) strong {
  color: #168b68;
}

.hero__proof > div:nth-child(3) strong {
  color: #7455a8;
}

.hero__proof span {
  color: rgba(32, 35, 44, 0.58);
}

.hero-console {
  border: 1px solid rgba(32, 35, 44, 0.13);
  background:
    radial-gradient(circle at 88% 9%, rgba(226, 83, 87, 0.16), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(29, 155, 112, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 34px 85px rgba(77, 49, 56, 0.11),
    inset 0 1px rgba(255, 255, 255, 0.95);
  color: var(--ink);
  backdrop-filter: blur(22px);
}

.hero-console__top span {
  color: #a7546d;
}

.hero-console__top b,
.hero-console__foot span {
  color: rgba(32, 35, 44, 0.48);
}

.hero-console__foot strong {
  color: var(--ink);
}

.hero-console__radar {
  border-color: rgba(116, 85, 168, 0.25);
  background:
    radial-gradient(circle at 34% 30%, rgba(226, 83, 87, 0.12), transparent 28%),
    radial-gradient(circle at 66% 70%, rgba(22, 147, 105, 0.13), transparent 32%),
    #fffdf9;
}

.radar-ring {
  border-color: rgba(200, 148, 62, 0.25);
}

.radar-ring--1 {
  border-color: rgba(213, 85, 85, 0.34);
}

.radar-ring--2 {
  border-color: rgba(20, 147, 105, 0.3);
}

.radar-ring--3 {
  border-color: rgba(116, 85, 168, 0.26);
}

.radar-cross {
  background: rgba(32, 35, 44, 0.11);
}

.radar-sweep {
  background: conic-gradient(from 0deg, rgba(230, 167, 61, 0.35), transparent 38deg);
}

.radar-point {
  border-color: #fff;
  background: #d65855;
  box-shadow: 0 0 14px rgba(214, 88, 85, 0.55);
}

.radar-point--2 {
  background: #159873;
  box-shadow: 0 0 14px rgba(21, 152, 115, 0.5);
}

.radar-point--3 {
  background: #775bb4;
  box-shadow: 0 0 14px rgba(119, 91, 180, 0.5);
}

.hero-console__regions {
  border-color: rgba(32, 35, 44, 0.12);
}

.hero-console__regions span {
  color: rgba(32, 35, 44, 0.62);
}

.hero-console__regions i {
  background: rgba(32, 35, 44, 0.2);
}

.client-strip {
  border-top-color: rgba(32, 35, 44, 0.11);
}

.client-strip > span {
  color: rgba(32, 35, 44, 0.48);
}

.client-strip__list b {
  color: rgba(32, 35, 44, 0.7);
}

.client-strip__list i {
  background: #c8943e;
}

.section {
  border-top-color: rgba(32, 35, 44, 0.08);
}

.intro,
.capabilities,
.story,
.fieldwork,
.methodology,
.network,
.contact {
  color: var(--ink);
}

.intro {
  background:
    radial-gradient(circle at 88% 14%, rgba(208, 81, 104, 0.11), transparent 27%),
    radial-gradient(circle at 12% 84%, rgba(232, 166, 61, 0.11), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 250, 246, 0.69));
}

.intro::after {
  border-color: rgba(208, 81, 104, 0.13);
  box-shadow:
    0 0 0 90px rgba(232, 166, 61, 0.035),
    0 0 0 180px rgba(22, 147, 105, 0.025);
}

.intro__heading h2,
.fieldwork .section-heading,
.contact__headline h2,
.section-heading h2,
.methodology__heading h2 {
  color: var(--ink);
}

.intro__copy p,
.section-heading > p:not(.eyebrow),
.methodology__heading > p:not(.eyebrow),
.contact__headline > p:not(.eyebrow) {
  color: rgba(32, 35, 44, 0.67);
}

.section-index {
  color: rgba(32, 35, 44, 0.48);
}

.section-index i {
  background: rgba(200, 148, 62, 0.5);
}

.values-grid {
  border-color: rgba(32, 35, 44, 0.1);
  background: rgba(32, 35, 44, 0.08);
  box-shadow: 0 38px 90px rgba(76, 48, 55, 0.08);
}

.value-card,
.value-card:nth-child(2),
.value-card:nth-child(3) {
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px #fff;
  color: var(--ink);
}

.value-card:nth-child(1) {
  border-top: 4px solid #d65855;
}

.value-card:nth-child(2) {
  border-top: 4px solid #159873;
}

.value-card:nth-child(3) {
  border-top: 4px solid #775bb4;
}

.value-card:not(.value-card--feature):hover {
  background: #fffaf4;
  color: var(--ink);
}

.value-card p,
.value-card:hover p {
  color: rgba(32, 35, 44, 0.62);
}

.value-card--feature {
  border-top: 4px solid #dca33c;
  background:
    radial-gradient(circle at 20% 28%, rgba(232, 165, 66, 0.15), transparent 35%),
    radial-gradient(circle at 85% 85%, rgba(116, 85, 168, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.value-card--feature small {
  color: #a7546d;
}

.capabilities {
  background:
    radial-gradient(circle at 8% 14%, rgba(21, 152, 115, 0.11), transparent 25%),
    radial-gradient(circle at 86% 76%, rgba(119, 91, 180, 0.1), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.76), rgba(252, 250, 246, 0.7));
}

.service-tabs {
  border-bottom-color: rgba(32, 35, 44, 0.14);
}

.service-tab {
  color: rgba(32, 35, 44, 0.68);
}

.service-tab span {
  color: rgba(32, 35, 44, 0.45);
}

.service-tab:hover,
.service-tab.is-active {
  background: rgba(232, 165, 66, 0.08);
  color: var(--ink);
  box-shadow: none;
}

.service-tab::after {
  background: linear-gradient(90deg, #d65855, #e6a53f, #159873);
}

.service-panel__intro {
  border-color: rgba(32, 35, 44, 0.12);
  background:
    radial-gradient(circle at 88% 16%, rgba(214, 88, 85, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 68px rgba(70, 48, 54, 0.08);
  color: var(--ink);
}

.service-panel__intro > span {
  color: #a7546d;
}

.service-panel__intro p,
.service-list li {
  color: rgba(32, 35, 44, 0.67);
}

.service-list li {
  border-bottom-color: rgba(32, 35, 44, 0.12);
}

.service-list li:hover {
  color: #a7546d;
}

.story {
  background:
    radial-gradient(circle at 84% 18%, rgba(214, 88, 85, 0.11), transparent 25%),
    radial-gradient(circle at 16% 80%, rgba(116, 85, 168, 0.1), transparent 29%),
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(251, 248, 243, 0.68));
}

.story__sticky {
  background:
    radial-gradient(circle at 74% 42%, rgba(22, 147, 105, 0.09), transparent 35%),
    radial-gradient(circle at 67% 72%, rgba(232, 165, 66, 0.1), transparent 25%),
    rgba(255, 255, 255, 0.28);
}

.story__atmosphere {
  background:
    linear-gradient(90deg, rgba(255, 252, 247, 0.82), rgba(255, 255, 255, 0.12) 58%, transparent 82%),
    linear-gradient(0deg, rgba(234, 221, 204, 0.14), transparent 46%);
}

.story__grid-lines {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(32, 35, 44, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 35, 44, 0.16) 1px, transparent 1px);
}

.story__topline {
  border-bottom-color: rgba(32, 35, 44, 0.13);
  color: rgba(32, 35, 44, 0.56);
}

.story__topline span,
.story__chapter p {
  color: #a7546d;
}

.story__chapters {
  right: auto;
  bottom: auto;
  background: rgba(32, 35, 44, 0.09);
}

.story__chapter,
.story__chapter.is-active,
.story__chapter.is-past {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px #fff;
  color: var(--ink);
}

.story__chapter:nth-child(1) {
  border-top: 4px solid #d65855;
}

.story__chapter:nth-child(2) {
  border-top: 4px solid #e2a33c;
}

.story__chapter:nth-child(3) {
  border-top: 4px solid #159873;
}

.story__chapter:nth-child(4) {
  border-top: 4px solid #775bb4;
}

.story__chapter h2 em {
  color: #a7546d;
}

.story__chapter > span {
  color: rgba(32, 35, 44, 0.65);
}

.fieldwork {
  background:
    radial-gradient(circle at 14% 16%, rgba(232, 165, 66, 0.11), transparent 23%),
    radial-gradient(circle at 91% 72%, rgba(21, 152, 115, 0.1), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.77), rgba(252, 249, 244, 0.7));
}

.work-card {
  border-color: rgba(32, 35, 44, 0.1);
  box-shadow: 0 30px 70px rgba(73, 46, 53, 0.11);
}

.methodology {
  background:
    linear-gradient(90deg, rgba(32, 35, 44, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(214, 88, 85, 0.1), transparent 25%),
    radial-gradient(circle at 16% 76%, rgba(21, 152, 115, 0.09), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.77), rgba(251, 247, 241, 0.69));
  background-size: calc(100% / 6) 100%, auto, auto, auto;
}

.method-steps li {
  border-color: rgba(32, 35, 44, 0.12);
  background: rgba(255, 255, 255, 0.46);
}

.method-steps li:hover {
  background: linear-gradient(90deg, rgba(232, 165, 66, 0.12), rgba(255, 255, 255, 0.72));
}

.method-steps > li > span,
.method-steps i {
  color: #a7546d;
}

.method-steps p {
  color: rgba(32, 35, 44, 0.63);
}

.button--line {
  border-color: rgba(32, 35, 44, 0.25);
  color: var(--ink);
}

.button--line:hover {
  border-color: #a7546d;
}

.network {
  background:
    radial-gradient(circle at 16% 32%, rgba(21, 152, 115, 0.1), transparent 28%),
    radial-gradient(circle at 87% 10%, rgba(119, 91, 180, 0.1), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(252, 249, 244, 0.69));
}

.network::before {
  background: linear-gradient(0deg, rgba(232, 165, 66, 0.08), transparent);
}

.region-list {
  border-top-color: rgba(32, 35, 44, 0.13);
}

.region-item {
  border-bottom-color: rgba(32, 35, 44, 0.12);
  color: rgba(32, 35, 44, 0.7);
}

.region-item:hover,
.region-item.is-active {
  background: rgba(232, 165, 66, 0.09);
  color: var(--ink);
}

.region-item small {
  color: rgba(32, 35, 44, 0.52);
}

.contact {
  background:
    radial-gradient(circle at 81% 13%, rgba(214, 88, 85, 0.11), transparent 25%),
    radial-gradient(circle at 12% 80%, rgba(232, 165, 66, 0.1), transparent 29%),
    linear-gradient(rgba(255, 255, 255, 0.76), rgba(251, 248, 243, 0.7));
}

.contact::before {
  border-color: rgba(119, 91, 180, 0.1);
  box-shadow:
    0 0 0 80px rgba(214, 88, 85, 0.025),
    0 0 0 160px rgba(21, 152, 115, 0.02);
}

.inquiry-form {
  border-color: rgba(32, 35, 44, 0.12);
  background:
    radial-gradient(circle at 95% 5%, rgba(232, 165, 66, 0.08), transparent 25%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 34px 85px rgba(73, 46, 53, 0.09);
  color: var(--ink);
  color-scheme: light;
}

.inquiry-form label > span {
  color: #a7546d;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  border-color: rgba(32, 35, 44, 0.22);
  color: var(--ink);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder,
.form-submit small,
.form-status {
  color: rgba(32, 35, 44, 0.46);
}

.inquiry-form select option {
  background: #fff;
  color: var(--ink);
}

.contact .button--dark {
  background: linear-gradient(110deg, #7455a8, #b64e72 52%, #d76d4e);
  box-shadow: 0 14px 32px rgba(119, 77, 129, 0.18);
  color: #fff;
}

.contact .button--dark:hover {
  background: linear-gradient(110deg, #604494, #a74168 52%, #c55e45);
}

.contact-card {
  border-color: rgba(32, 35, 44, 0.12);
  background:
    radial-gradient(circle at 88% 10%, rgba(214, 88, 85, 0.12), transparent 27%),
    radial-gradient(circle at 12% 88%, rgba(21, 152, 115, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.87);
  box-shadow: 0 34px 85px rgba(73, 46, 53, 0.1);
  color: var(--ink);
}

.contact-card__top span {
  color: #a7546d;
}

.contact-card__top small,
.contact-card__details small {
  color: rgba(32, 35, 44, 0.45);
}

.contact-card__details > * {
  border-top-color: rgba(32, 35, 44, 0.12);
}

.site-footer {
  border-top: 1px solid rgba(32, 35, 44, 0.09);
  background:
    radial-gradient(circle at 80% 14%, rgba(119, 91, 180, 0.08), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(21, 152, 115, 0.08), transparent 28%),
    #fff;
  color: var(--ink);
}

.site-footer__top {
  border-bottom-color: rgba(32, 35, 44, 0.12);
}

.site-footer__top > p,
.site-footer__bottom {
  color: rgba(32, 35, 44, 0.58);
}

.site-footer__watermark {
  border-top-color: rgba(32, 35, 44, 0.1);
}

.site-footer__watermark small {
  color: #a7546d;
}

.site-footer__watermark strong {
  background: linear-gradient(90deg, rgba(214, 88, 85, 0.2), rgba(232, 165, 66, 0.18), rgba(21, 152, 115, 0.17));
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.site-footer__watermark strong span {
  color: rgba(119, 91, 180, 0.26);
}

@media (max-width: 900px) {
  .primary-nav {
    background:
      radial-gradient(circle at 82% 15%, rgba(214, 88, 85, 0.11), transparent 26%),
      radial-gradient(circle at 18% 82%, rgba(21, 152, 115, 0.1), transparent 28%),
      rgba(255, 255, 255, 0.98);
  }

  .primary-nav a {
    color: var(--ink);
  }

  .hero__grid {
    padding-top: 165px;
  }
}
