/*
  NAVRON Pty Ltd — website concept
  Self-contained, responsive and dependency-free.
*/

:root {
  --bg: #05080f;
  --bg-elevated: #09101c;
  --bg-card: rgba(11, 19, 33, 0.76);
  --bg-card-solid: #0b1320;
  --surface: #0d1726;
  --surface-2: #111f32;
  --text: #f7fbff;
  --text-soft: #c5d4e6;
  --muted: #8292a9;
  --line: rgba(158, 191, 230, 0.14);
  --line-strong: rgba(132, 223, 255, 0.3);
  --cyan: #5ce8ff;
  --cyan-bright: #8cf1ff;
  --blue: #5f7cff;
  --violet: #a277ff;
  --green: #54f4bd;
  --danger: #ff7d93;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  --glow: 0 0 44px rgba(92, 232, 255, 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1220px;
  --header-height: 82px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 18%, rgba(61, 80, 183, 0.09), transparent 28rem),
    radial-gradient(circle at 92% 68%, rgba(0, 194, 255, 0.06), transparent 34rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #031018;
  background: var(--cyan);
}

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

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

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

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

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

button {
  color: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #05080f;
  background: var(--cyan);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

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

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  pointer-events: none;
  opacity: .11;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 214, 255, .75), rgba(83, 87, 255, .14) 42%, transparent 70%);
  filter: blur(8px);
  transform: translate3d(var(--cursor-x, -500px), var(--cursor-y, -500px), 0);
  transition: opacity .35s ease;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan-bright) 4%, #80b7ff 48%, #bd8cff 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

.section {
  position: relative;
  padding: 132px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading h2,
.outcomes-intro h2,
.robotics-copy > h2,
.global-copy > h2,
.contact-copy h2 {
  margin-bottom: 0;
  max-width: 850px;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  font-weight: 640;
  letter-spacing: -.055em;
  line-height: .99;
}

.section-heading p,
.section-lede {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: end;
  gap: 70px;
}

.split-heading p {
  margin: 0 0 4px;
}

.centered-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .section-kicker {
  justify-content: center;
}

.centered-heading p {
  max-width: 700px;
  margin: 24px auto 0;
}

.reveal {
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity .85s var(--ease),
    translate .85s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  translate: 0 0;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    transform .35s ease;
}

.site-header.scrolled {
  border-color: rgba(160, 198, 236, .12);
  background: rgba(5, 8, 15, .82);
  box-shadow: 0 16px 60px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 180px;
}

.brand-mark-wrap {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(119, 225, 255, .18);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(92, 232, 255, .09), rgba(116, 86, 255, .06));
  box-shadow: inset 0 0 20px rgba(77, 202, 255, .04);
}

.brand-mark {
  width: 23px;
  height: auto;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
}

.brand-legal {
  align-self: flex-end;
  margin: 0 0 10px -4px;
  color: var(--muted);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(20px, 2.6vw, 38px);
  padding-inline: 30px;
}

.desktop-nav a {
  position: relative;
  padding: 30px 0 26px;
  color: #aab9cb;
  font-size: .81rem;
  font-weight: 650;
  letter-spacing: .02em;
  transition: color .25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(92, 232, 255, .9);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .025em;
  line-height: 1;
  transition:
    transform .25s var(--ease),
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease,
    color .25s ease;
}

.button svg,
.inline-link svg,
.footer-top-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease);
}

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

.button:hover svg,
.inline-link:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: #041018;
  background: linear-gradient(105deg, var(--cyan-bright), #78cfff 46%, #9287ff 110%);
  box-shadow: 0 14px 38px rgba(71, 190, 255, .19), inset 0 1px 0 rgba(255, 255, 255, .65);
}

.button-primary:hover {
  box-shadow: 0 19px 48px rgba(71, 190, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .75);
}

.button-ghost {
  color: var(--text);
  border-color: rgba(143, 188, 224, .18);
  background: rgba(255, 255, 255, .035);
}

.button-ghost:hover {
  border-color: rgba(92, 232, 255, .45);
  background: rgba(92, 232, 255, .07);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 10px;
  font-size: .74rem;
}

.header-cta {
  flex: 0 0 auto;
}

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

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 940px;
  overflow: hidden;
  place-items: center;
  padding: calc(var(--header-height) + 96px) 0 112px;
  isolation: isolate;
}

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

.network-canvas {
  z-index: -4;
  width: 100%;
  height: 100%;
  opacity: .56;
}

.hero-grid {
  z-index: -3;
  opacity: .42;
  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: 74px 74px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.72) 60%, transparent 100%);
}

.hero-glow {
  z-index: -2;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-glow-one {
  top: 12%;
  right: -12%;
  left: auto;
  width: 620px;
  height: 620px;
  background: rgba(57, 82, 255, .16);
}

.hero-glow-two {
  top: 42%;
  right: 34%;
  bottom: auto;
  left: auto;
  width: 340px;
  height: 340px;
  background: rgba(0, 215, 255, .09);
}

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

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: #b8c8db;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(84, 244, 189, .08), 0 0 18px rgba(84, 244, 189, .8);
  animation: statusPulse 2.4s ease-in-out infinite;
}

.eyebrow-separator {
  color: #4e6076;
}

.hero-title {
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 8vw, 7.65rem);
  font-weight: 630;
  letter-spacing: -.078em;
  line-height: .84;
}

.hero-title span {
  display: block;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 37px;
  color: #b8c7d9;
  font-size: clamp(1.05rem, 1.7vw, 1.31rem);
  line-height: 1.72;
}

.hero-lede strong {
  color: #edf8ff;
  font-weight: 600;
}

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

.button-text {
  position: relative;
  min-height: auto;
  padding: 4px 0 7px;
  border: 0;
  border-radius: 0;
  color: #d5e2ef;
  background: transparent;
}

.button-text:hover {
  transform: none;
  color: var(--cyan-bright);
}

.button-text-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  overflow: hidden;
  background: rgba(157, 193, 224, .22);
}

.button-text-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--cyan);
  transform: translateX(-101%);
  transition: transform .35s var(--ease);
}

.button-text:hover .button-text-line::after {
  transform: translateX(0);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 25px;
  margin-top: 50px;
  color: #7f91a7;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof span::before {
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(92, 232, 255, .8);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(140, 184, 222, .15);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 36%),
    rgba(7, 13, 24, .54);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 54px;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
  border-radius: 32px 0 0;
  opacity: .7;
}

.hero-visual::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid var(--violet);
  border-bottom: 1px solid var(--violet);
  border-radius: 0 0 32px;
  opacity: .55;
}

.visual-hud {
  position: absolute;
  z-index: 8;
  right: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #71839a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.visual-hud-top {
  top: 22px;
}

.visual-hud-bottom {
  bottom: 20px;
  justify-content: flex-start;
  gap: 25px;
}

.visual-hud-bottom span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.visual-hud-bottom i {
  color: var(--cyan);
  font-style: normal;
}

.hud-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9cb3c8;
}

.hud-state i,
.pipeline-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(84,244,189,.9);
}

.orbit-stage {
  position: absolute;
  top: 55px;
  right: 20px;
  bottom: 55px;
  left: 20px;
  transform: perspective(1000px) rotateX(var(--py, 0deg)) rotateY(var(--px, 0deg));
  transform-style: preserve-3d;
  transition: transform .35s var(--ease);
}

.orbit-stage::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 290px;
  height: 290px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 178, 255, .18), rgba(83, 75, 255, .08) 35%, transparent 70%);
  filter: blur(22px);
  transform: translate(-50%, -50%);
}

.orbit-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 330px;
  overflow: hidden;
  border: 1px solid rgba(112, 222, 255, .2);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, rgba(123, 220, 255, .08), rgba(58, 79, 160, .035) 46%, transparent 67%);
  box-shadow: inset -24px -20px 60px rgba(46, 40, 135, .11), 0 0 80px rgba(69, 174, 255, .06);
  transform: translate(-50%, -50%);
  animation: globeFloat 8s ease-in-out infinite;
}

.latitude,
.longitude {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(129, 216, 255, .12);
  border-radius: 50%;
}

.latitude-one {
  width: 92%;
  height: 38%;
  transform: translate(-50%, -50%);
}

.latitude-two {
  width: 92%;
  height: 72%;
  transform: translate(-50%, -50%);
}

.longitude-one {
  width: 40%;
  height: 96%;
  transform: translate(-50%, -50%);
}

.longitude-two {
  width: 72%;
  height: 96%;
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(129, 216, 255, .14);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--rotation, 0deg));
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(92, 232, 255, .8);
}

.orbit::before {
  top: 8%;
  left: 18%;
}

.orbit::after {
  right: 10%;
  bottom: 18%;
  background: var(--violet);
  box-shadow: 0 0 16px rgba(162, 119, 255, .8);
}

.orbit-one {
  width: 430px;
  height: 300px;
  --rotation: -23deg;
  animation: orbitPulse 5s ease-in-out infinite;
}

.orbit-two {
  width: 500px;
  height: 390px;
  --rotation: 28deg;
  animation: orbitPulse 6s ease-in-out -1.5s infinite reverse;
}

.orbit-three {
  width: 360px;
  height: 485px;
  --rotation: 3deg;
  border-color: rgba(162, 119, 255, .13);
  animation: orbitPulse 7s ease-in-out -2s infinite;
}

.core-node {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 1px solid rgba(147, 226, 255, .35);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(113, 231, 255, .19), transparent 38%),
    rgba(6, 13, 25, .88);
  box-shadow: 0 0 70px rgba(58, 180, 255, .18), inset 0 0 30px rgba(103, 224, 255, .08);
  transform: translate(-50%, -50%) translateZ(38px);
}

.core-node img {
  width: 52px;
  filter: drop-shadow(0 0 16px rgba(130, 231, 255, .38));
}

.core-node > span {
  position: absolute;
  bottom: 17px;
  color: #84dff0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .17em;
}

.core-ring,
.core-pulse {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(92, 232, 255, .18);
  border-radius: 50%;
}

.core-ring {
  border-right-color: var(--cyan);
  border-left-color: var(--violet);
  animation: spin 11s linear infinite;
}

.core-pulse {
  animation: corePulse 2.8s ease-out infinite;
}

.tech-node {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 11px 7px 7px;
  border: 1px solid rgba(135, 188, 225, .18);
  border-radius: 10px;
  color: #b9c9d9;
  background: rgba(8, 15, 27, .84);
  box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.035);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .09em;
  transition: border-color .3s ease, color .3s ease, transform .3s var(--ease);
  animation: nodeFloat 5.2s ease-in-out infinite;
}

.tech-node:hover {
  z-index: 9;
  border-color: rgba(92, 232, 255, .58);
  color: #eefbff;
  transform: translateY(-3px) scale(1.03);
}

.node-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  color: var(--cyan);
  background: rgba(92, 232, 255, .07);
}

.node-icon svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-node-ai { top: 13%; left: 16%; animation-delay: -.4s; }
.tech-node-robotics { top: 21%; right: 3%; animation-delay: -1.4s; }
.tech-node-data { top: 49%; right: -1%; animation-delay: -2.6s; }
.tech-node-cloud { right: 10%; bottom: 11%; animation-delay: -.9s; }
.tech-node-security { bottom: 7%; left: 11%; animation-delay: -2s; }
.tech-node-software { top: 48%; left: 1%; animation-delay: -3.1s; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #53657b;
  font-size: .6rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i {
  position: relative;
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: rgba(134, 179, 219, .16);
}

.hero-scroll i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--cyan);
  animation: scanLine 2s ease-in-out infinite;
}

/* Signal strip */
.signal-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 14, 24, .8);
}

.signal-strip::before,
.signal-strip::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 90px;
  content: "";
  pointer-events: none;
}

.signal-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.signal-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.signal-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.signal-content {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 20px 22px;
  color: #8496aa;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.signal-content span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
}

.signal-content i {
  width: 5px;
  height: 5px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(92, 232, 255, .55);
}

/* Capabilities */
.capabilities-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 12%, rgba(84, 73, 226, .09), transparent 30rem),
    linear-gradient(180deg, #060a12, #070c15 48%, #05080f);
}

.capabilities-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 1400px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(92,232,255,.2), transparent);
  transform: translateX(-50%);
}

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

.capability-card {
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 31px 30px 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), transparent 45%),
    rgba(10, 17, 29, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition:
    transform .24s ease,
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease,
    opacity .85s var(--ease),
    translate .85s var(--ease);
}

.capability-card::before {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 240px;
  height: 240px;
  content: "";
  border-radius: 50%;
  background: rgba(77, 205, 255, .07);
  filter: blur(55px);
  opacity: 0;
  transition: opacity .35s ease;
}

.capability-card:hover {
  --lift: -7px;
  border-color: rgba(92, 232, 255, .3);
  background:
    linear-gradient(145deg, rgba(92,232,255,.055), transparent 46%),
    rgba(10, 18, 31, .9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .27), inset 0 1px 0 rgba(255,255,255,.04);
}

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

.card-number {
  position: absolute;
  top: 25px;
  right: 26px;
  color: #3d5065;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.capability-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(92, 232, 255, .17);
  border-radius: 15px;
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(92,232,255,.1), rgba(89,80,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 0 30px rgba(71, 190, 255, .05);
  transform: translateZ(26px);
}

.capability-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
  font-weight: 660;
  letter-spacing: -.025em;
  line-height: 1.25;
  transform: translateZ(18px);
}

.capability-card p {
  margin-bottom: 22px;
  color: #99aabd;
  font-size: .91rem;
  line-height: 1.72;
  transform: translateZ(12px);
}

.capability-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #c5d3e1;
  font-size: .78rem;
  font-weight: 590;
  list-style: none;
  transform: translateZ(10px);
}

.capability-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.capability-card li::before {
  width: 12px;
  height: 1px;
  content: "";
  background: var(--cyan);
  opacity: .65;
}

.card-corner {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 44px;
  height: 44px;
  border-right: 1px solid rgba(92,232,255,.35);
  border-bottom: 1px solid rgba(92,232,255,.35);
  border-radius: 0 0 var(--radius-md);
  opacity: 0;
  transition: opacity .3s ease;
}

.capability-card:hover .card-corner {
  opacity: 1;
}

/* Robotics */
.robotics-section {
  overflow: hidden;
  background: #060a12;
}

.robotics-backdrop {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(30deg, transparent 24%, rgba(111, 171, 214, .045) 25%, rgba(111, 171, 214, .045) 26%, transparent 27%, transparent 74%, rgba(111, 171, 214, .045) 75%, rgba(111, 171, 214, .045) 76%, transparent 77%),
    linear-gradient(150deg, transparent 24%, rgba(111, 171, 214, .035) 25%, rgba(111, 171, 214, .035) 26%, transparent 27%, transparent 74%, rgba(111, 171, 214, .035) 75%, rgba(111, 171, 214, .035) 76%, transparent 77%);
  background-size: 82px 142px;
  mask-image: linear-gradient(90deg, transparent, black 35%, black 75%, transparent);
}

.robotics-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(60px, 7vw, 105px);
}

.robotics-copy > h2 {
  margin-bottom: 28px;
}

.robotics-copy > .section-lede {
  max-width: 650px;
  margin-bottom: 39px;
}

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

.feature-item {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.feature-index {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(92, 232, 255, .2);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(92, 232, 255, .045);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .61rem;
  font-weight: 800;
}

.feature-item h3 {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -.015em;
}

.feature-item p {
  margin: 0;
  color: #8fa1b5;
  font-size: .86rem;
  line-height: 1.65;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: var(--cyan-bright);
  font-size: .84rem;
  font-weight: 780;
}

.robotics-visual {
  position: relative;
  overflow: hidden;
  padding: 23px;
  border: 1px solid rgba(138, 187, 225, .16);
  border-radius: 27px;
  background:
    radial-gradient(circle at 75% 5%, rgba(90, 74, 255, .11), transparent 22rem),
    rgba(8, 15, 27, .78);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.035);
}

.robotics-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .2;
  background-image:
    linear-gradient(rgba(120, 183, 229, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 183, 229, .06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.pipeline-header,
.architecture-readout,
.global-readout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px 19px;
  color: #70839a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .59rem;
  font-weight: 750;
  letter-spacing: .1em;
}

.pipeline-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9bb2c7;
}

.pipeline-flow {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: 17px 12px 17px 36px;
}

.pipeline-rail {
  position: absolute;
  z-index: -1;
  top: 32px;
  bottom: 32px;
  left: 58px;
  width: 1px;
  overflow: hidden;
  background: rgba(121, 191, 226, .14);
}

.pipeline-rail span {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(transparent, var(--cyan), transparent);
  box-shadow: 0 0 10px rgba(92,232,255,.7);
  animation: railFlow 3s linear infinite;
}

.pipeline-node {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  min-height: 78px;
  padding: 12px 16px 12px 13px;
  border: 1px solid rgba(139, 185, 222, .12);
  border-radius: 14px;
  background: rgba(10, 18, 31, .8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: border-color .25s ease, transform .25s var(--ease), background .25s ease;
}

.pipeline-node:hover {
  border-color: rgba(92, 232, 255, .34);
  background: rgba(12, 22, 38, .92);
  transform: translateX(5px);
}

.pipeline-node::before {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 8px;
  height: 8px;
  content: "";
  border: 2px solid #07101c;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 13px rgba(92, 232, 255, .75);
  transform: translateY(-50%);
}

.pipeline-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(92,232,255,.11), rgba(104,81,255,.05));
}

.pipeline-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pipeline-node strong,
.pipeline-node small {
  display: block;
}

.pipeline-node strong {
  margin-bottom: 2px;
  font-size: .91rem;
  font-weight: 650;
}

.pipeline-node small {
  color: #7f91a7;
  font-size: .72rem;
}

.node-status {
  color: #577086;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.security-band {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 15px 17px;
  border: 1px solid rgba(84, 244, 189, .16);
  border-radius: 13px;
  color: #9db4c7;
  background: rgba(84, 244, 189, .035);
  font-size: .73rem;
}

.security-band > svg {
  width: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-band strong {
  color: #d2ece5;
  font-weight: 650;
}

.security-pulse {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.security-pulse i {
  width: 3px;
  height: 13px;
  border-radius: 2px;
  background: var(--green);
  opacity: .25;
  animation: equalise 1.1s ease-in-out infinite;
}

.security-pulse i:nth-child(2) { animation-delay: -.7s; }
.security-pulse i:nth-child(3) { animation-delay: -.35s; }

/* Architecture */
.architecture-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(71, 107, 255, .08), transparent 35rem),
    #05080f;
}

.architecture-console {
  overflow: hidden;
  border: 1px solid rgba(139, 188, 226, .17);
  border-radius: 27px;
  background: rgba(8, 14, 25, .82);
  box-shadow: 0 40px 100px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.035);
}

.architecture-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.014);
}

.architecture-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 68px;
  padding: 10px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  color: #788da2;
  background: transparent;
  cursor: pointer;
  font-size: .77rem;
  font-weight: 720;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}

.architecture-tab:last-child {
  border-right: 0;
}

.architecture-tab span {
  color: #405267;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .56rem;
}

.architecture-tab:hover {
  color: #d2e1ec;
  background: rgba(92, 232, 255, .03);
}

.architecture-tab.active {
  color: var(--text);
  background: linear-gradient(180deg, rgba(92,232,255,.07), rgba(92,232,255,.015));
  box-shadow: inset 0 -2px 0 var(--cyan), inset 0 -12px 25px rgba(92,232,255,.045);
}

.architecture-tab.active span {
  color: var(--cyan);
}

.architecture-body {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  min-height: 520px;
}

.architecture-content {
  position: relative;
  padding: 70px 55px;
  border-right: 1px solid var(--line);
}

.architecture-panel {
  animation: panelIn .45s var(--ease) both;
}

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

.panel-code {
  display: block;
  margin-bottom: 25px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .6rem;
  font-weight: 750;
  letter-spacing: .11em;
}

.architecture-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 3vw, 3.15rem);
  font-weight: 630;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.architecture-panel p {
  margin-bottom: 28px;
  color: #9aacbf;
  font-size: .98rem;
  line-height: 1.75;
}

.architecture-panel ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: #c5d4e2;
  font-size: .82rem;
  list-style: none;
}

.architecture-panel li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.architecture-panel li::before {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(92,232,255,.65);
}

.architecture-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 29px 29px 20px;
  background: radial-gradient(circle at 50% 50%, rgba(60, 104, 255, .08), transparent 22rem);
}

.architecture-diagram {
  --diagram-accent: 92, 232, 255;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(125, 177, 218, .1);
  border-radius: 19px;
  background: rgba(5, 10, 18, .68);
  transition: box-shadow .35s ease;
}

.architecture-diagram[data-architecture-diagram="data"] { --diagram-accent: 100, 157, 255; }
.architecture-diagram[data-architecture-diagram="intelligence"] { --diagram-accent: 171, 119, 255; }
.architecture-diagram[data-architecture-diagram="secure"] { --diagram-accent: 84, 244, 189; }
.architecture-diagram[data-architecture-diagram="experience"] { --diagram-accent: 255, 151, 209; }

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

.diagram-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 146px;
  height: 72px;
  padding: 13px 15px;
  border: 1px solid rgba(var(--diagram-accent), .42);
  border-radius: 15px;
  background: rgba(7, 14, 24, .93);
  box-shadow: 0 0 45px rgba(var(--diagram-accent), .14), inset 0 0 22px rgba(var(--diagram-accent), .04);
  transform: translate(-50%, -50%);
}

.diagram-core img {
  width: 31px;
}

.diagram-core span {
  color: #d8e8f2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.35;
}

.diagram-node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(131, 183, 221, .15);
  border-radius: 9px;
  color: #8296a9;
  background: rgba(8, 16, 27, .9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .51rem;
  font-weight: 800;
  letter-spacing: .08em;
  animation: diagramNode 4.5s ease-in-out infinite;
}

.diagram-node i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(var(--diagram-accent));
  box-shadow: 0 0 10px rgba(var(--diagram-accent), .8);
}

.diagram-node-1 { top: 15%; left: 9%; }
.diagram-node-2 { top: 8%; left: 50%; transform: translateX(-50%); animation-delay: -.6s; }
.diagram-node-3 { top: 15%; right: 8%; animation-delay: -1.2s; }
.diagram-node-4 { bottom: 15%; left: 8%; animation-delay: -2s; }
.diagram-node-5 { bottom: 8%; left: 50%; transform: translateX(-50%); animation-delay: -2.8s; }
.diagram-node-6 { right: 8%; bottom: 15%; animation-delay: -3.5s; }

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

.diagram-lines path {
  fill: none;
  stroke: rgba(var(--diagram-accent), .22);
  stroke-width: 1;
  stroke-dasharray: 5 8;
  animation: dashFlow 13s linear infinite;
}

.diagram-scan {
  position: absolute;
  z-index: 5;
  top: -18%;
  right: 0;
  left: 0;
  height: 18%;
  pointer-events: none;
  opacity: .26;
  background: linear-gradient(transparent, rgba(var(--diagram-accent), .18), rgba(var(--diagram-accent), .4), transparent);
  animation: diagramScan 5.5s linear infinite;
}

.architecture-readout {
  padding: 16px 4px 0;
}

.architecture-readout span {
  display: flex;
  gap: 8px;
}

.architecture-readout strong {
  color: #a3b8c9;
  font-weight: 700;
}

/* Outcomes */
.outcomes-section {
  padding-top: 72px;
  background: #05080f;
}

.outcomes-intro {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 57px;
}

.outcomes-intro .section-kicker {
  margin-bottom: 5px;
}

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

.outcome-card {
  min-height: 288px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  transition: background .3s ease;
}

.outcome-card:last-child {
  border-right: 0;
}

.outcome-card:hover {
  background: linear-gradient(180deg, rgba(92,232,255,.04), transparent);
}

.outcome-symbol {
  display: block;
  min-height: 72px;
  color: var(--cyan);
  font-size: 2.65rem;
  font-weight: 280;
  line-height: 1;
  text-shadow: 0 0 28px rgba(92, 232, 255, .27);
}

.outcome-card h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -.02em;
}

.outcome-card p {
  margin: 0;
  color: #8fa1b5;
  font-size: .86rem;
  line-height: 1.7;
}

/* Approach */
.approach-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 50%, rgba(81, 68, 208, .08), transparent 34rem),
    #070b13;
}

.approach-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - min(calc(100% - 48px), var(--container)) / 2 + 25px);
  width: 1px;
  background: linear-gradient(transparent, rgba(92,232,255,.12) 15%, rgba(92,232,255,.12) 85%, transparent);
}

.approach-heading {
  margin-bottom: 70px;
}

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

.process-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-marker {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(126, 181, 219, .17);
  border-radius: 50%;
  color: #7c91a5;
  background: #080e18;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .62rem;
  font-weight: 800;
  transition: border-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.process-marker::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: #1f3245;
  transition: background .3s ease, box-shadow .3s ease;
  transform: translateX(-35px);
}

.process-step:hover .process-marker {
  border-color: rgba(92,232,255,.45);
  color: var(--cyan);
  box-shadow: 0 0 28px rgba(92,232,255,.08);
}

.process-step:hover .process-marker::after {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(92,232,255,.8);
}

.process-content {
  display: grid;
  grid-template-columns: minmax(140px, .36fr) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.process-content h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 620;
  letter-spacing: -.03em;
}

.process-content p {
  max-width: 650px;
  margin: 0;
  color: #8ea0b4;
  font-size: .88rem;
  line-height: 1.7;
}

.process-tag {
  padding: 6px 9px;
  border: 1px solid rgba(126, 181, 219, .12);
  border-radius: 7px;
  color: #52677c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .51rem;
  font-weight: 800;
  letter-spacing: .1em;
}

/* Engagements */
.engagements-section {
  background: #05080f;
}

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

.engagement-card {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(9, 16, 27, .74);
  transition: transform .35s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.engagement-card:hover {
  border-color: rgba(92,232,255,.28);
  box-shadow: 0 28px 75px rgba(0,0,0,.27);
  transform: translateY(-7px);
}

.engagement-card-featured {
  background:
    radial-gradient(circle at 75% 15%, rgba(79, 97, 255, .13), transparent 18rem),
    rgba(9, 16, 27, .78);
}

.engagement-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 19px;
  color: #61758a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .51rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.engagement-visual {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  margin-bottom: 27px;
  border: 1px solid rgba(125, 177, 218, .1);
  border-radius: 15px;
  background:
    linear-gradient(rgba(119, 171, 214, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 171, 214, .045) 1px, transparent 1px),
    rgba(5, 10, 18, .72);
  background-size: 24px 24px;
}

.engagement-card h3 {
  margin-bottom: 13px;
  font-size: 1.25rem;
  font-weight: 640;
  letter-spacing: -.03em;
  line-height: 1.28;
}

.engagement-card > p {
  margin-bottom: 23px;
  color: #91a3b7;
  font-size: .87rem;
  line-height: 1.7;
}

.engagement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.engagement-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(121, 176, 216, .12);
  border-radius: 6px;
  color: #71869b;
  background: rgba(255,255,255,.015);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .51rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.engagement-visual-robotics {
  display: grid;
  place-items: center;
}

.engagement-visual-robotics > img {
  position: relative;
  z-index: 3;
  width: 53px;
  filter: drop-shadow(0 0 16px rgba(92,232,255,.24));
}

.mini-orbit,
.mini-orbit::before,
.mini-orbit::after {
  position: absolute;
  border: 1px solid rgba(92,232,255,.15);
  border-radius: 50%;
}

.mini-orbit {
  width: 150px;
  height: 150px;
  animation: spin 14s linear infinite;
}

.mini-orbit::before {
  inset: 18px -34px;
  content: "";
  transform: rotate(40deg);
}

.mini-orbit::after {
  inset: -18px 33px;
  content: "";
  border-color: rgba(162,119,255,.16);
}

.mini-orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(92,232,255,.8);
}

.mini-orbit i:nth-child(1) { top: 0; left: 50%; }
.mini-orbit i:nth-child(2) { right: 4px; bottom: 30px; background: var(--violet); }
.mini-orbit i:nth-child(3) { bottom: 17px; left: 15px; }

.mini-label {
  position: absolute;
  padding: 4px 6px;
  border: 1px solid rgba(130, 184, 222, .13);
  border-radius: 5px;
  color: #637a90;
  background: rgba(8,15,25,.85);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .45rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.mini-label-a { top: 24px; left: 27px; }
.mini-label-b { top: 50%; right: 22px; }
.mini-label-c { bottom: 22px; left: 57px; }

.engagement-visual-data {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 38px 28px 30px;
}

.data-bar {
  position: relative;
  width: 34px;
  border: 1px solid rgba(92,232,255,.22);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, rgba(92,232,255,.2), rgba(92,232,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  animation: dataBars 3.2s ease-in-out infinite;
}

.data-bar::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(92,232,255,.8);
}

.bar-a { height: 56px; animation-delay: -.4s; }
.bar-b { height: 103px; animation-delay: -1.2s; }
.bar-c { height: 82px; animation-delay: -2s; }
.bar-d { height: 132px; animation-delay: -2.6s; }

.data-flow {
  position: absolute;
  right: 20px;
  bottom: 17px;
  left: 20px;
  height: 1px;
  overflow: hidden;
  background: rgba(129, 185, 222, .1);
}

.data-flow i {
  position: absolute;
  top: 0;
  width: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: dataFlow 2.4s linear infinite;
}

.engagement-visual-software {
  display: grid;
  place-items: center;
  padding: 25px;
}

.code-window {
  position: relative;
  width: 84%;
  height: 140px;
  padding: 35px 20px 17px;
  border: 1px solid rgba(127, 182, 222, .15);
  border-radius: 10px;
  background: rgba(7, 13, 23, .88);
  box-shadow: 0 15px 35px rgba(0,0,0,.22);
}

.code-window > i {
  position: absolute;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #405166;
}

.code-window > i:nth-child(1) { left: 14px; background: #ff7890; }
.code-window > i:nth-child(2) { left: 26px; background: #ffd16b; }
.code-window > i:nth-child(3) { left: 38px; background: #69e4b0; }

.code-window > span {
  display: block;
  height: 5px;
  margin-bottom: 11px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(92,232,255,.5), rgba(96,122,255,.2));
  animation: codePulse 3s ease-in-out infinite;
}

.code-window > span:nth-of-type(1) { width: 65%; }
.code-window > span:nth-of-type(2) { width: 86%; animation-delay: -.7s; }
.code-window > span:nth-of-type(3) { width: 47%; animation-delay: -1.4s; }
.code-window > span:nth-of-type(4) { width: 73%; animation-delay: -2.1s; }

/* Global/about */
.global-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 50%, rgba(68, 113, 255, .1), transparent 32rem),
    #070b13;
}

.global-layout {
  display: grid;
  grid-template-columns: minmax(450px, 1fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.global-visual {
  position: relative;
  min-height: 630px;
}

.world-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 550px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(100, 203, 255, .21);
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 30%, rgba(107, 217, 255, .1), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(44, 70, 148, .1), rgba(4, 9, 17, .1) 62%, rgba(1,4,8,.55));
  box-shadow: inset -40px -25px 80px rgba(21, 29, 79, .2), 0 0 95px rgba(65, 150, 255, .08);
  transform: translate(-50%, -50%);
}

.world-orb::before,
.world-orb::after {
  position: absolute;
  z-index: -1;
  inset: -8%;
  content: "";
  border: 1px solid rgba(92,232,255,.08);
  border-radius: 50%;
}

.world-orb::after {
  inset: -16%;
  border-color: rgba(162,119,255,.06);
}

.world-grid {
  position: absolute;
  inset: 0;
  opacity: .48;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 53px, rgba(105,185,225,.08) 54px 55px),
    linear-gradient(90deg, transparent 49.8%, rgba(105,185,225,.09) 50%, transparent 50.2%);
}

.world-grid::before,
.world-grid::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52%;
  height: 100%;
  content: "";
  border: 1px solid rgba(105,185,225,.09);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.world-grid::after {
  width: 23%;
}

.world-contours,
.world-arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world-contours path {
  fill: rgba(90, 190, 228, .035);
  stroke: rgba(116, 203, 236, .18);
  stroke-width: 1.3;
}

.world-arcs {
  overflow: visible;
}

.world-arcs path {
  fill: none;
  stroke: rgba(92,232,255,.32);
  stroke-width: 1.5;
  stroke-dasharray: 5 7;
  animation: dashFlow 11s linear infinite;
}

.world-point {
  position: absolute;
  z-index: 4;
}

.world-point i {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(5,10,18,.8);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(92,232,255,.07), 0 0 18px rgba(92,232,255,.8);
}

.world-point b {
  position: absolute;
  top: 15px;
  left: -27px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .47rem;
  letter-spacing: .1em;
}

.point-a { right: 31%; bottom: 29%; }
.point-b { top: 29%; left: 32%; }
.point-c { top: 28%; right: 27%; }
.point-d { bottom: 43%; left: 23%; }
.point-b i, .point-c i, .point-d i { width: 6px; height: 6px; opacity: .8; }

.global-readout {
  position: absolute;
  right: 8%;
  bottom: 2%;
  left: 8%;
  padding: 15px 18px;
  border: 1px solid rgba(131, 182, 222, .12);
  border-radius: 10px;
  background: rgba(7,14,24,.78);
  backdrop-filter: blur(8px);
}

.global-readout span {
  display: flex;
  gap: 8px;
}

.global-readout strong {
  color: #a6bbcc;
}

.global-copy > h2 {
  margin-bottom: 27px;
}

.global-copy > .section-lede {
  margin-bottom: 38px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.principle {
  min-height: 175px;
  padding: 21px;
  background: rgba(8,15,26,.92);
  transition: background .25s ease;
}

.principle:hover {
  background: rgba(11,22,37,.96);
}

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

.principle h3 {
  margin-bottom: 7px;
  font-size: .96rem;
  font-weight: 650;
}

.principle p {
  margin: 0;
  color: #8396aa;
  font-size: .78rem;
  line-height: 1.6;
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 132px 0;
  background: #050910;
  isolation: isolate;
}

.contact-grid,
.contact-glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.contact-grid {
  opacity: .55;
  background-image:
    linear-gradient(rgba(119, 175, 216, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 175, 216, .055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, rgba(0,0,0,.4) 50%, black);
}

.contact-glow {
  z-index: -1;
  background:
    radial-gradient(circle at 20% 45%, rgba(72, 92, 255, .16), transparent 28rem),
    radial-gradient(circle at 85% 65%, rgba(42, 205, 255, .09), transparent 24rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(540px, 1.22fr);
  align-items: start;
  gap: clamp(60px, 8vw, 115px);
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-copy h2 {
  margin-bottom: 27px;
}

.contact-copy > p {
  max-width: 530px;
  color: #9cadbf;
  font-size: 1.04rem;
  line-height: 1.75;
}

.contact-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.contact-signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(126, 181, 219, .13);
  border-radius: 7px;
  color: #8195a8;
  background: rgba(255,255,255,.018);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .52rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-signals i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(92,232,255,.7);
}

.contact-form {
  padding: 32px;
  border: 1px solid rgba(133, 185, 224, .17);
  border-radius: 24px;
  background: rgba(8, 15, 27, .82);
  box-shadow: 0 34px 90px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: block;
  margin-bottom: 17px;
}

.field > span {
  display: block;
  margin-bottom: 8px;
  color: #b6c6d5;
  font-size: .72rem;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(132, 181, 219, .15);
  border-radius: 11px;
  outline: none;
  color: #edf7ff;
  background: rgba(4, 9, 17, .72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.015);
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.field input,
.field select {
  height: 51px;
  padding: 0 14px;
}

.field textarea {
  min-height: 142px;
  padding: 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #53677b;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7890a4 50%),
    linear-gradient(135deg, #7890a4 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 22px,
    calc(100% - 14px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(92,232,255,.55);
  background-color: rgba(6, 13, 23, .9);
  box-shadow: 0 0 0 3px rgba(92,232,255,.06), 0 0 22px rgba(92,232,255,.04);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: rgba(255, 125, 147, .65);
  box-shadow: 0 0 0 3px rgba(255, 125, 147, .06);
}

.field-error {
  display: none;
  margin-top: 6px;
  color: var(--danger);
  font-size: .67rem;
}

.field.invalid .field-error {
  display: block;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 2px;
}

.form-footer p {
  max-width: 330px;
  margin: 0;
  color: #64788d;
  font-size: .67rem;
  line-height: 1.55;
}

.form-footer .button {
  flex: 0 0 auto;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(84,244,189,.2);
  border-radius: 9px;
  color: #b8e7d8;
  background: rgba(84,244,189,.045);
  font-size: .78rem;
}

.form-status.visible {
  display: block;
  animation: panelIn .35s var(--ease) both;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #03060b;
}

.footer-top {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 45px;
  padding-top: 50px;
  padding-bottom: 45px;
}

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

.footer-top > p {
  max-width: 570px;
  margin: 0;
  color: #7d91a5;
  font-size: .82rem;
  line-height: 1.65;
}

.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9fb3c5;
  font-size: .71rem;
  font-weight: 740;
  transition: color .25s ease;
}

.footer-top-link:hover {
  color: var(--cyan);
}

.footer-top-link span {
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  border-top: 1px solid rgba(129, 177, 216, .09);
  color: #4e6175;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-bottom span:last-child {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-bottom i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

.noscript-note {
  position: fixed;
  z-index: 10000;
  right: 15px;
  bottom: 15px;
  max-width: 340px;
  padding: 12px 14px;
  border: 1px solid rgba(92,232,255,.25);
  border-radius: 9px;
  color: #cdebf3;
  background: #07101a;
  font-size: .75rem;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

/* Animations */
@keyframes statusPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.75); opacity: .58; }
}

@keyframes globeFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) rotate(0); }
  50% { transform: translate(-50%, -50%) translateY(-7px) rotate(1deg); }
}

@keyframes orbitPulse {
  0%, 100% { opacity: .62; scale: 1; }
  50% { opacity: .95; scale: 1.018; }
}

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

@keyframes corePulse {
  0% { opacity: .58; transform: scale(.78); }
  100% { opacity: 0; transform: scale(1.35); }
}

@keyframes nodeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

@keyframes scanLine {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes railFlow {
  to { top: 100%; }
}

@keyframes equalise {
  0%, 100% { height: 5px; opacity: .3; }
  50% { height: 15px; opacity: .9; }
}

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

@keyframes diagramNode {
  0%, 100% { filter: brightness(.9); }
  50% { filter: brightness(1.25); }
}

@keyframes dashFlow {
  to { stroke-dashoffset: -100; }
}

@keyframes diagramScan {
  to { top: 105%; }
}

@keyframes dataBars {
  0%, 100% { filter: brightness(.85); transform: scaleY(.96); transform-origin: bottom; }
  50% { filter: brightness(1.22); transform: scaleY(1.03); transform-origin: bottom; }
}

@keyframes dataFlow {
  from { left: -25%; }
  to { left: 100%; }
}

@keyframes codePulse {
  0%, 100% { opacity: .45; }
  50% { opacity: .95; }
}

/* Responsive */
@media (max-width: 1120px) {
  :root { --container: 1040px; }

  .desktop-nav {
    gap: 20px;
    padding-inline: 20px;
  }

  .desktop-nav a {
    font-size: .75rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
    gap: 48px;
  }

  .hero-title {
    font-size: clamp(4.1rem, 7.5vw, 6.5rem);
  }

  .hero-visual {
    min-height: 575px;
  }

  .orbit-one { width: 370px; height: 280px; }
  .orbit-two { width: 430px; height: 350px; }
  .orbit-three { width: 310px; height: 430px; }

  .capability-card {
    min-height: 425px;
    padding-inline: 25px;
  }

  .robotics-layout {
    grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr);
    gap: 55px;
  }

  .architecture-content {
    padding-inline: 40px;
  }

  .engagement-card {
    padding: 23px;
  }

  .global-layout {
    gap: 65px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr);
    gap: 60px;
  }
}

@media (max-width: 960px) {
  :root { --header-height: 74px; }

  .container {
    width: min(calc(100% - 38px), var(--container));
  }

  .section,
  .contact-section {
    padding: 105px 0;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .brand {
    flex: 1;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(137, 185, 222, .16);
    border-radius: 10px;
    background: rgba(255,255,255,.025);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: #d9e7f1;
    transition: transform .3s var(--ease), top .3s var(--ease);
  }

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

  .mobile-menu {
    position: fixed;
    z-index: 899;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow-y: auto;
    padding: 26px 20px 40px;
    border-top: 1px solid var(--line);
    background: rgba(4, 8, 15, .97);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s var(--ease);
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
    max-width: 560px;
    margin: 10px auto;
  }

  .mobile-menu nav > a:not(.button) {
    padding: 19px 4px;
    border-bottom: 1px solid var(--line);
    color: #d0deea;
    font-size: 1rem;
    font-weight: 620;
  }

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

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 80px) 0 95px;
  }

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

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

  .hero-title {
    font-size: clamp(4.4rem, 13vw, 7rem);
  }

  .hero-visual {
    width: min(100%, 650px);
    min-height: 620px;
    margin-inline: auto;
  }

  .hero-scroll {
    display: none;
  }

  .split-heading,
  .outcomes-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .split-heading p {
    max-width: 690px;
  }

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

  .robotics-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .robotics-copy {
    max-width: 760px;
  }

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

  .architecture-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(145px, 1fr));
    scrollbar-width: thin;
  }

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

  .architecture-content {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .architecture-visual {
    min-height: 515px;
  }

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

  .outcome-card:nth-child(2) {
    border-right: 0;
  }

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

  .process-content {
    grid-template-columns: minmax(120px, .3fr) minmax(0, 1fr);
  }

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

  .engagement-card:first-child {
    grid-column: 1 / -1;
  }

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

  .global-visual {
    width: min(100%, 650px);
    min-height: 610px;
    margin-inline: auto;
    order: 2;
  }

  .global-copy {
    max-width: 760px;
  }

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

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

  .contact-form {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section,
  .contact-section {
    padding: 86px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .outcomes-intro h2,
  .robotics-copy > h2,
  .global-copy > h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .section-kicker {
    font-size: .68rem;
  }

  .brand-name {
    font-size: .95rem;
  }

  .brand-legal {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 61px);
  }

  .hero-title {
    margin-bottom: 24px;
    font-size: clamp(3.8rem, 19vw, 5.7rem);
    line-height: .87;
  }

  .hero-lede {
    font-size: 1.03rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .hero-actions .button-text {
    align-self: flex-start;
  }

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

  .hero-visual {
    min-height: 500px;
    border-radius: 24px;
  }

  .visual-hud {
    right: 17px;
    left: 17px;
    font-size: .5rem;
  }

  .visual-hud-bottom {
    gap: 14px;
  }

  .orbit-stage {
    top: 48px;
    right: 5px;
    bottom: 47px;
    left: 5px;
    scale: .82;
  }

  .orbit-one { width: 330px; height: 245px; }
  .orbit-two { width: 390px; height: 320px; }
  .orbit-three { width: 290px; height: 390px; }
  .orbit-globe { width: 270px; height: 270px; }
  .core-node { width: 108px; height: 108px; }
  .core-node img { width: 43px; }

  .tech-node {
    padding-right: 8px;
    font-size: .48rem;
  }

  .node-icon {
    width: 22px;
    height: 22px;
  }

  .tech-node-ai { left: 11%; }
  .tech-node-robotics { right: 0; }
  .tech-node-data { right: -4%; }
  .tech-node-cloud { right: 5%; }
  .tech-node-security { left: 6%; }
  .tech-node-software { left: -2%; }

  .signal-content {
    gap: 32px;
    padding-block: 17px;
  }

  .capability-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

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

  .engagement-card:first-child {
    grid-column: auto;
  }

  .robotics-visual {
    padding: 16px;
  }

  .pipeline-flow {
    padding-right: 2px;
    padding-left: 24px;
  }

  .pipeline-rail {
    left: 46px;
  }

  .pipeline-node {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 11px;
  }

  .pipeline-node::before {
    left: -13px;
  }

  .pipeline-icon {
    width: 42px;
    height: 42px;
  }

  .node-status {
    display: none;
  }

  .security-band {
    align-items: flex-start;
  }

  .security-pulse {
    display: none;
  }

  .architecture-console {
    margin-inline: -4px;
    border-radius: 20px;
  }

  .architecture-content {
    min-height: 465px;
    padding: 50px 25px;
  }

  .architecture-visual {
    min-height: 430px;
    padding: 18px 14px 14px;
  }

  .architecture-diagram {
    min-height: 350px;
  }

  .diagram-core {
    width: 128px;
    height: 65px;
  }

  .diagram-node {
    padding: 7px 8px;
    font-size: .43rem;
  }

  .diagram-node-1 { top: 17%; left: 4%; }
  .diagram-node-3 { top: 17%; right: 4%; }
  .diagram-node-4 { bottom: 17%; left: 4%; }
  .diagram-node-6 { right: 4%; bottom: 17%; }

  .architecture-readout {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: .5rem;
  }

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

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

  .outcome-card:last-child {
    border-bottom: 0;
  }

  .outcome-symbol {
    min-height: 54px;
  }

  .approach-line {
    display: none;
  }

  .process-step {
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 15px;
    padding: 25px 0;
  }

  .process-marker {
    width: 45px;
    height: 45px;
  }

  .process-marker::after {
    display: none;
  }

  .process-content {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .process-content h3 {
    font-size: 1.18rem;
  }

  .process-tag {
    display: none;
  }

  .global-visual {
    min-height: 440px;
  }

  .world-orb {
    width: min(100%, 420px);
  }

  .global-readout {
    right: 0;
    bottom: -10px;
    left: 0;
  }

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

  .principle {
    min-height: 150px;
  }

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

  .contact-form {
    padding: 23px 18px;
    border-radius: 19px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-top-link {
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    min-height: 86px;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    min-height: 465px;
  }

  .orbit-stage {
    scale: .72;
  }

  .visual-hud-bottom span:nth-child(3) {
    display: none;
  }

  .architecture-content {
    min-height: 500px;
  }

  .diagram-node span {
    display: none;
  }

  .diagram-node {
    width: 20px;
    height: 20px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    translate: none;
  }

  .signal-track {
    transform: none;
  }
}
