:root {
  --bg: #f5f8fb;
  --surface: #ffffff;
  --ink: #102033;
  --muted: #5d6979;
  --line: #dbe5ef;
  --primary: #1168b3;
  --primary-strong: #0c4f8c;
  --cyan: #16b6d8;
  --teal: #00a6a6;
  --amber: #f2a900;
  --graphite: #17212f;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(16, 32, 51, 0.12);
  font-family: "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--bg); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(219,229,239,0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 32px rgba(16,32,51,0.08); background: rgba(255,255,255,0.96); }
.header-inner { width: min(1240px, calc(100% - 32px)); height: 76px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; width: 210px; height: 56px; flex: 0 0 auto; }
.brand img { width: 100%; max-height: 56px; height: auto; object-fit: contain; }
.main-nav { display: flex; align-items: stretch; gap: 2px; height: 100%; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: grid; place-items: center; height: 100%; padding: 0 16px; color: #26384f; font-size: 15px; font-weight: 700; }
.nav-item > a::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: 0; height: 3px; border-radius: 999px; background: var(--cyan); transform: scaleX(0); transition: transform 180ms ease; }
.nav-item:hover > a, .nav-item:focus-within > a { color: var(--primary); }
.nav-item:hover > a::after, .nav-item:focus-within > a::after { transform: scaleX(1); }
.mega-panel { position: absolute; top: 100%; right: 0; display: none; grid-template-columns: repeat(2, minmax(190px, 1fr)); gap: 22px; width: 500px; padding: 22px; background: white; border: 1px solid var(--line); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow); }
.nav-item:hover .mega-panel, .nav-item:focus-within .mega-panel { display: grid; }
.mega-panel strong { display: block; margin-bottom: 10px; font-size: 14px; }
.mega-panel a { display: block; padding: 7px 0; color: var(--muted); font-size: 14px; }
.mega-panel a:hover { color: var(--primary); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }

.home-hero, .page-hero { --hero-overlay: linear-gradient(90deg, rgba(5,14,26,0.78) 0%, rgba(5,14,26,0.56) 34%, rgba(5,14,26,0.22) 66%, rgba(5,14,26,0.08) 100%); position: relative; overflow: hidden; color: white; background-image: var(--hero-overlay); background-size: cover; background-position: center; isolation: isolate; }
.home-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(circle at 74% 34%, rgba(22,182,216,0.28), transparent 30%), linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0)); animation: heroGlow 8s ease-in-out infinite alternate; pointer-events: none; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.14)); pointer-events: none; }
.home-hero { min-height: 640px; display: flex; align-items: center; }
.page-hero { min-height: 480px; padding: 120px 0 92px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 520px); gap: 58px; align-items: center; }
.page-hero-grid { grid-template-columns: minmax(0, 760px); }
.hero-copy { position: relative; z-index: 2; }
.home-hero h1, .page-hero h1 { margin: 0 0 22px; font-size: clamp(38px, 6vw, 70px); line-height: 1.08; letter-spacing: 0; }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); }
.home-hero p, .page-hero p { max-width: 720px; color: rgba(255,255,255,0.88); font-size: 18px; }
.eyebrow { margin: 0 0 12px; color: var(--cyan); font-weight: 900; letter-spacing: 0; text-transform: uppercase; font-size: 13px; }
.hero-stage { position: relative; min-height: 380px; display: grid; place-items: center; opacity: 0.92; }
.hero-chip { width: min(440px, 100%); border-radius: var(--radius); filter: drop-shadow(0 28px 48px rgba(0,0,0,0.28)); animation: floatChip 5.5s ease-in-out infinite; }
.hero-stage span { position: absolute; padding: 7px 11px; border: 1px solid rgba(255,255,255,0.32); border-radius: 999px; color: white; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); font-size: 12px; font-weight: 800; }
.hero-stage span:nth-of-type(1) { left: 8%; top: 18%; }
.hero-stage span:nth-of-type(2) { right: 4%; top: 34%; animation: floatChip 4.8s ease-in-out infinite reverse; }
.hero-stage span:nth-of-type(3) { left: 20%; bottom: 12%; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border: 1px solid var(--primary); border-radius: var(--radius); background: var(--primary); color: white; font-weight: 800; cursor: pointer; transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-1px); background: var(--primary-strong); box-shadow: 0 10px 24px rgba(17,104,179,0.22); }
.button-secondary { background: rgba(255,255,255,0.08); color: white; border-color: rgba(255,255,255,0.38); }
.button-secondary:hover { background: rgba(255,255,255,0.14); }
.button-light { background: white; color: var(--primary); border-color: white; }
.button-muted { background: white; color: var(--primary); border-color: var(--line); }
.button-muted:hover { background: #eef7ff; color: var(--primary-strong); }

.home-hero-carousel {
  min-height: min(760px, calc(100vh - 24px));
  display: grid;
  align-items: stretch;
  background: #081424;
}
.home-hero-carousel::before { display: none; }
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  transition: transform 900ms cubic-bezier(.2,.72,.2,1);
  will-change: transform;
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  transform: scale(1.018);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,14,26,0.82) 0%, rgba(7,25,46,0.62) 36%, rgba(7,25,46,0.12) 68%, rgba(7,25,46,0) 100%),
    linear-gradient(0deg, rgba(5,14,26,0.16), rgba(5,14,26,0));
}
.home-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: inherit;
  align-content: end;
  padding: 120px 0 66px;
}
.hero-panels {
  position: relative;
  display: grid;
  min-height: 390px;
  align-items: end;
}
.hero-panel {
  grid-area: 1 / 1;
  max-width: 650px;
  opacity: 0;
  transform: translateY(18px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 520ms ease, transform 520ms ease, visibility 520ms ease;
}
.hero-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.hero-panel-slogan {
  justify-self: center;
  align-self: end;
  max-width: 920px;
  padding-bottom: 46px;
  text-align: center;
}
.hero-panel-slogan h1 {
  margin-bottom: 0;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1.12;
}
.hero-panel-slogan .eyebrow { color: rgba(255,255,255,0.82); }
.home-hero-carousel .hero-copy { max-width: 620px; }
.home-hero-carousel h1 { font-size: clamp(38px, 5.2vw, 64px); }
.home-hero-carousel .hero-copy p { max-width: 580px; }
.hero-rotator-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  justify-self: end;
  justify-content: flex-end;
}
.hero-rotator-controls button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 72px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.74);
  font-weight: 900;
  cursor: pointer;
}
.hero-rotator-controls button span {
  display: block;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  overflow: hidden;
}
.hero-rotator-controls button span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-rotator-controls button.is-active { color: white; }
.hero-rotator-controls button.is-active span::after { animation: heroProgress 4.4s linear forwards; }

.section { padding: 86px 0; background: white; }
.section-muted { background: var(--bg); }
.section-header { max-width: 780px; margin: 0 0 36px; }
.section-header h2 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 42px); line-height: 1.15; letter-spacing: 0; }
.section-header p { color: var(--muted); margin: 0; }
.lead { color: var(--muted); font-size: 17px; }
.split-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); gap: 40px; align-items: start; }
.about-overview { align-items: center; }
.about-overview .stats-panel { align-self: center; transform: translateY(14px); }

.home-metrics {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(219,229,239,0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.metrics-row span {
  display: grid;
  gap: 6px;
  min-height: 104px;
  align-content: center;
  padding: 18px 20px;
  color: var(--muted);
  border-left: 1px solid var(--line);
}
.metrics-row span:first-child { border-left: 0; }
.metrics-row b { color: var(--primary); font-size: 30px; line-height: 1; }
.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}
.capability-stack {
  display: grid;
  gap: 14px;
}
.capability-stack article {
  min-height: 112px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17,104,179,0.08), rgba(22,182,216,0.08)),
    white;
}
.capability-stack strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 18px;
}
.capability-stack span { color: var(--muted); }
.home-solutions .section-header,
.home-products .section-header,
.home-news .section-header { margin-left: auto; margin-right: auto; text-align: center; }
.home-solutions-grid .solution-card:first-child { grid-column: span 1; }
.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.home-news-card {
  display: grid;
  grid-template-rows: 190px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 24px rgba(16,32,51,0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.home-news-card:hover { transform: translateY(-6px); border-color: rgba(17,104,179,0.28); box-shadow: var(--shadow); }
.home-news-card img { width: 100%; height: 100%; object-fit: contain; padding: 18px; background: #eef7ff; transition: transform 500ms ease; }
.home-news-card:hover img { transform: scale(1.04); }
.home-news-card > div { padding: 20px; }
.home-news-card span { display: block; margin-bottom: 8px; color: var(--teal); font-size: 13px; font-weight: 900; }
.home-news-card h3 { margin: 0 0 10px; line-height: 1.28; }
.home-news-card p { margin: 0; color: var(--muted); }

.stats-panel, .spec-panel, .contact-box, .map-panel, .content-block, .mini-card, .job-card, .honor-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(16,32,51,0.05); }
.stats-panel { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 160px; }
.stats-panel div { display: grid; place-items: center; padding: 24px 14px; text-align: center; border-left: 1px solid var(--line); }
.stats-panel div:first-child { border-left: 0; }
.stats-panel strong { color: var(--primary); font-size: 38px; line-height: 1; }
.stats-panel span { color: var(--muted); font-size: 14px; }
.card-grid { display: grid; gap: 22px; }
.card-grid.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.solutions, .card-grid.mini, .card-grid.honors { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.product-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 28px;
  padding: 28px 24px;
  background: #f4f6fb;
  border-radius: var(--radius);
}
.product-sidebar section { display: grid; gap: 14px; }
.product-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.product-sidebar h2 {
  position: relative;
  margin: 0;
  padding-left: 14px;
  color: #26384f;
  font-size: 20px;
  line-height: 1.25;
}
.product-sidebar h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 4px;
  height: 1.1em;
  border-radius: 999px;
  background: var(--primary);
}
.product-sidebar-head > a {
  color: #1b2575;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
}
.product-sidebar-links {
  display: grid;
  gap: 10px;
}
.product-sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  background: white;
  border: 1px solid transparent;
  border-radius: 0;
  color: #26384f;
  font-weight: 800;
}
.product-sidebar-links a:hover,
.product-sidebar-links a.is-active {
  border-color: rgba(17,104,179,0.26);
  color: var(--primary);
  background: #f9fcff;
}
.product-sidebar-links em {
  flex: 0 0 auto;
  color: #9aa7b5;
  font-style: normal;
  font-size: 13px;
}
.product-results { min-width: 0; }
.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.product-toolbar span {
  color: #1b2575;
  font-weight: 900;
}
.product-toolbar strong {
  color: var(--muted);
  font-size: 14px;
}

.product-card, .solution-card, .news-card, .mini-card, .job-card, .honor-card, .honor-slide, .content-block, .contact-box, .download-list article { position: relative; overflow: hidden; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.product-card, .solution-card, .news-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(16,32,51,0.05); }
.product-card::after, .solution-card::after, .mini-card::after, .honor-card::after, .honor-slide::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(22,182,216,0.16), transparent 34%); opacity: 0; transition: opacity 180ms ease; }
.product-card:hover, .solution-card:hover, .mini-card:hover, .honor-card:hover, .honor-slide:hover, .news-card:hover { transform: translateY(-6px); border-color: rgba(17,104,179,0.28); box-shadow: var(--shadow); }
.product-card:hover::after, .solution-card:hover::after, .mini-card:hover::after, .honor-card:hover::after, .honor-slide:hover::after { opacity: 1; }
.product-media, .solution-media { position: relative; display: block; background: linear-gradient(145deg, #edf7ff, #f9fbff); }
.product-media { aspect-ratio: 1.75 / 1; padding: 18px; }
.solution-media { aspect-ratio: 1.6 / 1; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: contain; transition: transform 240ms ease; }
.solution-media img, .news-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.product-card:hover img, .solution-card:hover img, .news-card:hover img { transform: scale(1.04); }
.product-media span { position: absolute; left: 14px; top: 14px; padding: 4px 8px; border-radius: 6px; background: rgba(17,104,179,0.1); color: var(--primary); font-size: 12px; font-weight: 900; }
.product-body, .solution-card > div { padding: 20px; }
.meta { margin: 0 0 8px; color: var(--teal); font-size: 13px; font-weight: 900; }
.product-card h3, .solution-card h3, .mini-card h3, .news-card h2 { margin: 0 0 10px; font-size: 20px; line-height: 1.25; }
.product-card p, .solution-card p, .mini-card p, .news-card p { color: var(--muted); margin: 0; }
.product-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}
.product-spec-list div {
  min-width: 0;
  padding: 10px 12px;
  background: #f7fafc;
  border: 1px solid #e7edf5;
  border-radius: 6px;
}
.product-spec-list dt {
  color: #728094;
  font-size: 12px;
  line-height: 1.2;
}
.product-spec-list dd {
  margin: 5px 0 0;
  color: #20344d;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}
.tag-row, .pill-set { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag-row span, .pill-set span { border: 1px solid var(--line); border-radius: 999px; padding: 4px 9px; color: #405066; font-size: 12px; background: #fbfcfe; }
.filter-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-nav a { border: 1px solid var(--line); border-radius: var(--radius); padding: 9px 13px; background: white; color: var(--muted); font-weight: 800; }
.filter-nav a.is-active, .filter-nav a:hover { border-color: var(--primary); color: var(--primary); background: #eef7ff; }

.detail-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 34px; align-items: start; }
.side-nav { position: sticky; top: 96px; display: grid; gap: 8px; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.side-nav a { padding: 9px 10px; border-radius: 6px; color: var(--muted); font-weight: 800; }
.side-nav a:hover { background: #eef7ff; color: var(--primary); }
.detail-main { display: grid; gap: 22px; }
.content-block { padding: 30px; }
.content-block.band { background: linear-gradient(135deg, #f4f9ff, #eefcfb); }
.feature-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 24px; color: #31445c; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: white; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: #25364a; background: #f3f7fb; font-size: 14px; }
.spec-panel { padding: 26px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; }
.metric-row span { display: grid; gap: 4px; min-height: 82px; align-content: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; text-align: center; }
.metric-row b { color: var(--primary); font-size: 22px; }

.timeline { position: relative; display: grid; gap: 16px; }
.timeline article { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.timeline time { color: var(--primary); font-size: 26px; font-weight: 900; }
.timeline p { margin: 0; color: var(--muted); }
.mini-card, .job-card, .honor-card { padding: 24px; }
.job-card span { display: inline-flex; margin-top: 12px; color: var(--primary); font-weight: 800; }
.recruit-embed { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr); gap: 26px; align-items: stretch; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 24px rgba(16,32,51,0.05); }
.recruit-copy { display: grid; align-content: center; gap: 12px; min-width: 0; }
.recruit-copy h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); }
.recruit-copy p { margin: 0; color: var(--muted); }
.recruit-preview { min-width: 0; display: grid; gap: 16px; align-content: center; min-height: 420px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(135deg, #f8fbff, #eef8fb); }
.recruit-preview-head { display: grid; gap: 8px; }
.recruit-preview-head span { color: var(--teal); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.recruit-preview-head strong { color: var(--ink); font-size: clamp(24px, 3vw, 34px); line-height: 1.2; }
.recruit-preview-head p { margin: 0; color: var(--muted); }
.recruit-job-list { display: grid; gap: 12px; }
.recruit-job-list article { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 6px 14px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.84); }
.recruit-job-list h3 { margin: 0; font-size: 17px; }
.recruit-job-list strong { color: var(--primary); }
.recruit-job-list p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 14px; }
.honor-showcase { display: grid; gap: 28px; }
.honor-copy { display: grid; gap: 10px; max-width: 760px; margin: 0 auto; text-align: center; }
.honor-copy h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.15; }
.honor-copy p { margin: 0; color: var(--muted); }
.honor-marquee { position: relative; overflow: hidden; padding: 8px 0 28px; }
.honor-marquee::before, .honor-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; z-index: 2; width: 92px; pointer-events: none; }
.honor-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), rgba(245,247,250,0)); }
.honor-marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), rgba(245,247,250,0)); }
.honor-track { display: flex; gap: 22px; width: max-content; animation: honorScroll 40s linear infinite; }
.honor-marquee:hover .honor-track { animation-play-state: paused; }
.honor-slide { flex: 0 0 315px; display: grid; justify-items: center; text-align: center; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 8px 24px rgba(16,32,51,0.05); }
.honor-slide img, .honor-card img { display: block; width: 100%; aspect-ratio: 1.18 / 1; object-fit: contain; object-position: center; background: #f7fafc; border-radius: var(--radius); margin-bottom: 16px; }
.honor-slide h3 { width: 100%; margin: 0; min-height: 48px; color: #20344d; font-size: 17px; line-height: 1.35; text-align: center; }
.honor-track .honor-slide.reveal, .honor-track .honor-slide.reveal.is-visible { opacity: 1; transform: none; }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.contact-box, .map-panel { padding: 26px; min-height: 210px; }
.contact-qr-box img { display: block; width: 126px; height: 126px; margin: 0 auto 10px; padding: 6px; border: 1px solid var(--line); border-radius: 10px; object-fit: contain; object-position: center; background: white; }
.contact-address-box { display: grid; align-content: center; gap: 8px; background: linear-gradient(135deg, rgba(17,104,179,0.08), rgba(0,166,166,0.1)); }
.contact-address-box span { color: var(--teal); font-weight: 900; }
.contact-address-box p { margin: 0; color: #31445c; }
.consult-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: stretch; }
.consult-info-card { display: grid; align-content: center; gap: 22px; min-height: 330px; padding: 40px; }
.consult-info-card h2 { margin: 0; font-size: clamp(28px, 3vw, 36px); line-height: 1.2; }
.consult-info-list { display: grid; gap: 18px; }
.consult-info-list p { margin: 0; color: #001b3a; font-size: 18px; line-height: 1.75; }
.consult-info-list span { display: inline-block; color: #3f5168; min-width: 60px; }
.consult-qr-card { justify-items: center; text-align: center; }
.consult-qr-card img { width: 168px; height: 168px; padding: 8px; border: 1px solid var(--line); border-radius: 12px; object-fit: contain; object-position: center; background: white; }
.consult-qr-card p { margin: 0; color: #001b3a; font-size: 18px; }
.contact-map-showcase { position: relative; margin-top: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.contact-map-showcase img { display: block; width: 100%; aspect-ratio: 16 / 7.2; object-fit: cover; }
.contact-map-showcase figcaption { position: absolute; left: 26px; right: 26px; bottom: 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; border: 1px solid rgba(255,255,255,0.45); border-radius: var(--radius); color: white; background: rgba(7,21,37,0.72); backdrop-filter: blur(12px); }
.contact-map-showcase figcaption strong { font-size: 18px; }
.contact-map-showcase figcaption span { text-align: right; opacity: 0.88; }
.map-panel { display: grid; align-content: center; background: linear-gradient(135deg, rgba(17,104,179,0.1), rgba(0,166,166,0.1)), repeating-linear-gradient(45deg, #f5f8fb, #f5f8fb 12px, #edf2f7 12px, #edf2f7 24px); }
.map-panel span { color: var(--teal); font-weight: 900; }
.map-panel strong { font-size: 28px; }
.download-list { display: grid; gap: 12px; }
.download-list article { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.download-list h3 { margin: 4px 0; }
.download-list span { color: var(--teal); font-weight: 900; font-size: 13px; }
.download-list p { margin: 0; color: var(--muted); }
.icon-button { min-width: 74px; height: 40px; border: 1px solid var(--primary); border-radius: var(--radius); background: white; color: var(--primary); font-weight: 900; cursor: pointer; }
.icon-button:hover { background: #eef7ff; }
.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 30px; align-items: start; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.contact-form label { display: grid; gap: 8px; color: #26384f; font-weight: 800; }
.contact-form label:nth-child(6), .contact-form button, .form-note { grid-column: 1 / -1; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 13px; font: inherit; }
textarea { resize: vertical; }
.form-note { min-height: 24px; margin: 0; color: var(--teal); font-weight: 800; }
.news-filter { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 34px; }
.news-filter a { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; border: 1px solid var(--line); border-radius: 8px; padding: 0 22px; background: white; color: #56657a; font: inherit; font-size: 18px; font-weight: 800; letter-spacing: 0; text-decoration: none; transition: border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.news-filter a.is-active, .news-filter a:hover { border-color: var(--primary); color: var(--primary); background: #f7fbff; box-shadow: 0 8px 20px rgba(17,104,179,0.08); }
.news-filter a:focus-visible { outline: 3px solid rgba(17,104,179,0.22); outline-offset: 2px; }
.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8fbff, #eef8fb);
  box-shadow: 0 8px 24px rgba(16,32,51,0.05);
}
.news-featured img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: contain;
  padding: 24px;
  border-radius: var(--radius);
  background: #eef7ff;
}
.news-featured h2 { margin: 8px 0 12px; font-size: clamp(28px, 4vw, 42px); line-height: 1.16; }
.news-featured time { color: var(--muted); font-weight: 800; }
.news-list { display: grid; gap: 22px; }
.news-card { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 24px; padding: 20px; }
.news-card img { width: 100%; height: 180px; object-fit: contain; padding: 16px; background: #f4f8ff; border-radius: var(--radius); }
.news-card span { display: inline-flex; margin-right: 12px; color: var(--primary); font-size: 13px; font-weight: 900; }
.news-card time { color: var(--teal); font-weight: 900; }
.news-detail-meta { color: var(--teal); font-weight: 900; }
.text-link { display: inline-flex; margin-top: 14px; color: var(--primary); font-weight: 900; }
.narrow { max-width: 860px; }
.article { font-size: 17px; }
.article p { color: #2f4158; }
.article figure { margin: 34px 0; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #f8fbff; }
.article figure img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 6px; }
.article figcaption { margin-top: 12px; color: var(--muted); font-size: 14px; }
.article-source { margin: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #f8fbff; }
.article-source span { color: var(--muted); font-size: 14px; }
.article-source .button { min-height: 42px; padding: 0 22px; font-size: 15px; }
.news-detail-summary { font-size: 18px; line-height: 1.9; }
.wechat-original { margin-top: 30px; color: #24364d; font-size: 16px; line-height: 1.9; overflow: hidden; }
.wechat-original section, .wechat-original p, .wechat-original span { max-width: 100% !important; box-sizing: border-box; }
.wechat-original p { margin: 0 0 16px; color: #24364d; }
.wechat-original img { display: block; max-width: 100% !important; height: auto !important; margin: 14px auto; border-radius: 6px; }
.wechat-original a { color: var(--primary); }
.centered { text-align: center; }
.block-gap { margin-top: 24px; }
.modal { position: fixed; inset: 0; z-index: 60; display: none; place-items: center; padding: 20px; }
.modal.is-open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(7,21,37,0.55); }
.modal-card { position: relative; width: min(460px, 100%); padding: 28px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.modal-card .button-secondary { color: var(--primary); border-color: var(--line); background: white; }
.modal-close { position: absolute; right: 14px; top: 12px; border: 0; background: transparent; font-size: 26px; cursor: pointer; }

.site-footer { --hero-overlay: linear-gradient(90deg, rgba(24,33,92,0.9) 0%, rgba(12,25,65,0.76) 42%, rgba(3,15,28,0.95) 100%); position: relative; color: white; background-color: #071525; background-image: var(--hero-overlay); background-size: cover; background-position: center; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 64% 36%, rgba(22,182,216,0.18), transparent 24%); pointer-events: none; }
.footer-shell { position: relative; z-index: 1; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 34px 0 20px; }
.footer-head { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer-brand { display: inline-flex; align-items: center; width: 190px; min-height: 56px; }
.footer-brand img { width: 100%; max-height: 56px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-slogan { margin: 0; font-size: clamp(22px, 2.7vw, 34px); font-weight: 900; letter-spacing: 0; text-align: right; }
.footer-main { display: grid; grid-template-columns: minmax(0, 1fr) 520px; gap: 44px; padding: 34px 0 28px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.footer-links h3, .footer-contact h3 { margin: 0 0 13px; font-size: 16px; line-height: 1.2; }
.footer-links a { display: block; margin: 7px 0; color: #fff; font-size: 14px; font-weight: 400; opacity: 0.88; }
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-contact { display: grid; grid-template-columns: minmax(0, 1fr) 174px; gap: 26px; padding-left: 40px; border-left: 1px solid rgba(255,255,255,0.13); }
.footer-contact section { display: grid; gap: 7px; }
.footer-contact h3 { display: flex; align-items: center; gap: 10px; }
.footer-contact h3 span { color: var(--cyan); font-size: 15px; line-height: 1; }
.footer-contact small { color: #fff; font-size: 12px; font-weight: 400; opacity: 0.72; }
.footer-contact-value { color: #fff; font-size: 16px; line-height: 1.35; font-weight: 400; overflow-wrap: anywhere; }
.footer-address { margin: 0; color: #fff; font-size: 14px; line-height: 1.55; font-weight: 400; opacity: 0.9; white-space: nowrap; }
.footer-qr { margin: 0; align-self: start; text-align: center; }
.footer-qr img { display: block; width: 172px; height: 172px; margin: 0 auto; padding: 6px; object-fit: contain; object-position: center; background: white; border-radius: 10px; }
.footer-qr figcaption { margin-top: 8px; color: #fff; font-size: 12px; font-weight: 400; opacity: 0.82; }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; gap: 18px; color: #fff; font-size: 13px; font-weight: 400; opacity: 0.78; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes floatChip { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes heroGlow { from { opacity: 0.62; transform: scale(1); } to { opacity: 1; transform: scale(1.04); } }
@keyframes heroProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes honorScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 1024px) {
  .card-grid.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid.solutions, .card-grid.mini, .card-grid.honors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .split-layout, .form-layout, .home-intro-grid, .news-featured, .product-layout, .recruit-embed { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .home-hero { min-height: auto; padding: 96px 0 70px; }
  .home-hero-carousel { min-height: 680px; padding: 0; }
  .home-hero-content { align-items: flex-end; }
  .metrics-row, .home-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-contact { padding-left: 0; padding-top: 30px; border-left: 0; border-top: 1px solid rgba(255,255,255,0.12); }
  .footer-address { white-space: normal; }
}
@media (max-width: 760px) {
  .header-inner { height: 66px; }
  .brand { width: 170px; height: 50px; }
  .brand img { max-height: 50px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; left: 16px; right: 16px; top: 66px; display: none; height: auto; max-height: calc(100dvh - 86px); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; padding: 10px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
  .main-nav.is-open { display: block; }
  .nav-item { display: block; }
  .nav-item > a { display: block; height: auto; padding: 11px 10px; }
  .nav-item > a::after { display: none; }
  .mega-panel { position: static; display: grid; width: 100%; grid-template-columns: 1fr; box-shadow: none; border: 0; padding: 8px 16px 16px; }
  .home-hero h1, .page-hero h1 { font-size: 38px; }
  .home-hero-carousel { min-height: 640px; }
  .home-hero-content { display: grid; align-content: end; padding: 94px 0 40px; }
  .hero-panels { min-height: 380px; }
  .hero-panel-slogan { padding-bottom: 30px; }
  .hero-panel-slogan h1 { font-size: 48px; }
  .hero-rotator-controls { min-width: 0; justify-self: start; justify-content: flex-start; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,14,26,0.9), rgba(5,14,26,0.48)); }
  .card-grid.products, .card-grid.solutions, .card-grid.mini, .card-grid.honors, .stats-panel, .metric-row, .metrics-row, .detail-layout, .contact-form, .consult-info-grid, .news-card, .news-featured, .home-news-grid, .footer-links, .product-spec-list, .footer-contact, .recruit-embed {
    grid-template-columns: 1fr;
  }
  .home-metrics { margin-top: 0; }
  .metrics-row span { border-left: 0; border-top: 1px solid var(--line); }
  .metrics-row span:first-child { border-top: 0; }
  .stats-panel div { border-left: 0; border-top: 1px solid var(--line); }
  .stats-panel div:first-child { border-top: 0; }
  .about-overview .stats-panel { transform: none; }
  .side-nav { position: static; }
  .download-list article, .footer-bottom { align-items: stretch; flex-direction: column; }
  .honor-marquee::before, .honor-marquee::after { width: 36px; }
  .honor-slide { flex-basis: 260px; }
  .consult-info-card { min-height: 0; padding: 28px; }
  .consult-info-list p, .consult-qr-card p { font-size: 16px; }
  .contact-map-showcase img { aspect-ratio: 1.35 / 1; }
  .contact-map-showcase figcaption { position: static; display: grid; margin: 0; border: 0; border-radius: 0; color: var(--ink); background: white; backdrop-filter: none; }
  .contact-map-showcase figcaption span { text-align: left; color: var(--muted); }
  .footer-head { align-items: flex-start; flex-direction: column; }
  .footer-slogan { text-align: left; }
  .footer-main { padding-top: 32px; }
  .footer-qr { text-align: left; }
  .footer-contact-value { font-size: 16px; }
  .container { width: min(100% - 28px, 1180px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .honor-track { transform: none; }
  .reveal { opacity: 1; transform: none; }
}