:root {
  --navy: #00152b;
  --navy-deep: #000d1c;
  --navy-soft: #0b2a47;
  --blue: #2f7df4;
  --blue-bright: #69a8ff;
  --gold: #c8a96b;
  --gold-soft: #e8dcc4;
  --paper: #f7f5ef;
  --paper-blue: #f3f7fc;
  --white: #fff;
  --ink: #0a2038;
  --muted: #536477;
  --line: #d7e0e8;
  --shell: min(1200px, calc(100vw - 48px));
  --header-height: 82px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 90px rgb(0 21 43 / 14%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family:
    "Segoe UI",
    "Yu Gothic UI",
    "Hiragino Kaku Gothic ProN",
    "Noto Sans JP",
    system-ui,
    sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

.menu-open body {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: white;
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: none;
}

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

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

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  box-shadow: none;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 1100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgb(0 21 43 / 9%);
  background: rgb(250 249 245 / 86%);
  backdrop-filter: blur(20px) saturate(150%);
  transition:
    background 240ms ease,
    box-shadow 240ms ease,
    transform 240ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 12px 42px rgb(0 21 43 / 9%);
}

.header-shell {
  display: flex;
  width: min(1440px, calc(100vw - 64px));
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.055em;
}

.brand img {
  width: 34px;
  height: 31px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 36px);
  font-size: 13px;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  min-height: 44px;
  padding-block: 9px;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.mobile-consult {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-inline: 22px;
  color: white;
  background: var(--navy);
  transition:
    background 180ms ease,
    transform 180ms var(--ease-out);
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.mobile-consult {
  min-height: 44px;
  padding-inline: 15px;
  font-size: 12px;
}

.menu-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 7px;
  border: 1px solid rgb(0 21 43 / 18%);
  background: white;
}

.menu-button span {
  width: 20px;
  height: 1px;
  background: var(--navy);
  transition: transform 180ms ease;
}

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

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

/* Shared */

.section-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: #185cbb;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.section-kicker span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgb(200 169 107 / 60%);
  border-radius: 50%;
  color: #99732e;
  font-size: 10px;
}

.section-kicker--light {
  color: #9bc4ff;
}

.section-kicker--light span {
  color: #f5d89d;
  border-color: rgb(232 205 151 / 45%);
}

.button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.03em;
  transition:
    color 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms var(--ease-out),
    box-shadow 200ms ease;
}

.button i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
  transition: transform 200ms var(--ease-out);
}

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

.button:hover i {
  transform: translate(2px, -2px);
}

.button--primary {
  min-width: 226px;
  color: white;
  background: var(--navy);
  box-shadow: 0 18px 42px rgb(0 21 43 / 18%);
}

.button--primary:hover {
  background: var(--blue);
  box-shadow: 0 22px 48px rgb(47 125 244 / 24%);
}

.button--line {
  min-width: 216px;
  border-color: #aab6c2;
  background: rgb(255 255 255 / 68%);
}

.button--line:hover {
  border-color: var(--navy);
  background: white;
}

.button--light {
  min-width: 250px;
  color: var(--navy);
  background: white;
}

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

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  padding-top: var(--header-height);
  isolation: isolate;
  background:
    linear-gradient(90deg, transparent 0 54.95%, rgb(0 21 43 / 10%) 54.95% 55%, transparent 55%),
    var(--paper);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: var(--header-height) 45% 0 0;
  content: "";
  opacity: 0.55;
  background-image:
    linear-gradient(rgb(0 21 43 / 6%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(0 21 43 / 6%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-copy-wrap {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(82px, 9vh, 128px) clamp(28px, 4.2vw, 72px) 92px max(32px, calc((100vw - 1440px) / 2 + 48px));
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  flex-wrap: wrap;
  margin-bottom: 30px;
  color: #8c6b2c;
  letter-spacing: 0.12em;
}

.eyebrow i {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 11.4em;
  margin-bottom: 30px;
  color: var(--navy);
  font-size: clamp(46px, 4.5vw, 68px);
  font-weight: 720;
  letter-spacing: -0.042em;
  line-height: 1.2;
  text-wrap: balance;
  word-break: auto-phrase;
}

.hero h1 strong {
  position: relative;
  color: #0d56b8;
  font-weight: inherit;
  white-space: nowrap;
}

.hero-first-line,
.hero-system-line {
  white-space: nowrap;
}

.hero h1 strong::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold) 0 18%, var(--blue) 18% 66%, transparent 66%);
  transform: scaleX(0);
  transform-origin: left;
  animation: hero-underline 1.2s var(--ease-out) 500ms forwards;
}

.hero-lead {
  max-width: 38em;
  margin-bottom: 36px;
  color: #3f5268;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.9;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 700px;
  margin-top: clamp(48px, 8vh, 84px);
  border-block: 1px solid rgb(0 21 43 / 14%);
}

.hero-signals span {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 11px;
  padding: 10px 18px;
  border-right: 1px solid rgb(0 21 43 / 12%);
  color: #31455b;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.hero-signals span:last-child {
  border-right: 0;
}

.hero-signals b {
  color: #a27c36;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.hero-stage-wrap {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(112deg, transparent 0 48%, rgb(47 125 244 / 7%) 48% 48.2%, transparent 48.2%),
    linear-gradient(145deg, #123f63, var(--navy) 52%, var(--navy-deep));
}

.hero-stage-wrap::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, rgb(255 255 255 / 8%), transparent 22% 78%, rgb(0 0 0 / 24%));
  pointer-events: none;
}

.hero-stage {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgb(102 168 245 / 18%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(102 168 245 / 18%) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(720px) rotateX(58deg) rotateZ(-8deg) scale(1.65) translate(-2%, 12%);
  transform-origin: center 78%;
  mask-image: linear-gradient(to bottom, transparent, black 26% 90%, transparent);
}

.stage-flow {
  position: absolute;
  z-index: 2;
  inset: 7% 2% 5% 2%;
  width: 96%;
  height: 88%;
  overflow: visible;
}

.flow-bases path,
.flow-lines path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.flow-bases path {
  opacity: 0.34;
  stroke: #78a8db;
  stroke-width: 1;
}

.flow-lines path {
  stroke: url("#flow-gradient");
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 8 13;
  vector-effect: non-scaling-stroke;
  animation: flow-line 14s linear infinite;
}

.flow-lines .flow-output {
  stroke: url("#output-gradient");
  stroke-dasharray: none;
  stroke-width: 2.2;
  animation: none;
}

.flow-pulses circle {
  fill: #ffe0a2;
}

.flow-label {
  position: absolute;
  z-index: 3;
  top: 7.5%;
  left: 7%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7fa8d2;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.flow-label i {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--blue-bright));
}

.flow-source {
  position: absolute;
  z-index: 3;
  display: flex;
  left: 7%;
  width: clamp(150px, 12.4vw, 188px);
  min-height: 105px;
  flex-direction: column;
  justify-content: center;
  padding: 17px 20px 16px 23px;
  border: 1px solid rgb(164 202 247 / 36%);
  border-left: 3px solid #6eaaff;
  border-radius: 3px;
  color: white;
  background:
    linear-gradient(130deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 3%)),
    rgb(6 42 71 / 70%);
  box-shadow:
    0 20px 45px rgb(0 0 0 / 26%),
    inset 0 1px 0 rgb(255 255 255 / 17%);
  backdrop-filter: blur(12px);
}

.flow-source::after {
  position: absolute;
  top: 50%;
  right: -9px;
  width: 17px;
  height: 1px;
  content: "";
  background: #77aef0;
}

.flow-source small,
.flow-destination small {
  margin-bottom: 10px;
  color: #92bce9;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.flow-source strong {
  margin-bottom: 2px;
  font-size: clamp(17px, 1.22vw, 20px);
  letter-spacing: 0.02em;
}

.flow-source > span {
  color: #a9bdd2;
  font-size: 10px;
}

.flow-source--company {
  top: 14%;
  border-left-color: var(--gold);
}

.flow-source--people {
  top: 41%;
  left: 11%;
}

.flow-source--customer {
  top: 68%;
  left: 7%;
}

.flow-destination {
  position: absolute;
  z-index: 4;
  top: 38%;
  right: 5%;
  display: flex;
  width: clamp(190px, 15.2vw, 238px);
  min-height: 204px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgb(159 205 255 / 46%);
  border-radius: 4px;
  color: white;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 15%), transparent 55%),
    linear-gradient(150deg, rgb(23 83 132 / 94%), rgb(4 37 67 / 96%));
  box-shadow:
    0 32px 76px rgb(0 0 0 / 38%),
    inset 0 1px 0 rgb(255 255 255 / 22%),
    0 0 80px rgb(47 125 244 / 16%);
  backdrop-filter: blur(14px);
}

.flow-destination::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold) 0 22%, var(--blue-bright) 22% 70%, transparent 70%);
}

.flow-destination::after {
  position: absolute;
  right: -34px;
  bottom: -52px;
  width: 142px;
  height: 142px;
  content: "";
  border: 1px solid rgb(113 174 241 / 20%);
  transform: rotate(45deg);
}

.flow-destination img {
  width: 44px;
  margin-bottom: 15px;
}

.flow-destination small {
  margin-bottom: 8px;
}

.flow-destination strong {
  margin-bottom: 10px;
  font-size: clamp(20px, 1.6vw, 25px);
  line-height: 1.5;
}

.flow-destination > span {
  color: #83adde;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.stage-caption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  margin: 0;
  color: #6f91b3;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.scroll-cue {
  position: absolute;
  z-index: 7;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #738194;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: rgb(0 21 43 / 20%);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--blue);
  animation: scroll-cue 2.4s ease-in-out infinite;
}

/* Issues */

.section-light {
  background: white;
}

.issues {
  padding: clamp(96px, 12vw, 168px) 0;
  border-bottom: 1px solid var(--line);
}

.issues-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(64px, 9vw, 140px);
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-height) + 60px);
  align-self: start;
}

.sticky-heading h2,
.services-heading h2,
.principles h2,
.process h2,
.faq h2 {
  max-width: 12em;
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 690;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.sticky-heading > p:last-child,
.services-heading > p,
.process-heading > p {
  max-width: 490px;
  margin-bottom: 0;
  color: var(--muted);
}

.issue-stack {
  border-top: 1px solid var(--line);
}

.issue-line {
  position: relative;
  display: grid;
  min-height: 186px;
  grid-template-columns: 54px 1fr 44px;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition:
    color 260ms ease,
    padding 260ms var(--ease-out);
}

.issue-line::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: var(--navy);
  transform: translateX(-102%);
  transition: transform 420ms var(--ease-out);
}

.issue-line:hover {
  padding-inline: 22px;
  color: white;
}

.issue-line:hover::before {
  transform: none;
}

.issue-line > span {
  color: #a27c36;
  font-size: 11px;
  font-weight: 750;
}

.issue-line h3 {
  margin-bottom: 9px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 680;
  letter-spacing: -0.01em;
}

.issue-line p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  transition: color 260ms ease;
}

.issue-line:hover p {
  color: #b8c9da;
}

.issue-line > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #b7c3cf;
  border-radius: 50%;
  font-style: normal;
}

.issue-line--accent {
  background: var(--paper);
}

/* Generated architecture */

.architecture {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: clamp(104px, 11vw, 154px) 0;
  color: white;
  background: linear-gradient(145deg, #0b304f, var(--navy-deep) 62%);
}

.architecture::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgb(112 172 243 / 12%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(112 172 243 / 12%) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.architecture-copy {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 24px clamp(54px, 8vw, 120px);
}

.architecture-copy .section-kicker {
  grid-column: 1 / -1;
}

.architecture-copy h2 {
  max-width: 610px;
  margin-bottom: 0;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 660;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.architecture-copy > p:last-child {
  max-width: 510px;
  margin-bottom: 7px;
  color: #b9cce0;
}

.architecture-visual {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: clamp(54px, 7vw, 86px) auto 0;
  overflow: hidden;
  border: 1px solid rgb(154 195 241 / 24%);
  background: #00152b;
  box-shadow: 0 70px 140px rgb(0 0 0 / 38%);
  transform: translate3d(0, var(--arch-y, 0), 0);
  transform-origin: center;
  will-change: transform;
}

.architecture-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 10%);
  pointer-events: none;
}

.architecture-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--navy);
}

.architecture-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  color: #89a3bf;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.architecture-visual figcaption a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 12px;
  letter-spacing: 0.04em;
  pointer-events: auto;
}

.architecture-visual figcaption i {
  font-style: normal;
}

/* Services */

.services {
  padding: clamp(100px, 12vw, 170px) 0;
  background: var(--paper-blue);
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 72px;
}

.services-heading h2 {
  margin-bottom: 0;
}

.services-heading > p {
  padding-bottom: 8px;
}

.service-explorer {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  border: 1px solid #cfd9e4;
  background: white;
  box-shadow: 0 38px 90px rgb(0 26 55 / 10%);
}

.service-index {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #cfd9e4;
}

.service-index {
  scrollbar-width: none;
}

.service-index::-webkit-scrollbar {
  display: none;
}

.service-index button {
  position: relative;
  display: grid;
  min-height: 98px;
  flex: 1;
  grid-template-columns: 38px 1fr;
  align-content: center;
  gap: 1px 15px;
  padding: 16px 24px;
  border: 0;
  border-bottom: 1px solid #dce3ea;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    padding 220ms var(--ease-out);
}

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

.service-index button::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(var(--gold), var(--blue));
  transform: scaleY(0);
  transition: transform 220ms var(--ease-out);
}

.service-index button:hover,
.service-index button[aria-selected="true"] {
  padding-left: 30px;
  color: white;
  background: var(--navy);
}

.service-index button[aria-selected="true"]::before {
  transform: scaleY(1);
}

.service-index button > span {
  grid-row: 1 / 3;
  align-self: center;
  color: #a07b38;
  font-size: 10px;
  font-weight: 800;
}

.service-index button strong {
  font-size: 15px;
  font-weight: 700;
}

.service-index button small {
  color: #596d80;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.service-index button:hover small,
.service-index button[aria-selected="true"] small {
  color: #89a8c7;
}

.service-stage {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 3%), transparent 42%),
    var(--navy-deep);
}

.service-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgb(105 166 236 / 13%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(105 166 236 / 13%) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(135deg, transparent, black);
}

.service-panel {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 690px;
  max-width: 670px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 88px);
  animation: panel-enter 480ms var(--ease-out);
}

.service-panel > p {
  margin-bottom: 22px;
  color: #84b4f1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-panel h3 {
  margin-bottom: 34px;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.service-panel ul {
  display: grid;
  gap: 4px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
  color: #b5c8dc;
  font-size: 14px;
}

.service-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-panel li::before {
  width: 17px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.service-panel > a {
  display: inline-flex;
  width: max-content;
  min-height: 48px;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgb(255 255 255 / 38%);
  font-size: 13px;
  font-weight: 750;
}

.service-panel > a span {
  color: #8ebfff;
}

.service-orbit {
  position: absolute;
  z-index: 2;
  right: -120px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgb(99 165 242 / 14%);
  border-radius: 50%;
  transition: transform 600ms var(--ease-out);
}

.service-orbit::before,
.service-orbit::after {
  position: absolute;
  border: 1px solid rgb(99 165 242 / 17%);
  border-radius: 50%;
  content: "";
}

.service-orbit::before {
  inset: 70px;
}

.service-orbit::after {
  inset: 140px;
  background: radial-gradient(circle, rgb(47 125 244 / 18%), transparent 68%);
}

.service-orbit span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.service-orbit span:nth-child(1) {
  top: 54px;
  left: 110px;
}

.service-orbit span:nth-child(2) {
  top: 158px;
  right: 18px;
  background: var(--blue-bright);
  box-shadow: 0 0 18px var(--blue);
}

.service-orbit span:nth-child(3) {
  bottom: 34px;
  left: 130px;
}

.service-orbit b {
  position: absolute;
  z-index: 2;
  right: 175px;
  bottom: 180px;
  color: rgb(255 255 255 / 12%);
  font-size: 92px;
  line-height: 1;
  transition: opacity 180ms ease;
}

/* CRM */

.crm {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 170px) 0;
  color: white;
  background:
    radial-gradient(circle at 8% 12%, rgb(47 125 244 / 28%), transparent 30%),
    linear-gradient(135deg, #072d50, var(--navy) 58%, var(--navy-deep));
}

.crm-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgb(107 169 242 / 11%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(107 169 242 / 11%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 32%, transparent 96%);
}

.crm-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(56px, 7vw, 100px);
}

.crm-copy,
.product-scene {
  min-width: 0;
}

.crm-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 4.6vw, 67px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.32;
}

.crm-copy h2 em {
  color: #7cb6ff;
  font-style: normal;
}

.crm-copy > p {
  margin-bottom: 28px;
  color: #bfd0e2;
}

.crm-points {
  display: grid;
  margin-bottom: 34px;
  border-top: 1px solid rgb(255 255 255 / 18%);
  grid-template-columns: 1fr 1fr;
}

.crm-points span {
  padding: 14px 5px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  color: #d7e4f1;
  font-size: 12px;
}

.crm-points span:nth-child(odd) {
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgb(255 255 255 / 38%);
  font-size: 13px;
  font-weight: 750;
}

.text-arrow i {
  color: #8cbfff;
  font-style: normal;
}

.product-scene {
  position: relative;
  margin: 0;
  perspective: 1200px;
  transform: translate3d(var(--product-x, 0), var(--product-y, 0), 0);
  transition: transform 160ms ease-out;
}

.product-scene::before {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -16%;
  width: 90%;
  height: 70%;
  content: "";
  border-radius: 50%;
  background: rgb(47 125 244 / 20%);
  filter: blur(60px);
}

.product-window {
  overflow: hidden;
  border: 1px solid rgb(160 195 235 / 42%);
  border-radius: 12px;
  background: #eaf0f7;
  box-shadow:
    0 58px 110px rgb(0 0 0 / 38%),
    0 0 0 10px rgb(255 255 255 / 3%);
  transform: rotateY(-5deg) rotateX(2deg);
}

.product-bar {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 6px;
  padding-inline: 14px;
  border-bottom: 1px solid #ccdae7;
  background: #f8fafc;
}

.product-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b8c5d2;
}

.product-bar > span:first-child {
  background: #d6b56f;
}

.product-bar b {
  margin-left: auto;
  color: #66788b;
  font-size: 7px;
  letter-spacing: 0.13em;
}

.product-ui {
  display: grid;
  min-height: 480px;
  grid-template-columns: 64px 1fr;
}

.product-ui aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding-top: 24px;
  background: #092947;
}

.product-ui aside i {
  width: 24px;
  height: 24px;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 6px;
}

.product-ui aside i:first-child {
  background: #2f7df4;
  box-shadow: 0 0 18px rgb(47 125 244 / 55%);
}

.product-main {
  min-width: 0;
  padding: clamp(22px, 3vw, 38px);
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 0, rgb(47 125 244 / 10%), transparent 32%),
    #f2f6fa;
}

.product-main > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.product-main header div {
  display: grid;
}

.product-main header small {
  margin-bottom: 4px;
  color: #61768d;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.product-main header strong {
  font-size: clamp(16px, 1.7vw, 23px);
}

.product-main header > span {
  color: #71849a;
  font-size: 9px;
}

.product-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.product-kpis article {
  position: relative;
  display: grid;
  min-height: 102px;
  align-content: center;
  padding: 14px;
  border: 1px solid #d9e2eb;
  background: white;
  box-shadow: 0 10px 24px rgb(20 52 81 / 5%);
}

.product-kpis small {
  color: #687c91;
  font-size: 8px;
}

.product-kpis strong {
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.2;
}

.product-kpis i {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: #2370d8;
  font-size: 7px;
  font-style: normal;
}

.product-panels {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10px;
}

.product-chart,
.product-ai {
  min-height: 180px;
  border: 1px solid #d9e2eb;
  background: white;
}

.product-chart {
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 8px;
  padding: 28px 20px 22px;
  background-image: linear-gradient(#edf2f6 1px, transparent 1px);
  background-size: 100% 38px;
}

.product-chart span {
  width: 12%;
  height: var(--bar);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#559bfa, #1b62c4);
  transform: scaleY(0);
  transform-origin: bottom;
  animation: chart-grow 800ms var(--ease-out) forwards;
}

.product-chart span:nth-child(even) {
  background: linear-gradient(#d8bd81, #aa8235);
}

.product-ai {
  padding: 20px;
  background:
    radial-gradient(circle at 100% 0, rgb(47 125 244 / 14%), transparent 45%),
    white;
}

.product-ai small {
  color: #2370d8;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.product-ai strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 14px;
}

.product-ai p {
  margin-bottom: 14px;
  color: #65788d;
  font-size: 9px;
  line-height: 1.7;
}

.product-ai span {
  color: #1764c8;
  font-size: 8px;
  font-weight: 700;
}

.product-scene figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: #8ea9c4;
  font-size: 9px;
}

.product-scene figcaption span {
  color: #d4b875;
  font-weight: 750;
  letter-spacing: 0.13em;
}

/* Principles */

.principles {
  padding: clamp(100px, 12vw, 170px) 0;
  background:
    linear-gradient(90deg, rgb(0 21 43 / 4%) 1px, transparent 1px),
    white;
  background-size: 96px 96px;
}

.principles-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(64px, 9vw, 140px);
}

.principles-intro {
  position: sticky;
  top: calc(var(--header-height) + 60px);
  align-self: start;
}

.principle-list {
  counter-reset: principle;
}

.principle-list article {
  position: relative;
  min-height: 250px;
  padding: 58px 42px 52px 90px;
  border-top: 1px solid var(--line);
  transition:
    background 260ms ease,
    transform 260ms var(--ease-out);
}

.principle-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-list article:hover {
  background: var(--paper-blue);
  transform: translateX(8px);
}

.principle-list span {
  position: absolute;
  top: 62px;
  left: 24px;
  color: #a07a35;
  font-size: 11px;
  font-weight: 750;
}

.principle-list h3 {
  margin-bottom: 16px;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 680;
  letter-spacing: -0.02em;
}

.principle-list p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
}

/* Process */

.process {
  overflow: hidden;
  padding: clamp(100px, 12vw, 164px) 0;
  background: var(--paper);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  column-gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.process-heading .section-kicker {
  grid-column: 1 / -1;
}

.process-heading h2 {
  margin-bottom: 0;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.process-track::before {
  position: absolute;
  top: 31px;
  right: 7%;
  left: 7%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.process-track li {
  position: relative;
  min-height: 230px;
  padding: 0 18px 28px;
  border-right: 1px solid #d3dce5;
}

.process-track li:last-child {
  border-right: 0;
}

.process-track span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid #bbc7d3;
  border-radius: 50%;
  color: #9a7430;
  background: var(--paper);
  font-size: 10px;
  font-weight: 800;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms var(--ease-out);
}

.process-track li:hover span {
  color: white;
  background: var(--navy);
  transform: scale(1.08);
}

.process-track strong {
  display: block;
  margin-bottom: 9px;
  font-size: 16px;
}

.process-track p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.process-link,
.faq-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #8090a1;
  font-size: 13px;
  font-weight: 750;
}

/* FAQ */

.faq {
  padding: clamp(100px, 11vw, 154px) 0;
  background: white;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(64px, 9vw, 140px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 60px);
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 10px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 680;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid #aebbc8;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%);
}

.faq-list details[open] {
  background: var(--paper-blue);
}

.faq-list details > p {
  max-width: 720px;
  margin: 0;
  padding: 0 58px 32px 10px;
  color: var(--muted);
}

/* Contact + company + footer */

.contact-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 11vw, 150px) 0;
  color: white;
  background: linear-gradient(135deg, #1b5a91, #123f6d 58%, var(--navy-deep));
}

/* Careers — a visual bridge from company purpose to recruitment */

.careers-teaser {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 72vw, 820px);
  overflow: hidden;
  color: white;
  background: #00152b;
}

.careers-teaser::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(0 13 28 / 98%) 0%, rgb(0 21 43 / 91%) 38%, rgb(0 21 43 / 34%) 68%, rgb(0 21 43 / 6%) 100%),
    linear-gradient(180deg, rgb(0 13 28 / 12%), rgb(0 13 28 / 42%));
  pointer-events: none;
}

.careers-teaser::after {
  position: absolute;
  z-index: 2;
  inset: 26px;
  border: 1px solid rgb(255 255 255 / 12%);
  content: "";
  pointer-events: none;
}

.careers-teaser__visual,
.careers-teaser__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.careers-teaser__visual img {
  object-fit: cover;
  object-position: center;
}

.careers-teaser__layout {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: clamp(620px, 72vw, 820px);
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.42fr);
  align-items: center;
  padding-block: 110px;
}

.careers-teaser__copy {
  max-width: 680px;
}

.careers-teaser__copy h2 {
  max-width: 10.5em;
  margin: 18px 0 25px;
  color: white;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 610;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.careers-teaser__copy > p:not(.section-kicker) {
  max-width: 35em;
  margin-bottom: 30px;
  color: #c8d8e8;
  font-size: 16px;
  line-height: 1.95;
}

.careers-teaser__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
}

.careers-teaser__roles span {
  padding: 8px 13px;
  border: 1px solid rgb(181 211 242 / 25%);
  color: #dceaff;
  background: rgb(4 36 67 / 54%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  backdrop-filter: blur(8px);
}

.contact-lines {
  position: absolute;
  inset: 0;
  opacity: 0.27;
  background-image:
    linear-gradient(rgb(157 200 251 / 15%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(157 200 251 / 15%) 1px, transparent 1px);
  background-size: 76px 76px;
  transform: perspective(600px) rotateX(62deg) scale(1.8);
  transform-origin: center bottom;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.contact-layout > div:first-child > p {
  margin-bottom: 24px;
  color: #a8cdfb;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.contact-layout h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.contact-action > p {
  margin-bottom: 24px;
  color: #bed2e8;
}

.contact-action small {
  display: block;
  margin-top: 15px;
  color: #8eabc9;
  font-size: 10px;
}

.company {
  padding: 88px 0;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  color: white;
  background: var(--navy);
}

.company-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 80px;
}

.company-layout > div > p {
  margin-bottom: 12px;
  color: #86a8cb;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.company h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 620;
}

.company dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
}

.company dl > div {
  padding: 8px 24px;
  border-left: 1px solid rgb(255 255 255 / 17%);
}

.company dt {
  margin-bottom: 6px;
  color: #829db8;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.company dd {
  color: #dce7f2;
  font-size: 13px;
}

.site-footer {
  padding: 72px 0 28px;
  color: #d9e4ef;
  background: var(--navy-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  padding-bottom: 68px;
}

.footer-brand {
  display: inline-flex;
  height: max-content;
  align-items: center;
  gap: 17px;
}

.footer-brand img {
  width: 52px;
}

.footer-brand strong {
  font-size: 15px;
  font-weight: 620;
  letter-spacing: 0.06em;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.8fr;
  gap: 36px;
}

.footer-nav > div {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-nav p {
  margin-bottom: 12px;
  color: #7591ad;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.footer-nav a {
  width: max-content;
  max-width: 100%;
  color: #c6d4e1;
  font-size: 12px;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: #66819c;
  font-size: 9px;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

/* Reveal */

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 640ms var(--ease-out),
    transform 640ms var(--ease-out);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.reveal-ready .issue-line:nth-child(2),
.reveal-ready .principle-list article:nth-child(2),
.reveal-ready .process-track li:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-ready .issue-line:nth-child(3),
.reveal-ready .principle-list article:nth-child(3),
.reveal-ready .process-track li:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-ready .issue-line:nth-child(4),
.reveal-ready .process-track li:nth-child(4) {
  transition-delay: 210ms;
}

.reveal-ready .process-track li:nth-child(5) {
  transition-delay: 280ms;
}

.reveal-ready .process-track li:nth-child(6) {
  transition-delay: 350ms;
}

/* Animations */

@keyframes hero-underline {
  to {
    transform: scaleX(1);
  }
}

@keyframes flow-line {
  to {
    stroke-dashoffset: -42;
  }
}

@keyframes scroll-cue {
  0% {
    transform: translateX(-105%);
  }
  55%,
  100% {
    transform: translateX(105%);
  }
}

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

@keyframes chart-grow {
  to {
    transform: scaleY(1);
  }
}

/* Responsive */

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  }

  .hero-copy-wrap {
    padding-left: 32px;
  }

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

  .flow-source {
    left: 5%;
    width: clamp(140px, 13vw, 168px);
    padding-inline: 17px;
  }

  .flow-source--people {
    left: 9%;
  }

  .flow-source--customer {
    left: 5%;
  }

  .flow-destination {
    right: 4%;
    width: clamp(176px, 16vw, 210px);
    padding: 24px;
  }

  .architecture {
    min-height: 0;
  }

  .architecture-visual {
    width: var(--shell);
  }

  .process-track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
  }

  .process-track::before {
    display: none;
  }

  .process-track li:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
    --shell: min(100% - 40px, 760px);
  }

  .header-shell {
    width: calc(100vw - 32px);
    min-height: var(--header-height);
  }

  .site-header,
  .site-header.is-scrolled {
    background: white;
    backdrop-filter: none;
  }

  .mobile-actions {
    display: flex;
  }

  .nav-ready .site-nav {
    position: fixed;
    z-index: 1000;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 20px 40px;
    overflow-y: auto;
    color: white;
    background: linear-gradient(145deg, #123f63, var(--navy));
  }

  .nav-ready .site-nav > a:not(.nav-cta) {
    display: flex;
    min-height: 70px;
    align-items: center;
    border-bottom: 1px solid rgb(255 255 255 / 17%);
    font-size: 17px;
  }

  .nav-ready .site-nav .nav-cta {
    min-height: 62px;
    margin-top: 28px;
    color: var(--navy);
    background: white;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: var(--header-height);
    background: var(--paper);
  }

  .hero::before {
    inset: var(--header-height) 0 46% 0;
  }

  .hero-copy-wrap {
    min-height: min(820px, calc(100svh - var(--header-height)));
    padding: 82px 20px 70px;
  }

  .hero-copy,
  .hero-signals {
    width: var(--shell);
    max-width: none;
    margin-inline: auto;
  }

  .hero h1 {
    max-width: 11em;
    font-size: clamp(43px, 8.2vw, 62px);
  }

  .hero-stage-wrap {
    min-height: 680px;
  }

  .hero-stage {
    min-height: 680px;
  }

  .stage-flow {
    inset: 4% 3% 4% 3%;
    width: 94%;
    height: 92%;
  }

  .flow-source {
    left: 9%;
    width: 184px;
  }

  .flow-source--company {
    top: 14%;
  }

  .flow-source--people {
    top: 41%;
    left: 14%;
  }

  .flow-source--customer {
    top: 68%;
    left: 9%;
  }

  .flow-destination {
    top: 38%;
    right: 8%;
    width: 234px;
  }

  .flow-label {
    left: 9%;
  }

  .scroll-cue {
    display: none;
  }

  .issues-grid,
  .principles-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sticky-heading,
  .principles-intro,
  .faq-intro {
    position: static;
  }

  .architecture {
    min-height: 0;
  }

  .architecture-copy {
    grid-template-columns: 1fr;
  }

  .architecture-visual {
    position: relative;
    top: auto;
    left: auto;
    width: var(--shell);
    max-width: 100%;
    transform: translate3d(0, var(--arch-y, 0), 0);
  }

  .services-heading,
  .process-heading,
  .crm-layout,
  .careers-teaser__layout,
  .contact-layout,
  .company-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .services-heading,
  .process-heading {
    gap: 26px;
  }

  .process-heading > p {
    grid-column: auto;
  }

  .service-explorer {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .service-index {
    display: grid;
    overflow-x: auto;
    grid-auto-columns: minmax(190px, 1fr);
    grid-auto-flow: column;
    border-right: 0;
    border-bottom: 1px solid #cfd9e4;
    scroll-snap-type: x mandatory;
  }

  .service-index button {
    min-height: 92px;
    border-right: 1px solid #dce3ea;
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .service-index button:hover,
  .service-index button[aria-selected="true"] {
    padding-left: 24px;
  }

  .service-stage,
  .service-panel {
    min-height: 610px;
  }

  .crm-layout {
    gap: 70px;
  }

  .crm-copy {
    max-width: 680px;
  }

  .product-window {
    transform: rotateY(-2deg);
  }

  .contact-layout {
    align-items: start;
  }

  .careers-teaser {
    min-height: 700px;
  }

  .careers-teaser::before {
    background:
      linear-gradient(180deg, rgb(0 13 28 / 91%) 0%, rgb(0 21 43 / 69%) 58%, rgb(0 13 28 / 88%) 100%),
      linear-gradient(90deg, rgb(0 21 43 / 56%), transparent);
  }

  .careers-teaser__layout {
    min-height: 700px;
    grid-template-columns: 1fr;
    align-items: end;
    padding-block: 100px 72px;
  }

  .careers-teaser__copy {
    max-width: 620px;
  }

  .company dl {
    max-width: 700px;
  }

  .footer-main {
    gap: 60px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .brand span {
    font-size: 12px;
  }

  .brand img {
    width: 30px;
  }

  .mobile-consult {
    display: none;
  }

  .careers-teaser,
  .careers-teaser__layout {
    min-height: 660px;
  }

  .careers-teaser::after {
    inset: 14px;
  }

  .careers-teaser__visual img {
    object-position: 62% center;
  }

  .careers-teaser__layout {
    padding-block: 86px 58px;
  }

  .careers-teaser__copy h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.38;
  }

  .careers-teaser__copy > p:not(.section-kicker) {
    font-size: 15px;
  }

  .hero-copy-wrap {
    min-height: auto;
    padding-block: 66px 54px;
  }

  .eyebrow {
    gap: 8px;
    margin-bottom: 24px;
    font-size: 8px;
  }

  .eyebrow i {
    width: 16px;
  }

  .hero h1 {
    margin-bottom: 24px;
    max-width: 100%;
    font-size: clamp(30px, 8.7vw, 34px);
    letter-spacing: -0.045em;
    line-height: 1.28;
  }

  .hero-first-line,
  .hero-system-line,
  .hero h1 strong {
    white-space: nowrap;
  }

  .hero-break {
    display: block;
  }

  .hero-lead br {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-signals {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .hero-signals span {
    min-height: 50px;
    border-right: 0;
    border-bottom: 1px solid rgb(0 21 43 / 10%);
  }

  .hero-signals span:last-child {
    border-bottom: 0;
  }

  .hero-stage-wrap,
  .hero-stage {
    min-height: 600px;
  }

  .stage-flow {
    inset: 5% 0 4%;
    width: 100%;
    height: 91%;
  }

  .flow-label {
    top: 5.5%;
    left: 5%;
    gap: 8px;
    font-size: 6px;
  }

  .flow-label i {
    width: 28px;
  }

  .flow-source {
    left: 5%;
    width: 142px;
    min-height: 94px;
    padding: 14px 14px 13px 16px;
  }

  .flow-source small,
  .flow-destination small {
    margin-bottom: 8px;
    font-size: 6px;
  }

  .flow-source strong {
    font-size: 15px;
  }

  .flow-source > span {
    font-size: 9px;
  }

  .flow-source--company {
    top: 13%;
  }

  .flow-source--people {
    top: 39%;
    left: 8%;
  }

  .flow-source--customer {
    top: 65%;
    left: 5%;
  }

  .flow-destination {
    top: 34%;
    right: 4%;
    width: 174px;
    min-height: 180px;
    padding: 21px;
  }

  .flow-destination img {
    width: 38px;
    margin-bottom: 12px;
  }

  .flow-destination strong {
    font-size: 18px;
  }

  .stage-caption {
    right: 16px;
    bottom: 14px;
    font-size: 6px;
  }

  .issues,
  .services,
  .crm,
  .principles,
  .process,
  .faq {
    padding-block: 84px;
  }

  .sticky-heading h2,
  .services-heading h2,
  .principles h2,
  .process h2,
  .faq h2 {
    max-width: 15em;
    font-size: clamp(30px, 8.5vw, 34px);
    line-height: 1.38;
  }

  .issue-line {
    min-height: 160px;
    grid-template-columns: 28px 1fr 34px;
    gap: 10px;
  }

  .issue-line:hover {
    padding-inline: 10px;
  }

  .issue-line h3 {
    font-size: 19px;
  }

  .issue-line p {
    font-size: 12px;
  }

  .issue-line > i {
    width: 32px;
    height: 32px;
  }

  .architecture {
    min-height: 0;
    padding-bottom: 76px;
  }

  .architecture-copy {
    padding-top: 0;
  }

  .architecture-copy h2 {
    font-size: clamp(34px, 9.5vw, 39px);
    line-height: 1.34;
  }

  .architecture-visual {
    position: relative;
    top: auto;
    left: auto;
    width: var(--shell);
    margin: 46px auto 0;
    transform: translate3d(0, var(--arch-y, 0), 0);
  }

  .architecture-visual figcaption {
    width: auto;
    margin-left: 0;
  }

  .architecture-visual figcaption span {
    display: none;
  }

  .services-heading {
    margin-bottom: 44px;
  }

  .service-index {
    grid-auto-columns: 175px;
  }

  .service-stage,
  .service-panel {
    min-height: 540px;
  }

  .service-panel {
    padding: 42px 24px;
  }

  .service-panel h3 {
    font-size: 35px;
  }

  .service-orbit {
    right: -250px;
  }

  .crm-copy h2 {
    font-size: clamp(34px, 9.5vw, 39px);
    line-height: 1.34;
  }

  .crm-points {
    grid-template-columns: 1fr;
  }

  .crm-points span:nth-child(odd) {
    border-right: 0;
  }

  .product-window {
    overflow: hidden;
    transform: none;
  }

  .product-ui {
    min-width: 0;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .product-ui aside {
    gap: 14px;
    padding-top: 18px;
  }

  .product-ui aside i {
    width: 20px;
    height: 20px;
  }

  .product-main {
    padding: 16px 12px;
  }

  .product-kpis {
    gap: 5px;
  }

  .product-kpis article {
    min-height: 82px;
    padding: 9px 7px;
  }

  .product-kpis small,
  .product-kpis i {
    font-size: 6px;
  }

  .product-kpis strong {
    font-size: 17px;
  }

  .product-panels {
    grid-template-columns: 1fr;
  }

  .product-chart {
    min-height: 150px;
  }

  .product-ai {
    min-height: 145px;
  }

  .product-scene figcaption {
    display: grid;
  }

  .principle-list article {
    min-height: 220px;
    padding: 44px 20px 40px 56px;
  }

  .principle-list span {
    top: 48px;
    left: 16px;
  }

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

  .process-track li,
  .process-track li:nth-child(3) {
    display: grid;
    min-height: 126px;
    grid-template-columns: 54px 1fr;
    align-content: center;
    column-gap: 20px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #d3dce5;
  }

  .process-track span {
    grid-row: 1 / 3;
    width: 50px;
    height: 50px;
    margin: 0;
  }

  .process-track strong {
    align-self: end;
    margin: 0;
  }

  .process-track p {
    align-self: start;
  }

  .faq-list summary {
    min-height: 90px;
    font-size: 15px;
  }

  .contact-cta {
    padding-block: 84px;
  }

  .contact-layout {
    gap: 42px;
  }

  .contact-layout h2 {
    font-size: clamp(32px, 9vw, 37px);
    line-height: 1.38;
  }

  .company {
    padding-block: 72px;
  }

  .company-layout {
    gap: 42px;
  }

  .company dl {
    grid-template-columns: 1fr;
  }

  .company dl > div {
    padding: 14px 0;
    border-top: 1px solid rgb(255 255 255 / 15%);
    border-left: 0;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav > div:last-child {
    grid-column: 1 / -1;
  }

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

@media (prefers-reduced-motion: reduce) {
  .architecture-map li::after {
    transition: none;
  }
}

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

  .flow-pulses {
    display: none;
  }

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

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

/* v5 editorial art direction: photographic materials, restrained motion,
   and typography-led information design replace the earlier game-like CG. */
.architecture-map {
  border-color: rgb(169 194 218 / 28%);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 4%), transparent 42%),
    #06192d;
  box-shadow: 0 54px 120px rgb(0 0 0 / 30%);
}

.architecture-map::before {
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 7%);
}

.architecture-map__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(22px, 3vw, 42px);
  border-bottom: 1px solid rgb(164 193 221 / 18%);
  color: #90a9c0;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.architecture-map__body {
  padding: clamp(34px, 5vw, 72px) clamp(22px, 4vw, 58px) clamp(42px, 5.5vw, 80px);
}

.architecture-map__axis {
  display: grid;
  grid-template-columns: 100px 0.42fr 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  margin-bottom: clamp(36px, 4.5vw, 64px);
  padding-bottom: clamp(28px, 3.2vw, 44px);
  border-bottom: 1px solid rgb(195 160 96 / 54%);
}

.architecture-map__axis > span,
.architecture-map__axis > small {
  color: #91a9be;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.architecture-map__axis > strong {
  color: white;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1;
}

.architecture-map__axis > small {
  max-width: 32em;
  justify-self: end;
  color: #c1d0dc;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.architecture-map ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(149 181 210 / 28%);
  border-bottom: 1px solid rgb(149 181 210 / 18%);
  list-style: none;
}

.architecture-map li {
  position: relative;
  display: flex;
  min-height: clamp(150px, 14vw, 205px);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 2.2vw, 30px);
  border-left: 1px solid rgb(149 181 210 / 18%);
  background: linear-gradient(180deg, rgb(255 255 255 / 2%), transparent);
}

.architecture-map li:first-child {
  border-left: 0;
}

.architecture-map li::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b18a49, transparent);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.architecture-map li:hover::after {
  opacity: 1;
}

.architecture-map li > span {
  color: #b99a61;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.architecture-map li > strong {
  color: #f7f9fb;
  font-size: clamp(15px, 1.45vw, 21px);
  line-height: 1.45;
}

.architecture-map li > small {
  color: #7892a9;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.architecture-map figcaption {
  padding-inline: clamp(22px, 4vw, 58px);
  border-top: 1px solid rgb(149 181 210 / 12%);
}

.service-stage::before {
  opacity: 0.15;
}

.service-orbit {
  right: 42px;
  bottom: 38px;
  width: 245px;
  height: 210px;
  border: 0;
  border-left: 1px solid rgb(151 183 214 / 22%);
  border-radius: 0;
  background: linear-gradient(90deg, rgb(255 255 255 / 2%), transparent);
  transform: none !important;
  transition: none;
}

.service-orbit::before,
.service-orbit::after {
  border: 0;
  border-radius: 0;
  background: none;
}

.service-orbit::before {
  inset: 0 0 auto 22px;
  height: 1px;
  background: rgb(151 183 214 / 24%);
}

.service-orbit::after {
  right: 0;
  bottom: 0;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg, #b18a49, transparent);
}

.service-orbit span,
.service-orbit span:nth-child(1),
.service-orbit span:nth-child(2),
.service-orbit span:nth-child(3) {
  right: auto;
  bottom: auto;
  left: 22px;
  width: 66%;
  height: 1px;
  border-radius: 0;
  background: rgb(141 174 205 / 22%);
  box-shadow: none;
}

.service-orbit span:nth-child(1) { top: 40px; }
.service-orbit span:nth-child(2) { top: 50px; width: 43%; }
.service-orbit span:nth-child(3) { top: 60px; width: 54%; }

.service-orbit b {
  right: 0;
  bottom: 20px;
  color: rgb(255 255 255 / 11%);
  font-size: 94px;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.crm {
  background: linear-gradient(135deg, #0a304f, #061b31 58%, #00101f);
}

.crm-grid-bg {
  opacity: 0.12;
}

.product-scene::before {
  display: none;
}

.product-window {
  border-color: rgb(170 195 220 / 32%);
  border-radius: 3px;
  box-shadow: 0 46px 100px rgb(0 0 0 / 30%);
  transform: none;
}

.product-ui aside i:first-child {
  box-shadow: none;
}

.product-main,
.product-ai {
  background-image: none;
}

@media (max-width: 900px) {
  .architecture-map__axis {
    grid-template-columns: 70px 1fr;
  }

  .architecture-map__axis > small {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .architecture-map li {
    min-height: 142px;
    border-bottom: 1px solid rgb(149 181 210 / 16%);
  }

  .architecture-map li:nth-child(odd) {
    border-left: 0;
  }

  .service-orbit {
    display: none;
  }
}

@media (max-width: 620px) {
  .architecture-map__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .architecture-map__body {
    padding-inline: 18px;
  }

  .architecture-map__axis {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .architecture-map__axis > strong {
    font-size: 41px;
  }

  .architecture-map li {
    padding: 16px;
  }

  .architecture-map figcaption {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .architecture-map li::after {
    transition: none;
  }
}
