:root {
  --ink: #071012;
  --ink-2: #0d1719;
  --ink-3: #142023;
  --paper: #f1eee5;
  --paper-2: #ddd4c0;
  --white: #fffaf0;
  --muted: rgba(255, 250, 240, 0.68);
  --muted-dark: rgba(7, 16, 18, 0.64);
  --line: rgba(255, 250, 240, 0.16);
  --line-dark: rgba(7, 16, 18, 0.14);
  --teal: #42d7d1;
  --teal-2: #7bd7c7;
  --copper: #b66f38;
  --sage: #88a894;
  --gold: #d3b06b;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  --max: 1180px;
  --product-max: 1320px;
  --section-pad: clamp(20px, 6vw, 80px);
  --header-height: 76px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family:
    Inter,
    "SF Pro Display",
    "PingFang SC",
    "Microsoft YaHei",
    system-ui,
    sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto 46px;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  padding: 0 clamp(20px, 4vw, 58px);
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 16, 18, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-block;
  position: relative;
  border: 1px solid rgba(66, 215, 209, 0.74);
  transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
}

.brand-mark::before {
  inset: 7px;
  border: 1px solid rgba(255, 250, 240, 0.5);
}

.brand-mark::after {
  inset: 13px;
  background: var(--copper);
}

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

.brand strong {
  color: var(--white);
  font-size: 17px;
  line-height: 1.08;
  font-weight: 820;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 250, 240, 0.56);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.main-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: clamp(18px, 2.25vw, 32px);
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(15px, 0.92vw, 17px);
  font-weight: 780;
  transform: translateX(clamp(-72px, -3vw, -28px));
}

.main-nav > a,
.nav-link {
  position: relative;
  padding: 25px 0;
}

.main-nav > a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: inherit;
}

.nav-link > span {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link,
.nav-item.is-open .nav-link {
  color: #e04b41;
}

.nav-item:hover .nav-link > span,
.nav-item:focus-within .nav-link > span,
.nav-item.is-open .nav-link > span {
  transform: rotate(225deg) translate(-1px, -1px);
}

.product-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: max-content;
  max-width: min(360px, 78vw);
  padding: 16px 0 0;
  background: transparent;
  color: var(--white);
  box-shadow: none;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.nav-item:hover .product-menu,
.nav-item:focus-within .product-menu,
.nav-item.is-open .product-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 22px 0 0;
  color: rgba(255, 250, 240, 0.94);
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 820;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
  transition:
    background 140ms ease,
    color 140ms ease,
    padding 140ms ease;
}

.main-nav .nav-item:last-child .product-menu {
  left: auto;
  right: 0;
  min-width: max-content;
}

.main-nav .nav-item:last-child .product-menu a {
  padding-right: 0;
  white-space: nowrap;
}

.product-menu a:hover,
.product-menu a:focus-visible {
  padding-left: 0;
  background: transparent;
  color: var(--teal);
}

.search-toggle {
  grid-column: 3;
  width: 46px;
  height: 46px;
  justify-self: end;
  position: relative;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.32);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  backdrop-filter: none;
  box-shadow: none;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.search-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(66, 215, 209, 0.22));
}

.search-toggle:hover,
.search-toggle:focus-visible {
  border-color: rgba(66, 215, 209, 0.76);
  background: transparent;
  color: #fffdf8;
  box-shadow: none;
  transform: translateY(-1px);
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: start center;
  padding: calc(var(--header-height) + 24px) 20px 34px;
  background: rgba(5, 10, 11, 0.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-panel {
  width: min(720px, 100%);
  max-height: calc(100vh - var(--header-height) - 58px);
  position: relative;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  background: #fffaf0;
  color: var(--ink);
  overflow: auto;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.search-panel .eyebrow {
  margin-bottom: 10px;
  color: #99612e;
  font-size: 11px;
}

.search-panel h2 {
  margin-bottom: 16px;
  padding-right: 42px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}

.search-panel input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

.search-panel input:focus {
  border-color: var(--teal);
}

.search-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
}

.search-close::before,
.search-close::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 16px;
  height: 2px;
  background: var(--ink);
}

.search-close::before {
  transform: rotate(45deg);
}

.search-close::after {
  transform: rotate(-45deg);
}

.search-results {
  margin-top: 14px;
  max-height: clamp(260px, 42vh, 420px);
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
  overflow: auto;
}

.search-results a {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 5px 14px;
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
}

.search-results a:hover,
.search-results a:focus-visible {
  background: #fff;
}

.search-results span {
  grid-row: span 2;
  color: #99612e;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.search-results strong {
  font-size: 16px;
  line-height: 1.18;
}

.search-results p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: center;
  padding: calc(var(--header-height) + 36px) clamp(20px, 6vw, 80px) clamp(58px, 8vh, 88px);
  overflow: hidden;
  --parallax-x: 0px;
  --parallax-y: 0px;
}

.hero-media,
.hero-media img,
.hero-media::before,
.hero-scan,
.mesh-canvas,
.home-signal-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 500ms ease-out;
}

.hero-media::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 18, 0.24) 0%, rgba(7, 16, 18, 0.22) 34%, rgba(7, 16, 18, 0.06) 68%, rgba(7, 16, 18, 0.12) 100%),
    radial-gradient(circle at 78% 42%, rgba(71, 166, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(7, 16, 18, 0.02), rgba(7, 16, 18, 0.3));
}

.hero-scan {
  z-index: 2;
  opacity: 0.45;
  background:
    linear-gradient(rgba(255, 250, 240, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.03) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, #000 0 58%, transparent 88%);
  animation: scanGrid 18s linear infinite;
}

.mesh-canvas {
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.94;
}

.home-signal-overlay {
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.home-signal-lines path {
  fill: none;
  stroke: rgba(102, 188, 255, 0.88);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter:
    drop-shadow(0 0 3px rgba(130, 211, 255, 0.82))
    drop-shadow(0 0 10px rgba(53, 145, 255, 0.45));
  animation: homeSignalTrace 8.8s cubic-bezier(0.2, 0.72, 0.14, 1) infinite;
  animation-delay: calc(var(--i) * 0.18s);
}

.home-signal-nodes circle {
  fill: #b9ecff;
  opacity: 0;
  filter:
    drop-shadow(0 0 4px #fff)
    drop-shadow(0 0 12px rgba(84, 181, 255, 0.9))
    drop-shadow(0 0 24px rgba(34, 128, 255, 0.58));
  transform-box: fill-box;
  transform-origin: center;
  animation: homeSignalNode 8.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.16s);
}

@keyframes homeSignalTrace {
  0%,
  10% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  24% {
    opacity: 0.95;
  }
  46%,
  76% {
    stroke-dashoffset: 0;
    opacity: 0.86;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes homeSignalNode {
  0%,
  8% {
    opacity: 0;
    transform: scale(0.65);
  }
  18% {
    opacity: 1;
    transform: scale(1.55);
  }
  28%,
  76% {
    opacity: 0.92;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.72);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-signal-lines path,
  .home-signal-nodes circle {
    animation: none;
    opacity: 0.72;
    stroke-dashoffset: 0;
  }
}

.hero-inner {
  width: min(100%, 1320px);
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding-top: 20px;
  text-shadow:
    0 3px 22px rgba(0, 0, 0, 0.78),
    0 1px 2px rgba(0, 0, 0, 0.9);
}

.hero .eyebrow {
  margin-bottom: 18px;
  color: rgba(66, 215, 209, 0.92);
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(58px, 5.7vw, 106px);
  line-height: 1.04;
}

.hero h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--teal);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 820;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7.4vw, 104px);
  line-height: 0.98;
  font-weight: 860;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 8px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  background: rgba(6, 14, 16, 0.22);
  backdrop-filter: blur(14px);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  font-size: 15px;
  font-weight: 820;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.hero-actions .button {
  min-width: 132px;
  min-height: 46px;
  padding: 0 22px;
  border-color: rgba(255, 250, 240, 0.22);
}

.hero-actions .button-primary {
  background: rgba(255, 250, 240, 0.04);
  color: var(--white);
}

.hero-actions .button-primary:hover,
.hero-actions .button-primary:focus-visible {
  border-color: rgba(66, 215, 209, 0.74);
  background: rgba(255, 250, 240, 0.08);
}

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

.button-primary {
  border-color: transparent;
  background: var(--white);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal);
}

.button-ghost {
  background: rgba(255, 250, 240, 0.04);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(66, 215, 209, 0.74);
}

.section {
  scroll-margin-top: var(--header-height);
  padding: clamp(82px, 10vw, 132px) var(--section-pad);
}

.anchor-target {
  position: absolute;
  top: calc(var(--header-height) * -1);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.performance-copy h2,
.video-copy h2,
.proof-section h2,
.contact-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.04;
  font-weight: 860;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.story-copy p:not(.eyebrow),
.performance-copy p,
.video-copy p,
.proof-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.intro-section,
.performance-section,
.proof-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(231, 224, 207, 0.98)),
    var(--paper);
  color: var(--ink);
}

.intro-section .eyebrow,
.performance-section .eyebrow,
.proof-section .eyebrow {
  color: #99612e;
}

.intro-section .section-heading p:not(.eyebrow),
.performance-section .performance-copy p,
.proof-section .section-heading p:not(.eyebrow) {
  color: var(--muted-dark);
}

.feature-grid,
.solution-grid,
.radio-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
  gap: 1px;
}

.feature-card {
  min-height: 336px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 253, 248, 0.78);
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-3px);
  background: #fffaf0;
  box-shadow: 0 24px 58px rgba(72, 53, 27, 0.14);
}

.feature-card span,
.solution-card span {
  display: block;
  margin-bottom: 58px;
  color: #99612e;
  font-size: 13px;
  font-weight: 860;
}

.feature-card h3,
.radio-card h3,
.solution-card h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.13;
  letter-spacing: 0;
}

.feature-card p {
  color: var(--muted-dark);
}

.feature-card strong {
  margin-top: auto;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.intro-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
  background:
    linear-gradient(rgba(7, 16, 18, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 18, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, #faf5ea 0%, #e8decb 100%);
  background-size: 82px 82px, 82px 82px, auto;
}

.intro-section .section-heading {
  width: min(100%, var(--max));
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  column-gap: clamp(34px, 5vw, 72px);
  row-gap: 10px;
  align-items: end;
  margin-bottom: clamp(24px, 3.2vw, 36px);
  text-align: left;
}

.intro-section .section-heading h2 {
  grid-column: 1;
  margin-bottom: 10px;
  font-size: clamp(32px, 4.2vw, 54px);
}

.intro-section .section-heading .eyebrow {
  grid-column: 1;
}

.intro-section .section-heading p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  max-width: 540px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.intro-section .feature-grid {
  gap: clamp(12px, 1.8vw, 18px);
  border: 0;
  background: transparent;
}

.intro-section .feature-card {
  position: relative;
  min-height: 210px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(7, 16, 18, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(248, 243, 232, 0.84));
  box-shadow: 0 18px 50px rgba(72, 53, 27, 0.08);
  overflow: hidden;
}

.intro-section .feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), rgba(66, 215, 209, 0.72));
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 160ms ease;
}

.intro-section .feature-card:hover::before,
.intro-section .feature-card:focus-visible::before {
  transform: scaleX(1);
}

.intro-section .feature-card span {
  margin-bottom: clamp(28px, 3.2vw, 42px);
  color: #9b6030;
}

.intro-section .feature-card h3 {
  margin-bottom: 9px;
}

.intro-section .feature-card p {
  font-size: 15px;
  line-height: 1.5;
}

.intro-section .feature-card strong {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: clamp(22px, 2vw, 30px);
  color: rgba(7, 16, 18, 0.84);
}

.intro-section .feature-card strong::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(66, 215, 209, 0.9);
}

.industry-section {
  scroll-margin-top: var(--header-height);
  padding: clamp(72px, 9vw, 112px) clamp(20px, 6vw, 80px);
  background: linear-gradient(90deg, #071012, #0c191b);
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
}

.industry-section .section-heading {
  width: min(100%, var(--max));
  max-width: var(--max);
  margin-bottom: 34px;
}

.industry-links {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry-links a {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(255, 250, 240, 0.82);
  font-size: 18px;
  font-weight: 820;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.industry-links a:hover,
.industry-links a:focus-visible {
  background: rgba(66, 215, 209, 0.12);
  color: var(--white);
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(380px, 510px);
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 60px);
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
  background:
    linear-gradient(180deg, rgba(248, 243, 232, 0.98), rgba(226, 216, 196, 0.98)),
    var(--paper);
  color: var(--ink);
  box-shadow:
    inset 0 1px rgba(7, 16, 18, 0.08),
    inset 0 -1px rgba(7, 16, 18, 0.08);
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7, 16, 18, 0.2), transparent);
}

.story-copy {
  max-width: 610px;
  justify-self: stretch;
}

.story-copy .eyebrow,
.proof-copy .eyebrow {
  color: #99612e;
}

.story-copy h2 {
  max-width: 610px;
  margin-bottom: 12px;
  font-size: clamp(34px, 3.7vw, 52px);
}

.story-copy p:not(.eyebrow),
.proof-copy p:not(.eyebrow) {
  color: var(--muted-dark);
}

.story-copy p:not(.eyebrow) {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.62;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.story-actions .button {
  min-width: 168px;
}

.story-section .button-ghost {
  border-color: var(--line-dark);
  background: rgba(255, 253, 248, 0.46);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(72, 53, 27, 0.08);
}

.story-section .button-ghost:hover,
.story-section .button-ghost:focus-visible {
  border-color: rgba(66, 215, 209, 0.82);
  background: rgba(66, 215, 209, 0.12);
}

.story-visual {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  padding: 0;
  border: 1px solid rgba(7, 16, 18, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(249, 244, 234, 0.92));
  box-shadow: 0 24px 60px rgba(72, 53, 27, 0.1);
}

.story-visual img {
  width: min(100%, 330px);
  filter:
    drop-shadow(0 22px 42px rgba(72, 53, 27, 0.2))
    drop-shadow(0 0 16px rgba(66, 215, 209, 0.14));
  animation: deviceFloat 7s ease-in-out infinite;
}

.proof-copy {
  position: relative;
  padding: clamp(26px, 3vw, 34px) clamp(24px, 3vw, 34px) 18px;
  border-bottom: 1px solid rgba(7, 16, 18, 0.12);
}

.proof-copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), rgba(66, 215, 209, 0.72));
}

.proof-copy h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.12;
  font-weight: 860;
  letter-spacing: 0;
}

.proof-copy p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 840;
  letter-spacing: 0.08em;
}

.text-link::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  transition: width 160ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 64px;
}

.performance-section {
  overflow: hidden;
}

.performance-copy {
  width: min(100%, var(--max));
  margin: 0 auto clamp(34px, 5vw, 56px);
  max-width: var(--max);
}

.performance-copy p {
  max-width: 720px;
}

.product-family-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-family-card {
  min-height: 364px;
  display: grid;
  grid-template-rows: auto 148px auto auto 1fr;
  align-items: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 241, 229, 0.86)),
    var(--paper);
  color: var(--ink);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.product-family-card.is-featured {
  grid-column: span 2;
}

.product-family-card:hover,
.product-family-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(7, 16, 18, 0.28);
  box-shadow: 0 24px 70px rgba(55, 40, 24, 0.16);
}

.product-family-card span {
  color: #99612e;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-family-card.is-featured span {
  color: #99612e;
}

.product-family-card > img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(7, 16, 18, 0.08);
  filter: saturate(0.94) contrast(1.04);
}

.product-family-card.is-featured > img {
  border-color: rgba(7, 16, 18, 0.08);
  filter: saturate(0.94) contrast(1.04);
}

.product-family-hero-thumb {
  position: relative;
  width: 100%;
  height: 148px;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 18, 0.08);
  background: #061113;
  color: var(--white);
  isolation: isolate;
}

.product-family-hero-thumb img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08) brightness(0.78);
}

.product-family-hero-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 9, 10, 0.9) 0%, rgba(3, 9, 10, 0.52) 52%, rgba(3, 9, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 9, 10, 0.12), rgba(3, 9, 10, 0.76));
}

.product-family-hero-copy {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 14px;
  z-index: 2;
}

.product-family-hero-copy small {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 860;
}

.product-family-hero-copy b {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 0.96;
  letter-spacing: 0;
}

.product-family-hero-copy em {
  display: block;
  max-width: 92%;
  color: rgba(255, 250, 240, 0.78);
  font-size: 9px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 680;
}

.product-family-card h3 {
  margin: 0;
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.12;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.product-family-card p {
  color: var(--muted-dark);
  font-size: 15px;
}

.product-family-card.is-featured p {
  color: var(--muted-dark);
}

.product-family-card strong {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-family-card strong::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: width 160ms ease;
}

.product-family-card:hover strong::after,
.product-family-card:focus-visible strong::after {
  width: 54px;
}

.product-stage {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  align-items: stretch;
  border: 1px solid var(--line-dark);
  background: #fffaf0;
  box-shadow: var(--shadow);
}

.product-stage > div {
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(7, 16, 18, 0.04), rgba(136, 168, 148, 0.13)),
    #fffdf8;
}

.product-stage img {
  width: min(100%, 760px);
  max-height: 560px;
  object-fit: contain;
}

.product-stage dl {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-left: 1px solid var(--line-dark);
  background: var(--ink);
}

.product-stage dl div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.product-stage dl div:last-child {
  border-bottom: 0;
}

.product-stage dt {
  margin-bottom: 8px;
  color: rgba(255, 250, 240, 0.52);
  font-size: 13px;
}

.product-stage dd {
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.02;
  font-weight: 860;
}

.radio-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.radio-card {
  min-height: 382px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 253, 248, 0.76);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.radio-card:hover {
  transform: translateY(-3px);
  background: #fffaf0;
  box-shadow: 0 22px 62px rgba(72, 53, 27, 0.13);
}

.radio-card img {
  width: 100%;
  height: 158px;
  object-fit: contain;
  margin-bottom: 26px;
  filter: drop-shadow(0 16px 18px rgba(45, 32, 18, 0.14));
}

.radio-card p {
  color: var(--muted-dark);
}

.solutions-section {
  background:
    linear-gradient(180deg, #091316 0%, #071012 100%);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.solution-card {
  min-height: 334px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.065), rgba(255, 250, 240, 0.018)),
    var(--ink-2);
}

.solution-card span {
  color: var(--teal);
}

.solution-card p {
  color: rgba(255, 250, 240, 0.64);
}

.video-band {
  scroll-margin-top: var(--header-height);
  min-height: 560px;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: clamp(78px, 11vw, 138px) clamp(20px, 6vw, 80px);
  overflow: hidden;
}

.video-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 48%, rgba(66, 215, 209, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(7, 16, 18, 0.96), rgba(7, 16, 18, 0.62) 58%, rgba(7, 16, 18, 0.8));
}

.video-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 250, 240, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.028) 1px, transparent 1px);
  background-size: 70px 70px;
}

.video-copy {
  width: min(100%, var(--max));
  margin: 0 auto;
  max-width: 720px;
  justify-self: center;
}

.video-copy p {
  max-width: 610px;
  margin-bottom: 28px;
}

.proof-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.proof-layout .section-heading {
  margin: 0;
  text-align: left;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
  gap: 1px;
}

.proof-metrics div {
  min-height: 178px;
  padding: 26px;
  background: rgba(255, 253, 248, 0.8);
}

.proof-metrics strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  font-weight: 860;
}

.proof-metrics p {
  color: var(--muted-dark);
}

.story-proof-panel .proof-metrics {
  margin: clamp(18px, 2.4vw, 26px) clamp(20px, 3vw, 30px) clamp(20px, 3vw, 30px);
  border: 0;
  background: transparent;
  gap: 12px;
}

.story-proof-panel .proof-metrics div {
  min-height: 112px;
  padding: 18px 18px;
  border: 1px solid rgba(7, 16, 18, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(244, 238, 226, 0.72));
}

.story-proof-panel .proof-metrics strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(28px, 2.4vw, 38px);
  white-space: nowrap;
}

.story-proof-panel .proof-metrics p {
  font-size: 14px;
  line-height: 1.4;
}

.contact-section {
  scroll-margin-top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 360px);
  justify-content: center;
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  padding: clamp(70px, 9vw, 112px) var(--section-pad);
  background: linear-gradient(90deg, rgba(7, 16, 18, 0.94), rgba(14, 32, 33, 0.94));
  border-top: 1px solid var(--line);
}

.contact-copy {
  max-width: 760px;
  justify-self: start;
  width: 100%;
  text-align: left;
}

.contact-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-left: 0;
  margin-right: 0;
}

.contact-actions {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.contact-qr-set {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.contact-qr {
  width: clamp(108px, 8.5vw, 138px);
  margin: 0;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(9, 25, 26, 0.94), rgba(5, 15, 17, 0.98)),
    rgba(7, 18, 20, 0.96);
  border: 1px solid rgba(245, 240, 229, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(66, 215, 209, 0.05);
}

.contact-qr img {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1) brightness(0.96) sepia(0.1) saturate(1.3) hue-rotate(130deg);
  mix-blend-mode: screen;
  opacity: 0.88;
}

.contact-qr figcaption {
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-align: center;
}

.detail-hero {
  min-height: 72svh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 72px) clamp(20px, 6vw, 80px) clamp(62px, 8vw, 96px);
  overflow: hidden;
}

.detail-hero-media,
.detail-hero-media::before {
  position: absolute;
  inset: 0;
}

.detail-hero-media {
  z-index: -2;
}

.detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(0.72) contrast(1.08);
}

.detail-hero-media::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 18, 0.98), rgba(7, 16, 18, 0.78) 44%, rgba(7, 16, 18, 0.48)),
    linear-gradient(180deg, rgba(7, 16, 18, 0.12), rgba(7, 16, 18, 0.92));
}

body[data-product-page="airborne"] .detail-hero {
  min-height: 78svh;
  background: #02090a;
}

body[data-product-page="airborne"] .detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 34%, rgba(66, 215, 209, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 58%, rgba(66, 215, 209, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 61% 68%, rgba(66, 215, 209, 0.18) 0 2px, transparent 3px),
    linear-gradient(118deg, transparent 0 52%, rgba(66, 215, 209, 0.18) 52.08%, transparent 52.22%),
    linear-gradient(145deg, transparent 0 57%, rgba(66, 215, 209, 0.16) 57.08%, transparent 57.22%),
    linear-gradient(22deg, transparent 0 63%, rgba(66, 215, 209, 0.12) 63.08%, transparent 63.22%);
  opacity: 0;
  mix-blend-mode: screen;
}

body[data-product-page="airborne"] .detail-hero-media {
  display: block;
  padding: 0;
}

body[data-product-page="airborne"] .detail-hero-media img {
  opacity: 1;
  filter: none;
  object-fit: cover;
  object-position: center;
  transform: none;
}

body[data-product-page="airborne"] .detail-hero-media::before {
  background:
    linear-gradient(90deg, rgba(3, 9, 10, 0.98) 0%, rgba(3, 9, 10, 0.9) 34%, rgba(3, 9, 10, 0.52) 56%, rgba(3, 9, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 9, 10, 0.1), rgba(3, 9, 10, 0.42));
}

body[data-product-page="handheld"] .detail-hero {
  min-height: 78svh;
}

body[data-product-page="handheld"] .detail-hero {
  background: #02090a;
}

body[data-product-page="handheld"] .detail-hero.handheld-hero-plain {
  background:
    linear-gradient(90deg, #02090a 0%, #061113 48%, #081819 100%),
    linear-gradient(180deg, rgba(66, 215, 209, 0.08), rgba(3, 9, 10, 0.5));
}

body[data-product-page="handheld"] .detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 34%, rgba(66, 215, 209, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 58%, rgba(66, 215, 209, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 70%, rgba(66, 215, 209, 0.16) 0 2px, transparent 3px),
    linear-gradient(116deg, transparent 0 51%, rgba(66, 215, 209, 0.14) 51.08%, transparent 51.2%),
    linear-gradient(146deg, transparent 0 56%, rgba(66, 215, 209, 0.12) 56.08%, transparent 56.2%),
    linear-gradient(24deg, transparent 0 64%, rgba(66, 215, 209, 0.1) 64.08%, transparent 64.2%);
  opacity: 0;
  mix-blend-mode: screen;
}

body[data-product-page="handheld"] .detail-hero-media img {
  opacity: 1;
  filter: none;
  object-fit: cover;
  object-position: center;
  transform: none;
}

body[data-product-page="handheld"] .detail-hero-media::before {
  background:
    linear-gradient(90deg, rgba(3, 9, 10, 0.98) 0%, rgba(3, 9, 10, 0.9) 34%, rgba(3, 9, 10, 0.52) 56%, rgba(3, 9, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 9, 10, 0.1), rgba(3, 9, 10, 0.42));
}

body[data-product-page="oem"] .detail-hero {
  min-height: 78svh;
}

body[data-product-page="oem"] .detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 34%, rgba(66, 215, 209, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 58%, rgba(66, 215, 209, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 70%, rgba(66, 215, 209, 0.14) 0 2px, transparent 3px),
    linear-gradient(116deg, transparent 0 51%, rgba(66, 215, 209, 0.13) 51.08%, transparent 51.2%),
    linear-gradient(146deg, transparent 0 56%, rgba(66, 215, 209, 0.11) 56.08%, transparent 56.2%),
    linear-gradient(24deg, transparent 0 64%, rgba(66, 215, 209, 0.1) 64.08%, transparent 64.2%);
  opacity: 0.68;
  mix-blend-mode: screen;
}

body[data-product-page="oem"] .detail-hero-media img {
  opacity: 0.9;
  filter: saturate(0.92) contrast(1.08) brightness(0.82);
  object-position: center;
}

body[data-product-page="oem"] .detail-hero-media::before {
  background:
    linear-gradient(90deg, rgba(3, 9, 10, 0.98) 0%, rgba(4, 11, 12, 0.88) 34%, rgba(4, 11, 12, 0.42) 62%, rgba(4, 11, 12, 0.08) 100%),
    radial-gradient(circle at 76% 40%, rgba(66, 215, 209, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(3, 9, 10, 0.08), rgba(3, 9, 10, 0.78));
}

body[data-product-page="manpack"] .detail-hero {
  min-height: 78svh;
  background: #02090a;
}

body[data-product-page="manpack"] .detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 34%, rgba(66, 215, 209, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 58%, rgba(66, 215, 209, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 72%, rgba(66, 215, 209, 0.14) 0 2px, transparent 3px),
    linear-gradient(118deg, transparent 0 50%, rgba(66, 215, 209, 0.13) 50.08%, transparent 50.2%),
    linear-gradient(146deg, transparent 0 58%, rgba(66, 215, 209, 0.11) 58.08%, transparent 58.2%),
    linear-gradient(26deg, transparent 0 65%, rgba(66, 215, 209, 0.1) 65.08%, transparent 65.2%);
  opacity: 0;
  mix-blend-mode: screen;
}

body[data-product-page="manpack"] .detail-hero-media img {
  opacity: 1;
  filter: none;
  object-fit: cover;
  object-position: center;
  transform: translateX(8vw) scale(1.1);
  transform-origin: center center;
}

body[data-product-page="manpack"] .detail-hero-media::before {
  background:
    linear-gradient(90deg, rgba(3, 9, 10, 0.98) 0%, rgba(3, 9, 10, 0.9) 34%, rgba(3, 9, 10, 0.52) 56%, rgba(3, 9, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 9, 10, 0.1), rgba(3, 9, 10, 0.42));
}

body[data-product-page="vehicle-outdoor"] .detail-hero {
  min-height: 78svh;
  background: #02090a;
}

body[data-product-page="vehicle-outdoor"] .detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 34%, rgba(66, 215, 209, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 60%, rgba(66, 215, 209, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 72%, rgba(66, 215, 209, 0.14) 0 2px, transparent 3px),
    linear-gradient(118deg, transparent 0 52%, rgba(66, 215, 209, 0.14) 52.08%, transparent 52.2%),
    linear-gradient(146deg, transparent 0 58%, rgba(66, 215, 209, 0.1) 58.08%, transparent 58.2%);
  opacity: 0;
  mix-blend-mode: screen;
}

body[data-product-page="vehicle-outdoor"] .detail-hero-media img {
  opacity: 1;
  filter: none;
  object-fit: cover;
  object-position: center;
  transform: none;
}

body[data-product-page="vehicle-outdoor"] .detail-hero-media::before {
  background:
    linear-gradient(90deg, rgba(3, 9, 10, 0.98) 0%, rgba(3, 9, 10, 0.9) 34%, rgba(3, 9, 10, 0.52) 56%, rgba(3, 9, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 9, 10, 0.1), rgba(3, 9, 10, 0.42));
}

body[data-product-page="vehicle-outdoor"] .detail-hero-inner h1 {
  max-width: min(100%, 1100px);
}

body[data-product-page="vehicle-outdoor"] .hero-title-line {
  white-space: nowrap;
}

body[data-product-page="vehicle-outdoor"] .hero-title-line + .hero-title-line {
  font-size: clamp(30px, 5.2vw, 82px);
}

body[data-product-page="ddlmesh"] .detail-hero {
  min-height: 78svh;
}

body[data-product-page="ddlmesh"] .detail-hero.ddlmesh-hero-plain {
  background:
    radial-gradient(circle at 78% 40%, rgba(66, 215, 209, 0.13), transparent 30%),
    linear-gradient(90deg, #02090a 0%, #061113 48%, #081819 100%),
    linear-gradient(180deg, rgba(66, 215, 209, 0.08), rgba(3, 9, 10, 0.5));
}

body[data-product-page="ddlmesh"] .detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 34%, rgba(66, 215, 209, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 58%, rgba(66, 215, 209, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 72%, rgba(66, 215, 209, 0.14) 0 2px, transparent 3px),
    linear-gradient(118deg, transparent 0 52%, rgba(66, 215, 209, 0.13) 52.08%, transparent 52.2%),
    linear-gradient(146deg, transparent 0 58%, rgba(66, 215, 209, 0.11) 58.08%, transparent 58.2%);
  opacity: 0.68;
  mix-blend-mode: screen;
}

body[data-product-page="ddlmesh"] .detail-hero-media img {
  opacity: 0.94;
  filter: saturate(0.92) contrast(1.08) brightness(0.88);
  object-position: center;
}

body[data-product-page="ddlmesh"] .detail-hero-media::before {
  background:
    linear-gradient(90deg, rgba(3, 9, 10, 0.98) 0%, rgba(4, 11, 12, 0.9) 34%, rgba(4, 11, 12, 0.36) 62%, rgba(4, 11, 12, 0.08) 100%),
    radial-gradient(circle at 78% 40%, rgba(66, 215, 209, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(3, 9, 10, 0.08), rgba(3, 9, 10, 0.82));
}

body[data-product-page="sdr400"] .detail-hero {
  min-height: 78svh;
}

body[data-product-page="sdr400"] .detail-hero.sdr400-hero-plain {
  background:
    radial-gradient(ellipse at 78% 42%, rgba(46, 76, 108, 0.3) 0%, rgba(9, 23, 30, 0.16) 36%, transparent 62%),
    linear-gradient(90deg, #02090a 0%, #061113 48%, #081819 100%),
    linear-gradient(180deg, rgba(66, 215, 209, 0.08), rgba(3, 9, 10, 0.5));
}

body[data-product-page="sdr400"] .detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 32%, rgba(66, 215, 209, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 58%, rgba(66, 215, 209, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 72%, rgba(66, 215, 209, 0.14) 0 2px, transparent 3px),
    linear-gradient(116deg, transparent 0 50%, rgba(66, 215, 209, 0.13) 50.08%, transparent 50.2%),
    linear-gradient(146deg, transparent 0 58%, rgba(66, 215, 209, 0.11) 58.08%, transparent 58.2%);
  opacity: 0.46;
  mix-blend-mode: screen;
}

body[data-product-page="sdr400"] .detail-hero-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--header-height) + 18px) clamp(8px, 3vw, 44px) clamp(22px, 4vw, 48px) clamp(20px, 6vw, 80px);
}

body[data-product-page="sdr400"] .detail-hero-media img {
  position: relative;
  z-index: 0;
  flex: 0 0 auto;
  width: min(70vw, 1220px);
  height: auto;
  max-width: 100%;
  max-height: calc(100% - 10px);
  object-fit: contain;
  opacity: 0.92;
  filter: saturate(0.92) contrast(1.08) brightness(0.84);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 96%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 96%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
  object-position: right center;
}

body[data-product-page="sdr400"] .detail-hero-media::before {
  background:
    linear-gradient(90deg, rgba(3, 9, 10, 0.98) 0%, rgba(3, 9, 10, 0.92) 34%, rgba(3, 9, 10, 0.68) 50%, rgba(3, 9, 10, 0.22) 78%, rgba(3, 9, 10, 0.1) 100%),
    radial-gradient(circle at 76% 42%, rgba(66, 215, 209, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(3, 9, 10, 0.08), rgba(3, 9, 10, 0.84));
}

body[data-product-page="sdr400"] .detail-hero-inner p:not(.eyebrow) {
  white-space: pre-line;
}

body[data-product-page="sdr400"] .detail-hero-inner h1 {
  max-width: min(100%, 980px);
}

body[data-product-page="sdr400"] .sdr400-title-main,
body[data-product-page="sdr400"] .sdr400-title-series {
  display: inline-block;
}

body[data-product-page="sdr400"] .sdr400-title-series {
  margin-left: 0.16em;
}

body[data-product-page="sdr400"] .sdr400-mobile-title {
  display: none;
}

.product-hero-title-mobile {
  display: none;
}

body[data-page="technology-solution"] {
  background: var(--paper);
  color: var(--ink);
  color-scheme: light;
}

body[data-page="technology-solution"] .detail-hero {
  min-height: 76svh;
  background: #02090a;
}

body[data-page="technology-solution"] .detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 34%, rgba(66, 215, 209, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 58%, rgba(66, 215, 209, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 61% 68%, rgba(66, 215, 209, 0.16) 0 2px, transparent 3px),
    linear-gradient(118deg, transparent 0 52%, rgba(66, 215, 209, 0.16) 52.08%, transparent 52.2%),
    linear-gradient(145deg, transparent 0 57%, rgba(66, 215, 209, 0.12) 57.08%, transparent 57.2%);
  opacity: 0.52;
  mix-blend-mode: screen;
}

body[data-page="technology-solution"] .detail-hero-media img {
  opacity: 1;
  filter: saturate(0.82) contrast(1.08) brightness(0.86);
  object-position: center;
}

body[data-page="technology-solution"] .detail-hero-media::before {
  background:
    linear-gradient(90deg, rgba(3, 9, 10, 0.98) 0%, rgba(3, 9, 10, 0.88) 36%, rgba(3, 9, 10, 0.5) 62%, rgba(3, 9, 10, 0.1) 100%),
    linear-gradient(180deg, rgba(3, 9, 10, 0.08), rgba(3, 9, 10, 0.78));
}

body[data-page="technology-solution"] .detail-hero-inner h1 {
  max-width: min(100%, 980px);
  color: var(--white);
  text-shadow:
    0 3px 26px rgba(0, 0, 0, 0.78),
    0 1px 2px rgba(0, 0, 0, 0.86);
}

body[data-page="technology-solution"] .detail-hero-inner p:not(.eyebrow) {
  max-width: 880px;
  color: rgba(255, 250, 240, 0.78);
}

.tech-intro-section,
.tech-hardware-section,
.tech-solution-section,
.tech-split-section,
.tech-process-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(232, 225, 210, 0.96)),
    var(--paper);
  color: var(--ink);
}

body[data-page="technology-solution"] .section-heading .eyebrow,
.tech-split-copy .eyebrow {
  color: #99612e;
}

body[data-page="technology-solution"] .section-heading p:not(.eyebrow),
.tech-split-copy p:not(.eyebrow) {
  color: var(--muted-dark);
}

.tech-intro-section {
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(44px, 5vw, 70px);
}

.tech-intro-panel {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(28px, 4.2vw, 52px);
  border: 1px solid var(--line-dark);
  background: rgba(255, 253, 248, 0.72);
}

.tech-intro-title h2 {
  max-width: 520px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.tech-intro-body {
  padding-top: 4px;
}

.tech-intro-body p {
  max-width: 860px;
  color: var(--muted-dark);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.82;
}

.tech-intro-body p + p {
  margin-top: 16px;
}

.tech-solution-grid,
.tech-split-grid,
.tech-process-grid,
.tech-capability-strip,
.tech-hardware-layout,
.tech-hardware-specs,
.tech-hardware-gallery {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.tech-hardware-section {
  padding-top: clamp(64px, 8vw, 112px);
}

.tech-hardware-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.tech-hardware-copy {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.tech-hardware-copy article {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.86);
}

.tech-hardware-copy span {
  display: block;
  margin-bottom: 28px;
  color: #99612e;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tech-hardware-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.16;
  letter-spacing: 0;
}

.tech-hardware-copy p {
  color: var(--muted-dark);
  font-size: 16px;
}

.tech-hardware-figure {
  display: grid;
  align-content: center;
  gap: 14px;
  margin: 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(246, 240, 228, 0.84));
}

.tech-hardware-figure img {
  width: 100%;
  border: 1px solid rgba(7, 16, 18, 0.12);
  background: #fff;
}

.tech-hardware-figure figcaption {
  color: rgba(7, 16, 18, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.tech-hardware-specs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.tech-hardware-specs div {
  min-height: 118px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.88);
}

.tech-hardware-specs strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.tech-hardware-specs span {
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.5;
}

.tech-hardware-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.tech-hardware-gallery figure {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 253, 248, 0.84);
}

.tech-hardware-gallery img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
}

.tech-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.tech-solution-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.2vw, 38px);
  background: rgba(255, 253, 248, 0.82);
}

.tech-solution-card span,
.tech-process-grid span {
  display: block;
  margin-bottom: clamp(34px, 4vw, 54px);
  color: #99612e;
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-solution-card h3,
.tech-list-panel h3,
.tech-detail-grid h3,
.tech-process-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.16;
  letter-spacing: 0;
}

.tech-solution-card p,
.tech-list-panel p,
.tech-detail-grid p,
.tech-process-grid p {
  color: var(--muted-dark);
  font-size: 16px;
}

.tech-capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  border: 1px solid rgba(7, 16, 18, 0.14);
  background: rgba(7, 16, 18, 0.14);
}

.tech-capability-strip div {
  min-height: 118px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(246, 240, 228, 0.82));
}

.tech-capability-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.12;
  font-weight: 860;
}

.tech-capability-strip span {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.5;
}

.tech-split-section {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.tech-split-section-alt {
  background:
    linear-gradient(180deg, rgba(232, 225, 210, 0.96), rgba(255, 250, 240, 0.98)),
    var(--paper);
}

.tech-split-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.tech-split-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.tech-split-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.tech-list-panel {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.tech-list-panel > div {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.84);
}

.tech-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.tech-detail-grid article {
  min-height: 238px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 253, 248, 0.84);
}

.tech-detail-grid span {
  display: block;
  margin-bottom: 28px;
  color: #99612e;
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.tech-process-section {
  padding-top: clamp(60px, 8vw, 108px);
}

.tech-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.tech-process-grid article {
  min-height: 260px;
  display: grid;
  grid-template-rows: 18px minmax(70px, auto) 1fr;
  align-content: start;
  padding: clamp(20px, 2.5vw, 30px);
  background: rgba(255, 253, 248, 0.84);
}

.tech-process-grid span {
  margin-bottom: 0;
}

.tech-process-grid h3 {
  margin-bottom: 0;
  align-self: center;
}

.tech-process-grid p {
  margin: 0;
}

.tech-contact-section {
  background:
    linear-gradient(90deg, rgba(7, 16, 18, 0.96), rgba(12, 25, 27, 0.92)),
    url("./assets/optimized/hero-airborne-cover.jpg?v=perf-img-cache-v1") center / cover;
}

.tech-contact-section .contact-copy h2 {
  color: var(--white);
  text-shadow:
    0 3px 24px rgba(0, 0, 0, 0.72),
    0 1px 2px rgba(0, 0, 0, 0.86);
}

.tech-contact-section .contact-copy .eyebrow {
  color: rgba(255, 250, 240, 0.78);
}

.tech-contact-section .contact-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.78);
}

.detail-hero-inner,
.detail-layout,
.spec-grid,
.spec-table-wrap,
.detail-nav-strip {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.detail-hero-inner h1 {
  max-width: 820px;
}

.hero-title-line {
  display: block;
}

.detail-hero-inner p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 32px;
  color: rgba(255, 250, 240, 0.74);
  font-size: clamp(18px, 2vw, 22px);
}

@media (min-width: 900px) {
  body[data-product-page="airborne"] .detail-hero-inner p:not(.eyebrow),
  body[data-product-page="handheld"] .detail-hero-inner p:not(.eyebrow),
  body[data-product-page="ddlmesh"] .detail-hero-inner p:not(.eyebrow) {
    max-width: 1100px;
    white-space: nowrap;
  }
}

.detail-nav-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.detail-nav-strip a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  color: rgba(255, 250, 240, 0.76);
  font-size: 13px;
  font-weight: 760;
}

.detail-nav-strip a:hover,
.detail-nav-strip a:focus-visible {
  border-color: var(--teal);
  color: var(--white);
}

.detail-overview,
.spec-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(231, 224, 207, 0.98)),
    var(--paper);
  color: var(--ink);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.detail-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.detail-copy p {
  max-width: 680px;
  color: var(--muted-dark);
  font-size: 17px;
}

.detail-points {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  list-style: none;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.detail-points:empty {
  display: none;
}

.detail-points li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 253, 248, 0.78);
  color: rgba(7, 16, 18, 0.74);
  font-weight: 720;
}

.detail-product-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(7, 16, 18, 0.04), rgba(136, 168, 148, 0.14)),
    #fffdf8;
}

.detail-product-visual img {
  width: min(100%, 560px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(53, 39, 23, 0.18));
}

body[data-product-page="airborne"] .detail-layout {
  width: min(100%, var(--product-max));
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1fr);
  gap: clamp(28px, 4.2vw, 58px);
}

body[data-product-page="handheld"] .detail-layout {
  width: min(100%, var(--product-max));
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.02fr);
  gap: clamp(28px, 4.2vw, 58px);
}

body[data-product-page="oem"] .detail-layout {
  width: min(100%, var(--product-max));
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.02fr);
  gap: clamp(28px, 4.2vw, 58px);
}

body[data-product-page="manpack"] .detail-layout {
  width: min(100%, var(--product-max));
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.02fr);
  gap: clamp(28px, 4.2vw, 58px);
}

body[data-product-page="vehicle-outdoor"] .detail-layout {
  width: min(100%, var(--product-max));
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.02fr);
  gap: clamp(28px, 4.2vw, 58px);
}

body[data-product-page="ddlmesh"] .detail-layout {
  width: min(100%, var(--product-max));
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.02fr);
  gap: clamp(28px, 4.2vw, 58px);
}

body[data-product-page="sdr400"] .detail-layout {
  width: min(100%, var(--product-max));
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.86fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

body[data-product-page="sdr400"] .detail-copy {
  max-width: 650px;
}

body[data-product-page="sdr400"] .detail-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(38px, 3.9vw, 56px);
  line-height: 1.12;
}

body[data-product-page="sdr400"] .detail-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(7, 16, 18, 0.68);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.9;
}

.matrix-visual {
  min-height: clamp(460px, 45vw, 610px);
  padding: 16px;
  background: #fff;
}

.matrix-visual img {
  width: 100%;
  max-height: none;
  filter: none;
}

.sdr400-matrix-visual {
  width: min(100%, 620px);
  min-height: 0;
  height: auto;
  aspect-ratio: 210 / 297;
  justify-self: center;
  align-self: center;
  padding: clamp(10px, 3vw, 20px);
  overflow: hidden;
}

.sdr400-page1-gallery {
  display: grid;
  grid-template-rows: 1fr;
  place-items: stretch;
}

.sdr400-gallery-frame {
  width: 100%;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(8px, 0.7vw, 12px);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 18, 0.12);
  background: #fff;
}

.sdr400-gallery-cell {
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.sdr400-gallery-frame img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.handheld-matrix-visual {
  min-height: clamp(620px, 54vw, 780px);
  align-self: stretch;
  padding: clamp(14px, 2vw, 22px);
}

.handheld-matrix-visual img {
  width: min(100%, 820px);
  max-height: 760px;
  object-fit: contain;
}

.manpack-matrix-visual {
  min-height: clamp(620px, 54vw, 780px);
  align-self: stretch;
  padding: clamp(14px, 2vw, 22px);
}

.manpack-matrix-visual img {
  width: min(100%, 820px);
  max-height: 760px;
  object-fit: contain;
}

.vehicle-matrix-visual {
  min-height: clamp(430px, 42vw, 560px);
  align-self: stretch;
  padding: clamp(14px, 2vw, 22px);
}

.vehicle-matrix-visual img {
  width: min(100%, 820px);
  max-height: 520px;
  object-fit: contain;
}

.oem-matrix-visual {
  min-height: clamp(620px, 56vw, 820px);
  align-self: stretch;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.oem-matrix-visual img {
  width: min(100%, 680px);
  max-height: 800px;
  object-fit: contain;
  object-position: center top;
}

.ddl-matrix-visual {
  min-height: clamp(620px, 58vw, 820px);
  align-self: stretch;
  padding: clamp(10px, 1.4vw, 18px);
}

.ddl-matrix-visual img {
  width: auto;
  max-width: 100%;
  max-height: 800px;
  object-fit: contain;
  object-position: center;
}

.airborne-power-matrix {
  grid-column: 1 / -1;
  width: min(100%, var(--product-max));
  margin: clamp(20px, 3vw, 38px) auto 0;
  padding: clamp(18px, 2.6vw, 30px) 0 0;
  border-top: 1px solid rgba(7, 16, 18, 0.18);
}

.power-matrix-head {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.26fr);
  gap: 10px 28px;
  align-items: start;
  margin-bottom: 18px;
}

.power-matrix-head span {
  grid-column: 1 / -1;
  color: #99612e;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.power-matrix-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 2.7vw, 40px);
  line-height: 1.08;
}

.power-matrix-head p {
  margin: 0;
  color: rgba(7, 16, 18, 0.56);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.5;
}

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

.power-lane {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(7, 16, 18, 0.14);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 14px 26px rgba(31, 24, 15, 0.045);
}

.power-lane-strong {
  border-color: rgba(7, 16, 18, 0.14);
  background: rgba(255, 253, 248, 0.82);
}

.power-lane-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.power-lane-top span {
  color: #99612e;
  font-size: 11px;
  font-weight: 860;
}

.power-lane h4 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.18;
  text-align: right;
}

.power-range {
  margin: 14px 0 12px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.05;
}

.power-lane dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(7, 16, 18, 0.12);
}

.power-lane dl div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 9px;
  background: rgba(255, 253, 248, 0.92);
}

.power-lane dt,
.power-lane dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.power-lane dt {
  color: rgba(7, 16, 18, 0.52);
  font-weight: 820;
}

.power-lane dd {
  color: rgba(7, 16, 18, 0.78);
  font-weight: 680;
  overflow-wrap: anywhere;
}

.power-summary {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.82fr;
  gap: 12px;
  margin-top: 12px;
}

.power-summary div {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(7, 16, 18, 0.14);
  background: rgba(255, 253, 248, 0.82);
}

.power-summary span {
  display: block;
  margin-bottom: 4px;
  color: #99612e;
  font-size: 11px;
  font-weight: 860;
}

.power-summary p {
  margin: 0;
  color: rgba(7, 16, 18, 0.72);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.handheld-variant-grid,
.oem-variant-grid,
.manpack-variant-grid,
.vehicle-variant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.handheld-variant-card,
.oem-variant-card,
.manpack-variant-card,
.vehicle-variant-card {
  min-width: 0;
  min-height: 232px;
  padding: 16px;
  border: 1px solid rgba(7, 16, 18, 0.14);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 14px 26px rgba(31, 24, 15, 0.045);
}

.handheld-variant-card span,
.oem-variant-card span,
.manpack-variant-card span,
.vehicle-variant-card span {
  display: block;
  margin-bottom: 18px;
  color: #99612e;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.handheld-variant-card h4,
.oem-variant-card h4,
.manpack-variant-card h4,
.vehicle-variant-card h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.15;
}

.handheld-variant-card p,
.oem-variant-card p,
.manpack-variant-card p,
.vehicle-variant-card p {
  margin: 0;
  color: rgba(7, 16, 18, 0.66);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.55;
}

.handheld-variant-card dl,
.oem-variant-card dl,
.manpack-variant-card dl,
.vehicle-variant-card dl {
  display: grid;
  gap: 1px;
  margin: 16px 0 0;
  background: rgba(7, 16, 18, 0.12);
}

.handheld-variant-card dl div,
.oem-variant-card dl div,
.manpack-variant-card dl div,
.vehicle-variant-card dl div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 253, 248, 0.92);
}

.handheld-variant-card dt,
.handheld-variant-card dd,
.oem-variant-card dt,
.oem-variant-card dd,
.manpack-variant-card dt,
.manpack-variant-card dd,
.vehicle-variant-card dt,
.vehicle-variant-card dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.42;
}

.handheld-variant-card dt,
.oem-variant-card dt,
.manpack-variant-card dt,
.vehicle-variant-card dt {
  color: rgba(7, 16, 18, 0.52);
  font-weight: 820;
}

.handheld-variant-card dd,
.oem-variant-card dd,
.manpack-variant-card dd,
.vehicle-variant-card dd {
  color: rgba(7, 16, 18, 0.78);
  font-weight: 720;
  overflow-wrap: anywhere;
}

.airborne-common-panel,
.airborne-model-panel {
  width: min(100%, var(--product-max));
  margin: 28px auto 0;
  border: 1px solid rgba(7, 16, 18, 0.2);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 38px rgba(31, 24, 15, 0.055);
}

.airborne-common-panel {
  padding: clamp(18px, 2.4vw, 28px);
}

.airborne-common-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.airborne-common-head span {
  color: #99612e;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.airborne-common-head h3,
.airborne-model-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.airborne-param-set + .airborne-param-set {
  margin-top: clamp(20px, 3vw, 34px);
  padding-top: clamp(20px, 3vw, 34px);
  border-top: 2px solid rgba(7, 16, 18, 0.16);
}

.airborne-param-set h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
}

.airborne-common-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(7, 16, 18, 0.24);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.airborne-model-table-wrap {
  border: 1px solid rgba(7, 16, 18, 0.24);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.airborne-common-table,
.airborne-model-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.airborne-common-table {
  min-width: 1050px;
  color: var(--ink);
  font-size: 13px;
}

.airborne-common-table .param-col {
  width: 220px;
}

.airborne-common-table th,
.airborne-common-table td,
.airborne-model-table th,
.airborne-model-table td {
  border-right: 1px solid rgba(7, 16, 18, 0.22);
  border-bottom: 1px solid rgba(7, 16, 18, 0.22);
  vertical-align: top;
  overflow-wrap: anywhere;
}

.airborne-common-table th:last-child,
.airborne-common-table td:last-child,
.airborne-model-table th:last-child,
.airborne-model-table td:last-child {
  border-right: 0;
}

.airborne-common-table tr:last-child th,
.airborne-common-table tr:last-child td,
.airborne-model-table tr:last-child th,
.airborne-model-table tr:last-child td {
  border-bottom: 0;
}

.airborne-common-table thead th,
.airborne-model-table thead th {
  padding: 12px 14px;
  background: #071012;
  color: var(--white);
  font-size: 13px;
  font-weight: 860;
  text-align: left;
}

.airborne-common-table tbody td {
  padding: 11px 14px;
  color: rgba(7, 16, 18, 0.78);
  font-size: 13px;
  line-height: 1.56;
}

.airborne-common-table tbody td:first-of-type {
  color: rgba(7, 16, 18, 0.9);
  font-weight: 820;
}

.handheld-dimension-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.handheld-dimension-list li {
  white-space: normal;
  line-height: 1.55;
}

.mobile-spec-tabs,
.mobile-spec-grid {
  display: none;
}

.airborne-model-panel {
  width: min(100%, var(--product-max));
  padding: clamp(20px, 2.4vw, 32px);
}

.airborne-model-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  max-width: 1040px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(7, 16, 18, 0.18);
}

.airborne-model-head span {
  color: #99612e;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.airborne-model-head h3 {
  margin: 0;
  max-width: 760px;
}

.airborne-model-head p {
  margin: 0;
  max-width: 920px;
  color: rgba(7, 16, 18, 0.68);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.52;
}

.airborne-model-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(22px, 2.4vw, 32px);
  align-items: start;
  margin-top: 24px;
}

.handheld-model-grid {
  grid-template-columns: minmax(430px, 500px) minmax(0, 1fr);
}

.oem-model-grid {
  grid-template-columns: minmax(360px, 470px) minmax(0, 1fr);
}

.manpack-model-grid {
  grid-template-columns: minmax(390px, 0.38fr) minmax(0, 0.62fr);
}

.vehicle-model-grid {
  grid-template-columns: minmax(430px, 0.37fr) minmax(0, 0.63fr);
  gap: 28px;
}

.airborne-code-card,
.airborne-media-card {
  margin: 0;
  border: 1px solid rgba(7, 16, 18, 0.16);
  background: #fff;
}

.airborne-code-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.airborne-card-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.3vw, 38px);
  font-weight: 860;
  line-height: 1.08;
}

.airborne-code-diagram {
  display: grid;
  justify-items: center;
  overflow: visible;
  min-height: clamp(118px, 13vw, 170px);
  padding: 2px 0 0;
  border: 0;
  background: transparent;
}

.model-code-svg {
  display: block;
  width: min(100%, 620px);
  height: auto;
  overflow: visible;
}

.handheld-code-diagram {
  justify-items: start;
  min-height: clamp(128px, 14vw, 184px);
}

.handheld-code-svg {
  width: min(100%, 760px);
}

.ddl-code-svg {
  width: min(100%, 760px);
}

.ddl-code-svg .model-code-main text {
  font-size: 20px;
  font-weight: 760;
  text-anchor: middle;
  dominant-baseline: middle;
}

.ddl-code-svg .model-code-main .model-code-prefix {
  text-anchor: start;
}

.ddl-code-svg .model-code-main .model-code-dash {
  font-size: 20px;
  font-weight: 620;
}

.handheld-code-svg .model-code-labels text {
  font-size: 17px;
}

.manpack-code-diagram {
  justify-items: start;
  min-height: clamp(118px, 12vw, 168px);
}

.manpack-code-svg {
  width: min(100%, 830px);
}

.manpack-code-svg .model-code-labels text {
  font-size: 15.5px;
}

.vehicle-code-diagram {
  justify-items: start;
  min-height: clamp(116px, 10vw, 158px);
}

.vehicle-code-svg {
  width: min(100%, 860px);
}

.vehicle-code-svg .model-code-labels text {
  font-size: 16px;
}

.oem-code-diagram {
  justify-items: start;
  min-height: clamp(118px, 13vw, 166px);
  margin-top: -18px;
}

.oem-code-schematic {
  grid-template-columns:
    max-content var(--code-box) var(--code-sep) var(--code-box) max-content var(--code-sep)
    var(--code-box);
  width: min(100%, 430px);
}

.oem-code-schematic .label-bandwidth { grid-column: 1 / 4; }
.oem-code-schematic .label-power { grid-column: 3 / 6; }
.oem-code-schematic .label-band { grid-column: 6 / 8; }

.oem-code-schematic .model-code-label {
  max-width: none;
  font-size: 13px;
  white-space: nowrap;
}

.model-code-svg text {
  fill: #000;
  font-family: inherit;
}

.model-code-labels text {
  font-size: 18px;
  font-weight: 760;
  text-anchor: middle;
}

.model-code-lines line {
  stroke: rgba(7, 16, 18, 0.62);
  stroke-width: 1.4;
}

.model-code-main rect {
  fill: #fff;
  stroke: rgba(7, 16, 18, 0.9);
  stroke-width: 1.6;
}

.model-code-ab,
.model-code-x2 {
  font-size: 28px;
  font-weight: 820;
}

.model-code-dash {
  fill: rgba(7, 16, 18, 0.58);
  font-size: 24px;
  font-weight: 620;
  text-anchor: middle;
}

.model-code-schematic {
  --code-box: 40px;
  --code-sep: 25px;
  display: grid;
  grid-template-columns:
    max-content var(--code-box) var(--code-sep) var(--code-box) max-content var(--code-sep)
    var(--code-box) var(--code-sep) var(--code-box) var(--code-sep) var(--code-box)
    var(--code-sep) var(--code-box) var(--code-sep) var(--code-box);
  grid-template-rows: auto 16px var(--code-box) 16px auto;
  align-items: center;
  justify-content: start;
  column-gap: 0;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  min-height: 116px;
  padding: 4px 0 2px;
  color: var(--ink);
}

.oem-code-schematic {
  grid-template-columns:
    max-content var(--code-box) var(--code-sep) var(--code-box) max-content var(--code-sep)
    var(--code-box);
  width: min(100%, 430px);
  max-width: 100%;
}

.model-code-prefix,
.model-code-multiplier {
  display: inline-flex;
  grid-row: 3;
  align-items: center;
  justify-content: center;
  min-height: var(--code-box);
  color: var(--ink);
  font-size: 26px;
  font-weight: 860;
  line-height: 1;
}

.model-code-prefix {
  grid-column: 1;
  padding-right: 6px;
}

.model-code-multiplier {
  grid-column: 5;
  padding-inline: 6px;
}

.model-code-schematic em {
  display: inline-flex;
  grid-row: 3;
  align-items: center;
  justify-content: center;
  min-height: var(--code-box);
  color: rgba(7, 16, 18, 0.58);
  font-style: normal;
  font-size: 20px;
  font-weight: 680;
}

.sep-1 { grid-column: 3; }
.sep-2 { grid-column: 6; }
.sep-3 { grid-column: 8; }
.sep-4 { grid-column: 10; }
.sep-5 { grid-column: 12; }
.sep-6 { grid-column: 14; }

.model-code-slot {
  grid-row: 3;
  width: var(--code-box);
  height: var(--code-box);
  border: 1.5px solid rgba(7, 16, 18, 0.86);
  background: #fff;
  box-shadow: none;
}

.slot-bandwidth { grid-column: 2; }
.slot-power { grid-column: 4; }
.slot-band { grid-column: 7; }
.slot-wifi { grid-column: 9; }
.slot-video { grid-column: 11; }
.slot-cellular { grid-column: 13; }
.slot-sbus { grid-column: 15; }

.model-code-label {
  position: relative;
  display: inline-flex;
  align-self: center;
  justify-self: center;
  color: rgba(7, 16, 18, 0.9);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.model-code-label::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 13px;
  background: rgba(7, 16, 18, 0.54);
}

.label-bandwidth,
.label-band,
.label-video,
.label-sbus {
  grid-row: 1;
}

.label-power,
.label-wifi,
.label-cellular {
  grid-row: 5;
}

.label-bandwidth { grid-column: 1 / 5; }
.label-power { grid-column: 3 / 6; }
.label-band { grid-column: 6 / 10; }
.label-wifi { grid-column: 8 / 12; }
.label-video { grid-column: 10 / 14; }
.label-cellular { grid-column: 12 / 16; }
.label-sbus { grid-column: 14 / 16; }

.label-bandwidth::after,
.label-band::after,
.label-video::after,
.label-sbus::after {
  top: calc(100% + 2px);
}

.label-power::after,
.label-wifi::after,
.label-cellular::after {
  bottom: calc(100% + 2px);
}

.label-bandwidth,
.label-sbus {
  transform: none;
}

.oem-code-schematic .label-bandwidth { grid-column: 2; }
.oem-code-schematic .label-power { grid-column: 4; }
.oem-code-schematic .label-band { grid-column: 7; }

.airborne-model-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid #39d7cf;
  background: rgba(7, 16, 18, 0.04);
  color: rgba(7, 16, 18, 0.78);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 720;
  line-height: 1.6;
}

.ddl-model-note span {
  display: block;
}

.airborne-model-table-wrap {
  align-self: start;
  overflow: hidden;
  border: 1.2px solid rgba(7, 16, 18, 0.72);
  box-shadow: none;
}

.airborne-model-table {
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--ink);
  font-size: clamp(12px, 0.88vw, 14px);
  table-layout: fixed;
}

.airborne-model-table col:nth-child(1) { width: 13%; }
.airborne-model-table col:nth-child(2) { width: 12.5%; }
.airborne-model-table col:nth-child(3) { width: 13%; }
.airborne-model-table col:nth-child(4) { width: 13%; }
.airborne-model-table col:nth-child(5) { width: 14%; }
.airborne-model-table col:nth-child(6) { width: 19%; }
.airborne-model-table col:nth-child(7) { width: 15.5%; }

.airborne-model-table th,
.airborne-model-table td {
  padding: 10px 8px;
  text-align: center;
  line-height: 1.25;
  vertical-align: middle;
  word-break: keep-all;
  overflow-wrap: normal;
  border-color: rgba(7, 16, 18, 0.62);
}

.airborne-model-table thead th {
  background: #eee9df;
  color: var(--ink);
  padding: 10px 8px;
  font-size: clamp(12px, 0.88vw, 14px);
  font-weight: 760;
  letter-spacing: 0;
  white-space: normal;
  border-bottom: 1px solid rgba(7, 16, 18, 0.62);
  text-align: center;
  vertical-align: middle;
}

.airborne-model-table thead tr:last-child th {
  border-bottom: 1px solid rgba(7, 16, 18, 0.62);
}

.airborne-model-table td {
  color: #000;
  font-weight: 520;
  background: #fff;
}

.airborne-model-table tbody tr:nth-child(even) td {
  background: #fff;
}

.handheld-model-table {
  font-size: clamp(11px, 0.72vw, 13px);
}

.handheld-model-table col:nth-child(1) { width: 12%; }
.handheld-model-table col:nth-child(2) { width: 10%; }
.handheld-model-table col:nth-child(3) { width: 11%; }
.handheld-model-table col:nth-child(4) { width: 12%; }
.handheld-model-table col:nth-child(5) { width: 12%; }
.handheld-model-table col:nth-child(6) { width: 13%; }
.handheld-model-table col:nth-child(7) { width: 16%; }
.handheld-model-table col:nth-child(8) { width: 14%; }

.ddl-model-table-wrap {
  overflow: hidden;
}

.ddl-model-table {
  min-width: 0;
  table-layout: fixed;
}

.ddl-model-table col:nth-child(1) { width: 14%; }
.ddl-model-table col:nth-child(2) { width: 13%; }
.ddl-model-table col:nth-child(3) { width: 14%; }
.ddl-model-table col:nth-child(4) { width: 14%; }
.ddl-model-table col:nth-child(5) { width: 15%; }
.ddl-model-table col:nth-child(6) { width: 14%; }
.ddl-model-table col:nth-child(7) { width: 16%; }

.handheld-model-table th,
.handheld-model-table td {
  padding: 10px 6px;
  line-height: 1.28;
}

.handheld-model-table thead th {
  padding: 10px 6px;
  font-size: clamp(11px, 0.72vw, 13px);
  text-align: center;
  vertical-align: middle;
}

.manpack-model-table-wrap {
  overflow-x: auto;
}

.manpack-model-table {
  min-width: 0;
  font-size: clamp(10px, 0.68vw, 12px);
}

.manpack-model-table col:nth-child(1) { width: 11%; }
.manpack-model-table col:nth-child(2) { width: 10%; }
.manpack-model-table col:nth-child(3) { width: 10%; }
.manpack-model-table col:nth-child(4) { width: 10%; }
.manpack-model-table col:nth-child(5) { width: 11%; }
.manpack-model-table col:nth-child(6) { width: 12%; }
.manpack-model-table col:nth-child(7) { width: 14%; }
.manpack-model-table col:nth-child(8) { width: 12%; }
.manpack-model-table col:nth-child(9) { width: 10%; }

.manpack-model-table th,
.manpack-model-table td {
  padding: 9px 5px;
  line-height: 1.28;
}

.manpack-model-table thead th {
  padding: 9px 5px;
  font-size: clamp(10px, 0.68vw, 12px);
}

.vehicle-model-table-wrap {
  overflow-x: auto;
  width: 100%;
}

.vehicle-model-table {
  min-width: 740px;
  font-size: clamp(10px, 0.68vw, 12px);
}

.vehicle-model-table col:nth-child(1) { width: 12%; }
.vehicle-model-table col:nth-child(2) { width: 10%; }
.vehicle-model-table col:nth-child(3) { width: 10%; }
.vehicle-model-table col:nth-child(4) { width: 11%; }
.vehicle-model-table col:nth-child(5) { width: 12%; }
.vehicle-model-table col:nth-child(6) { width: 14%; }
.vehicle-model-table col:nth-child(7) { width: 12%; }
.vehicle-model-table col:nth-child(8) { width: 9%; }
.vehicle-model-table col:nth-child(9) { width: 10%; }

.vehicle-model-table th,
.vehicle-model-table td {
  padding: 10px 6px;
  line-height: 1.3;
}

.vehicle-model-table thead th {
  padding: 10px 6px;
  font-size: clamp(10px, 0.68vw, 12px);
  text-align: center;
  word-break: normal;
  overflow-wrap: anywhere;
}

.sdr400-rate-table-wrap,
.sdr400-order-table-wrap {
  overflow-x: auto;
}

body[data-product-page="sdr400"] .spec-section {
  padding-block: clamp(64px, 7vw, 96px);
}

body[data-product-page="sdr400"] .spec-section .section-heading {
  margin-bottom: clamp(24px, 3vw, 36px);
}

body[data-product-page="sdr400"] .airborne-common-panel {
  margin-top: 0;
}

.sdr400-rate-table {
  min-width: 880px;
  font-size: clamp(11px, 0.78vw, 13px);
}

.sdr400-rate-table col:nth-child(1) { width: 27%; }
.sdr400-rate-table col:nth-child(2) { width: 13%; }
.sdr400-rate-table col:nth-child(3) { width: 12%; }
.sdr400-rate-table col:nth-child(4) { width: 18%; }
.sdr400-rate-table col:nth-child(5) { width: 16%; }
.sdr400-rate-table col:nth-child(6) { width: 14%; }

.sdr400-rate-table th,
.sdr400-rate-table td {
  padding: 9px 8px;
  line-height: 1.32;
}

.sdr400-rate-table tbody td[rowspan] {
  background: #f4f0e8;
  color: rgba(7, 16, 18, 0.86);
  font-weight: 820;
}

.sdr400-model-grid {
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
}

.sdr400-code-card {
  gap: 14px;
}

.sdr400-order-stack {
  display: grid;
  gap: 10px;
}

.sdr400-order-stack span,
.sdr400-order-stack strong {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(7, 16, 18, 0.16);
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
}

.sdr400-order-stack span {
  color: #99612e;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sdr400-order-table col:nth-child(1) { width: 22%; }
.sdr400-order-table col:nth-child(2) { width: 78%; }

body[data-product-page="sdr400"] .sdr400-order-table-wrap {
  margin-top: clamp(42px, 3.55vw, 52px);
  height: 280px;
}

.sdr400-order-table {
  height: 100%;
}

.sdr400-order-table td:last-child,
.sdr400-order-table th:last-child {
  text-align: left;
}

.oem-model-table {
  font-size: clamp(12px, 0.9vw, 14px);
}

.oem-model-table col:nth-child(1) { width: 34%; }
.oem-model-table col:nth-child(2) { width: 33%; }
.oem-model-table col:nth-child(3) { width: 33%; }

.oem-model-table-wrap {
  margin-top: 31px;
}

.oem-model-table thead th {
  text-align: center;
}

.airborne-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  margin-top: 22px;
}

.handheld-media-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr);
}

.manpack-media-grid {
  grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
}

.vehicle-media-grid {
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
}

.oem-media-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr);
}

.sdr400-media-grid {
  grid-template-columns: 1fr;
}

.airborne-media-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 260px;
  padding: clamp(12px, 1.8vw, 20px);
  overflow: hidden;
}

.airborne-media-card img {
  display: block;
  width: 100%;
  height: auto;
}

.airborne-application-card img {
  width: auto;
  max-width: min(100%, 460px);
  max-height: 430px;
  margin: auto;
  object-fit: contain;
  object-position: center center;
}

.ddl-media-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr);
}

.ddl-accessories-card img {
  max-height: 430px;
  object-fit: contain;
}

.ddl-scenario-card img {
  width: auto;
  max-width: min(100%, 460px);
  max-height: 430px;
  object-fit: contain;
}

.ddl-extra-products {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(7, 16, 18, 0.14);
}

.ddl-extra-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.ddl-extra-head span,
.ddl-extra-card span {
  color: #99612e;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ddl-extra-head h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.12;
}

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

.ddl-extra-card {
  display: grid;
  grid-template-rows: minmax(220px, auto) 1fr;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(7, 16, 18, 0.12);
}

.ddl-extra-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 220px;
  margin: 0;
  padding: clamp(12px, 1.6vw, 18px);
  background: #fff;
  border-bottom: 1px solid rgba(7, 16, 18, 0.1);
}

.ddl-extra-card img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.ddl-extra-card div {
  min-width: 0;
}

.ddl-extra-card > div {
  display: grid;
  gap: 10px;
  padding: clamp(16px, 1.8vw, 22px);
}

.ddl-extra-card h5 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.18;
}

.ddl-extra-card p {
  margin: 0;
  color: rgba(7, 16, 18, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.ddl-extra-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 0;
}

.ddl-extra-card dl div {
  padding-top: 10px;
  border-top: 1px solid rgba(7, 16, 18, 0.14);
}

.ddl-extra-card dt,
.ddl-extra-card dd {
  margin: 0;
}

.ddl-extra-card dt {
  color: rgba(7, 16, 18, 0.56);
  font-size: 11px;
  font-weight: 760;
}

.ddl-extra-card dd {
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.handheld-accessories-card img {
  max-height: 360px;
  object-fit: contain;
}

.handheld-application-card img {
  width: auto;
  max-width: min(100%, 340px);
  max-height: 340px;
  object-fit: contain;
}

.manpack-accessories-card img,
.manpack-options-card img {
  width: auto;
  max-width: min(100%, 560px);
  max-height: 360px;
  object-fit: contain;
}

.vehicle-accessories-card img {
  width: auto;
  max-width: min(100%, 680px);
  max-height: 330px;
  object-fit: contain;
}

.oem-accessories-card {
  min-height: 260px;
}

.oem-accessories-card img {
  width: auto;
  max-width: min(100%, 800px);
  max-height: 300px;
  object-fit: contain;
}

.oem-application-card img {
  width: auto;
  max-width: min(100%, 470px);
  max-height: 300px;
  object-fit: contain;
}

.sdr400-device-card img {
  width: auto;
  max-width: min(100%, 320px);
  max-height: 260px;
  object-fit: contain;
}

.sdr400-application-strip-card {
  min-height: clamp(150px, 16vw, 210px);
  padding: clamp(12px, 1.6vw, 18px);
}

.sdr400-application-strip-card img {
  width: 100%;
  max-width: min(100%, 1120px);
  max-height: 180px;
  object-fit: contain;
}

.spec-section .section-heading p:not(.eyebrow) {
  color: var(--muted-dark);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.spec-card {
  min-height: 212px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.78);
}

.spec-card span {
  display: block;
  margin-bottom: 34px;
  color: #99612e;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.spec-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

.spec-card p {
  color: var(--muted-dark);
  font-size: 14px;
}

.spec-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  background: rgba(255, 253, 248, 0.78);
}

.spec-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 18px 20px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.spec-table th:last-child,
.spec-table td:last-child {
  border-right: 0;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table th {
  width: 190px;
  color: rgba(7, 16, 18, 0.68);
  font-weight: 820;
}

.spec-table td {
  color: rgba(7, 16, 18, 0.72);
}

.technical-specs {
  width: min(100%, 1360px);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tech-spec-block {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line-dark);
  background: rgba(255, 253, 248, 0.82);
}

.tech-spec-block.wide {
  grid-column: 1 / -1;
}

.tech-spec-block h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
}

.tech-spec-list {
  display: grid;
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.tech-spec-list div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.66);
}

.tech-spec-list.compact div {
  padding-block: 10px;
}

.tech-spec-list dt,
.tech-spec-list dd {
  margin: 0;
}

.tech-spec-list dt {
  color: rgba(7, 16, 18, 0.58);
  font-size: 14px;
  font-weight: 820;
}

.tech-spec-list dd {
  color: rgba(7, 16, 18, 0.78);
  font-size: 14px;
  line-height: 1.66;
}

.tech-note,
.cert-line {
  margin: 0 0 16px;
  color: rgba(7, 16, 18, 0.68);
  font-size: 15px;
}

.frequency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.frequency-grid div {
  min-height: 132px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.frequency-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
}

.frequency-grid p {
  margin: 0;
  color: rgba(7, 16, 18, 0.68);
  font-size: 14px;
  line-height: 1.62;
}

.spec-table-wrap.embedded {
  width: 100%;
  margin-top: 0;
  background: transparent;
}

.spec-table thead th {
  background: var(--ink);
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(44px, 7vw, 78px) clamp(20px, 6vw, 80px) 28px;
  border-top: 1px solid var(--line);
  background: #050a0b;
  color: rgba(255, 250, 240, 0.56);
  font-size: 13px;
}

.footer-brand {
  max-width: 420px;
}

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

.footer-brand p {
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 15px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer-columns section {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-columns h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-columns a {
  color: rgba(255, 250, 240, 0.58);
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
}

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

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

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@keyframes scanGrid {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 78px 78px;
  }
}

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

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(210px, 1fr) auto 46px;
  }

  .search-toggle {
    grid-column: 3;
  }

  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .feature-grid,
  .product-family-grid,
  .radio-grid,
  .solution-grid,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-family-card.is-featured {
    grid-column: span 2;
  }

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

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

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

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

  .tech-intro-panel,
  .tech-hardware-layout,
  .tech-hardware-gallery {
    grid-template-columns: 1fr;
  }

  .tech-hardware-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tech-solution-card {
    min-height: 220px;
  }

  .tech-split-grid {
    grid-template-columns: 1fr;
  }

  .tech-split-copy {
    position: static;
  }

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

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    align-items: center;
    justify-self: end;
    padding: 0;
    border: 1px solid rgba(255, 250, 240, 0.24);
    background: rgba(255, 250, 240, 0.04);
    color: var(--white);
  }

  .nav-toggle span {
    width: 20px;
    height: 1px;
    background: currentColor;
    transition:
      transform 160ms ease,
      opacity 160ms ease;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    justify-items: stretch;
    padding: 10px 20px 24px;
    background: rgba(7, 16, 18, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
    backdrop-filter: blur(18px);
  }

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

  .main-nav > a,
  .nav-link {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  }

  .nav-link {
    min-height: 58px;
  }

  .main-nav > a::after,
  .nav-link::after {
    display: none;
  }

  .nav-item {
    display: grid;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    color: rgba(255, 250, 240, 0.76);
    text-align: left;
  }

  .product-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      max-height 180ms ease,
      padding 180ms ease;
  }

  .nav-item:hover .product-menu,
  .nav-item:focus-within .product-menu {
    max-height: 0;
    padding: 0;
  }

  .nav-item.is-open .product-menu {
    max-height: 420px;
    padding: 8px 0;
  }

  .product-menu a {
    min-height: 42px;
    padding: 0 16px;
    border-bottom: 0;
    color: rgba(255, 250, 240, 0.9);
    font-size: 16px;
  }

  .product-menu a:hover,
  .product-menu a:focus-visible {
    padding-left: 22px;
  }

  .search-toggle {
    width: 44px;
    height: 44px;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .hero {
    min-height: 88svh;
    padding-bottom: 54px;
  }

  .story-section,
  .product-stage,
  .detail-layout,
  body[data-product-page="airborne"] .detail-layout,
  body[data-product-page="handheld"] .detail-layout,
  body[data-product-page="oem"] .detail-layout,
  body[data-product-page="manpack"] .detail-layout,
  body[data-product-page="vehicle-outdoor"] .detail-layout,
  body[data-product-page="ddlmesh"] .detail-layout,
  body[data-product-page="sdr400"] .detail-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .story-copy {
    justify-self: stretch;
  }

  .intro-section .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .intro-section .section-heading .eyebrow,
  .intro-section .section-heading h2,
  .intro-section .section-heading p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .intro-section .section-heading p:not(.eyebrow) {
    max-width: 720px;
  }

  .story-visual {
    min-height: 400px;
  }

  .story-proof-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .product-stage dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-stage dl div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .contact-copy,
  .contact-actions {
    grid-column: auto;
    justify-self: stretch;
  }

  .contact-copy {
    text-align: left;
  }

  .contact-copy p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }

  .contact-actions {
    align-items: flex-start;
  }

  .detail-hero {
    min-height: 66svh;
  }

  .matrix-visual {
    min-height: auto;
  }

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

  .ddl-extra-grid {
    grid-template-columns: 1fr;
  }

  .handheld-variant-grid,
  .oem-variant-grid,
  .manpack-variant-grid,
  .vehicle-variant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .power-summary {
    grid-template-columns: 1fr;
  }

  .airborne-model-head,
  .airborne-model-grid,
  .airborne-media-grid {
    grid-template-columns: 1fr;
  }

  .airborne-model-table-wrap {
    overflow: hidden;
  }

  .ddl-model-table-wrap {
    overflow-x: auto;
  }

  .airborne-model-table {
    min-width: 0;
    font-size: 11px;
  }

  .ddl-model-table {
    min-width: 760px;
  }

  .manpack-model-table {
    min-width: 940px;
  }

  .vehicle-model-table {
    min-width: 980px;
  }

  .sdr400-rate-table {
    min-width: 880px;
  }

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

  body[data-product-page="sdr400"] .sdr400-order-table-wrap {
    margin-top: 0;
    height: auto;
  }

  .airborne-model-table thead th {
    padding: 9px 5px;
    white-space: normal;
  }

  .airborne-model-table th,
  .airborne-model-table td {
    padding: 8px 5px;
  }

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

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

  .tech-process-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 700px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .section,
  .industry-section,
  .video-band,
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero {
    align-content: end;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(38px, 10.4vw, 50px);
    line-height: 1.08;
  }

  .hero-lede {
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 132px;
    min-width: 0;
  }

  body[data-page="technology-solution"] .detail-hero {
    min-height: 78svh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .tech-solution-card,
  .tech-intro-panel,
  .tech-capability-strip div,
  .tech-detail-grid article,
  .tech-list-panel > div,
  .tech-process-grid article {
    padding: 22px;
  }

  .tech-capability-strip,
  .tech-detail-grid,
  .tech-hardware-specs {
    grid-template-columns: 1fr;
  }

  .tech-solution-card span,
  .tech-hardware-copy span,
  .tech-process-grid span {
    margin-bottom: 26px;
  }

  body[data-product-page="manpack"] .detail-hero-media img {
    object-position: 42% center;
    transform: none;
  }

  body[data-product-page="sdr400"] .detail-hero-inner h1 {
    font-size: clamp(44px, 14vw, 58px);
  }

  body[data-product-page="sdr400"] .sdr400-title-series {
    display: block;
    margin-left: 0;
  }

  .section-heading {
    text-align: left;
  }

  .feature-grid,
  .product-family-grid,
  .radio-grid,
  .solution-grid,
  .power-lanes,
  .handheld-variant-grid,
  .oem-variant-grid,
  .manpack-variant-grid,
  .vehicle-variant-grid,
  .spec-grid,
  .industry-links,
  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .power-matrix-head {
    grid-template-columns: 1fr;
  }

  .power-matrix-head p {
    font-size: 12px;
  }

  .airborne-model-panel {
    padding: 16px;
  }

  .airborne-model-head {
    gap: 8px;
  }

  .airborne-model-head span {
    grid-row: auto;
  }

  .airborne-code-diagram {
    min-height: 150px;
    padding: 16px 14px 18px;
    overflow: hidden;
  }

  .handheld-code-diagram,
  .oem-code-diagram,
  .manpack-code-diagram,
  .vehicle-code-diagram {
    justify-items: center;
    min-height: 150px;
    overflow: visible;
    padding: 10px 0 0;
  }

  .handheld-code-svg,
  .manpack-code-svg,
  .vehicle-code-svg {
    width: min(100%, 680px);
  }

  .model-code-schematic {
    --code-box: clamp(21px, 6.2vw, 26px);
    --code-sep: 5px;
    min-width: 0;
    min-height: 104px;
    padding: 4px 0;
  }

  .model-code-prefix,
  .model-code-multiplier {
    min-height: var(--code-box);
    font-size: clamp(16px, 5vw, 20px);
  }

  .model-code-schematic em {
    min-height: var(--code-box);
  }

  .model-code-slot {
    width: var(--code-box);
    height: var(--code-box);
  }

  .model-code-label {
    max-width: 52px;
    font-size: 10px;
    line-height: 1.12;
    text-align: center;
    white-space: normal;
  }

  .model-code-label::after {
    height: 12px;
  }

  .airborne-media-card {
    min-height: 180px;
  }

  .ddl-extra-card {
    grid-template-rows: auto 1fr;
  }

  .ddl-extra-card figure {
    min-height: 180px;
  }

  .ddl-extra-card img {
    max-height: 230px;
  }

  .ddl-extra-card dl {
    grid-template-columns: 1fr;
  }

  .product-family-card.is-featured {
    grid-column: span 1;
  }

  .feature-card,
  .solution-card,
  .product-family-card {
    min-height: 250px;
  }

  .feature-card span,
  .solution-card span {
    margin-bottom: 30px;
  }

  .industry-links a {
    min-height: 86px;
  }

  .product-stage > div {
    min-height: 330px;
  }

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

  .product-stage dl div:nth-child(odd) {
    border-right: 0;
  }

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

  .proof-metrics div {
    min-height: 126px;
  }

  .site-footer {
    align-items: flex-start;
  }

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

  .search-overlay {
    padding: calc(var(--header-height) + 14px) 12px 18px;
  }

  .search-panel {
    max-height: calc(100svh - var(--header-height) - 32px);
    padding: 18px;
  }

  .search-panel .eyebrow {
    margin-bottom: 8px;
  }

  .search-panel h2 {
    margin-bottom: 14px;
    padding-right: 36px;
    font-size: clamp(24px, 7vw, 32px);
  }

  .search-panel input {
    min-height: 42px;
    font-size: 14px;
  }

  .search-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }

  .search-close::before,
  .search-close::after {
    left: 8px;
    right: 8px;
    top: 15px;
  }

  .search-results a {
    grid-template-columns: 1fr;
    padding: 12px 14px;
  }

  .search-results span {
    grid-row: auto;
  }

  .search-results p {
    white-space: normal;
  }

  .tech-spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .airborne-common-panel {
    padding: 14px;
  }

  .airborne-common-head {
    align-items: start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .airborne-common-table-wrap:has(> .airborne-common-table) {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .airborne-common-table {
    min-width: 0;
    font-size: 13px;
  }

  .airborne-common-table colgroup,
  .airborne-common-table thead {
    display: none;
  }

  .airborne-common-table,
  .airborne-common-table tbody,
  .airborne-common-table tr,
  .airborne-common-table td {
    display: block;
    width: 100%;
  }

  .airborne-common-table tbody {
    display: grid;
    gap: 10px;
  }

  .airborne-common-table tbody tr {
    border: 1px solid rgba(7, 16, 18, 0.16);
    background: rgba(255, 255, 255, 0.76);
  }

  .airborne-common-table th,
  .airborne-common-table td {
    border-right: 0;
    border-bottom: 0;
  }

  .airborne-common-table tbody td {
    padding: 0 12px 12px;
    font-size: 12px;
    line-height: 1.62;
  }

  .airborne-common-table tbody td:first-of-type {
    padding: 11px 12px 6px;
    color: #8f5b2d;
    font-size: 12px;
    line-height: 1.28;
  }

  .airborne-model-table-wrap {
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  .sdr400-rate-table-wrap,
  .sdr400-order-table-wrap {
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }
}

@media (max-width: 920px) {
  .industry-section {
    padding-top: clamp(38px, 7vw, 56px);
    padding-bottom: clamp(40px, 7vw, 60px);
  }

  .industry-section .section-heading {
    margin-bottom: 18px;
    text-align: center;
  }

  .industry-section .section-heading .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .industry-section .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(28px, 6vw, 42px);
    line-height: 1.08;
  }

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

  .industry-links a {
    min-height: clamp(64px, 16vw, 92px);
    padding: 12px;
    font-size: clamp(14px, 3.6vw, 18px);
    line-height: 1.18;
  }
}

@media (max-width: 430px) {
  .industry-section .section-heading h2 {
    font-size: clamp(27px, 7.8vw, 34px);
  }

  .industry-links a {
    min-height: 62px;
    padding: 10px 8px;
    font-size: 13px;
  }
}

@media (min-width: 701px) and (max-width: 1120px) {
  .industry-section {
    padding-top: clamp(44px, 5.4vw, 68px);
    padding-bottom: clamp(44px, 5.4vw, 68px);
  }

  .industry-section .section-heading {
    margin-bottom: 22px;
  }

  .industry-section .section-heading h2 {
    font-size: clamp(34px, 4.8vw, 52px);
  }

  .industry-links {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .industry-links a {
    min-height: 92px;
    padding: 12px 10px;
    font-size: 15px;
  }
}

@media (max-width: 700px) {
  body[data-page="home"] .hero,
  body[data-page="home"] .section,
  body[data-page="home"] .industry-section,
  body[data-page="home"] .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  body[data-page="home"] .hero {
    min-height: auto;
    align-content: center;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 38px;
  }

  body[data-page="home"] .hero-media img {
    opacity: 0.58;
    filter: saturate(0.74) contrast(1.05) brightness(0.86);
  }

  body[data-page="home"] .home-signal-overlay {
    opacity: 0.64;
  }

  body[data-page="home"] .hero-inner {
    padding-top: 0;
  }

  body[data-page="home"] .hero .eyebrow,
  body[data-page="home"] .section-heading .eyebrow,
  body[data-page="home"] .performance-copy .eyebrow,
  body[data-page="home"] .story-copy .eyebrow,
  body[data-page="home"] .proof-copy .eyebrow,
  body[data-page="home"] .contact-copy .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  body[data-page="home"] .hero h1 {
    margin-bottom: 12px;
    font-size: clamp(31px, 8.8vw, 40px);
    line-height: 1.08;
  }

  body[data-page="home"] .hero-lede {
    max-width: 92%;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.58;
  }

  body[data-page="home"] .hero-actions {
    width: 100%;
    padding: 5px;
    gap: 6px;
  }

  body[data-page="home"] .hero-actions .button,
  body[data-page="home"] .story-actions .button,
  body[data-page="home"] .contact-actions .button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  body[data-page="home"] .section,
  body[data-page="home"] .industry-section,
  body[data-page="home"] .contact-section {
    padding-top: 38px;
    padding-bottom: 40px;
  }

  body[data-page="home"] .section-heading,
  body[data-page="home"] .performance-copy,
  body[data-page="home"] .story-copy,
  body[data-page="home"] .contact-copy {
    margin-bottom: 18px;
    text-align: center;
  }

  body[data-page="home"] .section-heading h2,
  body[data-page="home"] .performance-copy h2,
  body[data-page="home"] .story-copy h2,
  body[data-page="home"] .contact-copy h2 {
    margin-bottom: 8px;
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.08;
  }

  body[data-page="home"] .section-heading p:not(.eyebrow),
  body[data-page="home"] .performance-copy p,
  body[data-page="home"] .story-copy p:not(.eyebrow),
  body[data-page="home"] .contact-copy p:not(.eyebrow) {
    max-width: 100%;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.55;
  }

  body[data-page="home"] .intro-section {
    background:
      linear-gradient(rgba(7, 16, 18, 0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(7, 16, 18, 0.016) 1px, transparent 1px),
      linear-gradient(180deg, #faf5ea 0%, #e8decb 100%);
    background-size: 64px 64px, 64px 64px, auto;
  }

  body[data-page="home"] .intro-section .section-heading {
    display: block;
    margin-bottom: 16px;
    text-align: center;
  }

  body[data-page="home"] .intro-section .section-heading h2 {
    font-size: clamp(25px, 6.6vw, 33px);
  }

  body[data-page="home"] .intro-section .section-heading p:not(.eyebrow) {
    display: none;
  }

  body[data-page="home"] .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(7, 16, 18, 0.14);
    background: rgba(7, 16, 18, 0.14);
  }

  body[data-page="home"] .feature-card {
    min-height: 106px;
    padding: 12px 9px;
    border: 0;
    box-shadow: none;
  }

  body[data-page="home"] .feature-card::before {
    height: 2px;
  }

  body[data-page="home"] .feature-card span {
    margin-bottom: 14px;
    font-size: 10px;
  }

  body[data-page="home"] .feature-card h3 {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.16;
  }

  body[data-page="home"] .feature-card p,
  body[data-page="home"] .feature-card strong {
    display: none;
  }

  body[data-page="home"] .story-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="home"] .story-actions {
    justify-content: center;
    margin-top: 16px;
  }

  body[data-page="home"] .story-visual {
    border-color: rgba(7, 16, 18, 0.14);
    box-shadow: none;
  }

  body[data-page="home"] .proof-copy {
    padding: 16px 14px 12px;
  }

  body[data-page="home"] .proof-copy h3 {
    margin-bottom: 6px;
    font-size: 18px;
  }

  body[data-page="home"] .proof-copy p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.45;
  }

  body[data-page="home"] .story-proof-panel .proof-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 12px;
    gap: 8px;
  }

  body[data-page="home"] .story-proof-panel .proof-metrics div {
    min-height: 72px;
    padding: 12px 8px;
  }

  body[data-page="home"] .story-proof-panel .proof-metrics strong {
    margin-bottom: 5px;
    font-size: 20px;
  }

  body[data-page="home"] .story-proof-panel .proof-metrics p {
    font-size: 11px;
  }

  body[data-page="home"] .performance-copy p {
    display: none;
  }

  body[data-page="home"] .product-family-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(7, 16, 18, 0.14);
    background: rgba(7, 16, 18, 0.14);
  }

  body[data-page="home"] .product-family-card {
    grid-column: span 1;
  }

  body[data-page="home"] .product-family-card.is-featured {
    grid-column: span 3;
  }

  body[data-page="home"] .product-family-card {
    min-height: 166px;
    grid-template-rows: auto 72px auto;
    gap: 8px;
    padding: 10px;
    border: 0;
    box-shadow: none;
  }

  body[data-page="home"] .product-family-card > img {
    height: 72px;
  }

  body[data-page="home"] .product-family-card span {
    font-size: 9px;
    line-height: 1.2;
  }

  body[data-page="home"] .product-family-card h3 {
    font-size: 13px;
    line-height: 1.16;
  }

  body[data-page="home"] .product-family-card p,
  body[data-page="home"] .product-family-card strong {
    display: none;
  }

  body[data-page="home"] .industry-section {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  body[data-page="home"] .industry-section .section-heading {
    margin-bottom: 18px;
  }

  body[data-page="home"] .industry-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="home"] .industry-links a {
    min-height: 62px;
    padding: 10px 8px;
    font-size: 13px;
  }

  body[data-page="home"] .contact-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body[data-page="home"] .contact-copy {
    justify-self: stretch;
  }

  body[data-page="home"] .contact-actions {
    justify-self: stretch;
    gap: 14px;
  }

  body[data-page="home"] .contact-qr-set {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 104px));
    justify-content: center;
    gap: 10px;
  }

  body[data-page="home"] .contact-qr {
    width: 100%;
    padding: 8px;
  }

  body[data-page="home"] .contact-qr figcaption {
    margin-top: 6px;
    font-size: 11px;
  }
}

@media (min-width: 431px) and (max-width: 700px) {
  body[data-page="home"] .product-family-card {
    min-height: 154px;
  }
}

@media (max-width: 700px) {
  body[data-product-page] .detail-hero {
    min-height: 92svh;
    align-items: end;
    padding: calc(var(--header-height) + 48px) 16px 46px;
    background: #02090a;
  }

  body[data-product-page] .detail-hero-media {
    inset: 0;
    display: block;
    padding: 0;
  }

  body[data-product-page] .detail-hero-media img,
  body[data-product-page="airborne"] .detail-hero-media img,
  body[data-product-page="handheld"] .detail-hero-media img,
  body[data-product-page="oem"] .detail-hero-media img,
  body[data-product-page="manpack"] .detail-hero-media img,
  body[data-product-page="vehicle-outdoor"] .detail-hero-media img,
  body[data-product-page="ddlmesh"] .detail-hero-media img,
  body[data-product-page="sdr400"] .detail-hero-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: right center;
    transform: none;
    opacity: 0.92;
    filter: saturate(0.9) contrast(1.04) brightness(0.84);
    -webkit-mask-image: none;
    mask-image: none;
  }

  body[data-product-page] .detail-hero-media::before,
  body[data-product-page="airborne"] .detail-hero-media::before,
  body[data-product-page="handheld"] .detail-hero-media::before,
  body[data-product-page="oem"] .detail-hero-media::before,
  body[data-product-page="manpack"] .detail-hero-media::before,
  body[data-product-page="vehicle-outdoor"] .detail-hero-media::before,
  body[data-product-page="ddlmesh"] .detail-hero-media::before,
  body[data-product-page="sdr400"] .detail-hero-media::before {
    background:
      linear-gradient(90deg, rgba(2, 9, 10, 0.98) 0%, rgba(2, 9, 10, 0.78) 48%, rgba(2, 9, 10, 0.3) 100%),
      linear-gradient(180deg, rgba(2, 9, 10, 0.2) 0%, rgba(2, 9, 10, 0.12) 42%, rgba(2, 9, 10, 0.88) 100%);
  }

  body[data-product-page] .detail-hero::after {
    opacity: 0.48;
  }

  body[data-product-page] .detail-hero-inner {
    width: 100%;
    max-width: 680px;
    padding-top: 0;
    text-align: left;
  }

  body[data-product-page] .detail-hero-inner .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
  }

  body[data-product-page] .detail-hero-inner h1 {
    margin-bottom: 10px;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.04;
  }

  body[data-product-page] .detail-hero-inner p:not(.eyebrow) {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.5;
  }

  body[data-product-page] .detail-nav-strip {
    margin-top: 16px;
  }

  body[data-product-page="vehicle-outdoor"] .hero-title-line + .hero-title-line,
  body[data-product-page="sdr400"] .detail-hero-inner h1 {
    font-size: clamp(32px, 9.2vw, 44px);
  }

  body[data-product-page="sdr400"] .detail-hero-inner h1 {
    max-width: 100%;
    font-size: clamp(28px, 7.6vw, 36px);
    line-height: 1.12;
  }

  body[data-product-page="sdr400"] .sdr400-title-main,
  body[data-product-page="sdr400"] .sdr400-title-series,
  body[data-product-page="sdr400"] .product-hero-title-desktop {
    display: none;
  }

  body[data-product-page="sdr400"] .sdr400-mobile-title,
  body[data-product-page="sdr400"] .product-hero-title-mobile {
    display: block;
  }

  body[data-product-page] .spec-section {
    padding: 24px 12px 28px;
  }

  body[data-product-page] .spec-section .section-heading {
    margin-bottom: 10px;
    text-align: center;
  }

  body[data-product-page] .spec-section .section-heading .eyebrow {
    margin-bottom: 5px;
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  body[data-product-page] .spec-section .section-heading h2 {
    margin-bottom: 0;
    font-size: 25px;
    line-height: 1.06;
  }

  body[data-product-page] .airborne-common-panel {
    margin-top: 0;
    padding: 10px;
    border-color: rgba(7, 16, 18, 0.14);
    box-shadow: none;
  }

  body[data-product-page] .airborne-common-head {
    display: grid;
    justify-items: center;
    gap: 4px;
    margin-bottom: 9px;
    text-align: center;
  }

  body[data-product-page] .airborne-common-head span {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  body[data-product-page] .airborne-common-head h3 {
    font-size: 16px;
    line-height: 1.14;
  }

  body[data-product-page] .mobile-spec-tabs {
    display: flex;
    gap: 6px;
    margin: 0 0 10px;
    padding: 0 0 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body[data-product-page] .mobile-spec-tabs::-webkit-scrollbar {
    display: none;
  }

  body[data-product-page] .mobile-spec-tabs button {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(7, 16, 18, 0.16);
    border-radius: 0;
    background: rgba(255, 253, 248, 0.9);
    color: rgba(7, 16, 18, 0.68);
    font: inherit;
    font-size: 11px;
    font-weight: 820;
    letter-spacing: 0;
  }

  body[data-product-page] .mobile-spec-tabs button.is-active {
    border-color: rgba(7, 16, 18, 0.86);
    background: #071012;
    color: var(--white);
  }

  body[data-product-page] .airborne-param-set {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .has-js body[data-product-page] .airborne-param-set:not(.is-active) {
    display: none;
  }

  body[data-product-page] .airborne-param-set h4 {
    display: block;
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.12;
  }

  .has-js body[data-product-page] .airborne-param-set .airborne-common-table-wrap,
  .has-js body[data-product-page] .airborne-param-set .airborne-model-table-wrap {
    display: none;
  }

  .has-js body[data-product-page] .airborne-param-set .mobile-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(7, 16, 18, 0.14);
    background: rgba(7, 16, 18, 0.14);
  }

  body[data-product-page] .mobile-spec-item {
    min-width: 0;
    min-height: 43px;
    padding: 6px 7px;
    background: rgba(255, 253, 248, 0.92);
    overflow: hidden;
  }

  body[data-product-page] .mobile-spec-item span {
    display: block;
    margin-bottom: 2px;
    color: #8f5b2d;
    font-size: 9px;
    font-weight: 860;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body[data-product-page] .mobile-spec-item p {
    display: -webkit-box;
    margin: 0;
    color: rgba(7, 16, 18, 0.76);
    font-size: 9.5px;
    font-weight: 680;
    line-height: 1.2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body[data-product-page] .airborne-power-matrix {
    margin-top: 14px;
    padding-top: 14px;
  }

  body[data-product-page] .power-matrix-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 10px;
  }

  body[data-product-page] .power-matrix-head span {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  body[data-product-page] .power-matrix-head h3 {
    font-size: 18px;
    line-height: 1.08;
  }

  body[data-product-page] .power-matrix-head p {
    display: -webkit-box;
    margin: 0;
    font-size: 10.5px;
    line-height: 1.3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body[data-product-page] .power-lanes,
  body[data-product-page] .handheld-variant-grid,
  body[data-product-page] .oem-variant-grid,
  body[data-product-page] .manpack-variant-grid,
  body[data-product-page] .vehicle-variant-grid,
  body[data-product-page] .ddl-extra-grid,
  body[data-product-page] .airborne-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(7, 16, 18, 0.14);
    background: rgba(7, 16, 18, 0.14);
  }

  body[data-product-page] .power-lane,
  body[data-product-page] .handheld-variant-card,
  body[data-product-page] .oem-variant-card,
  body[data-product-page] .manpack-variant-card,
  body[data-product-page] .vehicle-variant-card {
    min-height: 0;
    padding: 8px;
    border: 0;
    background: rgba(255, 253, 248, 0.92);
    box-shadow: none;
    overflow: hidden;
  }

  body[data-product-page] .power-lane-top {
    align-items: start;
    gap: 6px;
  }

  body[data-product-page] .power-lane-top span,
  body[data-product-page] .handheld-variant-card span,
  body[data-product-page] .oem-variant-card span,
  body[data-product-page] .manpack-variant-card span,
  body[data-product-page] .vehicle-variant-card span,
  body[data-product-page] .ddl-extra-card span {
    margin-bottom: 7px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  body[data-product-page] .power-lane h4,
  body[data-product-page] .handheld-variant-card h4,
  body[data-product-page] .oem-variant-card h4,
  body[data-product-page] .manpack-variant-card h4,
  body[data-product-page] .vehicle-variant-card h4,
  body[data-product-page] .ddl-extra-card h5 {
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1.16;
  }

  body[data-product-page] .power-lane h4 {
    text-align: right;
  }

  body[data-product-page] .power-range {
    margin: 7px 0;
    font-size: 16px;
    line-height: 1.05;
  }

  body[data-product-page] .handheld-variant-card p,
  body[data-product-page] .oem-variant-card p,
  body[data-product-page] .manpack-variant-card p,
  body[data-product-page] .vehicle-variant-card p,
  body[data-product-page] .ddl-extra-card p {
    display: -webkit-box;
    margin: 0;
    font-size: 10.5px;
    line-height: 1.28;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body[data-product-page] .power-lane dl,
  body[data-product-page] .handheld-variant-card dl,
  body[data-product-page] .oem-variant-card dl,
  body[data-product-page] .manpack-variant-card dl,
  body[data-product-page] .vehicle-variant-card dl,
  body[data-product-page] .ddl-extra-card dl {
    gap: 1px;
    margin-top: 7px;
  }

  body[data-product-page] .power-lane dl div,
  body[data-product-page] .handheld-variant-card dl div,
  body[data-product-page] .oem-variant-card dl div,
  body[data-product-page] .manpack-variant-card dl div,
  body[data-product-page] .vehicle-variant-card dl div,
  body[data-product-page] .ddl-extra-card dl div {
    grid-template-columns: minmax(34px, 0.42fr) minmax(0, 1fr);
    gap: 5px;
    padding: 5px 6px;
  }

  body[data-product-page] .power-lane dt,
  body[data-product-page] .power-lane dd,
  body[data-product-page] .handheld-variant-card dt,
  body[data-product-page] .handheld-variant-card dd,
  body[data-product-page] .oem-variant-card dt,
  body[data-product-page] .oem-variant-card dd,
  body[data-product-page] .manpack-variant-card dt,
  body[data-product-page] .manpack-variant-card dd,
  body[data-product-page] .vehicle-variant-card dt,
  body[data-product-page] .vehicle-variant-card dd,
  body[data-product-page] .ddl-extra-card dt,
  body[data-product-page] .ddl-extra-card dd {
    font-size: 9px;
    line-height: 1.18;
  }

  body[data-product-page] .power-lane dd,
  body[data-product-page] .handheld-variant-card dd,
  body[data-product-page] .oem-variant-card dd,
  body[data-product-page] .manpack-variant-card dd,
  body[data-product-page] .vehicle-variant-card dd,
  body[data-product-page] .ddl-extra-card dd {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body[data-product-page] .ddl-extra-products {
    margin-top: 14px;
    padding-top: 14px;
  }

  body[data-product-page] .ddl-extra-head {
    gap: 5px;
    margin-bottom: 10px;
  }

  body[data-product-page] .ddl-extra-head span {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  body[data-product-page] .ddl-extra-head h4 {
    font-size: 18px;
  }

  body[data-product-page] .ddl-extra-card {
    grid-template-rows: auto 1fr;
    border: 0;
    background: rgba(255, 253, 248, 0.92);
  }

  body[data-product-page] .ddl-extra-card figure {
    min-height: 82px;
    padding: 8px;
  }

  body[data-product-page] .ddl-extra-card img {
    max-height: 86px;
  }

  body[data-product-page] .ddl-extra-card > div {
    gap: 6px;
    padding: 8px;
  }

  body[data-product-page] .airborne-media-card {
    min-height: 96px;
    padding: 8px;
    border: 0;
    background: rgba(255, 253, 248, 0.92);
  }

  body[data-product-page] .airborne-media-card img {
    max-height: 120px;
  }

  body[data-product-page="sdr400"] .detail-hero-media img {
    object-position: center center;
  }

  body[data-product-page="sdr400"] .sdr400-media-grid {
    grid-template-columns: 1fr;
  }

  body[data-product-page="sdr400"] .sdr400-application-strip-card {
    min-height: 0;
    padding: 0;
  }

  body[data-product-page="sdr400"] .sdr400-application-strip-card img {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }

  body[data-product-page] .airborne-common-table-wrap:has(> .airborne-common-table) {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  body[data-product-page] .airborne-common-table tbody {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(7, 16, 18, 0.14);
    background: rgba(7, 16, 18, 0.14);
  }

  body[data-product-page] .airborne-common-table tbody tr {
    min-height: 62px;
    display: grid;
    grid-template-rows: auto 1fr;
    border: 0;
    background: rgba(255, 253, 248, 0.9);
    overflow: hidden;
  }

  body[data-product-page] .airborne-common-table tbody td {
    min-width: 0;
    padding: 0 8px 8px;
    border: 0;
    font-size: 10.5px;
    line-height: 1.26;
  }

  body[data-product-page] .airborne-common-table tbody td:first-of-type {
    padding: 8px 8px 2px;
    color: #8f5b2d;
    font-size: 10px;
    line-height: 1.12;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body[data-product-page] .airborne-common-table tbody td:nth-child(2) {
    display: -webkit-box;
    color: rgba(7, 16, 18, 0.76);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media (min-width: 520px) and (max-width: 700px) {
  body[data-product-page] .power-lanes,
  body[data-product-page] .handheld-variant-grid,
  body[data-product-page] .oem-variant-grid,
  body[data-product-page] .manpack-variant-grid,
  body[data-product-page] .vehicle-variant-grid,
  body[data-product-page] .ddl-extra-grid,
  body[data-product-page] .airborne-media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

body[data-page="link-simulator"] {
  background: #081113;
}

.sim-hero {
  min-height: min(760px, 92svh);
  position: relative;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 62px) var(--section-pad) 72px;
  overflow: hidden;
}

.sim-hero-bg,
.sim-hero-bg canvas {
  position: absolute;
  inset: 0;
}

.sim-hero-bg {
  background:
    linear-gradient(90deg, rgba(7, 16, 18, 0.86), rgba(7, 16, 18, 0.34)),
    radial-gradient(circle at 76% 28%, rgba(66, 215, 209, 0.22), transparent 34%),
    linear-gradient(140deg, #0a1416 0%, #142023 52%, #1c1712 100%);
}

.sim-hero-bg canvas {
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.sim-hero-inner {
  width: min(760px, 100%);
  position: relative;
  z-index: 1;
}

.sim-hero h1 {
  max-width: 11ch;
  color: var(--white);
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.98;
  font-weight: 860;
  letter-spacing: 0;
}

.sim-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(16px, 1.35vw, 21px);
}

.sim-workbench {
  --sim-surface: rgba(255, 250, 240, 0.94);
  --sim-ink: #071012;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.6fr);
  gap: 20px;
  color: var(--sim-ink);
  background: #ebe4d5;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.sim-topology {
  grid-column: 1 / -1;
}

.sim-panel,
.sim-kpi-grid article,
.sim-table-wrap,
.sim-method-grid article {
  border: 1px solid rgba(7, 16, 18, 0.12);
  background: rgba(255, 253, 248, 0.82);
}

.sim-panel {
  padding: clamp(18px, 2.4vw, 28px);
}

.sim-controls {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 18px);
}

.sim-panel-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.sim-panel-heading h2 {
  color: #071012;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.1;
}

.sim-quick-presets,
.sim-device-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.sim-quick-presets button,
.sim-device-palette button {
  min-height: 38px;
  border: 1px solid rgba(7, 16, 18, 0.16);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.76);
  color: #071012;
  padding: 0 12px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 820;
}

.sim-device-palette button {
  background: rgba(14, 159, 153, 0.1);
  border-color: rgba(14, 159, 153, 0.28);
  color: #075b57;
}

.sim-quick-presets button:hover,
.sim-device-palette button:hover {
  border-color: rgba(14, 159, 153, 0.58);
  background: rgba(66, 215, 209, 0.16);
}

.topology-toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) repeat(2, minmax(120px, max-content)) minmax(180px, 1fr);
  align-items: end;
  gap: 10px;
  margin-bottom: 14px;
}

.topology-toolbar button {
  min-height: 42px;
  border: 1px solid rgba(7, 16, 18, 0.18);
  border-radius: 6px;
  background: #071012;
  color: var(--white);
  padding: 0 14px;
  cursor: pointer;
  font-weight: 820;
}

.topology-toolbar button.is-active {
  background: #0e9f99;
  border-color: #0e9f99;
}

.topology-toolbar label {
  display: grid;
  gap: 6px;
  width: min(230px, 100%);
  color: rgba(7, 16, 18, 0.7);
  font-size: 13px;
  font-weight: 780;
}

.topology-toolbar label:last-child {
  justify-self: end;
}

.topology-toolbar input,
.topology-toolbar select {
  min-height: 42px;
  border: 1px solid rgba(7, 16, 18, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: #071012;
  padding: 0 10px;
  font: inherit;
  font-weight: 760;
}

.topology-view-grid {
  --topology-view-height: clamp(340px, 46vh, 500px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.topology-view-panel {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
}

.topology-view-title {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  border: 1px solid rgba(7, 16, 18, 0.12);
  border-radius: 6px;
  background: rgba(7, 16, 18, 0.045);
  color: rgba(7, 16, 18, 0.72);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 860;
}

.topology-3d-stage {
  position: relative;
  min-height: var(--topology-view-height);
  height: var(--topology-view-height);
  border: 1px solid rgba(7, 16, 18, 0.16);
  background: #071012;
  overflow: hidden;
}

.topology-3d-stage canvas {
  width: 100%;
  height: 100%;
  min-height: var(--topology-view-height);
  display: block;
  cursor: grab;
}

.topology-3d-stage canvas:active {
  cursor: grabbing;
}

.topology-3d-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.topology-3d-label {
  position: absolute;
  min-width: 92px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  background: rgba(7, 16, 18, 0.76);
  color: rgba(255, 250, 240, 0.92);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 780;
  transform: translate(-50%, -100%);
  white-space: nowrap;
  opacity: 0.9;
}

.topology-3d-label strong {
  display: block;
  color: #fffaf0;
  font-size: 12px;
}

.topology-3d-label.is-link {
  min-width: 120px;
  color: rgba(255, 250, 240, 0.74);
  transform: translate(-50%, -50%);
}

.topology-3d-label.is-muted {
  opacity: 0.42;
}

.topology-3d-controls {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  z-index: 2;
}

.topology-3d-controls button {
  min-height: 32px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 6px;
  background: rgba(7, 16, 18, 0.72);
  color: rgba(255, 250, 240, 0.88);
  padding: 0 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 820;
}

.topology-3d-controls button.is-active {
  border-color: rgba(66, 215, 209, 0.72);
  color: #42d7d1;
}

.topology-3d-focus {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: min(320px, calc(100% - 24px));
  padding: 12px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  background: rgba(7, 16, 18, 0.78);
  color: rgba(255, 250, 240, 0.74);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 760;
  z-index: 2;
}

.topology-3d-focus strong {
  display: block;
  color: #fffaf0;
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 5px;
}

.topology-3d-focus em {
  color: #42d7d1;
  font-style: normal;
  font-weight: 860;
}

.topology-3d-legend {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(7, 16, 18, 0.7);
  color: rgba(255, 250, 240, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.topology-3d-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topology-3d-legend i {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
}

.topology-3d-legend .is-good {
  background: #42d7d1;
}

.topology-3d-legend .is-warn {
  background: #d3b06b;
}

.topology-3d-legend .is-bad {
  background: #e04b41;
}

.topology-stage {
  position: relative;
  min-height: var(--topology-view-height);
  height: var(--topology-view-height);
  border: 1px solid rgba(7, 16, 18, 0.13);
  background:
    linear-gradient(rgba(7, 16, 18, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 18, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(66, 215, 209, 0.12), transparent 34%),
    #fffdf8;
  background-size:
    40px 40px,
    40px 40px,
    auto,
    auto;
  overflow: hidden;
}

.topology-stage svg {
  width: 100%;
  height: 100%;
  min-height: var(--topology-view-height);
  display: block;
  touch-action: none;
  user-select: none;
}

.topology-stage.is-place-mode {
  cursor: crosshair;
}

.topology-link-hit {
  stroke: transparent;
  stroke-width: 18;
  cursor: pointer;
}

.topology-link {
  stroke: rgba(7, 16, 18, 0.34);
  stroke-width: 3;
  stroke-linecap: round;
}

.topology-link.is-good {
  stroke: #0e9f99;
}

.topology-link.is-warn {
  stroke: #b66f38;
}

.topology-link.is-bad {
  stroke: #e04b41;
}

.topology-link.is-blocked {
  stroke: #e04b41;
  stroke-dasharray: 11 8;
}

.topology-link.is-muted-fail {
  opacity: 0.16;
  stroke-width: 1.6;
}

.topology-link.is-selected {
  opacity: 1;
  stroke-width: 5;
}

.topology-link-label {
  fill: #071012;
  paint-order: stroke;
  stroke: rgba(255, 253, 248, 0.92);
  stroke-width: 5px;
  stroke-linejoin: round;
  font-size: 16px;
  font-weight: 860;
  pointer-events: none;
}

.topology-link-sub {
  fill: rgba(7, 16, 18, 0.72);
  font-size: 12px;
  font-weight: 820;
}

.topology-link.is-bad ~ .topology-link-label,
.topology-link.is-blocked ~ .topology-link-label,
.topology-link.is-bad ~ .topology-link-label .topology-link-sub,
.topology-link.is-blocked ~ .topology-link-label .topology-link-sub {
  fill: #e04b41;
}

.topology-node {
  cursor: grab;
}

.topology-node:active {
  cursor: grabbing;
}

.topology-node-ring {
  fill: rgba(255, 253, 248, 0.92);
  stroke: rgba(7, 16, 18, 0.2);
  stroke-width: 2;
}

.topology-node.is-selected .topology-node-ring {
  stroke: #0e9f99;
  stroke-width: 4;
}

.topology-node.is-pending .topology-node-ring {
  stroke: #b66f38;
  stroke-width: 4;
}

.topology-node-core {
  fill: #071012;
}

.topology-node text {
  fill: #071012;
  paint-order: stroke;
  stroke: rgba(255, 253, 248, 0.94);
  stroke-width: 4px;
  stroke-linejoin: round;
  font-weight: 850;
  pointer-events: none;
}

.topology-node .topology-node-name {
  font-size: 16px;
}

.topology-node .topology-node-type {
  fill: rgba(7, 16, 18, 0.66);
  font-size: 12px;
  font-weight: 780;
}

.topology-node .topology-node-height {
  fill: #996232;
  font-size: 12px;
  font-weight: 840;
}

.topology-range-ring {
  fill: rgba(14, 159, 153, 0.06);
  stroke: rgba(14, 159, 153, 0.18);
  stroke-dasharray: 8 7;
  pointer-events: none;
}

.topology-status {
  min-height: 42px;
  display: flex;
  align-items: center;
  margin-top: 12px;
  padding: 9px 12px;
  border: 1px solid rgba(7, 16, 18, 0.11);
  background: rgba(7, 16, 18, 0.04);
  color: rgba(7, 16, 18, 0.72);
  font-size: 13px;
  font-weight: 760;
}

.sim-control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sim-control-grid label,
.sim-switches label {
  min-width: 0;
  color: rgba(7, 16, 18, 0.76);
  font-size: 13px;
  font-weight: 760;
}

.sim-control-grid label {
  display: grid;
  gap: 6px;
}

.sim-control-grid .sim-control-wide {
  grid-column: 1 / -1;
}

.sim-control-grid select,
.sim-control-grid input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(7, 16, 18, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: #071012;
  padding: 0 10px;
  font: inherit;
  font-weight: 720;
}

.sim-control-grid select:focus,
.sim-control-grid input:focus {
  outline: 2px solid rgba(66, 215, 209, 0.55);
  outline-offset: 1px;
}

.sim-selected-summary {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid rgba(7, 16, 18, 0.13);
  border-left: 4px solid #0e9f99;
  background: rgba(14, 159, 153, 0.07);
}

.sim-selected-summary strong {
  color: #071012;
  font-size: 15px;
  line-height: 1.2;
}

.sim-selected-summary span {
  color: rgba(7, 16, 18, 0.68);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}

.sim-selected-summary.is-warn {
  border-left-color: #b66f38;
  background: rgba(182, 111, 56, 0.08);
}

.sim-selected-summary.is-bad,
.sim-selected-summary.is-blocked {
  border-left-color: #e04b41;
  background: rgba(224, 75, 65, 0.08);
}

.sim-switches {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 16, 18, 0.12);
}

.sim-switches label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sim-switches input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0e9f99;
}

.sim-results {
  display: grid;
  gap: 20px;
}

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

.sim-kpi-grid article {
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  padding: 16px;
}

.sim-kpi-grid span {
  color: rgba(7, 16, 18, 0.62);
  font-size: 12px;
  font-weight: 820;
}

.sim-kpi-grid strong {
  color: #071012;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  font-weight: 860;
}

.sim-kpi-grid small {
  color: #996232;
  font-size: 13px;
  font-weight: 800;
}

.sim-chart-panel {
  min-height: 430px;
}

.sim-chart {
  width: 100%;
  height: min(48vw, 430px);
  min-height: 310px;
  display: block;
  border: 1px solid rgba(7, 16, 18, 0.1);
  background: #fffdf8;
}

.sim-table-wrap {
  overflow-x: auto;
}

.sim-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  color: #071012;
}

.sim-table th,
.sim-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(7, 16, 18, 0.1);
  text-align: left;
  white-space: nowrap;
}

.sim-table th {
  background: rgba(7, 16, 18, 0.06);
  color: rgba(7, 16, 18, 0.68);
  font-size: 12px;
  font-weight: 860;
}

.sim-table td {
  font-size: 14px;
  font-weight: 720;
}

.sim-table tr:last-child td {
  border-bottom: 0;
}

.sim-method {
  background: #0a1416;
}

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

.sim-method-grid article {
  min-height: 210px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 250, 240, 0.14);
}

.sim-method-grid h3 {
  color: var(--white);
  font-size: 20px;
}

.sim-method-grid p {
  margin-top: 12px;
  color: rgba(255, 250, 240, 0.68);
}

@media (max-width: 980px) {
  .sim-workbench {
    grid-template-columns: 1fr;
  }

  .sim-controls {
    position: static;
  }

  .sim-method-grid {
    grid-template-columns: 1fr;
  }

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

  .topology-toolbar label {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

}

@media (max-width: 900px) {
  .topology-view-grid {
    --topology-view-height: 380px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .sim-hero {
    min-height: 680px;
    padding-bottom: 42px;
  }

  .sim-control-grid,
  .sim-kpi-grid {
    grid-template-columns: 1fr;
  }

  .sim-chart {
    height: 340px;
  }

  .topology-toolbar {
    grid-template-columns: 1fr;
  }

  .topology-view-grid {
    --topology-view-height: 360px;
  }

  .topology-stage,
  .topology-stage svg {
    min-height: var(--topology-view-height);
  }

  .topology-3d-stage,
  .topology-3d-stage canvas {
    min-height: var(--topology-view-height);
  }

  .topology-3d-legend {
    left: 10px;
    right: 10px;
    justify-content: center;
  }

  .topology-3d-controls {
    left: 10px;
    right: 10px;
  }

  .topology-3d-controls button {
    flex: 1 1 auto;
  }

  .topology-3d-focus {
    left: 10px;
    right: 10px;
    bottom: 52px;
    width: auto;
  }
}
