@font-face {
  font-family: "Source Han Sans CN";
  src: url("/assets/fonts/SourceHanSansCN-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Han Sans CN";
  src: url("/assets/fonts/SourceHanSansCN-Bold.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #333333;
  --ink-soft: #333333;
  --muted: #666666;
  --line: #e1e1e1;
  --soft: #f7f7f7;
  --soft-blue: #f7f7f7;
  --white: #ffffff;
  --deep: #092a43;
  --blue: #1295d6;
  --cyan: #1295d6;
  --green: #0a9c73;
  --orange: #df6c27;
  --red: #c83e43;
  --purple: #6355a8;
  --teal: #087f86;
  --shadow: 0 14px 34px rgba(16, 32, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 120;
  padding: 8px 14px;
  color: var(--white);
  background: var(--deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 84px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5eaee;
  font-family: Roboto, sans-serif;
}

.site-header a,
.site-header button {
  font-family: Roboto, sans-serif;
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 230px;
  height: auto;
}

.site-nav {
  height: 100%;
}

.nav-list {
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  color: #26384b;
  font-weight: 500;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  content: "";
  background: transparent;
}

.nav-item.active > .nav-link,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--blue);
}

.nav-item.active > .nav-link::after,
.nav-link:hover::after,
.nav-link:focus-visible::after {
  background: var(--cyan);
}

.nav-link .bx-chevron-down {
  font-size: 17px;
}

.mega-panel {
  position: fixed;
  top: 84px;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  max-height: calc(100vh - 104px);
  overflow: auto;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--cyan);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.mega-grid.solutions-grid {
  grid-template-columns: 1fr 1fr;
}

.mega-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.mega-heading i {
  color: var(--blue);
  font-size: 22px;
}

.mega-heading a:hover,
.mega-heading a:focus-visible {
  color: var(--blue);
}

.mega-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-links a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.mega-links a:hover,
.mega-links a:focus-visible {
  color: var(--blue);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle i {
  font-size: 27px;
}

.hero {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: var(--deep);
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(3, 26, 52, 0.3);
}

.hero.home-hero {
  min-height: 610px;
}

.hero.hub-hero {
  min-height: 440px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-copy {
  width: min(580px, 50%);
  padding: 72px 0;
}

.hero-copy.hero-copy-left {
  margin-right: auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  list-style: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  font-family: "SourceHanSansCN-Light";
}

.eyebrow::before {
  display: none;
}

.hero h1 {
  margin: 0;
  font-family: "SourceHanSansCN-Light";
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-lead {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.85;
}

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

.hero-light {
  min-height: 560px;
  color: var(--ink);
  background: #eef4f7;
  border-top: 0;
}

.hero-light::before {
  display: none;
}

.hero-light .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 48px;
}

.hero-light .hero-copy {
  width: auto;
  padding: 68px 0;
}

.hero-light .breadcrumb,
.hero-light .hero-lead {
  color: var(--muted);
}

.hero-media {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.hero-light .hero-media {
  justify-self: center;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn i {
  font-size: 20px;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #0475a3;
  border-color: #0475a3;
}

.btn-outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.btn-outline {
  color: var(--blue);
  background: transparent;
  border-color: var(--blue);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.anchor-nav {
  position: sticky;
  top: 84px;
  z-index: 60;
  overflow-x: auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 5px 14px rgba(16, 32, 51, 0.04);
  scrollbar-width: none;
}

.anchor-nav::-webkit-scrollbar {
  display: none;
}

.anchor-nav ul {
  min-width: max-content;
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.anchor-nav a {
  height: 60px;
  display: block;
  padding: 12px 16px;
  color: #000000;
  font-family: "SourceHanSansCN-Light";
  font-size: 20px;
  font-weight: 400;
  line-height: 28.5714px;
  text-align: center;
}

.anchor-nav a:hover,
.anchor-nav a:focus-visible {
  color: var(--blue);
  background: var(--soft-blue);
}

.section {
  padding: 72px 0;
}

.section[id] {
  scroll-margin-top: 145px;
}

.section-sm {
  padding: 60px 0;
}

.band-soft {
  background: var(--soft);
}

.band-blue {
  background: var(--soft);
}

.band-dark {
  color: var(--ink);
  background: var(--white);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--muted);
  font-family: "SourceHanSansCN-Light";
  font-size: 17px;
  font-weight: 500;
  line-height: 1.95;
}

.section-heading.align-left .section-kicker {
  justify-content: flex-start;
}

.section-kicker::before {
  display: none;
}

.section-heading h2 {
  margin: 0;
  color: #333333;
  font-family: "SourceHanSansCN-Light";
  font-size: 34px;
  font-weight: 500;
  line-height: 1.35;
}

.section-heading p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.band-dark .section-heading p:not(.section-kicker),
.band-dark .section-kicker {
  color: var(--muted);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 64px;
}

.overview-copy h2 {
  margin: 0 0 22px;
  font-family: "SourceHanSansCN-Light";
  font-size: 34px;
  font-weight: 500;
  line-height: 1.35;
}

.overview-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.overview-points li {
  display: flex;
  gap: 9px;
  color: var(--ink-soft);
}

.overview-points i {
  margin-top: 5px;
  color: var(--blue);
  font-size: 19px;
}

.product-figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}

.product-figure img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.product-figure figcaption {
  padding: 12px 16px;
  color: var(--muted);
  background: var(--soft);
  border-top: 1px solid var(--line);
  font-size: 13px;
  text-align: center;
}

.category-grid,
.product-grid,
.feature-grid,
.solution-grid,
.service-grid,
.support-grid,
.value-grid,
.stats-grid {
  display: grid;
  gap: 22px;
}

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

.product-grid,
.feature-grid,
.solution-grid,
.service-grid,
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.tile {
  min-width: 0;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color 160ms ease;
}

a.tile:hover,
a.tile:focus-visible {
  border-color: var(--blue);
}

.category-tile {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
}

.category-tile .tile-icon,
.feature-card .tile-icon,
.service-card .tile-icon,
.support-card .tile-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: transparent;
  border-radius: 0;
}

.tile-icon i {
  font-size: 27px;
}

.category-tile[data-accent="green"] .tile-icon,
.feature-card:nth-child(3n + 2) .tile-icon,
.service-card:nth-child(3n + 2) .tile-icon {
  color: var(--blue);
  background: transparent;
}

.category-tile[data-accent="orange"] .tile-icon,
.feature-card:nth-child(3n) .tile-icon,
.service-card:nth-child(3n) .tile-icon {
  color: var(--blue);
  background: transparent;
}

.category-tile[data-accent="teal"] .tile-icon {
  color: var(--blue);
  background: transparent;
}

.category-tile[data-accent="red"] .tile-icon {
  color: var(--blue);
  background: transparent;
}

.category-tile h3,
.product-card h3,
.feature-card h3,
.solution-card h3,
.service-card h3,
.support-card h3,
.value-card h3 {
  margin: 20px 0 10px;
  font-family: "SourceHanSansCN-Light";
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
}

.category-tile p,
.product-card p,
.feature-card p,
.solution-card p,
.service-card p,
.support-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.tile-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-weight: 700;
}

.product-card,
.solution-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-top: 1px solid var(--line);
}

.product-card:nth-child(3n + 2),
.solution-card:nth-child(3n + 2) {
  border-top-color: var(--line);
}

.product-card:nth-child(3n),
.solution-card:nth-child(3n) {
  border-top-color: var(--line);
}

.product-card .product-category,
.solution-card .solution-group {
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
}

.product-card h3,
.solution-card h3 {
  margin-top: 11px;
}

.feature-card,
.service-card,
.support-card,
.value-card {
  min-height: 260px;
  padding: 28px;
}

.support-card .support-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 700;
}

.capability-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-item {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.capability-item:last-child {
  border-right: 0;
}

.capability-item i {
  color: var(--cyan);
  font-size: 32px;
}

.capability-item strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: "SourceHanSansCN-Light";
  font-size: 17px;
  font-weight: 500;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: approach;
}

.approach-step {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-radius: 0;
  counter-increment: approach;
}

.approach-step::before {
  display: block;
  margin-bottom: 22px;
  color: var(--blue);
  content: "0" counter(approach);
  font-size: 15px;
  font-weight: 500;
}

.approach-step strong {
  display: block;
  font-family: "SourceHanSansCN-Light";
  font-size: 18px;
  font-weight: 500;
}

/* Services */
.service-hero::before {
  background: linear-gradient(90deg, rgba(3, 35, 67, 0.9) 0%, rgba(3, 35, 67, 0.72) 48%, rgba(3, 35, 67, 0.32) 100%);
}

.service-hero .hero-inner {
  justify-content: flex-start;
}

.service-hero .hero-copy {
  width: min(680px, 62%);
}

.service-hero-statement {
  margin: 20px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--cyan);
  color: #ffffff;
  font-size: 20px;
  line-height: 1.75;
}

.service-theme-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-theme-link {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  color: var(--ink);
  background: #ffffff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 160ms ease;
}

.service-theme-link:hover,
.service-theme-link:focus-visible {
  background: var(--soft-blue);
}

.service-theme-link > span,
.service-detail-icon,
.service-metric-grid article > span {
  color: var(--blue);
  font-size: 31px;
}

.service-theme-link strong {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.5;
}

.service-theme-link p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-theme-link em {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
}

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

.service-detail-card {
  min-width: 0;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--cyan);
}

.service-detail-card h3,
.service-subsection h3,
.service-response-grid h3,
.service-response-table-wrap h3,
.service-emergency-note h3,
.service-metric-grid h3,
.service-assurance-steps h3 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.5;
}

.service-detail-card > p,
.service-subsection > p,
.service-response-grid p,
.service-response-table-wrap > p,
.service-emergency-note p,
.service-metric-grid p,
.service-assurance-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.service-standard {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-standard strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 13px;
}

.service-standard p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.service-topic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 64px;
}

.service-subsection + .service-subsection {
  margin-top: 34px;
}

.service-subsection h3 {
  margin-top: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.service-numbered-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: service-step;
}

.service-numbered-list li {
  position: relative;
  padding-left: 42px;
  color: var(--ink-soft);
  counter-increment: service-step;
}

.service-numbered-list li::before {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  content: counter(service-step);
  color: #ffffff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.service-figure {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
}

.service-figure img {
  width: 100%;
  display: block;
}

.service-figure figcaption {
  padding: 12px 16px;
  color: var(--muted);
  background: var(--soft);
  border-top: 1px solid var(--line);
  font-size: 13px;
  text-align: center;
}

.service-response-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-response-grid article {
  padding: 26px 28px;
  background: #ffffff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-response-grid h3,
.service-metric-grid h3 {
  margin-top: 0;
}

.service-response-table-wrap {
  margin-top: 48px;
}

.service-response-table-wrap > h3 {
  font-size: 24px;
}

.service-response-table {
  width: 100%;
  margin-top: 22px;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.7;
}

.service-response-table th,
.service-response-table td {
  padding: 18px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.service-response-table thead th {
  color: #ffffff;
  background: var(--deep);
  font-weight: 600;
}

.service-response-table tbody th {
  width: 105px;
  color: var(--blue);
  background: var(--soft-blue);
}

.service-emergency-note {
  margin-top: 28px;
  padding: 26px 28px;
  background: #eef7fa;
  border-left: 3px solid var(--cyan);
}

.service-emergency-note h3 {
  margin-top: 0;
}

.service-emergency-note p + p {
  margin-top: 10px;
}

.service-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-metric-grid article {
  min-height: 230px;
  padding: 30px;
  background: #ffffff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-metric-grid article > span {
  display: block;
  margin-bottom: 20px;
}

.service-assurance-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  counter-reset: assurance-step;
}

.service-assurance-steps article {
  min-height: 300px;
  padding: 28px;
  background: #ffffff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  counter-increment: assurance-step;
}

.service-assurance-steps article::before {
  display: block;
  margin-bottom: 22px;
  color: var(--blue);
  content: "0" counter(assurance-step);
  font-size: 15px;
  font-weight: 600;
}

.service-assurance-steps h3 {
  margin-top: 0;
}

.service-principles .plain-list {
  padding-top: 12px;
}

.value-card {
  min-height: 190px;
  border-top: 1px solid var(--line);
}

.value-card h3 {
  margin-top: 0;
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-row {
  min-height: 126px;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-row dt {
  color: var(--ink);
  font-weight: 700;
}

.spec-row dd {
  margin: 0;
  color: var(--muted);
}

.notice {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.plain-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
}

.plain-list i {
  flex: 0 0 auto;
  margin-top: 5px;
  color: var(--blue);
  font-size: 20px;
}

.stats-grid {
  margin-top: 36px;
}

.stat {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.stat strong {
  display: block;
  font-family: "SourceHanSansCN-Light";
  font-size: 26px;
  font-weight: 500;
}

.stat span {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--line);
}

.timeline li {
  position: relative;
  padding: 30px 20px 0 0;
}

.timeline li::before {
  width: 14px;
  height: 14px;
  position: absolute;
  top: -8px;
  left: 0;
  content: "";
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--blue);
}

.timeline strong {
  display: block;
  color: var(--blue);
  font-size: 19px;
}

.timeline span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  padding: 58px 0;
  color: var(--white);
  background: #0f4057;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-copy h2 {
  margin: 0;
  font-size: 30px;
}

.cta-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #17242f;
  font-family: Roboto, sans-serif;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 46px;
  padding: 62px 0 48px;
}

.footer-brand img {
  width: 220px;
  filter: grayscale(1) brightness(2.3);
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 26px;
}

.footer-col h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 16px;
  line-height: 19px;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 20px;
}

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

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
}

.back-top {
  width: 44px;
  height: 44px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 4px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 160ms ease, visibility 160ms ease;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-top i {
  font-size: 24px;
}

.empty-note {
  padding: 30px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
}

@media (max-width: 1100px) {
  .brand img {
    width: 205px;
  }

  .nav-link {
    padding: 0 12px;
  }

  .nav-link::after {
    right: 12px;
    left: 12px;
  }

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

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

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

  .service-theme-grid,
  .service-assurance-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .capability-item:nth-child(2) {
    border-right: 0;
  }

  .capability-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .site-header,
  .header-inner {
    height: 76px;
  }

  .brand img {
    width: 190px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    overflow: auto;
    padding: 18px 20px 40px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-list {
    height: auto;
    display: grid;
    align-items: stretch;
    gap: 0;
  }

  .nav-item {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .nav-link {
    min-height: 54px;
    width: 100%;
    justify-content: space-between;
    padding: 0 4px;
  }

  .nav-link::after {
    display: none;
  }

  .mega-panel {
    width: auto;
    max-height: none;
    position: static;
    display: none;
    overflow: visible;
    padding: 0 0 22px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav .nav-item .mega-panel,
  .site-nav .nav-item:hover .mega-panel,
  .site-nav .nav-item:focus-within .mega-panel {
    left: auto;
    transform: none;
  }

  .nav-item.mobile-expanded .mega-panel {
    display: block;
  }

  .mega-grid,
  .mega-grid.solutions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .anchor-nav {
    top: 76px;
  }

  .section[id] {
    scroll-margin-top: 137px;
  }

  .hero-copy {
    width: min(610px, 64%);
  }

  .service-hero .hero-copy {
    width: min(660px, 72%);
  }

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

  .service-figure {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .hero-light .hero-inner,
  .overview-grid,
  .split-band {
    grid-template-columns: 1fr;
  }

  .hero-light .hero-inner {
    gap: 0;
  }

  .hero-light .hero-copy {
    padding-bottom: 20px;
  }

  .hero-light .hero-media {
    max-width: 520px;
    max-height: 340px;
    margin: 0 auto 28px;
  }

  .overview-grid {
    gap: 42px;
  }

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

@media (max-width: 680px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand img {
    width: 178px;
  }

  .hero,
  .hero.home-hero,
  .hero.hub-hero {
    min-height: 650px;
    align-items: flex-end;
    background-position: 36% center;
  }

  .hero::before {
    background: rgba(3, 26, 52, 0.72);
  }

  .hero-copy {
    width: 100%;
    padding: 62px 0 54px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-light {
    min-height: 650px;
    align-items: stretch;
  }

  .hero-light .hero-copy {
    padding: 38px 0 10px;
  }

  .hero-light .hero-media {
    max-width: 310px;
    max-height: 285px;
    margin-bottom: 20px;
  }

  .breadcrumb {
    margin-bottom: 12px;
  }

  .anchor-nav a {
    height: 60px;
    padding: 12px 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .overview-copy h2 {
    font-size: 29px;
  }

  .section-heading p:not(.section-kicker),
  .overview-copy p {
    font-size: 16px;
  }

  .category-grid,
  .product-grid,
  .feature-grid,
  .solution-grid,
  .service-grid,
  .support-grid,
  .value-grid,
  .stats-grid,
  .approach-grid,
  .capability-band,
  .spec-table,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .service-theme-grid,
  .service-detail-grid,
  .service-response-grid,
  .service-metric-grid,
  .service-assurance-steps {
    grid-template-columns: 1fr;
  }

  .service-hero .hero-copy {
    width: 100%;
  }

  .service-hero-statement {
    font-size: 17px;
  }

  .service-theme-link,
  .service-assurance-steps article,
  .service-metric-grid article {
    min-height: 0;
  }

  .service-response-table-wrap {
    overflow-x: auto;
  }

  .service-response-table {
    min-width: 760px;
  }

  .category-tile,
  .product-card,
  .solution-card,
  .feature-card,
  .service-card,
  .support-card,
  .value-card {
    min-height: 0;
  }

  .capability-item,
  .capability-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-item:last-child {
    border-bottom: 0;
  }

  .overview-points {
    grid-template-columns: 1fr;
  }

  .spec-row {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 20px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 18px;
    border-top: 0;
    border-left: 2px solid var(--line);
  }

  .timeline li {
    padding: 0 0 30px 24px;
  }

  .timeline li::before {
    top: 4px;
    left: -26px;
  }

  .cta-inner,
  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-copy h2 {
    font-size: 27px;
  }

  .mega-grid,
  .mega-grid.solutions-grid {
    grid-template-columns: 1fr;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
  }
}

.v10-overview-layout,
.v10-architecture-layout,
.v10-deployment-layout,
.v10-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 64px;
}

.v10-fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.v10-fact-strip > div {
  min-width: 0;
  padding: 18px 16px 18px 0;
}

.v10-fact-strip > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.v10-fact-strip strong,
.v10-fact-strip span {
  display: block;
}

.v10-fact-strip strong {
  color: var(--deep);
  font-family: "SourceHanSansCN-Light";
  font-size: 17px;
  font-weight: 500;
}

.v10-fact-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.v10-product-shot,
.v10-architecture-figure,
.v10-deployment-figure,
.v10-wide-figure,
.v10-certificate-figure,
.v10-service-figure {
  margin: 0;
}

.v10-product-shot,
.v10-architecture-figure,
.v10-deployment-figure,
.v10-wide-figure,
.v10-service-figure {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.v10-product-shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.v10-product-shot figcaption,
.v10-architecture-figure figcaption,
.v10-deployment-figure figcaption,
.v10-wide-figure figcaption,
.v10-certificate-figure figcaption,
.v10-service-figure figcaption {
  padding: 11px 16px;
  color: var(--muted);
  background: var(--soft);
  border-top: 1px solid var(--line);
  font-size: 13px;
  text-align: center;
}

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

.v10-capability-card {
  min-height: 215px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: 4px;
}

.v10-capability-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: #eef7fb;
  border-radius: 4px;
}

.v10-capability-icon i {
  font-size: 25px;
}

.v10-capability-card h3 {
  margin: 2px 0 10px;
  color: var(--deep);
  font-family: "SourceHanSansCN-Light";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.v10-capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.v10-architecture-layout,
.v10-deployment-layout {
  align-items: start;
}

.v10-role-list,
.v10-platform-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.v10-role-list > div,
.v10-platform-list > div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.v10-role-list dt,
.v10-platform-list dt {
  color: var(--deep);
  font-weight: 700;
}

.v10-role-list dd,
.v10-platform-list dd {
  margin: 0;
  color: var(--muted);
}

.v10-architecture-figure,
.v10-deployment-figure {
  padding: 24px 24px 0;
}

.v10-architecture-figure img,
.v10-deployment-figure img {
  width: 100%;
  height: 430px;
  object-fit: contain;
}

.v10-architecture-figure figcaption,
.v10-deployment-figure figcaption {
  margin: 20px -24px 0;
}

.v10-edr-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.v10-edr-steps li {
  min-height: 176px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.v10-edr-steps li > span {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 700;
}

.v10-edr-steps h3 {
  margin: 0 0 8px;
  color: var(--deep);
  font-family: "SourceHanSansCN-Light";
  font-size: 19px;
  font-weight: 500;
}

.v10-edr-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.v10-wide-figure {
  padding: 22px 22px 0;
}

.v10-wide-figure img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.v10-wide-figure figcaption {
  margin: 20px -22px 0;
}

.v10-deployment-layout .notice {
  margin-top: 22px;
}

.v10-certificate-figure {
  width: min(860px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.v10-certificate-figure img {
  width: 100%;
  max-height: 980px;
  object-fit: contain;
}

.v10-service-layout {
  align-items: start;
}

.v10-service-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.v10-service-steps li {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.v10-service-steps li > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.v10-service-steps strong {
  display: block;
  color: var(--deep);
  font-size: 16px;
}

.v10-service-steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.v10-service-figure img {
  width: 100%;
  height: 540px;
  object-fit: contain;
}

.malware-hero {
  background-position: center;
}

.malware-hero::before {
  background: linear-gradient(90deg, rgba(2, 30, 61, 0.06) 0%, rgba(2, 30, 61, 0.18) 48%, rgba(2, 30, 61, 0.62) 100%);
}

.malware-dashboard img {
  background: #f5f8fb;
}

.malware-threat-figure img {
  max-height: 500px;
}

.malware-architecture-layout,
.malware-deployment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: start;
  gap: 64px;
}

.malware-component-list > div {
  grid-template-columns: 150px minmax(0, 1fr);
}

.malware-appliance-figure {
  margin: 0;
  overflow: hidden;
  background: #f2f6f8;
  border: 1px solid var(--line);
  border-radius: 4px;
}

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

.malware-appliance-figure figcaption {
  padding: 12px 16px;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 13px;
  text-align: center;
}

.malware-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.malware-platform-grid article {
  min-width: 0;
  padding: 28px 24px;
}

.malware-platform-grid article + article {
  border-left: 1px solid var(--line);
}

.malware-platform-grid article > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: #eaf5fa;
  border-radius: 4px;
}

.malware-platform-grid i {
  font-size: 24px;
}

.malware-platform-grid h3 {
  margin: 18px 0 8px;
  color: var(--deep);
  font-size: 19px;
  font-weight: 500;
}

.malware-platform-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.malware-deployment-points {
  margin-top: 24px;
}

.malware-selection-panel {
  padding: 30px;
  color: var(--ink);
  background: var(--soft);
  border-top: 3px solid var(--blue);
}

.malware-selection-panel h3 {
  margin: 0 0 18px;
  color: var(--deep);
  font-size: 22px;
  font-weight: 500;
}

.malware-selection-panel dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.malware-selection-panel dl > div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.malware-selection-panel dt {
  color: var(--deep);
  font-weight: 700;
}

.malware-selection-panel dd {
  margin: 0;
  color: var(--muted);
}

.malware-selection-panel > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.sitemap-directory {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.sitemap-block {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 48px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.sitemap-block-title p {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.sitemap-block-title h2 {
  margin: 0;
  color: var(--deep);
  font-family: "Source Han Sans CN", Roboto, sans-serif;
  font-size: 25px;
  line-height: 1.4;
}

.sitemap-block-title h2 a,
.sitemap-group h3 a {
  transition: color 160ms ease;
}

.sitemap-block-title h2 a:hover,
.sitemap-block-title h2 a:focus-visible,
.sitemap-group h3 a:hover,
.sitemap-group h3 a:focus-visible,
.sitemap-links a:hover,
.sitemap-links a:focus-visible {
  color: var(--blue);
}

.sitemap-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 52px;
}

.sitemap-group-grid-compact {
  align-content: start;
}

.sitemap-group {
  min-width: 0;
}

.sitemap-group h3 {
  margin: 0 0 14px;
  padding-bottom: 10px;
  color: var(--deep);
  border-bottom: 2px solid var(--blue);
  font-family: "Source Han Sans CN", Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-links li {
  min-width: 0;
}

.sitemap-links a {
  display: inline-block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: anywhere;
  transition: color 160ms ease;
}

.band-deep {
  color: var(--white);
  background: var(--deep);
}

.enterprise-product-hero .hero-copy {
  width: min(650px, 57%);
}

.enterprise-product-overview-layout,
.enterprise-deployment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 64px;
}

.enterprise-product-detail {
  margin-top: 14px !important;
}

.enterprise-fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.enterprise-fact-strip > div {
  min-width: 0;
  padding: 18px 16px 18px 0;
}

.enterprise-fact-strip > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.enterprise-fact-strip strong,
.enterprise-fact-strip span {
  display: block;
}

.enterprise-fact-strip strong {
  color: var(--deep);
  font-family: "SourceHanSansCN-Light";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.enterprise-fact-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.enterprise-product-figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.enterprise-product-figure img {
  width: 100%;
  height: 410px;
  padding: 22px;
  object-fit: contain;
}

.enterprise-product-figure figcaption,
.enterprise-certificate-figure figcaption {
  padding: 11px 16px;
  color: var(--muted);
  background: var(--soft);
  border-top: 1px solid var(--line);
  font-size: 13px;
  text-align: center;
}

.enterprise-system-map,
.enterprise-layer-stack {
  padding: 28px;
  color: var(--white);
  background: var(--deep);
  border-top: 4px solid var(--blue);
  border-radius: 4px;
}

.enterprise-system-map > p,
.enterprise-layer-stack > p {
  margin: 0 0 20px;
  color: #a9d9ef;
  font-size: 14px;
  font-weight: 700;
}

.enterprise-system-map ol,
.enterprise-layer-stack ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.enterprise-system-map li,
.enterprise-layer-stack li {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.enterprise-system-map li span,
.enterprise-layer-stack li span {
  color: #4bc8ee;
  font-size: 13px;
  font-weight: 700;
}

.enterprise-system-map li strong,
.enterprise-layer-stack li strong {
  color: var(--white);
  font-family: "SourceHanSansCN-Light";
  font-size: 18px;
  font-weight: 500;
}

.enterprise-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.enterprise-capability-item {
  min-width: 0;
  min-height: 230px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 28px 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.enterprise-capability-item > span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: #eef7fb;
}

.enterprise-capability-item i {
  font-size: 24px;
}

.enterprise-capability-item h3 {
  margin: 2px 0 9px;
  color: var(--deep);
  font-family: "SourceHanSansCN-Light";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.enterprise-capability-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.enterprise-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.enterprise-flow li {
  min-width: 0;
  min-height: 202px;
  padding: 25px 23px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.enterprise-flow li > span,
.enterprise-scenario-grid article > span,
.enterprise-value-grid article > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.enterprise-flow h3,
.enterprise-scenario-grid h3 {
  margin: 18px 0 9px;
  color: var(--deep);
  font-family: "SourceHanSansCN-Light";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.enterprise-flow p,
.enterprise-scenario-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.enterprise-product-figure-wide {
  width: min(940px, 100%);
  margin: 0 auto;
}

.enterprise-product-figure-wide img {
  height: 440px;
}

.enterprise-scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.enterprise-scenario-grid article {
  min-width: 0;
  min-height: 205px;
  padding: 26px 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.enterprise-deployment-layout {
  align-items: start;
}

.enterprise-deployment-layout .section-heading {
  margin-bottom: 28px;
}

.enterprise-spec-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.enterprise-spec-list > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.enterprise-spec-list dt {
  color: var(--deep);
  font-weight: 700;
}

.enterprise-spec-list dd {
  margin: 0;
  color: var(--muted);
}

.enterprise-layer-stack small {
  display: block;
  margin-top: 20px;
  color: #b9cbd7;
  font-size: 12px;
  line-height: 1.7;
}

.enterprise-values .section-kicker,
.enterprise-values .section-heading p:not(.section-kicker) {
  color: #a9c1d2;
}

.enterprise-values .section-heading h2 {
  color: var(--white);
}

.enterprise-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.enterprise-value-grid article {
  min-height: 150px;
  padding: 27px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.enterprise-value-grid p {
  margin: 18px 0 0;
  color: var(--white);
  font-family: "SourceHanSansCN-Light";
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
}

.enterprise-certificate-figure {
  width: min(900px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.enterprise-certificate-figure img {
  width: 100%;
  max-height: 840px;
  padding: 20px;
  object-fit: contain;
}

@media (max-width: 1080px) {
  .enterprise-product-overview-layout,
  .enterprise-deployment-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .enterprise-product-figure-overview,
  .enterprise-system-map,
  .enterprise-layer-stack {
    width: min(820px, 100%);
    margin: 0 auto;
  }

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

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

  .v10-overview-layout,
  .v10-architecture-layout,
  .v10-deployment-layout,
  .v10-service-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .v10-product-shot,
  .v10-architecture-figure,
  .v10-deployment-figure,
  .v10-service-figure {
    width: min(820px, 100%);
    margin: 0 auto;
  }

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

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

  .malware-architecture-layout,
  .malware-deployment-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .malware-appliance-figure,
  .malware-selection-panel {
    width: min(760px, 100%);
    margin: 0 auto;
  }

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

  .malware-platform-grid article:nth-child(3) {
    border-left: 0;
  }

  .malware-platform-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .sitemap-block {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 30px;
  }

  .sitemap-group-grid {
    gap: 30px 34px;
  }

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

@media (max-width: 680px) {
  .enterprise-product-hero .hero-copy {
    width: 100%;
  }

  .enterprise-product-overview-layout,
  .enterprise-deployment-layout {
    gap: 32px;
  }

  .enterprise-fact-strip,
  .enterprise-capability-grid,
  .enterprise-flow,
  .enterprise-value-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-fact-strip > div {
    padding: 14px 0;
  }

  .enterprise-fact-strip > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .enterprise-product-figure img,
  .enterprise-product-figure-wide img {
    height: auto;
    min-height: 230px;
    max-height: 390px;
    padding: 14px;
  }

  .enterprise-system-map,
  .enterprise-layer-stack {
    padding: 22px 20px;
  }

  .enterprise-capability-item,
  .enterprise-flow li,
  .enterprise-scenario-grid article,
  .enterprise-value-grid article {
    min-height: 0;
  }

  .enterprise-spec-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .enterprise-value-grid p {
    font-size: 18px;
  }

  .enterprise-certificate-figure img {
    padding: 10px;
  }

  .v10-hero h1 {
    font-size: 34px;
  }

  .malware-hero {
    background-position: 24% center;
  }

  .malware-hero::before {
    background: rgba(2, 30, 61, 0.72);
  }

  .v10-overview-layout,
  .v10-architecture-layout,
  .v10-deployment-layout,
  .v10-service-layout {
    gap: 32px;
  }

  .v10-fact-strip,
  .v10-capability-grid,
  .v10-edr-steps,
  .v10-service-steps {
    grid-template-columns: 1fr;
  }

  .v10-fact-strip > div {
    padding: 14px 0;
  }

  .v10-fact-strip > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .v10-capability-card {
    min-height: 0;
    padding: 22px 20px;
  }

  .v10-role-list > div,
  .v10-platform-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .v10-architecture-figure,
  .v10-deployment-figure,
  .v10-wide-figure {
    padding: 14px 14px 0;
  }

  .v10-architecture-figure img,
  .v10-deployment-figure img {
    height: auto;
    min-height: 250px;
  }

  .v10-architecture-figure figcaption,
  .v10-deployment-figure figcaption,
  .v10-wide-figure figcaption {
    margin-right: -14px;
    margin-left: -14px;
  }

  .v10-edr-steps li {
    min-height: 0;
  }

  .v10-certificate-figure img,
  .v10-service-figure img {
    height: auto;
    max-height: none;
  }

  .malware-component-list > div,
  .malware-selection-panel dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .malware-platform-grid {
    grid-template-columns: 1fr;
  }

  .malware-platform-grid article + article,
  .malware-platform-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .malware-platform-grid article {
    padding: 24px 18px;
  }

  .malware-selection-panel {
    padding: 24px 20px;
  }

  .sitemap-directory {
    margin-top: 24px;
  }

  .sitemap-block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .sitemap-block-title h2 {
    font-size: 23px;
  }

  .sitemap-group-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sitemap-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
