:root {
  --ink: #18202a;
  --muted: #607080;
  --surface: #ffffff;
  --panel: #f6f8fa;
  --line: #dce3ea;
  --steel: #34495a;
  --brand: #0b5cab;
  --accent: #df7a27;
  --teal: #107466;
  --dark: #111820;
  --shadow: 0 18px 46px rgba(24, 32, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

body.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(223, 122, 39, 0.55);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 227, 234, 0.88);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 34px rgba(24, 32, 42, 0.1);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), #f4b26e);
  pointer-events: none;
}

.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.topbar a {
  color: #fff;
  font-weight: 800;
}

.navbar__inner {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand__mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--brand), #1d7aa2);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand:hover .brand__mark {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 92, 171, 0.22);
}

.brand__copy strong,
.brand__copy small {
  display: block;
}

.brand__copy strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .brand__copy strong {
    background: linear-gradient(90deg, var(--brand) 0%, #1d7aa2 48%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.brand__copy small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #273241;
  font-size: 15px;
  font-weight: 750;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #101820;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(115deg, transparent 0%, transparent 46%, rgba(255, 255, 255, 0.08) 50%, transparent 54%, transparent 100%);
  transform: translateX(-120%);
  animation: hero-scan 7s ease-in-out infinite;
  pointer-events: none;
}

.hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center calc(50% + var(--hero-y, 0px));
  background-size: cover;
  transform: scale(1.04);
}

.hero__slide--switchgear {
  background-image: url("http://files.wxzlx000.com/images/products/gaoya-kaiguangui-shebei/201342113108793.jpg");
  animation: hero-carousel-1 9s infinite;
}

.hero__slide--low-voltage {
  background-image: url("http://files.wxzlx000.com/images/products/diya-chengtao-kaiguanshebei-kongzhishebei/59927a1b2b39d04a4ee1d193cfbd96d1.jpg");
  animation: hero-carousel-2 9s infinite;
}

.hero__slide--substation {
  background-image: url("http://files.wxzlx000.com/images/products/xiangbian/201342113112829.jpg");
  animation: hero-carousel-3 9s infinite;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.94), rgba(17, 24, 32, 0.74) 52%, rgba(17, 24, 32, 0.2)),
    linear-gradient(180deg, rgba(17, 24, 32, 0.1), rgba(17, 24, 32, 0.58));
}

.hero__content {
  position: relative;
  z-index: 3;
  min-height: min(620px, calc(100svh - 110px));
  padding: 88px 0 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  animation: hero-enter 780ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 54px;
  line-height: 1.12;
  font-weight: 900;
}

.hero h1 span {
  display: block;
}

.hero p {
  width: min(720px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions {
  margin-top: 32px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 11px 20px;
  font-weight: 850;
  line-height: 1.3;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(24, 32, 42, 0.18);
}

.button--primary {
  background: var(--accent);
  color: #fff;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.stats-band {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.stats-grid div {
  min-height: 98px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid var(--line);
  padding: 16px 26px;
}

.stats-grid div:last-child {
  border-right: 1px solid var(--line);
}

.stats-grid strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.stats-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-head h2,
.about-copy h3,
.manufacture-panel h2,
.honor-layout h2,
.contact-layout h2 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.22;
}

.section-head p:last-child,
.about-copy p,
.manufacture-panel p,
.product-card p,
.application-grid p,
.honor-layout p,
.contact-layout p {
  color: var(--muted);
}

.section-head p:last-child,
.about-copy p {
  margin: 16px 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.about-copy {
  border-left: 4px solid var(--accent);
  padding-left: 26px;
}

.about-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

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

.capability-strip article {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(24, 32, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.capability-strip article:hover,
.application-grid article:hover {
  border-color: rgba(11, 92, 171, 0.24);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.capability-strip span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.capability-strip strong {
  display: block;
  margin-top: 8px;
  color: var(--steel);
  font-size: 20px;
}

.capability-strip p {
  margin: 10px 0 0;
  color: var(--muted);
}

.manufacture-section,
.product-section {
  background: var(--panel);
}

.product-switcher {
  display: grid;
  gap: 24px;
}

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

.product-tab {
  min-height: 56px;
  display: grid;
  align-content: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--steel);
  padding: 11px 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 8px 22px rgba(24, 32, 42, 0.05);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-tab span,
.product-tab small {
  display: block;
}

.product-tab small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.product-tab:hover {
  border-color: rgba(11, 92, 171, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(24, 32, 42, 0.1);
}

.product-tab.is-active {
  border-color: rgba(11, 92, 171, 0.55);
  background: linear-gradient(135deg, var(--brand), #1d7aa2);
  color: #fff;
  box-shadow: 0 18px 34px rgba(11, 92, 171, 0.18);
}

.product-tab.is-active small {
  color: rgba(255, 255, 255, 0.74);
}

.product-panels {
  min-height: 430px;
}

.product-category-panel {
  animation: panel-enter 280ms ease both;
}

.product-category-panel[hidden] {
  display: none;
}

.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.catalog-head h3 {
  margin: 0;
  color: var(--steel);
  font-size: 28px;
  line-height: 1.26;
}

.catalog-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.catalog-head>span {
  flex: 0 0 auto;
  color: var(--teal);
  font-weight: 900;
}

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

.catalog-pagination {
  margin-top: 24px;
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 28px rgba(24, 32, 42, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.catalog-card:hover {
  border-color: rgba(11, 92, 171, 0.26);
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(24, 32, 42, 0.13);
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef2f7;
  transition: transform 460ms ease, filter 220ms ease;
}

.catalog-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.catalog-card strong {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px 18px 8px;
  color: var(--steel);
  font-size: 18px;
  line-height: 1.36;
  overflow-wrap: anywhere;
}

.catalog-card span {
  padding: 0 18px 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 20, 0.72);
  backdrop-filter: blur(6px);
}

.product-modal__dialog {
  position: relative;
  width: min(1180px, calc(100vw - 48px));
  max-height: calc(100svh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.58fr);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  animation: panel-enter 220ms ease both;
}

.product-modal__dialog img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 120ms ease;
  will-change: transform;
}

.modal-image-viewport {
  overflow: auto;
  min-height: 0;
  height: min(580px, calc(100svh - 96px));
  max-height: calc(100svh - 96px);
  background: #eef2f7;
  cursor: zoom-in;
  -webkit-overflow-scrolling: touch;
}

.modal-image-viewport.is-zoomed {
  cursor: grab;
}

.modal-image-viewport.is-dragging {
  cursor: grabbing;
}

.product-modal__dialog>div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
}

.product-modal__dialog span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.product-modal__dialog h3 {
  margin: 10px 0 24px;
  color: var(--steel);
  font-size: 26px;
  line-height: 1.34;
}

.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(24, 32, 42, 0.14);
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: var(--shadow);
  animation: panel-enter 280ms ease both;
}

.product-panel[hidden] {
  display: none;
}

.product-panel__media {
  min-height: 430px;
  background: #eef2f7;
}

.product-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.product-panel__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px;
}

.product-panel__body span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-panel__body h3 {
  margin: 10px 0 14px;
  color: var(--steel);
  font-size: 32px;
  line-height: 1.24;
}

.product-panel__body p {
  margin: 0;
  color: var(--muted);
}

.product-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 18px;
  color: var(--steel);
  font-weight: 750;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.manufacture-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 38px;
  align-items: start;
}

.manufacture-panel {
  border-radius: 7px;
  background: var(--dark);
  color: #fff;
  padding: 34px;
}

.manufacture-panel h2 {
  color: #fff;
}

.manufacture-panel p {
  color: rgba(255, 255, 255, 0.72);
}

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

.process-list article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process-list article:hover {
  border-color: rgba(16, 116, 102, 0.25);
  transform: translateX(6px);
  box-shadow: 0 12px 28px rgba(24, 32, 42, 0.09);
}

.process-list span {
  color: var(--teal);
  font-weight: 900;
}

.process-list strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
}

.masonry-grid {
  columns: 3 280px;
  column-gap: 22px;
}

.product-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(24, 32, 42, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef2f7;
  transition: transform 500ms ease, filter 240ms ease;
}

.product-card:hover {
  border-color: rgba(11, 92, 171, 0.24);
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(24, 32, 42, 0.14);
}

.product-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.02);
}

.card-large img {
  aspect-ratio: 16 / 10;
}

.card-tall img {
  aspect-ratio: 3 / 4;
}

.product-card div {
  padding: 20px 22px 24px;
}

.product-card span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.product-card h3 {
  margin: 8px 0 10px;
  color: var(--steel);
  font-size: 21px;
  line-height: 1.32;
}

.product-card p {
  margin: 0;
  font-size: 15px;
}

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

.application-grid article {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(180deg, #fff, #f8fafb);
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.application-grid strong {
  color: var(--steel);
  font-size: 20px;
}

.application-grid p {
  margin: 12px 0 0;
}

.honor-section {
  background: #fff;
}

.honor-section .check-list {
  max-width: 760px;
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.honor-section .check-list li {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  color: var(--steel);
  font-weight: 750;
}

.honor-gallery {
  margin-top: 36px;
}

.honor-gallery[hidden] {
  display: none;
}

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

.honor-tab span {
  display: block;
}

.honor-tab {
  min-height: 52px;
  display: grid;
  align-content: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--steel);
  padding: 11px 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 8px 22px rgba(24, 32, 42, 0.05);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.honor-tab small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.honor-tab:hover {
  border-color: rgba(11, 92, 171, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(24, 32, 42, 0.1);
}

.honor-tab.is-active {
  border-color: rgba(11, 92, 171, 0.55);
  background: linear-gradient(135deg, var(--brand), #1d7aa2);
  color: #fff;
  box-shadow: 0 18px 34px rgba(11, 92, 171, 0.18);
}

.honor-tab.is-active small {
  color: rgba(255, 255, 255, 0.74);
}

.honor-gallery__meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.honor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.honor-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 28px rgba(24, 32, 42, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.honor-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
  background: #eef2f7;
  transition: transform 500ms ease;
}

.honor-card:hover {
  border-color: rgba(223, 122, 39, 0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.honor-card:hover img {
  transform: scale(1.02);
}

.honor-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.honor-pagination__btn,
.honor-pagination__page {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--steel);
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.honor-pagination__btn:hover,
.honor-pagination__page:hover {
  border-color: rgba(11, 92, 171, 0.28);
}

.honor-pagination__page.is-active {
  border-color: rgba(11, 92, 171, 0.55);
  background: var(--brand);
  color: #fff;
}

.honor-pagination__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.honor-modal[hidden] {
  display: none;
}

.honor-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
}

.honor-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 20, 0.72);
  backdrop-filter: blur(6px);
}

.honor-modal__dialog {
  position: relative;
  width: min(1180px, calc(100vw - 48px));
  max-height: calc(100svh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.58fr);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  animation: panel-enter 220ms ease both;
}

.honor-modal__dialog img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 120ms ease;
  will-change: transform;
}

.honor-modal__dialog>div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
}

.honor-modal__dialog span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.honor-modal__dialog h3 {
  margin: 10px 0 0;
  color: var(--steel);
  font-size: 24px;
  line-height: 1.34;
}

.honor-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(24, 32, 42, 0.14);
}

.contact-section {
  background: var(--dark);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 40px;
  align-items: start;
}

.contact-section .section-kicker {
  color: #f2a165;
}

.contact-layout h2 {
  color: #fff;
}

.contact-layout>div:first-child p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-card {
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.contact-card strong {
  display: block;
  color: var(--steel);
  font-size: 20px;
}

.contact-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.contact-card .contact-wide {
  grid-column: 1 / -1;
}

.contact-card div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.contact-card dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.contact-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  background: #0d1217;
  color: rgba(255, 255, 255, 0.78);
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.site-footer strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 850;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panel-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-carousel-1 {
  0% {
    opacity: 1;
    transform: scale(1.02);
  }

  23.33% {
    opacity: 1;
    transform: scale(1.06);
  }

  33.33% {
    opacity: 0;
    transform: scale(1.08);
  }

  34% {
    opacity: 0;
    transform: scale(1.0);
  }

  90% {
    opacity: 0;
    transform: scale(1.0);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes hero-carousel-2 {
  0% {
    opacity: 0;
    transform: scale(1.0);
  }

  23.33% {
    opacity: 0;
    transform: scale(1.0);
  }

  33.33% {
    opacity: 1;
    transform: scale(1.02);
  }

  56.67% {
    opacity: 1;
    transform: scale(1.06);
  }

  66.67% {
    opacity: 0;
    transform: scale(1.08);
  }

  68% {
    opacity: 0;
    transform: scale(1.0);
  }

  100% {
    opacity: 0;
    transform: scale(1.0);
  }
}

@keyframes hero-carousel-3 {
  0% {
    opacity: 0;
    transform: scale(1.0);
  }

  56.67% {
    opacity: 0;
    transform: scale(1.0);
  }

  66.67% {
    opacity: 1;
    transform: scale(1.02);
  }

  90% {
    opacity: 1;
    transform: scale(1.06);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes hero-scan {

  0%,
  42% {
    transform: translateX(-120%);
  }

  58%,
  100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  body.reveal-ready .reveal-item {
    opacity: 1;
    transform: none;
  }

  .hero__slide {
    opacity: 0;
    animation: none !important;
    transform: none;
  }

  .hero__slide:first-child {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .product-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-panel__media,
  .product-panel__media img {
    min-height: 320px;
  }

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

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

  .product-modal__dialog img {
    height: 100%;
    min-height: 0;
  }

  .modal-image-viewport {
    height: min(360px, 58svh);
    max-height: 58svh;
  }

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

  .honor-modal__dialog {
    grid-template-columns: 1fr;
  }

  .honor-modal__dialog img {
    height: 100%;
    min-height: 0;
  }

  .modal-image-viewport {
    height: min(360px, 58svh);
    max-height: 58svh;
  }

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

@media (max-width: 900px) {
  html {
    scroll-padding-top: 72px;
  }

  .topbar {
    display: none;
  }

  .navbar__inner {
    min-height: 70px;
    padding-right: 54px;
  }

  .brand__copy strong {
    font-size: 16px;
  }

  .brand__copy small {
    display: none;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-flex;
    transform: translateY(-50%);
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px 10px;
  }

  .nav-links a::after {
    display: none;
  }

  .about-grid,
  .capability-strip,
  .manufacture-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-grid div:nth-child(2n) {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 24px));
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__copy strong {
    max-width: 240px;
    white-space: normal;
    font-size: 15px;
  }

  .hero__content {
    box-sizing: border-box;
    width: min(1180px, calc(100% - 24px));
    max-width: none;
    margin: 0 auto;
    min-height: auto;
    padding: 72px 0 64px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .hero p {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero__actions {
    width: 100%;
    max-width: 100%;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .stats-grid div {
    min-width: 0;
    min-height: 82px;
    padding: 16px 14px;
  }

  .stats-grid span {
    overflow-wrap: anywhere;
  }

  .section {
    padding: 64px 0;
  }

  .section-head h2,
  .about-copy h3,
  .manufacture-panel h2,
  .honor-layout h2,
  .contact-layout h2 {
    font-size: 26px;
  }

  .about-copy {
    padding-left: 18px;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    columns: 1;
  }

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

  .product-tab {
    min-height: 48px;
    text-align: left;
  }

  .catalog-head {
    display: grid;
    align-items: start;
    gap: 8px;
  }

  .catalog-head h3 {
    font-size: 24px;
  }

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

  .catalog-card strong {
    min-height: auto;
    padding: 12px 10px 8px;
    font-size: 13px;
  }

  .catalog-card span {
    padding: 0 10px 12px;
    font-size: 12px;
  }

  .product-panels {
    min-height: 0;
  }

  .product-panel__media,
  .product-panel__media img {
    min-height: 220px;
  }

  .product-panel__body {
    padding: 24px;
  }

  .product-panel__body h3 {
    font-size: 25px;
  }

  .product-modal {
    padding: 14px;
  }

  .product-modal__dialog {
    max-height: calc(100svh - 28px);
  }

  .product-modal__dialog img {
    height: 100%;
    min-height: 0;
  }

  .modal-image-viewport {
    height: min(280px, 48svh);
    max-height: 48svh;
  }

  .product-modal__dialog>div:last-child {
    padding: 24px;
  }

  .product-modal__dialog h3 {
    font-size: 22px;
  }

  .honor-tabs {
    max-width: none;
  }

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

  .honor-modal {
    padding: 14px;
  }

  .honor-modal__dialog {
    max-height: calc(100svh - 28px);
  }

  .honor-modal__dialog img {
    height: 100%;
    min-height: 0;
  }

  .modal-image-viewport {
    height: min(280px, 48svh);
    max-height: 48svh;
  }

  .honor-modal__dialog>div:last-child {
    padding: 24px;
  }

  .honor-modal__dialog h3 {
    font-size: 20px;
  }

  .application-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-card dl {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
