@font-face {
  font-family: "Manifold Extd CF";
  src: url("./assets/ManifoldExtendedCF-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #a8b2bf;
  --muted: rgba(168, 178, 191, 0.76);
  --faint: rgba(119, 144, 166, 0.54);
  --line: rgba(119, 144, 166, 0.28);
  --amber: #7790a6;
  --maple: #405b73;
  --black: #0d0d0d;
  --deep: #192e40;
  --steel: #405b73;
  --mist: #a8b2bf;
  --font-body: "Bahnschrift", "Segoe UI", Arial, sans-serif;
  --font-display: "Manifold Extd CF", "Manifold Extd CF Regular", "Agency FB", "Bahnschrift", "Segoe UI", Arial, sans-serif;
  --font-ui: "Bahnschrift", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--black);
}

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

button {
  font: inherit;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.hero {
  position: relative;
  isolation: isolate;
  height: min(clamp(580px, 42.9vw, 960px), calc(100svh - 34px));
  min-height: min(580px, calc(100svh - 34px));
  overflow: hidden;
  --mx: 0;
  --my: 0;
  background: url("./assets/back.png") center / 118% auto no-repeat;
  background-position: calc(50% + (var(--mx) * 24px)) calc(50% + (var(--my) * 16px));
}

.hero::before {
  position: absolute;
  inset: 0 -22%;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(4, 12, 22, 0.16) 46%, rgba(0, 0, 0, 0.14));
}

.hero::after {
  position: absolute;
  inset: 0 -18%;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(
      circle at calc(50% + (var(--mx) * 34%)) calc(44% + (var(--my) * 26%)),
      rgba(255, 255, 255, 0.075),
      transparent 26%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.28));
  mix-blend-mode: screen;
  opacity: 0.78;
}

.hero-depth {
  position: absolute;
  inset: -5% -24%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at calc(50% + (var(--mx) * 28%)) calc(50% + (var(--my) * 26%)),
      transparent 0 19%,
      rgba(0, 0, 0, 0.16) 44%,
      rgba(0, 0, 0, 0.48) 100%
    );
  opacity: 0.6;
  transform: translate3d(calc(var(--mx) * -14px), calc(var(--my) * -10px), 0);
  transition: opacity 220ms ease;
}

.shade {
  position: absolute;
  inset: 0 -18%;
  pointer-events: none;
  z-index: 2;
}

.shade-left {
  background: radial-gradient(circle at 17% 48%, rgba(25, 46, 64, 0.18), transparent 34%);
}

.shade-bottom {
  background: linear-gradient(180deg, transparent 42%, rgba(13, 13, 13, 0.5) 74%, #0d0d0d 100%);
}

.topbar {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 36px;
  padding: 40px clamp(22px, 4vw, 72px) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 44px;
}

.brand-logo {
  display: block;
  width: clamp(154px, 10.8vw, 205px);
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.22));
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.28));
}

.brand-word {
  font-family: var(--font-display);
  font-size: 15.1px;
  font-weight: 700;
  word-spacing: 5px;
  font-stretch: 118%;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.8vw, 64px);
  color: rgba(247, 250, 255, 0.84);
  font-family: var(--font-ui);
  font-size: 20.2px;
  font-weight: 520;
  font-stretch: 112%;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 18px);
  right: clamp(22px, 4vw, 72px);
  z-index: 30;
  display: grid;
  gap: 1px;
  width: min(360px, calc(100vw - 44px));
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(20px);
}

.mobile-nav a {
  min-height: 54px;
  padding: 18px 20px;
  color: rgba(245, 248, 251, 0.88);
  background: rgba(13, 13, 13, 0.88);
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 620;
  font-stretch: 112%;
  text-transform: uppercase;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a.is-active {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(119, 144, 166, 0.18), rgba(13, 13, 13, 0.9)),
    rgba(13, 13, 13, 0.88);
}

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

.main-nav a {
  position: relative;
  padding: 8px 0;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.menu-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-button svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.menu-button path {
  transition: transform 180ms ease, opacity 180ms ease;
  transform-origin: 12px 12px;
}

.hero-copy {
  position: relative;
  z-index: 6;
  width: min(480px, calc(100% - 44px));
  margin: clamp(56px, 7vh, 92px) 0 0 clamp(22px, 4vw, 72px);
  transform: translate3d(calc(var(--mx) * -8px), calc(var(--my) * -5px), 0);
}

.kicker {
  margin: 0 0 22px;
  color: var(--faint);
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 620;
  font-stretch: 112%;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  word-spacing: 0.34em;
}

.hero-copy h1,
.hero-title {
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(23.8px, 2.415vw, 39.2px);
  font-weight: 400;
  font-stretch: 118%;
  line-height: 1.18;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-title {
  display: grid;
  gap: 0.16em;
}

.hero-title span[aria-hidden="true"] {
  display: block;
  white-space: nowrap;
  word-spacing: 0.34em;
}

.lead {
  margin-bottom: 34px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(15.1px, 1.025vw, 18.5px);
  font-weight: 300;
  line-height: 1.5;
}

.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 38px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 650;
  font-stretch: 112%;
  word-spacing: 0.24em;
  text-transform: uppercase;
}

.learn-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.learn-link:hover svg,
.learn-link:focus-visible svg {
  transform: translateX(5px);
}

.hero-star {
  position: absolute;
  z-index: 5;
  top: 28%;
  left: 50%;
  width: clamp(185px, 15.75vw, 375px);
  height: auto;
  display: block;
  mix-blend-mode: screen;
  opacity: 1;
  filter: saturate(4.82) contrast(0.7) brightness(2.2) drop-shadow(0 0 48px rgba(207, 231, 255, 0.38));
  transform: translate(calc(-50% + (var(--mx) * 18px)), calc(-18% + (var(--my) * 14px)));
}

.hero-partner-rail {
  position: absolute;
  z-index: 6;
  right: clamp(22px, 4vw, 72px);
  bottom: clamp(126px, 16vh, 170px);
  display: grid;
  gap: 14px;
  width: min(520px, 38vw);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.68), rgba(13, 13, 13, 0.34));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translate3d(calc(var(--mx) * 10px), calc(var(--my) * 7px), 0);
  backdrop-filter: blur(14px);
}

.hero-partner-rail > span {
  color: var(--amber);
  font-size: 9.2px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-partner-rail div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-partner-button {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 44px;
  padding: 14px 10px;
  overflow: hidden;
  border: 0;
  color: rgba(245, 248, 251, 0.82);
  background: rgba(4, 9, 14, 0.8);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 8.4px;
  font-weight: 850;
  font-stretch: 112%;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-partner-button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 58%),
    linear-gradient(135deg, rgba(119, 144, 166, 0.28), rgba(64, 91, 115, 0.2));
  opacity: 0;
  transition: opacity 180ms ease;
}

.hero-partner-button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  transform: skewX(-18deg);
  transition: left 320ms ease, opacity 180ms ease;
}

.hero-partner-button:hover,
.hero-partner-button:focus-visible {
  color: var(--ink);
  background: rgba(7, 16, 24, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(119, 144, 166, 0.68),
    inset 0 0 24px rgba(119, 144, 166, 0.12),
    0 0 30px rgba(119, 144, 166, 0.16);
  transform: translateY(-2px);
}

.hero-partner-button:hover::before,
.hero-partner-button:focus-visible::before {
  opacity: 1;
}

.hero-partner-button:hover::after,
.hero-partner-button:focus-visible::after {
  left: 106%;
  opacity: 1;
}

.hero-partner-button:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.7);
  outline-offset: -3px;
}

.hero-partner-button:active {
  transform: translateY(0);
}

.status-row {
  position: absolute;
  z-index: 6;
  right: clamp(22px, 4vw, 72px);
  bottom: clamp(40px, 6vh, 74px);
  left: clamp(22px, 4vw, 72px);
  display: flex;
  align-items: center;
  gap: 0;
  width: min(780px, calc(100% - clamp(44px, 8vw, 144px)));
}

.status-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding-right: 32px;
  color: var(--ink);
}

.status-item + .status-item {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.status-item svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.status-item span {
  min-width: 0;
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 650;
  font-stretch: 108%;
  line-height: 1.55;
  text-transform: uppercase;
}

.coordinates {
  position: absolute;
  right: clamp(22px, 4vw, 72px);
  bottom: clamp(46px, 6.3vh, 82px);
  z-index: 6;
  display: grid;
  gap: 14px;
  justify-items: end;
  max-width: min(360px, 28vw);
  text-align: right;
}

.coordinates strong,
.coordinates span {
  display: block;
  line-height: 1.2;
  text-transform: uppercase;
}

.coordinates strong {
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 10.9px;
  font-weight: 540;
  font-stretch: 112%;
}

.coordinates span {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 420;
  font-stretch: 112%;
}

.home-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.12);
}

.home-tile {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: clamp(300px, 24.2vw, 430px);
  padding: clamp(34px, 4vw, 62px);
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.99), rgba(5, 12, 18, 0.88)),
    radial-gradient(circle at 82% 24%, rgba(99, 129, 158, 0.12), transparent 34%);
}

.home-tile::before,
.home-tile::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.home-tile::before {
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.3;
  mask-image: radial-gradient(circle at 68% 50%, black, transparent 76%);
}

.home-tile::after {
  inset: 0 -10%;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(25, 46, 64, 0.98) 0 28%, rgba(25, 46, 64, 0.68) 42%, rgba(64, 91, 115, 0.2) 68%, rgba(25, 46, 64, 0.46) 100%),
    linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.05) 48%, transparent 76%),
    radial-gradient(circle at 72% 24%, rgba(119, 144, 166, 0.14), transparent 28%);
  opacity: 0.98;
  transform: translate3d(0, 0, 0);
  transition: opacity 520ms ease, transform 680ms ease;
}

.home-tile:hover::after,
.home-tile:focus-visible::after {
  opacity: 0.88;
  transform: translate3d(1.2%, 0, 0);
}

.home-tile:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: -8px;
}

.home-tile-copy {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  justify-items: start;
  width: min(440px, 50%);
  min-height: calc(clamp(300px, 24.2vw, 430px) - (clamp(34px, 4vw, 62px) * 2));
  min-width: 0;
}

.home-tile-products .home-tile-copy {
  width: min(340px, 42%);
}

.home-tile-company .home-tile-copy {
  width: min(650px, 68%);
}

.home-tile h2 {
  max-width: 100%;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(23.8px, 2.485vw, 43.4px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.02;
  text-transform: uppercase;
}

.home-tile p {
  max-width: 100%;
  margin: 22px 0 0;
  color: rgba(227, 236, 246, 0.66);
  font-size: clamp(11.8px, 0.924vw, 14.3px);
  font-weight: 300;
  line-height: 1.58;
}

.home-tile-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 720;
  font-stretch: 112%;
  text-transform: uppercase;
}

.home-tile-link::after {
  content: "->";
  transition: transform 180ms ease;
}

.home-tile:hover .home-tile-link::after,
.home-tile:focus-visible .home-tile-link::after {
  transform: translateX(5px);
}

.home-tile-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 100%;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  mask-image: none;
}

.home-tile-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(25, 46, 64, 0.98) 0%, rgba(25, 46, 64, 0.52) 18%, transparent 46%, rgba(25, 46, 64, 0.26) 100%),
    radial-gradient(circle at 58% 50%, transparent 18%, rgba(25, 46, 64, 0.34) 78%);
}

.home-tile-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.68);
  transform: scale(1.05);
  transition: transform 520ms ease, filter 520ms ease;
}

.home-tile:hover .home-tile-media img,
.home-tile:focus-visible .home-tile-media img {
  filter: saturate(1) contrast(1.08) brightness(0.9);
  transform: scale(1.07);
}

.home-product-cards {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  gap: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  pointer-events: auto;
}

.home-product-cards::before {
  position: absolute;
  inset: -28% -12% -18% -42%;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 64% 46%, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(90deg, transparent, rgba(13, 13, 13, 0.2));
}

.home-product-cards article {
  position: relative;
  --cut: 170px;
  flex: 1 1 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: end;
  align-items: center;
  column-gap: 8px;
  min-height: 100%;
  overflow: hidden;
  padding: 16px 16px 15px;
  background: rgba(5, 10, 15, 0.44);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
  transition: flex 320ms ease, background 320ms ease, box-shadow 320ms ease;
}

.home-product-cards article + article {
  margin-left: calc(var(--cut) * -1);
  padding-left: calc(var(--cut) + 20px);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, 0 100%);
}

.home-product-cards article:first-child {
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--cut)) 100%, 0 100%);
}

.home-product-cards article:not(:first-child):not(:last-child) {
  clip-path: polygon(var(--cut) 0, 100% 0, calc(100% - var(--cut)) 100%, 0 100%);
}

.home-product-cards article:last-child {
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, 0 100%);
}

.home-product-cards article::before {
  display: none;
}

.home-product-cards article:first-child::before {
  display: none;
}

.home-product-cards article::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 34%, rgba(4, 8, 12, 0.62) 100%),
    linear-gradient(90deg, rgba(25, 46, 64, 0.24), rgba(119, 144, 166, 0.06));
  transition: opacity 320ms ease;
}

.home-product-cards article:hover,
.home-product-cards article:focus-within {
  flex: 1.55 1 0;
  background: rgba(25, 46, 64, 0.42);
  box-shadow: 0 26px 70px rgba(119, 144, 166, 0.16);
}

.home-product-cards article:hover::after,
.home-product-cards article:focus-within::after {
  opacity: 0.52;
}

.home-product-cards img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.08) brightness(0.52);
  transition: transform 520ms ease, filter 520ms ease;
}

.home-tile:hover .home-product-cards img,
.home-tile:focus-visible .home-product-cards img {
  filter: saturate(0.9) contrast(1.08) brightness(0.66);
  transform: scale(1.035);
}

.home-product-cards article:hover img,
.home-product-cards article:focus-within img {
  filter: saturate(1.06) contrast(1.08) brightness(0.86);
  transform: scale(1.06);
}

.home-product-cards article:nth-child(1) img {
  object-position: 48% 46%;
}

.home-product-cards article:nth-child(2) img {
  object-position: 50% 48%;
}

.home-product-cards article:nth-child(3) img {
  object-position: 54% 50%;
}

.home-product-cards strong,
.home-product-cards span {
  position: relative;
  z-index: 2;
  display: inline;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-product-cards strong {
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 720;
  font-stretch: 112%;
}

.home-product-cards span {
  color: rgba(168, 178, 191, 0.82);
  font-size: 8.4px;
  font-weight: 520;
}

.home-product-cards span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(168, 178, 191, 0.48);
}

.home-tile-solutions .home-tile-media img {
  object-position: 50% 42%;
}

.home-tile-technology .home-tile-media img {
  object-position: 50% 44%;
}

.home-tile-products .home-tile-media img {
  object-position: 50% 46%;
}

.home-tile-company .home-tile-media img {
  object-position: 62% 50%;
}

.intel-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 0.88fr);
  align-items: center;
  gap: clamp(26px, 5vw, 78px);
  min-height: 210px;
  padding: 44px clamp(22px, 4vw, 72px) 56px;
  background:
    linear-gradient(90deg, rgba(25, 46, 64, 0.96), rgba(25, 46, 64, 0.98)),
    radial-gradient(circle at 84% 22%, rgba(119, 144, 166, 0.22), transparent 25%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.strip-label {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 650;
  font-stretch: 112%;
  text-transform: uppercase;
}

.intel-strip h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(19.6px, 2.1vw, 32.2px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.06;
  text-transform: uppercase;
}

.intel-strip p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(13.4px, 1.176vw, 16.8px);
  line-height: 1.65;
}

.section-heading {
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
  margin: 0 auto clamp(34px, 5vw, 76px);
  text-align: center;
}

.section-heading-left {
  justify-items: start;
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.52vw, 40.6px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading p {
  width: min(760px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(13.4px, 1.092vw, 16.8px);
  line-height: 1.65;
}

.home-partners,
.home-systems,
.mission-flow {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 112px) clamp(22px, 4vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.96), rgba(5, 10, 15, 0.99)),
    radial-gradient(circle at 80% 24%, rgba(119, 144, 166, 0.12), transparent 25%);
}

.home-partners::after,
.home-systems::after,
.mission-flow::after,
.home-cta::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, 0.05) 46%, transparent 72%),
    radial-gradient(circle at 72% 20%, rgba(119, 144, 166, 0.08), transparent 26%);
  opacity: 0;
  transform: translate3d(-8%, 0, 0);
  transition: opacity 700ms ease, transform 900ms ease;
}

.home-partners.is-depth-active::after,
.home-systems.is-depth-active::after,
.mission-flow.is-depth-active::after,
.home-cta.is-depth-active::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.partner-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  width: min(1500px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(168, 178, 191, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(25, 46, 64, 0.68), rgba(13, 13, 13, 0.82)),
    radial-gradient(circle at 18% 0%, rgba(119, 144, 166, 0.16), transparent 30%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.partner-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: clamp(26px, 2.8vw, 40px);
  background: rgba(255, 255, 255, 0.08);
}

.partner-button {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 170px;
  padding: 34px 26px;
  overflow: hidden;
  border: 0;
  color: rgba(245, 248, 251, 0.82);
  background: rgba(4, 9, 14, 0.86);
  cursor: pointer;
  font-family: var(--font-ui);
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.partner-button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 58%),
    linear-gradient(135deg, rgba(119, 144, 166, 0.3), rgba(64, 91, 115, 0.22));
  opacity: 0;
  transition: opacity 180ms ease;
}

.partner-button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  transform: skewX(-18deg);
  transition: left 320ms ease, opacity 180ms ease;
}

.partner-button strong,
.partner-button span {
  display: block;
}

.partner-button strong {
  margin-bottom: 26px;
  color: currentColor;
  font-size: clamp(13.8px, 1.2vw, 17.7px);
  font-weight: 850;
  font-stretch: 112%;
  line-height: 1.2;
}

.partner-button span {
  color: rgba(168, 178, 191, 0.58);
  font-size: 12.6px;
  font-weight: 650;
  font-stretch: 112%;
  line-height: 1.4;
}

.partner-button:hover,
.partner-button:focus-visible {
  color: var(--ink);
  background: rgba(7, 16, 24, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(119, 144, 166, 0.72),
    inset 0 0 26px rgba(119, 144, 166, 0.14),
    0 0 34px rgba(119, 144, 166, 0.18);
  transform: translateY(-3px);
}

.partner-button:hover::before,
.partner-button:focus-visible::before {
  opacity: 1;
}

.partner-button:hover::after,
.partner-button:focus-visible::after {
  left: 106%;
  opacity: 1;
}

.partner-button:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: -4px;
}

.partner-panel-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 3vw, 42px);
  border-left: 1px solid rgba(168, 178, 191, 0.14);
  background:
    linear-gradient(135deg, rgba(13, 13, 13, 0.66), rgba(25, 46, 64, 0.38)),
    radial-gradient(circle at 100% 0%, rgba(168, 178, 191, 0.08), transparent 36%);
}

.partner-panel-copy span {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 750;
  font-stretch: 112%;
  text-transform: uppercase;
}

.partner-panel-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(12.6px, 0.966vw, 15.1px);
  line-height: 1.65;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1500px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
}

.partner-grid article {
  min-height: 260px;
  padding: clamp(22px, 2.5vw, 34px);
  background:
    linear-gradient(180deg, rgba(9, 15, 21, 0.9), rgba(4, 8, 12, 0.98)),
    radial-gradient(circle at 82% 22%, rgba(64, 91, 115, 0.08), transparent 28%);
}

.partner-grid span,
.system-showcase span,
.flow-grid span {
  display: block;
  color: var(--amber);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 650;
  font-stretch: 112%;
  text-transform: uppercase;
}

.partner-grid span {
  margin-bottom: 44px;
}

.partner-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(18.5px, 1.68vw, 28.6px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.04;
  text-transform: uppercase;
}

.partner-grid p,
.flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12.6px;
  line-height: 1.58;
}

.operator-layer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
  min-height: 720px;
  padding: clamp(58px, 8vw, 120px) clamp(22px, 4vw, 72px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.98), rgba(5, 10, 14, 0.96)),
    radial-gradient(circle at 73% 48%, rgba(86, 120, 154, 0.18), transparent 34%);
}

.operator-layer::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 70% 42%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  opacity: 0;
  transition: opacity 700ms ease;
}

.operator-layer.is-depth-active::after {
  opacity: 1;
}

.operator-layer::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 66% 50%, black, transparent 72%);
}

.operator-copy,
.operator-visual {
  position: relative;
  z-index: 1;
}

.operator-copy {
  display: grid;
  gap: 22px;
}

.operator-copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.52vw, 40.6px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.02;
  text-transform: uppercase;
}

.operator-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(13.4px, 1.092vw, 16.8px);
  line-height: 1.65;
}

.operator-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.operator-stats div {
  min-height: 110px;
  padding: 20px;
  background: rgba(4, 9, 14, 0.92);
}

.operator-stats strong,
.operator-stats span {
  display: block;
  text-transform: uppercase;
}

.operator-stats strong {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(20.2px, 2.184vw, 35.3px);
  font-weight: 400;
  font-stretch: 112%;
}

.operator-stats span {
  color: var(--faint);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 650;
  font-stretch: 112%;
  line-height: 1.45;
}

.operator-visual {
  min-height: clamp(440px, 48vw, 720px);
}

.operator-visual img {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  filter: saturate(0.86) contrast(1.04);
}

.operator-tablet {
  top: 5%;
  right: 2%;
  width: min(760px, 82%);
  height: 58%;
  animation: deviceFloat 8s ease-in-out infinite;
}

.operator-remote {
  right: 28%;
  bottom: 4%;
  width: min(560px, 58%);
  height: 44%;
  animation: productFloat 9s ease-in-out infinite;
}

.system-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1500px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
}

.system-showcase article {
  min-height: 560px;
  overflow: hidden;
  border-radius: 0;
  background: #0d0d0d;
}

.system-showcase img {
  display: block;
  width: 100%;
  height: 62%;
  object-fit: cover;
  filter: saturate(0.86);
  transition: transform 420ms ease, filter 420ms ease;
}

.system-showcase article:hover img {
  filter: saturate(1.02);
  transform: scale(1.045);
}

.system-showcase div {
  display: grid;
  gap: 13px;
  padding: 24px;
}

.system-showcase h3,
.flow-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(16.8px, 1.61vw, 26.6px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.04;
  text-transform: uppercase;
}

.system-showcase p {
  margin: 0;
  color: var(--muted);
  font-size: 12.6px;
  line-height: 1.58;
}

.mission-flow {
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.96), rgba(13, 13, 13, 0.99)),
    radial-gradient(circle at 50% 18%, rgba(85, 116, 146, 0.16), transparent 30%);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1500px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
}

.flow-grid article {
  min-height: 280px;
  padding: clamp(22px, 2.5vw, 34px);
  background:
    linear-gradient(180deg, rgba(8, 14, 20, 0.9), rgba(4, 8, 12, 0.98)),
    radial-gradient(circle at 84% 20%, rgba(119, 144, 166, 0.09), transparent 30%);
}

.flow-grid span {
  margin-bottom: 44px;
}

.flow-grid h3 {
  margin-bottom: 18px;
}

.home-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(52px, 7vw, 104px) clamp(22px, 4vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.96), rgba(7, 13, 19, 0.98)),
    radial-gradient(circle at 84% 30%, rgba(64, 91, 115, 0.12), transparent 27%);
}

.home-cta h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.38vw, 39.2px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.02;
  text-transform: uppercase;
}

.products-shell {
  overflow: visible;
  background:
    radial-gradient(circle at 74% 8%, rgba(119, 144, 166, 0.12), transparent 24%),
    radial-gradient(circle at 12% 24%, rgba(87, 124, 160, 0.18), transparent 28%),
    #0d0d0d;
}

.products-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding-bottom: clamp(34px, 5vw, 72px);
}

.products-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.34), #0d0d0d 93%),
    radial-gradient(circle at 58% 42%, rgba(96, 112, 126, 0.22), transparent 36%);
}

.product-gridlines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 72%);
}

.products-topbar {
  padding-bottom: clamp(46px, 6vh, 70px);
}

.products-intro {
  width: min(850px, calc(100% - clamp(44px, 8vw, 144px)));
  margin: 0 auto clamp(36px, 5vw, 76px);
  text-align: center;
}

.products-intro h1 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(26.6px, 3.535vw, 60.2px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.products-intro p {
  width: min(720px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(14.3px, 1.176vw, 18.5px);
  line-height: 1.65;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  width: min(1500px, calc(100% - clamp(44px, 8vw, 144px)));
  margin: 0 auto;
}

.featured-media {
  position: relative;
  min-height: clamp(360px, 46vw, 640px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 48% 46%, rgba(255, 255, 255, 0.1), transparent 37%),
    rgba(255, 255, 255, 0.025);
}

.featured-media::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: scanPulse 3.8s ease-in-out infinite;
}

.featured-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.03);
  transition: opacity 180ms ease, transform 420ms ease;
  animation: productFloat 7s ease-in-out infinite;
}

.featured-media img.is-swapping {
  opacity: 0;
  transform: scale(1.08);
}

.scan-frame {
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.scan-frame::before,
.scan-frame::after {
  position: absolute;
  width: 54px;
  height: 54px;
  content: "";
  border-color: rgba(255, 255, 255, 0.46);
  border-style: solid;
}

.scan-frame::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.scan-frame::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}

.featured-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.featured-copy > span {
  color: var(--amber);
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 650;
  font-stretch: 112%;
  text-transform: uppercase;
}

.featured-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25.2px, 3.29vw, 50.4px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 0.95;
  text-transform: uppercase;
}

.featured-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14.3px, 1.092vw, 17.6px);
  line-height: 1.65;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-grid div {
  min-height: 94px;
  padding: 20px;
  background: rgba(4, 9, 14, 0.88);
}

.spec-grid strong,
.spec-grid span {
  display: block;
  text-transform: uppercase;
}

.spec-grid strong {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(17.6px, 1.68vw, 26.9px);
  font-weight: 400;
  font-stretch: 112%;
}

.spec-grid span {
  color: var(--faint);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 650;
  font-stretch: 112%;
}

.product-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1080px, calc(100% - 44px));
  margin: clamp(28px, 4vw, 54px) auto 0;
}

.product-switcher button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(245, 248, 251, 0.76);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 650;
  font-stretch: 112%;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.product-switcher button:hover,
.product-switcher button:focus-visible,
.product-switcher button.is-selected {
  color: var(--ink);
  border-color: rgba(119, 144, 166, 0.74);
  background: rgba(119, 144, 166, 0.16);
  transform: translateY(-2px);
}

.product-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1500px, calc(100% - clamp(44px, 8vw, 144px)));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 90px) 0;
}

.product-catalog-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-catalog-blocks {
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 42px);
}

.product-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #0d0d0d;
}

.product-card img {
  width: 100%;
  height: 66%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 420ms ease, filter 420ms ease;
}

.product-card:hover img {
  filter: saturate(1.02);
  transform: scale(1.045);
}

.product-card div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.product-card span,
.product-card h3 {
  text-transform: uppercase;
}

.product-card span {
  color: var(--amber);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 650;
  font-stretch: 112%;
}

.product-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(16.8px, 1.54vw, 25.2px);
  font-weight: 400;
  font-stretch: 112%;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12.6px;
  line-height: 1.55;
}

.product-block {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: stretch;
  min-height: clamp(420px, 38vw, 620px);
  background:
    linear-gradient(90deg, rgba(25, 46, 64, 0.18), rgba(13, 13, 13, 0.96)),
    #0d0d0d;
}

.product-block:nth-child(even) {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.08fr);
}

.product-block:nth-child(even) img {
  order: 2;
}

.product-block img {
  height: 100%;
  min-height: inherit;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  filter: saturate(0.78) contrast(1.06) brightness(0.72);
}

.product-block:nth-child(even) img {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.product-block div {
  align-content: center;
  gap: clamp(12px, 1.5vw, 20px);
  padding: clamp(28px, 4vw, 62px);
}

.product-block h3 {
  max-width: 640px;
}

.product-block p {
  max-width: 560px;
}

.product-block-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  padding: 0;
  margin: clamp(12px, 1.8vw, 24px) 0 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
}

.product-block-specs li {
  min-height: 64px;
  padding: 18px 14px;
  color: var(--ink);
  background: rgba(4, 9, 14, 0.84);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 650;
  font-stretch: 112%;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-card-wide {
  grid-column: span 2;
}

.control-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  padding: clamp(54px, 7vw, 104px) clamp(22px, 4vw, 72px);
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.95), rgba(6, 10, 14, 0.98)),
    radial-gradient(circle at 76% 38%, rgba(89, 122, 154, 0.18), transparent 34%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.control-copy {
  display: grid;
  gap: 20px;
}

.control-copy h2 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.59vw, 40.6px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.02;
  text-transform: uppercase;
}

.control-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(13.4px, 1.05vw, 16.8px);
  line-height: 1.65;
}

.control-list {
  display: grid;
  gap: 1px;
  width: min(640px, 100%);
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
}

.control-list li {
  min-height: 58px;
  padding: 18px 20px;
  color: rgba(245, 248, 251, 0.82);
  background: rgba(4, 9, 14, 0.9);
  font-family: var(--font-ui);
  font-size: 10.9px;
  font-weight: 620;
  font-stretch: 112%;
  line-height: 1.45;
  text-transform: uppercase;
}

.control-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.72fr);
  align-items: end;
  gap: clamp(14px, 2vw, 28px);
  min-height: clamp(430px, 46vw, 680px);
}

.control-media::before {
  position: absolute;
  inset: 12% 4% 4% 8%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 86%, transparent);
}

.control-device {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.control-device img {
  display: block;
  width: 100%;
  height: clamp(280px, 34vw, 510px);
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
  animation: deviceFloat 8s ease-in-out infinite;
}

.control-device figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  color: rgba(245, 248, 251, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(13, 13, 13, 0.76);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 650;
  font-stretch: 112%;
  text-transform: uppercase;
}

.control-device-tablet {
  align-self: center;
}

.control-device-remote {
  transform: translateY(28px);
}

.control-device-remote img {
  height: clamp(260px, 30vw, 470px);
}

.page-shell {
  overflow: visible;
  background:
    radial-gradient(circle at 78% 12%, rgba(64, 91, 115, 0.1), transparent 22%),
    radial-gradient(circle at 16% 18%, rgba(81, 119, 154, 0.17), transparent 30%),
    #0d0d0d;
}

.subpage-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding-bottom: clamp(42px, 6vw, 88px);
}

.subpage-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.34), #0d0d0d 92%),
    radial-gradient(circle at 58% 38%, rgba(255, 255, 255, 0.08), transparent 32%);
}

.solutions-hero::after,
.technology-hero::after,
.company-hero::after,
.careers-hero::after {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.2)),
    url("./assets/back.png") center / cover no-repeat;
  opacity: 0.36;
}

.solutions-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(25, 46, 64, 0.22)),
    url("./assets/tile-solutions-network.png") center / cover no-repeat;
  opacity: 0.42;
}

.subpage-intro {
  width: min(1030px, calc(100% - clamp(44px, 8vw, 144px)));
  margin: 0 auto clamp(42px, 5vw, 82px);
  text-align: center;
}

.subpage-intro h1 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(26.6px, 3.64vw, 61.6px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.subpage-intro p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(14.3px, 1.176vw, 18.5px);
  line-height: 1.65;
}

.maple-label {
  color: rgba(255, 93, 105, 0.92);
}

.solution-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - clamp(44px, 8vw, 144px)));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
}

.solution-metrics div {
  min-height: 150px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(8, 14, 20, 0.86), rgba(4, 8, 12, 0.94)),
    radial-gradient(circle at 82% 18%, rgba(119, 144, 166, 0.16), transparent 30%);
}

.solution-metrics strong,
.solution-metrics span {
  display: block;
  text-transform: uppercase;
}

.solution-metrics strong {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 70px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 0.9;
}

.solution-metrics span {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 650;
  font-stretch: 112%;
}

.solution-command-map {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 86px);
  min-height: clamp(520px, 45vw, 720px);
  padding: clamp(56px, 7vw, 110px) clamp(22px, 4vw, 72px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.96), rgba(8, 14, 20, 0.98)),
    radial-gradient(circle at 76% 50%, rgba(64, 91, 115, 0.2), transparent 36%);
}

.solution-command-map .section-heading {
  width: 100%;
  margin: 0;
}

.command-constellation {
  position: relative;
  min-height: clamp(390px, 34vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(168, 178, 191, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(119, 144, 166, 0.16), transparent 28%),
    rgba(4, 9, 14, 0.86);
  background-size: 70px 70px, 70px 70px, auto, auto;
}

.constellation-ring {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(168, 178, 191, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 48%;
  aspect-ratio: 1;
  animation: constellationSpin 18s linear infinite;
}

.ring-two {
  width: 76%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: constellationSpin 28s linear reverse infinite;
}

.constellation-node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 142px;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid rgba(168, 178, 191, 0.18);
  background:
    linear-gradient(135deg, rgba(25, 46, 64, 0.82), rgba(4, 9, 14, 0.92)),
    rgba(4, 9, 14, 0.9);
  color: rgba(245, 248, 251, 0.86);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 650;
  font-stretch: 112%;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.node-command {
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
}

.node-ground {
  top: 46%;
  left: 10%;
}

.node-air {
  top: 46%;
  right: 10%;
}

.node-data {
  right: 50%;
  bottom: 12%;
  transform: translateX(50%);
}

.pulse-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(168, 178, 191, 0.86);
  box-shadow: 0 0 24px rgba(119, 144, 166, 0.66);
  animation: constellationPulse 4s ease-in-out infinite;
}

.dot-one {
  top: 31%;
  left: 32%;
}

.dot-two {
  top: 38%;
  right: 31%;
  animation-delay: 1.2s;
}

.dot-three {
  right: 50%;
  bottom: 30%;
  animation-delay: 2.4s;
}

.solution-packages {
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  width: min(1500px, calc(100% - clamp(44px, 8vw, 144px)));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 104px) 0;
}

.solution-package {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.78fr);
  min-height: clamp(430px, 38vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(25, 46, 64, 0.18), rgba(13, 13, 13, 0.96)),
    #0d0d0d;
}

.solution-package:nth-child(even) {
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.06fr);
}

.solution-package:nth-child(even) figure {
  order: 2;
}

.solution-package figure {
  position: relative;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
  background: rgba(4, 8, 12, 0.92);
}

.solution-package figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.14), rgba(25, 46, 64, 0.34)),
    radial-gradient(circle at 62% 38%, transparent 24%, rgba(0, 0, 0, 0.42) 100%);
}

.solution-package img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.72);
}

.solution-package-copy {
  display: grid;
  align-content: center;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(28px, 4vw, 64px);
}

.solution-package h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.45vw, 40.6px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.04;
  text-transform: uppercase;
}

.solution-package p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(13.4px, 1.05vw, 16.8px);
  line-height: 1.65;
}

.solution-package ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin: clamp(6px, 1vw, 14px) 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
}

.solution-package li {
  min-height: 92px;
  padding: 18px;
  background: rgba(4, 9, 14, 0.86);
}

.solution-package li strong,
.solution-package li span {
  display: block;
  text-transform: uppercase;
}

.solution-package li strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(17.6px, 1.68vw, 26.9px);
  font-weight: 400;
  font-stretch: 112%;
}

.solution-package li span {
  color: var(--faint);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 650;
  font-stretch: 112%;
  line-height: 1.35;
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  background: rgba(255, 255, 255, 0.1);
}

.solution-detail-grid div {
  min-height: 126px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(8, 14, 20, 0.92), rgba(4, 8, 12, 0.96)),
    radial-gradient(circle at 82% 16%, rgba(119, 144, 166, 0.12), transparent 30%);
}

.solution-detail-grid strong,
.solution-detail-grid span {
  display: block;
}

.solution-detail-grid strong {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 650;
  font-stretch: 112%;
  text-transform: uppercase;
}

.solution-detail-grid span {
  color: var(--muted);
  font-size: 12.6px;
  line-height: 1.55;
}

.nested-complex {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
  align-items: center;
  width: min(680px, 100%);
  margin-top: clamp(2px, 0.8vw, 10px);
}

.nested-complex span {
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 14px;
  border: 1px solid rgba(168, 178, 191, 0.16);
  background: rgba(25, 46, 64, 0.3);
  color: rgba(245, 248, 251, 0.84);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 650;
  font-stretch: 112%;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.nested-complex i {
  position: relative;
  height: 1px;
  background: rgba(168, 178, 191, 0.36);
}

.nested-complex i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 1px solid rgba(168, 178, 191, 0.72);
  border-right: 1px solid rgba(168, 178, 191, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.tech-stack,
.career-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1500px, calc(100% - clamp(44px, 8vw, 144px)));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
}

.tech-node,
.career-cards article {
  min-height: 260px;
  padding: clamp(22px, 2.4vw, 34px);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 20, 0.88), rgba(4, 8, 12, 0.96)),
    radial-gradient(circle at 82% 20%, rgba(119, 144, 166, 0.1), transparent 30%);
}

.tech-node span,
.career-cards span {
  display: block;
  margin-bottom: 42px;
  color: var(--amber);
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 650;
  font-stretch: 112%;
  text-transform: uppercase;
}

.tech-node h2,
.career-cards h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(16.8px, 1.54vw, 26.6px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.04;
  text-transform: uppercase;
}

.tech-node p,
.career-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 12.6px;
  line-height: 1.58;
}

.split-band,
.company-band,
.careers-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
  padding: clamp(52px, 7vw, 104px) clamp(22px, 4vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.95), rgba(8, 13, 17, 0.98)),
    radial-gradient(circle at 88% 32%, rgba(119, 144, 166, 0.12), transparent 28%);
}

.split-band h2,
.company-band h2,
.careers-band h2,
.apply-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.415vw, 39.2px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.02;
  text-transform: uppercase;
}

.signal-panel,
.careers-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
}

.signal-panel div,
.careers-band li {
  min-height: 112px;
  padding: 24px;
  color: var(--muted);
  background: rgba(4, 9, 14, 0.92);
  font-size: 11.8px;
  line-height: 1.5;
}

.signal-panel strong,
.signal-panel span {
  display: block;
}

.signal-panel strong {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(18.5px, 1.68vw, 28.6px);
  font-weight: 400;
  font-stretch: 112%;
  text-transform: uppercase;
}

.technology-schematics {
  padding: clamp(58px, 7vw, 112px) clamp(22px, 4vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.98), rgba(7, 13, 19, 0.98)),
    radial-gradient(circle at 78% 16%, rgba(64, 91, 115, 0.18), transparent 30%);
}

.technology-schematics .section-heading {
  width: min(1160px, 100%);
}

.complex-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(190px, auto));
  gap: clamp(18px, 2.4vw, 34px);
  width: min(1500px, 100%);
  min-height: clamp(430px, 40vw, 590px);
  margin: 0 auto clamp(28px, 4vw, 56px);
  padding: clamp(20px, 2.6vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(168, 178, 191, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(25, 46, 64, 0.62), rgba(4, 8, 12, 0.92));
  background-size: 72px 72px, 72px 72px, auto;
}

.complex-links {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.complex-links path {
  fill: none;
  stroke: rgba(168, 178, 191, 0.42);
  stroke-dasharray: 10 12;
  stroke-linecap: round;
  stroke-width: 2;
}

.complex-links .complex-return {
  stroke: rgba(119, 144, 166, 0.64);
}

.complex-node {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 170px;
  padding: clamp(20px, 2.2vw, 32px);
  border: 1px solid rgba(168, 178, 191, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 14, 20, 0.88), rgba(4, 8, 12, 0.94)),
    radial-gradient(circle at 86% 16%, rgba(119, 144, 166, 0.18), transparent 34%);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.26);
}

.complex-node span,
.complex-node strong,
.complex-node small {
  display: block;
  text-transform: uppercase;
}

.complex-node span {
  margin-bottom: 28px;
  color: var(--amber);
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 650;
  font-stretch: 112%;
}

.complex-node strong {
  color: rgba(245, 248, 251, 0.9);
  font-family: var(--font-display);
  font-size: clamp(16.8px, 1.54vw, 25.2px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.08;
}

.complex-node small {
  margin-top: 18px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 520;
  font-stretch: 112%;
  line-height: 1.45;
}

.complex-node-operator {
  grid-column: 1;
  grid-row: 1;
}

.complex-node-cloud {
  grid-column: 2;
  grid-row: 1;
}

.complex-node-gateway {
  grid-column: 3;
  grid-row: 1;
}

.complex-node-aircraft {
  grid-column: 3;
  grid-row: 2;
}

.complex-node-nav {
  grid-column: 2;
  grid-row: 2;
}

.schematic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1500px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
}

.schematic-card {
  min-height: 500px;
  padding: clamp(22px, 2.6vw, 36px);
  background:
    linear-gradient(180deg, rgba(8, 14, 20, 0.94), rgba(4, 8, 12, 0.98)),
    radial-gradient(circle at 82% 18%, rgba(64, 91, 115, 0.18), transparent 30%);
}

.schematic-head {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(26px, 3vw, 44px);
}

.schematic-head span {
  color: var(--amber);
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 650;
  font-stretch: 112%;
  text-transform: uppercase;
}

.schematic-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18.2px, 1.82vw, 29.4px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.02;
  text-transform: uppercase;
}

.schematic-card p {
  margin: clamp(24px, 3vw, 42px) 0 0;
  color: var(--muted);
  font-size: clamp(12.6px, 0.966vw, 15.1px);
  line-height: 1.65;
}

.flow-line {
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  gap: 10px;
  align-items: center;
}

.flow-line span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(168, 178, 191, 0.16);
  background: rgba(25, 46, 64, 0.34);
  color: rgba(245, 248, 251, 0.82);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 650;
  font-stretch: 112%;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.flow-line i {
  position: relative;
  display: block;
  height: 1px;
  background: rgba(168, 178, 191, 0.46);
}

.flow-line i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 1px solid rgba(168, 178, 191, 0.7);
  border-right: 1px solid rgba(168, 178, 191, 0.7);
  transform: translateY(-50%) rotate(45deg);
}

.antenna-diagram {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(168, 178, 191, 0.14);
  background:
    radial-gradient(circle at 50% 58%, rgba(119, 144, 166, 0.16), transparent 26%),
    rgba(25, 46, 64, 0.22);
}

.antenna-core,
.sat,
.jammer {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 178, 191, 0.28);
  color: rgba(245, 248, 251, 0.86);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 650;
  font-stretch: 112%;
  text-transform: uppercase;
}

.antenna-core {
  right: 50%;
  bottom: 28px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(64, 91, 115, 0.42);
  transform: translateX(50%);
}

.sat {
  width: 68px;
  height: 42px;
  background: rgba(119, 144, 166, 0.18);
}

.sat-a {
  top: 26px;
  left: 24px;
}

.sat-b {
  top: 48px;
  right: 28px;
}

.jammer {
  right: 28px;
  bottom: 34px;
  width: 76px;
  height: 44px;
  border-color: rgba(168, 178, 191, 0.2);
  background: rgba(13, 13, 13, 0.5);
  color: rgba(168, 178, 191, 0.56);
}

.null {
  position: absolute;
  border: 1px solid rgba(168, 178, 191, 0.28);
  border-radius: 50%;
  opacity: 0.7;
}

.null-a {
  right: 22px;
  bottom: 18px;
  width: 136px;
  height: 136px;
  border-color: rgba(64, 91, 115, 0.5);
}

.null-b {
  right: -12px;
  bottom: -16px;
  width: 206px;
  height: 206px;
  border-color: rgba(64, 91, 115, 0.32);
}

.fusion-stack {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.fusion-stack span,
.fusion-stack strong {
  min-height: 54px;
  padding: 18px;
  background: rgba(25, 46, 64, 0.28);
  color: rgba(245, 248, 251, 0.82);
  font-family: var(--font-ui);
  font-size: 9.2px;
  font-weight: 650;
  font-stretch: 112%;
  line-height: 1.35;
  text-transform: uppercase;
}

.fusion-stack strong {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(119, 144, 166, 0.26), rgba(64, 91, 115, 0.24)),
    rgba(4, 9, 14, 0.9);
}

.company-intro {
  text-align: left;
  margin-left: clamp(22px, 4vw, 72px);
  margin-right: 0;
}

.company-intro p {
  margin-left: 0;
}

.canada-mark {
  position: absolute;
  right: clamp(22px, 6vw, 108px);
  bottom: clamp(48px, 7vw, 112px);
  display: grid;
  justify-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.canada-mark svg {
  width: clamp(110px, 14vw, 220px);
  fill: #ff0000;
  filter: drop-shadow(0 0 36px rgba(255, 0, 0, 0.28));
}

.canada-mark span {
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 650;
  font-stretch: 112%;
  text-transform: uppercase;
}

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

.company-band article {
  min-height: 320px;
}

.company-band p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(13.4px, 1.05vw, 16.8px);
  line-height: 1.65;
}

.canada-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(22px, 4vw, 72px) clamp(56px, 7vw, 100px);
  background: rgba(255, 255, 255, 0.1);
  background-clip: content-box;
}

.canada-strip div {
  min-height: 148px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(8, 14, 20, 0.92), rgba(4, 8, 12, 0.98)),
    radial-gradient(circle at 85% 18%, rgba(64, 91, 115, 0.16), transparent 30%);
}

.canada-strip strong,
.canada-strip span {
  display: block;
  text-transform: uppercase;
}

.canada-strip strong {
  margin-bottom: 32px;
  color: var(--maple);
  font-family: var(--font-ui);
  font-size: 11.8px;
  font-weight: 650;
  font-stretch: 112%;
}

.canada-strip span {
  color: rgba(245, 248, 251, 0.84);
  font-family: var(--font-ui);
  font-size: 10.9px;
  font-weight: 650;
  font-stretch: 112%;
  line-height: 1.45;
}

.career-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.career-cards article {
  min-height: 300px;
}

.apply-band {
  display: grid;
  gap: 26px;
  padding: clamp(52px, 7vw, 104px) clamp(22px, 4vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(4, 8, 12, 0.94), rgba(7, 13, 19, 0.98)),
    radial-gradient(circle at 82% 20%, rgba(64, 91, 115, 0.12), transparent 25%);
}

.systems-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
  min-height: 320px;
  padding: clamp(46px, 7vw, 100px) clamp(22px, 4vw, 72px);
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.94), rgba(9, 15, 18, 0.98)),
    radial-gradient(circle at 84% 32%, rgba(119, 144, 166, 0.14), transparent 28%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.systems-band h2 {
  max-width: 640px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.38vw, 39.2px);
  font-weight: 400;
  font-stretch: 112%;
  line-height: 1.05;
  text-transform: uppercase;
}

.systems-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
}

.systems-band li {
  min-height: 92px;
  padding: 22px;
  color: var(--muted);
  background: rgba(4, 9, 14, 0.92);
  font-family: var(--font-ui);
  font-size: 10.9px;
  font-weight: 650;
  font-stretch: 112%;
  line-height: 1.45;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(180px, 0.7fr));
  gap: clamp(28px, 4vw, 72px);
  padding: clamp(42px, 6vw, 86px) clamp(22px, 4vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(4, 8, 12, 0.98), rgba(13, 13, 13, 1)),
    radial-gradient(circle at 82% 10%, rgba(64, 91, 115, 0.12), transparent 28%);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 22px;
}

.footer-brand img {
  width: clamp(176px, 14vw, 260px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
}

.footer-brand p,
.footer-column p,
.footer-column a,
.footer-legal small {
  margin: 0;
  color: var(--muted);
  font-size: 11.8px;
  line-height: 1.6;
}

.footer-brand p {
  max-width: 460px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column span {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-family: var(--font-ui);
  font-size: 10.1px;
  font-weight: 650;
  font-stretch: 112%;
  text-transform: uppercase;
}

.footer-column a {
  font-family: var(--font-ui);
  font-weight: 650;
  font-stretch: 112%;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.footer-legal small {
  display: block;
  margin-top: 10px;
  color: rgba(168, 178, 191, 0.58);
  font-family: var(--font-ui);
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes productFloat {
  0%,
  100% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.045) translate3d(0, -10px, 0);
  }
}

@keyframes scanPulse {
  0%,
  100% {
    opacity: 0.18;
  }

  50% {
    opacity: 0.74;
  }
}

@keyframes deviceFloat {
  0%,
  100% {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.025) translate3d(0, -8px, 0);
  }
}

@keyframes constellationSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes constellationPulse {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .coordinates {
    max-width: 330px;
  }

  .hero-partner-rail {
    width: min(440px, 34vw);
  }

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

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

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

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

  .partner-panel-copy {
    border-top: 1px solid rgba(168, 178, 191, 0.14);
    border-left: 0;
  }

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

  .product-block,
  .product-block:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-block img,
  .product-block:nth-child(even) img {
    order: 0;
    height: clamp(300px, 48vw, 440px);
    min-height: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .operator-layer {
    grid-template-columns: 1fr;
  }

  .operator-visual {
    min-height: 560px;
  }

  .company-intro {
    width: min(760px, calc(100% - clamp(44px, 8vw, 144px)));
  }

  .canada-mark {
    opacity: 0.4;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100svh - 42px);
    background-position: 58% center;
  }

  .topbar {
    padding-top: 26px;
  }

  .hero-copy {
    margin-top: clamp(74px, 13vh, 128px);
  }

  .hero-star {
    top: 38%;
    left: 72%;
    opacity: 0.78;
  }

  .hero-partner-rail {
    right: 22px;
    bottom: 148px;
    width: min(420px, calc(100% - 44px));
  }

  .hero-partner-rail div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status-row {
    right: auto;
    bottom: 34px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
    width: min(560px, calc(100% - 44px));
  }

  .status-item {
    padding-right: 16px;
  }

  .status-item + .status-item {
    padding-left: 0;
    border-left: 0;
  }

  .status-item:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid var(--line);
  }

  .coordinates {
    display: none;
  }

  .home-tile-grid {
    grid-template-columns: 1fr;
  }

  .home-tile {
    grid-template-columns: minmax(0, 0.82fr) minmax(240px, 1fr);
    min-height: 360px;
  }

  .intel-strip {
    grid-template-columns: 1fr;
    min-height: 230px;
  }

  .products-intro {
    text-align: left;
  }

  .featured-product,
  .control-band,
  .solution-command-map,
  .solution-package,
  .solution-package:nth-child(even),
  .split-band,
  .company-band,
  .careers-band,
  .systems-band {
    grid-template-columns: 1fr;
  }

  .featured-media {
    min-height: 420px;
  }

  .solution-package:nth-child(even) figure {
    order: 0;
  }

  .solution-package figure {
    min-height: clamp(300px, 48vw, 440px);
  }

  .command-constellation {
    min-height: 430px;
  }

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

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

  .product-card-wide {
    grid-column: span 2;
  }

  .control-media {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .control-media::before {
    inset: 6% 0 8%;
  }

  .control-device-remote {
    transform: none;
  }

  .systems-band ul {
    grid-template-columns: 1fr;
  }

  .subpage-intro,
  .company-intro {
    width: calc(100% - 44px);
    margin-inline: 22px;
    text-align: left;
  }

  .subpage-intro p {
    margin-left: 0;
  }

  .career-cards,
  .system-showcase,
  .canada-strip {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .section-heading-left {
    justify-items: start;
    margin-left: 0;
    text-align: left;
  }

  .home-cta {
    grid-template-columns: 1fr;
  }

  .canada-mark {
    top: 108px;
    right: 24px;
    bottom: auto;
    opacity: 0.28;
  }

  .canada-mark span {
    display: none;
  }

  .signal-panel,
  .careers-band ul {
    grid-template-columns: 1fr;
  }

  .complex-diagram {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .complex-node-operator,
  .complex-node-cloud,
  .complex-node-gateway,
  .complex-node-aircraft,
  .complex-node-nav {
    grid-column: 1;
    grid-row: auto;
  }

  .complex-links {
    display: none;
  }

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

@media (max-width: 620px) {
  .hero {
    height: auto;
    min-height: 100svh;
    background-size: cover;
    background-position: 58% center;
  }

  .hero::before,
  .hero::after,
  .shade {
    inset: 0;
  }

  .hero-depth {
    inset: -8%;
    opacity: 0.72;
  }

  .topbar {
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding-top: 24px;
    padding-inline: 18px;
  }

  .brand {
    min-height: 38px;
  }

  .brand-logo {
    width: min(220px, calc(100vw - 88px));
  }

  .menu-button {
    width: 38px;
    height: 38px;
  }

  .hero-copy {
    width: calc(100% - 36px);
    margin-left: 18px;
    margin-top: clamp(120px, 22vh, 170px);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.86);
  }

  .kicker {
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(22px, 7vw, 34px);
    line-height: 1.08;
  }

  .hero-title {
    gap: 0.08em;
  }

  .hero-title span[aria-hidden="true"] {
    word-spacing: 0.34em;
  }

  .lead {
    font-size: 15.1px;
  }

  .hero-star {
    display: none;
  }

  .hero-partner-rail {
    right: 18px;
    bottom: 112px;
    left: 18px;
    width: auto;
    padding: 14px;
  }

  .hero-partner-rail > span {
    font-size: 8.4px;
  }

  .hero-partner-button {
    min-height: 38px;
    padding: 11px 8px;
    font-size: 7.6px;
  }

  .status-row {
    bottom: 32px;
    left: 18px;
    grid-template-columns: 1fr;
    row-gap: 12px;
    width: calc(100% - 36px);
  }

  .status-item,
  .status-item:nth-child(even) {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding: 0;
    border-left: 0;
  }

  .status-item:nth-child(n + 3) {
    display: none;
  }

  .status-item svg {
    width: 26px;
    height: 26px;
  }

  .status-item span {
    font-size: 9.2px;
  }

  .home-tile {
    position: relative;
    display: block;
    min-height: 360px;
    padding: 56px 18px 46px;
  }

  .home-tile-copy {
    position: relative;
    z-index: 4;
    width: 100%;
    min-height: auto;
  }

  .home-tile-products .home-tile-copy,
  .home-tile-company .home-tile-copy {
    width: 100%;
  }

  .home-tile-products {
    min-height: 360px;
  }

  .home-tile-products .home-tile-copy {
    width: min(86%, 520px);
  }

  .home-tile h2 {
    font-size: clamp(22px, 7.2vw, 32px);
  }

  .home-tile p {
    max-width: 100%;
    margin-top: 16px;
  }

  .home-tile-link {
    margin-top: 18px;
  }

  .home-tile-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    margin-top: 0;
    mask-image: none;
  }

  .home-tile-media::after {
    background:
      linear-gradient(90deg, rgba(25, 46, 64, 0.82) 0%, rgba(25, 46, 64, 0.42) 44%, rgba(13, 13, 13, 0.18) 100%),
      linear-gradient(180deg, rgba(13, 13, 13, 0.1), rgba(13, 13, 13, 0.34));
  }

  .home-tile-company .home-tile-media {
    margin-top: 0;
  }

  .home-tile-media img {
    height: 100%;
    min-height: 100%;
  }

  .home-product-cards {
    position: absolute;
    inset: 0;
    z-index: 1;
    flex-direction: row;
    width: 100%;
    height: 100%;
    margin-top: 0;
    border: 0;
  }

  .home-product-cards article {
    --cut: 86px;
    flex: 1 1 0;
    align-content: end;
    min-height: 100%;
    padding: 0 16px 18px;
    clip-path: polygon(0 0, 100% 0, calc(100% - var(--cut)) 100%, 0 100%) !important;
  }

  .home-product-cards article + article {
    margin-top: 0;
    margin-left: calc(var(--cut) * -1);
    padding-left: calc(var(--cut) + 16px);
    clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, 0 100%) !important;
  }

  .home-product-cards article:not(:first-child):not(:last-child) {
    clip-path: polygon(var(--cut) 0, 100% 0, calc(100% - var(--cut)) 100%, 0 100%) !important;
  }

  .home-product-cards article:last-child {
    clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, 0 100%) !important;
  }

  .home-product-cards article::before {
    display: none;
  }

  .home-product-cards article::after {
    background:
      linear-gradient(90deg, rgba(4, 8, 12, 0.58), rgba(4, 8, 12, 0.16)),
      linear-gradient(180deg, transparent 32%, rgba(4, 8, 12, 0.72) 100%);
  }

  .home-product-cards img {
    object-position: 50% 46%;
  }

  .home-product-cards article:nth-child(2) img {
    object-position: 50% 48%;
  }

  .home-product-cards article:nth-child(3) img {
    object-position: 50% 50%;
  }

  .intel-strip {
    padding: 34px 18px 46px;
  }

  .products-topbar {
    padding-bottom: 38px;
  }

  .products-intro,
  .subpage-intro,
  .featured-product,
  .product-catalog {
    width: calc(100% - 36px);
  }

  .products-intro h1,
  .subpage-intro h1 {
    font-size: clamp(23.8px, 7.14vw, 32.2px);
  }

  .subpage-hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .tech-stack,
  .solution-metrics,
  .partner-grid,
  .flow-grid,
  .career-cards {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
  }

  .home-partners,
  .home-systems,
  .mission-flow {
    padding: 42px 18px 54px;
  }

  .section-heading h2,
  .operator-copy h2,
  .home-cta h2 {
    font-size: clamp(21px, 7vw, 33.6px);
  }

  .home-partners .section-heading h2 {
    font-size: clamp(16.8px, 5.04vw, 21px);
  }

  .partner-grid article,
  .flow-grid article {
    min-height: 220px;
    padding: 22px;
  }

  .partner-panel {
    width: 100%;
  }

  .partner-buttons {
    padding: 18px;
  }

  .partner-button {
    min-height: 118px;
    padding: 22px 16px;
  }

  .partner-button strong {
    margin-bottom: 16px;
    font-size: 11.2px;
  }

  .partner-button span {
    font-size: 9.8px;
  }

  .product-block div {
    padding: 22px;
  }

  .solution-packages {
    width: calc(100% - 36px);
    padding: 42px 0 54px;
  }

  .solution-package {
    min-height: auto;
  }

  .solution-package-copy {
    padding: 22px;
  }

  .solution-package ul {
    grid-template-columns: 1fr;
  }

  .solution-command-map {
    padding: 42px 18px 54px;
  }

  .solution-detail-grid,
  .nested-complex {
    grid-template-columns: 1fr;
  }

  .nested-complex i {
    width: 1px;
    height: 28px;
    margin: 0 auto;
  }

  .nested-complex i::after {
    top: auto;
    right: 50%;
    bottom: 0;
    transform: translateX(50%) rotate(135deg);
  }

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

  .product-block-specs li {
    min-height: 48px;
    padding: 14px;
  }

  .partner-grid span,
  .flow-grid span {
    margin-bottom: 28px;
  }

  .operator-layer {
    min-height: auto;
    padding: 42px 18px 56px;
  }

  .operator-stats {
    grid-template-columns: 1fr;
  }

  .operator-stats div {
    min-height: 82px;
    padding: 18px;
  }

  .operator-visual {
    min-height: 520px;
  }

  .operator-tablet {
    top: 0;
    right: 0;
    width: 100%;
    height: 48%;
  }

  .operator-remote {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 48%;
  }

  .system-showcase {
    grid-template-columns: 1fr;
  }

  .system-showcase article {
    min-height: 470px;
  }

  .system-showcase div {
    padding: 20px;
  }

  .tech-node,
  .career-cards article {
    min-height: 230px;
    padding: 22px;
  }

  .technology-schematics {
    padding: 42px 18px 54px;
  }

  .complex-diagram {
    padding: 14px;
  }

  .complex-node {
    min-height: 150px;
    padding: 20px;
  }

  .schematic-card {
    min-height: auto;
    padding: 22px;
  }

  .flow-line {
    grid-template-columns: 1fr;
  }

  .flow-line i {
    width: 1px;
    height: 28px;
    margin: 0 auto;
  }

  .flow-line i::after {
    top: auto;
    right: 50%;
    bottom: 0;
    transform: translateX(50%) rotate(135deg);
  }

  .tech-node span,
  .career-cards span {
    margin-bottom: 28px;
  }

  .featured-media {
    min-height: 330px;
  }

  .featured-copy {
    gap: 18px;
  }

  .spec-grid,
  .product-catalog {
    grid-template-columns: 1fr;
  }

  .spec-grid div {
    min-height: 82px;
    padding: 18px;
  }

  .product-switcher {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .product-switcher button {
    flex: 0 0 auto;
  }

  .product-card,
  .product-card-wide {
    grid-column: auto;
    min-height: 470px;
  }

  .product-card div {
    padding: 20px;
  }

  .systems-band {
    padding: 42px 18px 54px;
  }

  .split-band,
  .company-band,
  .careers-band,
  .home-cta,
  .apply-band {
    padding: 42px 18px 54px;
  }

  .split-band h2,
  .company-band h2,
  .careers-band h2,
  .apply-band h2 {
    font-size: clamp(21px, 7vw, 33.6px);
  }

  .canada-strip {
    padding: 0 18px 54px;
  }

  .control-band {
    padding: 42px 18px 56px;
  }

  .control-copy h2 {
    font-size: clamp(22.4px, 7.7vw, 33.6px);
  }

  .control-device img,
  .control-device-remote img {
    height: 300px;
  }

  .control-device figcaption {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 8.4px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 18px 46px;
  }

  .footer-brand img {
    width: min(220px, 72vw);
  }
}

