/*
  NAVRON Pty Ltd — multi-page launch layer
  Extends the original technology-led visual system with integrated navigation,
  interior page layouts, launch-ready forms and an expanded footer.
*/

:root {
  --page-hero-min: 720px;
}

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

.content-anchor {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.page-shell {
  position: relative;
  z-index: 1;
}

/* Integrated desktop navigation */
.desktop-nav {
  gap: clamp(17px, 2vw, 31px);
}

.desktop-nav > a,
.nav-dropdown > a {
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  padding-right: 19px;
}

.nav-dropdown-toggle {
  position: absolute;
  z-index: 2;
  right: -4px;
  display: grid;
  width: 23px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  color: #74879b;
  background: transparent;
  cursor: pointer;
  transition: color .25s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--cyan);
}

.nav-dropdown-toggle svg {
  width: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease);
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% - 8px);
  left: 50%;
  display: grid;
  width: 390px;
  padding: 14px;
  border: 1px solid rgba(132, 195, 233, .18);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(92, 232, 255, .035), transparent 36%),
    rgba(6, 11, 20, .97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .035);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px) scale(.98);
  transform-origin: top center;
  transition: opacity .22s ease, transform .25s var(--ease);
}

.nav-dropdown-panel::before {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 1px solid rgba(132, 195, 233, .18);
  border-left: 1px solid rgba(132, 195, 233, .18);
  background: #07101a;
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.nav-dropdown-kicker {
  display: block;
  padding: 8px 11px 11px;
  color: #60778d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.desktop-nav .nav-dropdown-panel a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #b4c5d5;
  font-size: .75rem;
  line-height: 1.3;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.desktop-nav .nav-dropdown-panel a::after {
  display: none;
}

.desktop-nav .nav-dropdown-panel a:hover,
.desktop-nav .nav-dropdown-panel a:focus-visible {
  border-color: rgba(92, 232, 255, .13);
  color: var(--text);
  background: rgba(92, 232, 255, .045);
}

.nav-dropdown-panel a > span {
  padding-top: 2px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .56rem;
  font-weight: 800;
}

.nav-dropdown-panel strong,
.nav-dropdown-panel small {
  display: block;
}

.nav-dropdown-panel strong {
  margin-bottom: 3px;
  font-size: .76rem;
  font-weight: 680;
}

.nav-dropdown-panel small {
  color: #71869a;
  font-size: .64rem;
  line-height: 1.45;
}

.desktop-nav > a[aria-current="page"],
.nav-dropdown > a[aria-current="page"] {
  color: var(--text);
}

.desktop-nav > a[aria-current="page"]::after,
.nav-dropdown > a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Mobile navigation groups */
.mobile-menu nav {
  gap: 0;
}

.mobile-menu .mobile-main-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  color: #d5e2ec;
  font-size: 1rem;
  font-weight: 660;
}

.mobile-menu .mobile-main-link[aria-current="page"] {
  color: var(--cyan-bright);
}

.mobile-nav-group {
  border-bottom: 1px solid var(--line);
}

.mobile-nav-group > .mobile-main-link {
  border-bottom: 0;
}

.mobile-subnav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 0 0 17px;
}

.mobile-subnav a {
  padding: 10px 11px;
  border: 1px solid rgba(131, 182, 221, .11);
  border-radius: 9px;
  color: #8297aa;
  background: rgba(255, 255, 255, .018);
  font-size: .72rem;
  line-height: 1.35;
}

.mobile-subnav a:hover,
.mobile-subnav a:focus-visible {
  color: var(--text);
  border-color: rgba(92, 232, 255, .26);
  background: rgba(92, 232, 255, .04);
}

.mobile-menu .mobile-contact-button {
  margin-top: 26px;
}

/* Interior page hero */
.subpage-hero {
  position: relative;
  display: grid;
  min-height: var(--page-hero-min);
  overflow: hidden;
  place-items: center;
  padding: calc(var(--header-height) + 86px) 0 92px;
  isolation: isolate;
}

.subpage-hero .network-canvas {
  opacity: .43;
}

.page-hero-grid,
.page-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-grid {
  z-index: -3;
  opacity: .34;
  background-image:
    linear-gradient(rgba(138, 184, 222, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 184, 222, .055) 1px, transparent 1px);
  background-position: center;
  background-size: 66px 66px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, .7) 70%, transparent 100%);
}

.page-hero-glow {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 42%, rgba(74, 77, 255, .17), transparent 31rem),
    radial-gradient(circle at 18% 75%, rgba(0, 214, 255, .07), transparent 25rem);
}

.subpage-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(54px, 7vw, 98px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: #657a8e;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: #9db0c1;
  transition: color .2s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--cyan);
}

.breadcrumb svg {
  width: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-title {
  max-width: 820px;
  margin-bottom: 25px;
  font-size: clamp(3.65rem, 7vw, 7.1rem);
  font-weight: 620;
  letter-spacing: -.07em;
  line-height: .9;
}

.page-title span {
  display: block;
}

.page-intro {
  max-width: 680px;
  margin-bottom: 31px;
  color: #aebed0;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.page-intro strong {
  color: var(--text);
  font-weight: 650;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.page-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.page-hero-proof span {
  padding: 7px 10px;
  border: 1px solid rgba(132, 190, 228, .14);
  border-radius: 99px;
  color: #758a9e;
  background: rgba(255, 255, 255, .018);
  font-size: .62rem;
  font-weight: 720;
  letter-spacing: .04em;
}

.subpage-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(131, 189, 226, .17);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(70, 80, 255, .11), transparent 21rem),
    rgba(6, 12, 21, .74);
  box-shadow: 0 35px 95px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.subpage-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .7;
  background-image:
    linear-gradient(rgba(124, 173, 211, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 173, 211, .045) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle, black, transparent 78%);
}

.visual-console-head,
.visual-console-foot {
  position: absolute;
  z-index: 7;
  right: 21px;
  left: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6f8498;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .55rem;
  font-weight: 780;
  letter-spacing: .1em;
}

.visual-console-head {
  top: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(129, 180, 218, .11);
}

.visual-console-foot {
  bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(129, 180, 218, .11);
}

.visual-console-head i,
.visual-console-foot i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(84, 244, 189, .75);
}

/* Services constellation hero */
.service-constellation {
  position: absolute;
  z-index: 2;
  inset: 55px 16px 53px;
}

.constellation-core {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  border: 1px solid rgba(92, 232, 255, .46);
  border-radius: 27px;
  background: rgba(7, 14, 24, .94);
  box-shadow: 0 0 60px rgba(92, 232, 255, .17), inset 0 0 28px rgba(92, 232, 255, .05);
  transform: translate(-50%, -50%) rotate(45deg);
}

.constellation-core::after {
  position: absolute;
  inset: -17px;
  content: "";
  border: 1px dashed rgba(92, 232, 255, .21);
  border-radius: 34px;
  animation: slowSpin 18s linear infinite;
}

.constellation-core img {
  width: 45px;
  transform: rotate(-45deg);
}

.constellation-node {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 116px;
  padding: 9px 10px;
  border: 1px solid rgba(129, 183, 222, .16);
  border-radius: 10px;
  color: #9aafc1;
  background: rgba(7, 15, 25, .92);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .22);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .07em;
  animation: nodeFloat 4.6s ease-in-out infinite;
}

.constellation-node i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(92, 232, 255, .8);
}

.constellation-node:nth-of-type(2) { top: 15%; left: 7%; }
.constellation-node:nth-of-type(3) { top: 10%; right: 7%; animation-delay: -.8s; }
.constellation-node:nth-of-type(4) { top: 45%; left: 0; animation-delay: -1.5s; }
.constellation-node:nth-of-type(5) { top: 45%; right: 0; animation-delay: -2.1s; }
.constellation-node:nth-of-type(6) { bottom: 11%; left: 8%; animation-delay: -2.9s; }
.constellation-node:nth-of-type(7) { right: 8%; bottom: 12%; animation-delay: -3.7s; }

.constellation-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.constellation-lines path {
  fill: none;
  stroke: rgba(92, 232, 255, .19);
  stroke-width: 1;
  stroke-dasharray: 5 8;
  animation: dashFlow 12s linear infinite;
}

/* Solutions stack hero */
.solution-stack {
  position: absolute;
  z-index: 2;
  inset: 63px 39px 57px;
  perspective: 900px;
}

.stack-layer {
  position: absolute;
  right: 8%;
  left: 8%;
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  min-height: 66px;
  padding: 12px 15px;
  border: 1px solid rgba(128, 183, 222, .17);
  border-radius: 13px;
  color: #a4b7c8;
  background: rgba(7, 15, 25, .92);
  box-shadow: 0 17px 40px rgba(0, 0, 0, .25);
  transform: rotateX(51deg) rotateZ(-3deg);
  transform-origin: center;
}

.stack-layer:nth-child(1) { top: 2%; --layer-rgb: 255, 151, 209; }
.stack-layer:nth-child(2) { top: 19%; --layer-rgb: 171, 119, 255; }
.stack-layer:nth-child(3) { top: 36%; --layer-rgb: 92, 232, 255; }
.stack-layer:nth-child(4) { top: 53%; --layer-rgb: 100, 157, 255; }
.stack-layer:nth-child(5) { top: 70%; --layer-rgb: 84, 244, 189; }

.stack-layer::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(var(--layer-rgb), .08), transparent 54%);
}

.stack-index {
  position: relative;
  z-index: 2;
  color: rgb(var(--layer-rgb));
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .58rem;
  font-weight: 850;
}

.stack-layer strong,
.stack-layer small {
  position: relative;
  z-index: 2;
  display: block;
}

.stack-layer strong {
  font-size: .76rem;
  font-weight: 700;
}

.stack-layer small {
  color: #607589;
  font-size: .58rem;
}

.stack-state {
  position: relative;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(var(--layer-rgb));
  box-shadow: 0 0 12px rgba(var(--layer-rgb), .75);
}

.stack-beam {
  position: absolute;
  z-index: 5;
  top: 3%;
  bottom: 5%;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(92, 232, 255, .55), transparent);
  box-shadow: 0 0 17px rgba(92, 232, 255, .4);
}

.stack-beam::after {
  position: absolute;
  top: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(92, 232, 255, .9);
  animation: stackScan 4.5s ease-in-out infinite;
}

/* About identity hero */
.identity-matrix {
  position: absolute;
  z-index: 2;
  inset: 56px 24px 54px;
  display: grid;
  place-items: center;
}

.identity-rings {
  position: relative;
  width: 330px;
  height: 330px;
}

.identity-rings::before,
.identity-rings::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(92, 232, 255, .22);
  border-radius: 50%;
}

.identity-rings::before {
  animation: slowSpin 22s linear infinite;
  clip-path: polygon(0 0, 53% 0, 53% 100%, 0 100%);
}

.identity-rings::after {
  inset: 37px;
  border-color: rgba(166, 118, 255, .24);
  animation: reverseSpin 17s linear infinite;
  clip-path: polygon(47% 0, 100% 0, 100% 100%, 47% 100%);
}

.identity-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 144px;
  height: 144px;
  place-items: center;
  border: 1px solid rgba(92, 232, 255, .36);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 232, 255, .08), rgba(7, 14, 24, .94) 70%);
  box-shadow: 0 0 65px rgba(92, 232, 255, .13);
  transform: translate(-50%, -50%);
}

.identity-core img {
  width: 57px;
}

.identity-axis {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 1px;
  background: linear-gradient(transparent, transparent), linear-gradient(90deg, transparent, rgba(92, 232, 255, .22), transparent);
  transform-origin: center;
}

.identity-axis.axis-a { transform: translate(-50%, -50%) rotate(0deg); }
.identity-axis.axis-b { transform: translate(-50%, -50%) rotate(60deg); }
.identity-axis.axis-c { transform: translate(-50%, -50%) rotate(120deg); }

.identity-label {
  position: absolute;
  z-index: 5;
  padding: 7px 9px;
  border: 1px solid rgba(125, 179, 218, .16);
  border-radius: 8px;
  color: #8298ac;
  background: rgba(7, 15, 25, .9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.identity-label.label-a { top: 13%; left: 10%; }
.identity-label.label-b { top: 13%; right: 9%; }
.identity-label.label-c { bottom: 15%; left: 10%; }
.identity-label.label-d { right: 9%; bottom: 15%; }

/* Contact terminal hero */
.contact-terminal {
  position: absolute;
  z-index: 2;
  inset: 64px 33px 58px;
  padding: 22px;
  border: 1px solid rgba(130, 184, 221, .14);
  border-radius: 18px;
  background: rgba(5, 11, 19, .74);
}

.terminal-line {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(130, 184, 221, .09);
  color: #8ca0b3;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .61rem;
}

.terminal-line:last-of-type {
  border-bottom: 0;
}

.terminal-line > span:first-child {
  color: #41566b;
}

.terminal-line strong {
  color: #ccdae5;
  font-weight: 700;
}

.terminal-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #73a98f;
  font-size: .52rem;
  font-weight: 850;
  letter-spacing: .09em;
}

.terminal-state i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(84, 244, 189, .7);
}

.terminal-address {
  position: relative;
  margin-top: 24px;
  padding: 23px;
  border: 1px solid rgba(92, 232, 255, .18);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(92, 232, 255, .05), rgba(99, 78, 255, .025));
}

.terminal-address small,
.terminal-address strong,
.terminal-address span {
  display: block;
}

.terminal-address small {
  margin-bottom: 9px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.terminal-address strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 680;
}

.terminal-address span {
  color: #879cae;
  font-size: .78rem;
}

.terminal-pulse {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 13px;
  height: 13px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(92, 232, 255, .45);
}

.terminal-pulse::after {
  position: absolute;
  inset: -1px;
  content: "";
  border: 1px solid var(--cyan);
  border-radius: inherit;
  animation: terminalPulse 2.2s ease-out infinite;
}

/* Home page refinements */
.capability-card .card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 23px;
  color: var(--cyan);
  font-size: .69rem;
  font-weight: 780;
  letter-spacing: .03em;
}

.capability-card .card-action svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease);
}

.capability-card:hover .card-action svg {
  transform: translateX(4px);
}

.home-system-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(76, 79, 255, .1), transparent 34rem),
    #05080f;
}

.system-blueprint {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(132, 187, 226, .16);
  border-radius: 27px;
  background: rgba(7, 14, 24, .76);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .035);
}

.system-blueprint::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .7;
  background-image:
    linear-gradient(rgba(125, 173, 210, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 173, 210, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.blueprint-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  min-height: 460px;
}

.blueprint-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
  border-right: 1px solid var(--line);
}

.blueprint-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 630;
  letter-spacing: -.05em;
  line-height: 1.02;
}

.blueprint-copy p {
  margin-bottom: 27px;
  color: #93a7ba;
}

.blueprint-layers {
  position: relative;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 48px 50px;
}

.blueprint-layer {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 59px;
  padding: 10px 14px;
  border: 1px solid rgba(131, 184, 222, .13);
  border-radius: 11px;
  background: rgba(6, 13, 22, .88);
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
}

.blueprint-layer:hover {
  border-color: rgba(92, 232, 255, .35);
  background: rgba(92, 232, 255, .035);
  transform: translateX(-5px);
}

.blueprint-layer > span:first-child {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .56rem;
  font-weight: 850;
}

.blueprint-layer strong,
.blueprint-layer small {
  display: block;
}

.blueprint-layer strong {
  color: #d4e1eb;
  font-size: .78rem;
  font-weight: 670;
}

.blueprint-layer small {
  color: #607588;
  font-size: .62rem;
}

.blueprint-layer > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(84, 244, 189, .7);
}

/* Page jump navigation */
.page-jump-wrap {
  position: relative;
  z-index: 20;
  margin-top: -34px;
}

.page-jump {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 68px;
  padding: 9px;
  overflow-x: auto;
  border: 1px solid rgba(132, 187, 226, .17);
  border-radius: 15px;
  background: rgba(7, 13, 22, .88);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .3);
  backdrop-filter: blur(18px);
  scrollbar-width: thin;
}

.page-jump > span {
  flex: 0 0 auto;
  padding: 0 11px;
  color: #52687d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .53rem;
  font-weight: 850;
  letter-spacing: .11em;
}

.page-jump a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #8398aa;
  font-size: .68rem;
  font-weight: 720;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.page-jump a:hover,
.page-jump a:focus-visible,
.page-jump a.active {
  color: var(--text);
  border-color: rgba(92, 232, 255, .2);
  background: rgba(92, 232, 255, .045);
}

/* Detailed services */
.service-detail-section {
  position: relative;
  padding: 126px 0;
  overflow: hidden;
}

.service-detail-section:nth-of-type(even) {
  background:
    radial-gradient(circle at 7% 50%, rgba(69, 80, 225, .07), transparent 29rem),
    #070b13;
}

.service-detail-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(132, 187, 226, .12), transparent);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(60px, 8vw, 112px);
}

.service-detail-section.reverse .service-copy {
  order: 2;
}

.service-detail-section.reverse .service-visual-card {
  order: 1;
}

.service-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-label span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(92, 232, 255, .22);
  border-radius: 8px;
  background: rgba(92, 232, 255, .04);
}

.service-copy h2 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4.8vw, 4.55rem);
  font-weight: 630;
  letter-spacing: -.055em;
  line-height: .98;
}

.service-copy > p {
  max-width: 670px;
  margin-bottom: 30px;
  color: #9bafc1;
  font-size: 1.02rem;
  line-height: 1.77;
}

.service-outcomes {
  display: grid;
  gap: 10px;
  margin: 0 0 31px;
  padding: 0;
  list-style: none;
}

.service-outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #c8d6e1;
  font-size: .84rem;
}

.service-outcomes li::before {
  width: 6px;
  height: 6px;
  margin-top: .62em;
  flex: 0 0 auto;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(84, 244, 189, .64);
}

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

.deliverable {
  min-height: 102px;
  padding: 14px;
  border: 1px solid rgba(132, 184, 222, .13);
  border-radius: 11px;
  background: rgba(255, 255, 255, .018);
}

.deliverable small,
.deliverable strong {
  display: block;
}

.deliverable small {
  margin-bottom: 9px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .5rem;
  font-weight: 850;
  letter-spacing: .09em;
}

.deliverable strong {
  color: #bccbd8;
  font-size: .7rem;
  font-weight: 650;
  line-height: 1.45;
}

.service-visual-card {
  --service-rgb: 92, 232, 255;
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(var(--service-rgb), .19);
  border-radius: 25px;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--service-rgb), .09), transparent 20rem),
    rgba(7, 14, 24, .78);
  box-shadow: 0 34px 85px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .035);
}

.service-visual-card.accent-blue { --service-rgb: 100, 157, 255; }
.service-visual-card.accent-violet { --service-rgb: 171, 119, 255; }
.service-visual-card.accent-green { --service-rgb: 84, 244, 189; }
.service-visual-card.accent-pink { --service-rgb: 255, 151, 209; }

.service-visual-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .62;
  background-image:
    linear-gradient(rgba(129, 176, 213, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 176, 213, .05) 1px, transparent 1px);
  background-size: 29px 29px;
  mask-image: radial-gradient(circle, black, transparent 78%);
}

.service-map {
  position: absolute;
  z-index: 2;
  inset: 48px 27px 43px;
}

.service-map-hub {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  width: 138px;
  height: 86px;
  padding: 14px;
  place-items: center;
  border: 1px solid rgba(var(--service-rgb), .43);
  border-radius: 16px;
  color: #d6e3ec;
  background: rgba(7, 14, 24, .94);
  box-shadow: 0 0 48px rgba(var(--service-rgb), .15);
  transform: translate(-50%, -50%);
  text-align: center;
}

.service-map-hub img {
  width: 28px;
  margin-bottom: 4px;
}

.service-map-hub span {
  color: rgb(var(--service-rgb));
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .53rem;
  font-weight: 850;
  letter-spacing: .09em;
}

.service-map-node {
  position: absolute;
  z-index: 4;
  min-width: 105px;
  padding: 9px 10px;
  border: 1px solid rgba(133, 183, 220, .14);
  border-radius: 9px;
  color: #8499ac;
  background: rgba(7, 15, 25, .92);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .49rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  animation: diagramNode 4.5s ease-in-out infinite;
}

.service-map-node.node-a { top: 5%; left: 5%; }
.service-map-node.node-b { top: 5%; right: 5%; animation-delay: -.9s; }
.service-map-node.node-c { bottom: 5%; left: 5%; animation-delay: -1.8s; }
.service-map-node.node-d { right: 5%; bottom: 5%; animation-delay: -2.7s; }

.service-map-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-map-lines path {
  fill: none;
  stroke: rgba(var(--service-rgb), .25);
  stroke-width: 1;
  stroke-dasharray: 5 7;
  animation: dashFlow 10s linear infinite;
}

.service-map-scan {
  position: absolute;
  z-index: 6;
  top: -20%;
  right: 0;
  left: 0;
  height: 18%;
  opacity: .28;
  background: linear-gradient(transparent, rgba(var(--service-rgb), .35), transparent);
  animation: diagramScan 5s linear infinite;
}

.engagement-models {
  background: #070b13;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.model-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(132, 185, 222, .14);
  border-radius: 18px;
  background: rgba(10, 18, 31, .72);
  transition: transform .3s var(--ease), border-color .3s ease, background .3s ease;
}

.model-card:hover {
  border-color: rgba(92, 232, 255, .29);
  background: rgba(92, 232, 255, .03);
  transform: translateY(-5px);
}

.model-card > span {
  display: block;
  margin-bottom: 53px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.model-card h3 {
  margin-bottom: 13px;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -.03em;
}

.model-card p {
  margin: 0;
  color: #899db0;
  font-size: .84rem;
}

.model-card::after {
  position: absolute;
  right: -45px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  content: "";
  border: 1px solid rgba(92, 232, 255, .13);
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(92, 232, 255, .06);
}

/* Solutions page */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(132, 185, 222, .15);
  border-radius: 23px;
  background:
    linear-gradient(145deg, rgba(92, 232, 255, .035), transparent 45%),
    rgba(8, 15, 26, .78);
  box-shadow: 0 30px 75px rgba(0, 0, 0, .25);
}

.audience-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(166, 118, 255, .045), transparent 45%),
    rgba(8, 15, 26, .78);
}

.audience-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 88px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .11em;
}

.audience-index::after {
  width: 48px;
  height: 1px;
  content: "";
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.audience-card h2 {
  max-width: 500px;
  margin-bottom: 19px;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  font-weight: 630;
  letter-spacing: -.05em;
  line-height: 1;
}

.audience-card > p {
  max-width: 560px;
  margin-bottom: 30px;
  color: #93a8ba;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding: 11px 12px;
  border: 1px solid rgba(130, 182, 219, .11);
  border-radius: 9px;
  color: #a7b8c7;
  background: rgba(255, 255, 255, .018);
  font-size: .72rem;
}

.solution-principles {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 15%, rgba(72, 83, 244, .08), transparent 28rem),
    #070b13;
}

.solution-principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-principle {
  min-height: 275px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.solution-principle:last-child {
  border-right: 0;
}

.solution-principle > span {
  display: block;
  margin-bottom: 55px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .58rem;
  font-weight: 850;
}

.solution-principle h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 650;
}

.solution-principle p {
  margin: 0;
  color: #8297aa;
  font-size: .82rem;
}

/* About page */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(60px, 8vw, 105px);
  align-items: start;
}

.story-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 630;
  letter-spacing: -.055em;
  line-height: .98;
}

.story-copy > p {
  color: #9cb0c2;
  font-size: 1.06rem;
  line-height: 1.8;
}

.story-copy > p strong {
  color: var(--text);
  font-weight: 650;
}

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

.company-fact {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(132, 183, 220, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .018);
}

.company-fact small,
.company-fact strong,
.company-fact span {
  display: block;
}

.company-fact small {
  margin-bottom: 31px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .52rem;
  font-weight: 850;
  letter-spacing: .09em;
}

.company-fact strong {
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 680;
}

.company-fact span {
  color: #768b9f;
  font-size: .7rem;
}

.values-section {
  background: #070b13;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.value-card {
  min-height: 315px;
  padding: 28px;
  border: 1px solid rgba(131, 184, 221, .13);
  border-radius: 16px;
  background: rgba(10, 18, 31, .65);
}

.value-card > span {
  display: block;
  margin-bottom: 70px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .57rem;
  font-weight: 850;
}

.value-card h3 {
  margin-bottom: 13px;
  font-size: 1.2rem;
  font-weight: 650;
}

.value-card p {
  margin: 0;
  color: #8398ab;
  font-size: .82rem;
}

.office-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  overflow: hidden;
  border: 1px solid rgba(132, 186, 223, .16);
  border-radius: 25px;
  background: rgba(7, 14, 24, .78);
  box-shadow: 0 34px 85px rgba(0, 0, 0, .28);
}

.office-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  border-right: 1px solid var(--line);
}

.office-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 630;
  letter-spacing: -.05em;
  line-height: 1;
}

.office-copy p {
  color: #8fa3b6;
}

.office-address {
  margin: 20px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  color: #cbd8e2;
  font-style: normal;
  font-size: .9rem;
}

.office-address strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.office-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(68, 80, 255, .11), transparent 19rem),
    rgba(4, 10, 18, .6);
}

.office-grid {
  position: absolute;
  inset: 0;
  opacity: .65;
  background-image:
    linear-gradient(rgba(129, 177, 216, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 177, 216, .05) 1px, transparent 1px);
  background-size: 31px 31px;
  mask-image: radial-gradient(circle, black, transparent 75%);
}

.office-point {
  position: absolute;
  z-index: 3;
  top: 51%;
  left: 54%;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(92, 232, 255, .38);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(7, 14, 24, .92);
  box-shadow: 0 0 55px rgba(92, 232, 255, .16);
  transform: translate(-50%, -50%);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .5rem;
  font-weight: 850;
  letter-spacing: .08em;
}

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

.office-point::before {
  inset: -33px;
  animation: terminalPulse 2.8s ease-out infinite;
}

.office-point::after {
  inset: -75px;
  animation: terminalPulse 2.8s ease-out .7s infinite;
}

.office-route {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.office-route path {
  fill: none;
  stroke: rgba(92, 232, 255, .23);
  stroke-width: 1;
  stroke-dasharray: 6 9;
  animation: dashFlow 12s linear infinite;
}

.office-node {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  border: 1px solid rgba(131, 182, 219, .14);
  border-radius: 8px;
  color: #74899d;
  background: rgba(7, 15, 25, .89);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .48rem;
  font-weight: 800;
}

.office-node.node-au { top: 21%; left: 18%; }
.office-node.node-global { top: 20%; right: 13%; }
.office-node.node-enterprise { bottom: 20%; left: 16%; }
.office-node.node-remote { right: 13%; bottom: 19%; }

/* Contact page */
.contact-main-section {
  position: relative;
  padding: 125px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(75, 76, 255, .09), transparent 30rem),
    #070b13;
}

.contact-main-layout {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.contact-info-panel {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.contact-info-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.5vw, 4.1rem);
  font-weight: 630;
  letter-spacing: -.055em;
  line-height: .98;
}

.contact-info-panel > p {
  margin-bottom: 32px;
  color: #94a8ba;
}

.contact-route-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 25px;
}

.contact-route {
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr);
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(131, 183, 221, .13);
  border-radius: 12px;
  background: rgba(255, 255, 255, .018);
}

.contact-route > span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(92, 232, 255, .17);
  border-radius: 10px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .54rem;
  font-weight: 850;
}

.contact-route strong,
.contact-route small {
  display: block;
}

.contact-route strong {
  margin-bottom: 2px;
  color: #cbd8e2;
  font-size: .78rem;
  font-weight: 670;
}

.contact-route small {
  color: #71869a;
  font-size: .67rem;
  line-height: 1.45;
}

.contact-address-card {
  padding: 20px;
  border: 1px solid rgba(92, 232, 255, .18);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(92, 232, 255, .045), rgba(107, 79, 255, .025));
}

.contact-address-card small,
.contact-address-card strong,
.contact-address-card span {
  display: block;
}

.contact-address-card small {
  margin-bottom: 10px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .53rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.contact-address-card strong {
  margin-bottom: 3px;
  font-size: .94rem;
  font-weight: 680;
}

.contact-address-card span {
  color: #8398aa;
  font-size: .75rem;
}

.contact-main-section .contact-form {
  max-width: none;
}

.contact-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 27px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-form-head strong {
  font-size: .92rem;
  font-weight: 680;
}

.contact-form-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #759188;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .52rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.contact-form-head span::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(84, 244, 189, .65);
}

.consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  margin: 8px 0 22px;
  color: #8498aa;
  font-size: .7rem;
  line-height: 1.55;
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--cyan);
}

.consent-field.invalid {
  color: var(--danger);
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--danger);
}

.form-submit-state {
  opacity: .75;
  pointer-events: none;
}

.contact-expectations {
  background: #05080f;
}

.expectation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.expectation-card {
  min-height: 245px;
  padding: 27px;
  border: 1px solid rgba(131, 184, 221, .13);
  border-radius: 16px;
  background: rgba(10, 18, 31, .64);
}

.expectation-card > span {
  display: block;
  margin-bottom: 48px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .58rem;
  font-weight: 850;
}

.expectation-card h3 {
  margin-bottom: 12px;
  font-size: 1.13rem;
  font-weight: 650;
}

.expectation-card p {
  margin: 0;
  color: #8196a9;
  font-size: .82rem;
}

.privacy-section {
  padding-top: 86px;
  background: #070b13;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(45px, 7vw, 90px);
}

.privacy-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 630;
  letter-spacing: -.05em;
}

.privacy-copy p {
  color: #879cad;
  font-size: .86rem;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-list details {
  border: 1px solid rgba(131, 183, 221, .13);
  border-radius: 11px;
  background: rgba(255, 255, 255, .018);
}

.faq-list summary {
  padding: 16px 18px;
  color: #cbd8e2;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 650;
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: #7f94a7;
  font-size: .75rem;
}

/* Shared call to action */
.page-cta {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(92, 232, 255, .09), transparent 24rem),
    radial-gradient(circle at 78% 40%, rgba(105, 76, 255, .12), transparent 28rem),
    #05080f;
}

.page-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .4;
  background-image:
    linear-gradient(rgba(129, 177, 216, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 177, 216, .045) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: radial-gradient(circle, black, transparent 78%);
}

.page-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 55px;
  padding: 52px;
  border: 1px solid rgba(132, 187, 226, .17);
  border-radius: 24px;
  background: rgba(7, 14, 24, .72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .035);
}

.page-cta h2 {
  max-width: 780px;
  margin-bottom: 15px;
  font-size: clamp(2.35rem, 4.8vw, 4.45rem);
  font-weight: 630;
  letter-spacing: -.055em;
  line-height: .98;
}

.page-cta p {
  max-width: 670px;
  margin: 0;
  color: #8da2b5;
}

/* Expanded footer */
.site-footer {
  padding-top: 72px;
  background: #03060b;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(130px, .72fr)) minmax(215px, 1.05fr);
  gap: 38px;
  padding-bottom: 58px;
}

.footer-brand-block img {
  width: 124px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand-block p {
  max-width: 290px;
  margin: 0;
  color: #73879a;
  font-size: .76rem;
  line-height: 1.7;
}

.footer-column h2 {
  margin-bottom: 17px;
  color: #53697d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .54rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 10px;
}

.footer-column a {
  color: #889bad;
  font-size: .72rem;
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--cyan);
  transform: translateX(3px);
}

.footer-office {
  padding: 19px;
  border: 1px solid rgba(132, 183, 220, .12);
  border-radius: 13px;
  background: rgba(255, 255, 255, .018);
}

.footer-office h2 {
  margin-bottom: 13px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .53rem;
  font-weight: 850;
  letter-spacing: .11em;
}

.footer-office address {
  margin: 0 0 14px;
  color: #a6b6c4;
  font-style: normal;
  font-size: .73rem;
  line-height: 1.65;
}

.footer-office span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #687e92;
  font-size: .62rem;
}

.footer-office span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(84, 244, 189, .65);
}

.footer-bottom {
  min-height: 77px;
  border-top: 1px solid rgba(129, 177, 216, .1);
}

.footer-bottom-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  color: #64798d;
  transition: color .2s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--cyan);
}

/* 404 utility page */
.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: calc(var(--header-height) + 80px) 0 80px;
}

.error-panel {
  max-width: 780px;
  padding: 60px;
  border: 1px solid rgba(132, 187, 226, .16);
  border-radius: 26px;
  background: rgba(7, 14, 24, .76);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 20px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.error-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 630;
  letter-spacing: -.07em;
  line-height: .9;
}

.error-panel p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: #8fa4b7;
}

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

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

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes stackScan {
  0%, 100% { top: 0; opacity: .2; }
  50% { top: calc(100% - 7px); opacity: 1; }
}

@keyframes terminalPulse {
  0% { opacity: .8; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.15); }
}

/* Responsive launch layer */
@media (max-width: 1180px) {
  .desktop-nav {
    gap: 15px;
    padding-inline: 17px;
  }

  .nav-dropdown-panel {
    width: 350px;
  }

  .subpage-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .88fr);
    gap: 52px;
  }

  .footer-main {
    grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(120px, .7fr));
  }

  .footer-office {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
  }

  .footer-office h2,
  .footer-office address {
    margin: 0;
  }
}

@media (max-width: 960px) {
  :root {
    --page-hero-min: auto;
  }

  .subpage-hero {
    padding: calc(var(--header-height) + 72px) 0 102px;
  }

  .subpage-hero-layout {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .subpage-hero-copy {
    max-width: 800px;
  }

  .subpage-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .page-title {
    font-size: clamp(4rem, 12vw, 7rem);
  }

  .service-layout,
  .story-grid,
  .contact-main-layout,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .service-detail-section.reverse .service-copy,
  .service-detail-section.reverse .service-visual-card {
    order: initial;
  }

  .service-copy {
    max-width: 780px;
  }

  .service-visual-card {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .model-grid,
  .expectation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .model-card:last-child,
  .expectation-card:last-child {
    grid-column: 1 / -1;
  }

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

  .solution-principle:nth-child(2),
  .solution-principle:nth-child(4) {
    border-right: 0;
  }

  .solution-principle:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .office-panel {
    grid-template-columns: 1fr;
  }

  .office-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-info-panel {
    position: static;
    max-width: 760px;
  }

  .page-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .page-title {
    font-size: clamp(3.5rem, 16vw, 5.6rem);
  }

  .page-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero-actions .button {
    width: 100%;
  }

  .subpage-visual {
    min-height: 440px;
    border-radius: 22px;
  }

  .service-constellation,
  .identity-matrix {
    transform: scale(.86);
  }

  .solution-stack {
    inset-inline: 15px;
  }

  .contact-terminal {
    inset-inline: 17px;
    padding: 14px;
  }

  .terminal-line {
    grid-template-columns: 21px minmax(0, 1fr);
  }

  .terminal-state {
    display: none;
  }

  .page-jump-wrap {
    margin-top: -25px;
  }

  .page-jump {
    border-radius: 12px;
  }

  .service-detail-section {
    padding: 90px 0;
  }

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

  .deliverable {
    min-height: auto;
  }

  .service-visual-card {
    min-height: 390px;
  }

  .service-map {
    inset-inline: 12px;
  }

  .service-map-node {
    min-width: 80px;
    font-size: .43rem;
  }

  .audience-grid,
  .model-grid,
  .expectation-grid {
    grid-template-columns: 1fr;
  }

  .model-card:last-child,
  .expectation-card:last-child {
    grid-column: auto;
  }

  .audience-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .audience-index {
    margin-bottom: 60px;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

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

  .solution-principle,
  .solution-principle:nth-child(2),
  .solution-principle:nth-child(4) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution-principle:last-child {
    border-bottom: 0;
  }

  .solution-principle > span,
  .value-card > span {
    margin-bottom: 38px;
  }

  .value-card {
    min-height: auto;
  }

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

  .company-fact {
    min-height: 120px;
  }

  .company-fact small {
    margin-bottom: 22px;
  }

  .office-copy,
  .page-cta-inner {
    padding: 31px 24px;
  }

  .office-visual {
    min-height: 360px;
  }

  .contact-main-section {
    padding: 90px 0;
  }

  .contact-form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .privacy-section {
    padding-top: 70px;
  }

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

  .footer-brand-block,
  .footer-office {
    grid-column: 1 / -1;
  }

  .footer-office {
    display: block;
  }

  .footer-office h2,
  .footer-office address {
    margin-bottom: 13px;
  }

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

  .blueprint-copy {
    padding: 35px 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .blueprint-layers {
    padding: 30px 20px;
  }
}

@media (max-width: 520px) {
  .mobile-subnav {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    padding-bottom: 82px;
  }

  .subpage-visual {
    min-height: 410px;
  }

  .visual-console-head,
  .visual-console-foot {
    right: 14px;
    left: 14px;
  }

  .service-constellation {
    inset-inline: -24px;
    transform: scale(.76);
  }

  .identity-matrix {
    inset-inline: -25px;
    transform: scale(.75);
  }

  .stack-layer {
    right: 1%;
    left: 1%;
    grid-template-columns: 34px 1fr auto;
  }

  .stack-layer small {
    display: none;
  }

  .contact-terminal {
    inset: 58px 10px 54px;
  }

  .terminal-address {
    padding: 18px;
  }

  .service-map-node span {
    display: none;
  }

  .service-map-node {
    min-width: 19px;
    width: 19px;
    height: 19px;
    padding: 0;
    border-radius: 50%;
    background: rgb(var(--service-rgb));
    box-shadow: 0 0 13px rgba(var(--service-rgb), .6);
  }

  .service-map-hub {
    width: 122px;
    height: 78px;
  }

  .page-cta {
    padding: 78px 0;
  }

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

  .footer-brand-block,
  .footer-office {
    grid-column: auto;
  }

  .footer-column {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(129, 177, 216, .08);
  }

  .footer-bottom {
    align-items: flex-start;
    min-height: 108px;
  }

  .footer-bottom-group {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .constellation-core::after,
  .constellation-node,
  .constellation-lines path,
  .identity-rings::before,
  .identity-rings::after,
  .stack-beam::after,
  .service-map-node,
  .service-map-lines path,
  .service-map-scan,
  .terminal-pulse::after,
  .office-point::before,
  .office-point::after,
  .office-route path {
    animation: none !important;
  }
}

/* ========================================================================== 
   NAVRON public-launch extension — E-commerce, 3PL and confirmed contact data
   ========================================================================== */

/* Keep longer integrated menus usable on shorter desktop viewports. */
.nav-dropdown-panel {
  max-height: calc(100vh - var(--header-height) - 24px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(92, 232, 255, .34) rgba(255, 255, 255, .025);
  scrollbar-width: thin;
}

.nav-dropdown-panel::-webkit-scrollbar {
  width: 7px;
}

.nav-dropdown-panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .025);
}

.nav-dropdown-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(92, 232, 255, .26);
}

/* Home — seventh capability and an illustrative checkout-to-delivery flow. */
.capability-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
  min-height: 365px;
  padding: 38px;
  background:
    radial-gradient(circle at 78% 38%, rgba(255, 190, 92, .08), transparent 25rem),
    linear-gradient(145deg, rgba(92, 232, 255, .045), transparent 42%),
    rgba(10, 17, 29, .76);
}

.capability-card-wide::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(rgba(133, 187, 224, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 187, 224, .035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, transparent 28%, black 68%, transparent);
}

.capability-card-wide > * {
  position: relative;
  z-index: 2;
}

.capability-wide-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.capability-wide-copy .capability-icon {
  margin-bottom: 20px;
  color: #ffd493;
  border-color: rgba(255, 190, 92, .21);
  background: linear-gradient(145deg, rgba(255,190,92,.11), rgba(92,232,255,.035));
}

.capability-wide-copy p {
  max-width: 620px;
  margin-bottom: 18px;
}

.capability-wide-copy ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 9px 18px;
}

.capability-wide-copy li {
  align-items: flex-start;
}

.capability-wide-copy li::before {
  flex: 0 0 auto;
  margin-top: .55em;
  background: #ffc46c;
}

.commerce-mini-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  min-height: 242px;
  overflow: hidden;
  padding: 52px 22px;
  border: 1px solid rgba(255, 190, 92, .17);
  border-radius: 19px;
  background:
    radial-gradient(circle at 12% 50%, rgba(92, 232, 255, .07), transparent 14rem),
    radial-gradient(circle at 88% 50%, rgba(255, 190, 92, .08), transparent 14rem),
    rgba(4, 10, 18, .66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.commerce-mini-flow::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 7%;
  left: 7%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(92,232,255,.45), rgba(118,107,255,.35), rgba(255,190,92,.55));
  box-shadow: 0 0 14px rgba(92, 232, 255, .16);
}

.commerce-mini-flow::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(123, 178, 216, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 178, 216, .045) 1px, transparent 1px);
  background-size: 23px 23px;
  mask-image: radial-gradient(circle, black, transparent 78%);
}

.commerce-mini-node {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 17px 13px;
  border: 1px solid rgba(131, 189, 227, .19);
  border-radius: 12px;
  background: rgba(7, 14, 24, .94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255,255,255,.025);
  text-align: center;
}

.commerce-mini-node::before,
.commerce-mini-node::after {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(92, 232, 255, .7);
  transform: translateY(-50%);
}

.commerce-mini-node::before { left: -4px; }
.commerce-mini-node::after { right: -4px; }
.commerce-mini-node:first-of-type::before,
.commerce-mini-node:last-of-type::after { display: none; }

.commerce-mini-node small,
.commerce-mini-node strong,
.commerce-mini-node span {
  display: block;
}

.commerce-mini-node small {
  margin-bottom: 9px;
  color: #ffc46c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .5rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.commerce-mini-node strong {
  margin-bottom: 6px;
  color: #dce9f1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .055em;
}

.commerce-mini-node span {
  color: #6f8498;
  font-size: .59rem;
  line-height: 1.45;
}

.commerce-mini-packet {
  position: absolute;
  z-index: 4;
  top: calc(50% - 5px);
  left: 7%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: #ffc46c;
  box-shadow: 0 0 9px #ffc46c, 0 0 24px rgba(255, 190, 92, .65);
  animation: commercePacket 5.4s linear infinite;
}

@keyframes commercePacket {
  0% { left: 7%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: calc(93% - 10px); opacity: 0; }
}

/* Services — warm accent differentiates commerce while preserving the theme. */
.service-visual-card.accent-amber {
  --service-rgb: 255, 190, 92;
}

.constellation-node:nth-of-type(8) {
  bottom: -1%;
  left: calc(50% - 72px);
  animation-delay: -4.4s;
}

/* Solutions — balanced 2 × 2 pattern grid and fulfilment route. */
.page-solutions .engagement-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-solutions .engagement-card {
  min-height: 525px;
}

.engagement-visual-commerce {
  display: grid;
  padding: 27px 20px;
  place-items: center;
  background:
    linear-gradient(rgba(255, 190, 92, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 190, 92, .045) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(92,232,255,.06), transparent 14rem),
    rgba(5, 10, 18, .78);
  background-size: 24px 24px, 24px 24px, auto, auto;
}

.commerce-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 9px;
  width: 100%;
}

.commerce-route::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 4%;
  left: 4%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(92,232,255,.48), rgba(255,190,92,.52));
}

.commerce-route > span {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 74px;
  padding: 10px 6px;
  place-content: center;
  border: 1px solid rgba(129, 184, 221, .2);
  border-radius: 10px;
  background: rgba(7, 14, 24, .96);
  text-align: center;
}

.commerce-route i,
.commerce-route b {
  display: block;
  font-style: normal;
}

.commerce-route i {
  margin-bottom: 7px;
  color: #ffc46c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .47rem;
  font-weight: 850;
}

.commerce-route b {
  color: #bfd0dc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.commerce-route-packet {
  position: absolute;
  z-index: 4;
  top: calc(50% - 4px);
  left: 4%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffc46c;
  box-shadow: 0 0 8px #ffc46c, 0 0 18px rgba(255,190,92,.6);
  animation: commerceRoutePacket 4.8s linear infinite;
}

@keyframes commerceRoutePacket {
  0% { left: 4%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(96% - 8px); opacity: 0; }
}

/* Contact details across the About, Contact and footer surfaces. */
.terminal-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 15px;
  margin-top: 13px;
  padding-top: 11px;
  padding-right: 30px;
  border-top: 1px solid rgba(129, 184, 221, .1);
}

.terminal-address .terminal-contact-links a {
  color: #9eb2c2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .61rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}

.terminal-address .terminal-contact-links a:hover,
.terminal-address .terminal-contact-links a:focus-visible {
  color: var(--cyan);
}

.direct-contact-list {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.direct-contact-list a {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid rgba(131, 184, 221, .13);
  border-radius: 11px;
  background: rgba(255, 255, 255, .018);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.direct-contact-list a:hover,
.direct-contact-list a:focus-visible {
  border-color: rgba(92, 232, 255, .29);
  background: rgba(92, 232, 255, .04);
  transform: translateX(3px);
}

.direct-contact-list span {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .49rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.direct-contact-list strong {
  min-width: 0;
  color: #c8d7e2;
  font-size: .73rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.office-contact-links {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.office-contact-links a {
  display: block;
  padding: 11px 13px;
  border: 1px solid rgba(128, 182, 220, .13);
  border-radius: 9px;
  color: #a4b5c4;
  background: rgba(255, 255, 255, .018);
  font-size: .72rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.office-contact-links a:hover,
.office-contact-links a:focus-visible {
  color: var(--text);
  border-color: rgba(92, 232, 255, .27);
  background: rgba(92, 232, 255, .035);
}

.office-contact-links span {
  display: inline-block;
  min-width: 50px;
  margin-right: 8px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .48rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.footer-contact-links {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.footer-office .footer-contact-links a {
  color: #8fa4b6;
  font-size: .66rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}

.footer-office .footer-contact-links a:hover,
.footer-office .footer-contact-links a:focus-visible {
  color: var(--cyan);
}

.privacy-copy a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(92, 232, 255, .35);
  text-underline-offset: 3px;
}

/* Preserve the expanded office row between desktop and tablet breakpoints. */
@media (max-width: 1180px) and (min-width: 761px) {
  .footer-office {
    grid-template-columns: auto minmax(165px, .9fr) minmax(245px, 1.2fr) auto;
    gap: 20px;
  }

  .footer-contact-links {
    margin: 0;
  }
}

@media (max-width: 960px) {
  .capability-card-wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .capability-wide-copy {
    max-width: 760px;
  }

  .page-solutions .engagement-card {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .capability-card-wide {
    min-height: auto;
    padding: 30px 25px;
  }

  .capability-wide-copy ul {
    grid-template-columns: 1fr;
  }

  .commerce-mini-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
    padding: 24px;
  }

  .commerce-mini-flow::before,
  .commerce-mini-packet {
    display: none;
  }

  .commerce-mini-node::before,
  .commerce-mini-node::after {
    display: none;
  }

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

  .page-solutions .engagement-card {
    min-height: auto;
  }

  .footer-contact-links {
    margin: 0 0 14px;
  }
}

@media (max-width: 520px) {
  .commerce-mini-flow {
    grid-template-columns: 1fr;
    padding: 17px;
  }

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

  .commerce-route::before,
  .commerce-route-packet {
    display: none;
  }

  .terminal-contact-links {
    display: grid;
    padding-right: 28px;
  }

  .constellation-node:nth-of-type(8) {
    bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .commerce-mini-packet,
  .commerce-route-packet {
    animation: none !important;
  }
}

/* Grid-placement correction: keep decorative absolute children out of the wide card flow. */
.capability-card-wide > .card-number {
  position: absolute;
  z-index: 3;
}

.capability-card-wide > .card-corner {
  position: absolute;
  z-index: 3;
}
