:root {
  /* 闁稿繈鍔庨悵顖炴嚄鐏炵偓鐝紓浣哄枍缁斿瓨绋夋潪鎵憿闁告牞宕甸弸?闁轰焦鐟ㄩ崑娑欑瑜嶉幖褔宕犳潪鎵伇闁煎嘲顕▓鎴澝归崨鐗堟啱闁肩顕滅槐婵嬫焼閸喖甯抽幖瀛樻礋閸庢挳鎯囩€ｎ厽宕抽柡澶堝劚閸庢岸寮藉畡鎵闁哄偆鍘奸惇?*/
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: var(--line-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "iconfont";
  src:
    url("../../image/font/iconfont.woff2") format("woff2"),
    url("../../image/font/iconfont.woff") format("woff"),
    url("../../image/font/iconfont.ttf") format("truetype"),
    url("../../image/font/iconfont.eot");
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-img_global_logo_newcolor::before {
  content: "\e632";
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.92;
}

/* 闂侇剙鐏濋崢銈囩矓鐠囨彃袟缂佹棏鍨埀顒佺瑏over 缂侇喗眉缂嶅洭鍨惧┑鍡╁殼闁奸攱娼欓妵鏃堟焾?Logo/閻庝絻澹堥崺鍛村矗濡棿绱?*/
p {
  margin: 0;
}


.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-tech,
  .btn-tech::after {
    transition: none;
  }

  .product-card-arrow {
    transition: none;
  }

  .product-panel,
  .product-panel-accent,
  .product-panel-icon {
    animation: none;
  }

  .product-panel-accent::after {
    animation: none;
    display: none;
  }

  .product-panel:hover {
    transform: translateY(-10px);
  }

  .product-panel:hover .product-panel-inner::before {
    animation: productScanLine 0.55s ease-out 1;
  }

  .product-panel:hover .product-panel-icon {
    transform: none;
    box-shadow: none;
  }

  .product-panel:hover .product-panel-more-item,
  .product-panel:hover .product-panel-more-item::before {
    transform: none;
    transition: none;
  }

  .product-panel-cta::after {
    animation: none;
  }
}

/* 濞寸姴鎳嶇紞鏃堟偨閵娿倗鑹鹃柡鍜佸櫍閳ь剚鐭粭鍛村箯婢舵稓绀勯悶娑樺缁楃喓鎲撮敐鍛瀫闁哄倽顫夐、宥夊Υ娴ｇ鎮侀柛銊ヮ儐椤㈠秵绗熺€ｅ墎绀嗛柨娑樺缁楀鎷呭鍛殢濞?mega 闁兼寧绮屽畷?*/

.hero {
  padding: 120px 0 44px;
  color: rgba(255, 255, 255, 0.94);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

@media (min-width: 721px) {
  .hero {
    min-height: 86vh;
    padding: 104px 0 28px;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
  transition: opacity 220ms ease;
}

body.hero-bg-hidden .hero-bg {
  opacity: 0;
}

.anchor-offset {
  position: relative;
  top: -86px;
  height: 1px;
}

/* Floating contact widget moved to styles/global/components.css. */

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  justify-items: center;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--btn-height);
  padding: 0 var(--btn-padding-x);
  border-radius: var(--btn-radius);
  border: 1px solid var(--btn-secondary-border);
  background: #ffffff;
  color: var(--btn-secondary-fg);
  font-size: var(--btn-size);
  line-height: 1;
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid rgba(var(--brand-rgb), 0.18);
  outline-offset: 2px;
}

.btn-primary {
  border-color: var(--btn-primary-border);
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
  box-shadow: var(--btn-primary-shadow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--btn-primary-border-hover);
  background: var(--btn-primary-bg-hover);
  color: #ffffff;
  box-shadow: var(--btn-primary-shadow-hover);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--btn-ghost-border);
  background: var(--btn-ghost-bg);
  color: var(--btn-ghost-fg);
  box-shadow: var(--btn-ghost-shadow);
}

.btn-secondary {
  border-color: var(--btn-secondary-border);
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-fg);
  box-shadow: var(--btn-secondary-shadow);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--btn-secondary-border-hover);
  background: var(--btn-secondary-bg-hover);
  color: var(--btn-secondary-fg);
  box-shadow: var(--btn-secondary-shadow-hover);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--btn-ghost-border-hover);
  background: var(--btn-ghost-bg-hover);
  color: var(--btn-ghost-fg-hover);
  box-shadow: var(--btn-ghost-shadow-hover);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.stat {
  padding: 12px 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-num {
  font-size: 20px;
  font-weight: 800;
}

.stat-label {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.hero-media {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-side {
  padding: 14px;
}

.hero-side-title {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
}

.hero-side-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-side-link + .hero-side-link {
  margin-top: 10px;
}

.hero-side-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.media-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.media-placeholder {
  flex: 1;
  min-height: 260px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      600px 260px at 20% 30%,
      rgba(91, 140, 255, 0.25),
      transparent 62%
    ),
    radial-gradient(
      500px 260px at 80% 20%,
      rgba(68, 215, 182, 0.18),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.media-caption {
  margin: 0;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.6;
}

/* 閻炴稑濂旂粭鐔烘喆閿濆懎鏋€闁哄倽顫夐、?- 闁搞儱澧芥晶鏍箯閸忕厧澶嶉柛锔惧劋濞?*/
.product-showcase {
  margin-top: 18px;
}

.product-showcase--full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.product-showcase--full .product-panels,
.product-showcase--full .product-detail {
  width: 100vw;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.product-showcase--full .product-panels {
  box-shadow: none;
  border: 0;
}

/* 缂佸鍨舵俊褔骞囬悢宄靶楅柣銏ｎ嚙閸櫻囨煥椤斿吋濮?*/
@keyframes productAccentShine {
  0%,
  100% {
    opacity: 0.85;
    filter: brightness(1);
  }

  50% {
    opacity: 1;
    filter: brightness(1.15);
  }
}

@keyframes productCardReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes productIconReveal {
  from {
    opacity: 0;
    transform: scale(0.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes productGlowPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(var(--brand-rgb), 0.12);
  }

  50% {
    box-shadow: 0 0 32px rgba(var(--brand-rgb), 0.2);
  }
}

/* 闁绘劦鍋婇崣鍧楀礉閵婏附娅忛柨娑欏哺閵嗗﹪寮借箛娑氬蒋闁稿繐顦扮粊锕傚礉?*/
@keyframes productAccentShimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* 闁绘劦鍋婇崣鍧楀礉閵婏附娅忛柨娑欒壘瀹曢亶鎮ч崶銊ヮ棁闁硅绻掗崵搴ㄦ晬閸ф攼ver 闁哄啯婀圭划鐘崇▔婵犲倸鐓傚☉鎾愁儐婢瑰倹绋夐埀顒€鈻庨埥鍛 */
@keyframes productScanLine {
  0% {
    transform: translateY(-100%);
    opacity: 0.6;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    transform: translateY(120%);
    opacity: 0;
  }
}

/* 闁绘劦鍋婇崣鍧楀礉閵婏附娅忛柨娑欑鐎垫粓鏌﹂鐓庡辅閻㈩垽闄勬竟鍌涙交?*/
@keyframes productCtaShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* tech product section */

/* 闁哄秶顭堢缓鐐瑜嶉幖褔骞庨埀顒勫嫉?- 闁告绱曟晶鏍ь嚕韫囨挾顏撮悘鐐╁亾闁挎稑鑻崬瀵糕偓鐟扮秺缁垳鎷嬮妶鍛伎閻忕偞娲滈妵?+ 缂佸鍨舵俊褔骞囬悢宄靶楅柡?*/
.product-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.product-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(
    165deg,
    rgba(12, 20, 38, 0.98) 0%,
    rgba(8, 14, 28, 1) 100%
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 50px rgba(16, 24, 40, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  cursor: pointer;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 380ms ease,
    border-color 260ms ease;
  animation: productCardReveal 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

.product-panel--tech {
  background-image:
    linear-gradient(
      165deg,
      rgba(8, 14, 28, 0.54) 0%,
      rgba(8, 14, 28, 0.82) 100%
    ),
    url("../../image/hexinjishu.png");
}

.product-panel--hw {
  background-image:
    linear-gradient(
      165deg,
      rgba(8, 14, 28, 0.54) 0%,
      rgba(8, 14, 28, 0.82) 100%
    ),
    url("../../image/yingjian.png");
}

.product-panel--sw {
  background-image:
    linear-gradient(
      165deg,
      rgba(8, 14, 28, 0.54) 0%,
      rgba(8, 14, 28, 0.82) 100%
    ),
    url("../../image/ruanjian.png");
}

.product-panel:nth-child(1) {
  animation-delay: 0.05s;
}

.product-panel:nth-child(2) {
  animation-delay: 0.15s;
}

.product-panel:nth-child(3) {
  animation-delay: 0.25s;
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  transition: opacity 320ms ease;
}

.product-panel--tech::before {
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(var(--brand-rgb), 0.18),
    transparent 55%
  );
}

.product-panel--hw::before {
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(16, 185, 129, 0.18),
    transparent 55%
  );
}

.product-panel--sw::before {
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(129, 140, 248, 0.18),
    transparent 55%
  );
}

.product-panel:hover::before {
  opacity: 1;
}

.product-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  opacity: 0;
  z-index: 0;
  transition: opacity 240ms ease;
}

.product-panel:hover {
  transform: perspective(1000px) rotateX(-2deg) translateY(-10px);
  box-shadow:
    0 32px 72px rgba(16, 24, 40, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 40px rgba(var(--brand-rgb), 0.15);
  border-color: rgba(255, 255, 255, 0.14);
}

.product-panel--tech:hover {
  box-shadow:
    0 32px 72px rgba(16, 24, 40, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 48px rgba(var(--brand-rgb), 0.22);
}

.product-panel--hw:hover {
  box-shadow:
    0 32px 72px rgba(16, 24, 40, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 48px rgba(16, 185, 129, 0.2);
}

.product-panel--sw:hover {
  box-shadow:
    0 32px 72px rgba(16, 24, 40, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 48px rgba(129, 140, 248, 0.22);
}

.product-panel:hover::after {
  opacity: 1;
}

.product-panel:focus-visible {
  outline: 3px solid rgba(var(--brand-rgb), 0.55);
  outline-offset: 2px;
}

.product-panel-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0.95;
  animation: productAccentShine 3s ease-in-out infinite;
  overflow: hidden;
}

.product-panel-accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  animation: productAccentShimmer 2.5s ease-in-out infinite;
}

.product-panel--tech .product-panel-accent {
  background: linear-gradient(
    90deg,
    rgba(var(--brand-rgb), 0.95),
    rgba(56, 189, 248, 0.9)
  );
}

.product-panel--hw .product-panel-accent {
  background: linear-gradient(
    90deg,
    rgba(16, 185, 129, 0.95),
    rgba(20, 184, 166, 0.9)
  );
}

.product-panel--sw .product-panel-accent {
  background: linear-gradient(
    90deg,
    rgba(129, 140, 248, 0.95),
    rgba(244, 114, 182, 0.85)
  );
}

.product-panel-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  padding: 26px 24px 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* 闁告绱曟晶?hover 闁哄啳顔愮槐浼村箥椤愶絽浼庣紒鎯с仒缁姵绋夋繝鍌氱厒濞戞挸顑嗘竟鍌涙交?*/
.product-panel-inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  top: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.5),
    transparent
  );
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
  pointer-events: none;
  transform: translateY(-100%);
  opacity: 0;
  z-index: 2;
}

.product-panel:hover .product-panel-inner::before {
  animation: productScanLine 0.55s ease-out 1;
  opacity: 1;
}

.product-panel-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  min-height: 0;
}

@media (min-width: 981px) {
  .product-panel-header {
    min-height: 178px;
  }
}

@media (max-width: 980px) {
  .product-panel-header {
    min-height: auto;
  }
}

.product-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  animation: productIconReveal 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 320ms ease;
}

.product-panel:nth-child(1) .product-panel-icon {
  animation-delay: 0.2s;
}

.product-panel:nth-child(2) .product-panel-icon {
  animation-delay: 0.3s;
}

.product-panel:nth-child(3) .product-panel-icon {
  animation-delay: 0.4s;
}

.product-panel:hover .product-panel-icon {
  transform: scale(1.08);
}

.product-panel-icon--tech {
  background: linear-gradient(
    135deg,
    rgba(var(--brand-rgb), 0.28),
    rgba(56, 189, 248, 0.22)
  );
  color: rgba(147, 197, 253, 0.98);
}

.product-panel:hover .product-panel-icon--tech {
  box-shadow:
    0 0 24px rgba(var(--brand-rgb), 0.5),
    0 0 48px rgba(56, 189, 248, 0.25);
}

.product-panel-icon--hw {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.28),
    rgba(20, 184, 166, 0.22)
  );
  color: rgba(110, 231, 183, 0.98);
}

.product-panel:hover .product-panel-icon--hw {
  box-shadow:
    0 0 24px rgba(16, 185, 129, 0.5),
    0 0 48px rgba(20, 184, 166, 0.25);
}

.product-panel-icon--sw {
  background: linear-gradient(
    135deg,
    rgba(129, 140, 248, 0.28),
    rgba(244, 114, 182, 0.22)
  );
  color: rgba(196, 181, 253, 0.98);
}

.product-panel:hover .product-panel-icon--sw {
  box-shadow:
    0 0 24px rgba(129, 140, 248, 0.5),
    0 0 48px rgba(244, 114, 182, 0.25);
}

.product-panel-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
}

.product-panel-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.98);
}

.product-panel-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 100%;
}

/* 闁哄秶顭堢缓楣冩嚄閽樺顫?缁绢収鍏涘▎銏ｃ亹閵忊檧鍋?妤犵偛鍟胯ぐ鎾嚄閽樺顫?+ 闁哄被鍎冲﹢鍛嫚閿旇棄鍓伴柨娑欏哺缁垳鎷嬮妶鍛伎闂侇喓鍔岄惈宥囩矆閻氬绀夐柡鍐█濞?hover */
.product-panel-more {
  margin-top: 0;
  padding-top: 20px;
  min-height: 146px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 1;
  transform: translateY(0);
  transition: border-color 220ms ease;
}

.product-panel:hover .product-panel-more {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.product-panel-more-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.product-panel-more-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-panel-more-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 10px 6px 22px;
  border-radius: 10px;
  position: relative;
  line-height: 1.5;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  transition-delay: 0s;
}

.product-panel-more-item::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.68),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left;
  filter: blur(0.4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.product-panel-more-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
  color: rgba(255, 255, 255, 0.96);
}

.product-panel-more-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-panel:hover .product-panel-more-item:nth-child(1) {
  transition-delay: 0.05s;
}

.product-panel:hover .product-panel-more-item:nth-child(2) {
  transition-delay: 0.1s;
}

.product-panel:hover .product-panel-more-item:nth-child(3) {
  transition-delay: 0.15s;
}

.product-panel-more-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.product-panel:hover .product-panel-more-item::before {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.2);
}

.product-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.94);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  position: relative;
  overflow: hidden;
}

.product-panel-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: skewX(-18deg);
  pointer-events: none;
}

.product-panel:hover .product-panel-cta::after,
.product-panel:focus-within .product-panel-cta::after {
  animation: productCtaShine 0.65s ease-out 1 forwards;
}

.product-panel:hover .product-panel-cta,
.product-panel:focus-within .product-panel-cta {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(255, 255, 255, 0.06);
}

.product-panel-arrow {
  display: inline-block;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-panel:hover .product-panel-arrow,
.product-panel:focus-within .product-panel-arrow {
  transform: translateX(5px);
}

.product-panel-detail {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    135deg,
    rgba(10, 18, 32, 0.86),
    rgba(10, 18, 32, 0.74)
  );
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(12px);
  transition:
    max-height 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 260ms ease,
    transform 260ms ease;
}

.product-panel.is-active .product-panel-detail {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
}

.product-panel-detail-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.92);
}

.product-panel-detail-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.6px;
}

.product-panel-detail-desc {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.7;
}

.product-panel-detail-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.product-panel-detail-side .product-media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-panel.is-active::after {
  opacity: 1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-detail {
  margin-top: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.1);
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(16, 24, 40, 0.1);
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 320ms ease,
    transform 320ms ease;
}

.product-showcase.is-detail-open .product-detail {
  margin-top: 14px;
  max-height: 720px;
  opacity: 1;
  transform: translateY(0);
}

.product-detail-pane {
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
  pointer-events: none;
}

.product-detail-pane.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-detail-pane {
  position: absolute;
  inset: 0;
}

.product-detail {
  position: relative;
  min-height: 420px;
}

.product-detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.product-detail-bg--tech {
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 18, 32, 0.86) 0%,
      rgba(10, 18, 32, 0.4) 60%,
      rgba(10, 18, 32, 0.1) 100%
    ),
    radial-gradient(
      900px 420px at 20% 20%,
      rgba(var(--brand-rgb), 0.25),
      transparent 60%
    );
}

.product-detail-bg--hw {
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 18, 32, 0.86) 0%,
      rgba(10, 18, 32, 0.4) 60%,
      rgba(10, 18, 32, 0.1) 100%
    ),
    radial-gradient(
      900px 420px at 20% 20%,
      rgba(16, 185, 129, 0.2),
      transparent 60%
    );
}

.product-detail-bg--sw {
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 18, 32, 0.86) 0%,
      rgba(10, 18, 32, 0.4) 60%,
      rgba(10, 18, 32, 0.1) 100%
    ),
    radial-gradient(
      900px 420px at 20% 20%,
      rgba(91, 140, 255, 0.2),
      transparent 60%
    );
}

.product-detail-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 26px;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
}

.product-detail-inner {
  backdrop-filter: blur(8px);
}

.product-detail-title {
  margin: 0;
  font-size: 32px;
  letter-spacing: 1px;
}

.product-detail-desc {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
  max-width: 560px;
}

.product-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.product-media-card {
  height: 112px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  letter-spacing: 0.2px;
  backdrop-filter: blur(8px);
}


h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.2px;
}



@media (max-width: 980px) {
.hero-inner {
    grid-template-columns: 1fr;
  }

  .product-panels {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-panel {
    min-height: 300px;
  }

  .product-panel-inner {
    padding: 22px 20px 20px;
  }

  .product-panel-title {
    font-size: 20px;
  }

  .product-showcase--full {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .product-showcase--full .product-panels,
  .product-showcase--full .product-detail {
    width: auto;
    border-radius: 18px;
    border-left: 1px solid rgba(16, 24, 40, 0.1);
    border-right: 1px solid rgba(16, 24, 40, 0.1);
  }

  .product-detail-inner {
    grid-template-columns: 1fr;
  }

  .product-media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


  .hero {
    min-height: 0;
    padding: 28px 0 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-inner {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
  }

  }

  .product-panel {
    min-height: 260px;
  }

  .product-panel-inner {
    padding: 18px 16px 16px;
  }

}

/* Product showcase legacy hero block removed; active pages use styles/pages/product-shared-shell.css and styles/pages/product-showcase.css. */
/* AI solution/detail hero shell moved to styles/pages/ai-medical-shell.css. */
/* Solution and case visual blocks moved to styles/pages/solution-*.css and styles/pages/case-*.css. */
/* Floating contact panel detail styles moved to styles/global/components.css. */

/* Contact page styles retired. */
/* Shared component ownership continues in styles/global/components.css. */
