:root {
  color-scheme: dark;
  --ink: #081114;
  --ink-2: #102126;
  --panel: rgba(12, 29, 34, 0.78);
  --panel-solid: #0e2228;
  --line: rgba(203, 231, 236, 0.18);
  --text: #eef8f8;
  --muted: #a8bec2;
  --soft: #d8e8e9;
  --cyan: #35d7df;
  --cyan-2: #7ee9ee;
  --green: #57d382;
  --orange: #ff9c47;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--ink);
  color: var(--text);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 72px 72px;
  mask-image: linear-gradient(to bottom, black 0, black 45%, transparent 100%);
  z-index: -2;
}

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

img,
svg {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 99;
  padding: 10px 14px;
  background: var(--cyan);
  color: #031014;
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 17, 20, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: min(1320px, 100%);
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 156px;
}

.brand img {
  width: 104px;
  height: auto;
  display: block;
}

.brand span {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.brand strong {
  font-size: 12px;
  line-height: 1.1;
  color: var(--muted);
  font-weight: 650;
  text-transform: uppercase;
}

@media (max-width: 1340px) {
  .en .brand span,
  .en .brand strong,
  .es .brand span,
  .es .brand strong,
  .ru .brand span,
  .ru .brand strong {
    display: none;
  }

  .en .brand,
  .es .brand,
  .ru .brand {
    min-width: 104px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1vw, 13px);
  font-size: 12.5px;
  color: var(--muted);
}

.nav-links a,
.nav-link {
  padding: 8px 0;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  color: var(--white);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.has-menu > .nav-link::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.72;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  z-index: 30;
  width: 280px;
  padding: 8px;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  color: #132126;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-menu-products {
  width: 318px;
}

.nav-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

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

.nav-menu a {
  display: grid;
  gap: 3px;
  padding: 10px 11px;
  border-radius: 6px;
  white-space: normal;
}

.nav-flyout {
  position: relative;
}

.nav-flyout-main {
  position: relative;
  padding-right: 28px !important;
}

.nav-flyout-main::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0.65;
}

.nav-submenu {
  position: absolute;
  left: calc(100% - 2px);
  top: 0;
  z-index: 32;
  width: min(380px, calc(100vw - 40px));
  max-height: min(72vh, 620px);
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  color: #132126;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0;
  bottom: 0;
  width: 22px;
}

.nav-flyout::after {
  content: "";
  position: absolute;
  left: 100%;
  top: -8px;
  bottom: -8px;
  width: 26px;
}

.nav-flyout:hover > .nav-flyout-main,
.nav-flyout:focus-within > .nav-flyout-main,
.nav-flyout.is-open > .nav-flyout-main {
  background: #0f2d33;
  color: #ffffff;
}

.nav-flyout:hover > .nav-submenu,
.nav-flyout:focus-within > .nav-submenu,
.nav-flyout.is-open > .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: #eaf8fa;
  color: #06363c;
}

.nav-menu span {
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
}

.nav-menu small {
  color: #52686d;
  font-size: 11px;
  line-height: 1.35;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.site-search {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-search {
  width: clamp(150px, 14vw, 210px);
}

.nav-search,
.mobile-nav-search {
  font-size: 12.5px;
  line-height: 1;
}

.mobile-nav-search {
  display: none;
}

.site-search input {
  width: 100%;
  min-width: 0;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 11px;
  font: inherit;
  outline: none;
}

.site-search input::placeholder {
  color: rgba(219, 231, 232, 0.62);
}

.site-search input:focus {
  border-color: rgba(53, 215, 223, 0.78);
  box-shadow: 0 0 0 3px rgba(53, 215, 223, 0.14);
}

.site-search button {
  height: 38px;
  border: 0;
  border-radius: 6px;
  background: var(--cyan);
  color: #041316;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  word-break: keep-all;
  cursor: pointer;
}

.site-search button:hover,
.site-search button:focus-visible {
  background: #ffffff;
}

.language-switcher {
  position: relative;
  z-index: 80;
}

.mobile-language-switcher {
  display: none;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  white-space: nowrap;
}

.language-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.language-switcher.is-open .language-trigger,
.language-switcher:hover .language-trigger,
.language-trigger:focus-visible {
  color: var(--text);
  border-color: rgba(53, 215, 223, 0.42);
  background: rgba(53, 215, 223, 0.12);
}

.language-switcher.is-open .language-trigger::after,
.language-switcher:hover .language-trigger::after {
  transform: translateY(1px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 21, 24, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu,
.language-switcher.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--text);
  font-size: 13px;
}

.language-menu a:hover,
.language-menu a:focus-visible {
  background: rgba(53, 215, 223, 0.16);
}

.language-menu a[aria-current="true"] {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: transparent;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 720;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.button.primary {
  background: var(--cyan);
  color: #031014;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button.text {
  padding-inline: 0;
  color: var(--cyan-2);
}

.hero {
  min-height: calc(100svh - 112px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  padding: 18px 0 28px;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(40px, 4.75vw, 62px);
  line-height: 0.98;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 18px 0 0;
  max-width: 660px;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  max-width: 640px;
}

.proof-item {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.proof-item strong {
  display: block;
  font-size: 25px;
  color: var(--white);
}

.proof-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.well-visual {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 16%, rgba(53, 215, 223, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.well-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(53, 215, 223, 0.12) 34% 35%, transparent 35% 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.04) 42px 43px);
}

.well-diagram {
  position: absolute;
  inset: 34px;
}

.well-path {
  fill: none;
  stroke: rgba(233, 250, 250, 0.88);
  stroke-width: 18;
  stroke-linecap: round;
}

.well-core {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 12 14;
  animation: dash 16s linear infinite;
}

.ground-line {
  stroke: rgba(233, 250, 250, 0.7);
  stroke-width: 2;
  stroke-dasharray: 8 10;
}

.ground-label {
  fill: #9fb8bc;
}

.tool-node {
  fill: var(--ink-2);
  stroke: var(--cyan);
  stroke-width: 2;
}

.node-hot {
  stroke: var(--orange);
}

.node-safe {
  stroke: var(--green);
}

.node-completion {
  stroke: var(--orange);
}

.diagram-label {
  fill: var(--soft);
  font-size: 15px;
  font-weight: 760;
  paint-order: stroke;
  stroke: rgba(8, 17, 20, 0.86);
  stroke-width: 3px;
  stroke-linejoin: round;
}

.diagram-sub {
  fill: var(--muted);
  font-size: 11.8px;
  font-weight: 620;
  paint-order: stroke;
  stroke: rgba(8, 17, 20, 0.86);
  stroke-width: 2.5px;
  stroke-linejoin: round;
}

.signal {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.signal div {
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(8, 17, 20, 0.72);
  border-radius: 6px;
}

.signal strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.signal span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

@keyframes dash {
  to {
    stroke-dashoffset: -260;
  }
}

main {
  position: relative;
}

.section {
  padding: 82px 20px;
  scroll-margin-top: 86px;
}

.section.light {
  color: #132126;
  background: #f5f8f7;
}

.section.muted {
  background: #102126;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.55fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 760;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.light .section-head p,
.light .muted-copy {
  color: #52686d;
}

.solution-map {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
}

.problem-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.problem-tab {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(19, 33, 38, 0.14);
  background: #ffffff;
  color: #22343a;
  border-radius: 6px;
  padding: 16px;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.problem-tab strong {
  display: block;
  font-size: 15px;
}

.problem-tab span {
  display: block;
  margin-top: 6px;
  color: #65777d;
  font-size: 12px;
  line-height: 1.45;
}

.problem-tab[aria-selected="true"] {
  background: #0e2228;
  color: var(--white);
  border-color: #0e2228;
  transform: translateX(3px);
}

.problem-tab[aria-selected="true"] span {
  color: #a9c6ca;
}

.solution-stage {
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(19, 33, 38, 0.12);
  min-height: 490px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.stage-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(19, 33, 38, 0.1);
}

.stage-top div {
  padding: 18px;
  border-right: 1px solid rgba(19, 33, 38, 0.1);
}

.stage-top div:last-child {
  border-right: 0;
}

.stage-top span {
  color: #6b7f84;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 780;
}

.stage-top strong {
  display: block;
  margin-top: 8px;
  color: #132126;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.35;
}

.stage-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  padding: 24px;
}

.flow-rail {
  min-height: 300px;
  position: relative;
  border: 1px solid rgba(19, 33, 38, 0.1);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(53, 215, 223, 0.08), transparent 45%),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(19, 33, 38, 0.05) 34px 35px);
  overflow: hidden;
}

.flow-rail svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-label {
  position: absolute;
  left: 20px;
  top: 18px;
  max-width: 320px;
  color: #52686d;
  font-size: 13px;
  line-height: 1.5;
}

.stage-details {
  display: grid;
  gap: 12px;
}

.metric {
  padding: 16px;
  border-radius: 6px;
  background: #f4f8f8;
  border: 1px solid rgba(19, 33, 38, 0.08);
}

.metric strong {
  display: block;
  color: #132126;
  font-size: 22px;
}

.metric span {
  display: block;
  margin-top: 5px;
  color: #5e7378;
  font-size: 12px;
  line-height: 1.45;
}

.solution-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.solution-card {
  min-height: 470px;
  padding: 26px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #0b191d;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    linear-gradient(150deg, transparent 0 46%, rgba(53, 215, 223, 0.2) 46% 47%, transparent 47% 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.035) 42px 43px);
}

.solution-card.hot::before {
  background:
    linear-gradient(150deg, transparent 0 44%, rgba(255, 156, 71, 0.26) 44% 45%, transparent 45% 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.035) 42px 43px);
}

.solution-card.cleanout::before {
  background:
    linear-gradient(150deg, transparent 0 46%, rgba(87, 211, 130, 0.22) 46% 47%, transparent 47% 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.035) 42px 43px);
}

.solution-card.testing::before {
  background:
    linear-gradient(150deg, transparent 0 48%, rgba(126, 233, 238, 0.2) 48% 49%, transparent 49% 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.035) 42px 43px);
}

.solution-card.completion::before {
  background:
    linear-gradient(150deg, transparent 0 45%, rgba(87, 211, 130, 0.16) 45% 46%, rgba(255, 156, 71, 0.18) 46% 47%, transparent 47% 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.035) 42px 43px);
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-card span {
  display: block;
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  line-height: 1.35;
}

.cn .solution-card span {
  text-transform: none;
}

.solution-card h3 {
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
}

.solution-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.solution-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.solution-card li {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.45;
  padding-left: 16px;
  position: relative;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.solution-card.hot li::before {
  background: var(--orange);
}

.solution-card.cleanout li::before {
  background: var(--green);
}

.capability {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 38px;
  align-items: center;
}

.capability-image {
  min-height: 420px;
  border-radius: var(--radius);
  background-image:
    linear-gradient(90deg, rgba(8, 17, 20, 0.08), rgba(8, 17, 20, 0.78)),
    url("./images/real/asbr-workshop-overview.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.capability-list {
  display: grid;
  gap: 14px;
}

.cap-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cap-row svg {
  color: var(--cyan);
}

.cap-row h3 {
  margin: 0;
  font-size: 20px;
}

.cap-row p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
}

.case-grid-wide {
  grid-template-columns: 1.1fr repeat(4, minmax(0, 0.9fr));
}

.case-card {
  border-radius: var(--radius);
  border: 1px solid rgba(19, 33, 38, 0.12);
  background: #ffffff;
  padding: 24px;
  min-height: 260px;
  color: #132126;
  display: grid;
  align-content: space-between;
  gap: 18px;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.case-card.feature {
  background: #0e2228;
  color: var(--white);
}

.case-card:hover,
.case-card:focus-within {
  background: #0e2228;
  border-color: rgba(53, 215, 223, 0.38);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(4, 12, 15, 0.16);
}

.case-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.cn .case-card span {
  text-transform: none;
}

.case-card h3 {
  margin: 12px 0;
  font-size: 24px;
  line-height: 1.1;
}

.case-card p {
  color: #5c7176;
  line-height: 1.55;
}

.case-card:hover p,
.case-card:focus-within p,
.case-card.feature p {
  color: #b8cccf;
}

.seo-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.seo-col {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.seo-col h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.seo-col ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-band {
  padding: 76px 20px;
  scroll-margin-top: 86px;
  background:
    linear-gradient(120deg, rgba(53, 215, 223, 0.12), transparent 45%),
    #071013;
}

.contact-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.62fr);
  gap: 36px;
  align-items: start;
}

.contact-inner h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.contact-inner p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 660px;
}

.contact-copy {
  position: sticky;
  top: 96px;
}

.routing-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 680px;
}

.routing-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.routing-list span {
  grid-row: span 2;
  color: var(--cyan);
  font-weight: 820;
  font-size: 12px;
}

.routing-list strong {
  color: var(--white);
  font-size: 16px;
}

.routing-list p {
  margin: 0;
  font-size: 14px;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.form-grid {
  display: grid;
  gap: 12px;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 12px;
  font: inherit;
  font-size: 14px;
}

.contact-form select option {
  background: #ffffff;
  color: #132126;
}

.contact-form select option:hover,
.contact-form select option:focus {
  background: var(--cyan);
  color: #071013;
}

.contact-form select option:checked {
  background: #ffffff;
  color: #132126;
}

.contact-form textarea {
  min-height: 104px;
  resize: vertical;
}

.request-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
}

.request-options legend {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 2px;
}

.request-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.request-options input {
  width: auto;
  accent-color: var(--cyan);
}

.form-prefill {
  display: none;
  margin: 0 0 14px;
  padding: 11px 12px;
  border: 1px solid rgba(53, 215, 223, 0.32);
  border-radius: 6px;
  background: rgba(53, 215, 223, 0.08);
  color: #d8f6f7;
  font-size: 13px;
  line-height: 1.5;
}

.form-prefill.is-visible {
  display: block;
}

.form-status {
  min-height: 20px;
  color: var(--green);
  font-size: 13px;
}

.form-summary {
  display: none;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(87, 211, 130, 0.35);
  border-radius: 6px;
  background: rgba(87, 211, 130, 0.08);
  color: #cce7dc;
  font-size: 13px;
  line-height: 1.55;
}

.form-summary.is-visible {
  display: block;
}

.site-footer {
  padding: 42px 20px 30px;
  background: #071013;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: clamp(28px, 5vw, 72px);
  max-width: 720px;
}

.footer-links nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding-top: 26px;
  padding-right: 76px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.footer-summary {
  justify-self: center;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
  text-align: center;
}

.footer-bottom a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 820;
  white-space: nowrap;
}

.footer-bottom .icp-link {
  color: rgba(214, 226, 236, 0.74);
  font-weight: 760;
}

.footer-bottom .icp-link:hover {
  color: var(--cyan);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  background:
    radial-gradient(circle at 78% 18%, rgba(53, 215, 223, 0.18), transparent 30%),
    linear-gradient(180deg, #081114 0%, #0b191d 100%);
}

.not-found section {
  width: min(760px, 100%);
}

.not-found img {
  width: 158px;
  height: auto;
  margin-bottom: 34px;
}

.not-found h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
}

.not-found p {
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.62;
}

.page-hero {
  padding: 86px 20px 64px;
  background:
    radial-gradient(circle at 78% 14%, rgba(53, 215, 223, 0.16), transparent 28%),
    linear-gradient(180deg, #081114 0%, #0b191d 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.52fr);
  gap: 54px;
  align-items: end;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.5vw, 74px);
  line-height: 0.98;
  font-weight: 760;
}

.keep-together {
  display: inline-block;
}

.page-hero p {
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.62;
  max-width: 760px;
}

.page-actions {
  margin-top: 24px;
}

.page-rail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.rail-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.rail-row:last-child {
  border-bottom: 0;
}

.rail-row strong {
  color: var(--white);
}

.content-band {
  padding: 82px 20px;
  background: #f5f8f7;
  color: #132126;
}

.content-band.dark {
  background: #0e2228;
  color: var(--text);
}

.content-band.white {
  background: #ffffff;
  color: #132126;
}

.content-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.page-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.page-section-head.compact {
  margin-bottom: 22px;
}

.page-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  color: #132126;
}

.dark .page-section-head h2 {
  color: var(--white);
}

.page-section-head p {
  margin: 0;
  color: #52686d;
  font-size: 15px;
  line-height: 1.62;
}

.dark .page-section-head p {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.48fr);
  gap: 48px;
  align-items: start;
}

.copy-block h2,
.layout-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.06;
}

.copy-block p,
.layout-card p,
.content-lede {
  color: #52686d;
  font-size: 16px;
  line-height: 1.68;
}

.dark .copy-block p,
.dark .layout-card p,
.dark .content-lede {
  color: var(--muted);
}

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

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

.layout-grid.single {
  grid-template-columns: minmax(0, 760px);
}

.layout-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.layout-card {
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 24px;
  min-height: 250px;
  display: grid;
  align-content: space-between;
}

.layout-card.small {
  min-height: 190px;
}

.dark .layout-card {
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--line);
}

.layout-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.card-index {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 780;
  margin-bottom: 16px;
}

.layout-card p {
  margin: 12px 0 0;
}

.layout-card a {
  margin-top: 22px;
}

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

.case-topic-card {
  min-height: 320px;
  padding: 26px;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f6faf9 100%);
  color: #132126;
  text-decoration: none;
  display: grid;
  align-content: space-between;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.case-topic-card:hover,
.case-topic-card:focus-visible {
  border-color: rgba(53, 215, 223, 0.48);
  background: #0e2228;
  color: var(--white);
  transform: translateY(-2px);
}

.case-topic-card span {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 820;
  margin-bottom: 18px;
}

.case-topic-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
}

.case-topic-card p {
  margin: 16px 0 24px;
  color: #52686d;
  line-height: 1.62;
}

.case-topic-card:hover p,
.case-topic-card:focus-visible p {
  color: var(--muted);
}

.case-topic-card small {
  color: #0b6f77;
  font-weight: 780;
  line-height: 1.35;
}

.case-topic-card:hover small,
.case-topic-card:focus-visible small {
  color: var(--cyan);
}

.case-article {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.38fr);
  gap: 22px;
  align-items: start;
}

.hpht-case-article {
  grid-template-columns: 1fr;
}

.hpht-case-article .case-story,
.hpht-case-article .case-result-panel {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.hpht-case-article .case-story-head {
  max-width: 980px;
}

.case-story {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
}

.case-story-head {
  max-width: 850px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(19, 33, 38, 0.12);
}

.case-story-head span,
.case-result-panel > span {
  display: block;
  margin-bottom: 14px;
  color: #0b6f77;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
}

.case-story-head h2 {
  margin: 0;
  color: #132126;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
}

.case-story-head p {
  margin: 18px 0 0;
  color: #52686d;
  font-size: 17px;
  line-height: 1.72;
}

.case-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 8px;
  overflow: hidden;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: rgba(19, 33, 38, 0.12);
}

.case-meta-grid div {
  min-height: 96px;
  padding: 18px;
  background: #f6faf9;
  color: #132126;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.55;
}

.case-story-body {
  display: grid;
  gap: 24px;
  padding-top: 28px;
}

.case-story-body section {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(19, 33, 38, 0.1);
}

.case-story-body section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.case-story-body h3 {
  margin: 0;
  color: #132126;
  font-size: 22px;
  line-height: 1.2;
}

.case-story-body p {
  margin: 0;
  color: #52686d;
  font-size: 16px;
  line-height: 1.76;
}

.case-story-body .case-wide-section {
  grid-template-columns: 1fr;
  gap: 16px;
}

.case-story-body .case-wide-section h3,
.case-story-body .case-wide-section p {
  max-width: 980px;
}

.case-gallery-panel {
  grid-column: 1 / -1;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
}

.case-gallery-panel h2 {
  margin: 0;
  color: #132126;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.case-gallery-panel > p {
  max-width: 860px;
  margin: 12px 0 24px;
  color: #52686d;
  font-size: 16px;
  line-height: 1.72;
}

.case-gallery-panel .case-photo-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 860px;
  margin: 0;
}

.case-gallery-panel .case-media-frame img {
  height: auto;
  max-height: 760px;
}

.case-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
}

.case-table-wrap .spec-table {
  min-width: min(960px, 100%);
  table-layout: fixed;
  border: 0;
  border-radius: 0;
}

.case-performance-table th,
.case-performance-table td {
  text-align: center;
  white-space: nowrap;
}

.case-performance-table th:nth-child(1),
.case-performance-table td:nth-child(1) {
  width: 12%;
}

.case-performance-table th:nth-child(2),
.case-performance-table td:nth-child(2) {
  width: 12%;
}

.case-performance-table th:nth-child(3),
.case-performance-table td:nth-child(3) {
  width: 30%;
}

.case-performance-table th:nth-child(4),
.case-performance-table td:nth-child(4) {
  width: 31%;
}

.case-performance-table th:nth-child(5),
.case-performance-table td:nth-child(5) {
  width: 15%;
}

.case-performance-table th {
  width: auto;
  background: #edf6f7;
  color: #132126;
  font-size: 13px;
  font-weight: 820;
}

.case-performance-table td:first-child {
  color: #0b6f77;
  font-weight: 820;
}

.case-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-media-frame {
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: #0e2228;
}

.case-media-frame img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.case-photo-grid .case-media-frame {
  margin-top: 0;
}

.case-photo-grid .case-media-frame img {
  height: clamp(520px, 54vw, 820px);
  max-height: none;
  object-fit: contain;
  background: #0e2228;
}

.case-media-frame figcaption {
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.case-video-placeholder {
  display: grid;
  gap: 16px;
  min-height: 280px;
  padding: clamp(28px, 5vw, 52px);
  align-content: center;
  background:
    linear-gradient(135deg, rgba(31, 201, 225, 0.16), rgba(21, 38, 44, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 44px);
}

.case-video-placeholder span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.case-video-placeholder h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.06;
}

.case-video-placeholder p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.case-video-player {
  position: relative;
  display: grid;
  min-height: clamp(320px, 48vw, 620px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 201, 225, 0.14), rgba(7, 20, 24, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 44px);
}

.case-video-player video {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 48vw, 620px);
  object-fit: contain;
  background: #061215;
}

.case-video-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  display: grid;
  gap: 10px;
  max-width: 620px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 17, 20, 0.78);
  backdrop-filter: blur(12px);
}

.case-video-overlay span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.case-video-overlay h3,
.case-video-overlay p {
  margin: 0;
}

.case-video-overlay h3 {
  color: var(--white);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
}

.case-video-overlay p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.case-metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 4px;
  overflow: hidden;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: rgba(19, 33, 38, 0.12);
}

.case-metric {
  min-height: 112px;
  padding: 18px;
  background: linear-gradient(180deg, #f7fbfb 0%, #ffffff 100%);
}

.case-metric span {
  display: block;
  margin-bottom: 12px;
  color: #60777d;
  font-size: 12px;
  font-weight: 780;
}

.case-metric strong {
  display: block;
  color: #132126;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.case-result-panel {
  position: sticky;
  top: 94px;
  padding: 26px;
  border-radius: var(--radius);
  background: #0e2228;
  color: var(--text);
}

.case-result-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: 28px;
  line-height: 1.1;
}

.case-result-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.case-result-panel li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
}

.case-result-panel li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--cyan);
  vertical-align: 1px;
}

.material-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.material-stat {
  min-height: 112px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(19, 33, 38, 0.12);
  background: #ffffff;
}

.material-stat strong {
  display: block;
  color: #0e2228;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
}

.material-stat span {
  display: block;
  margin-top: 10px;
  color: #52686d;
  font-size: 13px;
  line-height: 1.45;
}

.page-photo {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(19, 33, 38, 0.12);
  background: #0e2228;
  box-shadow: 0 24px 70px rgba(8, 17, 20, 0.18);
}

.page-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.page-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 17, 20, 0.78);
  color: var(--soft);
  backdrop-filter: blur(16px);
  font-size: 13px;
  line-height: 1.45;
}

.photo-evidence-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
  margin-top: 28px;
}

.photo-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(19, 33, 38, 0.12);
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card div {
  padding: 18px;
}

.photo-card h3 {
  margin: 0;
  color: #132126;
  font-size: 20px;
}

.photo-card p {
  margin: 9px 0 0;
  color: #52686d;
  line-height: 1.55;
}

.photo-evidence-grid + .layout-grid {
  margin-top: 18px;
}

.html-sitemap {
  display: grid;
  gap: 18px;
}

.search-hero .page-hero-inner {
  align-items: end;
}

.search-page-form {
  max-width: 720px;
  margin-top: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.search-page-form input {
  height: 48px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.96);
  color: #132126;
}

.search-page-form input::placeholder {
  color: #66767a;
}

.search-page-form button {
  height: 48px;
  padding: 0 20px;
}

.search-results-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.search-results-head h2 {
  margin: 0 0 8px;
  color: #132126;
  font-size: clamp(24px, 3vw, 38px);
}

.search-results-head p {
  margin: 0;
  max-width: 760px;
  color: #52686d;
}

.search-results {
  display: grid;
  gap: 12px;
}

.search-result-card {
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: #132126;
  box-shadow: 0 14px 36px rgba(8, 17, 20, 0.08);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.search-result-card:hover,
.search-result-card:focus-visible {
  border-color: rgba(0, 143, 155, 0.42);
  box-shadow: 0 18px 44px rgba(0, 143, 155, 0.14);
  transform: translateY(-1px);
}

.search-result-card span {
  color: #007d89;
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.search-result-card h3 {
  margin: 0;
  color: #132126;
  font-size: 20px;
}

.search-result-card p {
  margin: 0;
  color: #4f6267;
  line-height: 1.7;
}

.search-result-card small {
  color: #718287;
}

.search-empty {
  padding: 28px;
  border: 1px dashed rgba(19, 33, 38, 0.22);
  border-radius: 8px;
  color: #4f6267;
  background: #f7fbfb;
}

.sitemap-group {
  display: grid;
  grid-template-columns: minmax(180px, 0.26fr) minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid rgba(19, 33, 38, 0.1);
}

.sitemap-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.sitemap-group h2 {
  margin: 0;
  color: #132126;
  font-size: 22px;
  line-height: 1.12;
}

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sitemap-links a {
  display: grid;
  gap: 6px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(19, 33, 38, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  color: #132126;
}

.sitemap-links a:hover,
.sitemap-links a:focus-visible {
  border-color: rgba(53, 215, 223, 0.55);
}

.sitemap-links span {
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}

.sitemap-links small {
  color: #6a7f84;
  font-size: 11px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(19, 33, 38, 0.12);
}

.evidence-grid article {
  min-height: 190px;
  padding: 24px;
  background: #ffffff;
}

.evidence-grid h3 {
  margin: 0;
  color: #132126;
  font-size: 20px;
}

.evidence-grid p {
  margin: 12px 0 0;
  color: #52686d;
  line-height: 1.58;
}

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

.solution-problem-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
}

.solution-problem-grid h3 {
  margin: 0;
  color: #132126;
  font-size: 20px;
}

.solution-problem-grid p {
  margin: 12px 0 0;
  color: #52686d;
  line-height: 1.58;
}

.compliance-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(19, 33, 38, 0.12);
}

.compliance-card {
  min-height: 270px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faf9 100%);
}

.compliance-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border: 1px solid rgba(53, 215, 223, 0.42);
  border-radius: 50%;
  color: #0b6f77;
  font-size: 12px;
  font-weight: 820;
}

.compliance-card h3 {
  margin: 0 0 16px;
  color: #132126;
  font-size: 20px;
  line-height: 1.2;
}

.compliance-card p {
  margin: 14px 0 0;
  color: #52686d;
  font-size: 14px;
  line-height: 1.58;
}

.compliance-card strong {
  display: block;
  margin-bottom: 5px;
  color: #132126;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-panel h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.cta-panel p {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.62;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(19, 33, 38, 0.12);
}

.process-step {
  background: #ffffff;
  padding: 24px;
  min-height: 180px;
}

.process-step span {
  display: block;
  color: var(--cyan);
  font-weight: 780;
  font-size: 12px;
  margin-bottom: 18px;
}

.process-step h3 {
  margin: 0;
  color: #132126;
  font-size: 20px;
}

.process-step p {
  margin: 10px 0 0;
  color: #52686d;
  line-height: 1.55;
}

.solution-detail-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(19, 33, 38, 0.12);
}

.solution-detail-flow article {
  min-height: 260px;
  padding: 24px;
  background: #ffffff;
}

.solution-detail-flow span {
  display: block;
  color: var(--cyan);
  font-weight: 780;
  font-size: 12px;
  margin-bottom: 18px;
}

.solution-detail-flow h2 {
  margin: 0;
  color: #132126;
  font-size: 24px;
  line-height: 1.12;
}

.solution-detail-flow p {
  margin: 14px 0 0;
  color: #52686d;
  line-height: 1.62;
}

.page-section-head.stacked {
  display: block;
}

.page-section-head.stacked p {
  max-width: 660px;
  margin-top: 12px;
}

.solution-detail-layout {
  align-items: stretch;
}

.toolchain-list {
  display: grid;
  gap: 12px;
}

.toolchain-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(19, 33, 38, 0.12);
}

.toolchain-list article:last-child {
  border-bottom: 1px solid rgba(19, 33, 38, 0.12);
}

.toolchain-list h3 {
  margin: 0;
  color: #132126;
  font-size: 19px;
  line-height: 1.18;
}

.toolchain-list p {
  margin: 0;
  color: #52686d;
  line-height: 1.58;
}

.toolchain-list a {
  grid-column: 2;
  justify-self: start;
  margin-top: 4px;
}

.application-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(53, 215, 223, 0.12), transparent 44%),
    #0b191d;
  color: var(--text);
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 22px;
}

.application-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: 26px;
  line-height: 1.08;
}

.application-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.application-panel li {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.42;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.application-panel li:last-child {
  border-bottom: 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(19, 33, 38, 0.12);
  background: #ffffff;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(19, 33, 38, 0.1);
  vertical-align: top;
}

.spec-table th {
  width: 32%;
  color: #132126;
  font-size: 13px;
}

.spec-table td {
  color: #52686d;
  line-height: 1.55;
}

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

.parameter-table {
  table-layout: fixed;
}

.parameter-table thead th {
  color: #132126;
  background: #eef5f4;
  font-size: 12px;
}

.parameter-table tbody th {
  width: 24%;
}

.parameter-table th,
.parameter-table td {
  overflow-wrap: anywhere;
}

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

.conversion-card {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
}

.conversion-card > span {
  color: #35aeb6;
  font-size: 12px;
  font-weight: 820;
}

.conversion-card h3 {
  margin: 18px 0 14px;
  color: #132126;
  font-size: 21px;
  line-height: 1.18;
}

.conversion-card p {
  margin: 12px 0 0;
  color: #52686d;
  font-size: 14px;
  line-height: 1.55;
}

.conversion-card strong {
  display: block;
  margin-bottom: 4px;
  color: #132126;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.conversion-card a {
  margin-top: 22px;
}

.diagram-panel {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(53, 215, 223, 0.12), transparent 50%),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, 0.04) 54px 55px),
    #0b191d;
  position: relative;
  overflow: hidden;
}

.diagram-panel svg {
  position: absolute;
  inset: 22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
}

.download-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(19, 33, 38, 0.12);
}

.download-row:last-child {
  border-bottom: 0;
}

.download-row h3 {
  margin: 0;
  font-size: 19px;
}

.download-row p {
  margin: 6px 0 0;
  color: #52686d;
}

.resource-hero .page-rail strong {
  line-height: 1.35;
}

.resource-card-grid,
.download-card-grid,
.certificate-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.download-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

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

.resource-feature-card,
.download-card,
.certificate-card,
.timeline-item {
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
}

.resource-feature-card,
.download-card {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 24px;
}

.resource-feature-card span {
  width: fit-content;
  color: #35aeb6;
  font-size: 12px;
  font-weight: 850;
}

.resource-feature-card h3,
.download-card h3,
.certificate-card h3,
.timeline-item h3,
.market-node h3 {
  margin: 14px 0 10px;
  color: #132126;
  font-size: 21px;
  line-height: 1.22;
}

.resource-feature-card p,
.download-card p,
.certificate-card p,
.timeline-item p,
.market-node p {
  margin: 0;
  color: #52686d;
  font-size: 14px;
  line-height: 1.6;
}

.resource-feature-card a,
.download-card a {
  align-self: end;
  margin-top: 22px;
}

.catalog-pdf-card .button {
  align-self: end;
  justify-self: start;
  margin-top: 22px;
}

.button.disabled,
.button[aria-disabled="true"] {
  cursor: default;
  opacity: 0.72;
  pointer-events: none;
}

.download-card-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: #52686d;
  font-size: 12px;
  font-weight: 800;
}

.download-card-head span {
  border: 1px solid rgba(53, 215, 223, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  color: #16747b;
  background: rgba(53, 215, 223, 0.1);
}

.certificate-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  min-height: 210px;
}

.certificate-thumb {
  display: grid;
  place-items: center;
  min-height: 116px;
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(135deg, rgba(53, 215, 223, 0.18), rgba(87, 211, 130, 0.14)),
    #eef5f4;
  color: #132126;
}

.certificate-thumb span {
  font-size: 24px;
  font-weight: 880;
}

.certificate-card strong {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #16747b;
  background: rgba(53, 215, 223, 0.1);
  font-size: 12px;
  font-weight: 820;
}

.timeline-item {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #35d7df, #57d382);
}

.timeline-item > span {
  display: block;
  color: #16747b;
  font-size: 13px;
  font-weight: 850;
}

.market-map {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 26% 42%, rgba(53, 215, 223, 0.22), transparent 22%),
    radial-gradient(circle at 72% 28%, rgba(87, 211, 130, 0.16), transparent 20%),
    linear-gradient(135deg, #f7fbfb, #eef5f4);
}

.map-line {
  position: absolute;
  inset: 54px 80px;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.market-node {
  position: absolute;
  width: min(260px, 36%);
  padding: 18px;
  border: 1px solid rgba(19, 33, 38, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(19, 33, 38, 0.08);
}

.market-node span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #35d7df;
  box-shadow: 0 0 0 8px rgba(53, 215, 223, 0.16);
}

.market-node.china {
  left: 42%;
  top: 38%;
}

.market-node.domestic {
  left: 12%;
  top: 14%;
}

.market-node.west {
  right: 10%;
  top: 10%;
}

.market-node.south {
  right: 14%;
  bottom: 12%;
}

.market-node.africa {
  left: 10%;
  bottom: 12%;
}

.product-detail-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 64px;
  background:
    linear-gradient(115deg, rgba(8, 17, 20, 0.92) 0%, rgba(8, 17, 20, 0.78) 48%, rgba(9, 41, 48, 0.92) 100%),
    radial-gradient(circle at 78% 18%, rgba(53, 215, 223, 0.22), transparent 34%),
    linear-gradient(180deg, #081114 0%, #0b191d 100%);
}

.product-detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 215, 223, 0.42), transparent);
}

.product-detail-hero-inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.74fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.product-hero-copy h1 {
  max-width: 900px;
}

.product-hero-copy p {
  max-width: 760px;
}

.product-hero-card {
  position: relative;
  border: 1px solid rgba(203, 231, 236, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(12, 29, 34, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.product-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 48px 48px;
  opacity: 0.58;
}

.product-hero-render {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: clamp(270px, 25vw, 330px) auto;
  margin: 0;
  background:
    radial-gradient(circle at 45% 40%, rgba(53, 215, 223, 0.12), transparent 42%),
    #f7fbfb;
}

.product-hero-render img {
  align-self: center;
  justify-self: center;
  width: 100%;
  height: 100%;
  padding: clamp(12px, 3vw, 28px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 28px rgba(5, 36, 46, 0.18));
}

.product-hero-render figcaption {
  padding: 12px 18px 14px;
  border-top: 1px solid rgba(19, 33, 38, 0.1);
  color: #52686d;
  font-size: 12px;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.86);
}

.product-hero-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  padding: 10px 18px 12px;
}

.product-hero-facts .rail-row {
  display: block;
  padding: 14px 0;
}

.product-hero-facts .rail-row:last-child {
  border-bottom: 1px solid var(--line);
}

.product-hero-facts .rail-row strong {
  display: block;
  margin-top: 6px;
  text-align: left;
  line-height: 1.35;
}

.product-showcase-section {
  background:
    linear-gradient(180deg, #eef5f4 0%, #f7faf9 100%);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.product-intro-panel,
.product-capability-panel {
  border: 1px solid rgba(19, 33, 38, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(7, 24, 29, 0.06);
}

.product-intro-panel {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 56px);
}

.product-intro-panel h2,
.product-capability-panel h2 {
  margin: 0 0 16px;
  color: #132126;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
}

.product-intro-panel p,
.product-capability-panel p {
  margin: 0 0 16px;
  color: #52686d;
  font-size: 16px;
  line-height: 1.72;
}

.product-intro-panel .button {
  justify-self: start;
  margin-top: 10px;
}

.product-capability-panel {
  padding: clamp(24px, 3.8vw, 38px);
  background:
    linear-gradient(180deg, rgba(13, 33, 38, 0.98), rgba(10, 24, 29, 0.98));
}

.product-capability-panel h2 {
  color: #ffffff;
}

.product-capability-panel > p {
  color: #c6d8dc;
}

.product-focus-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-focus-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px 16px;
  padding: 16px;
  border: 1px solid rgba(203, 231, 236, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.product-focus-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(53, 215, 223, 0.13);
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 760;
}

.product-focus-list strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.25;
}

.product-focus-list p {
  margin: 0;
  color: #bfd2d6;
  font-size: 14px;
  line-height: 1.55;
}

.product-feature-layout {
  display: block;
}

.product-feature-layout .page-section-head {
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.55fr);
  margin-bottom: 32px;
}

.product-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: product-feature;
}

.product-feature-list li {
  position: relative;
  min-height: 164px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(19, 33, 38, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  box-shadow: 0 14px 36px rgba(7, 24, 29, 0.055);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-feature-list li::before {
  counter-increment: product-feature;
  content: counter(product-feature, decimal-leading-zero);
  display: block;
  margin-bottom: 26px;
  color: #35aeb8;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.product-feature-list li::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 22px;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, rgba(53, 215, 223, 0), rgba(53, 215, 223, 0.78));
}

.product-feature-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 215, 223, 0.32);
  box-shadow: 0 22px 54px rgba(7, 24, 29, 0.09);
}

.product-feature-list strong {
  display: block;
  margin-bottom: 9px;
  color: #132126;
  font-size: 20px;
  line-height: 1.22;
}

.product-feature-list span {
  display: block;
  color: #52686d;
  font-size: 15px;
  line-height: 1.62;
}

.product-simple-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 24px;
  align-items: start;
}

.product-simple-copy,
.product-simple-features {
  border: 1px solid rgba(19, 33, 38, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(7, 24, 29, 0.055);
}

.product-simple-copy {
  padding: clamp(28px, 4.6vw, 54px);
}

.product-simple-features {
  padding: clamp(24px, 3.8vw, 42px);
}

.product-simple-features h2 {
  margin: 0 0 16px;
  color: #132126;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.product-simple-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.product-related-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(19, 33, 38, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(7, 24, 29, 0.045);
}

.product-related-strip h2 {
  margin: 0;
  color: #132126;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.1;
}

.product-related-strip p {
  margin: 10px 0 0;
  color: #52686d;
  font-size: 14px;
  line-height: 1.55;
}

.product-related-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.product-related-links a {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 13px 14px;
  border: 1px solid rgba(19, 33, 38, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbfb 0%, #ffffff 100%);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.product-related-links a:hover,
.product-related-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(53, 215, 223, 0.36);
  background: #f2fbfb;
}

.product-related-links a.is-current {
  border-color: rgba(53, 215, 223, 0.44);
  background: #effbfc;
  box-shadow: inset 3px 0 0 #35d7df;
}

.product-related-links span {
  color: #132126;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.28;
}

.product-related-links small {
  align-self: end;
  color: #178d97;
  font-size: 12px;
  font-weight: 720;
}

.product-feature-list-simple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: none;
  border-top: 1px solid rgba(19, 33, 38, 0.1);
}

.product-feature-list-simple li {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  min-height: 0;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(19, 33, 38, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.product-feature-list-simple li:hover {
  transform: none;
  border-color: rgba(19, 33, 38, 0.1);
  box-shadow: none;
}

.product-feature-list-simple li::before,
.product-feature-list-simple li::after {
  display: none;
}

.product-feature-list-simple strong {
  position: relative;
  display: block;
  margin: 0;
  padding-left: 16px;
  color: #132126;
  font-size: 17px;
  line-height: 1.35;
}

.product-feature-list-simple strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
}

.product-feature-list-simple span {
  color: #52686d;
  font-size: 15px;
  line-height: 1.62;
}

.product-simple-cta {
  padding-top: 66px;
  padding-bottom: 66px;
}

.quote-panel {
  border-left: 3px solid var(--cyan);
  padding-left: 22px;
  color: #52686d;
  line-height: 1.75;
  font-size: 17px;
}

.page-nav-note {
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

.floating-cta {
  position: fixed;
  right: 86px;
  bottom: 18px;
  z-index: 19;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}

.floating-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-linkedin {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 21;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: #fff;
  background: #0a66c2;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-linkedin svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.floating-linkedin:hover,
.floating-linkedin:focus-visible {
  background: #084f96;
  box-shadow: 0 22px 58px rgba(10, 102, 194, 0.34);
  transform: translateY(-2px);
}

@media (max-width: 1599px) {
  .floating-cta.is-visible {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.cn body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

@media (max-width: 980px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    display: none;
    padding: 16px 20px 22px;
    background: rgba(8, 17, 20, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    max-height: calc(100svh - 70px);
    overflow-y: auto;
  }

  .nav.open .nav-links {
    display: flex;
  }

  .nav-search {
    display: none;
  }

  .mobile-nav-search {
    display: flex;
    width: 100%;
    padding: 4px 0 10px;
  }

  .mobile-language-switcher {
    display: block;
    width: 100%;
    padding-bottom: 8px;
  }

  .mobile-language-switcher .language-trigger {
    width: 100%;
    justify-content: space-between;
    border-radius: 6px;
    padding: 12px 13px;
  }

  .mobile-language-switcher .language-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
  }

  .mobile-language-switcher.is-open .language-menu,
  .mobile-language-switcher:focus-within .language-menu {
    display: block;
  }

  .mobile-nav-search input {
    height: 42px;
  }

  .mobile-nav-search button {
    height: 42px;
    padding: 0 14px;
  }

  .nav-item,
  .nav-link {
    width: 100%;
  }

  .nav-link {
    justify-content: space-between;
    padding: 8px 0;
  }

  .nav-menu {
    position: static;
    width: 100%;
    margin: 0 0 8px;
    padding: 6px;
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu-products {
    width: 100%;
  }

  .nav-menu::before {
    display: none;
  }

  .nav-menu a {
    padding: 9px 10px;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: rgba(53, 215, 223, 0.16);
    color: var(--white);
  }

  .nav-menu span {
    color: var(--white);
  }

  .nav-menu small {
    color: var(--muted);
  }

  .nav-flyout {
    width: 100%;
  }

  .nav-flyout-main {
    padding-right: 10px !important;
  }

  .nav-flyout-main::after {
    display: none;
  }

  .nav-submenu {
    position: static;
    width: 100%;
    max-height: none;
    margin: 4px 0 10px;
    padding: 6px 6px 6px 14px;
    border: 0;
    border-left: 1px solid rgba(53, 215, 223, 0.28);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu::before {
    display: none;
  }

  .nav-flyout:hover > .nav-flyout-main,
  .nav-flyout:focus-within > .nav-flyout-main,
  .nav-flyout.is-open > .nav-flyout-main {
    background: rgba(53, 215, 223, 0.16);
  }

  .nav-actions {
    display: none;
  }

  .search-results-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .search-page-form {
    grid-template-columns: 1fr auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 42px;
    gap: 26px;
  }

  .well-visual {
    min-height: 380px;
  }

  .section-head,
  .page-section-head,
  .solution-map,
  .stage-body,
  .capability,
	  .contact-inner,
	  .page-hero-inner,
	  .two-col {
	    grid-template-columns: 1fr;
	  }

	  .contact-copy {
	    position: static;
	  }

  .stage-top,
  .seo-panel,
  .case-grid,
  .layout-grid,
  .layout-grid.two,
  .layout-grid.four,
  .sitemap-group,
  .process,
  .solution-detail-flow,
	  .evidence-grid,
	  .solution-problem-grid,
	  .compliance-matrix,
	  .conversion-grid,
	  .solution-showcase,
	  .material-stats,
	  .photo-evidence-grid,
	  .resource-card-grid,
	  .download-card-grid,
	  .certificate-grid,
	  .timeline-grid {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

  .product-showcase,
  .product-simple-detail,
  .product-feature-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-hero {
    padding-bottom: 54px;
  }

  .product-hero-render {
    grid-template-rows: minmax(220px, 42vw) auto;
  }

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

  .product-feature-list-simple {
    grid-template-columns: 1fr;
  }

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

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

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

	  .footer-brand {
	    grid-template-columns: 1fr;
	    gap: 14px;
	  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-right: 0;
  }

  .footer-summary {
    justify-self: start;
    text-align: left;
  }

  .solution-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .nav {
    padding-inline: 14px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand span,
  .brand strong {
    display: none;
  }

  .brand img {
    width: 98px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    padding-top: 24px;
    padding-bottom: 0;
    gap: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(31px, 8.8vw, 36px);
    line-height: 1;
  }

  .hero-copy p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.46;
  }

  .hero-actions {
    margin-top: 18px;
    gap: 8px;
  }

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

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

  .proof-strip {
    display: none;
  }

  .well-visual {
    min-height: 330px;
  }

  .button {
    min-height: 38px;
  }

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

  .signal div {
    padding: 9px 8px;
  }

  .well-diagram {
    inset: 10px 10px 92px;
  }

  .signal {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .signal strong {
    font-size: 13px;
  }

  .signal span {
    font-size: 10px;
  }

  .section {
    padding: 68px 14px;
  }

  .page-hero,
  .content-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .page-hero {
    padding-top: 54px;
    padding-bottom: 42px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

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

  .spec-table tr {
    border-bottom: 1px solid rgba(19, 33, 38, 0.1);
  }

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

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

  .spec-table th {
    padding: 14px 14px 5px;
    font-size: 12px;
  }

  .spec-table td {
    padding: 0 14px 14px;
    line-height: 1.55;
  }

  .case-story-body .case-table-wrap .case-performance-table {
    display: table;
    min-width: 760px;
    width: 760px;
  }

  .case-story-body .case-table-wrap .case-performance-table tbody {
    display: table-row-group;
  }

  .case-story-body .case-table-wrap .case-performance-table tr {
    display: table-row;
  }

  .case-story-body .case-table-wrap .case-performance-table th,
  .case-story-body .case-table-wrap .case-performance-table td {
    display: table-cell;
    width: auto;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(19, 33, 38, 0.1);
    white-space: nowrap;
  }

  .case-story-body .case-table-wrap .case-performance-table td:nth-child(3),
  .case-story-body .case-table-wrap .case-performance-table td:nth-child(4) {
    white-space: normal;
    min-width: 190px;
  }

		  .download-row {
		    grid-template-columns: 1fr;
		  }

	  .contact-band {
	    padding-left: 14px;
	    padding-right: 14px;
	  }

	  .form-grid.two,
	  .request-options {
	    grid-template-columns: 1fr;
	  }

	  .contact-form {
	    padding: 16px;
	  }

  .layout-grid,
  .layout-grid.two,
  .layout-grid.four,
  .case-grid,
  .process,
	  .solution-detail-flow,
	  .evidence-grid,
	  .solution-problem-grid,
	  .compliance-matrix,
	  .conversion-grid,
	  .stage-top,
	  .solution-showcase,
	  .material-stats,
	  .case-topic-grid,
	  .case-article,
	  .case-meta-grid,
	  .photo-evidence-grid,
	  .resource-card-grid,
	  .download-card-grid,
	  .certificate-grid,
	  .timeline-grid {
	    grid-template-columns: 1fr;
	  }

  .resource-feature-card,
  .download-card {
    min-height: 0;
  }

  .certificate-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .certificate-thumb {
    min-height: 82px;
  }

  .market-map {
    min-height: 0;
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .map-line {
    display: none;
  }

  .market-node {
    position: static;
    width: 100%;
  }

  .product-detail-hero {
    padding: 56px 14px 42px;
  }

  .product-hero-render {
    grid-template-rows: minmax(180px, 56vw) auto;
  }

  .product-hero-render img {
    padding: 16px;
  }

  .product-hero-facts {
    grid-template-columns: 1fr;
    padding: 8px 14px 10px;
  }

  .product-hero-facts .rail-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .product-hero-facts .rail-row strong {
    text-align: left;
  }

  .product-focus-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 14px;
  }

  .product-focus-list span {
    width: 36px;
    height: 36px;
  }

  .product-feature-list li {
    min-height: 0;
    padding: 20px 18px;
  }

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

  .product-feature-list-simple li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .product-related-strip {
    padding: 18px;
  }

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

  .case-topic-card {
    min-height: 0;
    padding: 22px;
  }

  .case-story {
    padding: 22px;
  }

  .case-media-frame img {
    max-height: 560px;
  }

  .case-photo-grid {
    grid-template-columns: 1fr;
  }

  .case-photo-grid .case-media-frame img {
    height: min(78vh, 680px);
  }

  .case-gallery-panel {
    padding: 22px;
  }

  .case-gallery-panel .case-media-frame img {
    height: min(72vh, 640px);
  }

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

  .case-story-body section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-result-panel {
    position: static;
  }

  .sitemap-group {
    gap: 12px;
    padding: 20px 0;
  }

  .sitemap-links {
    grid-template-columns: 1fr;
  }

  .sitemap-links a {
    min-height: 0;
  }

  .toolchain-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

	  .toolchain-list a {
	    grid-column: auto;
	  }

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

	  .footer-bottom {
	    grid-template-columns: 1fr;
	    justify-items: start;
	    padding-right: 0;
	  }

  .footer-summary {
    justify-self: start;
    text-align: left;
  }

  .page-section-head {
    gap: 14px;
    margin-bottom: 22px;
  }

  .layout-card,
  .layout-card.small,
  .process-step,
  .solution-detail-flow article,
  .compliance-card,
  .conversion-card,
  .evidence-grid article {
    min-height: 0;
  }

  .solution-stage {
    min-height: 0;
  }

  .flow-rail {
    min-height: 260px;
  }

  .capability-image {
    min-height: 300px;
  }

  .case-video-overlay {
    position: static;
    border-width: 1px 0 0;
    background: rgba(5, 17, 20, 0.94);
    backdrop-filter: none;
  }

  .floating-cta {
    display: none;
  }

  .floating-linkedin {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }

  .floating-linkedin svg {
    width: 25px;
    height: 25px;
  }
}
