:root {
  --ink-950: #04101c;
  --ink-900: #071522;
  --ink-850: #0a1a29;
  --ink-800: #0e2233;
  --ink-700: #18374d;
  --steel-600: #547086;
  --steel-500: #6f8799;
  --steel-300: #afbfca;
  --steel-200: #d1dce3;
  --steel-100: #e6eef2;
  --mist: #f1f5f7;
  --white: #ffffff;
  --cyan: #22ddeb;
  --cyan-dark: #03afc4;
  --blue: #327cff;
  --lime: #b7f35a;
  --danger: #ff6b78;
  --line-dark: rgba(184, 222, 237, 0.16);
  --line-light: #dbe5ea;
  --shadow-soft: 0 18px 60px rgba(5, 24, 38, 0.1);
  --shadow-dark: 0 24px 80px rgba(0, 7, 13, 0.38);
  --container: min(1380px, calc(100vw - 64px));
  --font-body: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  --header-height: 98px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(44px, 6vw, 84px);
}

h2 {
  font-size: clamp(34px, 4vw, 60px);
}

h3 {
  font-size: 23px;
}

::selection {
  color: var(--ink-950);
  background: var(--cyan);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-grid {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  border-inline: 1px solid rgba(28, 105, 141, 0.04);
  background-image:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(18, 94, 129, 0.035) 50%, transparent calc(50% + 0.5px));
  background-size: min(690px, 50vw) 100%;
  background-position: center;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  color: var(--ink-950);
  background: var(--lime);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.system-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--cyan-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.system-label::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.system-label-light {
  color: var(--cyan);
}

.section {
  position: relative;
  padding: 118px 0;
}

.section-white {
  background: var(--white);
}

.section-mist {
  background: var(--mist);
}

.section-ink {
  color: var(--white);
  background: var(--ink-950);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 58px;
}

.section-head h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-head p {
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--steel-600);
  font-size: 16px;
}

.section-head-light p {
  color: var(--steel-300);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 13px;
}

.button-primary {
  color: var(--ink-950);
  background: var(--cyan);
}

.button-primary:hover {
  background: var(--lime);
}

.button-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(4, 18, 31, 0.38);
  backdrop-filter: blur(14px);
}

.button-glass:hover {
  border-color: var(--cyan);
  background: rgba(5, 25, 40, 0.72);
}

.button-outline {
  color: var(--ink-900);
  border-color: var(--steel-200);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--ink-800);
}

.button-light {
  color: var(--ink-950);
  background: var(--white);
}

.button-light:hover {
  background: var(--lime);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: var(--ink-900);
  background: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.text-link .svg-icon {
  transition: transform 0.2s ease;
}

.text-link:hover .svg-icon {
  transform: translateX(4px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 150;
  top: 0;
  height: var(--header-height);
  color: var(--white);
  background: var(--ink-950);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 8, 14, 0.3);
}

.signal-bar {
  height: 30px;
  border-bottom: 1px solid var(--line-dark);
  background: #020b13;
}

.signal-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.signal-inner p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--steel-300);
}

.signal-inner > div {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--steel-200);
}

.signal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(183, 243, 90, 0.75);
}

.signal-separator {
  color: var(--steel-600);
}

.nav-shell {
  height: 68px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(4, 16, 28, 0.94);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  min-width: 198px;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 94px;
  height: 36px;
  place-items: center;
  padding: 4px 8px;
  background: var(--white);
}

.brand-mark img {
  width: 100%;
  max-height: 28px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy b {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--steel-300);
  font-size: 8px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  flex: 1;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
}

.main-nav a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  color: var(--steel-200);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.icon-button:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(34, 221, 235, 0.06);
}

.menu-trigger {
  display: none;
}

/* Home hero */
.home-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink-950);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 23, 0.98) 0%, rgba(3, 13, 23, 0.88) 31%, rgba(3, 13, 23, 0.28) 61%, rgba(3, 13, 23, 0.08) 100%),
    linear-gradient(0deg, rgba(3, 13, 23, 0.7), transparent 45%);
  content: "";
}

.hero-overlay-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(72, 199, 235, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 199, 235, 0.18) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 72px;
  padding-block: 90px 116px;
}

.hero-copy {
  max-width: 790px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-kicker span {
  width: 9px;
  height: 9px;
  border: 2px solid var(--cyan);
  box-shadow: 0 0 16px rgba(34, 221, 235, 0.8);
  transform: rotate(45deg);
}

.hero-copy h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.3vw, 92px);
  letter-spacing: -0.055em;
}

.hero-copy h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-copy > p {
  max-width: 660px;
  margin-bottom: 36px;
  color: #d3e0e7;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 42px;
  color: var(--steel-300);
  font-size: 11px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof .svg-icon {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

.hero-telemetry {
  align-self: end;
  margin-bottom: 34px;
  border: 1px solid rgba(124, 202, 229, 0.3);
  background: rgba(4, 16, 28, 0.7);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
}

.telemetry-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.telemetry-head i {
  height: 1px;
  flex: 1;
  background: var(--line-dark);
}

.telemetry-head b {
  color: var(--lime);
}

.charge-graph {
  position: relative;
  height: 150px;
  margin: 0 16px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background-image:
    linear-gradient(rgba(107, 190, 220, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 190, 220, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}

.graph-line {
  position: absolute;
  top: 70px;
  left: -4%;
  width: 108%;
  height: 26px;
  border-top: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 -8px 28px rgba(34, 221, 235, 0.32);
  transform: rotate(-3deg) skewX(22deg);
}

.graph-line::before,
.graph-line::after {
  position: absolute;
  top: -5px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: var(--ink-950);
  content: "";
}

.graph-line::before {
  left: 34%;
}

.graph-line::after {
  right: 20%;
}

.charge-graph > span {
  position: absolute;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.graph-zero {
  top: 54px;
  right: 7px;
  color: var(--white);
}

.graph-pos {
  top: 15px;
  left: 8px;
  color: var(--cyan);
}

.graph-neg {
  bottom: 18px;
  left: 8px;
  color: #7aa3ff;
}

.telemetry-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.telemetry-values div {
  padding: 14px 12px;
  border-right: 1px solid var(--line-dark);
}

.telemetry-values div:last-child {
  border-right: 0;
}

.telemetry-values small,
.telemetry-values b {
  display: block;
  font-family: var(--font-display);
}

.telemetry-values small {
  margin-bottom: 4px;
  color: var(--steel-500);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.telemetry-values b {
  color: var(--cyan);
  font-size: 18px;
}

.hero-charge-field {
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 42%;
  width: 44%;
  height: 66%;
  pointer-events: none;
}

.ion {
  position: absolute;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(34, 221, 235, 0.8);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(4, 16, 28, 0.55);
  box-shadow: 0 0 20px rgba(34, 221, 235, 0.36);
  font-family: var(--font-display);
  font-size: 15px;
  animation: ionFloat 7s ease-in-out infinite;
}

.ion-b,
.ion-d {
  color: #7a9dff;
  border-color: rgba(93, 125, 255, 0.8);
  box-shadow: 0 0 20px rgba(71, 104, 255, 0.4);
}

.ion-a {
  top: 13%;
  left: 26%;
}

.ion-b {
  top: 39%;
  left: 7%;
  animation-delay: -1.8s;
}

.ion-c {
  top: 63%;
  left: 45%;
  animation-delay: -3.3s;
}

.ion-d {
  top: 24%;
  right: 16%;
  animation-delay: -4.2s;
}

.ion-e {
  right: 3%;
  bottom: 8%;
  animation-delay: -5.4s;
}

@keyframes ionFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -18px);
  }
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--line-dark);
  background: rgba(3, 13, 23, 0.72);
  backdrop-filter: blur(12px);
}

.hero-bottom .container {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--steel-300);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-bottom i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

/* Explainer */
.explainer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
  align-items: center;
  gap: 90px;
}

.section-copy h2 {
  margin-bottom: 28px;
}

.section-copy > p {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--steel-600);
  font-size: 17px;
}

.field-diagram {
  position: relative;
  border: 1px solid var(--line-light);
  background: #f7fafb;
  box-shadow: var(--shadow-soft);
}

.field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-light);
  color: var(--steel-600);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.field-head b {
  color: var(--cyan-dark);
}

.field-stage {
  position: relative;
  height: 430px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(20, 105, 142, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 105, 142, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
}

.emitter-array {
  position: absolute;
  top: 50px;
  left: 8%;
  display: flex;
  width: 84%;
  height: 54px;
  align-items: flex-end;
  justify-content: space-around;
  border: 1px solid #527387;
  background: var(--ink-800);
  box-shadow: 0 12px 30px rgba(4, 20, 31, 0.2);
}

.emitter-array::before {
  position: absolute;
  top: 11px;
  left: 16px;
  color: var(--cyan);
  content: "KESD · ION EMITTER ARRAY";
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.emitter-array i {
  width: 2px;
  height: 18px;
  margin-bottom: -19px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(34, 221, 235, 0.85);
}

.ion-streams {
  position: absolute;
  inset: 115px 8% 90px;
}

.ion-streams span {
  position: absolute;
  top: calc((var(--i) % 3) * 54px);
  left: calc((var(--i) * 13) % 93 * 1%);
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 13px;
  animation: fieldFall 3.6s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.24s);
}

.ion-streams .positive {
  color: var(--cyan-dark);
}

.ion-streams .negative {
  color: #5d79dc;
}

@keyframes fieldFall {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(-8px);
  }
  45% {
    opacity: 1;
  }
  65% {
    opacity: 0.7;
    transform: translateY(90px);
  }
}

.target-surface {
  position: absolute;
  right: 8%;
  bottom: 40px;
  left: 8%;
  display: grid;
  grid-template-columns: 1fr auto 50px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--steel-300);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(10, 42, 59, 0.1);
  font-family: var(--font-display);
}

.target-surface span {
  color: var(--steel-600);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.target-surface b {
  color: var(--danger);
  font-size: 14px;
}

.target-surface b:last-child {
  color: #159a88;
}

.target-surface i {
  height: 1px;
  background: var(--steel-300);
}

/* Categories */
.category-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(42, 130, 168, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 130, 168, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black);
}

.category-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.category-card {
  position: relative;
  min-height: 410px;
  padding: 24px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(10, 29, 44, 0.35);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.category-card:hover {
  z-index: 2;
  background: var(--ink-800);
  transform: translateY(-5px);
}

.category-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.category-card-top b {
  color: var(--cyan);
}

.category-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin: 46px 0 38px;
  border: 1px solid rgba(34, 221, 235, 0.45);
  color: var(--cyan);
  background: rgba(34, 221, 235, 0.04);
  box-shadow: inset 0 0 30px rgba(34, 221, 235, 0.05);
}

.category-svg {
  width: 40px;
  height: 40px;
}

.category-card h3 {
  margin-bottom: 15px;
  color: var(--white);
}

.category-card p {
  color: var(--steel-300);
  font-size: 13px;
}

.category-link {
  position: absolute;
  right: 24px;
  bottom: 23px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--white);
  box-shadow: 0 10px 40px rgba(5, 29, 43, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.product-card:hover {
  border-color: #a7c2ce;
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.product-card-media {
  position: relative;
  display: grid;
  height: 330px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  background:
    linear-gradient(rgba(28, 104, 138, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 104, 138, 0.045) 1px, transparent 1px),
    #f8fbfc;
  background-size: 34px 34px;
}

.product-card-media img {
  width: 82%;
  height: 76%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.045);
}

.media-scan {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64px;
  height: 64px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.media-scan::before,
.media-scan::after {
  position: absolute;
  background: var(--cyan-dark);
  content: "";
}

.media-scan::before {
  top: 31px;
  left: 18px;
  width: 28px;
  height: 1px;
}

.media-scan::after {
  top: 18px;
  left: 31px;
  width: 1px;
  height: 28px;
}

.product-index {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  max-width: 70%;
  color: var(--ink-800);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-status {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 4px 8px;
  color: var(--ink-950);
  background: var(--lime);
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.product-card-body {
  display: flex;
  min-height: 268px;
  flex-direction: column;
  padding: 23px;
}

.product-category {
  margin-bottom: 9px;
  color: var(--cyan-dark);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.product-card h3 a:hover {
  color: var(--cyan-dark);
}

.product-card-body > p {
  display: -webkit-box;
  margin-bottom: 22px;
  overflow: hidden;
  color: var(--steel-600);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card-foot {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-foot a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  justify-self: end;
  color: var(--ink-900);
  border: 1px solid var(--line-light);
}

.product-card-foot a:hover {
  color: var(--ink-950);
  border-color: var(--cyan);
  background: var(--cyan);
}

/* Applications */
.application-section {
  background: var(--white);
}

.application-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.application-tile {
  position: relative;
  min-height: 300px;
  padding: 24px;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.application-tile:hover {
  color: var(--white);
  background: var(--ink-900);
}

.application-code {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--cyan-dark);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.application-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--steel-300);
  font-family: var(--font-display);
  font-size: 10px;
}

.application-tile h3 {
  margin-bottom: 14px;
}

.application-tile p {
  margin-bottom: 0;
  color: var(--steel-600);
  font-size: 13px;
}

.application-tile:hover p {
  color: var(--steel-300);
}

.application-tile > .svg-icon {
  position: absolute;
  right: 22px;
  bottom: 22px;
}

/* Selector banner */
.selector-banner {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #05354a;
}

.selector-banner::before {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(50, 204, 231, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 204, 231, 0.13) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
}

.selector-banner-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 80px;
  padding-block: 70px;
}

.selector-banner h2 {
  max-width: 880px;
  margin-bottom: 22px;
}

.selector-banner p {
  max-width: 650px;
  margin-bottom: 0;
  color: #c3e5ec;
  font-size: 17px;
}

.selector-banner-field {
  position: absolute;
  top: -40px;
  right: 2%;
  width: 42%;
  height: 130%;
  transform: rotate(-10deg);
}

.selector-banner-field span {
  position: relative;
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin: calc((var(--i, 1) % 4) * 5px) 18px 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.38;
  font-family: var(--font-display);
}

.selector-banner-field .positive {
  color: var(--cyan);
}

.selector-banner-field .negative {
  color: #86a1ff;
}

/* Company */
.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
  align-items: center;
  gap: 90px;
}

.company-copy h2 {
  margin-bottom: 25px;
}

.company-copy p {
  max-width: 620px;
  color: var(--steel-600);
  font-size: 17px;
}

.company-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.company-metrics div {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.company-metrics b {
  display: block;
  margin-bottom: 30px;
  color: var(--cyan-dark);
  font-family: var(--font-display);
  font-size: 50px;
  letter-spacing: -0.06em;
}

.company-metrics span {
  color: var(--steel-600);
  font-size: 13px;
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-950);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(51, 139, 176, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 139, 176, 0.16) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 86%);
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 480px;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 80px;
  padding-block: 80px;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 22px;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--steel-300);
  font-size: 18px;
}

.page-code {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line-dark);
  background: rgba(10, 34, 51, 0.42);
}

.page-code small,
.page-code span {
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.page-code b {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 20px;
  word-break: break-word;
}

.page-code span {
  color: var(--lime);
}

.page-hero-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 7%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(34, 221, 235, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
}

.page-hero-orbit::before,
.page-hero-orbit::after {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(34, 221, 235, 0.12);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.page-hero-orbit::before {
  width: 70%;
  height: 70%;
}

.page-hero-orbit::after {
  width: 38%;
  height: 38%;
}

.page-hero-orbit span {
  position: absolute;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  background: var(--ink-950);
  font-family: var(--font-display);
}

.page-hero-orbit span:nth-child(1) {
  top: 12%;
  left: 12%;
}

.page-hero-orbit span:nth-child(2) {
  right: 5%;
  bottom: 28%;
  color: #879bff;
  border-color: #879bff;
}

.page-hero-orbit span:nth-child(3) {
  bottom: 4%;
  left: 30%;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb li + li::before {
  color: var(--steel-300);
  content: "/";
}

.breadcrumb a:hover {
  color: var(--cyan-dark);
}

.breadcrumb i {
  color: var(--steel-300);
  font-style: normal;
}

.breadcrumb span {
  color: var(--ink-800);
}

/* Catalog */
.catalog-section {
  padding-top: 54px;
}

.catalog-toolbar {
  position: sticky;
  z-index: 40;
  top: calc(var(--header-height) + 12px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  margin-bottom: 28px;
  padding: 14px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(8, 31, 44, 0.08);
  backdrop-filter: blur(16px);
}

.catalog-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line-light);
}

.catalog-search .svg-icon {
  color: var(--cyan-dark);
}

.catalog-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.catalog-search span {
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 10px;
  white-space: nowrap;
}

.sort-control {
  display: grid;
  min-width: 220px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--line-light);
}

.sort-control span {
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 9px;
  text-transform: uppercase;
}

.sort-control select {
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
}

.filter-mobile-trigger {
  display: none;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.filter-panel {
  border: 1px solid var(--line-light);
  background: var(--white);
}

.filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px;
  color: var(--steel-500);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.filter-heading button {
  padding: 0;
  color: var(--cyan-dark);
  background: none;
  cursor: pointer;
  font-size: 9px;
  text-transform: uppercase;
}

.filter-panel fieldset {
  margin: 0;
  padding: 20px 17px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
}

.filter-panel legend {
  margin-bottom: 14px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.filter-option {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 11px 0;
  color: var(--steel-600);
  cursor: pointer;
  font-size: 12px;
}

.filter-option input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--cyan-dark);
}

.filter-option b {
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 9px;
}

.filter-option:has(input:checked) {
  color: var(--ink-900);
  font-weight: 700;
}

.filter-help {
  padding: 20px 17px;
  color: var(--white);
  background: var(--ink-900);
}

.filter-help > .svg-icon {
  margin-bottom: 18px;
  color: var(--cyan);
}

.filter-help h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.filter-help p {
  color: var(--steel-300);
  font-size: 11px;
}

.filter-help a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line-dark);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 10px;
}

.catalog-results .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-results .product-card-media {
  height: 250px;
}

.catalog-results .product-card-body {
  min-height: 250px;
}

.active-filters {
  display: flex;
  min-height: 30px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--steel-500);
  font-size: 10px;
}

.active-filters b {
  padding: 4px 8px;
  color: var(--ink-800);
  border: 1px solid var(--line-light);
  background: var(--white);
  font-weight: 600;
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 38px;
}

.pagination button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 11px;
}

.pagination button.is-active,
.pagination button:hover {
  color: var(--ink-950);
  border-color: var(--cyan);
  background: var(--cyan);
}

.catalog-empty {
  padding: 90px 30px;
  border: 1px solid var(--line-light);
  text-align: center;
  background: var(--white);
}

.catalog-empty > .svg-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 24px;
  color: var(--steel-300);
}

.catalog-empty h2 {
  font-size: 32px;
}

.catalog-empty p {
  color: var(--steel-600);
}

/* Product detail */
.product-detail-hero {
  padding: 48px 0 80px;
  background: var(--mist);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.product-gallery {
  min-width: 0;
}

.product-gallery-main {
  position: relative;
  display: grid;
  height: 590px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background:
    linear-gradient(rgba(25, 109, 143, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 109, 143, 0.045) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
  box-shadow: var(--shadow-soft);
}

.product-gallery-main img {
  width: 84%;
  height: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.gallery-code {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.gallery-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery-scan::before,
.gallery-scan::after {
  position: absolute;
  border-color: var(--cyan-dark);
  border-style: solid;
  content: "";
}

.gallery-scan::before {
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-width: 1px 1px 0 0;
}

.gallery-scan::after {
  bottom: 32px;
  left: 32px;
  width: 40px;
  height: 40px;
  border-width: 0 0 1px 1px;
}

.gallery-zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 9px;
}

.gallery-zoom .svg-icon {
  width: 16px;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.product-thumbnails button {
  display: grid;
  height: 82px;
  place-items: center;
  padding: 5px;
  border: 1px solid var(--line-light);
  background: var(--white);
  cursor: pointer;
}

.product-thumbnails button.is-active {
  border-color: var(--cyan-dark);
  box-shadow: inset 0 -2px var(--cyan-dark);
}

.product-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.source-badge {
  padding: 5px 8px;
  color: var(--steel-500);
  border: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.product-detail-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(40px, 4.8vw, 70px);
}

.official-name {
  margin-bottom: 24px;
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-summary {
  margin-bottom: 28px;
  color: var(--steel-600);
  font-size: 17px;
}

.product-quick-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 28px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.product-quick-specs div {
  min-height: 90px;
  padding: 15px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.product-quick-specs small,
.product-quick-specs b {
  display: block;
}

.product-quick-specs small {
  margin-bottom: 8px;
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-quick-specs b {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.4;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--steel-500);
  font-size: 10px;
}

.product-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.product-trust .svg-icon {
  width: 14px;
  height: 14px;
  color: var(--cyan-dark);
}

.detail-nav {
  position: sticky;
  z-index: 35;
  top: var(--header-height);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.detail-nav .container {
  display: flex;
  align-items: center;
  gap: 34px;
}

.detail-nav a {
  position: relative;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.detail-nav a:hover {
  color: var(--cyan-dark);
}

.product-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 90px;
}

.content-main > h2 {
  max-width: 840px;
}

.content-main > .lead {
  max-width: 840px;
  color: var(--steel-600);
  font-size: 19px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.feature-grid > div {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.feature-grid .svg-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 42px;
  color: var(--cyan-dark);
}

.feature-grid h3 {
  font-size: 19px;
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--steel-600);
  font-size: 12px;
}

.source-feature-box {
  margin-top: 32px;
  border: 1px solid var(--line-light);
}

.source-feature-head {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  color: var(--steel-500);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.source-feature-head b {
  color: var(--cyan-dark);
}

.source-feature-box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-feature-box li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 14px 16px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: var(--steel-600);
  font-size: 11px;
}

.source-feature-box li .svg-icon {
  width: 14px;
  height: 14px;
  color: var(--cyan-dark);
}

.content-aside > div {
  padding: 22px;
  border: 1px solid var(--line-light);
}

.engineering-note {
  color: var(--white);
  background: var(--ink-900);
}

.engineering-note > span,
.source-card small {
  display: block;
  margin-bottom: 32px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.engineering-note h3 {
  font-size: 24px;
}

.engineering-note p {
  color: var(--steel-300);
  font-size: 12px;
}

.engineering-note .text-link {
  color: var(--cyan);
}

.source-card {
  margin-top: 14px;
  background: var(--mist);
}

.source-card small {
  margin-bottom: 20px;
  color: var(--steel-500);
}

.source-card b,
.source-card span,
.source-card a {
  display: block;
}

.source-card b {
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.source-card span {
  margin-bottom: 22px;
  color: var(--steel-500);
  font-size: 10px;
}

.source-card a {
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
  color: var(--cyan-dark);
  font-family: var(--font-display);
  font-size: 10px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.spec-row {
  display: grid;
  min-height: 78px;
  grid-template-columns: 34px minmax(120px, 0.7fr) minmax(120px, 1fr);
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--white);
}

.spec-row > span {
  color: var(--steel-300);
  font-family: var(--font-display);
  font-size: 9px;
}

.spec-row b,
.spec-row dt {
  margin: 0;
  font-family: var(--font-display);
  font-size: 12px;
}

.spec-row em,
.spec-row dd {
  margin: 0;
  color: var(--steel-600);
  font-size: 12px;
  font-style: normal;
}

.data-notice {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.data-notice > .svg-icon {
  width: 42px;
  height: 42px;
  color: var(--cyan-dark);
}

.data-notice h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.data-notice p {
  margin: 0;
  color: var(--steel-600);
}

.raw-table-disclosure {
  margin-top: 20px;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.raw-table-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
}

.table-scroll {
  overflow-x: auto;
  border-top: 1px solid var(--line-light);
}

.table-scroll table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

.table-scroll td {
  padding: 10px 12px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: 11px;
}

.product-images-section {
  overflow: hidden;
}

.product-images-section::after {
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(34, 221, 235, 0.08);
  border-radius: 50%;
  content: "";
}

.source-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.source-gallery figure {
  margin: 0;
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.source-gallery img {
  width: 100%;
  height: 340px;
  object-fit: contain;
}

.source-gallery figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  color: var(--steel-500);
  border-top: 1px solid #e6edf0;
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.source-gallery figcaption b {
  color: var(--ink-900);
}

.application-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.application-mini-grid a {
  position: relative;
  min-height: 240px;
  padding: 22px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.application-mini-grid a > span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--cyan-dark);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.application-mini-grid h3 {
  font-size: 19px;
}

.application-mini-grid p {
  color: var(--steel-600);
  font-size: 11px;
}

.application-mini-grid a > .svg-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.application-mini-grid a:hover {
  color: var(--white);
  background: var(--ink-900);
}

.application-mini-grid a:hover p {
  color: var(--steel-300);
}

/* Solutions */
.solutions-intro,
.knowledge-intro,
.about-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.solutions-intro h2,
.knowledge-intro h2,
.about-lead-grid h2 {
  margin-bottom: 0;
}

.solutions-intro > p,
.knowledge-intro > p,
.about-lead-grid > div:last-child {
  color: var(--steel-600);
  font-size: 16px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.solution-card {
  position: relative;
  min-height: 390px;
  padding: 32px;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.solution-card:hover {
  color: var(--white);
  background: var(--ink-900);
}

.solution-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.solution-card-top b {
  color: var(--cyan-dark);
}

.solution-card h2 {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin-top: 96px;
  font-size: 36px;
}

.solution-card > p {
  position: relative;
  z-index: 2;
  max-width: 510px;
  color: var(--steel-600);
}

.solution-card:hover > p {
  color: var(--steel-300);
}

.solution-card > div:last-child {
  position: absolute;
  right: 30px;
  bottom: 25px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-size: 10px;
}

.solution-card:hover > div:last-child {
  border-color: var(--line-dark);
}

.solution-orbit {
  position: absolute;
  z-index: 1;
  top: 45px;
  right: -45px;
  width: 230px;
  height: 230px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.solution-card:hover .solution-orbit {
  border-color: var(--line-dark);
}

.solution-orbit i {
  position: absolute;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--cyan-dark);
  border-radius: 50%;
  color: var(--cyan-dark);
  background: var(--white);
  font-style: normal;
  font-family: var(--font-display);
}

.solution-card:hover .solution-orbit i {
  background: var(--ink-900);
}

.solution-orbit i:first-child {
  top: 12%;
  left: 5%;
}

.solution-orbit i:last-child {
  right: 3%;
  bottom: 22%;
  color: #7c92ed;
  border-color: #7c92ed;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.method-grid > div {
  min-height: 290px;
  padding: 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.method-grid span {
  display: block;
  margin-bottom: 84px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 11px;
}

.method-grid h3 {
  font-size: 21px;
}

.method-grid p {
  color: var(--steel-300);
  font-size: 12px;
}

.application-detail {
  padding-top: 54px;
}

.application-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 90px;
}

.application-detail-grid h2 {
  max-width: 800px;
}

.application-detail-grid .lead {
  max-width: 760px;
  color: var(--steel-600);
  font-size: 18px;
}

.risk-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.risk-list > div {
  min-height: 210px;
  padding: 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.risk-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--cyan-dark);
  font-family: var(--font-display);
  font-size: 10px;
}

.risk-list b {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.risk-list p {
  margin-bottom: 0;
  color: var(--steel-600);
  font-size: 11px;
}

.application-recommendation {
  padding: 22px;
  color: var(--white);
  background: var(--ink-900);
}

.application-recommendation > span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.application-recommendation > h3 {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.application-recommendation > a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
}

.application-recommendation > a > .category-svg {
  width: 30px;
  height: 30px;
  color: var(--cyan);
}

.application-recommendation > a span {
  display: flex;
  flex-direction: column;
}

.application-recommendation small {
  color: var(--steel-500);
  font-size: 9px;
}

/* Finder */
.finder-section {
  padding-top: 54px;
  background: var(--mist);
}

.finder-shell {
  border: 1px solid var(--line-light);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.finder-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  color: var(--steel-500);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-size: 10px;
}

.finder-progress span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.finder-progress b {
  color: var(--cyan-dark);
}

.finder-progress i {
  height: 1px;
  background: var(--line-light);
}

.finder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
}

.finder-form {
  padding: 34px;
}

.finder-form fieldset {
  margin: 0 0 40px;
  padding: 0 0 40px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
}

.finder-form fieldset:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.finder-form legend {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.finder-form legend span {
  margin-right: 8px;
  color: var(--cyan-dark);
  font-size: 10px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.choice-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.choice-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.choice-grid label {
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid label > span {
  display: flex;
  min-height: 90px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--line-light);
  background: var(--white);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.choice-grid label > span > .svg-icon {
  margin-bottom: 12px;
  color: var(--cyan-dark);
}

.choice-grid label > span b {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.choice-grid label > span small {
  color: var(--steel-500);
  font-size: 9px;
}

.choice-grid input:checked + span {
  color: var(--white);
  border-color: var(--ink-900);
  background: var(--ink-900);
  box-shadow: inset 0 -3px var(--cyan);
}

.choice-grid input:checked + span small {
  color: var(--steel-300);
}

.finder-results {
  padding: 28px;
  color: var(--white);
  background: var(--ink-900);
}

.finder-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.finder-result-head b {
  color: var(--lime);
}

.finder-results h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.finder-results > p {
  color: var(--steel-300);
  font-size: 11px;
}

.finder-category-list {
  margin-top: 25px;
}

.finder-category-list > a {
  display: grid;
  grid-template-columns: 24px 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid var(--line-dark);
}

.finder-category-list > a > span {
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 8px;
}

.finder-category-list .category-svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
}

.finder-category-list b {
  font-size: 12px;
}

.finder-models {
  margin: 28px 0 24px;
}

.finder-models > span {
  display: block;
  margin-bottom: 10px;
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.finder-models > a {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-top: 1px solid var(--line-dark);
}

.finder-models img {
  width: 46px;
  height: 42px;
  object-fit: contain;
  background: var(--white);
}

.finder-models a > span {
  display: flex;
  flex-direction: column;
}

.finder-models small {
  color: var(--steel-500);
  font-size: 8px;
}

.finder-results .button {
  width: 100%;
}

.finder-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.7);
}

.finder-disclaimer .svg-icon {
  color: var(--cyan-dark);
}

.finder-disclaimer p {
  margin: 0;
  color: var(--steel-600);
  font-size: 11px;
}

/* Knowledge */
.knowledge-section {
  padding-top: 54px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.guide-card {
  min-height: 390px;
  padding: 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.guide-card > span {
  display: block;
  margin-bottom: 70px;
  color: var(--cyan-dark);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.guide-card h2 {
  font-size: 28px;
}

.guide-card > p {
  color: var(--steel-600);
  font-size: 13px;
}

.guide-card ul {
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.guide-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  color: var(--steel-600);
  font-size: 11px;
}

.guide-card li .svg-icon {
  width: 13px;
  height: 13px;
  color: var(--cyan-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
  gap: 90px;
}

.faq-grid > div:first-child h2 {
  font-size: 42px;
}

.faq-grid > div:first-child p {
  color: var(--steel-600);
}

.faq-grid details {
  border-top: 1px solid var(--line-light);
}

.faq-grid details:last-child {
  border-bottom: 1px solid var(--line-light);
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary .svg-icon {
  color: var(--cyan-dark);
  transition: transform 0.2s ease;
}

.faq-grid details[open] summary .svg-icon {
  transform: rotate(45deg);
}

.faq-grid details p {
  max-width: 800px;
  padding-bottom: 22px;
  color: var(--steel-600);
}

/* About */
.about-section {
  padding-top: 54px;
}

.about-lead-grid > div:last-child p {
  margin-bottom: 16px;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.about-metrics > div {
  min-height: 270px;
  padding: 24px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.about-metrics span {
  display: block;
  margin-bottom: 64px;
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.about-metrics b {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan-dark);
  font-family: var(--font-display);
  font-size: 46px;
  letter-spacing: -0.06em;
}

.about-metrics p {
  color: var(--steel-600);
  font-size: 11px;
}

.partnership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 90px;
}

.partnership-grid > div:first-child p {
  max-width: 620px;
  color: var(--steel-300);
  font-size: 16px;
}

.partnership-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.partnership-steps > div,
.partnership-steps > li {
  display: grid;
  grid-template-columns: 40px 180px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.partnership-steps span {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 10px;
}

.partnership-steps h3 {
  margin: 0;
  font-size: 18px;
}

.partnership-steps p {
  margin: 0;
  color: var(--steel-300);
  font-size: 11px;
}

/* Contact */
.contact-page {
  padding-top: 54px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 90px;
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-copy > p {
  max-width: 560px;
  color: var(--steel-600);
}

.contact-channels {
  margin: 32px 0;
  border-top: 1px solid var(--line-light);
}

.contact-channels a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-channels a > .svg-icon:first-child {
  color: var(--cyan-dark);
}

.contact-channels a > span {
  display: flex;
  flex-direction: column;
}

.contact-channels small {
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.contact-channels b {
  font-family: var(--font-display);
  font-size: 16px;
}

.office-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-top: 14px;
}

address.office-list {
  font-style: normal;
}

.office-list > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cyan-dark);
  border: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
}

.office-list p {
  color: var(--steel-600);
  font-size: 11px;
}

.contact-form {
  padding: 28px;
  color: var(--white);
  background: var(--ink-900);
  box-shadow: var(--shadow-dark);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  color: var(--steel-300);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.form-head b {
  color: var(--cyan);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--steel-300);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(177, 211, 224, 0.22);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: rgba(3, 14, 24, 0.56);
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: none;
}

.form-grid select option {
  color: var(--ink-900);
  background: var(--white);
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--cyan);
}

.form-wide {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: 100%;
  margin-top: 20px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--steel-500);
  font-size: 9px;
  text-align: center;
}

/* Policy + 404 */
.policy-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: 80px;
}

.policy-grid aside {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 9px;
}

.policy-grid aside b {
  margin-top: 8px;
  color: var(--ink-900);
  font-size: 16px;
}

.policy-grid article h2 {
  margin: 42px 0 14px;
  font-size: 28px;
}

.policy-grid article h2:first-child {
  margin-top: 0;
}

.policy-grid article p {
  color: var(--steel-600);
}

.policy-grid article a {
  color: var(--cyan-dark);
}

.not-found {
  position: relative;
  display: grid;
  min-height: 72svh;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-950);
}

.not-found .container {
  position: relative;
  z-index: 2;
  padding-block: 80px;
}

.error-code {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(34, 221, 235, 0.65);
  font-family: var(--font-display);
  font-size: clamp(110px, 20vw, 260px);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.not-found h1 {
  max-width: 850px;
  margin: 38px 0 18px;
  font-size: clamp(38px, 5vw, 66px);
}

.not-found p {
  color: var(--steel-300);
}

.not-found-field {
  position: absolute;
  right: 10%;
  width: 500px;
  height: 500px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.not-found-field span {
  position: absolute;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
}

.not-found-field span:nth-child(1) {
  top: 10%;
  left: 12%;
}

.not-found-field span:nth-child(2) {
  right: 8%;
  bottom: 26%;
  color: #7d96ff;
  border-color: #7d96ff;
}

.not-found-field span:nth-child(3) {
  bottom: 6%;
  left: 30%;
}

/* Contact CTA */
.contact-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #06283a;
}

.contact-cta::before {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(65, 174, 211, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 174, 211, 0.15) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.contact-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 80px;
  padding-block: 70px;
}

.contact-cta h2 {
  margin-bottom: 18px;
}

.contact-cta p {
  max-width: 680px;
  color: #b9dae4;
  font-size: 16px;
}

.contact-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.contact-cta-actions > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--steel-300);
  font-size: 10px;
}

.contact-cta-actions > a b {
  color: var(--white);
  font-size: 14px;
}

.contact-cta-radar {
  position: absolute;
  top: 50%;
  right: -70px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(34, 221, 235, 0.1);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-cta-radar i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(34, 221, 235, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact-cta-radar i:nth-child(1) {
  width: 72%;
  height: 72%;
}

.contact-cta-radar i:nth-child(2) {
  width: 46%;
  height: 46%;
}

.contact-cta-radar i:nth-child(3) {
  width: 20%;
  height: 20%;
}

.contact-cta-radar span {
  position: absolute;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
}

.contact-cta-radar span:nth-last-child(2) {
  top: 12%;
  left: 14%;
}

.contact-cta-radar span:last-child {
  right: 7%;
  bottom: 24%;
  color: #8ca1ff;
  border-color: #8ca1ff;
}

/* Loading */
.page-loading {
  display: grid;
  min-height: 62svh;
  place-items: center;
  align-content: center;
  gap: 24px;
  color: var(--steel-500);
  background: var(--mist);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.loading-field {
  position: relative;
  width: 140px;
  height: 80px;
}

.loading-field::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--steel-200);
  content: "";
}

.charge {
  position: absolute;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  animation: loadingCharge 1.7s ease-in-out infinite;
}

.charge-positive {
  color: var(--cyan-dark);
}

.charge-negative {
  color: #6984e4;
}

.charge:nth-child(1) {
  top: 0;
  left: 0;
}

.charge:nth-child(2) {
  top: 44px;
  left: 34px;
  animation-delay: -0.3s;
}

.charge:nth-child(3) {
  top: 6px;
  left: 76px;
  animation-delay: -0.6s;
}

.charge:nth-child(4) {
  top: 43px;
  right: 0;
  animation-delay: -0.9s;
}

@keyframes loadingCharge {
  50% {
    opacity: 0.25;
    transform: translateY(8px);
  }
}

/* Search, modal, floating */
[hidden] {
  display: none !important;
}

.search-overlay,
.modal {
  position: fixed;
  z-index: 300;
  inset: 0;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 9, 16, 0.82);
  backdrop-filter: blur(9px);
}

.search-panel {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100vw - 40px));
  max-height: calc(100svh - 80px);
  margin: 40px auto;
  overflow-y: auto;
  border: 1px solid rgba(150, 207, 227, 0.28);
  color: var(--white);
  background: var(--ink-900);
  box-shadow: var(--shadow-dark);
}

.search-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.search-panel-head h2 {
  margin-bottom: 0;
  font-size: 32px;
}

.search-input {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 24px 28px;
  padding: 0 16px;
  border: 1px solid rgba(150, 207, 227, 0.24);
}

.search-input > .svg-icon {
  color: var(--cyan);
}

.search-input input {
  min-height: 62px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 16px;
}

.search-input kbd {
  padding: 4px 6px;
  color: var(--steel-500);
  border: 1px solid var(--line-dark);
  font-size: 8px;
}

.search-results {
  padding: 0 28px 28px;
}

.search-result-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.search-results > a {
  display: grid;
  grid-template-columns: 70px 120px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-top: 1px solid var(--line-dark);
  transition: background 0.2s ease;
}

.search-results > a:hover {
  background: rgba(34, 221, 235, 0.06);
}

.search-results img {
  width: 70px;
  height: 56px;
  object-fit: contain;
  background: var(--white);
}

.search-results a > span {
  display: flex;
  flex-direction: column;
}

.search-results small,
.search-results em {
  color: var(--steel-500);
  font-size: 9px;
  font-style: normal;
}

.search-results em {
  color: var(--steel-300);
}

.no-search-result {
  padding: 40px 0;
  text-align: center;
}

.no-search-result b,
.no-search-result span {
  display: block;
}

.no-search-result span {
  color: var(--steel-500);
  font-size: 11px;
}

.inquiry-panel {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 40px));
  max-height: calc(100svh - 50px);
  margin: 25px auto;
  padding: 34px;
  overflow-y: auto;
  color: var(--white);
  background: var(--ink-900);
  box-shadow: var(--shadow-dark);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.inquiry-panel h2 {
  max-width: 600px;
  margin-bottom: 18px;
  font-size: 38px;
}

.inquiry-panel > p {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--steel-300);
}

.inquiry-panel .button {
  width: 100%;
  margin-top: 18px;
}

.floating-contact {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-width: 120px;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(34, 221, 235, 0.45);
  border-radius: 5px;
  color: var(--white);
  background: var(--ink-900);
  box-shadow: 0 14px 36px rgba(1, 11, 18, 0.35);
  cursor: pointer;
}

.floating-contact .svg-icon {
  width: 18px;
  color: var(--cyan);
}

.floating-contact b {
  font-family: var(--font-display);
  font-size: 11px;
}

.floating-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(183, 243, 90, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(183, 243, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(183, 243, 90, 0);
  }
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-feedback {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--steel-300);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.form-feedback:empty {
  display: none;
}

.form-feedback.is-pending {
  color: var(--cyan);
}

.form-feedback.is-success {
  color: var(--lime);
}

.form-feedback.is-error {
  color: var(--danger);
}

.form-delivery-note {
  display: block;
  margin-top: 12px;
  color: var(--steel-500);
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
}

.inquiry-panel button.is-loading {
  opacity: 0.68;
  cursor: progress;
}

.chat-assistant {
  position: fixed;
  z-index: 190;
  right: 24px;
  bottom: 24px;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

.chat-assistant button,
.chat-assistant input,
.chat-panel {
  pointer-events: auto;
}

.chat-launcher {
  display: grid;
  min-width: 300px;
  min-height: 64px;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 13px 8px 9px;
  border: 1px solid rgba(34, 221, 235, 0.36);
  border-radius: 7px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 221, 235, 0.16), transparent 46%),
    linear-gradient(135deg, rgba(4, 16, 28, 0.99), rgba(14, 34, 51, 0.98));
  box-shadow: 0 16px 45px rgba(0, 7, 13, 0.36);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.chat-launcher:hover {
  box-shadow: 0 24px 65px rgba(0, 7, 13, 0.46);
  transform: translateY(-3px);
}

.chat-launcher:focus-visible,
.chat-close:focus-visible,
.chat-quick-actions button:focus-visible,
.chat-compose input:focus-visible,
.chat-compose button:focus-visible,
.chat-action:focus-visible {
  outline: 3px solid rgba(34, 221, 235, 0.3);
  outline-offset: 2px;
}

.chat-launcher-icon,
.chat-agent-avatar {
  position: relative;
  flex: 0 0 auto;
}

.chat-launcher-icon {
  width: 46px;
  height: 46px;
}

.chat-launcher-icon img,
.chat-agent-avatar img,
.chat-launcher-icon .cft-avatar-icon,
.chat-agent-avatar .cft-avatar-icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background: var(--mist);
  object-fit: cover;
}

.chat-launcher-icon i,
.chat-agent-avatar i {
  position: absolute;
  right: -1px;
  bottom: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink-950);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(183, 243, 90, 0.1);
}

.chat-launcher-copy {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.chat-launcher-copy strong {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-launcher-copy small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--steel-300);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-launcher-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-950);
  background: var(--cyan);
}

.chat-launcher-arrow .svg-icon {
  width: 16px;
}

.chat-assistant.is-open .chat-launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: grid;
  overflow: hidden;
  width: min(420px, calc(100vw - 32px));
  height: min(650px, calc(100vh - 120px));
  grid-template-rows: auto 1fr auto auto auto;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  color: var(--ink-900);
  background: var(--mist);
  box-shadow: 0 30px 90px rgba(0, 7, 13, 0.34);
  animation: chat-panel-in 0.26s ease both;
}

.chat-panel[hidden] {
  display: none;
}

@keyframes chat-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
}

.chat-header {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% -42%, rgba(34, 221, 235, 0.23), transparent 55%),
    linear-gradient(135deg, var(--ink-950), var(--ink-800));
}

.chat-agent {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.chat-agent-avatar {
  width: 44px;
  height: 44px;
}

.chat-agent > span:last-child {
  display: grid;
  min-width: 0;
}

.chat-agent strong {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-agent small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--steel-300);
  font-size: 9px;
}

.chat-agent small i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(183, 243, 90, 0.12);
}

.chat-close {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.chat-close .svg-icon,
.chat-compose button .svg-icon {
  width: 18px;
  height: 18px;
}

.chat-close:hover {
  border-color: rgba(34, 221, 235, 0.48);
  color: var(--cyan);
  background: rgba(34, 221, 235, 0.12);
}

.chat-messages {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 18px 16px 10px;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

.chat-message {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}

.chat-message.is-user {
  justify-content: flex-end;
}

.chat-message-avatar {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
}

.chat-message-avatar img,
.chat-message-avatar .cft-avatar-icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: var(--white);
  object-fit: cover;
}

.chat-launcher-icon .cft-avatar-icon,
.chat-agent-avatar .cft-avatar-icon,
.chat-message-avatar .cft-avatar-icon {
  border-radius: 28%;
  background: #000;
}

.chat-bubble {
  max-width: 84%;
  padding: 11px 13px;
  border: 1px solid var(--line-light);
  border-radius: 5px 15px 15px 15px;
  color: var(--ink-800);
  background: var(--white);
  box-shadow: 0 7px 22px rgba(5, 24, 38, 0.05);
  font-size: 10px;
  line-height: 1.6;
}

.chat-message.is-user .chat-bubble {
  border-color: var(--ink-900);
  border-radius: 15px 5px 15px 15px;
  color: var(--white);
  background: var(--ink-900);
}

.chat-bubble p {
  margin: 0;
}

.chat-bubble p + p,
.chat-bubble .chat-result-list,
.chat-bubble .chat-actions,
.chat-bubble .chat-spec-list {
  margin-top: 10px;
}

.chat-bubble strong {
  color: var(--ink-900);
}

.chat-message.is-user .chat-bubble strong {
  color: var(--white);
}

.chat-result-list {
  display: grid;
  gap: 7px;
}

.chat-product-result {
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 7px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: #f8fbfc;
}

.chat-product-result:hover {
  border-color: rgba(3, 175, 196, 0.55);
  background: var(--white);
}

.chat-product-result img {
  width: 43px;
  height: 39px;
  background: var(--white);
  object-fit: contain;
}

.chat-product-result span {
  display: grid;
  min-width: 0;
}

.chat-product-result strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-product-result small {
  overflow: hidden;
  color: var(--steel-600);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-product-result > .svg-icon {
  width: 14px;
  color: var(--cyan-dark);
}

.chat-spec-list {
  display: grid;
  gap: 6px;
}

.chat-spec-list div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid var(--line-light);
}

.chat-spec-list span {
  color: var(--steel-600);
  font-size: 8px;
}

.chat-spec-list strong {
  font-size: 8.5px;
  text-align: right;
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chat-action {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 11px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--ink-900);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 700;
}

.chat-action.is-primary {
  border-color: var(--cyan);
  color: var(--ink-950);
  background: var(--cyan);
}

.chat-action .svg-icon {
  width: 12px;
  height: 12px;
}

.chat-typing .chat-bubble {
  display: flex;
  min-width: 54px;
  align-items: center;
  gap: 4px;
}

.chat-typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--steel-500);
  animation: chat-dot 0.9s ease-in-out infinite;
}

.chat-typing i:nth-child(2) {
  animation-delay: 0.12s;
}

.chat-typing i:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes chat-dot {
  50% {
    opacity: 0.35;
    transform: translateY(-3px);
  }
}

.chat-quick-actions {
  display: flex;
  gap: 7px;
  padding: 8px 14px 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.chat-quick-actions::-webkit-scrollbar {
  display: none;
}

.chat-quick-actions button {
  min-height: 32px;
  flex: 0 0 auto;
  padding: 0 11px;
  border: 1px solid var(--steel-200);
  border-radius: 999px;
  color: var(--steel-600);
  background: transparent;
  cursor: pointer;
  font-size: 8.5px;
  font-weight: 700;
}

.chat-quick-actions button:hover {
  border-color: rgba(3, 175, 196, 0.58);
  background: var(--white);
}

.chat-compose {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--line-light);
  background: var(--white);
}

.chat-compose input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  outline: 0;
  color: var(--ink-900);
  background: var(--mist);
  font-size: 10px;
}

.chat-compose input:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 4px rgba(34, 221, 235, 0.12);
}

.chat-compose button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--cyan);
  background: var(--ink-900);
  cursor: pointer;
}

.chat-disclaimer {
  margin: 0;
  padding: 0 14px 10px;
  color: var(--steel-600);
  background: var(--white);
  font-size: 7.5px;
  line-height: 1.45;
  text-align: center;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .chat-assistant {
    right: 8px;
    bottom: 8px;
  }

  .chat-launcher {
    min-width: 0;
    min-height: 56px;
    grid-template-columns: 40px 1fr;
    padding: 7px 15px 7px 8px;
  }

  .chat-launcher-icon {
    width: 40px;
    height: 40px;
  }

  .chat-launcher-arrow {
    display: none;
  }

  .chat-panel {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: min(78vh, 650px);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 12px 12px 0 0;
  }
}

/* Footer */
.site-footer {
  color: var(--white);
  background: #020b13;
}

.footer-signal {
  border-bottom: 1px solid var(--line-dark);
}

.footer-signal .container {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.7fr 1.1fr;
  gap: 60px;
  padding-block: 75px;
}

.brand-footer {
  margin-bottom: 22px;
}

.footer-intro > p {
  max-width: 380px;
  color: var(--steel-300);
  font-size: 12px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.footer-badges span {
  padding: 5px 8px;
  color: var(--cyan);
  border: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.footer-grid h3 {
  margin-bottom: 22px;
  color: var(--steel-500);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-intro) > a {
  display: block;
  margin: 10px 0;
  color: var(--steel-300);
  font-size: 11px;
}

.footer-grid > div:not(.footer-intro) > a:hover {
  color: var(--cyan);
}

.footer-contact p {
  color: var(--steel-500);
  font-size: 10px;
}

.footer-contact p b {
  color: var(--steel-300);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-dark);
  color: var(--steel-500);
  font-size: 8px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--steel-300);
}

/* Responsive */
@media (max-width: 1240px) {
  :root {
    --container: min(1180px, calc(100vw - 48px));
  }

  .main-nav {
    gap: 16px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 38px;
  }

  .category-grid,
  .application-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-grid {
    gap: 44px;
  }

  .product-gallery-main {
    height: 520px;
  }

  .choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 78px;
    --container: min(960px, calc(100vw - 36px));
  }

  .signal-bar {
    display: none;
  }

  .nav-shell {
    height: 78px;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .main-nav {
    position: fixed;
    z-index: 160;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 22px;
    border-bottom: 1px solid var(--line-dark);
    background: var(--ink-950);
    box-shadow: var(--shadow-dark);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 50px;
    border-bottom: 1px solid var(--line-dark);
  }

  .main-nav a::after {
    display: none;
  }

  .menu-trigger {
    display: inline-grid;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 80px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-telemetry {
    display: none;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 13, 23, 0.98), rgba(3, 13, 23, 0.7)),
      linear-gradient(0deg, rgba(3, 13, 23, 0.65), transparent);
  }

  .explainer-grid,
  .company-grid,
  .contact-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) 180px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filter-mobile-trigger {
    display: inline-flex;
  }

  .catalog-toolbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .filter-panel {
    display: none;
  }

  .filter-panel.is-open {
    display: block;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-main {
    height: min(650px, 70vw);
  }

  .product-content-grid,
  .application-detail-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .content-aside {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .source-card {
    margin-top: 0;
  }

  .source-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .finder-grid {
    grid-template-columns: 1fr;
  }

  .finder-results {
    min-height: auto;
  }

  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 28px);
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .section {
    padding: 80px 0;
  }

  .section-head,
  .solutions-intro,
  .knowledge-intro,
  .about-lead-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }

  .section-head p {
    margin-bottom: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    width: 90px;
  }

  .nav-inner {
    gap: 12px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .home-hero {
    min-height: 760px;
    background-position: 64% center;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 13, 23, 0.98), rgba(3, 13, 23, 0.58)),
      linear-gradient(0deg, rgba(3, 13, 23, 0.8), transparent 70%);
  }

  .hero-content {
    align-content: start;
    padding-block: 70px 105px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 13vw, 65px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof {
    display: none;
  }

  .hero-bottom .container {
    overflow: hidden;
    justify-content: flex-start;
    white-space: nowrap;
  }

  .hero-bottom .container span:nth-of-type(n + 3),
  .hero-bottom .container i:nth-of-type(n + 2) {
    display: none;
  }

  .field-stage {
    height: 360px;
  }

  .explainer-grid,
  .company-grid {
    gap: 40px;
  }

  .explainer-grid {
    grid-template-columns: 1fr;
  }

  .target-surface {
    grid-template-columns: 1fr auto;
  }

  .target-surface i {
    display: none;
  }

  .category-grid,
  .application-matrix,
  .product-grid,
  .catalog-results .product-grid,
  .solution-grid,
  .method-grid,
  .company-metrics,
  .spec-grid,
  .feature-grid,
  .source-feature-box ul,
  .source-gallery,
  .application-mini-grid,
  .risk-list,
  .guide-grid,
  .about-metrics {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 360px;
  }

  .product-card-media,
  .catalog-results .product-card-media {
    height: 300px;
  }

  .product-card-body,
  .catalog-results .product-card-body {
    min-height: 245px;
  }

  .selector-banner-grid,
  .contact-cta-grid {
    min-height: 440px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .selector-banner-field {
    width: 80%;
  }

  .page-hero-grid {
    min-height: 420px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .page-code {
    min-height: 100px;
  }

  .page-hero-orbit {
    right: -180px;
  }

  .catalog-toolbar {
    position: relative;
    top: 0;
    grid-template-columns: 1fr auto;
  }

  .catalog-search {
    grid-column: 1 / -1;
  }

  .catalog-search span {
    display: none;
  }

  .sort-control {
    min-width: 0;
  }

  .product-gallery-main {
    height: 410px;
  }

  .product-thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-detail-copy h1 {
    font-size: 44px;
  }

  .product-quick-specs {
    grid-template-columns: 1fr;
  }

  .detail-nav {
    overflow-x: auto;
  }

  .detail-nav .container {
    width: max-content;
    min-width: 100%;
  }

  .product-content-grid {
    gap: 38px;
  }

  .content-aside {
    grid-template-columns: 1fr;
  }

  .spec-row {
    grid-template-columns: 26px 0.8fr 1fr;
  }

  .source-gallery img {
    height: 300px;
  }

  .choice-grid,
  .choice-grid-four,
  .choice-grid-two {
    grid-template-columns: 1fr;
  }

  .finder-progress {
    grid-template-columns: repeat(3, 1fr);
  }

  .finder-progress i {
    display: none;
  }

  .finder-form {
    padding: 22px 16px;
  }

  .finder-results {
    padding: 22px 16px;
  }

  .faq-grid,
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .partnership-steps > div,
  .partnership-steps > li {
    grid-template-columns: 32px 1fr;
  }

  .partnership-steps p {
    grid-column: 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .footer-signal .container {
    justify-content: flex-start;
    gap: 30px;
    overflow: hidden;
    white-space: nowrap;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    min-height: 110px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }

  .search-panel {
    width: calc(100vw - 20px);
    margin: 10px auto;
    max-height: calc(100svh - 20px);
  }

  .search-panel-head,
  .search-results {
    padding-right: 18px;
    padding-left: 18px;
  }

  .search-input {
    margin-right: 18px;
    margin-left: 18px;
  }

  .search-results > a {
    grid-template-columns: 58px 1fr auto;
  }

  .search-results img {
    width: 58px;
  }

  .search-results em {
    display: none;
  }

  .inquiry-panel {
    width: calc(100vw - 20px);
    margin: 10px auto;
    padding: 24px 18px;
    max-height: calc(100svh - 20px);
  }

  .inquiry-panel h2 {
    font-size: 31px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    min-width: 50px;
    width: 50px;
    padding: 0;
  }

  .floating-contact b,
  .floating-pulse {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
