:root {
  --ink: #07110f;
  --panel: #101c19;
  --panel2: #162521;
  --paper: #eef4f1;
  --muted: #98aaa4;
  --teal: #4ab7ae;
  --teal2: #087e78;
  --copper: #d97832;
  --line: rgba(231, 245, 239, 0.12);
  --r: 18px;
  --max: 1240px;
}

.brand-scope { padding-bottom: 0; }
.scope-tags { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.scope-tags span { border: 1px solid var(--line); border-radius: 999px; background: var(--panel); color: var(--muted); padding: .65rem .9rem; font-size: .9rem; }
.directory-count { color: var(--muted); margin: 1rem 0 1.5rem; }
.directory-count strong { color: var(--text); }
.trademark-notice { margin-top: 2rem; }
.brand-logo [hidden] { display: none !important; }
.brand-directory { display: block; }
.brand-alpha { position: sticky; top: 72px; z-index: 20; display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 30px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(9, 23, 40, .96); backdrop-filter: blur(12px); }
.brand-alpha:empty { display: none; }
.brand-alpha a { display: grid; place-items: center; min-width: 38px; min-height: 38px; border-radius: 9px; color: var(--muted); font-weight: 700; }
.brand-alpha a:hover, .brand-alpha a:focus-visible { background: var(--teal); color: #06111f; }
.brand-letter-group { scroll-margin-top: 150px; margin-top: 34px; }
.brand-letter-group > h2 { margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); color: var(--teal); font-size: 24px; }
.brand-letter-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.solution-directory { display: block; }
.solution-category-group { scroll-margin-top: 120px; margin-top: 36px; }
.solution-category-group > header { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.solution-category-group > header h3 { margin: 4px 0 0; font-size: 30px; }
.solution-category-group > header strong { color: var(--muted); font-size: 14px; }
.solution-category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 900px) { .brand-letter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .brand-alpha { top: 66px; flex-wrap: nowrap; overflow-x: auto; } .brand-letter-grid, .solution-category-grid { grid-template-columns: 1fr; } .solution-category-group > header h3 { font-size: 25px; } }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-bottom: 32px;
}
.solution-controls {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.solution-controls label {
  color: var(--muted);
}
.solution-controls input,
.solution-controls select {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  padding: 12px 14px;
  color: var(--paper);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}
.solution-directory {
  display: block;
}
.solution-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 260px;
  overflow: hidden;
  color: inherit;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.solution-item:hover,
.solution-item:focus-visible {
  transform: translateY(-2px);
  border-color: #55a4ff;
  outline: none;
}
.solution-item > img,
.solution-source-preview {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #071524;
  border-right: 1px solid var(--line);
}
.solution-source-preview > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.solution-item:hover .solution-source-preview > img {
  transform: scale(1.025);
}
.solution-source-preview figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  color: #c7d8ec;
  background: rgba(3, 10, 18, 0.82);
  border-radius: 7px;
  font-size: 10px;
  line-height: 1.35;
}
.solution-item-copy {
  padding: 24px;
}
.solution-item-copy h3 {
  margin: 16px 0 10px;
  font-size: 23px;
  line-height: 1.15;
}
.solution-item-copy p {
  color: var(--muted);
  font-size: 14px;
}
.solution-code {
  margin-left: 10px;
  color: #55a4ff;
  font: 700 12px monospace;
}
.solution-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: start;
}
.solution-detail-layout figure {
  margin: 0;
}
.solution-detail-layout figure img {
  width: 100%;
  background: #071524;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.solution-detail-layout figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}
.solution-detail-layout li {
  margin: 10px 0;
  color: var(--muted);
}
.solution-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.solution-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.solution-table th,
.solution-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.solution-table th {
  color: var(--teal);
  background: var(--panel);
  font-size: 12px;
}
.solution-table td {
  color: var(--muted);
}
.solution-table a {
  color: #55a4ff;
  font-weight: 700;
}
@media (max-width: 1050px) {
  .solution-category-grid {
    grid-template-columns: 1fr;
  }
  .solution-item {
    grid-template-columns: 220px 1fr;
  }
}
@media (max-width: 800px) {
  .section-head {
    display: block;
  }
  .section-head > .text-link {
    display: inline-block;
    margin-top: 16px;
  }
  .solution-controls,
  .solution-detail-layout {
    grid-template-columns: 1fr;
  }
  .solution-item {
    grid-template-columns: 1fr;
  }
  .solution-item > img,
  .solution-source-preview {
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, "Noto Sans SC", sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.shell {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}
.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 17, 15, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand img {
  width: 202px;
  display: block;
}
.links {
  display: flex;
  gap: 23px;
  margin-left: auto;
  font-size: 14px;
  color: #c8d4d0;
}
.links a:hover,
.links a[aria-current="page"] {
  color: var(--teal);
}
.language {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 99px;
  background: transparent;
  color: var(--teal);
  font-size: 12px;
  cursor: pointer;
}
.language-picker {
  position: relative;
}
.language-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 12px);
  right: 0;
  width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0d1b2c;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .38);
}
.language-menu[hidden] { display: none; }
.language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 10px;
  color: #dce7f3;
}
.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="page"] {
  background: rgba(22, 143, 240, .13);
  color: #55a4ff;
}
.language-menu small { color: var(--muted); font-size: 11px; }
.language-menu-label {
  margin: 6px 8px 3px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.menu {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: white;
  font-size: 25px;
}
.hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 86px 0 72px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -160px;
  top: -180px;
  border: 1px solid rgba(74, 183, 174, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(74, 183, 174, 0.025),
    0 0 0 140px rgba(74, 183, 174, 0.02);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  color: var(--teal);
  font: 700 11px/1 monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 900px;
  font-weight: 500;
}
.hero p,
.page-hero p {
  font-size: 19px;
  color: var(--muted);
  max-width: 650px;
  margin: 25px 0;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 99px;
  background: var(--teal);
  color: #07110f;
  font-weight: 700;
}
.btn.secondary {
  background: transparent;
  color: white;
  border: 1px solid var(--line);
}
.hero-art {
  background: linear-gradient(145deg, #10231f, #07110f);
  border: 1px solid var(--line);
  border-radius: 28px;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-art img {
  width: 88%;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.3));
}
.hero-art .hero-project-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: none;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.metric {
  padding: 30px 4vw;
  border-right: 1px solid var(--line);
}
.metric:last-child {
  border: 0;
}
.metric strong {
  display: block;
  font-size: 24px;
}
.metric span {
  font-size: 13px;
  color: var(--muted);
}
.section {
  padding: 104px 0;
}
.section.alt {
  background: #0b1714;
}
.section h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
  max-width: 850px;
  font-weight: 500;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 42px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.card {
  grid-column: span 4;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  min-height: 230px;
}
.card.wide {
  grid-column: span 6;
}
.card.full {
  grid-column: 1/-1;
}
.card h3 {
  font-size: 22px;
  margin: 10px 0;
}
.card p,
.card li {
  color: var(--muted);
  font-size: 15px;
}
.card ul {
  padding-left: 18px;
}
.num {
  font: 700 12px monospace;
  color: var(--copper);
}
.link {
  color: var(--teal);
  font-weight: 700;
}
.page-hero {
  padding: 120px 0 74px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(
    circle at 80% 0,
    rgba(74, 183, 174, 0.13),
    transparent 34%
  );
}
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.tab {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #c5d2ce;
  font-size: 13px;
}
.catalog {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
}
.side {
  position: sticky;
  top: 100px;
  align-self: start;
}
.side a {
  display: block;
  padding: 9px 0;
  color: var(--muted);
}
.side a:hover {
  color: var(--teal);
}
.rows {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.row {
  background: var(--panel);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}
.rows .category-link {
  grid-template-columns: 76px minmax(180px, 0.9fr) minmax(0, 2fr);
  align-items: center;
}
.category-object {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  background: #07111f;
  border: 1px solid rgba(113, 157, 214, 0.25);
  border-radius: 14px;
}
.category-object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}
.row strong {
  font-size: 17px;
}
.row span {
  color: var(--muted);
}
.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process > div {
  background: var(--ink);
  padding: 30px;
}
.process > div:before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--copper);
  font: 700 12px monospace;
  margin-bottom: 24px;
}
.notice {
  padding: 22px 25px;
  border-left: 3px solid var(--copper);
  background: rgba(217, 120, 50, 0.08);
  color: #cfdbd7;
}
.cta {
  padding: 80px 0;
}
.cta-box {
  background: var(--teal);
  color: #07110f;
  border-radius: 26px;
  padding: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-box h2 {
  font-size: 42px;
  margin: 0;
}
.cta-box .btn {
  background: #07110f;
  color: white;
}
.site-foot {
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
}
.foot-grid img {
  width: 210px;
}
.foot-col strong {
  display: block;
  margin-bottom: 14px;
}
.foot-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin: 7px 0;
}
.legal {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #70817b;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
}
.reveal.on {
  opacity: 1;
  transform: none;
  transition: 0.7s ease;
}
@media (max-width: 900px) {
  .links {
    display: none;
  }
  .menu {
    display: block;
  }
  .links.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #08120f;
    padding: 24px;
    flex-direction: column;
  }
  .hero-grid,
  .catalog {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 380px;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
  .card,
  .card.wide {
    grid-column: span 6;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .side {
    position: static;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .shell {
    width: calc(100% - 28px);
  }
  .brand img {
    width: 170px;
  }
  .hero {
    padding-top: 65px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }
  .hero-art {
    min-height: 310px;
  }
  .metric {
    padding: 22px;
  }
  .card,
  .card.wide {
    grid-column: 1/-1;
  }
  .row {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .cta-box {
    display: block;
    padding: 34px;
  }
  .cta-box h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .legal {
    display: block;
  }
  .page-hero {
    padding-top: 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.brand .site-logo {
  display: block;
  width: 86px;
  max-height: 72px;
  object-fit: contain;
  border-radius: 8px;
}
.foot-grid .site-logo {
  display: block;
  width: 150px;
  border-radius: 12px;
}
.hero-art .brand-lockup {
  width: min(76%, 520px);
  max-height: 460px;
  object-fit: contain;
  border-radius: 18px;
  filter: none;
}

/* Final NovaAxial prototype theme — aligned to the approved blue/gray identity. */
:root {
  --ink: #06111f;
  --panel: #0d1b2c;
  --panel2: #13253a;
  --paper: #f2f6fb;
  --muted: #9dabbc;
  --teal: #168ff0;
  --teal2: #0b65c4;
  --copper: #7f91a7;
  --line: rgba(221, 235, 249, 0.13);
}
.site-head {
  background: rgba(6, 17, 31, 0.9);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: visible;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}
.brand-mark img {
  position: static;
  display: block;
  width: 48px;
  height: 44px;
  object-fit: contain;
}
.brand-name {
  font-size: 20px;
  line-height: 0.9;
  font-weight: 650;
  letter-spacing: -0.04em;
  color: #d5dce5;
}
.brand-name > span {
  color: var(--teal);
}
.brand-name small {
  display: block;
  margin-top: 6px;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #8fa0b5;
}
.hero:after {
  border-color: rgba(22, 143, 240, 0.18);
  box-shadow:
    0 0 0 70px rgba(22, 143, 240, 0.03),
    0 0 0 140px rgba(22, 143, 240, 0.02);
}
.hero-art {
  background: #fff;
  border-color: rgba(22, 143, 240, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}
.hero-art .brand-lockup {
  width: min(88%, 560px);
  max-height: 520px;
  border-radius: 0;
}
.section.alt {
  background: #091728;
}
.page-hero {
  background: radial-gradient(
    circle at 80% 0,
    rgba(22, 143, 240, 0.15),
    transparent 34%
  );
}
.footer-logo {
  display: block;
  width: 190px;
  height: 210px;
  object-fit: contain;
  object-position: center top;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
@media (max-width: 600px) {
  .brand-name {
    font-size: 17px;
  }
  .brand-mark {
    width: 44px;
    height: 44px;
  }
  .brand-mark img {
    width: 55px;
  }
}
@media (max-width: 600px) {
  .nav {
    gap: 12px;
  }
  .language {
    margin-left: 0;
  }
  .language-picker {
    margin-left: auto;
  }
  .menu {
    margin-left: 0;
  }
  html[lang^="zh"] .hero h1,
  html[lang^="zh"] .page-hero h1 {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -0.045em;
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .hero-grid {
    gap: 38px;
  }
  .hero-art .brand-lockup {
    width: 88%;
  }
}
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}
.menu {
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.card h2 {
  font-size: 28px;
  line-height: 1.12;
  margin: 8px 0 14px;
}
.rows + .notice {
  margin-top: 28px;
}
.catalog-search,
.catalog-controls label {
  display: block;
  color: var(--muted);
}
.catalog-search input,
.catalog-controls input,
.catalog-controls select {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--paper);
  font: inherit;
}
.catalog-controls {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
}
.product-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.brand-item,
.product-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
}
.brand-item {
  display: flex;
  gap: 16px;
}
.brand-item > div {
  min-width: 0;
  overflow-wrap: anywhere;
}
.brand-item .catalog-badge {
  max-width: 100%;
  white-space: normal;
}
.brand-item img,
.brand-initial {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 800;
}
.brand-item h2,
.product-item h2 {
  font-size: 21px;
  margin: 0 0 7px;
}
.brand-item p,
.product-item p {
  color: var(--muted);
  font-size: 14px;
}
.catalog-badge {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 4px 9px;
  color: var(--teal);
  font: 700 11px monospace;
  text-transform: uppercase;
}
.product-item {
  grid-column: span 1;
}
.product-item dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.product-item dl div {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
.product-item dt {
  font-size: 11px;
  color: var(--muted);
}
.product-item dd {
  margin: 2px 0 0;
}
.hidden {
  display: none !important;
}
@media (max-width: 900px) {
  .product-directory {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .product-directory,
  .catalog-controls {
    grid-template-columns: 1fr;
  }
}
.category-link {
  position: relative;
  cursor: pointer;
  padding-right: 150px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.category-link:hover {
  background: var(--panel2);
  box-shadow: inset 3px 0 var(--teal);
}
.category-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
}
.footer-address {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 9px 0;
}
@media (max-width: 600px) {
  .category-link {
    padding-right: 24px;
    padding-bottom: 58px;
  }
  .rows .category-link {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .rows .category-link > span:not(.category-object):not(.category-arrow) {
    grid-column: 1 / -1;
  }
  .category-arrow {
    left: 24px;
    right: auto;
    top: auto;
    bottom: 20px;
    transform: none;
  }
}
.product-item {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.2s,
    transform 0.2s,
    background 0.2s;
}
.product-item:hover,
.product-item:focus-visible {
  border-color: #55a4ff;
  background: #152236;
  transform: translateY(-2px);
  outline: none;
}
.product-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.product-card-head img {
  width: 32px;
  height: 32px;
}
.product-item dl {
  margin-top: auto;
}
.product-code {
  font: 600 12px/1.4 monospace;
  color: var(--teal) !important;
}
.product-open {
  margin-top: 18px;
  color: #55a4ff;
  font-weight: 700;
}
.product-title-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 22px 0;
}
.product-title-row img {
  width: 72px;
  height: 72px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 40px;
}
.detail-main h2 {
  margin-top: 32px;
}
.detail-main li {
  margin: 10px 0;
  color: var(--muted);
}
.detail-facts {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
}
.detail-facts dl div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.detail-facts dt {
  font-size: 12px;
  color: var(--muted);
}
.detail-facts dd {
  margin: 4px 0 0;
}
@media (max-width: 900px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .product-title-row {
    align-items: flex-start;
  }
  .product-title-row img {
    width: 56px;
    height: 56px;
    padding: 12px;
  }
}
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
}
.media-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: start;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.media-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  background: #050b14;
  border-radius: 12px;
}
.media-card h3 {
  margin: 4px 0 10px;
}
.media-card p,
.media-card li {
  color: var(--muted);
}
.platform-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.platform-showcase figure {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.platform-showcase img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #07101c;
}
.platform-showcase figcaption {
  display: grid;
  gap: 5px;
  padding: 18px;
}
.platform-showcase figcaption span {
  color: var(--muted);
}
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}
.split-feature > img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line);
}
.split-feature li {
  margin: 9px 0;
  color: var(--muted);
}
@media (max-width: 1000px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
  .split-feature {
    grid-template-columns: 1fr;
  }
  .split-feature > img {
    max-height: 360px;
  }
}
@media (max-width: 700px) {
  .media-card {
    grid-template-columns: 1fr;
  }
  .media-card img {
    height: 210px;
  }
  .platform-showcase {
    grid-template-columns: 1fr;
  }
}
.contact-map {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  min-height: 430px;
  margin-top: 44px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.contact-map-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
}
.contact-map-copy h2 {
  margin: 10px 0 18px;
  font-size: clamp(28px, 3vw, 42px);
}
.contact-map-copy address {
  color: var(--muted);
  font-style: normal;
  font-size: 18px;
  line-height: 1.65;
}
.contact-lines {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}
.contact-lines a {
  color: #55a4ff;
  text-decoration: none;
  font-weight: 700;
}
.contact-lines a:hover {
  text-decoration: underline;
}
.map-route {
  margin-top: 4px;
}
.map-frame {
  min-height: 430px;
  background: #0b1524;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(0.78) contrast(1.04);
}
.footer-address {
  text-decoration: none;
}
.footer-address:hover {
  color: var(--paper);
}
.nav-rfq {
  padding: 8px 14px;
  color: #07110f !important;
  background: var(--teal);
  border-radius: 999px;
  font-weight: 800;
}
.rfq-hero {
  padding-bottom: 72px;
}
.rfq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
.rfq-form {
  display: grid;
  gap: 22px;
}
.form-section,
.sticky-card {
  padding: clamp(24px, 3vw, 38px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.form-section > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.form-section h2 {
  margin: 0 0 24px;
}
.form-step {
  color: var(--teal);
  font: 700 12px monospace;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid label,
.confirmations label {
  color: #c8d4d0;
  font-size: 14px;
  font-weight: 700;
}
.form-grid .full {
  grid-column: 1 / -1;
}
.form-grid input,
.form-grid textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--paper);
  background: #091728;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}
.form-grid textarea {
  min-height: 112px;
  resize: vertical;
}
.form-grid small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 400;
}
.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--teal);
}
.form-grid [aria-invalid="true"] {
  border-color: #ff8f80;
}
.confirmations {
  display: grid;
  gap: 16px;
}
.check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  line-height: 1.55;
}
.check input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}
.check a {
  color: var(--teal);
  text-decoration: underline;
}
.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  min-height: 0;
  padding: 0;
  border-radius: 12px;
}
.form-status:not(:empty) {
  padding: 16px 18px;
  border: 1px solid var(--line);
}
.form-status.success {
  color: #bff8d4;
  background: rgba(44, 151, 87, 0.14);
  border-color: rgba(104, 225, 151, 0.35);
}
.form-status.error {
  color: #ffd0ca;
  background: rgba(180, 61, 47, 0.16);
  border-color: rgba(255, 143, 128, 0.35);
}
.form-submit {
  justify-content: center;
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}
.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}
.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.rfq-aside {
  position: relative;
}
.sticky-card {
  position: sticky;
  top: 100px;
}
.sticky-card h2 {
  font-size: 28px;
  line-height: 1.15;
}
.sticky-card li {
  margin: 12px 0;
  color: var(--muted);
}
.sticky-card hr {
  margin: 26px 0;
  border: 0;
  border-top: 1px solid var(--line);
}
.support-phone a {
  color: var(--teal);
}
@media (pointer: coarse) {
  .links a,
  .language,
  .form-submit,
  .check {
    min-height: 44px;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .rfq-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
  .sticky-card {
    top: 92px;
  }
}
@media (max-width: 767px) {
  .shell {
    width: min(100% - 32px, var(--max));
  }
  .section {
    padding: 68px 0;
  }
  .page-hero {
    padding: 68px 0 56px;
  }
  .rfq-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
  .sticky-card {
    position: static;
  }
  .sticky-card ol {
    margin-bottom: 0;
  }
  .form-section,
  .sticky-card {
    padding: 24px 20px;
  }
  .form-grid input,
  .form-grid textarea {
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .shell {
    width: min(100% - 24px, var(--max));
  }
  .form-section,
  .sticky-card {
    padding: 21px 16px;
    border-radius: 14px;
  }
  .form-section > div:first-child {
    display: block;
  }
  .form-step {
    display: block;
    margin-bottom: 6px;
  }
  .check {
    gap: 10px;
  }
}
@media (max-height: 520px) and (orientation: landscape) {
  .sticky-card {
    position: static;
  }
  .page-hero {
    padding-top: 46px;
    padding-bottom: 40px;
  }
}
.brand-link {
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.brand-link:hover,
.brand-link:focus-visible {
  transform: translateY(-2px);
  border-color: #55a4ff;
  background: #152236;
  outline: none;
}
.brand-logo {
  flex: 0 0 56px;
}
.brand-open {
  display: block;
  margin-top: 14px;
  color: #55a4ff;
  font-weight: 700;
  font-size: 13px;
}
.brand-detail-title {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 28px;
}
.brand-detail-title > img,
.brand-detail-title > .brand-initial {
  width: 92px;
  height: 92px;
  padding: 18px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
}
.brand-detail-title h1 {
  margin: 6px 0;
}
.related-links {
  display: grid;
  gap: 10px;
}
.related-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.related-links a:hover {
  border-color: #55a4ff;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}
.product-detail-media {
  position: relative;
  margin: 0;
  min-height: 300px;
  overflow: hidden;
  background: #07111f;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.product-detail-media > img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.product-detail-media figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  color: var(--muted);
  background: rgba(4, 10, 19, 0.82);
  border-radius: 7px;
  font-size: 11px;
}
.product-detail-icon {
  display: grid;
  place-items: center;
}
.product-detail-icon > img {
  width: 130px;
  height: 130px;
}
.home-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}
.home-section-head h2 {
  max-width: 850px;
  margin: 9px 0 0;
}
.home-section-head > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}
.home-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.home-route-grid a {
  position: relative;
  min-height: 180px;
  padding: 27px;
  color: inherit;
  text-decoration: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}
.home-route-grid a:hover { background: var(--panel2); transform: translateY(-2px); }
.home-route-grid span { display: block; color: #55a4ff; font: 700 11px monospace; }
.home-route-grid strong { display: block; margin: 30px 0 8px; font-size: 22px; }
.home-route-grid small { display: block; max-width: 250px; color: var(--muted); font-size: 13px; }
.home-route-grid b { position: absolute; right: 25px; top: 25px; color: #55a4ff; }
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.home-product-grid a {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 170px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.home-product-grid img { width: 100%; height: 100%; object-fit: cover; }
.home-product-grid div { padding: 22px 20px; }
.home-product-grid strong { display: block; font-size: 18px; }
.home-product-grid p { min-height: 48px; color: var(--muted); font-size: 13px; }
.home-product-grid span, .home-solution-grid span { color: #55a4ff; font-size: 13px; font-weight: 700; }
.home-solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.home-solution-grid a { overflow: hidden; color: inherit; text-decoration: none; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; }
.home-solution-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-bottom: 1px solid var(--line); }
.home-solution-grid div { padding: 20px; }
.home-solution-grid small { display: block; margin-bottom: 12px; color: #55a4ff; font: 700 11px monospace; }
.home-solution-grid strong { display: block; min-height: 52px; margin-bottom: 18px; font-size: 18px; line-height: 1.35; }
.home-product-grid a:hover, .home-solution-grid a:hover { border-color: #55a4ff; }
.home-platform-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.home-platform-media { overflow: hidden; background: #07111f; border: 1px solid var(--line); border-radius: 20px; }
.home-platform-media img { display: block; width: 100%; min-height: 420px; object-fit: cover; }
.home-platform-grid h2 { margin: 14px 0 20px; }
.home-platform-grid p { color: var(--muted); }
.home-platform-links { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; }
.home-platform-links a { color: #55a4ff; font-weight: 700; }
.home-brand-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.home-brand-strip a { padding: 12px 16px; color: #dbe8f7; text-decoration: none; background: var(--panel); border: 1px solid var(--line); border-radius: 999px; }
.home-brand-strip a:hover { border-color: #55a4ff; color: #55a4ff; }
.home-disclaimer { max-width: 960px; margin-top: 22px; color: var(--muted); font-size: 13px; }
.home-contact-bar { display: flex; justify-content: space-between; align-items: center; gap: 28px; margin-top: 32px; padding: 26px 28px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; }
.home-contact-bar strong, .home-contact-bar span { display: block; }
.home-contact-bar span { margin-top: 6px; color: var(--muted); }
.home-contact-bar > div:last-child { display: flex; align-items: center; gap: 20px; }
.home-contact-bar a:not(.btn) { color: #55a4ff; }
@media (max-width: 1050px) {
  .home-product-grid { grid-template-columns: repeat(2, 1fr); }
  .home-solution-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .home-section-head, .home-contact-bar { display: block; }
  .home-section-head > p, .home-section-head > .text-link { display: block; margin-top: 18px; }
  .home-route-grid { grid-template-columns: repeat(2, 1fr); }
  .home-platform-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-platform-media img { min-height: 300px; }
  .home-contact-bar > div:last-child { margin-top: 22px; }
}
@media (max-width: 600px) {
  .home-route-grid, .home-product-grid, .home-solution-grid { grid-template-columns: 1fr; }
  .home-route-grid a { min-height: 150px; }
  .home-product-grid a { grid-template-columns: 120px 1fr; }
  .home-product-grid p { min-height: 0; }
  .home-solution-grid strong { min-height: 0; }
  .home-contact-bar > div:last-child { align-items: flex-start; flex-direction: column; }
}
.solution-card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  padding: 10px;
  background: rgba(85, 164, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.solution-scope-link {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.solution-scope-link:hover,
.solution-scope-link:focus-visible {
  transform: translateY(-3px);
  border-color: #55a4ff;
  background: #17253a;
  outline: none;
}
.solution-scope-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(85, 164, 255, .35);
}
.solution-scope-cta {
  display: block;
  margin-top: 20px;
  color: #62a4ff;
  font-weight: 700;
}
.clickable-card {
  padding: 0;
}
.clickable-card > a {
  display: block;
  height: 100%;
  padding: 34px;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}
.clickable-card > a:hover {
  background: #152236;
}
.card-link {
  display: block;
  margin-top: 26px;
  color: #55a4ff;
  font-weight: 700;
}
.platform-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
}
.platform-detail-hero > img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #07111f;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.platform-detail-hero li {
  margin: 10px 0;
  color: var(--muted);
}
@media (max-width: 800px) {
  .contact-map {
    grid-template-columns: 1fr;
  }
  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }
  .contact-map-copy {
    padding: 32px 24px;
  }
  .product-hero-grid,
  .platform-detail-hero {
    grid-template-columns: 1fr;
  }
  .product-detail-media > img {
    height: 280px;
  }
  .brand-detail-title {
    align-items: flex-start;
  }
}
