:root {
  color-scheme: light;
  --deep-navy: #071B3A;
  --navy: #102A52;
  --light-gray: #F6F8FB;
  --muted-red: #D94A4A;
  --stats-dark: #0d0e47;
  --stats-blue: #3843eb;
  --stats-paper: #f1f5f8;
  --stats-third-text: #4446a6;
  --blue-950: #020a2a;
  --blue-900: #06164f;
  --blue-800: #081e66;
  --blue-700: #0a2a7a;
  --blue-600: #10388f;
  --blue-500: #1746a2;
  --blue-200: #cfdcff;
  --blue-100: #e7edff;
  --blue-050: #f6f8ff;
  --black: #000000;
  --white: #ffffff;
  --ink: #000000;
  --body: #222222;
  --muted: #4f5560;
  --line: #d8e1f8;
  --shadow: 0 30px 90px rgba(2, 10, 42, 0.16);
  --nav-gutter: clamp(104px, 11.5vw, 176px);
  --hero-gutter: clamp(104px, 11.5vw, 176px);
  --section-gutter: clamp(40px, 7vw, 132px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  line-break: strict;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    "Pretendard Variable", Pretendard, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
  overflow-x: hidden;
}

.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;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 1040px;
  color: var(--white);
  font-size: 88px;
  line-height: 0.98;
  font-weight: 820;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

h2 {
  color: var(--black);
  font-size: 64px;
  line-height: 1.02;
  font-weight: 800;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

h3 {
  color: var(--black);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 780;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
  text-wrap: pretty;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-width: 0;
  padding: 20px var(--nav-gutter);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(2, 10, 42, 0.42);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    min-height 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  min-height: 58px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: rgba(6, 22, 79, 0.1);
  box-shadow: 0 12px 30px rgba(2, 10, 42, 0.08);
  text-shadow: none;
}

.brand,
.nav-links {
  align-items: center;
  min-width: 0;
}

.brand {
  position: relative;
  justify-self: start;
  display: inline-grid;
  width: 88px;
  height: 35px;
  margin-left: 0;
  color: inherit;
  line-height: 1;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.brand-logo-black {
  opacity: 0;
}

.brand-logo-white {
  opacity: 1;
}

.site-header.is-scrolled .brand-logo-black {
  opacity: 1;
}

.site-header.is-scrolled .brand-logo-white {
  opacity: 0;
}

.nav-links {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: clamp(22px, 3vw, 46px);
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
}

.nav-links a {
  position: relative;
  min-width: 0;
  padding: 0;
  color: inherit;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.2;
  opacity: 0.86;
  text-align: center;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px var(--hero-gutter) 78px;
  background: var(--blue-900);
}

.cinematic-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(140deg, var(--blue-950), var(--blue-900) 48%, var(--blue-700));
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 10% center;
  filter: brightness(1.18) saturate(1.08) contrast(1.02);
  transform: scale(1.24) translateY(5.6%);
  transform-origin: center center;
}

.image-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 10, 42, 0.34), rgba(2, 10, 42, 0.04) 46%, rgba(2, 10, 42, 0.38)),
    linear-gradient(180deg, rgba(2, 10, 42, 0.02), rgba(2, 10, 42, 0.58));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(20px, 1.8vw, 30px);
  width: min(680px, 56vw);
  min-width: 0;
  max-width: none;
  margin-top: clamp(70px, 12vh, 150px);
  text-shadow: 0 2px 18px rgba(2, 10, 42, 0.62);
}

.eyebrow,
.section-label {
  color: var(--black);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero .eyebrow {
  display: inline-grid;
  justify-items: start;
  gap: clamp(16px, 1.9vw, 28px);
  width: max-content;
  font-size: clamp(13px, 1.05vw, 18px);
}

.hero .eyebrow::after {
  content: "";
  width: 58px;
  height: 5px;
  background: rgba(58, 142, 255, 0.92);
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 3.8vw, 66px);
  line-height: 1.13;
}

.hero-copy {
  max-width: 520px;
  color: var(--blue-100);
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2vw, 34px);
  margin-top: clamp(6px, 1vw, 14px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  text-shadow: none;
}

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

.button.outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: transparent;
}

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

.hero-actions .button {
  justify-content: space-between;
  gap: 24px;
  min-width: clamp(150px, 9vw, 184px);
  min-height: clamp(50px, 3.6vw, 62px);
  padding: 0 clamp(18px, 1.8vw, 28px);
  border-radius: 6px;
  font-size: clamp(15px, 1vw, 18px);
}

.hero-actions .button::after {
  content: "\2192";
  font-size: 1.35em;
  line-height: 1;
}

.contact-section {
  padding: clamp(86px, 9vw, 132px) clamp(32px, 6vw, 132px);
}

.contact-section > *,
.site-footer > * {
  min-width: 0;
}

.perspective-section {
  --perspective-split: 47%;
  position: relative;
  overflow: hidden;
  padding: clamp(112px, 12vw, 170px) var(--section-gutter);
  min-height: 100vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246, 248, 251, 0.96) 0%, rgba(246, 248, 251, 0.82) var(--perspective-split), #f8faff var(--perspective-split), #f4f7ff 100%),
    linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
  color: var(--deep-navy);
}

.perspective-section::before {
  content: "";
  position: absolute;
  inset: 0 0 0 var(--perspective-split);
  z-index: 0;
  background:
    radial-gradient(circle at 60% 48%, rgba(0, 30, 255, 0.14), transparent 34%),
    linear-gradient(rgba(0, 30, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 30, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  opacity: 0.88;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.62), #000 17%, #000 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.62), #000 17%, #000 100%);
  pointer-events: none;
}

.perspective-layout {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.62fr);
  gap: clamp(44px, 5.8vw, 96px);
  align-items: center;
}

.perspective-copy {
  display: grid;
  gap: clamp(24px, 2.7vw, 38px);
  min-width: 0;
}

.perspective-copy h2 {
  font-size: clamp(42px, 5.9vw, 76px);
  line-height: 1.08;
}

.perspective-copy h2 {
  color: var(--deep-navy);
  max-width: 680px;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
}

.perspective-copy h2 span {
  display: block;
  text-wrap: balance;
}

.perspective-body {
  display: grid;
  gap: 18px;
  max-width: 650px;
}

.perspective-body p {
  color: #354156;
  font-size: clamp(17px, 1.12vw, 21px);
  line-height: 1.82;
}

.service-line {
  max-width: 680px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 27, 58, 0.14);
  color: var(--navy);
  font-size: clamp(13px, 0.92vw, 15px);
  font-weight: 760;
  line-height: 1.7;
}

.perspective-visual {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(420px, 100%);
  min-width: 0;
  opacity: 1;
}

.perspective-system-object {
  position: relative;
  isolation: isolate;
  min-height: clamp(440px, 42vw, 540px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  will-change: transform;
}

.perspective-system-object::before,
.perspective-system-object::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 1;
  border: 1px solid rgba(0, 30, 255, 0.26);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-16deg);
}

.perspective-system-object::before {
  width: 72%;
  height: 43%;
}

.perspective-system-object::after {
  width: 51%;
  height: 68%;
  border-style: dashed;
  transform: translate(-50%, -50%) rotate(32deg);
}

.perspective-orbit-ring {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 1;
  width: 61%;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 30, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.perspective-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(146px, 14vw, 168px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: linear-gradient(145deg, #001eff, #123aa5);
  box-shadow: 0 28px 72px rgba(0, 30, 255, 0.25), 0 0 0 12px rgba(0, 30, 255, 0.055);
  text-align: center;
  transform: translate(-50%, -50%);
}

.perspective-core::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  transform: translateX(-50%);
}

.perspective-core span,
.perspective-core small {
  color: #dfe6ff;
  font-size: 8.5px;
  font-weight: 820;
  line-height: 1.3;
  text-transform: uppercase;
}

.perspective-core strong {
  color: #ffffff;
  font-size: clamp(42px, 4.2vw, 50px);
  line-height: 1;
}

.perspective-service-map {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  pointer-events: none;
}

.perspective-service-node {
  position: absolute;
  min-width: 86px;
  width: max-content;
  padding: 9px 12px;
  border: 1px solid rgba(0, 30, 255, 0.18);
  border-radius: 999px;
  background: rgba(246, 248, 255, 0.88);
  color: #102a52;
  font-size: 10.5px;
  font-weight: 790;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
  box-shadow: 0 12px 30px rgba(0, 30, 255, 0.08);
  backdrop-filter: blur(12px);
}

.perspective-service-node::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: #001eff;
  vertical-align: 1px;
}

.perspective-service-node:nth-child(1) { left: 8%; top: 24%; }
.perspective-service-node:nth-child(2) { right: 7%; top: 21%; }
.perspective-service-node:nth-child(3) { left: 2%; top: 50%; }
.perspective-service-node:nth-child(4) { right: 2%; top: 51%; }
.perspective-service-node:nth-child(5) { left: 12%; bottom: 18%; }
.perspective-service-node:nth-child(6) { right: 11%; bottom: 17%; }

.perspective-orbit-meta {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #6678a1;
  font-size: 8px;
  font-weight: 760;
  text-transform: uppercase;
}

.service-orbit {
  position: relative;
  z-index: 1;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  padding: 120px 0 88px;
  overflow-x: clip;
  background: var(--white);
}

.orbit-track {
  --orbit-shift: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  transform: translate3d(var(--orbit-shift), 0, 0);
  will-change: transform;
}

.orbit-item {
  flex: 0 0 auto;
  padding: 0;
  list-style: none;
}

.orbit-bouncer {
  --orbit-wave: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  aspect-ratio: 1;
  border: 1px solid rgba(33, 34, 38, 0.06);
  border-radius: 50%;
  background: #b7bfd917;
  color: rgba(7, 16, 35, 0.92);
  font-size: 36px;
  font-weight: 300;
  backface-visibility: hidden;
  transform: translate3d(0, var(--orbit-wave), 0);
  will-change: transform;
}

.orbit-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.94;
  pointer-events: none;
  user-select: none;
}

img.is-load-retrying {
  opacity: 0 !important;
}

.stats-section {
  position: relative;
  overflow: hidden;
  padding: 0 var(--section-gutter) clamp(96px, 10vw, 140px);
  background: var(--white);
  color: var(--stats-dark);
}

.stats-layout {
  position: relative;
  isolation: isolate;
  width: min(100%, 1240px);
  min-height: clamp(760px, 94vh, 980px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: max-content minmax(580px, 80vh);
  align-content: start;
  gap: 0;
  border-bottom: 1px solid rgba(7, 27, 58, 0.12);
  color: var(--stats-dark);
}

.stats-bg-image {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 48vh, 520px);
  object-fit: cover;
  object-position: center center;
  border-radius: clamp(22px, 2.4vw, 34px);
  filter: none;
}

.stats-image-copy {
  grid-column: 1 / 3;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  z-index: 2;
  max-width: min(680px, 72%);
  margin: clamp(34px, 4vw, 58px) 0 0 clamp(28px, 3.2vw, 52px);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(32px, 4.4vw, 64px);
  font-weight: 430;
  line-height: 1.08;
}

.stats-live-clock {
  grid-column: 2 / -1;
  grid-row: 2;
  align-self: start;
  justify-self: end;
  z-index: 2;
  display: grid;
  justify-items: end;
  gap: 8px;
  max-width: min(430px, 34vw);
  margin: clamp(34px, 4vw, 58px) clamp(28px, 3.2vw, 52px) 0 0;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

.stats-live-kicker {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(10px, 0.74vw, 12px);
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
}

.stats-live-time {
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 48px);
  font-variant-numeric: tabular-nums;
  font-weight: 520;
  line-height: 0.98;
}

.stats-live-copy {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(12px, 0.88vw, 15px);
  font-weight: 560;
  line-height: 1.5;
}

.stats-panel {
  position: relative;
  z-index: 1;
  grid-row: 2;
  min-width: 0;
  min-height: clamp(210px, 24vh, 260px);
  align-self: end;
  display: grid;
  align-content: end;
  gap: clamp(12px, 1.2vw, 18px);
  padding: clamp(26px, 3.2vw, 44px) clamp(22px, 2.8vw, 36px);
  clip-path: none;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--white);
  box-shadow: none;
  will-change: transform, opacity;
}

.stats-panel.panel-1 {
  grid-column: 1;
}

.stats-panel.panel-2 {
  grid-column: 2;
}

.stats-panel.panel-3 {
  grid-column: 3;
}

.stats-number {
  display: flex;
  align-items: flex-start;
  gap: 0.05em;
  color: currentColor;
  font-size: clamp(70px, 8.2vw, 128px);
  font-weight: 720;
  line-height: 0.9;
  letter-spacing: 0;
}

.stats-number em {
  margin-top: 0.2em;
  font-size: clamp(15px, 1.25vw, 22px);
  font-style: normal;
  font-weight: 680;
  line-height: 1;
}

.stats-number span {
  display: inline-block;
  white-space: nowrap;
}

.stats-panel-meta {
  display: block;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(12px, 0.86vw, 15px);
  font-weight: 680;
  line-height: 1.25;
  text-transform: lowercase;
}

.stats-panel h3 {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(13px, 0.92vw, 16px);
  font-weight: 700;
  line-height: 1.35;
}

.stats-title-block {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 2.4vw, 34px) 0;
  color: var(--stats-dark);
}

.stats-title-block h2 {
  color: var(--stats-dark);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.04;
}

.challenge-section {
  --section-banner-height: clamp(150px, 18vw, 260px);
  position: relative;
  overflow: hidden;
  padding: 0 var(--section-gutter);
  background: var(--white);
  color: #050505;
}

.challenge-section::before {
  display: none;
}

.challenge-section h2,
.challenge-section h3,
.challenge-section h4,
.challenge-section p {
  color: #050505;
}

.section-scroll-banner {
  --section-banner-glow: 0.22;
  --section-banner-light-x: 50%;
  --section-banner-line-opacity: 0.12;
  --section-banner-sweep: 0%;
  --section-banner-scale: 1;
  --section-banner-shift: 0px;
  position: relative;
  left: 50%;
  isolation: isolate;
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100vw;
  height: var(--section-banner-height);
  margin-left: -50vw;
  padding: 0 var(--section-gutter);
  overflow: hidden;
  background: #00133a;
}

.section-scroll-banner::before {
  content: "";
  position: absolute;
  inset: -18% -22vw;
  z-index: -2;
  background:
    linear-gradient(105deg, transparent 0%, rgba(18, 87, 214, 0.05) 14%, rgba(97, 185, 255, 0.3) 29%, rgba(16, 63, 177, 0.18) 44%, transparent 60%, rgba(55, 128, 255, 0.2) 76%, transparent 100%),
    radial-gradient(ellipse at var(--section-banner-light-x, 50%) 48%, rgba(120, 204, 255, 0.7) 0%, rgba(37, 132, 255, 0.42) 19%, rgba(7, 53, 159, 0.22) 39%, rgba(0, 15, 66, 0.08) 64%, transparent 78%),
    radial-gradient(ellipse at calc(var(--section-banner-light-x, 50%) - 22%) 48%, rgba(18, 78, 191, 0.35) 0%, rgba(4, 38, 130, 0.22) 33%, transparent 72%),
    linear-gradient(90deg, var(--blue-950) 0%, #03164a 17%, var(--blue-900) 33%, var(--blue-700) 52%, #082c84 69%, var(--blue-950) 100%);
  background-size: 180% 100%, 160% 100%, 100% 100%, 100% 100%;
  background-position: var(--section-banner-sweep, 0%) 50%, center, center, center;
  filter: saturate(1.26) contrast(1.16) brightness(0.95);
  transform: translate3d(var(--section-banner-shift, 0px), 0, 0) scaleX(var(--section-banner-scale, 1));
  transform-origin: center center;
  will-change: transform, filter, background-position;
}

.section-scroll-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, var(--section-banner-glow, 0.22)) 0%, rgba(80, 169, 255, 0.16) 20%, transparent 46%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, var(--section-banner-line-opacity, 0.12)) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(2, 10, 42, 0.56), transparent 36%, transparent 64%, rgba(2, 10, 42, 0.52)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(2, 10, 42, 0.26));
  opacity: 0.62;
  pointer-events: none;
}

.section-scroll-banner__title {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(64px, 12vw, 180px);
  font-weight: 900;
  line-height: 0.86;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 16px 46px rgba(0, 6, 30, 0.38);
  pointer-events: none;
}

.section-scroll-banner__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(70vw, 700px);
  max-width: 82%;
  max-height: clamp(180px, 16vw, 220px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(0, 6, 30, 0.32));
  pointer-events: none;
  user-select: none;
}

.challenge-cards {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  width: min(100%, 1280px);
  min-height: 100vh;
  margin-inline: auto;
}

.challenge-stage {
  position: relative;
  min-height: clamp(680px, 78vh, 820px);
  overflow: hidden;
  border: 0;
}

.challenge-card {
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.challenge-index,
.solution-index {
  color: var(--muted-red);
  font-size: 14px;
  font-weight: 860;
  line-height: 1;
}

.challenge-panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, min(36vw, 42%, 480px));
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "statement visual"
    "divider visual"
    "reason visual";
  align-content: center;
  align-items: center;
  column-gap: clamp(22px, 3.2vw, 48px);
  row-gap: clamp(24px, 3.4vh, 38px);
  min-height: 0;
  padding: clamp(76px, 8.4vh, 110px) clamp(4px, 1.8vw, 28px) clamp(58px, 7vh, 84px);
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0;
  filter: blur(14px);
  pointer-events: none;
  transform: translate3d(0, 42px, 0);
  will-change: transform, opacity, filter, clip-path;
}

.challenge-panel.is-active {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.challenge-statement {
  grid-area: statement;
  align-self: end;
  justify-self: start;
  width: min(760px, 100%);
  margin: 0;
}

.challenge-reason {
  grid-area: reason;
  align-self: start;
  justify-self: end;
  width: min(520px, calc(100% - clamp(64px, 8vw, 132px)));
  margin: 0;
}

.challenge-eyebrow {
  display: block;
  margin-bottom: clamp(10px, 1.2vw, 16px);
  color: #131313;
  font-size: clamp(14px, 1.08vw, 17px);
  font-style: italic;
  font-weight: 760;
  line-height: 1.35;
  word-break: normal;
  overflow-wrap: normal;
  white-space: nowrap;
}

.challenge-eyebrow em {
  color: #001eff;
  font-style: normal;
  font-weight: 850;
}

.challenge-statement h3,
.challenge-reason h4 {
  margin: 0;
  color: #050505;
  font-weight: 840;
  letter-spacing: 0;
}

.challenge-statement h3 {
  font-size: clamp(42px, 4.9vw, 68px);
  line-height: 0.99;
}

.challenge-reason h4 {
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.05;
}

.challenge-statement h3 > span,
.challenge-reason h4 > span {
  display: block;
  white-space: nowrap;
}

.challenge-blue {
  display: inline-block;
  padding: 0 0.09em 0.055em;
  border-radius: 7px;
  background: #001eff;
  color: var(--white);
  line-height: 0.95;
  box-shadow: none;
}

.challenge-divider {
  grid-area: divider;
  width: 100%;
  height: 1px;
  justify-self: stretch;
  background: rgba(0, 0, 0, 0.16);
}

.challenge-panel-support {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: start;
  gap: clamp(16px, 1.5vw, 22px);
  max-width: 560px;
  margin-top: clamp(14px, 1.7vw, 22px);
  color: #111111;
  font-size: clamp(13px, 0.92vw, 15px);
  font-weight: 620;
  line-height: 1.64;
}

.challenge-panel-support b {
  position: relative;
  top: 5px;
  color: #001eff;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.challenge-panel-support p {
  min-width: 0;
  margin: 0;
  color: #111111;
  word-break: keep-all;
  overflow-wrap: normal;
}

.challenge-panel-fragment {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.challenge-visual {
  position: relative;
  grid-area: visual;
  z-index: 1;
  display: block;
  align-self: center;
  justify-self: end;
  width: min(100%, 480px);
  height: clamp(390px, 60vh, 620px);
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: clamp(18px, 2vw, 30px);
  background: transparent;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 90%, transparent 100%);
}

.challenge-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0) 84%, var(--white) 100%),
    linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, 0) 84%, var(--white) 100%);
  opacity: 0.72;
  pointer-events: none;
}

.challenge-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.97) contrast(1.02);
}

.challenge-visual.is-flipped img {
  transform: scaleX(-1);
}

.challenge-blind {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  background: var(--white);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.challenge-blind::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #001eff;
  opacity: 0.65;
}

.challenge-progress {
  position: absolute;
  right: 0;
  bottom: clamp(22px, 3.4vw, 44px);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 0;
}

.challenge-progress span {
  width: 40px;
  height: 2px;
  overflow: hidden;
  color: transparent;
  background: rgba(0, 0, 0, 0.16);
}

.challenge-progress span.is-active {
  background: #001eff;
}

.motion-fallback .challenge-stage {
  min-height: auto;
  display: grid;
  gap: 18px;
  overflow: visible;
  border: 0;
}

.motion-fallback .challenge-panel {
  position: relative;
  inset: auto;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas: none;
  gap: 28px;
  opacity: 1;
  filter: none;
  pointer-events: auto;
  transform: none;
}

.motion-fallback .challenge-statement,
.motion-fallback .challenge-divider,
.motion-fallback .challenge-reason,
.motion-fallback .challenge-visual {
  grid-area: auto;
}

.motion-fallback .challenge-visual {
  position: relative;
  top: auto;
  right: auto;
  width: min(100%, 360px);
  height: auto;
  aspect-ratio: 4 / 5;
}

.motion-fallback .challenge-blind,
.motion-fallback .challenge-progress {
  display: none;
}

.solution-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 120px) var(--section-gutter);
  background: var(--white);
  color: var(--deep-navy);
}

.solution-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin-inline: auto;
  display: grid;
  gap: clamp(46px, 6vw, 82px);
}

.solution-binary-showcase {
  --binary-bg-inset: 24vw;
  --binary-grid-scale: 0.98;
  --binary-stage-radius: 8;
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  padding: 0 0 clamp(18px, 3vw, 36px);
  overflow: visible;
}

.solution-binary-intro {
  display: grid;
  justify-items: center;
  gap: clamp(12px, 1.8vw, 20px);
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  color: var(--deep-navy);
}

.solution-binary-intro .section-label {
  color: rgba(7, 27, 58, 0.54);
}

.solution-binary-intro h2 {
  max-width: 900px;
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(34px, 4.3vw, 62px);
  font-weight: 840;
  line-height: 1.04;
  letter-spacing: 0;
}

.solution-binary-intro p:not(.section-label) {
  max-width: 640px;
  margin: 0;
  color: rgba(7, 27, 58, 0.64);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 610;
  line-height: 1.72;
}

.solution-binary-stage {
  position: relative;
  left: 50%;
  display: grid;
  justify-items: center;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  border-radius: calc(var(--binary-stage-radius, 8) * 1px);
  background: #01000a;
  box-shadow: 0 28px 90px rgba(2, 10, 42, 0.13);
  clip-path: inset(0 var(--binary-bg-inset, 24vw) 0 var(--binary-bg-inset, 24vw) round calc(var(--binary-stage-radius, 8) * 1px));
  will-change: clip-path, border-radius;
}

.solution-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3.8vw, 48px);
  align-items: center;
  justify-items: center;
  text-align: center;
}

.solution-label {
  grid-column: 1 / -1;
  color: rgba(7, 27, 58, 0.54);
}

.solution-heading h2 {
  max-width: 980px;
  color: var(--deep-navy);
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
}

.solution-heading-visual {
  width: min(100%, 980px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f6f8fb;
}

.solution-heading-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.solution-heading-copy {
  display: grid;
  gap: 14px;
  justify-items: center;
  max-width: 760px;
  padding-bottom: 0;
  text-align: center;
}

.solution-heading-copy p {
  color: rgba(7, 27, 58, 0.68);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 610;
  line-height: 1.78;
}

.solution-stories {
  display: grid;
  gap: clamp(82px, 11vw, 148px);
}

.solution-story {
  min-width: 0;
  min-height: clamp(520px, 62vh, 720px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(44px, 7.4vw, 116px);
  align-items: center;
  will-change: transform, opacity;
}

.solution-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: clamp(14px, 1.6vw, 22px);
  border: 1px solid rgba(7, 27, 58, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.9), transparent 20%),
    linear-gradient(135deg, #f7fbff 0%, #dce8ff 38%, rgba(56, 67, 235, 0.88) 100%);
  box-shadow: 0 24px 80px rgba(7, 27, 58, 0.11);
}

.solution-story--image-right .solution-visual {
  grid-column: 2;
  grid-row: 1;
}

.solution-story--image-right .solution-typography {
  grid-column: 1;
  grid-row: 1;
}

.solution-visual--process {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.86), transparent 21%),
    linear-gradient(135deg, #eef5ff 0%, #cfdcff 44%, #102a52 100%);
}

.solution-visual--system {
  background:
    radial-gradient(circle at 16% 84%, rgba(255, 255, 255, 0.82), transparent 20%),
    linear-gradient(135deg, #f6f8fb 0%, #b9c8ff 42%, #071b3a 100%);
}

.solution-visual--photo {
  padding: 0;
  border-color: rgba(2, 54, 156, 0.18);
  background: #001a8b;
  box-shadow: 0 24px 68px rgba(2, 54, 156, 0.18);
}

.solution-photo-track {
  position: relative;
  width: 100%;
  height: 112%;
  will-change: transform;
}

.solution-photo-track img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.solution-scroll-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.solution-scroll-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 18%, transparent 76%, rgba(255, 255, 255, 0.34));
  pointer-events: none;
}

.solution-scroll-track {
  position: relative;
  display: grid;
  gap: clamp(14px, 1.6vw, 22px);
  min-height: 118%;
  padding: clamp(22px, 2.6vw, 38px);
  will-change: transform;
}

.solution-visual-panel {
  display: grid;
  gap: 12px;
  min-height: clamp(110px, 11vw, 164px);
  padding: clamp(20px, 2.2vw, 32px);
  border: 1px solid rgba(7, 27, 58, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep-navy);
}

.solution-visual-panel.is-hero {
  min-height: clamp(176px, 19vw, 260px);
  align-content: end;
  background:
    linear-gradient(135deg, rgba(7, 27, 58, 0.92), rgba(56, 67, 235, 0.72)),
    var(--deep-navy);
  color: var(--white);
}

.solution-mark {
  align-self: start;
  color: currentColor;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 820;
  line-height: 0.8;
}

.solution-visual-panel strong {
  font-size: clamp(28px, 4.2vw, 64px);
  line-height: 0.94;
}

.solution-visual-panel small {
  max-width: 320px;
  color: currentColor;
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 680;
  line-height: 1.5;
  opacity: 0.78;
}

.solution-visual-grid,
.solution-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.solution-visual-grid span,
.solution-flow span {
  min-height: 64px;
  display: grid;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(7, 27, 58, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(7, 27, 58, 0.78);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
}

.solution-typography {
  min-width: 0;
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  justify-items: start;
}

.solution-binary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-column: 1 / -1;
  justify-self: center;
  gap: 1px;
  width: min(100%, 1040px);
  overflow: hidden;
  border: 1px solid rgba(42, 43, 58, 0.78);
  border-radius: 8px;
  background: #2a2b3a;
  transform: scale(var(--binary-grid-scale, 0.98));
  transform-origin: center center;
  will-change: transform;
}

.solution-binary-stage .solution-binary-grid {
  width: min(calc(100vw - (var(--section-gutter) * 2)), 1080px);
  border-radius: inherit;
}

.solution-binary-cell {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --beam-x: 50%;
  --beam-y: 50%;
  --shade-x: 50%;
  --shade-y: 50%;
  --beam-size: 220px;
  --shade-size: 260px;
  --beam-hot-alpha: 0.24;
  --beam-soft-alpha: 0.18;
  --beam-body-alpha: 0.42;
  --beam-mid-alpha: 0.34;
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(104px, auto);
  min-height: 0;
  overflow: hidden;
  background: #01000a;
  cursor: default;
  isolation: isolate;
}

.solution-binary-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  isolation: isolate;
}

.solution-binary-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(calc(var(--beam-size) * 0.72) circle at var(--beam-x) var(--beam-y), rgba(92, 142, 255, var(--beam-hot-alpha, 0.24)) 0%, rgba(36, 96, 230, var(--beam-soft-alpha, 0.18)) 30%, transparent 62%),
    radial-gradient(calc(var(--beam-size) * 1.08) circle at var(--beam-x) var(--beam-y), rgba(3, 18, 72, 0.84) 0%, rgba(5, 30, 118, 0.62) 28%, rgba(3, 18, 76, 0.36) 52%, transparent 78%),
    radial-gradient(calc(var(--beam-size) * 0.82) circle at 50% 50%, transparent 0%, transparent 14%, rgba(1, 17, 86, 0.9) 24%, rgba(12, 64, 185, 0.62) 38%, rgba(2, 15, 75, 0.34) 60%, transparent 78%),
    radial-gradient(calc(var(--beam-size) * 1.22) circle at 50% 50%, transparent 0%, transparent 20%, rgba(8, 31, 96, 0.56) 38%, rgba(7, 24, 76, 0.42) 58%, rgba(4, 14, 48, 0.2) 76%, transparent 90%),
    radial-gradient(calc(var(--beam-size) * 0.94) circle at 50% 50%, transparent 0%, transparent 28%, rgba(10, 41, 118, 0.44) 42%, rgba(8, 28, 84, 0.3) 62%, rgba(4, 16, 54, 0.16) 74%, transparent 86%),
    radial-gradient(108px circle at 50% 50%, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.4) 42%, transparent 74%),
    radial-gradient(var(--beam-size) circle at var(--beam-x) var(--beam-y), rgba(14, 48, 132, var(--beam-body-alpha, 0.42)) 0%, rgba(10, 36, 105, var(--beam-mid-alpha, 0.34)) 32%, rgba(5, 21, 70, 0.22) 56%, transparent 72%),
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  opacity: 0;
  mix-blend-mode: normal;
  transition: opacity 360ms ease;
  pointer-events: none;
}

.solution-binary-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(var(--shade-size, 260px) circle at var(--shade-x) var(--shade-y), rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 36%, rgba(0, 2, 15, 0.64) 58%, rgba(0, 0, 0, 0.28) 76%, transparent 94%),
    radial-gradient(118px circle at 50% 50%, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.5) 38%, rgba(0, 0, 0, 0.2) 58%, transparent 78%),
    linear-gradient(rgba(0, 0, 8, 0.06), rgba(0, 0, 0, 0.18));
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity 360ms ease;
  pointer-events: none;
}

.solution-binary-cell:hover .solution-binary-visual::after,
.solution-binary-cell.is-binary-active .solution-binary-visual::after {
  opacity: 1;
}

.solution-binary-cell:hover .solution-binary-visual::before,
.solution-binary-cell.is-binary-active .solution-binary-visual::before {
  opacity: 1;
}

.solution-binary-code {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  color: rgba(158, 183, 244, 0.82);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, ui-monospace, monospace;
  font-size: clamp(9px, 0.66vw, 12px);
  font-weight: 720;
  line-height: 1.15;
  opacity: 0;
  word-break: break-all;
  overflow-wrap: anywhere;
  -webkit-mask-image: radial-gradient(300px circle at 50% 50%, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 16%, black 30%, rgba(0, 0, 0, 0.86) 48%, rgba(0, 0, 0, 0.24) 70%, transparent 88%);
  mask-image: radial-gradient(300px circle at 50% 50%, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 16%, black 30%, rgba(0, 0, 0, 0.86) 48%, rgba(0, 0, 0, 0.24) 70%, transparent 88%);
  text-shadow: 0 0 14px rgba(80, 128, 255, 0.56), 0 0 28px rgba(16, 60, 170, 0.46);
  transition: opacity 500ms ease;
  user-select: none;
}

.solution-binary-cell:hover .solution-binary-code,
.solution-binary-cell.is-binary-active .solution-binary-code {
  opacity: 0.98;
}

.solution-binary-code em {
  color: #bdd6ff;
  font-style: normal;
  font-weight: 880;
  text-shadow: 0 0 14px rgba(120, 170, 255, 0.72);
}

.solution-binary-label {
  position: relative;
  z-index: 4;
  display: grid;
  place-self: center;
  place-items: center;
  width: min(52%, 156px);
  transform: translateZ(0);
  pointer-events: none;
  isolation: isolate;
}

.solution-binary-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: clamp(96px, 88%, 136px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.96) 38%, rgba(0, 0, 0, 0.76) 54%, transparent 72%);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.72), 0 0 34px rgba(0, 0, 0, 0.58);
  transform: translate(-50%, -50%);
  transition: box-shadow 280ms ease;
  pointer-events: none;
}

.solution-binary-cell:hover .solution-binary-label::before,
.solution-binary-cell.is-binary-active .solution-binary-label::before {
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.72), 0 0 36px rgba(2, 20, 90, 0.72), 0 0 76px rgba(14, 69, 185, 0.38);
}

.solution-binary-label-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 88%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.solution-binary-label[data-service-label="IMC"] .solution-binary-label-image {
  width: 76%;
}

.solution-binary-copy {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: space-between;
  gap: clamp(14px, 1.5vw, 22px);
  min-height: 104px;
  padding: clamp(18px, 1.7vw, 24px);
  color: rgba(229, 232, 244, 0.78);
  border-top: 1px solid rgba(229, 232, 244, 0.08);
}

.solution-binary-copy p {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0;
}

.solution-binary-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.solution-binary-tag {
  display: inline-grid;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(229, 232, 244, 0.18);
  border-radius: 999px;
  color: rgba(229, 232, 244, 0.7);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

@media (hover: none) {
  .solution-binary-visual::before {
    background:
      linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
      radial-gradient(132px circle at 50% 50%, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.44) 46%, transparent 76%),
      radial-gradient(210px circle at 50% 50%, rgba(58, 66, 128, 0.18) 0%, rgba(33, 45, 102, 0.12) 42%, transparent 68%),
      radial-gradient(430px circle at 50% 50%, transparent 0%, transparent 30%, rgba(1, 4, 22, 0.7) 76%, rgba(0, 0, 0, 0.9) 100%);
    opacity: 0.5;
  }

  .solution-binary-visual::after {
    opacity: 0.42;
  }

  .solution-binary-code {
    opacity: 0.24;
  }
}

.solution-marker {
  width: min(100%, 440px);
  min-height: 0;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
  padding: 0 0 clamp(14px, 1.8vw, 22px);
  border-bottom: 1px solid rgba(16, 42, 82, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--deep-navy);
  box-shadow: none;
}

.solution-marker .solution-mark {
  grid-row: 1 / 3;
  color: var(--black);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.78;
}

.solution-marker strong {
  color: var(--deep-navy);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 0.92;
}

.solution-marker small {
  grid-column: 2;
  color: rgba(16, 42, 82, 0.62);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 720;
  line-height: 1.35;
}

.solution-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 520px;
  margin-top: 2px;
}

.solution-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(2, 54, 156, 0.22);
  background: rgba(255, 255, 255, 0.94);
  color: rgba(16, 42, 82, 0.82);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(2, 54, 156, 0.04);
}

.solution-bridge {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(16, 42, 82, 0.2);
  color: rgba(16, 42, 82, 0.64);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 780;
  line-height: 1.35;
}

.solution-typography h3 {
  color: var(--deep-navy);
  font-size: clamp(44px, 5.6vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.solution-slogan {
  color: var(--navy);
  font-size: clamp(18px, 1.7vw, 27px);
  font-weight: 760;
  line-height: 1.34;
}

.solution-typography p:not(.solution-slogan) {
  max-width: 520px;
  color: #3f4a5d;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 560;
  line-height: 1.82;
}

.contact-section {
  background: var(--white);
  padding: clamp(86px, 9vw, 132px) clamp(32px, 6vw, 132px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(40px, 5.4vw, 88px);
  align-items: center;
  width: min(100%, 1320px);
  margin-inline: auto;
  padding-top: clamp(30px, 3.6vw, 54px);
  border-top: 1px solid rgba(2, 54, 156, 0.12);
  overflow: visible;
  transform-origin: center center;
  will-change: transform, opacity, filter;
}

.contact-info {
  display: grid;
  gap: 28px;
  max-width: 640px;
}

.contact-info,
.contact-form-card {
  will-change: transform, opacity, filter;
}

.contact-kicker {
  color: #02369c;
  font-size: 12px;
  font-weight: 840;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-title {
  max-width: 640px;
  color: #07111f;
  font-size: clamp(44px, 4.5vw, 64px);
  line-height: 1.08;
  font-weight: 340;
}

.contact-title strong {
  font-weight: 820;
}

.contact-support {
  max-width: 560px;
  color: #56606b;
  font-size: 16px;
  line-height: 1.7;
}

.contact-detail-list {
  display: grid;
  gap: 24px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.contact-detail-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: #02369c;
  color: var(--white);
  box-shadow: 0 6px 12px rgba(2, 54, 156, 0.12);
}

.contact-detail-icon svg,
.contact-submit-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contact-detail-copy span {
  color: #79818c;
  font-size: 14px;
  line-height: 1.3;
}

.contact-detail-copy a {
  color: #121927;
  font-size: 17px;
  font-weight: 660;
  line-height: 1.35;
}

.contact-form-card {
  width: min(100%, 560px);
  justify-self: end;
  margin-block: clamp(6px, 1vw, 14px);
  padding: clamp(28px, 3vw, 46px);
  border: 1px solid rgba(2, 54, 156, 0.12);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(2, 10, 42, 0.045);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-consent {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -2px;
}

.contact-consent-check {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 9px;
  min-width: 0;
  max-width: 100%;
  color: #4c5562;
  font-size: 13px;
  font-weight: 610;
  line-height: 1.4;
  cursor: pointer;
}

.contact-consent-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-consent-control {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(15, 23, 42, 0.22);
  border-radius: 5px;
  background: #fff;
  transition:
    border-color 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease;
}

.contact-consent-control::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg);
}

.contact-consent-check input:checked + .contact-consent-control {
  border-color: #02369c;
  background: #02369c;
}

.contact-consent-check input:checked + .contact-consent-control::after {
  opacity: 1;
}

.contact-consent-check input:focus-visible + .contact-consent-control {
  box-shadow: 0 0 0 3px rgba(2, 54, 156, 0.12);
}

.contact-consent-label strong {
  color: #02369c;
  font-weight: 760;
}

.contact-consent-details {
  flex: 0 0 auto;
  width: fit-content;
  margin-left: auto;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
}

.contact-consent-details summary {
  width: fit-content;
  color: #6b7280;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(107, 114, 128, 0.38);
  text-underline-offset: 3px;
  cursor: pointer;
  list-style: none;
}

.contact-consent-details summary::-webkit-details-marker {
  display: none;
}

.contact-consent-details dl {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: calc(100% + 10px);
  display: grid;
  gap: 6px;
  width: min(100%, 430px);
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: #f8f9fb;
}

.contact-consent-details dl > div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
}

.contact-consent-details dt,
.contact-consent-details dd {
  margin: 0;
}

.contact-consent-details dt {
  color: #464f5b;
  font-weight: 720;
}

.contact-field {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.contact-field span {
  color: #656d78;
  font-size: 14px;
  font-weight: 640;
  line-height: 1.2;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 11px;
  background: #ffffff;
  color: #111827;
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.contact-field input,
.contact-field select {
  min-height: 42px;
  padding: 0 13px;
}

.contact-field textarea {
  min-height: 112px;
  padding: 13px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #adb4bd;
}

.contact-field select option {
  color: var(--black);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(2, 54, 156, 0.52);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 54, 156, 0.1);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  min-height: 58px;
  margin-top: 6px;
  padding: 8px 24px 8px 8px;
  border: 0;
  border-radius: 9999px;
  background: #02369c;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.25;
  box-shadow: 0 6px 14px rgba(2, 54, 156, 0.12);
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form-status {
  min-height: 1.45em;
  margin: -6px 0 0;
  color: #626b78;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.contact-form-status:empty {
  display: none;
}

.contact-form-status[data-status="success"] {
  color: #087443;
}

.contact-form-status[data-status="error"] {
  color: #b42318;
}

.contact-submit-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: #02369c;
}

.site-footer {
  display: grid;
  gap: clamp(22px, 3.6vw, 46px);
  overflow: hidden;
  padding: clamp(58px, 8vw, 104px) var(--section-gutter) 30px;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  font-size: 14px;
}

.footer-signature {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(18px, 2.8vw, 50px);
}

.footer-long-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-meta {
  display: grid;
  place-items: center;
  gap: 16px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-company {
  display: grid;
  justify-items: center;
  width: min(100%, 760px);
}

.footer-company-toggle {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  box-shadow: none;
  cursor: pointer;
  transition: color 180ms ease;
}

.footer-company-toggle:hover,
.footer-company-toggle:focus-visible {
  color: var(--black);
}

.footer-company-toggle:focus-visible {
  outline: 2px solid rgba(2, 54, 156, 0.22);
  outline-offset: 4px;
}

.footer-company-chevron {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

.footer-company.is-open .footer-company-chevron {
  transform: rotate(180deg);
}

.footer-company-panel {
  width: 100%;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 280ms ease,
    margin-top 280ms ease,
    opacity 200ms ease,
    transform 280ms ease;
}

.footer-company-panel.is-visible {
  max-height: 260px;
  margin-top: 14px;
  opacity: 1;
  transform: translateY(0);
}

.footer-company-list {
  display: grid;
  gap: 8px 14px;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(2, 54, 156, 0.12);
  color: rgba(16, 42, 82, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.footer-company-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.footer-company-row dt {
  color: rgba(16, 42, 82, 0.54);
  font-weight: 760;
  text-align: left;
}

.footer-company-row dd {
  justify-self: end;
  margin: 0;
  color: rgba(0, 0, 0, 0.56);
  text-align: right;
}

.footer-addresses {
  display: grid;
  gap: 4px;
}

.footer-company-row a {
  color: #02369c;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-copyright {
  color: rgba(0, 0, 0, 0.42);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
  text-align: center;
}

.scroll-top-button {
  position: fixed;
  right: clamp(18px, 2.5vw, 36px);
  bottom: calc(clamp(18px, 2.5vw, 36px) + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: #102a52;
  box-shadow:
    0 14px 34px rgba(3, 22, 56, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  pointer-events: none;
  cursor: pointer;
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top-button:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 40px rgba(3, 22, 56, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: translateY(-3px) scale(1.02);
}

.scroll-top-button:focus-visible {
  outline: 2px solid rgba(2, 54, 156, 0.5);
  outline-offset: 4px;
}

.scroll-top-button:disabled {
  cursor: default;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .scroll-top-button {
    transition: none;
  }

  [data-reveal],
  [data-reveal].is-visible,
  .challenge-panel,
  .challenge-panel.is-active,
  .stats-panel,
  .solution-story,
  .solution-binary-stage,
  .solution-scroll-track,
  .perspective-system-object,
  .perspective-service-node {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .challenge-stage {
    min-height: auto;
    display: grid;
    gap: 18px;
    overflow: visible;
    border: 0;
  }

  .challenge-panel {
    position: relative;
    inset: auto;
    padding: 28px 0;
    pointer-events: auto;
  }

  .challenge-blind,
  .challenge-progress {
    display: none;
  }

  .solution-scroll-frame::before {
    display: none;
  }

  .orbit-track,
  .orbit-bouncer {
    transition: none !important;
  }

  .solution-binary-visual::before,
  .solution-binary-visual::after,
  .solution-binary-code {
    transition-duration: 120ms !important;
  }
}

@media (max-width: 1060px) {
  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 48px;
  }

  .perspective-layout,
  .stats-layout,
  .solution-story {
    grid-template-columns: 1fr;
  }

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

  .solution-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .solution-story {
    min-height: auto;
    gap: 30px;
  }

  .solution-story--image-right .solution-visual,
  .solution-story--image-right .solution-typography {
    grid-column: 1;
    grid-row: auto;
  }

  .solution-story--photo-led {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
    gap: clamp(24px, 4vw, 44px);
  }

  .solution-story--image-right.solution-story--photo-led .solution-visual {
    grid-column: 2;
    grid-row: 1;
  }

  .solution-story--image-right.solution-story--photo-led .solution-typography {
    grid-column: 1;
    grid-row: 1;
  }

  .solution-binary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .solution-binary-cell {
    min-height: 0;
  }

  .perspective-visual {
    justify-self: start;
    width: min(520px, 100%);
  }

  .perspective-service-map {
    display: block;
    inset: 0;
    gap: 0;
  }

  .challenge-panel {
    grid-template-columns: minmax(260px, 1fr) minmax(280px, min(36vw, 42%, 410px));
    column-gap: clamp(18px, 3vw, 34px);
  }

  .challenge-statement h3 {
    font-size: clamp(31px, 4vw, 44px);
  }

  .challenge-reason h4 {
    font-size: clamp(24px, 2.8vw, 34px);
  }

  .challenge-visual {
    width: min(100%, 410px);
    height: clamp(390px, 56vh, 560px);
  }

  .stats-layout {
    min-height: clamp(700px, 88vh, 900px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: max-content minmax(540px, 74vh);
    gap: 0;
  }

  .stats-bg-image,
  .stats-panel.panel-1,
  .stats-panel.panel-2,
  .stats-panel.panel-3 {
    grid-row: 2;
    transform: none;
  }

  .stats-bg-image {
    grid-column: 1 / -1;
    min-height: clamp(520px, 68vh, 620px);
  }

  .stats-image-copy {
    grid-column: 1 / 3;
    grid-row: 2;
    max-width: min(560px, 60%);
    margin: 30px 24px 0;
    font-size: clamp(28px, 5.6vw, 46px);
  }

  .stats-live-clock {
    grid-column: 2 / -1;
    grid-row: 2;
    align-self: start;
    justify-self: end;
    max-width: min(320px, 34vw);
    margin: 30px 24px 0 0;
  }

  .stats-title-block {
    grid-column: 1 / 3;
    grid-row: 1;
    align-self: start;
  }

  .stats-panel.panel-1 {
    grid-column: 1;
  }

  .stats-panel.panel-2 {
    grid-column: 2;
  }

  .stats-panel.panel-3 {
    grid-column: 3;
  }

  .contact-info {
    max-width: none;
  }

  .contact-form-card {
    justify-self: stretch;
    width: 100%;
  }

}

@media (max-width: 1024px) {
  .service-orbit {
    padding: 40px 0 80px;
  }

  .orbit-track {
    gap: 6px;
  }

  .orbit-bouncer {
    width: 70px;
    font-size: 28px;
  }

  .orbit-icon {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 720px) {
  .scroll-top-button {
    width: 52px;
    height: 52px;
  }

  .scroll-top-button svg {
    width: 20px;
    height: 20px;
  }

  .site-header {
    min-height: 76px;
    padding: 24px 20px;
    gap: 18px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero,
  .perspective-section,
  .challenge-section,
  .solution-section,
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .perspective-section,
  .challenge-section,
  .solution-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .perspective-section,
  .challenge-section,
  .solution-section,
  .contact-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .solution-binary-showcase {
    --binary-bg-inset: 12px;
    --binary-grid-scale: 1;
    padding-bottom: 8px;
  }

  .solution-binary-intro {
    justify-items: start;
    text-align: left;
  }

  .solution-binary-intro h2 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .service-orbit {
    padding: 40px 0 80px;
  }

  .orbit-track {
    gap: 6px;
  }

  .orbit-bouncer {
    width: 70px;
    font-size: 28px;
  }

  .orbit-icon {
    width: 38px;
    height: 38px;
  }

  .stats-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: max-content 360px 260px 260px;
    border-bottom: 1px solid rgba(7, 27, 58, 0.1);
  }

  .stats-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-panel,
  .stats-panel.panel-2,
  .stats-panel.panel-3 {
    min-height: 260px;
    padding: 30px 20px 44px;
    clip-path: none;
  }

  .stats-bg-image {
    grid-column: 1;
    grid-row: 2 / 5;
    min-height: 880px;
    border-radius: 22px;
  }

  .stats-image-copy {
    grid-column: 1;
    grid-row: 2;
    max-width: calc(100% - 40px);
    margin: 24px 20px 0;
    font-size: clamp(28px, 10vw, 40px);
  }

  .stats-live-clock {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    justify-self: end;
    max-width: min(260px, calc(100% - 40px));
    margin: 176px 20px 0 0;
  }

  .stats-live-time {
    font-size: clamp(30px, 12vw, 42px);
  }

  .stats-panel.panel-1 {
    grid-column: 1;
    grid-row: 2;
  }

  .stats-panel.panel-2 {
    grid-column: 1;
    grid-row: 3;
  }

  .stats-panel.panel-3 {
    grid-column: 1;
    grid-row: 4;
  }

  .stats-number {
    font-size: clamp(72px, 24vw, 112px);
  }

  .stats-panel-meta {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 14px;
  }

  .stats-title-block {
    padding: 34px 20px;
  }

  .solution-stories {
    gap: 72px;
  }

  .solution-visual {
    aspect-ratio: 1 / 1;
  }

  .solution-story--photo-led {
    grid-template-columns: 1fr;
  }

  .solution-story--image-right.solution-story--photo-led .solution-visual,
  .solution-story--image-right.solution-story--photo-led .solution-typography {
    grid-column: 1;
    grid-row: auto;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .hero-content {
    width: 100%;
    margin-top: 0;
  }

  h1 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 24px;
  }

  p,
  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 10px 16px;
  }

  .contact-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .contact-layout {
    gap: 42px;
  }

  .contact-title {
    font-size: 42px;
  }

  .contact-form-card {
    padding: 28px;
    border-radius: 26px;
  }

  .contact-submit {
    width: max-content;
  }

  .perspective-section {
    min-height: auto;
  }

  .perspective-copy h2,
  .solution-heading h2,
  .solution-typography h3 {
    font-size: 34px;
  }

  .perspective-system-object {
    min-height: clamp(420px, 55vw, 500px);
  }

  .perspective-service-map {
    display: block;
    inset: 0;
    gap: 0;
  }

  .perspective-core {
    width: 168px;
    padding: 22px;
  }

  .challenge-cards {
    min-height: auto;
    margin-top: 44px;
  }

  .challenge-card {
    min-height: 0;
  }

  .challenge-stage {
    min-height: auto;
    display: grid;
    gap: 52px;
    overflow: visible;
    border: 0;
  }

  .challenge-panel {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
    gap: 24px;
    padding: 28px 0;
    opacity: 1;
    filter: none;
    pointer-events: auto;
    transform: none;
  }

  .challenge-statement,
  .challenge-divider,
  .challenge-reason,
  .challenge-visual {
    grid-area: auto;
  }

  .challenge-visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 340px);
    height: auto;
    aspect-ratio: 4 / 5;
    justify-self: start;
  }

  .challenge-statement,
  .challenge-reason {
    width: 100%;
    margin: 0;
  }

  .challenge-statement h3 > span,
  .challenge-reason h4 > span {
    white-space: normal;
  }

  .challenge-statement h3 {
    font-size: clamp(34px, 8.8vw, 40px);
    line-height: 1.04;
  }

  .challenge-reason h4 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.1;
  }

  .challenge-divider {
    width: 100%;
  }

  .challenge-panel-support {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .solution-binary-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .solution-binary-cell {
    min-height: 0;
  }

  .solution-binary-visual {
    min-height: 0;
  }

  .solution-binary-copy {
    min-height: 104px;
  }

  .challenge-blind,
  .challenge-progress {
    display: none;
  }

  .solution-binary-grid {
    width: 100%;
  }

  .site-footer {
    padding: 46px 20px 24px;
  }

  .footer-signature {
    padding: 0 16px;
  }

  .footer-meta {
    padding-top: 14px;
  }

  .footer-company {
    width: 100%;
  }

  .footer-company-row {
    gap: 8px;
  }
}

@media (max-width: 820px) {
  .stats-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows:
      max-content
      minmax(190px, auto)
      minmax(132px, auto)
      repeat(3, minmax(220px, auto));
    border-bottom: 1px solid rgba(7, 27, 58, 0.1);
  }

  .stats-bg-image {
    grid-column: 1;
    grid-row: 2 / 7;
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 22px;
  }

  .stats-image-copy {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    max-width: 11ch;
    margin: 24px 20px;
    font-size: clamp(30px, 8vw, 40px);
  }

  .stats-live-clock {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    justify-self: end;
    max-width: calc(100% - 40px);
    margin: 0 20px 24px;
    gap: 6px;
  }

  .stats-live-time {
    font-size: clamp(30px, 10vw, 42px);
  }

  .stats-panel,
  .stats-panel.panel-1,
  .stats-panel.panel-2,
  .stats-panel.panel-3 {
    grid-column: 1;
    min-height: 220px;
    align-self: stretch;
    align-content: start;
    padding: 28px 20px 34px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: none;
  }

  .stats-panel.panel-1 {
    grid-row: 4;
  }

  .stats-panel.panel-2 {
    grid-row: 5;
  }

  .stats-panel.panel-3 {
    grid-row: 6;
  }

  .stats-number {
    font-size: clamp(72px, 22vw, 104px);
  }

  .stats-panel-meta {
    display: block;
    font-size: 14px;
  }

  .stats-title-block {
    grid-column: 1;
    grid-row: 1;
    padding: 34px 20px;
  }
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 116px;
  }

  .site-header {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: start;
    gap: 18px;
    min-height: 116px;
    padding: 22px 20px 16px;
  }

  .brand {
    width: 82px;
    height: 32px;
  }

  .nav-links {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .nav-links a {
    min-height: 34px;
    padding: 8px 4px;
    font-size: 11px;
  }

  .hero {
    padding-top: 148px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  h3 {
    font-size: 22px;
  }

  .hero-content {
    gap: 22px;
  }

  .hero-copy {
    line-height: 1.7;
  }

  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-detail-item {
    align-items: flex-start;
  }

  .contact-form-card {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-submit {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 360px) {
  .nav-links a {
    font-size: 10px;
  }

  h1 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 32px;
  }
}

/* Mobile responsive composition: retain the desktop visual language without
   forcing desktop-sized canvases into a narrow viewport. */
@media (max-width: 720px) {
  :root {
    --mobile-gutter: clamp(18px, 5.1vw, 24px);
  }

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

  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 68px;
    padding: 14px 14px;
    gap: 12px;
  }

  .brand {
    width: 64px;
    height: 25px;
  }

  .nav-links {
    grid-column: 2;
    justify-self: stretch;
    display: flex;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
    font-size: clamp(9px, 2.65vw, 10.5px);
  }

  .hero,
  .perspective-section,
  .solution-section,
  .contact-section {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding-top: 112px;
    padding-bottom: max(38px, calc(28px + env(safe-area-inset-bottom, 0px)));
  }

  .hero-video {
    object-position: 69% center;
    transform: scale(0.94) translateY(1.5%);
  }

  .image-shade {
    background:
      linear-gradient(90deg, rgba(2, 10, 42, 0.52), rgba(2, 10, 42, 0.14) 66%, rgba(2, 10, 42, 0.32)),
      linear-gradient(180deg, rgba(2, 10, 42, 0.12) 16%, rgba(2, 10, 42, 0.42) 54%, rgba(2, 10, 42, 0.88) 100%);
  }

  .hero-content {
    width: min(100%, 540px);
    gap: clamp(16px, 4.8vw, 22px);
    margin: 0;
  }

  .hero .eyebrow {
    gap: 12px;
    font-size: 12px;
  }

  .hero .eyebrow::after {
    width: 48px;
    height: 4px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(21px, 6.8vw, 30px);
    line-height: 1.07;
  }

  .hero h1 > span {
    display: block;
    white-space: nowrap;
  }

  .hero-copy {
    max-width: 36ch;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.66;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 2px;
  }

  .hero-actions .button {
    min-height: 50px;
    padding: 0 14px;
    gap: 8px;
    font-size: clamp(12px, 3.45vw, 14px);
  }

  .perspective-section,
  .solution-section,
  .contact-section {
    padding-top: clamp(76px, 21vw, 92px);
    padding-bottom: clamp(76px, 21vw, 92px);
  }

  .perspective-layout {
    gap: 46px;
  }

  .perspective-copy {
    gap: 22px;
  }

  .perspective-copy h2 {
    max-width: 100%;
    font-size: clamp(25px, 6.7vw, 29px);
    line-height: 1.12;
  }

  .perspective-body {
    gap: 14px;
  }

  .perspective-body p {
    font-size: 15px;
    line-height: 1.74;
  }

  .service-line {
    padding-top: 18px;
    font-size: 12px;
    line-height: 1.58;
  }

  .perspective-visual {
    justify-self: stretch;
    width: 100%;
  }

  .perspective-system-object {
    min-height: clamp(350px, 92vw, 410px);
  }

  .perspective-system-object::before {
    inset: 24px;
  }

  .perspective-frame-line.line-top,
  .perspective-frame-line.line-bottom {
    left: 24px;
    right: 24px;
  }

  .perspective-frame-line.line-left,
  .perspective-frame-line.line-right {
    top: 24px;
    bottom: 24px;
  }

  .perspective-frame-line.line-top {
    top: 24px;
  }

  .perspective-frame-line.line-bottom {
    bottom: 24px;
  }

  .perspective-frame-line.line-left {
    left: 24px;
  }

  .perspective-frame-line.line-right {
    right: 24px;
  }

  .perspective-core {
    width: clamp(148px, 43vw, 176px);
    padding: 20px;
  }

  .perspective-core strong {
    font-size: clamp(42px, 13vw, 58px);
  }

  .perspective-core small {
    font-size: 9px;
  }

  .perspective-service-map {
    display: grid;
    inset: 30px 18px;
    gap: 12px;
  }

  .perspective-service-node,
  .perspective-service-node:nth-child(3),
  .perspective-service-node:nth-child(4),
  .perspective-service-node:nth-child(5) {
    max-width: 72px;
    padding: 7px 0;
    font-size: 9px;
    transform: none;
  }

  .challenge-section {
    --section-banner-height: clamp(126px, 36vw, 150px);
    padding: 0 var(--mobile-gutter) 48px;
  }

  .section-scroll-banner {
    padding-inline: var(--mobile-gutter);
  }

  .section-scroll-banner__logo {
    width: min(72vw, 300px);
    max-width: none;
  }

  .challenge-cards {
    min-height: auto;
    margin-top: 0;
  }

  .challenge-stage {
    display: grid;
    align-items: stretch;
    gap: 58px;
    min-height: auto;
    padding: 50px 0 18px;
    overflow: visible;
  }

  .challenge-panel {
    position: relative;
    inset: auto;
    grid-template-columns: minmax(0, 1fr) minmax(110px, 34%);
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "statement statement"
      "divider divider"
      "reason visual";
    align-content: start;
    column-gap: 14px;
    row-gap: 24px;
    padding: 0;
    opacity: 1;
    filter: none;
    pointer-events: auto;
    transform: none;
  }

  .challenge-statement {
    grid-area: statement;
    align-self: center;
  }

  .challenge-visual {
    grid-area: visual;
    align-self: start;
    justify-self: end;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }

  .challenge-divider {
    grid-area: divider;
  }

  .challenge-reason {
    grid-area: reason;
  }

  .challenge-statement h3 {
    max-width: none;
    font-size: clamp(26px, 7.4vw, 31px);
    line-height: 1.02;
  }

  .challenge-reason h4 {
    max-width: none;
    font-size: clamp(19px, 5.2vw, 22px);
    line-height: 1.08;
  }

  .challenge-statement h3 > span {
    white-space: nowrap;
  }

  .challenge-reason h4 > span {
    white-space: normal;
  }

  .challenge-eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .challenge-panel-support {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 18px;
  }

  .challenge-panel-support b,
  .challenge-panel-support p {
    font-size: 11px;
    line-height: 1.55;
  }

  .challenge-panel-support b {
    top: 0;
  }

  .challenge-blind {
    display: none;
  }

  .challenge-progress {
    display: none;
  }

  .solution-shell {
    gap: 64px;
  }

  .solution-binary-showcase {
    gap: 28px;
    padding-bottom: 0;
  }

  .solution-binary-intro {
    gap: 14px;
  }

  .solution-binary-intro h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.09;
  }

  .solution-binary-intro p:not(.section-label) {
    max-width: 38ch;
    font-size: 14px;
    line-height: 1.66;
  }

  .solution-binary-stage {
    left: auto;
    width: 100%;
    margin-left: 0;
    border-radius: 8px;
  }

  .solution-binary-stage .solution-binary-grid,
  .solution-binary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    width: 100%;
  }

  .solution-binary-cell {
    grid-template-rows: auto minmax(132px, auto);
  }

  .solution-binary-copy {
    align-content: space-between;
    gap: 12px;
    min-height: 132px;
    padding: 13px 12px 14px;
  }

  .solution-binary-copy p {
    font-size: 11px;
    line-height: 1.48;
  }

  .solution-binary-tags {
    gap: 5px;
  }

  .solution-binary-tag {
    min-height: 25px;
    padding: 0 8px;
    font-size: 9.5px;
  }

  .solution-heading {
    gap: 20px;
  }

  .solution-heading h2 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.05;
  }

  .solution-heading-copy {
    gap: 10px;
  }

  .solution-heading-copy p {
    font-size: 14px;
    line-height: 1.64;
  }

  .solution-stories {
    gap: 66px;
  }

  .solution-story,
  .solution-story--photo-led {
    min-height: auto;
    gap: 24px;
  }

  .solution-typography {
    gap: 15px;
  }

  .solution-typography h3 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .solution-slogan {
    font-size: 17px;
  }

  .solution-typography p:not(.solution-slogan) {
    font-size: 14px;
    line-height: 1.7;
  }

  .solution-marker strong {
    font-size: 25px;
  }

  .solution-marker .solution-mark {
    font-size: 42px;
  }

  .solution-marker small {
    font-size: 10px;
  }

  .service-orbit {
    padding: 30px 0 62px;
  }

  .orbit-track {
    margin-top: 26px;
  }

  .stats-section {
    padding: 0 var(--mobile-gutter) 82px;
  }

  .stats-layout {
    min-height: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: max-content minmax(450px, 64vh);
    border-bottom: 1px solid rgba(7, 27, 58, 0.1);
  }

  .stats-bg-image {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 20px;
  }

  .stats-image-copy {
    grid-column: 1 / 3;
    grid-row: 2;
    max-width: 10ch;
    margin: 20px 0 0 16px;
    font-size: clamp(24px, 7vw, 30px);
  }

  .stats-live-clock {
    grid-column: 2 / -1;
    grid-row: 2;
    align-self: start;
    justify-self: end;
    max-width: 48vw;
    margin: 22px 14px 0 0;
    gap: 4px;
  }

  .stats-live-kicker {
    font-size: 7px;
  }

  .stats-live-time {
    font-size: clamp(20px, 6vw, 26px);
  }

  .stats-live-copy {
    display: none;
  }

  .stats-panel,
  .stats-panel.panel-1,
  .stats-panel.panel-2,
  .stats-panel.panel-3 {
    grid-row: 2;
    min-height: 168px;
    align-self: end;
    align-content: end;
    padding: 18px 9px 22px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }

  .stats-panel.panel-1 {
    grid-column: 1;
  }

  .stats-panel.panel-2 {
    grid-column: 2;
  }

  .stats-panel.panel-3 {
    grid-column: 3;
  }

  .stats-number {
    font-size: clamp(46px, 14.5vw, 62px);
  }

  .stats-number em {
    font-size: 10px;
  }

  .stats-panel-meta {
    display: block;
    min-height: 2.5em;
    font-size: clamp(7px, 2.15vw, 9px);
    line-height: 1.2;
    overflow-wrap: normal;
    word-break: break-word;
  }

  .stats-panel h3 {
    font-size: clamp(9px, 2.6vw, 11px);
    line-height: 1.35;
  }

  .stats-title-block {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 28px 0 24px;
  }

  .stats-title-block h2 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .contact-layout {
    gap: 38px;
  }

  .contact-title {
    max-width: 100%;
    font-size: clamp(31px, 8.4vw, 36px);
    line-height: 1.1;
  }

  .contact-form-card {
    padding: clamp(20px, 6vw, 26px);
    border-radius: 22px;
  }

  .site-footer {
    padding-inline: var(--mobile-gutter);
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .footer-signature {
    width: 100%;
    margin-left: 0;
    padding-inline: 0;
  }

  .scroll-top-button {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 370px) {
  .site-header,
  .site-header.is-scrolled {
    gap: 8px;
    padding-inline: 10px;
  }

  .brand {
    width: 54px;
    height: 22px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    font-size: 8.5px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .challenge-panel {
    grid-template-columns: minmax(0, 1fr) 104px;
  }

  .challenge-statement h3 {
    font-size: 25px;
  }

  .solution-binary-copy {
    padding-inline: 10px;
  }
}

@media (min-width: 721px) and (max-width: 820px) {
  .hero-video {
    object-position: 67% center;
    transform: scale(1.1) translateY(1.5%);
  }

  .image-shade {
    background:
      linear-gradient(90deg, rgba(2, 10, 42, 0.48), rgba(2, 10, 42, 0.08) 62%, rgba(2, 10, 42, 0.34)),
      linear-gradient(180deg, rgba(2, 10, 42, 0.04), rgba(2, 10, 42, 0.62));
  }

  .perspective-service-map {
    display: grid;
    inset: 46px 32px;
  }

  .perspective-service-node:nth-child(3),
  .perspective-service-node:nth-child(4),
  .perspective-service-node:nth-child(5) {
    transform: none;
  }

  .stats-layout {
    min-height: clamp(650px, 78vh, 800px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: max-content minmax(510px, 62vh);
  }

  .stats-bg-image {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .stats-image-copy {
    grid-column: 1 / 3;
    grid-row: 2;
    max-width: 10ch;
    margin: 28px 0 0 24px;
    font-size: clamp(34px, 5.8vw, 46px);
  }

  .stats-live-clock {
    grid-column: 2 / -1;
    grid-row: 2;
    align-self: start;
    justify-self: end;
    max-width: 280px;
    margin: 30px 24px 0 0;
  }

  .stats-panel,
  .stats-panel.panel-1,
  .stats-panel.panel-2,
  .stats-panel.panel-3 {
    grid-row: 2;
    min-height: 220px;
    align-self: end;
    align-content: end;
    padding: 28px 20px 34px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }

  .stats-panel.panel-1 {
    grid-column: 1;
  }

  .stats-panel.panel-2 {
    grid-column: 2;
  }

  .stats-panel.panel-3 {
    grid-column: 3;
  }

  .stats-number {
    font-size: clamp(64px, 10vw, 84px);
  }

  .stats-panel-meta {
    display: block;
    font-size: 10px;
  }

  .stats-title-block {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 32px 0;
  }
}

/* Mobile composition refinement: compact navigation, staged cards, and
   scroll-led service effects. */
@media (max-width: 720px) {
  html {
    scroll-padding-top: 64px;
  }

  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    padding: 12px var(--mobile-gutter);
    overflow: visible;
  }

  .brand {
    z-index: 2;
    width: clamp(62px, 17vw, 70px);
    height: 27px;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 2;
    grid-column: 2;
    justify-self: end;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: width 180ms ease, transform 180ms ease;
  }

  .mobile-menu-toggle span:last-child {
    width: 15px;
    justify-self: end;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:active {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-toggle:focus-visible {
    outline: 1px solid rgba(0, 30, 255, 0.42);
    outline-offset: 1px;
  }

  .nav-links {
    position: fixed;
    z-index: 1;
    top: 70px;
    left: auto;
    right: var(--mobile-gutter);
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    width: min(248px, calc(100vw - (var(--mobile-gutter) * 2)));
    gap: 2px;
    padding: 10px;
    overflow: hidden;
    border: 1px solid rgba(7, 27, 58, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--deep-navy);
    box-shadow: 0 18px 48px rgba(2, 10, 42, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top right;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .nav-links a {
    justify-content: space-between;
    min-height: 44px;
    padding: 0 12px;
    border: 0;
    border-radius: 11px;
    font-size: 13px;
    letter-spacing: 0.025em;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(7, 27, 58, 0.055);
    color: #001eff;
    transform: translateX(2px);
  }

  .site-header.is-menu-open {
    background: rgba(255, 255, 255, 0.98);
    color: var(--deep-navy);
    border-color: rgba(7, 27, 58, 0.1);
    box-shadow: none;
    text-shadow: none;
  }

  .site-header.is-menu-open .brand-logo-white {
    opacity: 0;
  }

  .site-header.is-menu-open .brand-logo-black {
    opacity: 1;
  }

  .site-header.is-menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-header.is-menu-open .mobile-menu-toggle {
    background: transparent;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:first-child {
    width: 20px;
    transform: translateY(4.5px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:last-child {
    width: 20px;
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(21px, 6.8vw, 30px);
    line-height: 1.07;
  }

  .hero h1 > span {
    display: block;
    white-space: nowrap;
  }

  .perspective-layout {
    gap: 34px;
  }

  .perspective-visual {
    justify-self: center;
    width: min(100%, 340px);
  }

  .perspective-system-object {
    min-height: clamp(278px, 80vw, 326px);
    border-radius: 18px;
  }

  .perspective-system-object::before {
    inset: 20px;
  }

  .perspective-frame-line.line-top,
  .perspective-frame-line.line-bottom {
    left: 20px;
    right: 20px;
  }

  .perspective-frame-line.line-left,
  .perspective-frame-line.line-right {
    top: 20px;
    bottom: 20px;
  }

  .perspective-frame-line.line-top {
    top: 20px;
  }

  .perspective-frame-line.line-bottom {
    bottom: 20px;
  }

  .perspective-frame-line.line-left {
    left: 20px;
  }

  .perspective-frame-line.line-right {
    right: 20px;
  }

  .perspective-core {
    width: clamp(126px, 37vw, 146px);
    padding: 17px;
  }

  .perspective-core strong {
    font-size: clamp(39px, 11.5vw, 49px);
  }

  .perspective-core small {
    font-size: clamp(10.5px, 2.8vw, 12px);
    font-weight: 800;
    line-height: 1.25;
  }

  .perspective-service-map {
    inset: 24px 14px;
    gap: 8px;
  }

  .perspective-service-node,
  .perspective-service-node:nth-child(3),
  .perspective-service-node:nth-child(4),
  .perspective-service-node:nth-child(5) {
    max-width: 86px;
    padding-block: 7px;
    font-size: clamp(11.5px, 3vw, 13px);
    font-weight: 820;
  }

  .challenge-section {
    padding-bottom: 32px;
  }

  .challenge-stage {
    display: flex;
    align-items: stretch;
    gap: 14px;
    padding: 56px 0 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .challenge-stage::-webkit-scrollbar {
    display: none;
  }

  .challenge-panel {
    flex: 0 0 100%;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "statement"
      "divider"
      "visual"
      "reason";
    column-gap: 0;
    row-gap: 18px;
    padding: 24px 20px 26px;
    overflow: hidden;
    border: 1px solid rgba(7, 27, 58, 0.09);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    opacity: 1;
    filter: none;
    transform: none;
    will-change: transform, opacity, filter;
  }

  .challenge-panel.is-mobile-slide-active {
    box-shadow: none;
  }

  .challenge-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 52px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: #001eff;
  }

  .challenge-statement h3 {
    font-size: clamp(25px, 7.2vw, 30px);
    line-height: 1.03;
  }

  .challenge-reason h4 {
    font-size: clamp(20px, 5.7vw, 24px);
    line-height: 1.1;
  }

  .challenge-visual {
    align-self: center;
    justify-self: center;
    width: min(72vw, 250px);
    height: auto;
    aspect-ratio: 4 / 5;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .challenge-visual::after {
    display: none;
  }

  .challenge-visual img {
    object-fit: contain;
    object-position: center bottom;
    mix-blend-mode: multiply;
  }

  .challenge-reason {
    width: 100%;
  }

  .challenge-reason .challenge-eyebrow {
    margin-bottom: 9px;
    font-size: 13px;
  }

  .challenge-panel-support {
    gap: 8px;
    margin-top: 20px;
  }

  .challenge-panel-support b,
  .challenge-panel-support p {
    font-size: 12.5px;
    line-height: 1.62;
  }

  .challenge-progress {
    position: static;
    display: inline-flex;
    justify-content: center;
    justify-self: center;
    gap: 7px;
    width: fit-content;
    margin: 14px auto 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .challenge-progress span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(7, 27, 58, 0.16);
    transform: scale(0.92);
    transition:
      width 240ms cubic-bezier(0.22, 1, 0.36, 1),
      background-color 180ms ease,
      transform 220ms ease;
  }

  .challenge-progress span.is-active {
    width: 32px;
    background: #001eff;
    box-shadow: none;
    transform: scale(1);
  }

  .challenge-section + .solution-section {
    padding-top: 48px;
  }

  .solution-shell {
    gap: 78px;
  }

  .solution-binary-showcase {
    gap: 30px;
  }

  .solution-binary-intro {
    gap: 12px;
  }

  .solution-binary-intro h2 {
    max-width: 100%;
    font-size: clamp(29px, 7.8vw, 34px);
    line-height: 1.12;
    text-wrap: balance;
  }

  .solution-binary-intro p:not(.section-label) {
    max-width: 34ch;
    font-size: 13.5px;
    line-height: 1.7;
  }

  .solution-binary-stage {
    overflow: hidden;
    border-radius: 8px;
    background: #01000a;
    box-shadow: 0 20px 58px rgba(2, 10, 42, 0.14);
  }

  .solution-binary-stage .solution-binary-grid,
  .solution-binary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(42, 43, 58, 0.78);
    border-radius: 8px;
    background: #2a2b3a;
  }

  .solution-binary-cell {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-template-rows: auto minmax(152px, auto);
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #01000a;
    box-shadow: none;
    opacity: 1;
    transform-origin: center top;
    will-change: auto;
  }

  .solution-binary-cell::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 8;
    background: rgba(0, 0, 8, 0.58);
    opacity: 1;
    pointer-events: none;
    transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .solution-binary-cell.is-binary-active::after {
    opacity: 0;
  }

  .solution-binary-visual {
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .solution-binary-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    align-self: auto;
    align-content: initial;
    gap: 12px;
    min-height: 152px;
    padding: 14px 13px 15px;
    border-top: 1px solid rgba(229, 232, 244, 0.08);
    border-left: 0;
  }

  .solution-binary-copy p {
    color: rgba(239, 242, 252, 0.84);
    font-size: 12px;
    line-height: 1.58;
  }

  .solution-binary-tag {
    min-height: 27px;
    padding-inline: 9px;
    color: rgba(239, 242, 252, 0.78);
    font-size: 10.5px;
  }

  .solution-binary-tags {
    margin-top: auto;
  }

  .solution-binary-cell .solution-binary-visual::before,
  .solution-binary-cell .solution-binary-visual::after {
    opacity: 0.04;
    transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .solution-binary-cell .solution-binary-code {
    opacity: 0.03;
    transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .solution-binary-cell .solution-binary-label {
    opacity: 0.72;
    transform: scale(0.96);
    transition:
      opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .solution-binary-cell.is-binary-active .solution-binary-visual::before {
    opacity: 1;
  }

  .solution-binary-cell.is-binary-active .solution-binary-visual::after {
    opacity: 0.82;
  }

  .solution-binary-cell.is-binary-active .solution-binary-code {
    opacity: 0.94;
  }

  .solution-binary-cell.is-binary-active .solution-binary-label {
    opacity: 1;
    transform: scale(1);
  }

  .solution-binary-cell.is-binary-active .solution-binary-label::before {
    background: radial-gradient(
      circle at 50% 50%,
      rgba(0, 0, 0, 0.99) 0%,
      rgba(0, 0, 0, 0.97) 39%,
      rgba(2, 10, 44, 0.88) 54%,
      rgba(20, 62, 210, 0.22) 66%,
      transparent 78%
    );
    box-shadow:
      0 16px 44px rgba(0, 0, 0, 0.58),
      0 0 42px rgba(26, 72, 232, 0.7),
      0 0 84px rgba(44, 106, 255, 0.4);
  }

  .solution-binary-cell:not(.is-binary-active):hover .solution-binary-visual::before,
  .solution-binary-cell:not(.is-binary-active):hover .solution-binary-visual::after {
    opacity: 0.04;
  }

  .solution-binary-cell:not(.is-binary-active):hover .solution-binary-code {
    opacity: 0.03;
  }

  .solution-binary-stage {
    box-shadow: none;
  }

  .section-scroll-banner::before {
    filter: none;
    will-change: auto;
  }

  .section-scroll-banner__logo {
    filter: none;
  }

  .perspective-service-node,
  .nav-links,
  .scroll-top-button {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .challenge-panel,
  .challenge-panel-fragment,
  .solution-story,
  .contact-motion,
  .contact-info,
  .contact-form-card {
    will-change: auto;
  }

  .solution-heading {
    justify-items: stretch;
    gap: 18px;
    text-align: left;
  }

  .solution-heading h2 {
    max-width: 10ch;
    font-size: clamp(31px, 8.5vw, 37px);
    line-height: 1.08;
    text-align: left;
  }

  .solution-heading-visual {
    width: 100%;
    margin-top: 6px;
  }

  .solution-heading-copy {
    justify-items: start;
    max-width: 34ch;
    text-align: left;
  }

  .solution-heading-copy p {
    font-size: 14px;
    line-height: 1.72;
  }

  .solution-stories {
    gap: 78px;
  }

  .solution-story,
  .solution-story--photo-led {
    gap: 22px;
  }

  .solution-story--image-right.solution-story--photo-led .solution-visual {
    order: 1;
  }

  .solution-story--image-right.solution-story--photo-led .solution-typography {
    order: 2;
  }

  .solution-typography {
    gap: 14px;
  }

  .solution-marker {
    width: 100%;
    column-gap: 10px;
    padding-bottom: 14px;
  }

  .solution-marker .solution-mark {
    font-size: 35px;
  }

  .solution-marker strong {
    font-size: 22px;
    line-height: 1;
  }

  .solution-marker small {
    font-size: 9.5px;
    line-height: 1.4;
  }

  .solution-typography h3 {
    font-size: clamp(34px, 9.4vw, 40px);
    line-height: 1.04;
  }

  .solution-slogan {
    max-width: 28ch;
    font-size: 16px;
    line-height: 1.46;
  }

  .solution-typography p:not(.solution-slogan) {
    font-size: 14px;
    line-height: 1.72;
  }

  .solution-badges {
    gap: 6px;
  }

  .solution-badge {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 11.5px;
  }
}

@media (max-width: 370px) {
  .site-header,
  .site-header.is-scrolled {
    padding-inline: 14px;
  }

  .brand {
    width: 60px;
    height: 24px;
  }

  .nav-links {
    left: auto;
    right: 14px;
    width: min(236px, calc(100vw - 28px));
  }

  .challenge-panel {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 16px;
  }

  .challenge-statement h3 {
    font-size: 24px;
  }

  .solution-binary-cell {
    grid-template-columns: none;
    grid-template-rows: auto minmax(132px, auto);
  }

  .solution-binary-copy {
    padding-inline: 12px;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .solution-binary-cell,
  .challenge-panel {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .solution-binary-cell .solution-binary-visual::before {
    opacity: 0.5;
  }

  .solution-binary-cell .solution-binary-visual::after {
    opacity: 0.42;
  }

  .solution-binary-cell .solution-binary-code {
    opacity: 0.24;
  }
}

/* Cobalt Signal perspective object: final responsive geometry. */
@media (max-width: 720px) {
  .perspective-visual {
    justify-self: center;
    width: min(100%, 360px);
  }

  .perspective-system-object {
    min-height: clamp(420px, 118vw, 470px);
    border-radius: 18px;
  }

  .perspective-system-object::before,
  .perspective-system-object::after {
    inset: auto;
    left: 50%;
    top: 48%;
  }

  .perspective-system-object::before {
    width: 76%;
    height: 42%;
  }

  .perspective-system-object::after {
    width: 53%;
    height: 66%;
  }

  .perspective-orbit-ring {
    width: 62%;
  }

  .perspective-core {
    width: clamp(132px, 36vw, 148px);
    padding: 19px;
  }

  .perspective-core strong {
    font-size: clamp(40px, 11vw, 46px);
  }

  .perspective-core small {
    font-size: 8px;
    font-weight: 820;
    line-height: 1.25;
  }

  .perspective-core::after {
    bottom: 18px;
    width: 24px;
  }

  .perspective-service-map {
    display: block !important;
    inset: 0;
    gap: 0;
  }

  .perspective-service-node,
  .perspective-service-node:nth-child(3),
  .perspective-service-node:nth-child(4),
  .perspective-service-node:nth-child(5) {
    position: absolute;
    min-width: 80px;
    width: max-content;
    max-width: none;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 790;
    line-height: 1.2;
    transform: none;
  }

  .perspective-service-node:nth-child(1) { left: 5%; top: 24%; }
  .perspective-service-node:nth-child(2) { right: 5%; top: 21%; }
  .perspective-service-node:nth-child(3) { left: 1%; top: 50%; }
  .perspective-service-node:nth-child(4) { right: 1%; top: 51%; }
  .perspective-service-node:nth-child(5) { left: 9%; top: auto; bottom: 18%; }
  .perspective-service-node:nth-child(6) { right: 9%; bottom: 17%; }

  .perspective-service-node::before {
    width: 4px;
    height: 4px;
    margin-right: 6px;
  }

  .perspective-orbit-meta {
    left: 16px;
    right: 16px;
    bottom: 14px;
    gap: 12px;
    font-size: 7px;
  }
}

@media (max-width: 370px) {
  .perspective-system-object {
    min-height: 410px;
  }

  .perspective-core {
    width: 118px;
    padding: 16px;
  }

  .perspective-core strong {
    font-size: 36px;
  }

  .perspective-service-node,
  .perspective-service-node:nth-child(3),
  .perspective-service-node:nth-child(4),
  .perspective-service-node:nth-child(5) {
    min-width: 68px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .perspective-service-node:nth-child(3) { left: 0; }
  .perspective-service-node:nth-child(4) { right: 0; }
}

/* Expanded Cobalt Signal field for stacked perspective layouts. */
@media (max-width: 1060px) {
  .perspective-section {
    background: linear-gradient(180deg, #f6f8fb 0%, #f8faff 100%);
  }

  .perspective-section::before {
    display: none;
  }

  .perspective-visual {
    justify-self: center;
  }

  .perspective-visual::before {
    content: "";
    position: absolute;
    top: -36px;
    bottom: -36px;
    left: 50%;
    z-index: -1;
    width: 100vw;
    border-top: 1px solid rgba(0, 30, 255, 0.08);
    border-bottom: 1px solid rgba(0, 30, 255, 0.08);
    background:
      radial-gradient(circle at 50% 48%, rgba(0, 30, 255, 0.14), transparent 34%),
      linear-gradient(rgba(0, 30, 255, 0.055) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 30, 255, 0.055) 1px, transparent 1px),
      linear-gradient(155deg, #f8faff, #eef3ff);
    background-size: auto, 42px 42px, 42px 42px, auto;
    pointer-events: none;
    transform: translateX(-50%);
  }

  .perspective-system-object {
    border-radius: 0;
  }
}

@media (max-width: 720px) {
  .perspective-visual::before {
    top: -28px;
    bottom: -28px;
  }
}

/* Centered Perspective blueprint composition. */
.perspective-section {
  --perspective-split: 100%;
  padding: clamp(104px, 10vw, 150px) var(--section-gutter);
  background: linear-gradient(155deg, #ffffff 0%, #f8f8f9 100%);
  text-align: center;
}

.perspective-section::before {
  display: block;
  inset: 0;
  background:
    radial-gradient(circle at 50% 43%, rgba(0, 30, 255, 0.12), transparent 31%),
    linear-gradient(rgba(0, 30, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 30, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  opacity: 0.78;
  -webkit-mask-image: none;
  mask-image: none;
}

.perspective-layout {
  width: min(100%, 1120px);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 0;
  text-align: center;
}

.perspective-copy {
  width: 100%;
  justify-items: center;
  gap: clamp(24px, 2.8vw, 38px);
  text-align: center;
}

.perspective-copy .section-label {
  justify-self: center;
}

.perspective-copy h2 {
  max-width: 940px;
  margin-inline: auto;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.08;
  text-align: center;
}

.perspective-visual {
  justify-self: center;
  width: min(960px, 100%);
}

.perspective-visual::before {
  content: none;
}

.perspective-system-object {
  min-height: clamp(340px, 32vw, 400px);
}

.perspective-system-object::before,
.perspective-system-object::after {
  top: 50%;
}

.perspective-system-object::before {
  width: 70%;
  height: 44%;
}

.perspective-system-object::after {
  width: 42%;
  height: 72%;
}

.perspective-orbit-ring {
  top: 50%;
  width: 34%;
}

.perspective-core {
  top: 50%;
  width: clamp(164px, 16vw, 190px);
}

.perspective-service-node,
.perspective-service-node:nth-child(3),
.perspective-service-node:nth-child(4),
.perspective-service-node:nth-child(5) {
  min-width: 124px;
  max-width: none;
  padding: 11px 24px;
  font-size: 12.5px;
}

.perspective-service-node:nth-child(1) { left: 6%; top: 27%; }
.perspective-service-node:nth-child(2) { right: 6%; top: 27%; }
.perspective-service-node:nth-child(3) { left: 2%; top: 51%; }
.perspective-service-node:nth-child(4) { right: 2%; top: 51%; }
.perspective-service-node:nth-child(5) { left: 20%; top: auto; bottom: 10%; }
.perspective-service-node:nth-child(6) { right: 20%; bottom: 10%; }

.perspective-orbit-meta {
  display: none;
}

.perspective-body {
  justify-items: center;
  max-width: 780px;
  margin-inline: auto;
}

.perspective-body p {
  text-align: center;
}

.service-line {
  width: min(100%, 820px);
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

@media (max-width: 720px) {
  .perspective-section {
    padding-top: clamp(76px, 20vw, 92px);
    padding-bottom: clamp(76px, 20vw, 92px);
  }

  .perspective-copy {
    gap: 24px;
  }

  .perspective-copy h2 {
    max-width: 350px;
    font-size: clamp(26px, 7.4vw, 31px);
    line-height: 1.12;
  }

  .perspective-visual {
    width: 100%;
  }

  .perspective-system-object {
    min-height: 340px;
  }

  .perspective-system-object::before {
    width: 88%;
    height: 42%;
  }

  .perspective-system-object::after {
    width: 59%;
    height: 68%;
  }

  .perspective-orbit-ring {
    width: 54%;
  }

  .perspective-core {
    width: 126px;
    padding: 17px;
  }

  .perspective-core strong {
    font-size: 38px;
  }

  .perspective-service-node,
  .perspective-service-node:nth-child(3),
  .perspective-service-node:nth-child(4),
  .perspective-service-node:nth-child(5) {
    min-width: 78px;
    padding: 8px 10px;
    font-size: clamp(10.5px, 2.9vw, 12px);
  }

  .perspective-service-node:nth-child(1) { left: 0; top: 20%; }
  .perspective-service-node:nth-child(2) { right: 0; top: 20%; }
  .perspective-service-node:nth-child(3) { left: 0; top: 49%; }
  .perspective-service-node:nth-child(4) { right: 0; top: 49%; }
  .perspective-service-node:nth-child(5) { left: 8%; top: auto; bottom: 11%; }
  .perspective-service-node:nth-child(6) { right: 8%; bottom: 11%; }

  .perspective-body {
    max-width: 36ch;
  }

  .perspective-body p {
    font-size: 15px;
    line-height: 1.72;
  }
}

@media (max-width: 370px) {
  .perspective-visual {
    width: calc(100% + 24px);
    max-width: none;
    margin-inline: -12px;
  }

  .perspective-core {
    width: 112px;
    padding: 14px;
  }

  .perspective-core strong {
    font-size: 34px;
  }

  .perspective-service-node,
  .perspective-service-node:nth-child(3),
  .perspective-service-node:nth-child(4),
  .perspective-service-node:nth-child(5) {
    min-width: 68px;
    padding: 6px 8px;
    font-size: 10px;
  }
}
