@font-face {
  font-family: "Manrope Local";
  src: url("/fonts/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Inter Local";
  src: url("/fonts/inter-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Croogla 4F";
  src:
    url("/fonts/croogla-4f.woff2") format("woff2"),
    url("/fonts/croogla-4f.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter Local";
  src: url("/fonts/inter-italic-variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --page: #eef3f7;
  --paper: #f8fbfd;
  --paper-2: #dceaf1;
  --ink: #061c2c;
  --muted: #5b6f7c;
  --line: rgba(6, 28, 44, 0.13);
  --dark: #001f33;
  --dark-2: #00304d;
  --dark-3: #073958;
  --dark-text: #f0f8fc;
  --dark-muted: #aec5d2;
  --accent: #00a6d9;
  --accent-bright: #54d3f1;
  --accent-soft: #bceaf6;
  --accent-ink: #007a9e;
  --orange: #ff7655;
  --shell: min(1450px, calc(100vw - 110px));
  --radius: 18px;
  --ease: cubic-bezier(0.2, 0.72, 0.22, 1);
  --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  background: var(--page);
  scroll-behavior: smooth;
  scrollbar-color: var(--accent) var(--page);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--page);
  color: var(--ink);
  font-family: "Inter Local", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: #fff;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 18px;
  left: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 4px;
}

main {
  display: grid;
  gap: 15px;
  padding: 15px 0;
  overflow: clip;
}

section {
  position: relative;
  scroll-margin-top: 94px;
}

.page-panel {
  width: calc(100% - 30px);
  margin-inline: 15px;
  overflow: hidden;
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 28px;
  left: 50%;
  width: calc(100vw - 64px);
  color: #f5fbfe;
  transform: translateX(-50%);
  transition:
    width 280ms var(--ease),
    top 280ms var(--ease),
    color 220ms ease;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 0 8px 0 14px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.scrolled {
  top: 14px;
  width: calc(100vw - 42px);
  color: var(--ink);
}

.site-header.scrolled .nav-shell {
  border-color: rgba(6, 28, 44, 0.11);
  background: rgba(248, 251, 253, 0.9);
  box-shadow: 0 16px 45px rgba(6, 28, 44, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: max-content;
  font-family: "Croogla 4F", "Manrope Local", Arial, sans-serif;
  text-transform: uppercase;
}

.brand-name {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.brand-j {
  color: rgb(206, 206, 206);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.35vw, 28px);
}

.desktop-nav a {
  min-height: 34px;
  padding: 8px 15px 7px;
  border: 1px solid rgba(237, 248, 252, 0.19);
  border-radius: 999px;
  color: currentColor;
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.045em;
  opacity: 0.82;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.site-header.scrolled .desktop-nav a {
  border-color: rgba(6, 28, 44, 0.13);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  border-color: var(--accent);
  background: rgba(0, 166, 217, 0.08);
  color: var(--accent-ink);
  opacity: 1;
}

.site-header:not(.scrolled) .desktop-nav a:hover,
.site-header:not(.scrolled) .desktop-nav a.active {
  color: var(--accent-bright);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  gap: 28px;
  padding: 0 7px 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease;
}

.button i {
  display: grid;
  flex: 0 0 36px;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-style: normal;
  transition: transform 220ms var(--ease);
}

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

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

.button-accent {
  background: var(--accent);
  color: #061c2c;
}

.button-accent:hover {
  background: var(--accent-bright);
}

.nav-action {
  justify-self: end;
  min-height: 48px;
}

.menu-toggle {
  position: relative;
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translate(-50%, calc(-50% - 4px));
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, calc(-50% + 4px));
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope Local", Arial, sans-serif;
  text-transform: uppercase;
}

.hero {
  min-height: max(720px, calc(100svh - 30px));
  background:
    radial-gradient(circle at 64% 62%, rgba(0, 166, 217, 0.23), transparent 27%),
    linear-gradient(145deg, #001b2c 0%, #002a44 56%, #003b5c 100%);
  color: var(--dark-text);
}

.hero-facets {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-facets i {
  --drift-x-a: 2.5vw;
  --drift-y-a: -2.5vh;
  --drift-r-a: 2deg;
  --drift-x-b: -1.5vw;
  --drift-y-b: 3.5vh;
  --drift-r-b: -2deg;
  --drift-x-c: 1vw;
  --drift-y-c: 1vh;
  --drift-r-c: 1deg;
  position: absolute;
  background: rgba(255, 255, 255, 0.026);
  clip-path: polygon(0 0, 100% 20%, 76% 100%, 18% 78%);
  animation: hero-facet-drift 26s cubic-bezier(0.42, 0.08, 0.58, 0.96) infinite alternate;
  will-change: translate, rotate, scale;
}

.hero-facets i:nth-child(1) {
  --drift-x-a: -2.8vw;
  --drift-y-a: 2.2vh;
  --drift-r-a: -2.5deg;
  --drift-x-b: 1.8vw;
  --drift-y-b: 4.5vh;
  --drift-r-b: 3deg;
  --drift-x-c: -1vw;
  --drift-y-c: -1.8vh;
  --drift-r-c: -1deg;
  top: -10%;
  right: -2%;
  width: 32vw;
  height: 56%;
  transform: rotate(9deg);
  animation-duration: 23s;
  animation-delay: -7s;
}

.hero-facets i:nth-child(2) {
  --drift-x-a: 3.8vw;
  --drift-y-a: 1.2vh;
  --drift-r-a: 4deg;
  --drift-x-b: -2.2vw;
  --drift-y-b: -3.4vh;
  --drift-r-b: -2deg;
  --drift-x-c: 1.5vw;
  --drift-y-c: 2.5vh;
  --drift-r-c: 2deg;
  top: 4%;
  right: 16%;
  width: 20vw;
  height: 42%;
  transform: rotate(-19deg);
  animation-duration: 27s;
  animation-delay: -15s;
  animation-direction: alternate-reverse;
}

.hero-facets i:nth-child(3) {
  --drift-x-a: 2vw;
  --drift-y-a: -4vh;
  --drift-r-a: -3deg;
  --drift-x-b: 4.2vw;
  --drift-y-b: 1.8vh;
  --drift-r-b: 2deg;
  --drift-x-c: -1.5vw;
  --drift-y-c: -2vh;
  --drift-r-c: 1deg;
  bottom: -18%;
  left: -8%;
  width: 36vw;
  height: 48%;
  transform: rotate(22deg);
  animation-duration: 31s;
  animation-delay: -12s;
}

.hero-facets i:nth-child(4) {
  --drift-x-a: -3.5vw;
  --drift-y-a: -2vh;
  --drift-r-a: 2deg;
  --drift-x-b: 1.6vw;
  --drift-y-b: -4.5vh;
  --drift-r-b: -3deg;
  --drift-x-c: 2.6vw;
  --drift-y-c: 1.2vh;
  --drift-r-c: 2deg;
  right: 2%;
  bottom: -12%;
  width: 42vw;
  height: 55%;
  transform: rotate(-8deg);
  animation-duration: 34s;
  animation-delay: -22s;
  animation-direction: alternate-reverse;
}

.hero-facets i:nth-child(5) {
  --drift-x-a: 3vw;
  --drift-y-a: 3.5vh;
  --drift-r-a: 5deg;
  --drift-x-b: -1.5vw;
  --drift-y-b: -2vh;
  --drift-r-b: -4deg;
  --drift-x-c: 1vw;
  --drift-y-c: -4vh;
  --drift-r-c: 2deg;
  top: 17%;
  left: 8%;
  width: clamp(110px, 11vw, 190px);
  aspect-ratio: 1;
  border: 1px solid rgba(84, 211, 241, 0.045);
  border-radius: 50%;
  background: transparent;
  clip-path: none;
  animation-duration: 29s;
  animation-delay: -19s;
}

.hero-facets i:nth-child(6) {
  --drift-x-a: -2.4vw;
  --drift-y-a: -3vh;
  --drift-r-a: -5deg;
  --drift-x-b: 3.6vw;
  --drift-y-b: 1.5vh;
  --drift-r-b: 4deg;
  --drift-x-c: -1vw;
  --drift-y-c: 3.5vh;
  --drift-r-c: -2deg;
  right: 36%;
  bottom: 7%;
  width: clamp(95px, 9vw, 160px);
  aspect-ratio: 1;
  background: rgba(84, 211, 241, 0.022);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  animation-duration: 25s;
  animation-delay: -5s;
  animation-direction: alternate-reverse;
}

@keyframes hero-facet-drift {
  0% {
    translate: 0 0;
    rotate: 0deg;
    scale: 1;
  }

  29% {
    translate: var(--drift-x-a) var(--drift-y-a);
    rotate: var(--drift-r-a);
    scale: 0.975;
  }

  68% {
    translate: var(--drift-x-b) var(--drift-y-b);
    rotate: var(--drift-r-b);
    scale: 1.035;
  }

  100% {
    translate: var(--drift-x-c) var(--drift-y-c);
    rotate: var(--drift-r-c);
    scale: 0.995;
  }
}

.hero-glow {
  position: absolute;
  z-index: 2;
  right: 23%;
  bottom: 8%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(0, 166, 217, 0.13);
  filter: blur(110px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: auto;
  display: flex;
  flex-direction: column;
  min-height: max(720px, calc(100svh - 30px));
  padding: 130px clamp(32px, 4vw, 68px) 0;
}

.hero-eyebrow,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--accent-bright);
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-eyebrow span,
.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.hero .hero-eyebrow {
  position: relative;
  z-index: 3;
}

.hero-heading {
  position: relative;
  z-index: 3;
  width: min(1280px, 100%);
  margin-top: auto;
  margin-bottom: clamp(34px, 5vh, 62px);
}

.hero h1 {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 22px 0 0;
  font-size: clamp(3.6rem, 5.3vw, 6.2rem);
  font-weight: 430;
  line-height: 0.94;
  letter-spacing: -0.042em;
  text-align: left;
}

.hero-line {
  display: block;
  margin-top: 8px;
  white-space: nowrap;
}

.hero-line-text {
  display: inline-block;
  white-space: nowrap;
}

.hero-bottom {
  flex: 0 0 auto;
  width: 100%;
}

.hero-kicker {
  margin-bottom: 32px;
}

.hero-kicker i {
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-kicker strong {
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: clamp(1.25rem, 1.75vw, 1.72rem);
  line-height: 1.24;
}

.hero-intro {
  position: relative;
  z-index: 3;
  max-width: 730px;
  padding-bottom: 54px;
}

.hero-intro > p {
  max-width: 690px;
  margin: 0;
  color: var(--dark-muted);
  font-size: clamp(1.13rem, 1.4vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 31px;
}

.hero-actions .button {
  min-height: 62px;
  padding: 0 9px 0 27px;
  font-size: 12px;
}

.hero-actions .button i {
  flex-basis: 44px;
  width: 44px;
  height: 44px;
}

.plain-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  gap: 16px;
  border-bottom: 1px solid rgba(238, 248, 252, 0.24);
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.plain-link span {
  color: var(--accent-bright);
}

.hero-media {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(72%, 1380px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #020d16;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 30%,
    rgba(0, 0, 0, 0.18) 44%,
    rgba(0, 0, 0, 0.72) 58%,
    #000 66%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 30%,
    rgba(0, 0, 0, 0.18) 44%,
    rgba(0, 0, 0, 0.72) 58%,
    #000 66%,
    #000 100%
  );
}

.hero-media::after {
  content: none;
}

.hero-media-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 62% center;
  transition: transform 1.4s var(--ease);
}

.hero-media:hover .hero-media-image {
  transform: scale(1.025);
}

.hero-media figcaption {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cfe5ef;
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hero-media figcaption span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-media figcaption i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px var(--accent-bright);
}

.hero-media figcaption b {
  font-size: inherit;
}

.light-section {
  padding: clamp(90px, 9vw, 140px) 0;
}

.services,
.industries {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), transparent 44%),
    var(--page);
}

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

.center-heading {
  max-width: 980px;
  margin: 0 auto clamp(58px, 7vw, 96px);
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading h2,
.split-heading h2 {
  margin-top: 24px;
  font-size: clamp(3.5rem, 6.2vw, 7rem);
  font-weight: 470;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.center-heading h2 span,
.split-heading h2 span {
  color: var(--accent);
}

.center-heading > p:last-child {
  max-width: 650px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(6, 28, 44, 0.07);
  border-radius: 15px;
  background: var(--paper);
  box-shadow: 0 15px 40px rgba(6, 28, 44, 0.035);
  transition:
    translate 320ms var(--ease),
    box-shadow 320ms ease;
}

.service-card:hover {
  z-index: 2;
  translate: 0 -7px;
  box-shadow: 0 25px 70px rgba(6, 28, 44, 0.11);
}

.service-number {
  position: relative;
  z-index: 3;
  color: var(--accent-ink);
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.service-card h3 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.service-card > div:last-child > p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.service-card-dark {
  border-color: transparent;
  background:
    radial-gradient(circle at 70% 28%, rgba(0, 166, 217, 0.26), transparent 31%),
    var(--dark);
  color: var(--dark-text);
}

.service-card-dark > div:last-child > p {
  color: var(--dark-muted);
}

.service-card-aqua {
  background: var(--accent-soft);
}

.service-card-aqua .service-number {
  color: var(--dark);
}

.service-graphic {
  position: relative;
  width: 100%;
  height: 190px;
  margin: 14px 0 25px;
}

.realtime-graphic {
  display: grid;
  place-items: center;
}

.realtime-graphic::before,
.realtime-graphic::after,
.realtime-graphic b {
  content: "";
  position: absolute;
  width: 130px;
  height: 82px;
  border: 1px solid rgba(0, 166, 217, 0.35);
  transform: skewY(-12deg);
}

.realtime-graphic::before {
  transform: translate(-28px, -20px) skewY(-12deg);
}

.realtime-graphic::after {
  transform: translate(28px, 20px) skewY(-12deg);
}

.realtime-graphic b {
  background: rgba(0, 166, 217, 0.04);
}

.realtime-graphic i {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 166, 217, 0.65);
}

.realtime-graphic i:nth-child(1) { transform: translate(-92px, -55px); }
.realtime-graphic i:nth-child(2) { transform: translate(72px, -62px); }
.realtime-graphic i:nth-child(3) { transform: translate(-68px, 51px); }
.realtime-graphic i:nth-child(4) { transform: translate(94px, 43px); }
.realtime-graphic i:nth-child(5) { transform: translate(0, -11px); }
.realtime-graphic i:nth-child(6) { transform: translate(30px, 22px); }

.simulation-graphic {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
}

.simulation-graphic span {
  width: 12%;
  border-radius: 7px 7px 0 0;
  background: rgba(0, 166, 217, 0.13);
  border: 1px solid rgba(0, 166, 217, 0.3);
}

.simulation-graphic span:nth-child(1) { height: 28%; }
.simulation-graphic span:nth-child(2) { height: 44%; }
.simulation-graphic span:nth-child(3) { height: 68%; }
.simulation-graphic span:nth-child(4) { height: 57%; }
.simulation-graphic span:nth-child(5) { height: 86%; }

.simulation-graphic b {
  position: absolute;
  top: 45%;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--accent));
  transform: rotate(-13deg);
  transform-origin: left;
}

.visualization-graphic {
  display: grid;
  place-items: center;
}

.visualization-graphic::before {
  content: "";
  width: 140px;
  height: 140px;
  border: 1px solid rgba(84, 211, 241, 0.45);
  border-radius: 50%;
  box-shadow:
    inset 0 0 40px rgba(84, 211, 241, 0.12),
    0 0 35px rgba(84, 211, 241, 0.08);
}

.visualization-graphic i {
  position: absolute;
  border: 1px solid rgba(84, 211, 241, 0.25);
  border-radius: 50%;
}

.visualization-graphic i:nth-child(1) { width: 190px; height: 82px; transform: rotate(24deg); }
.visualization-graphic i:nth-child(2) { width: 190px; height: 82px; transform: rotate(-24deg); }
.visualization-graphic i:nth-child(3) { width: 72px; height: 170px; }

.visualization-graphic b {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 18px var(--accent-bright);
}

.twin-graphic {
  display: grid;
  place-items: center;
}

.twin-graphic > span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.twin-graphic::before,
.twin-graphic::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 31, 51, 0.22);
  border-radius: 50%;
}

.twin-graphic::before {
  width: 154px;
  height: 154px;
}

.twin-graphic::after {
  width: 210px;
  height: 112px;
}

.twin-graphic i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dark);
}

.twin-graphic i:nth-of-type(1) { transform: translate(-94px, -39px); }
.twin-graphic i:nth-of-type(2) { transform: translate(96px, -34px); }
.twin-graphic i:nth-of-type(3) { transform: translate(-72px, 62px); }
.twin-graphic i:nth-of-type(4) { transform: translate(79px, 58px); }

.products {
  min-height: 850px;
  padding: clamp(70px, 7vw, 108px) clamp(30px, 4vw, 68px);
  background:
    radial-gradient(circle at 73% 42%, rgba(0, 166, 217, 0.16), transparent 31%),
    var(--dark);
  color: var(--dark-text);
}

.product-pattern,
.work-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(128deg, transparent 0 13px, rgba(255, 255, 255, 0.026) 13px 14px);
  mask-image: linear-gradient(90deg, #000, transparent 25%, transparent 80%, #000);
}

.product-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.75fr);
  gap: clamp(50px, 7vw, 120px);
  max-width: 1450px;
  margin-inline: auto;
}

.eyebrow-dark {
  color: var(--accent-bright);
}

.product-intro h2 {
  margin-top: 28px;
  font-size: clamp(3.3rem, 5.2vw, 6.1rem);
  font-weight: 460;
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.product-intro > p:not(.eyebrow) {
  max-width: 390px;
  margin: 26px 0 32px;
  color: var(--dark-muted);
  line-height: 1.7;
}

.product-showcase {
  min-width: 0;
}

.product-tabs {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 50px);
  min-height: 56px;
  margin-bottom: 18px;
}

.capability-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  color: #718c9c;
  font-family: "Manrope Local", Arial, sans-serif;
  cursor: pointer;
  transition: color 180ms ease;
}

.capability-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.capability-tab span {
  font-size: 12px;
  font-weight: 800;
}

.capability-tab b {
  font-size: 11px;
  letter-spacing: 0.06em;
}

.capability-tab:hover,
.capability-tab.active {
  color: #fff;
}

.capability-tab.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.product-visual {
  position: relative;
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(232, 245, 251, 0.08);
  border-radius: 15px;
  background:
    radial-gradient(circle at center, rgba(0, 166, 217, 0.15), transparent 42%),
    #03263b;
}

#capability-canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(173, 216, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(173, 216, 235, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.product-visual-meta {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  color: #91aabd;
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.product-visual-meta b {
  font-size: inherit;
}

.product-visual-meta i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px var(--accent-bright);
}

.product-panels {
  margin-top: 14px;
}

.capability-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.1fr) auto;
  align-items: end;
  gap: 34px;
  min-height: 210px;
  padding: 28px;
  border-radius: 15px;
  background: var(--paper);
  color: var(--ink);
}

.capability-panel > div > p {
  margin: 0 0 10px;
  color: var(--accent-ink);
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.capability-panel h3 {
  font-size: clamp(2rem, 3.1vw, 3.7rem);
  font-weight: 520;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.capability-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.63;
}

.capability-panel > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.capability-panel > a span {
  color: var(--accent-ink);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.45fr);
  align-items: end;
  gap: 70px;
  margin-bottom: clamp(56px, 7vw, 90px);
}

.split-heading h2 {
  margin-top: 24px;
}

.split-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.industry-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 310px);
  gap: 14px;
}

.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(6, 28, 44, 0.07);
  border-radius: 15px;
  background: var(--paper);
  transition:
    translate 300ms var(--ease),
    box-shadow 300ms ease;
}

.industry-card:hover {
  z-index: 2;
  translate: 0 -5px;
  box-shadow: 0 20px 55px rgba(6, 28, 44, 0.12);
}

.industry-card > span {
  position: relative;
  z-index: 3;
  color: var(--accent-ink);
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.industry-card > div:not(.industry-symbol) {
  position: relative;
  z-index: 3;
}

.industry-card h3 {
  font-size: clamp(1.55rem, 2.1vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.industry-card p {
  max-width: 390px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.56;
}

.industry-card > i {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-style: normal;
  transition: transform 240ms var(--ease);
}

.industry-card:hover > i {
  transform: translate(2px, -2px) rotate(8deg);
}

.industry-automotive {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
  justify-content: flex-end;
  color: #fff;
  background: var(--dark);
}

.industry-automotive::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 31, 51, 0.1), rgba(0, 31, 51, 0.94));
}

.industry-automotive img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 800ms var(--ease);
}

.industry-automotive:hover img {
  transform: scale(1.035);
}

.industry-automotive > span {
  position: absolute;
  top: 26px;
  left: 26px;
}

.industry-automotive h3 {
  font-size: clamp(2.7rem, 4.1vw, 5rem);
}

.industry-automotive p {
  color: #c4d9e5;
}

.industry-automotive > i {
  background: var(--accent);
  color: var(--ink);
}

.industry-manufacturing {
  grid-column: 6 / 9;
  grid-row: 1;
}

.industry-architecture {
  grid-column: 9 / 13;
  grid-row: 1;
  background: var(--dark);
  color: #fff;
}

.industry-architecture p {
  color: var(--dark-muted);
}

.industry-architecture > i {
  background: var(--accent);
  color: var(--ink);
}

.industry-training {
  grid-column: 6 / 10;
  grid-row: 2;
  background: var(--accent-soft);
}

.industry-retail {
  grid-column: 10 / 13;
  grid-row: 2;
}

.industry-symbol {
  position: absolute;
  top: 27%;
  right: 22px;
  width: 46%;
  height: 42%;
  opacity: 0.82;
}

.robot-symbol i {
  position: absolute;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  transform-origin: left;
}

.robot-symbol i:nth-child(1) { top: 62%; left: 10%; width: 65%; transform: rotate(-55deg); }
.robot-symbol i:nth-child(2) { top: 29%; left: 45%; width: 52%; transform: rotate(34deg); }
.robot-symbol i:nth-child(3) { top: 43%; left: 78%; width: 27%; transform: rotate(-18deg); }
.robot-symbol b,
.robot-symbol::before,
.robot-symbol::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 5px solid var(--accent);
  border-radius: 50%;
  background: var(--paper);
}

.robot-symbol b { top: 53%; left: 4%; }
.robot-symbol::before { top: 21%; left: 40%; }
.robot-symbol::after { top: 35%; right: 5%; }

.building-symbol {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.building-symbol i {
  flex: 1;
  border: 1px solid rgba(84, 211, 241, 0.42);
  background-image:
    linear-gradient(rgba(84, 211, 241, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 211, 241, 0.12) 1px, transparent 1px);
  background-size: 14px 14px;
}

.building-symbol i:nth-child(1) { height: 55%; }
.building-symbol i:nth-child(2) { height: 88%; }
.building-symbol i:nth-child(3) { height: 70%; }
.building-symbol i:nth-child(4) { height: 42%; }

.training-symbol {
  display: grid;
  place-items: center;
}

.training-symbol i {
  position: absolute;
  border: 1px solid rgba(0, 31, 51, 0.28);
  border-radius: 50%;
}

.training-symbol i:nth-child(1) { width: 65%; aspect-ratio: 1; }
.training-symbol i:nth-child(2) { width: 95%; aspect-ratio: 1.8; }
.training-symbol b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark);
  box-shadow: 0 0 0 15px rgba(0, 31, 51, 0.08);
}

.retail-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  perspective: 400px;
}

.retail-symbol i {
  width: 27%;
  aspect-ratio: 0.8;
  border: 1px solid rgba(0, 166, 217, 0.35);
  background: rgba(0, 166, 217, 0.05);
  transform: rotateY(-28deg);
}

.retail-symbol i:nth-child(2) {
  transform: translateY(-18px);
}

.work {
  padding: clamp(70px, 7vw, 104px) 0 72px;
  background: var(--dark);
  color: var(--dark-text);
}

.work-content {
  position: relative;
  z-index: 2;
}

.work-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1450px;
  margin: 0 auto clamp(45px, 5vw, 70px);
  padding: 0 clamp(30px, 4vw, 60px);
}

.work-heading h2 {
  margin-top: 24px;
  font-size: clamp(3.4rem, 6vw, 7rem);
  font-weight: 450;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.work-controls {
  display: flex;
  gap: 10px;
}

.work-controls button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(238, 248, 252, 0.2);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.work-controls button:hover {
  background: var(--accent);
  color: var(--ink);
}

.work-controls button:disabled {
  opacity: 0.32;
  cursor: default;
}

.work-controls button:disabled:hover {
  background: transparent;
  color: #fff;
}

.work-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.work-viewport::-webkit-scrollbar {
  display: none;
}

.work-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0 clamp(30px, 4vw, 60px) 10px;
}

.work-card {
  flex: 0 0 clamp(350px, 29vw, 505px);
  width: clamp(350px, 29vw, 505px);
  scroll-snap-align: start;
}

.work-image {
  position: relative;
  height: clamp(320px, 35vw, 485px);
  overflow: hidden;
  border-radius: 14px;
  background: #03263b;
}

.work-image > span {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(248, 251, 253, 0.9);
  color: var(--ink);
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.automotive-work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) invert(0.02) contrast(0.94);
  transition: transform 800ms var(--ease);
}

.work-card:hover .automotive-work img {
  transform: scale(1.035);
}

.training-work {
  background:
    linear-gradient(rgba(77, 139, 169, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 139, 169, 0.1) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(0, 166, 217, 0.2), transparent 55%),
    #03263b;
  background-size: 45px 45px, 45px 45px, auto, auto;
}

.training-environment {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(84, 211, 241, 0.25);
  transform: perspective(700px) rotateX(56deg) rotateZ(-7deg);
}

.training-environment::before,
.training-environment::after {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px dashed rgba(84, 211, 241, 0.35);
}

.training-environment::after {
  inset: 39%;
  background: rgba(84, 211, 241, 0.08);
}

.training-environment i {
  position: absolute;
  z-index: 2;
  width: 56px;
  height: 84px;
  border: 2px solid var(--accent-bright);
  transform: rotateZ(7deg) rotateX(-56deg);
}

.training-environment i:first-child {
  bottom: 20%;
  left: 18%;
  clip-path: polygon(38% 0, 62% 0, 68% 26%, 88% 100%, 12% 100%, 32% 26%);
}

.training-environment i:nth-child(2) {
  right: 17%;
  bottom: 18%;
  width: 130px;
  height: 95px;
  border-color: rgba(0, 166, 217, 0.75);
}

.training-environment b {
  position: absolute;
  top: 47%;
  left: 28%;
  width: 46%;
  border-top: 2px dashed var(--orange);
}

.digital-twin-work {
  background:
    radial-gradient(circle at center, rgba(0, 166, 217, 0.27), transparent 42%),
    #02243a;
}

.work-twin {
  position: absolute;
  inset: 10%;
  display: grid;
  place-items: center;
}

.work-twin > span {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid var(--accent-bright);
  border-radius: 50%;
  background: #03263b;
  color: var(--accent-bright);
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.work-twin > i {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(84, 211, 241, 0.45);
  border-radius: 50%;
}

.work-twin > i:nth-of-type(1) { transform: translate(-130px, -90px); }
.work-twin > i:nth-of-type(2) { transform: translate(135px, -84px); }
.work-twin > i:nth-of-type(3) { transform: translate(-122px, 96px); }
.work-twin > i:nth-of-type(4) { transform: translate(130px, 98px); }

.work-twin > b {
  position: absolute;
  border: 1px solid rgba(84, 211, 241, 0.19);
  border-radius: 50%;
}

.work-twin > b:nth-of-type(1) {
  width: 62%;
  aspect-ratio: 1;
}

.work-twin > b:nth-of-type(2) {
  width: 90%;
  aspect-ratio: 1.7;
}

.work-copy {
  padding: 24px 2px 0;
}

.work-copy > p:first-child {
  margin: 0 0 12px;
  color: var(--accent-bright);
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.work-copy h3 {
  max-width: 470px;
  font-size: clamp(1.65rem, 2.3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.work-copy h3 + p {
  max-width: 460px;
  margin: 15px 0 18px;
  color: var(--dark-muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.work-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: 12px;
  border-bottom: 1px solid rgba(238, 248, 252, 0.18);
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.work-copy a span {
  color: var(--accent-bright);
}

.contact {
  min-height: 720px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: #fff;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) hue-rotate(38deg) brightness(0.42);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 27, 44, 0.89), rgba(0, 27, 44, 0.58), rgba(0, 27, 44, 0.88)),
    radial-gradient(circle at center, transparent, rgba(0, 27, 44, 0.46));
}

.contact-content {
  position: relative;
  z-index: 3;
  width: min(1400px, calc(100% - 90px));
  text-align: center;
}

.contact-content .eyebrow {
  justify-content: center;
}

.contact h2 {
  margin-top: 32px;
  font-size: clamp(4rem, 7.7vw, 9rem);
  font-weight: 430;
  line-height: 0.9;
  letter-spacing: -0.066em;
}

.contact-content > p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px auto 0;
  color: #c7dce7;
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.contact-orb {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 26px;
  transition:
    transform 260ms var(--ease),
    background 200ms ease;
}

.contact-orb:hover {
  background: var(--accent-bright);
  transform: translate(3px, -3px) rotate(8deg);
}

.site-footer {
  padding: clamp(60px, 7vw, 100px) clamp(30px, 5vw, 82px) 28px;
  background:
    repeating-linear-gradient(125deg, transparent 0 15px, rgba(6, 28, 44, 0.025) 15px 16px),
    #dceaf1;
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 0.65fr 1fr;
  gap: clamp(40px, 7vw, 120px);
}

.footer-brand {
  margin-bottom: 38px;
}

.footer-lead h2 {
  max-width: 700px;
  font-size: clamp(2.7rem, 4.4vw, 5.3rem);
  font-weight: 460;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 8px;
}

.footer-column h3 {
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.footer-column a,
.footer-column span {
  color: #506978;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-column a:hover {
  color: var(--accent-ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 90px;
  padding-top: 24px;
  border-top: 1px solid rgba(6, 28, 44, 0.13);
  color: #536d7c;
  font-family: "Manrope Local", Arial, sans-serif;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.07em;
}

.footer-bottom b {
  font-weight: inherit;
}

html:not(.js-ready) .product-panels {
  display: grid;
  gap: 12px;
}

html:not(.js-ready) .mobile-nav {
  visibility: visible;
}

.js-ready [data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 30px;
  --reveal-scale: 0.985;
  --reveal-rotate: 0deg;
  opacity: 0;
  transform:
    translate3d(var(--reveal-x), var(--reveal-y), 0)
    scale(var(--reveal-scale))
    rotate(var(--reveal-rotate));
  transition:
    opacity 840ms var(--reveal-ease),
    transform 840ms var(--reveal-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.services .center-heading {
  --reveal-y: 48px;
  --reveal-scale: 0.975;
}

.service-card {
  --reveal-y: 58px;
}

.service-card:nth-child(1) {
  --reveal-delay: 50ms;
  --reveal-rotate: -0.9deg;
}

.service-card:nth-child(2) {
  --reveal-delay: 130ms;
  --reveal-y: 76px;
  --reveal-rotate: 0.8deg;
}

.service-card:nth-child(3) {
  --reveal-delay: 210ms;
  --reveal-rotate: -0.7deg;
}

.service-card:nth-child(4) {
  --reveal-delay: 290ms;
  --reveal-y: 76px;
  --reveal-rotate: 0.9deg;
}

.js-ready .service-card .service-graphic {
  opacity: 0.2;
  transform: scale(0.82) rotate(-5deg);
  transition:
    opacity 1000ms var(--reveal-ease),
    transform 1000ms var(--reveal-ease);
}

.js-ready .service-card.revealed .service-graphic {
  opacity: 1;
  transform: none;
}

.product-intro {
  --reveal-x: -54px;
  --reveal-y: 12px;
}

.product-showcase {
  --reveal-x: 64px;
  --reveal-y: 18px;
  --reveal-delay: 140ms;
}

.industries .split-heading {
  --reveal-y: 46px;
}

.industry-card:nth-child(odd) {
  --reveal-x: -46px;
  --reveal-y: 22px;
}

.industry-card:nth-child(even) {
  --reveal-x: 46px;
  --reveal-y: 22px;
}

.industry-card:nth-child(1) { --reveal-delay: 40ms; }
.industry-card:nth-child(2) { --reveal-delay: 110ms; }
.industry-card:nth-child(3) { --reveal-delay: 180ms; }
.industry-card:nth-child(4) { --reveal-delay: 250ms; }
.industry-card:nth-child(5) { --reveal-delay: 320ms; }

.work-heading {
  --reveal-y: 46px;
}

.work-card {
  --reveal-x: 48px;
  --reveal-y: 18px;
  --reveal-scale: 0.96;
}

.work-card:nth-child(1) { --reveal-delay: 70ms; }
.work-card:nth-child(2) { --reveal-delay: 140ms; }
.work-card:nth-child(3) { --reveal-delay: 210ms; }

.js-ready .product-showcase .capability-tab {
  --tab-cascade-delay: 0ms;
  opacity: 0;
  translate: 0 16px;
  transition:
    color 180ms ease,
    opacity 720ms var(--reveal-ease),
    translate 720ms var(--reveal-ease);
  transition-delay: 0ms, var(--tab-cascade-delay), var(--tab-cascade-delay);
}

.js-ready .product-showcase.revealed .capability-tab {
  opacity: 1;
  translate: 0 0;
}

.js-ready .product-showcase .capability-tab:nth-child(1) { --tab-cascade-delay: 200ms; }
.js-ready .product-showcase .capability-tab:nth-child(2) { --tab-cascade-delay: 270ms; }
.js-ready .product-showcase .capability-tab:nth-child(3) { --tab-cascade-delay: 340ms; }

.js-ready .work-card > .work-image,
.js-ready .work-card > .work-copy {
  translate: 0 20px;
  transition: translate 780ms var(--reveal-ease);
}

.js-ready .work-card.revealed > .work-image,
.js-ready .work-card.revealed > .work-copy {
  translate: 0 0;
}

.js-ready .work-card.revealed > .work-copy {
  transition-delay: 90ms;
}

.footer-grid > :nth-child(1) { --reveal-x: -40px; }
.footer-grid > :nth-child(2) { --reveal-y: 42px; --reveal-delay: 70ms; }
.footer-grid > :nth-child(3) { --reveal-y: 42px; --reveal-delay: 140ms; }
.footer-bottom { --reveal-delay: 190ms; }

.scroll-effects .hero-facets {
  translate: 0 var(--hero-facet-y, 0px);
}

.scroll-effects .hero-glow {
  translate: var(--hero-glow-x, 0px) var(--hero-glow-y, 0px);
  scale: var(--hero-glow-scale, 1);
}

.scroll-effects .hero-heading {
  translate: 0 var(--hero-title-y, 0px);
  opacity: var(--hero-title-opacity, 1);
}

.scroll-effects .hero-intro {
  translate: 0 var(--hero-copy-y, 0px);
}

.scroll-effects .hero-media {
  translate: 0 var(--hero-media-y, 0px);
  scale: var(--hero-media-scale, 1);
}

.scroll-effects .hero-media-image {
  scale: var(--hero-image-scale, 1);
}

.scroll-effects .product-pattern {
  translate: 0 var(--product-pattern-y, 0px);
}

.scroll-effects .product-visual {
  translate: 0 var(--product-visual-y, 0px);
  scale: var(--product-visual-scale, 1);
}

.scroll-effects .industry-symbol {
  translate: 0 var(--industry-symbol-y, 0px);
  rotate: var(--industry-symbol-rotate, 0deg);
}

.scroll-effects .work-pattern {
  translate: var(--work-pattern-x, 0px) 0;
}

.scroll-effects .work-card > .work-image,
.scroll-effects .work-card > .work-copy {
  opacity: var(--work-card-opacity, 1);
  scale: var(--work-card-scale, 1);
  transform-origin: 50% 0;
}

.scroll-effects .contact-backdrop {
  scale: var(--contact-image-scale, 1.07);
}

.scroll-effects .contact-content {
  translate: 0 var(--contact-content-y, 0px);
}

@media (min-width: 1021px) {
  .scroll-effects main {
    perspective: 1800px;
  }

  .scroll-effects [data-cascade-card] {
    --cascade-x: 0px;
    --cascade-y: 86px;
    --cascade-scale: 0.958;
    --cascade-rotate: 0deg;
    --cascade-opacity: 0.72;
    z-index: calc(var(--cascade-card, 1) + 1);
    margin-top: -32px;
    opacity: var(--cascade-opacity);
    box-shadow:
      0 -1px 0 rgba(255, 255, 255, 0.12),
      0 -26px 70px rgba(6, 28, 44, 0.13);
    transform:
      translate3d(var(--cascade-x), var(--cascade-y), 0)
      scale(var(--cascade-scale))
      rotate(var(--cascade-rotate));
    transform-origin: 50% 0;
  }

  .scroll-effects [data-cascade-card].cascade-settled {
    opacity: 1;
    transform: none;
  }

  .scroll-effects [data-cascade-card="1"] { --cascade-card: 1; }
  .scroll-effects [data-cascade-card="2"] { --cascade-card: 2; }
  .scroll-effects [data-cascade-card="3"] { --cascade-card: 3; }
  .scroll-effects [data-cascade-card="4"] { --cascade-card: 4; }
  .scroll-effects [data-cascade-card="5"] { --cascade-card: 5; }
  .scroll-effects [data-cascade-card="6"] { --cascade-card: 6; }
}

.js-ready .contact-content .contact-actions > * {
  opacity: 0;
  translate: 0 20px;
  transition:
    opacity 720ms var(--reveal-ease),
    translate 720ms var(--reveal-ease);
}

.js-ready .contact-content.revealed .contact-actions > * {
  opacity: 1;
  translate: 0 0;
}

.js-ready .contact-content.revealed .contact-actions > :first-child {
  transition-delay: 170ms;
}

.js-ready .contact-content.revealed .contact-actions > :last-child {
  transition-delay: 250ms;
}

.scroll-effects [data-scroll-section].section-active .hero-facets,
.scroll-effects [data-scroll-section].section-active .hero-glow,
.scroll-effects [data-scroll-section].section-active .hero-heading,
.scroll-effects [data-scroll-section].section-active .hero-media,
.scroll-effects [data-scroll-section].section-active .hero-media-image,
.scroll-effects [data-scroll-section].section-active .product-pattern,
.scroll-effects [data-scroll-section].section-active .product-visual,
.scroll-effects [data-scroll-section].section-active .industry-symbol,
.scroll-effects [data-scroll-section].section-active .work-pattern,
.scroll-effects [data-scroll-section].section-active .contact-backdrop,
.scroll-effects [data-scroll-section].section-active .contact-content {
  will-change: translate, scale, opacity;
}

@media (min-width: 1021px) {
  .scroll-effects [data-scroll-section].section-active[data-cascade-card]:not(.cascade-settled) {
    will-change: transform, opacity;
  }
}

@media (min-width: 1021px) and (min-height: 720px) {
  .product-intro {
    position: sticky;
    top: 124px;
    align-self: start;
  }
}

@media (max-width: 1260px) {
  :root {
    --shell: calc(100vw - 70px);
  }

  .site-header {
    width: calc(100vw - 60px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    padding-inline: 14px;
  }

  .hero-content {
    padding-inline: 36px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 5.7vw, 5.9rem);
  }

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

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

  .product-layout {
    gap: 55px;
  }

  .capability-panel {
    grid-template-columns: minmax(200px, 0.8fr) minmax(230px, 1fr);
  }

  .capability-panel > a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .industry-mosaic {
    grid-template-rows: repeat(2, 290px);
  }
}

@media (max-width: 1020px) {
  .desktop-nav,
  .nav-action {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: -1;
    top: -28px;
    right: -40px;
    left: -40px;
    display: grid;
    align-content: start;
    width: calc(100vw + 80px);
    height: 100svh;
    padding: 118px 58px 30px;
    overflow-y: auto;
    visibility: hidden;
    border-radius: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(0, 166, 217, 0.22), transparent 28%),
      var(--dark);
    color: #fff;
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
    overscroll-behavior: contain;
    transition:
      opacity 220ms ease,
      transform 300ms var(--ease),
      visibility 300ms;
  }

  .mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .mobile-nav > a:not(.mobile-demo) {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    min-height: 76px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: "Manrope Local", Arial, sans-serif;
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 600;
  }

  .mobile-nav > a span {
    color: var(--accent-bright);
    font-size: 9px;
  }

  .mobile-demo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    margin-top: 26px;
    padding: 0 16px 0 20px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--ink);
    font-family: "Manrope Local", Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
  }

  .mobile-demo i {
    font-style: normal;
  }

  html:not(.js-ready) .menu-toggle {
    display: none;
  }

  html:not(.js-ready) .site-header {
    position: absolute;
  }

  html:not(.js-ready) .mobile-nav {
    position: static;
    display: flex;
    width: auto;
    height: auto;
    gap: 18px;
    margin-top: 8px;
    padding: 8px 14px;
    overflow-x: auto;
    overflow-y: hidden;
    visibility: visible;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 13px;
    background: rgba(0, 31, 51, 0.96);
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  html:not(.js-ready) .mobile-nav > a:not(.mobile-demo) {
    display: block;
    flex: 0 0 auto;
    min-height: 44px;
    padding: 15px 0 10px;
    border: 0;
    font-size: 9px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  html:not(.js-ready) .mobile-nav > a span,
  html:not(.js-ready) .mobile-demo {
    display: none;
  }

  .hero {
    min-height: 850px;
  }

  .hero-content {
    min-height: 850px;
    padding-top: 126px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6.4vw, 5.25rem);
  }

  .hero-media {
    width: 76%;
  }

  .hero-media-image {
    object-position: 66% center;
  }

  .hero-intro {
    padding-bottom: 12px;
  }

  .hero-kicker {
    margin-bottom: 20px;
  }

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

  .product-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 26px;
  }

  .product-intro .eyebrow {
    grid-column: 1 / -1;
  }

  .product-intro h2 {
    margin-top: 0;
  }

  .product-intro > p:not(.eyebrow) {
    margin: 0;
  }

  .product-intro .button {
    display: none;
  }

  .industry-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 500px repeat(2, 290px);
  }

  .industry-automotive {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .industry-manufacturing {
    grid-column: 1;
    grid-row: 2;
  }

  .industry-architecture {
    grid-column: 2;
    grid-row: 2;
  }

  .industry-training {
    grid-column: 1;
    grid-row: 3;
  }

  .industry-retail {
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 36px);
    --radius: 14px;
  }

  main {
    gap: 8px;
    padding: 8px 0;
  }

  .page-panel {
    width: calc(100% - 16px);
    margin-inline: 8px;
  }

  .site-header,
  .site-header.scrolled {
    top: 16px;
    width: calc(100vw - 36px);
  }

  .site-header.scrolled .nav-shell {
    background: rgba(248, 251, 253, 0.94);
  }

  .nav-shell {
    min-height: 56px;
    padding: 0 5px 0 10px;
  }

  .brand-name {
    font-size: 18px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero,
  .hero-content {
    min-height: max(760px, calc(100svh - 16px));
  }

  .hero-content {
    padding: 104px 18px 0;
  }

  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    width: auto;
    margin-top: 30px;
    font-size: clamp(2rem, 10.2vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
  }

  .hero-heading {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 0;
    translate: none;
  }

  .hero-line {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
    white-space: normal;
  }

  .hero-line-text {
    white-space: normal;
  }

  .hero-bottom {
    margin-top: auto;
    padding-bottom: 26px;
  }

  .hero-intro {
    padding: 0;
  }

  .hero-kicker {
    display: block;
    margin-bottom: 18px;
  }

  .hero-intro > p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .hero-media {
    top: 34%;
    width: 100%;
    min-height: 0;
    margin: 0;
    opacity: 0.48;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 28%, #000 58%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 28%, #000 58%);
  }

  .hero-media-image {
    min-height: 0;
    object-position: 68% center;
  }

  .hero-media figcaption {
    display: none;
  }

  .hero::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 0 36%,
      rgba(0, 31, 51, 0.34) 48%,
      rgba(0, 31, 51, 0.7) 64%,
      rgba(0, 31, 51, 0.18) 100%
    );
    pointer-events: none;
  }

  .light-section {
    padding: 76px 0;
  }

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

  .center-heading h2,
  .split-heading h2 {
    margin-top: 20px;
    font-size: clamp(2.8rem, 12.8vw, 4.5rem);
  }

  .center-heading > p:last-child,
  .split-heading > p {
    font-size: 0.95rem;
  }

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

  .service-card {
    min-height: 360px;
  }

  .service-graphic {
    height: 150px;
  }

  .products {
    padding: 68px 18px;
  }

  .product-layout {
    gap: 44px;
  }

  .product-intro {
    display: block;
  }

  .product-intro h2 {
    margin-top: 22px;
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .product-intro > p:not(.eyebrow) {
    margin-top: 22px;
  }

  .product-tabs {
    gap: 18px;
    overflow-x: auto;
  }

  .capability-tab {
    flex: 0 0 auto;
  }

  .capability-tab b {
    display: none;
  }

  .product-visual {
    height: 340px;
  }

  .capability-panel {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding: 22px;
  }

  .capability-panel h3 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
    margin-bottom: 42px;
  }

  .industry-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 420px repeat(4, 285px);
  }

  .industry-automotive,
  .industry-manufacturing,
  .industry-architecture,
  .industry-training,
  .industry-retail {
    grid-column: 1;
  }

  .industry-automotive { grid-row: 1; }
  .industry-manufacturing { grid-row: 2; }
  .industry-architecture { grid-row: 3; }
  .industry-training { grid-row: 4; }
  .industry-retail { grid-row: 5; }

  .industry-card {
    padding: 22px;
  }

  .industry-symbol {
    right: 18px;
    width: 42%;
  }

  .work {
    padding: 68px 0 58px;
  }

  .work-heading {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 18px;
  }

  .work-heading h2 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .work-controls {
    align-self: flex-end;
  }

  .work-track {
    gap: 12px;
    padding-inline: 18px;
  }

  .work-card {
    flex-basis: min(84vw, 410px);
    width: min(84vw, 410px);
  }

  .work-image {
    height: 380px;
  }

  .contact {
    min-height: 680px;
  }

  .contact-content {
    width: calc(100% - 36px);
  }

  .contact h2 {
    font-size: clamp(3.4rem, 13.5vw, 5.4rem);
  }

  .contact-content > p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-orb {
    width: 68px;
    height: 68px;
  }

  .site-footer {
    padding: 62px 22px 24px;
  }

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

  .footer-lead h2 {
    font-size: clamp(2.8rem, 12vw, 4.3rem);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 62px;
  }
}

@media (min-width: 761px) and (max-height: 820px) {
  .hero,
  .hero-content {
    min-height: max(560px, calc(100svh - 30px));
  }

  .hero-content {
    padding-top: clamp(86px, 15vh, 112px);
  }

  .hero-heading {
    margin-bottom: clamp(20px, 3vh, 30px);
  }

  .hero h1 {
    margin-top: clamp(12px, 2vh, 20px);
    font-size: clamp(3rem, min(5.3vw, 9vh), 5.4rem);
  }

  .hero-eyebrow {
    font-size: 9px;
  }

  .hero-intro {
    max-width: 640px;
    padding-bottom: clamp(18px, 3vh, 30px);
  }

  .hero-kicker {
    margin-bottom: 12px;
  }

  .hero-kicker i {
    margin-bottom: 10px;
  }

  .hero-kicker strong {
    font-size: clamp(1rem, 1.45vw, 1.35rem);
  }

  .hero-intro > p {
    max-width: 620px;
    font-size: clamp(0.9rem, 1.15vw, 1.05rem);
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-actions .button {
    min-height: 50px;
  }

  .hero-actions .button i {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 420px) {
  .button {
    gap: 22px;
  }

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

  .product-visual {
    height: 300px;
  }

  .work-image {
    height: 340px;
  }
}

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

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

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

  .hero-facets i {
    animation: none !important;
  }
}
