﻿:root {
  color-scheme: dark;
  --ink: #eef7ff;
  --muted: #9aabbc;
  --soft: #08111c;
  --panel: rgba(8, 18, 30, 0.82);
  --panel-strong: #0c1724;
  --line: rgba(123, 190, 255, 0.2);
  --line-strong: rgba(118, 205, 255, 0.46);
  --accent: #39b8ff;
  --accent-2: #d8f2ff;
  --green: #48e0a4;
  --green-dark: #1a8a63;
  --blue: #39b8ff;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --font-display: "Bahnschrift", "DIN Alternate", "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", "Noto Sans", system-ui, sans-serif;
  --font-legal: "Aptos", "Segoe UI", "Noto Sans", system-ui, sans-serif;
  --content-wide: min(1180px, calc(100vw - clamp(44px, 10vw, 152px)));
  --content-readable: min(840px, calc(100vw - clamp(44px, 10vw, 152px)));
  --section-y: clamp(76px, 8vw, 118px);
  --section-x: clamp(22px, 5vw, 76px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(57, 184, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(72, 224, 164, 0.08), transparent 24%),
    linear-gradient(180deg, #07101a 0%, #0a111b 42%, #05080d 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(16px, 0.35vw + 15px, 18px);
  line-height: 1.65;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 2.5vw, 32px);
  align-items: center;
  min-height: 82px;
  padding: 16px var(--section-x);
  background: rgba(5, 10, 16, 0.78);
  border-bottom: 1px solid rgba(91, 164, 230, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  background: transparent;
  border: 0;
  overflow: visible;
  box-shadow: none;
}

.brand-mark img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(83, 196, 255, 0.34));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.brand small {
  max-width: 270px;
  color: #94aabe;
  font-size: 13.5px;
  line-height: 1.28;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 2.2vw, 30px);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.nav a,
.header-cta,
.footer a {
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--accent);
}

.header-cta {
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 800;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  filter: blur(7px);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.header-cta:hover {
  color: var(--accent);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.language-switch a,
.language-switch span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(123, 190, 255, 0.24);
  background: rgba(4, 14, 25, 0.34);
}

.language-switch span {
  color: #ffffff;
  border-color: rgba(72, 224, 164, 0.4);
}

.language-switch a:hover,
.nav a.active {
  color: var(--accent);
}

.section {
  padding: var(--section-y) var(--section-x);
}

.hero {
  position: relative;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  align-items: center;
  min-height: calc(100svh - 82px);
  padding: clamp(58px, 7vw, 96px) var(--section-x) clamp(64px, 7vw, 96px);
  background:
    radial-gradient(circle at 72% 44%, rgba(32, 168, 214, 0.18), transparent 34%),
    linear-gradient(135deg, #020710 0%, #05101c 50%, #08131f 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, rgba(7, 17, 13, 0), #07101a 92%);
  pointer-events: none;
  z-index: 2;
}

#particleCanvas,
.hero-lineart-bg {
  position: absolute;
  inset: 0;
}

.hero-lineart-bg {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(1, 5, 11, 0.98) 0%, rgba(1, 7, 14, 0.72) 33%, rgba(1, 7, 14, 0.18) 66%, rgba(1, 6, 12, 0.42) 100%),
    linear-gradient(180deg, rgba(2, 8, 15, 0.2), rgba(2, 8, 15, 0.42)),
    url("assets/hero-chip-particle-source.png") center / cover no-repeat;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.01);
}

#particleCanvas {
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  opacity: 0.68;
  mix-blend-mode: screen;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 76% 42%, rgba(61, 205, 255, 0.18), rgba(61, 205, 255, 0.04) 28%, rgba(61, 205, 255, 0) 48%),
    linear-gradient(90deg, rgba(1, 5, 10, 0.5), rgba(1, 5, 10, 0.05) 55%, rgba(1, 5, 10, 0.2)),
    linear-gradient(180deg, rgba(1, 5, 10, 0.08), rgba(1, 5, 10, 0.5));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: var(--content-wide);
  max-width: 980px;
  display: grid;
  justify-items: start;
  padding: clamp(20px, 3vw, 36px) 0;
  margin-left: clamp(0px, 2vw, 32px);
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.58);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1px solid rgba(119, 211, 255, 0.34);
  background: rgba(4, 14, 25, 0.42);
  color: #9bddff;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.tech-strip strong,
.product-card strong,
.button {
  font-family: var(--font-display);
}

h1 {
  width: 100%;
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(42px, 4.2vw, 70px);
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0;
  color: #f5fff9;
  text-wrap: balance;
}

h1 span {
  display: block;
}

h1 span:first-child {
  white-space: nowrap;
}

.hero-line {
  max-width: 700px;
  margin-bottom: 0;
  color: #e7f5ff;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.48;
  font-weight: 680;
  text-wrap: balance;
}

.hero-note {
  max-width: 660px;
  margin: 20px 0 0;
  color: #a7bfd2;
  font-size: clamp(15px, 0.65vw + 13px, 18px);
  line-height: 1.7;
  font-weight: 520;
}

.hero-tech-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  width: min(100%, 1040px);
  margin-top: 22px;
  overflow: visible;
  white-space: normal;
  scrollbar-width: none;
}

.hero-tech-highlights::-webkit-scrollbar {
  display: none;
}

.hero-tech-highlights a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-right: 12px;
  color: #bff7e5;
  font-family: var(--font-display);
  font-size: clamp(12.5px, 0.34vw + 11px, 14.5px);
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(72, 224, 164, 0.22);
  transition:
    color 160ms ease,
    text-shadow 160ms ease,
    transform 160ms ease;
}

.hero-tech-highlights a::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: rgba(72, 224, 164, 0.95);
  box-shadow: 0 0 12px rgba(72, 224, 164, 0.7);
}

.hero-tech-highlights a:not(:last-child)::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 12px;
  background: linear-gradient(90deg, rgba(72, 224, 164, 0.5), rgba(57, 184, 255, 0.08));
}

.hero-tech-highlights a:hover,
.hero-tech-highlights a:focus-visible {
  color: #ffffff;
  text-shadow:
    0 0 16px rgba(72, 224, 164, 0.64),
    0 0 30px rgba(57, 184, 255, 0.28);
  transform: translateY(-1px);
  outline: none;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 1.35vw, 26px);
  line-height: 1.22;
  font-weight: 780;
  text-wrap: balance;
}

p {
  max-width: 72ch;
}

.lead {
  max-width: 690px;
  color: #49535a;
  font-size: clamp(18px, 2vw, 23px);
}

.topic-links {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.topic-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(158, 203, 255, 0.36);
  background: rgba(8, 16, 29, 0.54);
  color: #eef6ff;
  font-family: var(--font-display);
  font-weight: 800;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 26px rgba(25, 36, 30, 0.05);
}

.topic-links a:hover {
  border-color: rgba(224, 241, 255, 0.72);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(57, 184, 255, 0.18);
}

.tech-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(57, 184, 255, 0.08), rgba(72, 224, 164, 0.04), rgba(57, 184, 255, 0.08)),
    #050b12;
}

.tech-strip article {
  min-height: 190px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.tech-strip article:last-child {
  border-right: 0;
}

.tech-strip span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tech-strip strong {
  display: block;
  margin-bottom: 10px;
  color: #f4faff;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.18;
}

.tech-strip p {
  margin: 0;
  color: var(--muted);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(57, 184, 255, 0.06), transparent 48%),
    var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-kicker {
  color: var(--accent-2);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 850;
  line-height: 1.05;
}

.intro p,
.product-card p,
.service-list p,
.application-grid p,
.why-grid p,
.contact p {
  color: var(--muted);
}

.intro p {
  max-width: 760px;
  font-size: clamp(17px, 1vw, 20px);
  line-height: 1.75;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(34px, 4vw, 52px);
}

.section-heading h2,
.intro h2,
.contact h2 {
  color: #f4faff;
}

.section-heading .eyebrow,
.contact .eyebrow {
  color: var(--accent);
}

.product-card h3,
.service-list h3,
.application-grid h3,
.why-grid h3 {
  color: #f3faff;
}

.product-tagline {
  color: #dcefff !important;
  font-weight: 850;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(26px, 3vw, 38px);
  background:
    linear-gradient(180deg, rgba(57, 184, 255, 0.08), rgba(57, 184, 255, 0.015)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42), 0 0 34px rgba(57, 184, 255, 0.12);
}

.product-card.featured {
  background:
    linear-gradient(140deg, rgba(57, 184, 255, 0.24), rgba(72, 224, 164, 0.06)),
    #071523;
  color: #ffffff;
  border-color: rgba(96, 190, 255, 0.5);
}

.product-card.featured p {
  color: #c9d9e7;
}

.product-card span,
.application-grid span {
  display: block;
  margin-bottom: clamp(42px, 6vw, 70px);
  color: var(--accent);
  font-weight: 900;
}

.product-card.featured span {
  color: #d9f4ff;
}

.product-card strong {
  margin-top: auto;
  color: var(--accent-2);
}

.product-card.featured strong {
  color: #ffffff;
}

.product-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(86svh - 82px);
  padding: clamp(72px, 8vw, 112px) var(--section-x);
  background:
    linear-gradient(90deg, rgba(1, 5, 11, 0.94) 0%, rgba(3, 12, 22, 0.76) 44%, rgba(3, 12, 22, 0.28) 100%),
    url("assets/bms-collection-3d-aligned-mosfets-spaced.png") 78% center / min(760px, 62vw) auto no-repeat,
    radial-gradient(circle at 72% 42%, rgba(57, 184, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #020710 0%, #061525 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.product-hero-customized-bms {
  background:
    linear-gradient(90deg, rgba(1, 5, 11, 0.96) 0%, rgba(3, 12, 22, 0.78) 42%, rgba(3, 12, 22, 0.38) 100%),
    radial-gradient(circle at 20% 48%, rgba(2, 8, 16, 0.44), transparent 35%),
    url("assets/bms-collection-customized-dark.png") center center / cover no-repeat,
    linear-gradient(135deg, #020710 0%, #061525 100%);
}

.product-hero-standard-bms {
  background:
    linear-gradient(90deg, rgba(1, 5, 11, 0.96) 0%, rgba(3, 12, 22, 0.8) 43%, rgba(3, 12, 22, 0.34) 100%),
    radial-gradient(circle at 16% 50%, rgba(2, 8, 16, 0.5), transparent 34%),
    url("assets/standard-bms-master-slave-hero.png") center center / cover no-repeat,
    linear-gradient(135deg, #020710 0%, #061525 100%);
}

.product-hero-iot-connect-of-things {
  background:
    linear-gradient(90deg, rgba(1, 5, 11, 0.84) 0%, rgba(3, 12, 22, 0.58) 43%, rgba(3, 12, 22, 0.18) 100%),
    radial-gradient(circle at 18% 50%, rgba(2, 8, 16, 0.24), transparent 34%),
    url("assets/iot-ems-dashboard-hero.png") center center / cover no-repeat,
    linear-gradient(135deg, #020710 0%, #061525 100%);
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, rgba(7, 16, 26, 0), #07101a 92%);
  pointer-events: none;
}

.product-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(57, 184, 255, 0.12), transparent 34%),
    repeating-linear-gradient(90deg, rgba(123, 190, 255, 0.08) 0 1px, transparent 1px 80px);
  mask-image: linear-gradient(90deg, transparent, #000 38%, #000 100%);
  opacity: 0.46;
}

.product-hero-copy {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.58);
}

.product-hero h1 {
  margin-bottom: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 22px;
  color: #cfeeff;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.back-link::before {
  content: "<";
  margin-right: 10px;
  color: var(--accent);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.detail-grid article {
  min-height: 280px;
  padding: clamp(26px, 3vw, 38px);
  background:
    linear-gradient(180deg, rgba(57, 184, 255, 0.07), transparent),
    var(--panel-strong);
}

.detail-grid span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-grid h3 {
  color: #f3faff;
}

.detail-grid p {
  color: var(--muted);
}

.product-source {
  max-width: var(--content-readable);
  padding-top: clamp(54px, 7vw, 90px);
  padding-bottom: clamp(62px, 8vw, 100px);
}

.product-source h2 {
  margin-top: clamp(42px, 6vw, 72px);
  margin-bottom: 14px;
  color: #f3faff;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.05;
  text-wrap: balance;
}

.product-source h2:first-child {
  margin-top: 0;
}

.product-source h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.product-source p {
  max-width: 82ch;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.75;
}

.custom-solutions-page {
  max-width: min(1120px, calc(100% - 2 * var(--section-x)));
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(70px, 8vw, 104px);
}

.custom-solutions-hero,
.custom-solutions-section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.custom-solutions-hero h2,
.custom-solutions-section-head h2,
.custom-solutions-end h2 {
  margin: 0 0 16px;
  color: #f3faff;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.custom-solutions-hero > p:not(.eyebrow),
.custom-solutions-section-head > p:not(.eyebrow),
.custom-solutions-end p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.68;
}

.custom-solutions-caps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(32px, 5vw, 52px);
}

.custom-solutions-cap {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px 14px;
  background: rgba(6, 18, 30, 0.82);
  border: 1px solid rgba(57, 184, 255, 0.2);
  text-align: center;
}

.custom-solutions-cap span,
.custom-solutions-level-head span,
.custom-solutions-meta span,
.custom-solutions-step span,
.custom-solutions-compliance,
.custom-solutions-level-note {
  color: var(--accent);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-solutions-cap strong {
  color: #f3faff;
  font-size: 14px;
  line-height: 1.32;
}

.custom-solutions-section-head {
  margin-top: clamp(70px, 8vw, 104px);
}

.custom-solutions-levels {
  display: grid;
  gap: 18px;
  margin-top: clamp(34px, 5vw, 48px);
}

.custom-solutions-level {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(6, 18, 30, 0.82);
  border: 1px solid rgba(57, 184, 255, 0.2);
}

.custom-solutions-level.is-featured {
  background: linear-gradient(180deg, rgba(10, 28, 42, 0.9), rgba(6, 18, 30, 0.9));
  border-color: rgba(56, 236, 164, 0.54);
}

.custom-solutions-level.is-featured::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(56, 236, 164, 0.22), transparent 70%);
  pointer-events: none;
}

.custom-solutions-level-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.custom-solutions-level-head > strong {
  min-width: 64px;
  color: rgba(192, 224, 255, 0.14);
  font-size: clamp(38px, 5vw, 54px);
  line-height: 0.9;
}

.custom-solutions-level.is-featured .custom-solutions-level-head > strong {
  color: rgba(56, 236, 164, 0.38);
}

.custom-solutions-level h3 {
  margin: 4px 0 0;
  color: #f3faff;
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.16;
}

.custom-solutions-tag {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #dcefff;
  font-size: 16px;
  font-weight: 800;
}

.custom-solutions-level > p:not(.custom-solutions-tag):not(.custom-solutions-level-note) {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.custom-solutions-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.custom-solutions-meta div {
  padding: 14px 16px;
  background: rgba(2, 8, 16, 0.7);
  border: 1px solid rgba(192, 224, 255, 0.12);
}

.custom-solutions-meta span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
}

.custom-solutions-meta strong {
  color: #f3faff;
  font-size: 14px;
  line-height: 1.45;
}

.custom-solutions-level-note {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
}

.custom-solutions-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(34px, 5vw, 48px);
}

.custom-solutions-step {
  padding: 22px 18px;
  background: rgba(6, 18, 30, 0.82);
  border: 1px solid rgba(57, 184, 255, 0.2);
}

.custom-solutions-step span {
  display: block;
  margin-bottom: 10px;
}

.custom-solutions-step h3 {
  margin: 0 0 8px;
  color: #f3faff;
  font-size: 16px;
}

.custom-solutions-step p,
.custom-solutions-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.custom-solutions-note {
  margin-top: clamp(36px, 5vw, 50px);
  padding: 24px;
  background: rgba(56, 236, 164, 0.06);
  border: 1px solid rgba(56, 236, 164, 0.36);
}

.custom-solutions-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.custom-solutions-compliance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 36px;
  color: var(--muted);
}

.custom-solutions-compliance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.custom-solutions-compliance span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.custom-solutions-end {
  margin-top: clamp(62px, 7vw, 92px);
  padding: clamp(36px, 5vw, 56px);
  background: linear-gradient(180deg, rgba(10, 28, 42, 0.9), rgba(6, 18, 30, 0.9));
  border: 1px solid rgba(57, 184, 255, 0.22);
  text-align: center;
}

.custom-solutions-end div {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.standard-bms-story {
  max-width: min(1180px, calc(100% - 2 * var(--section-x)));
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(62px, 8vw, 104px);
}

.standard-bms-story-hero,
.standard-bms-section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.standard-bms-story-hero h2,
.standard-bms-section-head h2,
.standard-bms-end h2 {
  margin: 0 0 16px;
  color: #f3faff;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.standard-bms-story-hero p:not(.eyebrow),
.standard-bms-section-head p:not(.eyebrow),
.standard-bms-end p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.65;
}

.standard-bms-numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 4vw, 46px);
}

.standard-bms-number {
  min-height: 126px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 22px 16px;
  background: rgba(6, 18, 30, 0.82);
  border: 1px solid rgba(57, 184, 255, 0.22);
  text-align: center;
}

.standard-bms-number strong {
  color: var(--accent);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.standard-bms-number span,
.standard-bms-feature span,
.standard-bms-unit > span,
.standard-bms-compliance,
.standard-bms-apps {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.standard-bms-number span {
  color: var(--muted);
}

.standard-bms-section-head {
  margin-top: clamp(68px, 8vw, 104px);
}

.standard-bms-architecture {
  position: relative;
  margin-top: 34px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 236, 164, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(10, 27, 42, 0.9), rgba(7, 18, 30, 0.94));
  border: 1px solid rgba(57, 184, 255, 0.24);
}

.standard-bms-master {
  display: grid;
  gap: 6px;
  max-width: 620px;
  margin: 0 auto;
  padding: 18px;
  background: rgba(6, 18, 30, 0.82);
  border: 1px solid var(--accent);
  text-align: center;
}

.standard-bms-master strong {
  color: var(--accent);
  font-size: 18px;
}

.standard-bms-master span,
.standard-bms-spine,
.standard-bms-slave span {
  color: var(--muted);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.standard-bms-spine {
  padding: 12px 0;
  color: var(--accent);
  text-align: center;
}

.standard-bms-slaves {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.standard-bms-slave {
  display: grid;
  min-height: 96px;
  place-items: center;
  gap: 5px;
  padding: 13px 8px;
  background: rgba(2, 8, 16, 0.8);
  border: 1px solid rgba(192, 224, 255, 0.14);
  text-align: center;
}

.standard-bms-slave strong {
  color: #f3faff;
  font-size: 14px;
}

.standard-bms-slave i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.standard-bms-units,
.standard-bms-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.standard-bms-feature {
  min-height: 220px;
}

.standard-bms-unit,
.standard-bms-feature,
.standard-bms-note,
.standard-bms-end {
  background: rgba(6, 18, 30, 0.82);
  border: 1px solid rgba(57, 184, 255, 0.2);
}

.standard-bms-unit,
.standard-bms-feature {
  padding: clamp(22px, 2.8vw, 30px);
}

.standard-bms-unit.is-master {
  background: linear-gradient(180deg, rgba(11, 39, 55, 0.88), rgba(6, 18, 30, 0.9));
  border-color: rgba(56, 236, 164, 0.46);
}

.standard-bms-unit > span,
.standard-bms-feature span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
}

.standard-bms-unit h3,
.standard-bms-feature h3 {
  margin: 0 0 12px;
  color: #f3faff;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.16;
}

.standard-bms-unit.is-master h3 {
  color: var(--accent);
}

.standard-bms-unit ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.standard-bms-unit li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.standard-bms-unit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.standard-bms-feature p,
.standard-bms-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.standard-bms-note {
  margin-top: 28px;
  padding: clamp(22px, 2.8vw, 30px);
  border-color: rgba(56, 236, 164, 0.38);
  background: rgba(56, 236, 164, 0.06);
}

.standard-bms-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.standard-bms-mini-spec {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid rgba(57, 184, 255, 0.22);
}

.standard-bms-mini-spec table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.standard-bms-mini-spec th,
.standard-bms-mini-spec td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(57, 184, 255, 0.14);
  text-align: left;
}

.standard-bms-mini-spec th {
  color: #f3faff;
  background: rgba(12, 42, 65, 0.72);
  font-size: 12px;
}

.standard-bms-mini-spec td {
  color: var(--muted);
  font-size: 14px;
}

.standard-bms-mini-spec td:not(:first-child) {
  color: #f3faff;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

.standard-bms-compliance,
.standard-bms-apps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 28px;
  color: var(--muted);
}

.standard-bms-compliance span,
.standard-bms-apps span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.standard-bms-compliance span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.standard-bms-apps span {
  padding: 9px 15px;
  border: 1px solid rgba(192, 224, 255, 0.16);
  border-radius: 999px;
}

.standard-bms-end {
  margin-top: clamp(62px, 7vw, 92px);
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
}

.standard-bms-end div {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.iot-ems-article {
  max-width: min(980px, calc(100% - 2 * var(--section-x)));
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(62px, 8vw, 104px);
}

.iot-ems-header,
.iot-ems-body {
  max-width: 760px;
  margin: 0 auto;
}

.iot-ems-header h2,
.iot-ems-body h2,
.iot-ems-close h2 {
  margin: 0 0 14px;
  color: #f3faff;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.iot-ems-header > p:not(.eyebrow),
.iot-ems-body > p,
.iot-ems-close p {
  color: var(--muted);
  font-size: clamp(16px, 1.42vw, 18px);
  line-height: 1.74;
}

.iot-ems-dashboard {
  margin: clamp(34px, 5vw, 58px) auto 0;
  padding: clamp(20px, 2.6vw, 26px);
  max-width: 860px;
  background: linear-gradient(180deg, #0c1830 0%, #0a1325 100%);
  border: 1px solid rgba(57, 184, 255, 0.22);
  overflow: hidden;
}

.iot-ems-dashboard-bar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(74, 168, 255, 0.18);
}

.iot-ems-dashboard-bar strong {
  color: #f3faff;
  font-size: 15px;
}

.iot-ems-dashboard-bar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.iot-ems-dashboard-bar span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.iot-ems-tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.iot-ems-tile {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px 8px;
  background: rgba(11, 24, 48, 0.64);
  border: 1px solid rgba(74, 168, 255, 0.14);
  text-align: center;
}

.iot-ems-tile span {
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase;
}

.iot-ems-tile strong {
  color: #4aa8ff;
  font-size: 17px;
  line-height: 1;
}

.iot-ems-tile.is-eco strong {
  color: var(--accent);
}

.iot-ems-tile small {
  margin-left: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.iot-ems-chart {
  padding: 14px 14px 8px;
  background: rgba(11, 24, 48, 0.5);
  border: 1px solid rgba(74, 168, 255, 0.14);
}

.iot-ems-chart p {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.iot-ems-chart svg {
  display: block;
  width: 100%;
  height: 90px;
}

.iot-ems-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
  color: var(--muted);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.iot-ems-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.iot-ems-legend i {
  display: inline-block;
  width: 9px;
  height: 2px;
}

.iot-ems-body {
  margin-top: clamp(36px, 5vw, 58px);
}

.iot-ems-lead::first-letter {
  float: left;
  padding: 6px 14px 0 0;
  color: var(--accent);
  font-size: 62px;
  font-weight: 900;
  line-height: 0.82;
}

.iot-ems-body .eyebrow {
  margin-top: clamp(46px, 6vw, 68px);
}

.iot-ems-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.iot-ems-card {
  padding: 24px 22px;
  background: rgba(6, 18, 30, 0.82);
  border: 1px solid rgba(57, 184, 255, 0.2);
}

.iot-ems-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #f3faff;
  font-size: 17px;
}

.iot-ems-card h3::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.iot-ems-card p,
.iot-ems-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.iot-ems-body blockquote {
  margin: clamp(32px, 5vw, 44px) 0;
  padding: 8px 0 8px 24px;
  border-left: 2px solid var(--accent);
  color: #f3faff;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.36;
}

.iot-ems-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.iot-ems-chips span {
  padding: 9px 16px;
  color: var(--muted);
  border: 1px solid rgba(192, 224, 255, 0.16);
  border-radius: 999px;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.iot-ems-chips .is-active {
  color: var(--accent);
  border-color: var(--accent);
}

.iot-ems-note {
  margin: 34px 0 0;
  padding: 22px;
  background: rgba(255, 180, 84, 0.06);
  border: 1px solid rgba(255, 180, 84, 0.22);
}

.iot-ems-note strong {
  display: block;
  margin-bottom: 8px;
  color: #ffb454;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.iot-ems-close {
  margin-top: clamp(56px, 7vw, 78px);
  padding-top: 42px;
  border-top: 1px solid rgba(57, 184, 255, 0.18);
}

.product-diagnostic-section {
  max-width: min(1280px, calc(100% - 2 * var(--section-x)));
  padding-top: 0;
  padding-bottom: clamp(62px, 8vw, 100px);
}

.product-spec-section {
  max-width: min(1280px, calc(100% - 2 * var(--section-x)));
  padding-top: 0;
  padding-bottom: clamp(40px, 6vw, 72px);
}

.product-spec-copy,
.product-diagnostic-copy {
  max-width: 760px;
  margin-bottom: 24px;
}

.product-spec-copy h2,
.product-diagnostic-copy h2 {
  margin: 0 0 10px;
  color: #f3faff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.product-spec-copy p:not(.eyebrow),
.product-diagnostic-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
}

.product-spec-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(57, 184, 255, 0.24);
  background: rgba(6, 18, 30, 0.76);
}

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

.product-spec-table th,
.product-spec-table td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(57, 184, 255, 0.16);
  border-right: 1px solid rgba(57, 184, 255, 0.14);
  text-align: left;
  vertical-align: top;
}

.product-spec-table th {
  color: #f3faff;
  background: rgba(12, 42, 65, 0.72);
  font-size: 14px;
}

.product-spec-table td {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-spec-table td:first-child {
  width: 23%;
  color: #dcefff;
  font-weight: 800;
}

.product-diagnostic-figure {
  margin: 0;
  padding: clamp(12px, 1.4vw, 18px);
  background: rgba(5, 14, 24, 0.88);
  border: 1px solid rgba(57, 184, 255, 0.24);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.product-diagnostic-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(192, 224, 255, 0.12);
}

.product-diagnostic-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.source-hero .hero-line,
.source-hero .hero-note {
  max-width: 820px;
}

.source-page {
  max-width: var(--content-readable);
  padding-top: clamp(54px, 7vw, 90px);
  padding-bottom: clamp(62px, 8vw, 100px);
}

.source-page h2 {
  margin: 0 0 18px;
  color: #f3faff;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  text-wrap: balance;
}

.source-page h3 {
  margin: 30px 0 8px;
  color: var(--accent);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.source-page p {
  max-width: 82ch;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.75;
}

.source-list-item {
  padding-left: 18px;
  border-left: 2px solid rgba(57, 184, 255, 0.36);
}

.source-note {
  color: #d8e9f7 !important;
}

.about-hero {
  padding-bottom: clamp(58px, 7vw, 88px);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(57, 184, 255, 0.06), transparent 54%),
    #06101a;
  border-bottom: 1px solid var(--line);
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

.about-copy p {
  margin: 0;
  color: #bfd0dd;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.78;
}

.about-signal {
  justify-self: center;
  align-self: center;
  display: grid;
  align-content: space-between;
  width: min(100%, 430px);
  min-height: 360px;
  padding: clamp(26px, 3vw, 38px);
  background:
    linear-gradient(180deg, rgba(57, 184, 255, 0.12), rgba(72, 224, 164, 0.06)),
    rgba(8, 24, 38, 0.82);
  border: 1px solid rgba(57, 184, 255, 0.28);
  box-shadow: var(--shadow);
}

.about-signal span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.9;
}

.about-signal strong {
  color: #f4faff;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.18;
}

.about-statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: #06101a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-statement-grid article {
  min-height: 330px;
  padding: clamp(32px, 4vw, 58px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--panel-strong);
}

.about-statement-grid article + article {
  border-left: 1px solid rgba(123, 190, 255, 0.18);
}

.about-statement-grid h2 {
  max-width: 760px;
  color: #f4faff;
  font-size: clamp(25px, 2.8vw, 42px);
  line-height: 1.18;
  text-wrap: balance;
}

.about-strengths {
  background: #07101a;
}

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

.about-strength-grid article {
  min-height: 170px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(8, 24, 38, 0.82);
}

.about-strength-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-strength-grid h3 {
  max-width: 18ch;
  margin: 0;
  color: #f3faff;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.22;
  text-wrap: balance;
}

.product-module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 920px;
  margin: 14px 0 42px;
  padding: 0;
  list-style: none;
}

.product-module-list li {
  position: relative;
  display: flex;
  flex: 1 1 220px;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  overflow: hidden;
  background: rgba(8, 24, 38, 0.78);
  border: 1px solid rgba(57, 184, 255, 0.26);
  color: #c6d8e6;
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 720;
  line-height: 1.35;
  text-align: center;
}

.product-module-list li::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: rgba(57, 184, 255, 0.56);
  opacity: 0.56;
}

.product-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(circle at 15% 50%, rgba(72, 224, 164, 0.1), transparent 30%),
    linear-gradient(135deg, #06111d, #061a16);
  border-top: 1px solid var(--line);
}

.product-cta h2 {
  max-width: 840px;
  color: #f4faff;
}

.product-cta p:not(.eyebrow) {
  max-width: 700px;
  color: #c7dfd4;
}

.plain-hero {
  padding: clamp(70px, 9vw, 118px) var(--section-x) clamp(42px, 6vw, 74px);
  background:
    radial-gradient(circle at 82% 24%, rgba(57, 184, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #020710 0%, #071928 100%);
  border-bottom: 1px solid var(--line);
}

.plain-hero h1 {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 72px);
}

.technology-page {
  background: #07101a;
}

.technology-hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(72, 224, 164, 0.1), transparent 28%),
    linear-gradient(135deg, #020710 0%, #071928 100%);
}

.technology-detail {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 82px);
  align-items: start;
}

.technology-switcher {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
}

.technology-tab {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 16px;
  border-left: 2px solid rgba(123, 190, 255, 0.2);
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: clamp(15px, 0.35vw + 14px, 18px);
  font-weight: 850;
  letter-spacing: 0.02em;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.technology-tab:hover,
.technology-tab:focus-visible,
.technology-tab.is-active {
  border-color: var(--green);
  background: rgba(72, 224, 164, 0.08);
  color: #f4faff;
  transform: translateX(4px);
  outline: none;
}

.technology-articles {
  min-height: 430px;
}

.technology-article {
  padding: clamp(30px, 4vw, 58px);
  background:
    linear-gradient(180deg, rgba(57, 184, 255, 0.05), transparent),
    rgba(8, 18, 30, 0.84);
  border: 1px solid rgba(123, 190, 255, 0.18);
  box-shadow: var(--shadow);
}

.technology-article.is-active {
  display: block;
}

.technology-article h2 {
  color: #f4faff;
}

.technology-article p {
  max-width: 820px;
  color: #bfd0dd;
  font-size: clamp(17px, 1vw + 14px, 21px);
}

.technology-article ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.technology-article li {
  padding-left: 18px;
  border-left: 2px solid rgba(72, 224, 164, 0.45);
  color: #dcefff;
}

.technology-story {
  display: grid;
  gap: clamp(30px, 4vw, 48px);
  margin-top: 34px;
}

.technology-article-header {
  max-width: 900px;
  padding-bottom: clamp(8px, 2vw, 16px);
}

.technology-article-header h3 {
  max-width: 780px;
  margin: 0;
  color: #f4faff;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.06;
  text-wrap: balance;
}

.technology-article-header p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: #9fb0c1;
  font-size: clamp(18px, 0.9vw + 15px, 22px);
  line-height: 1.6;
}

.technology-article .technology-lead {
  max-width: 880px;
  color: #dcefff;
  font-size: clamp(18px, 1vw + 15px, 22px);
  line-height: 1.72;
}

.technology-current-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 86% 0%, rgba(72, 224, 164, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(12, 29, 42, 0.98), rgba(10, 22, 34, 0.96));
  border: 1px solid rgba(72, 224, 164, 0.24);
}

.technology-current-card > p {
  margin: 0 0 22px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-current-scale {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(123, 190, 255, 0.18);
  border: 1px solid rgba(123, 190, 255, 0.18);
}

.technology-current-step {
  min-height: 128px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(5, 16, 27, 0.9);
}

.technology-current-step strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.95;
}

.technology-current-step span {
  color: #dcefff;
  font-size: clamp(13px, 0.45vw + 12px, 16px);
  font-weight: 760;
  line-height: 1.35;
}

.technology-current-card small {
  display: block;
  max-width: 860px;
  margin-top: 22px;
  color: #a9bbc9;
  font-size: clamp(14px, 0.45vw + 13px, 16px);
  line-height: 1.7;
}

.technology-array-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 92% 92%, rgba(72, 224, 164, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(12, 29, 42, 0.98), rgba(10, 22, 34, 0.96));
  border: 1px solid rgba(72, 224, 164, 0.24);
}

.technology-array-card > p {
  margin: 0 0 22px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-cells {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.technology-cell {
  position: relative;
  display: flex;
  flex: 1;
  min-width: 54px;
  height: 74px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #07101a;
  border: 1px solid rgba(123, 190, 255, 0.18);
}

.technology-cell span {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(72, 224, 164, 0.9);
}

.technology-cell small {
  color: #8997a8;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 850;
}

.technology-busbar {
  height: 3px;
  margin: 0 4px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  border-radius: 999px;
}

.technology-array-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(123, 190, 255, 0.18);
}

.technology-array-stat {
  flex: 1;
  min-width: 130px;
  padding-right: 14px;
}

.technology-array-stat strong {
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.technology-array-stat span {
  display: block;
  margin-top: 9px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.technology-pl-ladder {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 86% 0%, rgba(72, 224, 164, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(12, 29, 42, 0.98), rgba(10, 22, 34, 0.96));
  border: 1px solid rgba(72, 224, 164, 0.24);
}

.technology-pl-ladder > p {
  margin: 0 0 24px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-rungs {
  display: flex;
  height: 200px;
  align-items: flex-end;
  gap: 8px;
}

.technology-rung {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 10px;
  border-radius: 3px 3px 0 0;
}

.technology-rung span {
  position: absolute;
  top: -22px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.technology-rung strong {
  color: #f4faff;
  font-family: var(--font-display);
  font-size: 18px;
}

.technology-rung.r1 {
  height: 38%;
  background: rgba(123, 190, 255, 0.18);
}

.technology-rung.r2 {
  height: 52%;
  background: #2d3a4d;
}

.technology-rung.r3 {
  height: 64%;
  background: rgba(22, 176, 122, 0.55);
}

.technology-rung.r4 {
  height: 82%;
  background: var(--green);
}

.technology-rung.r5 {
  height: 100%;
  background: repeating-linear-gradient(135deg, var(--green) 0 6px, #16b07a 6px 12px);
}

.technology-rung.r3 strong,
.technology-rung.r4 strong,
.technology-rung.r5 strong {
  color: #07101a;
}

.technology-ladder-key {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(123, 190, 255, 0.18);
}

.technology-ladder-key div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 760;
}

.technology-ladder-key span {
  width: 12px;
  height: 12px;
  flex: none;
  border-radius: 2px;
}

.technology-ladder-key .k1 {
  background: rgba(22, 176, 122, 0.55);
}

.technology-ladder-key .k2 {
  background: var(--green);
}

.technology-ladder-key strong {
  color: #f4faff;
}

.technology-net-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 50% 30%, rgba(72, 224, 164, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(12, 29, 42, 0.98), rgba(10, 22, 34, 0.96));
  border: 1px solid rgba(72, 224, 164, 0.24);
}

.technology-net-card > p {
  margin: 0 0 26px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-net-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

.technology-net-col {
  display: flex;
  flex: 1;
  min-width: 130px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.technology-net-node {
  padding: 14px;
  background: #07101a;
  border: 1px solid rgba(123, 190, 255, 0.18);
  text-align: center;
}

.technology-net-node.is-cloud {
  background: linear-gradient(180deg, rgba(12, 29, 42, 0.98), rgba(10, 22, 34, 0.96));
  border-color: rgba(72, 224, 164, 0.34);
}

.technology-net-node strong {
  display: block;
  color: #f4faff;
  font-size: 14px;
  line-height: 1.25;
}

.technology-net-node.is-cloud strong {
  color: var(--green);
}

.technology-net-node span {
  display: block;
  margin-top: 5px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.technology-net-link {
  display: flex;
  min-width: 62px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.technology-net-link span {
  margin-bottom: 4px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.technology-net-link i {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

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

.technology-edition {
  position: relative;
  overflow: hidden;
  padding: 28px 22px;
  background:
    linear-gradient(180deg, rgba(12, 29, 42, 0.98), rgba(10, 22, 34, 0.96));
  border: 1px solid rgba(123, 190, 255, 0.18);
}

.technology-edition.is-ultra {
  border-color: var(--green);
}

.technology-edition.is-ultra::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(22, 176, 122, 0.8), transparent 70%);
  opacity: 0.22;
}

.technology-edition p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.technology-edition.is-ultra p {
  color: var(--green);
}

.technology-edition strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #f4faff;
  font-size: clamp(19px, 1.15vw + 16px, 24px);
  line-height: 1.15;
}

.technology-edition.is-ultra strong {
  color: var(--green);
}

.technology-edition span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: #9fb7c9;
  font-size: 13px;
  line-height: 1.55;
}

.technology-edition em {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 16px;
  padding: 4px 9px;
  color: #9fb7c9;
  border: 1px solid rgba(123, 190, 255, 0.18);
  font-family: var(--font-display);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.technology-edition.is-ultra em {
  background: var(--green);
  border-color: var(--green);
  color: #07101a;
}

.technology-architecture-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 50% 0%, rgba(72, 224, 164, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(12, 29, 42, 0.98), rgba(10, 22, 34, 0.96));
  border: 1px solid rgba(72, 224, 164, 0.24);
}

.technology-architecture-card > p {
  margin: 0 0 26px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-master {
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(12, 29, 42, 0.98), rgba(10, 22, 34, 0.96));
  border: 1px solid var(--green);
  text-align: center;
}

.technology-master strong {
  display: block;
  color: var(--green);
  font-size: 17px;
}

.technology-master span {
  display: block;
  margin-top: 5px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.technology-spine {
  padding: 6px 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
}

.technology-slaves {
  display: flex;
  gap: 8px;
}

.technology-slave {
  flex: 1;
  padding: 14px 8px;
  background: #07101a;
  border: 1px solid rgba(123, 190, 255, 0.18);
  text-align: center;
}

.technology-slave strong {
  display: block;
  color: #f4faff;
  font-size: 13px;
}

.technology-slave span {
  display: block;
  margin-top: 4px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 9px;
}

.technology-slave i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-top: 6px;
  background: var(--green);
  border-radius: 50%;
}

.technology-arch-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(123, 190, 255, 0.18);
}

.technology-arch-stats div {
  flex: 1;
  min-width: 120px;
  padding-right: 12px;
}

.technology-arch-stats strong {
  display: block;
  color: var(--green);
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1;
}

.technology-arch-stats span {
  display: block;
  margin-top: 8px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.technology-story-section {
  max-width: 920px;
}

.technology-kicker {
  margin: 0 0 12px !important;
  color: var(--green) !important;
  font-family: var(--font-display);
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.technology-story-section h3,
.technology-takeaway h3 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #f4faff;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.12;
  text-wrap: balance;
}

.technology-story-section p {
  line-height: 1.75;
}

.technology-band {
  display: inline-block;
  margin: 8px 0 4px;
  padding: 5px 12px;
  background: var(--green);
  color: #07101a;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.technology-band.is-alt {
  background: #16b07a;
  color: #f4faff;
}

.technology-topology-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.technology-topology-grid article {
  padding: 24px 22px;
  background: rgba(7, 22, 35, 0.86);
  border: 1px solid rgba(123, 190, 255, 0.16);
}

.technology-topology-grid strong {
  display: block;
  color: #f4faff;
  font-size: clamp(16px, 0.65vw + 14px, 20px);
}

.technology-topology-grid p {
  margin: 8px 0 0;
  color: #9fb7c9;
  font-size: clamp(14px, 0.45vw + 13px, 16px);
  line-height: 1.55;
}

.technology-story-section blockquote {
  max-width: 820px;
  margin: 28px 0 0;
  padding: 8px 0 8px 24px;
  border-left: 2px solid var(--green);
  color: #f4faff;
  font-family: var(--font-display);
  font-size: clamp(20px, 1vw + 17px, 27px);
  font-weight: 740;
  line-height: 1.42;
}

.technology-mode-switch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 34px 0;
}

.technology-mode {
  min-height: 124px;
  padding: 22px 20px;
  background: rgba(7, 22, 35, 0.86);
  border: 1px solid rgba(123, 190, 255, 0.16);
}

.technology-mode.is-active {
  background: linear-gradient(180deg, rgba(12, 29, 42, 0.98), rgba(10, 22, 34, 0.96));
  border-color: rgba(72, 224, 164, 0.34);
}

.technology-mode span {
  display: block;
  margin-bottom: 12px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.technology-mode strong {
  color: #f4faff;
  font-size: clamp(17px, 0.75vw + 15px, 22px);
  line-height: 1.3;
}

.technology-mode.is-active strong {
  color: var(--green);
}

.technology-tier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.technology-tier {
  padding: 26px 22px;
  background: rgba(7, 22, 35, 0.86);
  border: 1px solid rgba(123, 190, 255, 0.16);
}

.technology-tier.is-pro {
  background: linear-gradient(180deg, rgba(12, 29, 42, 0.98), rgba(10, 22, 34, 0.96));
  border-color: rgba(72, 224, 164, 0.34);
}

.technology-tier > p {
  margin: 0 0 8px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.technology-tier.is-pro > p {
  color: var(--green);
}

.technology-tier > strong {
  display: block;
  color: #f4faff;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
}

.technology-tier.is-pro > strong {
  color: var(--green);
}

.technology-tier > span {
  display: block;
  margin-top: 6px;
  color: #9fb7c9;
  font-size: 13px;
}

.technology-tier ul {
  margin-top: 18px;
}

.technology-tier li {
  border-left: 0;
  border-top: 1px solid rgba(123, 190, 255, 0.18);
  padding: 7px 0 7px 20px;
  position: relative;
  color: #c9d8e5;
  font-size: 14.5px;
  line-height: 1.5;
}

.technology-tier li:first-child {
  border-top: 0;
}

.technology-tier li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.technology-unit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.technology-unit {
  padding: 26px 22px;
  background: rgba(7, 22, 35, 0.86);
  border: 1px solid rgba(123, 190, 255, 0.16);
}

.technology-unit.is-master {
  background: linear-gradient(180deg, rgba(12, 29, 42, 0.98), rgba(10, 22, 34, 0.96));
  border-color: rgba(72, 224, 164, 0.34);
}

.technology-unit > p {
  margin: 0 0 6px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.technology-unit.is-master > p {
  color: var(--green);
}

.technology-unit > strong {
  display: block;
  color: #f4faff;
  font-size: clamp(18px, 0.8vw + 16px, 22px);
  line-height: 1.2;
}

.technology-unit.is-master > strong {
  color: var(--green);
}

.technology-unit ul {
  margin-top: 16px;
}

.technology-unit li {
  position: relative;
  padding: 7px 0 7px 18px;
  border-left: 0;
  border-top: 1px solid rgba(123, 190, 255, 0.18);
  color: #c9d8e5;
  font-size: 14px;
  line-height: 1.5;
}

.technology-unit li:first-child {
  border-top: 0;
}

.technology-unit li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
}

.technology-swap {
  color: rgba(123, 190, 255, 0.28);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 850;
  text-align: center;
}

.technology-swap span {
  display: block;
  margin-top: 6px;
  color: #ffca7a;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.technology-vmodel {
  margin: 34px 0;
  padding: 28px 24px;
  background: rgba(7, 22, 35, 0.86);
  border: 1px solid rgba(123, 190, 255, 0.16);
}

.technology-vmodel > p {
  margin: 0 0 20px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.technology-vrows {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px 16px;
  align-items: center;
}

.technology-vbox {
  padding: 11px 14px;
  background: #07101a;
  border: 1px solid rgba(123, 190, 255, 0.18);
  color: #c9d8e5;
  font-size: 13px;
}

.technology-vbox.down {
  border-left: 2px solid #8997a8;
}

.technology-vbox.up {
  border-left: 2px solid var(--green);
}

.technology-vlink {
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-align: center;
}

.technology-vlink span {
  color: var(--green);
}

.technology-dashboard {
  margin: 34px 0;
  padding: 24px 22px;
  background: rgba(7, 22, 35, 0.86);
  border: 1px solid rgba(123, 190, 255, 0.16);
}

.technology-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(123, 190, 255, 0.18);
}

.technology-dashboard-top strong {
  color: #f4faff;
  font-size: 15px;
}

.technology-dashboard-top span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.technology-dashboard-top span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(72, 224, 164, 0.9);
}

.technology-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.technology-dashboard-metrics div {
  padding: 14px 12px;
  background: #07101a;
  border: 1px solid rgba(123, 190, 255, 0.18);
}

.technology-dashboard-metrics strong {
  display: block;
  color: var(--green);
  font-size: clamp(19px, 1.4vw, 24px);
  line-height: 1;
}

.technology-dashboard-metrics span {
  display: block;
  margin-top: 8px;
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.technology-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.technology-option-grid article {
  padding: 22px 18px;
  background: rgba(7, 22, 35, 0.86);
  border: 1px solid rgba(123, 190, 255, 0.16);
}

.technology-option-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.technology-option-grid h4 {
  margin: 0 0 8px;
  color: #f4faff;
  font-size: clamp(15px, 0.55vw + 14px, 18px);
}

.technology-option-grid p {
  margin: 0;
  color: #9fb7c9;
  font-size: 13px;
  line-height: 1.55;
}

.technology-spec-table {
  margin: 34px 0;
  overflow: hidden;
  border: 1px solid rgba(123, 190, 255, 0.18);
}

.technology-spec-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}

.technology-spec-param {
  width: 31%;
}

.technology-spec-master {
  width: 34%;
}

.technology-spec-slave {
  width: 35%;
}

.technology-spec-table th,
.technology-spec-table td {
  text-align: left;
}

.technology-spec-table th {
  padding: 12px 18px;
  background: rgba(12, 29, 42, 0.98);
  color: #9fb7c9;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.technology-spec-table td {
  padding: 12px 18px;
  border-top: 1px solid rgba(123, 190, 255, 0.18);
  color: #c9d8e5;
  vertical-align: middle;
}

.technology-spec-table td:first-child {
  color: #9fb7c9;
}

.technology-spec-table td:last-child {
  color: #f4faff;
  font-family: var(--font-display);
}

.technology-spec-table tr:nth-child(even) td {
  background: rgba(12, 29, 42, 0.42);
}

.technology-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.technology-benefit-grid article {
  min-height: 168px;
  padding: clamp(20px, 2.4vw, 28px);
  background: rgba(7, 22, 35, 0.86);
  border: 1px solid rgba(123, 190, 255, 0.16);
}

.technology-benefit-grid h4 {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 0 0 12px;
  color: #f4faff;
  font-size: clamp(17px, 0.7vw + 15px, 22px);
  line-height: 1.2;
}

.technology-benefit-grid h4 span {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 12px;
}

.technology-benefit-grid p {
  margin: 0;
  color: #aebfcb;
  font-size: clamp(14px, 0.45vw + 13px, 16px);
  line-height: 1.64;
}

.technology-note {
  max-width: 900px;
  padding: clamp(22px, 2.8vw, 30px);
  background: rgba(255, 180, 84, 0.06);
  border: 1px solid rgba(255, 180, 84, 0.24);
}

.technology-note strong {
  display: block;
  margin-bottom: 10px;
  color: #ffca7a;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-note p {
  margin: 0;
  color: #c4d0dc;
  font-size: clamp(15px, 0.55vw + 14px, 18px);
  line-height: 1.72;
}

.services-page {
  background: #07101a;
}

.services-hero {
  background:
    radial-gradient(circle at 86% 24%, rgba(57, 184, 255, 0.1), transparent 30%),
    linear-gradient(135deg, #020710 0%, #071928 100%);
}

.services-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.service-switcher {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
}

.service-tab {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 66px;
  padding: 14px 16px;
  background: rgba(8, 24, 38, 0.72);
  border: 1px solid rgba(123, 190, 255, 0.18);
  color: #b6cbe0;
  font-family: var(--font-display);
  font-size: clamp(15px, 0.34vw + 14px, 18px);
  font-weight: 850;
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.service-tab span {
  color: var(--cyan);
  font-size: 11px;
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.is-active {
  background: #0b2033;
  border-color: rgba(72, 224, 164, 0.58);
  color: #f4faff;
  transform: translateX(4px);
  outline: none;
}

.service-articles {
  min-height: 560px;
}

.service-article {
  display: none;
  padding: clamp(30px, 4vw, 58px);
  background: #08121e;
  border: 1px solid rgba(123, 190, 255, 0.18);
  box-shadow: var(--shadow);
}

.service-article.is-active {
  display: block;
}

.service-article h2 {
  max-width: 900px;
  color: #f4faff;
  font-size: clamp(34px, 3vw, 54px);
}

.service-lead,
.service-article-body p {
  max-width: 850px;
  color: #bfd0dd;
  font-size: clamp(16px, 0.7vw + 14px, 20px);
}

.service-article-body {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.service-article-body h2 {
  margin-top: 10px;
  font-size: clamp(28px, 2vw, 40px);
}

.service-article-body h3 {
  margin: 16px 0 0;
  color: var(--cyan);
  font-size: clamp(19px, 0.9vw + 16px, 25px);
}

.service-article-body .source-list-item {
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid rgba(72, 224, 164, 0.45);
  color: #dcefff;
}

.faq {
  background:
    radial-gradient(circle at 12% 16%, rgba(72, 224, 164, 0.08), transparent 26%),
    #07101a;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
  gap: clamp(28px, 4.6vw, 72px);
  align-items: stretch;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: var(--content-readable);
}

.faq-list details {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--panel-strong);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px clamp(22px, 3vw, 32px);
  color: #f4faff;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.3vw, 23px);
  font-weight: 850;
  line-height: 1.3;
  text-wrap: balance;
}

.faq-list p {
  margin: 0;
  padding: 0 clamp(20px, 3vw, 30px) 24px;
  color: var(--muted);
}

.faq-visual {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: clamp(28px, 4vw, 52px);
  background: transparent;
  border: 1px solid rgba(57, 184, 255, 0.22);
}

.faq-generated-icon {
  display: block;
  width: min(100%, 540px);
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.34));
}
.contact-address {
  margin-top: 22px;
  color: #dcefff !important;
  font-weight: 750;
}

.legal-page {
  max-width: var(--content-readable);
  margin: 0 auto;
  color: #d8e7f5;
  font-family: var(--font-legal);
  hyphens: auto;
}

.legal-page h1 {
  margin-bottom: 30px;
  font-size: clamp(31px, 3.2vw, 48px);
  line-height: 1.12;
}

.legal-page h2 {
  margin: 44px 0 16px;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.18;
  color: #f4faff;
}

.legal-page h3 {
  margin: 28px 0 10px;
  color: #9bddff;
  font-size: clamp(18px, 1.3vw, 22px);
}

.legal-page p {
  margin-bottom: 15px;
  color: #b8c9d8;
  line-height: 1.78;
}

.legal-bullet {
  padding-left: 18px;
}

.language-entry {
  min-height: 100svh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 32px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(57, 184, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #020710 0%, #071928 100%);
}

.language-entry img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(83, 196, 255, 0.34));
}

.language-entry h1 {
  margin-bottom: 0;
}

.language-entry p {
  color: var(--muted);
}

.service {
  background:
    linear-gradient(180deg, #07101a, #09131f);
}

.service-list,
.application-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card,
.service-list article,
.application-grid article,
.why-grid article {
  display: block;
  min-height: 240px;
  padding: clamp(26px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--panel-strong);
}

.applications {
  background:
    radial-gradient(circle at 80% 20%, rgba(57, 184, 255, 0.09), transparent 28%),
    #07101a;
}

.application-grid article {
  min-height: 330px;
}

.application-grid span,
.service-card::before,
.service-list article::before,
.why-grid article::before {
  text-shadow: 0 0 22px rgba(57, 184, 255, 0.28);
}

.service-card,
.service-list article,
.application-grid article,
.why-grid article {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.service-list article::after,
.application-grid article::after,
.why-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(57, 184, 255, 0.24), transparent 28%, rgba(72, 224, 164, 0.16)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.service-card:hover::after,
.service-list article:hover::after,
.application-grid article:hover::after,
.why-grid article:hover::after {
  opacity: 1;
}

.why {
  background:
    linear-gradient(135deg, #06111d, #061a16);
  color: white;
}

.why .eyebrow {
  color: var(--green);
}

.why-grid {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.why-grid article {
  background:
    linear-gradient(180deg, rgba(72, 224, 164, 0.07), transparent),
    #081914;
}

.why-grid p {
  color: #c7dfd4;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(57, 184, 255, 0.08), transparent 40%),
    #07101a;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(8, 18, 30, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #dcefff;
  font-size: 13.5px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(123, 190, 255, 0.28);
  background: rgba(4, 11, 18, 0.82);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(57, 184, 255, 0.18);
  border-color: var(--accent);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  border: 1px solid var(--green);
  background: linear-gradient(135deg, var(--accent), #1874c7);
  color: white;
  padding: 13px 20px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  background: linear-gradient(135deg, #65c9ff, #1d8dea);
  border-color: #65c9ff;
  transform: translateY(-2px);
}

.reference-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.06), transparent 6%),
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.03) 34.2% 34.6%, transparent 34.8%),
    #020403;
  border-top: 1px solid rgba(123, 190, 255, 0.12);
  color: #8d8f91;
}

.reference-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 37%, rgba(255, 255, 255, 0.025) 37.2% 37.55%, transparent 37.8%),
    linear-gradient(120deg, transparent 0 68%, rgba(255, 255, 255, 0.025) 68.2% 68.55%, transparent 68.8%);
  opacity: 0.5;
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(34px, 7vw, 92px);
  padding: clamp(40px, 5vw, 54px) clamp(32px, 7vw, 76px) 40px;
}

.footer-column h2 {
  margin: 0 0 20px;
  color: #f4f4f4;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.1;
  font-weight: 880;
}

.footer-brand-column p {
  margin: 14px 0 0;
  color: #8c8d8f;
  font-size: 14px;
  line-height: 1.55;
}

.footer-logo-link {
  display: inline-flex;
  width: 108px;
  height: 108px;
  align-items: center;
  justify-content: center;
}

.footer-logo-link img {
  display: block;
  width: 105px;
  height: 105px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 201, 224, 0.38));
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #8f9294;
  font-size: 15px;
}

.footer-mail-icon {
  width: 18px;
  height: 14px;
  flex: 0 0 18px;
  background: #00c8df;
  clip-path: polygon(0 0, 50% 44%, 100% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 10px rgba(0, 200, 223, 0.38));
}

.footer-services-column nav {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.footer-services-column a {
  color: #8f9294;
  font-size: 15px;
  font-weight: 650;
}

.footer-services-column a:last-child {
  color: #a6a6a6;
  font-weight: 850;
}

.footer a {
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.footer a:hover {
  color: #f4f4f4;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #8f9294;
  font-size: 15px;
  text-align: center;
}

.custom-bms-gallery {
  max-width: min(1120px, calc(100% - 2 * var(--section-x)));
  padding-top: 0;
}

.custom-bms-gallery-copy {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.custom-bms-gallery-copy p {
  margin-left: auto;
  margin-right: auto;
}

.custom-gallery-frame {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 10px;
}

.custom-gallery-track {
  position: relative;
  min-height: clamp(240px, 28vw, 380px);
  display: grid;
  place-items: center;
  overflow: visible;
}

.custom-gallery-nav {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(8, 16, 29, 0.82);
  color: #f3faff;
  border-radius: 12px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.custom-gallery-nav:hover,
.custom-gallery-nav:focus-visible,
.custom-bms-gallery-item:focus-visible {
  border-color: var(--line-strong);
  transform: translateY(-1px);
  outline: none;
}

.custom-bms-gallery-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateX(0) scale(1);
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  border-radius: 14px;
  width: clamp(130px, 22vw, 220px);
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms ease,
    filter 220ms ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: pointer;
  filter: grayscale(0.16);
}

.custom-bms-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: inherit;
  box-shadow: var(--shadow);
  border: 1px solid rgba(123, 190, 255, 0.24);
}

.custom-bms-gallery-item.is-active {
  width: clamp(300px, 44vw, 520px);
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  cursor: zoom-in;
  filter: grayscale(0);
}

.custom-bms-gallery-item.is-prev,
.custom-bms-gallery-item.is-next {
  z-index: 3;
  opacity: 0.56;
  visibility: visible;
  pointer-events: auto;
  filter: grayscale(0.08);
}

.custom-bms-gallery-item.is-prev {
  width: clamp(170px, 28vw, 280px);
  transform: translate(-50%, -50%) translateX(clamp(-430px, -32vw, -300px)) scale(0.9);
}

.custom-bms-gallery-item.is-next {
  width: clamp(170px, 28vw, 280px);
  transform: translate(-50%, -50%) translateX(clamp(300px, 32vw, 430px)) scale(0.9);
}

.custom-bms-gallery-item.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.custom-gallery-footer {
  margin-top: 22px;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.custom-gallery-counter {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.custom-gallery-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.custom-gallery-indicator {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(123, 190, 255, 0.4);
  border-radius: 999px;
  background: transparent;
  padding: 0;
}

.custom-gallery-indicator[aria-current="true"] {
  background: var(--green);
  border-color: var(--green);
}

.custom-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 7, 12, 0.92);
  backdrop-filter: blur(4px);
}

.custom-gallery-lightbox.is-open {
  display: flex;
}

.custom-gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.custom-gallery-lightbox-content {
  position: relative;
  z-index: 1;
  width: min(94vw, 1240px);
  max-height: 90svh;
  display: grid;
  justify-items: center;
  place-items: center;
  gap: 12px;
  padding: 10px;
}

.custom-gallery-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 84svh;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: grab;
  transform: translate(0px, 0px) scale(1);
  transition:
    transform 120ms ease;
  touch-action: none;
  user-select: none;
}

.custom-gallery-lightbox-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.custom-gallery-lightbox-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(123, 190, 255, 0.34);
  background: rgba(8, 16, 29, 0.9);
  color: #f3faff;
  font-weight: 800;
}

.custom-gallery-lightbox-close {
  right: 16px;
  top: 16px;
}

.custom-gallery-lightbox-btn:hover,
.custom-gallery-lightbox-btn:focus-visible {
  border-color: rgba(123, 190, 255, 0.8);
  outline: none;
}

@media (max-width: 1080px) {
  .custom-gallery-frame {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 6px;
  }

  .custom-gallery-track {
    min-height: 300px;
  }

  .custom-gallery-nav {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 24px;
  }

  .custom-gallery-indicators {
    row-gap: 9px;
  }

  .custom-bms-gallery-item.is-active {
    width: clamp(250px, 56vw, 430px);
  }

  .custom-bms-gallery-item.is-prev,
  .custom-bms-gallery-item.is-next {
    width: clamp(140px, 26vw, 210px);
  }

  .custom-bms-gallery-item.is-prev {
    transform: translate(-50%, -50%) translateX(clamp(-300px, -30vw, -170px)) scale(0.86);
  }

  .custom-bms-gallery-item.is-next {
    transform: translate(-50%, -50%) translateX(clamp(170px, 30vw, 300px)) scale(0.86);
  }
}

@media (min-width: 1081px) {
  html.device-desktop {
    --device-mode: desktop;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  html.device-tablet {
    --device-mode: tablet;
  }

  .device-tablet .site-header {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .device-tablet .nav {
    justify-self: end;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 10px;
  }

  .device-tablet .header-tools {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .device-tablet .hero-copy {
    width: min(720px, calc(100vw - 64px));
    max-width: 720px;
    margin-left: 0;
  }

  .device-tablet .product-grid,
  .device-tablet .service-list,
  .device-tablet .application-grid,
  .device-tablet .why-grid,
  .device-tablet .detail-grid,
  .device-tablet .about-strength-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .device-tablet .faq-layout,
  .device-tablet .technology-detail,
  .device-tablet .services-detail,
  .device-tablet .about-intro,
  .device-tablet .contact {
    grid-template-columns: 1fr;
  }

  .device-tablet .technology-switcher,
  .device-tablet .service-switcher {
    position: static;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 6px;
  }
}

@media (max-width: 1080px) {
  :root {
    --content-wide: min(760px, calc(100vw - 48px));
    --content-readable: min(760px, calc(100vw - 48px));
  }

  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    width: min(680px, calc(100vw - 48px));
  }

  .product-grid,
  .tech-strip,
  .service-list,
  .application-grid,
  .why-grid,
  .detail-grid,
  .standard-bms-numbers,
  .standard-bms-slaves,
  .standard-bms-units,
  .standard-bms-features,
  .iot-ems-tiles,
  .iot-ems-card-grid,
  .custom-solutions-caps,
  .custom-solutions-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 64px;
  }

  .footer-services-column {
    grid-column: 1 / -1;
  }

  .header-tools {
    flex-wrap: wrap;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-tools {
    grid-column: 1 / -1;
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  html.device-mobile {
    --device-mode: mobile;
  }

  :root {
    --section-y: clamp(58px, 12vw, 78px);
    --section-x: clamp(18px, 5vw, 24px);
    --content-wide: calc(100vw - 36px);
    --content-readable: calc(100vw - 36px);
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav {
    justify-self: start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 18px;
    font-size: 13.5px;
  }

  .header-cta {
    justify-self: start;
  }

  .header-tools {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .hero {
    justify-content: center;
    text-align: center;
  }

  .hero-lineart-bg {
    background:
      linear-gradient(180deg, rgba(1, 5, 11, 0.84), rgba(1, 7, 14, 0.58)),
      url("assets/hero-chip-particle-source.png") 62% center / cover no-repeat;
  }

  .hero-copy {
    justify-items: center;
    margin-left: 0;
  }

  .hero-tech-highlights {
    justify-content: center;
  }

  h1 {
    font-size: clamp(34px, 9vw, 52px);
    line-height: 1.04;
  }

  h1 span:first-child {
    white-space: normal;
  }

  .topic-links {
    justify-content: center;
    width: 100%;
  }

  .topic-links a,
  .button {
    width: 100%;
    justify-content: center;
  }

  .product-grid,
  .tech-strip,
  .service-list,
  .application-grid,
  .why-grid,
  .faq-layout,
  .technology-detail,
  .services-detail,
  .about-intro,
  .about-statement-grid,
  .about-strength-grid,
  .detail-grid,
  .product-cta,
  .standard-bms-numbers,
  .standard-bms-units,
  .standard-bms-features,
  .iot-ems-card-grid,
  .custom-solutions-caps,
  .custom-solutions-meta,
  .custom-solutions-process {
    grid-template-columns: 1fr;
  }

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

  .iot-ems-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-visual {
    min-height: 240px;
    padding: 22px;
  }

  .faq-generated-icon {
    width: min(100%, 430px);
    max-height: 220px;
  }

  .technology-switcher,
  .service-switcher {
    position: static;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .technology-tab,
  .service-tab {
    min-width: 150px;
  }

  .technology-current-scale,
  .technology-mode-switch,
  .technology-tier-grid,
  .technology-editions,
  .technology-topology-grid,
  .technology-option-grid,
  .technology-unit-grid,
  .technology-vrows,
  .technology-benefit-grid {
    grid-template-columns: 1fr;
  }

  .technology-dashboard-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .technology-net-flow {
    flex-direction: column;
  }

  .technology-net-link {
    min-width: 0;
    padding: 8px 0;
  }

  .technology-net-link i {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, transparent, var(--green), transparent);
  }

  .technology-slaves {
    flex-wrap: wrap;
  }

  .technology-slave {
    min-width: 60px;
  }

  .technology-vlink {
    display: none;
  }

  .technology-rungs {
    height: 160px;
  }

  .technology-rung span {
    font-size: 8px;
  }

  .technology-current-step {
    min-height: 108px;
  }

  .standard-bms-feature {
    min-height: auto;
  }

  .iot-ems-dashboard-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .technology-cell {
    min-width: 44px;
    height: 60px;
  }

  .technology-swap {
    transform: rotate(90deg);
  }

  .technology-story-section blockquote {
    padding-left: 18px;
  }

  .product-hero {
    min-height: auto;
    padding-top: 58px;
    background:
      linear-gradient(180deg, rgba(1, 5, 11, 0.86), rgba(3, 12, 22, 0.72)),
      url("assets/bms-collection-3d-aligned-mosfets-spaced.png") center 26px / min(620px, 108vw) auto no-repeat,
      linear-gradient(135deg, #020710 0%, #061525 100%);
  }

  .product-hero-customized-bms {
    background:
      linear-gradient(180deg, rgba(1, 5, 11, 0.9), rgba(3, 12, 22, 0.72)),
      url("assets/bms-collection-customized-dark.png") center center / cover no-repeat,
      linear-gradient(135deg, #020710 0%, #061525 100%);
  }

  .product-hero-standard-bms {
    background:
      linear-gradient(180deg, rgba(1, 5, 11, 0.9), rgba(3, 12, 22, 0.72)),
      url("assets/standard-bms-master-slave-hero.png") center center / cover no-repeat,
      linear-gradient(135deg, #020710 0%, #061525 100%);
  }

  .product-hero-iot-connect-of-things {
    background:
      linear-gradient(180deg, rgba(1, 5, 11, 0.74), rgba(3, 12, 22, 0.54)),
      url("assets/iot-ems-dashboard-hero.png") center center / cover no-repeat,
      linear-gradient(135deg, #020710 0%, #061525 100%);
  }

  .product-hero-copy {
    padding-top: clamp(210px, 48vw, 360px);
  }

  .product-card,
  .service-card,
  .service-list article,
  .application-grid article,
  .why-grid article,
  .about-statement-grid article,
  .about-strength-grid article,
  .detail-grid article {
    min-height: auto;
  }

  .about-signal {
    min-height: 240px;
  }

  .product-card span,
  .application-grid span,
  .detail-grid span {
    margin-bottom: 30px;
  }

  .product-module-list {
    gap: 9px;
  }

  .product-module-list li {
    flex-basis: 180px;
  }

  .plain-hero h1,
  .legal-page h1 {
    font-size: clamp(32px, 8vw, 44px);
  }

  .legal-page h2 {
    font-size: clamp(23px, 6vw, 30px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 34px var(--section-x) 32px;
    gap: 30px;
  }

  .footer-column h2 {
    margin-bottom: 20px;
  }

  .footer-logo-link {
    width: 108px;
    height: 108px;
  }

  .footer-logo-link img {
    width: 105px;
    height: 105px;
  }

  .footer-bottom {
    min-height: 58px;
    padding: 0 22px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
