html {
  font-size: 14.5px;
}

:root {
  --site-main-content-max-width: 1360px;
  --site-main-content-inline-padding: clamp(32px, 4vw, 64px);
  --site-main-content-outer-width: calc(var(--site-main-content-max-width) + (var(--site-main-content-inline-padding) * 2));
  --site-standard-shell-width: 1536px;
  --site-aligned-shell-width: 100%;
  --site-shell-max-width: var(--site-aligned-shell-width);
  --yingyue-accent-color: #dc2626;
  --yingyue-accent-rgb: 220 38 38;
  --yingyue-accent-soft: rgb(var(--yingyue-accent-rgb) / 0.12);
  --yingyue-accent-muted: rgb(var(--yingyue-accent-rgb) / 0.68);
}

@media (min-width: 1280px) {
  :root {
    --site-aligned-shell-width: 1280px;
    --site-shell-max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  :root {
    --site-aligned-shell-width: 1536px;
    --site-shell-max-width: 1536px;
  }
}

@media (min-width: 1920px) {
  :root {
    --site-main-content-max-width: 1300px;
    --site-main-content-inline-padding: clamp(36px, 2.5vw, 84px);
    --site-aligned-shell-width: 1460px;
    --site-shell-max-width: 1460px;
  }

  html {
    font-size: 15.75px;
  }
}

@media (min-width: 2240px) {
  :root {
    --site-main-content-max-width: 1480px;
    --site-main-content-inline-padding: clamp(40px, 1.9vw, 86px);
    --site-aligned-shell-width: 1680px;
    --site-shell-max-width: 1680px;
  }

  html {
    font-size: 16.75px;
  }
}

@media (min-width: 768px) {
  body.home #homepage-hero,
  body.home .hero-embla,
  body.home .hero-embla__viewport,
  body.home .hero-embla__container,
  body.home .hero-embla__slide {
    height: 100vh;
  }
}

.site-popover {
  position: absolute;
  z-index: 2000;
  min-width: 260px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--background);
  color: var(--foreground);
  box-shadow: 0 18px 40px rgba(3, 8, 20, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transform-origin: top left;
  transition:
    opacity 0.2s ease,
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.2s;
}

.site-popover[hidden] {
  display: none;
}

.site-popover.is-visible,
.site-popover.is-closing {
  visibility: visible;
}

.site-popover.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.site-mega-popover {
  position: absolute;
  z-index: 1990;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(248, 250, 252, 0.98);
  color: #0f172b;
  box-shadow: 0 28px 60px rgba(15, 23, 43, 0.14);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 0.22s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.22s;
}

.site-mega-popover[hidden] {
  display: none;
}

.site-mega-popover.is-visible,
.site-mega-popover.is-closing {
  visibility: visible;
}

.site-mega-popover.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.site-mega-shell {
  width: 100%;
}

.site-mega-container {
  width: 100%;
  max-width: var(--site-shell-max-width);
  margin: 0 auto;
  padding-inline: clamp(32px, 4vw, 64px);
  box-sizing: border-box;
}

.site-mega-inner {
  display: grid;
  gap: 36px;
  padding-top: 32px;
  padding-bottom: 59px;
}

.site-product-mega-inner {
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  align-items: start;
}

.site-product-categories {
  display: grid;
  gap: 0;
  padding-right: 18px;
}

.site-product-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 0 0 4px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  color: #475569;
  font-size: 17px;
  transition:
    color 0.18s ease,
    padding-left 0.18s ease,
    border-color 0.18s ease;
}

.site-product-category-title {
  letter-spacing: 0.01em;
}

.site-product-category-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.site-product-category:hover,
.site-product-category:focus-visible,
.site-product-category.is-active {
  color: hsl(var(--primary));
  border-bottom-color: hsl(var(--primary) / 0.28);
}

.site-product-category:hover .site-product-category-arrow,
.site-product-category:focus-visible .site-product-category-arrow,
.site-product-category.is-active .site-product-category-arrow {
  opacity: 1;
  transform: translateX(0);
}

.site-product-panels {
  position: relative;
  min-height: 320px;
}

.site-product-panel {
  display: none;
  align-content: start;
  gap: 18px;
}

.site-product-panel.is-active {
  display: grid;
}

.site-product-panel-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px 40px;
  align-items: start;
}

.site-product-subgroup {
  display: grid;
  gap: 14px;
  align-content: start;
}

.site-product-subgroup--child {
  padding-top: 18px;
}

.site-product-subgroup__badge {
  width: fit-content;
  padding: 10px 18px;
  border: 1.5px solid hsl(var(--primary) / 0.55);
  border-radius: 999px;
  color: hsl(var(--primary));
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.78);
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.site-product-subgroup__badge:hover,
.site-product-subgroup__badge:focus-visible {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.08);
  transform: translateX(4px);
}

.home-product-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbfd 0%, #f3f7fa 100%);
}

.home-product-showcase__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(14, 116, 144, 0.72);
}

.home-product-showcase__head {
  display: flex;
  justify-content: center;
  text-align: center;
}

.home-product-showcase__heading {
  display: flex;
  max-width: 58rem;
  flex-direction: column;
  align-items: center;
}

.home-product-showcase__divider {
  width: 5.5rem;
  height: 0.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 82, 204, 0.86), rgba(59, 130, 246, 0.92));
}

.home-product-showcase__intro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  max-width: 54rem;
  color: rgba(71, 85, 105, 0.9);
  font-size: 1rem;
  line-height: 1.9;
}

.home-product-showcase__intro::before,
.home-product-showcase__intro::after {
  content: "";
  display: block;
  width: clamp(3rem, 8vw, 6.5rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(148, 163, 184, 0.8), rgba(148, 163, 184, 0));
}

.home-product-feature-grid {
  --feature-grid-bg: #f8fafc;
  --feature-grid-pattern-dot: rgba(203, 213, 225, 0.82);
  --feature-grid-pattern-size: 24px 24px;
  --feature-grid-intro-line: var(--yingyue-accent-color);
  --feature-grid-intro-label: var(--yingyue-accent-color);
  --feature-grid-intro-title: #0f172a;
  --feature-grid-intro-copy: #64748b;
  --feature-grid-dot-idle: #cbd5e1;
  --feature-grid-dot-active: var(--yingyue-brand-blue);
  --feature-card-bg: #ffffff;
  --feature-card-border: rgba(226, 232, 240, 0.85);
  --feature-card-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
  --feature-card-title: #0f172a;
  --feature-card-copy: #475569;
  --feature-card-copy-border: #f1f5f9;
  --feature-card-number: #f8fafc;
  --feature-card-svg: #1f2937;
  --feature-card-svg-quiet: #334155;
  --feature-card-svg-muted: #64748b;
  --feature-card-svg-soft: #94a3b8;
  --feature-card-svg-accent: var(--yingyue-accent-color);
  --feature-card-hover-bg: linear-gradient(135deg, var(--yingyue-brand-blue-ink) 0%, var(--yingyue-brand-blue-deep) 52%, var(--yingyue-brand-blue-ink) 100%);
  --feature-card-hover-border: var(--yingyue-brand-blue-deep);
  --feature-card-hover-shadow: 0 20px 40px rgba(23, 37, 84, 0.16);
  --feature-card-hover-title: #ffffff;
  --feature-card-hover-title-scale: 1.1;
  --feature-card-hover-copy: rgba(239, 246, 255, 0.94);
  --feature-card-hover-copy-border: rgba(191, 219, 254, 0.34);
  --feature-card-hover-number: rgba(255, 255, 255, 0.2);
  --feature-card-hover-svg: #e8f3ff;
  --feature-card-hover-svg-scale: 1.26;
  --feature-card-hover-svg-quiet: #8cc5ff;
  --feature-card-hover-svg-muted: #b8dcff;
  --feature-card-hover-svg-soft: #d8ebff;
  --feature-card-hover-svg-accent: #60b2ff;
  --feature-card-hover-panel-fill: rgba(255, 255, 255, 0.12);
  --feature-card-hover-panel-stroke: #b8dcff;
  --feature-card-hover-accent-fill: #7cc1ff;
  --feature-card-hover-accent-fill-opacity: 0.32;
  --feature-card-image-bg: url("/wp-content/themes/yingyue-home/assets/images/backgrounds/bb2.png");
  --feature-card-image-bg-opacity: 0.74;
  --feature-card-image-overlay-rgb: var(--yingyue-brand-blue-rgb);
  --feature-card-image-overlay-opacity: 0.28;
  --feature-card-image-flip: 1;
  --feature-card-image-active-opacity: var(--feature-card-image-bg-opacity);
  --feature-card-image-bg-zoom: 1;
  position: relative;
  overflow: hidden;
  background: var(--feature-grid-bg);
}

.home-product-feature-grid--homepage {
  --feature-grid-intro-line: var(--yingyue-brand-blue);
  --feature-grid-intro-label: var(--yingyue-brand-blue);
  --feature-card-svg-accent: var(--yingyue-brand-blue);
}

@media (min-width: 768px) {
  .site-shell,
  .container.site-shell,
  .site-width-shell {
    width: 100%;
    max-width: var(--site-shell-max-width) !important;
    margin-inline: auto;
    padding-inline: var(--site-main-content-inline-padding) !important;
    box-sizing: border-box;
  }

  .container.site-shell {
    max-width: var(--site-shell-max-width) !important;
  }

  body.home .home-product-feature-grid > .container.site-shell,
  body.home .home-solutions-showcase > .container.site-shell,
  body.home .home-news-board > .container.site-shell {
    width: 100%;
    max-width: var(--site-shell-max-width);
    margin-inline: auto;
    padding-inline: var(--site-main-content-inline-padding);
    box-sizing: border-box;
  }
}

.home-product-feature-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--feature-grid-pattern-dot) 1px, transparent 1px);
  background-size: var(--feature-grid-pattern-size);
}

.home-product-feature-grid__dots {
  position: relative;
}

.home-product-feature-grid__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile per reference site */
  gap: 0.75rem; /* Tighter gap for mobile */
}

.home-product-feature-grid__intro,
.home-product-feature-card {
  position: relative;
  z-index: 1;
}

.home-product-feature-grid__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 0;
  grid-column: span 2; /* Span full width in 2-column grid */
}

.home-product-feature-grid__intro--centered {
  align-items: center;
  text-align: center;
}

.home-product-feature-grid__intro-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.home-product-feature-grid__intro-line {
  width: 2rem;
  height: 1px;
  background: var(--feature-grid-intro-line, #cbd5e1);
}

.home-product-feature-grid__intro-label h3 {
  margin: 0;
  color: var(--feature-grid-intro-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.home-product-feature-grid__intro p {
  margin: 0;
  max-width: 32rem;
  color: var(--feature-grid-intro-copy);
  font-size: 0.95rem;
  line-height: 1.9;
}

.home-section-heading__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.home-section-heading__line {
  width: 2rem;
  height: 1px;
}

.home-section-heading__label h3,
.home-section-heading__label {
  color: var(--feature-grid-intro-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.home-section-heading__title {
  margin: 0 0 0.25rem;
  color: var(--feature-grid-intro-title);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.home-product-feature-grid__all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2.2rem;
  min-height: 2.7rem;
  width: fit-content;
  padding: 0.55rem calc(1rem + 15px);
  border: 1px solid #94a3b8;
  border-radius: 999px;
  background: #ffffff;
  color: #475569;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.home-product-feature-grid__all-link:hover,
.home-product-feature-grid__all-link:focus-visible {
  color: var(--yingyue-brand-blue);
  border-color: var(--yingyue-brand-blue);
  background: var(--yingyue-brand-blue-bg);
}

.home-product-feature-grid__all-link svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.home-product-feature-grid--homepage .home-product-feature-grid__grid {
  --feature-card-grid-gap: 1.75rem;
  gap: 1.75rem;
}

@media (min-width: 1920px) {
  .home-product-feature-grid--homepage .home-product-feature-grid__grid {
    width: 100%;
    max-width: min(100%, var(--site-shell-max-width));
    margin-inline: auto;
  }
}

@media (min-width: 1536px) and (max-width: 1919px) {
  header nav.group\/navigation-menu > ul {
    gap: clamp(1.15rem, 1.35vw, 1.85rem) !important;
  }

  body.home .hero-slide__inner {
    grid-template-columns: minmax(0, 820px) minmax(0, 520px);
    gap: clamp(2rem, 3vw, 3.75rem);
  }

  body.home .hero-slide__copy {
    max-width: 820px;
  }

  body.home .hero-slide__visual > div {
    max-width: 560px;
  }

  body.home #homepage-hero,
  body.home .hero-embla,
  body.home .hero-embla__viewport,
  body.home .hero-embla__container,
  body.home .hero-embla__slide {
    height: 100vh;
  }
}

@media (min-width: 768px) and (max-width: 1919.98px) {
  body.home .hero-slide__visual {
    justify-content: flex-end;
  }

  body.home .hero-slide__visual > div {
    margin-left: auto;
    margin-right: 0;
    justify-content: flex-end;
    transform: scale(1.35);
    transform-origin: right center;
  }

  body.home .hero-slide--device-b .hero-slide__visual {
    justify-content: center;
  }

  body.home .hero-slide--device-b .hero-slide__visual > div {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    transform: translateX(-12%) scale(1.12);
    transform-origin: center center;
  }
}

.home-product-feature-grid--homepage .home-product-feature-grid__intro {
  grid-column: 1 / -1;
  max-width: 56rem;
  margin: 0 auto 0.75rem;
}

.home-product-feature-grid--homepage .home-product-feature-grid__intro-label,
.home-product-feature-grid--homepage .home-section-heading__label {
  justify-content: center;
}

.home-product-feature-grid--homepage .home-product-feature-grid__intro p {
  max-width: 42rem;
  margin-inline: auto;
}

.home-product-feature-grid--homepage .home-product-feature-grid__all-link {
  margin-inline: auto;
}

.home-product-feature-card {
  --feature-card-media-hover-scale: 1.08;
  --feature-card-media-hover-image-scale: 1.12;
  --feature-card-media-hover-svg-scale: var(--feature-card-hover-svg-scale);
  --feature-card-image-bg-position: center center;
  --feature-card-image-bg-size: calc(200% + var(--feature-card-grid-gap)) calc(200% + var(--feature-card-grid-gap));
  --feature-card-grid-gap: 1.5rem;
  display: flex;
  min-height: 21.25rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--feature-card-border);
  border-radius: 1.5rem;
  background: var(--feature-card-bg);
  padding: 1.55rem 1.55rem 1.45rem;
  box-shadow: var(--feature-card-shadow);
  transition:
    transform 500ms ease,
    box-shadow 500ms ease,
    border-color 500ms ease,
    background 500ms ease;
}

.home-product-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      0deg,
      rgb(var(--feature-card-image-overlay-rgb) / var(--feature-card-image-overlay-opacity)),
      rgb(var(--feature-card-image-overlay-rgb) / var(--feature-card-image-overlay-opacity))
    ),
    var(--feature-card-image-bg);
  background-position: var(--feature-card-image-bg-position);
  background-size: var(--feature-card-image-bg-size);
  opacity: 0;
  filter: blur(0);
  transform: scaleX(var(--feature-card-image-flip)) scale(1);
  transition:
    opacity 500ms ease,
    filter 620ms ease,
    transform 700ms ease;
}

.home-product-feature-card:nth-of-type(1) {
  --feature-card-image-bg-position: left top;
  --feature-card-image-overlay-opacity: 0.38;
  --feature-card-image-active-opacity: 0.8;
}

.home-product-feature-card:nth-of-type(2) {
  --feature-card-image-bg-position: right top;
}

.home-product-feature-card:nth-of-type(3) {
  --feature-card-image-bg-position: left bottom;
}

.home-product-feature-card:nth-of-type(4) {
  --feature-card-image-bg-position: right bottom;
}

@media (min-width: 768px) {
  .home-product-feature-grid--homepage .home-product-feature-card {
    border-radius: 0;
  }

  .home-product-feature-grid--homepage .home-product-feature-card:nth-of-type(1) {
    border-top-left-radius: 1.5rem;
  }

  .home-product-feature-grid--homepage .home-product-feature-card:nth-of-type(2) {
    border-top-right-radius: 1.5rem;
  }

  .home-product-feature-grid--homepage .home-product-feature-card:nth-of-type(3) {
    border-bottom-left-radius: 1.5rem;
  }

  .home-product-feature-grid--homepage .home-product-feature-card:nth-of-type(4) {
    border-bottom-right-radius: 1.5rem;
  }
}

.home-product-feature-card:hover,
.home-product-feature-card:focus-visible,
.home-product-feature-card.is-debug-active {
  transform: none;
  box-shadow: var(--feature-card-hover-shadow);
  border-color: var(--feature-card-hover-border);
  outline: none;
}

.home-product-feature-card:hover::before,
.home-product-feature-card:focus-visible::before,
.home-product-feature-card.is-debug-active::before {
  opacity: var(--feature-card-image-active-opacity);
  transform: scaleX(var(--feature-card-image-flip)) scale(1);
}

.home-product-feature-grid.is-product-bg-debug-preview .home-product-feature-card::before,
.home-product-feature-grid.is-overlay-debug-preview .home-product-feature-card::before {
  opacity: var(--feature-card-image-active-opacity);
}

.home-product-feature-grid.is-overlay-debug-preview .home-product-feature-card {
  outline: 1px dashed rgba(125, 211, 252, 0.45);
  outline-offset: -1px;
}

.feature-overlay-debugger--embedded,
.hero-debug-overlay-mount .feature-overlay-debugger {
  position: static;
  left: auto;
  bottom: auto;
  z-index: auto;
  width: 100%;
  padding: 0.35rem 0.45rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 7px;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: none;
  backdrop-filter: none;
}

.feature-overlay-debugger--embedded .feature-overlay-debugger__label,
.hero-debug-overlay-mount .feature-overlay-debugger__label {
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
}

.feature-overlay-debugger--embedded .feature-overlay-debugger__hint,
.hero-debug-overlay-mount .feature-overlay-debugger__hint {
  display: block;
  margin: 0 0 0.3rem;
  font-size: 0.62rem;
  line-height: 1.35;
}

.feature-overlay-debugger--embedded .feature-overlay-debugger__color-row,
.hero-debug-overlay-mount .feature-overlay-debugger__color-row {
  margin: 0.25rem 0 0.35rem;
  gap: 0.3rem;
}

.feature-overlay-debugger--embedded .feature-overlay-debugger__color-chip,
.hero-debug-overlay-mount .feature-overlay-debugger__color-chip {
  width: 0.95rem;
  height: 0.95rem;
}

.feature-overlay-debugger--embedded .feature-overlay-debugger__label,
.hero-debug-overlay-mount .feature-overlay-debugger__label {
  color: #e2e8f0;
}

.feature-overlay-debugger--embedded .feature-overlay-debugger__hint,
.hero-debug-overlay-mount .feature-overlay-debugger__hint {
  color: #94a3b8;
}

.feature-overlay-debugger__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-overlay-debugger__hint {
  margin: 0 0 0.35rem;
  color: #64748b;
  font-size: 0.74rem;
  line-height: 1.5;
}

.feature-overlay-debugger__swatch {
  display: inline-flex;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: rgb(var(--feature-card-image-overlay-rgb));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.feature-overlay-debugger__range {
  width: 100%;
  accent-color: var(--yingyue-brand-blue);
}

.feature-overlay-debugger__color-row {
  display: flex;
  gap: 0.45rem;
  margin: 0.55rem 0 0.65rem;
  flex-wrap: wrap;
}

.feature-overlay-debugger__color-chip {
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.feature-overlay-debugger__color-chip.is-active {
  transform: scale(1.08);
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.12),
    0 0 0 4px rgba(59, 111, 203, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.home-product-feature-card__number {
  position: absolute;
  right: -0.5rem;
  top: -1.6rem;
  color: var(--feature-card-number);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: transform 700ms ease, color 700ms ease;
}

.home-product-feature-card:hover .home-product-feature-card__number,
.home-product-feature-card:focus-visible .home-product-feature-card__number,
.home-product-feature-card.is-debug-active .home-product-feature-card__number {
  color: rgba(219, 234, 254, 0.9);
  transform: scale(1.08) rotate(-3deg);
}

.home-product-feature-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.home-product-feature-card__header h4 {
  margin: 0;
  color: var(--feature-card-title);
  font-size: 1.25rem;
  font-weight: 700;
  transform-origin: left center;
  transition: color 300ms ease, transform 300ms ease;
}

.home-product-feature-card__media {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  min-height: 7.9rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform-origin: center center;
  transition: transform 420ms ease;
}

.home-product-feature-card:hover .home-product-feature-card__media,
.home-product-feature-card:focus-visible .home-product-feature-card__media,
.home-product-feature-card.is-debug-active .home-product-feature-card__media {
  transform: scale(var(--feature-card-media-hover-scale));
}

.home-product-feature-card__media img {
  width: 100%;
  max-width: 15rem;
  max-height: 11rem;
  object-fit: contain;
  object-position: center;
  filter: brightness(0.72) contrast(1.16);
  transform: scale(1);
  transition:
    filter 720ms ease,
    transform 860ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-product-feature-card:hover .home-product-feature-card__media img,
.home-product-feature-card:focus-visible .home-product-feature-card__media img,
.home-product-feature-card.is-debug-active .home-product-feature-card__media img {
  filter: brightness(0) invert(1) contrast(1.08);
  transform: scale(var(--feature-card-media-hover-image-scale));
}

.home-product-feature-card__svg {
  width: 100%;
  color: var(--feature-card-svg);
  transform-origin: center center;
  transition:
    color 640ms ease,
    transform 880ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-product-feature-card__svg--battery,
.home-product-feature-card__svg--power,
.home-product-feature-card__svg--load {
  max-width: 15rem;
}

.home-product-feature-card__svg--system {
  max-width: 5.3rem;
}

.home-product-feature-card__svg--software {
  max-width: 11.25rem;
}

.home-product-feature-card__svg .svg-quiet {
  color: var(--feature-card-svg-quiet);
  transition: color 500ms ease;
}

.home-product-feature-card__svg .svg-muted {
  color: var(--feature-card-svg-muted);
  transition: color 500ms ease;
}

.home-product-feature-card__svg .svg-soft {
  color: var(--feature-card-svg-soft);
  transition: color 500ms ease;
}

.home-product-feature-card__svg .svg-accent {
  color: var(--feature-card-svg-accent);
  transition: color 500ms ease;
}

.home-product-feature-card__svg .svg-panel {
  stroke-width: 1.35;
  transition: fill 500ms ease, stroke 500ms ease;
}

.home-product-feature-card__svg .svg-accent-fill {
  color: var(--feature-card-svg-accent);
  fill: currentColor;
  fill-opacity: 0.12;
  stroke: currentColor;
  stroke-width: 1.2;
  transition: color 500ms ease, fill-opacity 500ms ease;
}

.home-product-feature-card p {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid var(--feature-card-copy-border);
  color: var(--feature-card-copy);
  font-size: 0.92rem;
  line-height: 1.82;
  transform: translateY(0);
  transition:
    color 300ms ease,
    border-top-color 300ms ease,
    transform 420ms ease;
}

.home-product-feature-card:hover p,
.home-product-feature-card:focus-visible p {
  color: #475569;
}

.home-product-feature-card:hover,
.home-product-feature-card:focus-visible,
.home-product-feature-card.is-debug-active {
  background: var(--feature-card-hover-bg);
}

.home-product-feature-card:hover .home-product-feature-card__header h4,
.home-product-feature-card:focus-visible .home-product-feature-card__header h4,
.home-product-feature-card.is-debug-active .home-product-feature-card__header h4 {
  color: var(--feature-card-hover-title);
  transform: scale(var(--feature-card-hover-title-scale));
}

.home-product-feature-card:hover p,
.home-product-feature-card:focus-visible p,
.home-product-feature-card.is-debug-active p {
  color: var(--feature-card-hover-copy);
  border-top-color: transparent;
  transform: translateY(-30px);
}

.home-product-feature-card:hover .home-product-feature-card__svg,
.home-product-feature-card:focus-visible .home-product-feature-card__svg,
.home-product-feature-card.is-debug-active .home-product-feature-card__svg {
  color: var(--feature-card-hover-svg);
  transform: scale(var(--feature-card-media-hover-svg-scale));
}

.home-product-feature-grid__grid > .home-product-feature-card:nth-child(-n + 3) .home-product-feature-card__svg {
  transition:
    color 1140ms ease,
    transform 1380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-product-feature-card:hover .home-product-feature-card__svg .svg-quiet,
.home-product-feature-card:focus-visible .home-product-feature-card__svg .svg-quiet,
.home-product-feature-card.is-debug-active .home-product-feature-card__svg .svg-quiet {
  color: var(--feature-card-hover-svg-quiet);
}

.home-product-feature-card:hover .home-product-feature-card__svg .svg-muted,
.home-product-feature-card:focus-visible .home-product-feature-card__svg .svg-muted,
.home-product-feature-card.is-debug-active .home-product-feature-card__svg .svg-muted {
  color: var(--feature-card-hover-svg-muted);
}

.home-product-feature-card:hover .home-product-feature-card__svg .svg-soft,
.home-product-feature-card:focus-visible .home-product-feature-card__svg .svg-soft,
.home-product-feature-card.is-debug-active .home-product-feature-card__svg .svg-soft {
  color: var(--feature-card-hover-svg-soft);
}

.home-product-feature-card:hover .home-product-feature-card__svg .svg-accent,
.home-product-feature-card:focus-visible .home-product-feature-card__svg .svg-accent,
.home-product-feature-card.is-debug-active .home-product-feature-card__svg .svg-accent {
  color: var(--feature-card-hover-svg-accent);
}

.home-product-feature-card:hover .home-product-feature-card__svg .svg-panel,
.home-product-feature-card:focus-visible .home-product-feature-card__svg .svg-panel,
.home-product-feature-card.is-debug-active .home-product-feature-card__svg .svg-panel {
  fill: var(--feature-card-hover-panel-fill);
  stroke: var(--feature-card-hover-panel-stroke);
}

.home-product-feature-card:hover .home-product-feature-card__svg .svg-accent-fill,
.home-product-feature-card:focus-visible .home-product-feature-card__svg .svg-accent-fill,
.home-product-feature-card.is-debug-active .home-product-feature-card__svg .svg-accent-fill {
  color: var(--feature-card-hover-accent-fill);
  fill-opacity: var(--feature-card-hover-accent-fill-opacity);
}

.home-product-feature-card:hover .home-product-feature-card__number,
.home-product-feature-card:focus-visible .home-product-feature-card__number,
.home-product-feature-card.is-debug-active .home-product-feature-card__number {
  color: var(--feature-card-hover-number);
}

.home-capability-strip {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0;
  background: linear-gradient(90deg, var(--yingyue-brand-blue-ink) 0%, var(--yingyue-brand-blue-deep) 50%, var(--yingyue-brand-blue-ink) 100%);
}

.home-capability-strip__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.9) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.home-capability-strip__glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(100px);
}

.home-capability-strip__glow--left {
  top: -2rem;
  left: 18%;
  width: 22rem;
  height: 22rem;
  background: rgba(96, 165, 250, 0.18);
}

.home-capability-strip__glow--right {
  right: 14%;
  bottom: -4rem;
  width: 18rem;
  height: 18rem;
  background: rgba(251, 191, 36, 0.14);
}

.home-capability-strip__grid {
  position: relative;
  display: grid;
  gap: 2rem;
}

.home-capability-strip__item {
  text-align: center;
  color: #fff;
}

.home-capability-strip__icon {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.home-capability-strip__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: currentColor;
  stroke-width: 1.5;
}

.home-capability-strip__item h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.home-capability-strip__item p {
  margin: 0 auto;
  max-width: 18rem;
  color: #bfdbfe;
  font-size: 0.92rem;
  line-height: 1.75;
}

.home-prefooter-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 5.5rem;
  background: #0f1f4a;
}

.home-prefooter-cta__media,
.home-prefooter-cta__overlay,
.home-prefooter-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-prefooter-cta__media {
  display: block;
  z-index: 0;
  background: url("assets/images/backgrounds/city.avif") center/cover no-repeat;
  transform: scale(1.02);
  transform-origin: center center;
}

.home-prefooter-cta__overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 31, 77, 0.46), rgba(14, 31, 77, 0.82)),
    linear-gradient(90deg, rgba(58, 111, 203, 0.28), rgba(12, 24, 58, 0.22) 48%, rgba(58, 111, 203, 0.24));
}

.home-prefooter-cta__glow {
  z-index: 2;
  inset: 50% auto auto 50%;
  width: 37.5rem;
  height: 37.5rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.14);
  filter: blur(150px);
}

.home-prefooter-cta__inner {
  position: relative;
  z-index: 3;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.home-prefooter-cta__inner::before {
  content: "";
  display: block;
  width: 60%;
  max-width: 28rem;
  height: 1px;
  margin: 0 auto 2.4rem;
  background: rgba(148, 163, 184, 0.2);
}

.home-prefooter-cta__inner h2 {
  margin: 0 0 1.5rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-prefooter-cta__inner h2 span {
  color: #60a5fa;
}

.home-prefooter-cta__inner p {
  margin: 0 auto 2.5rem;
  max-width: 32rem;
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.8;
}

.home-prefooter-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.home-prefooter-cta__primary,
.home-prefooter-cta__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.5rem;
  padding: 0;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
}

.home-prefooter-cta__button-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.5rem;
  padding: 0 2rem;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.home-prefooter-cta__primary.hero-liquid,
.home-prefooter-cta__secondary.hero-liquid {
  color: #fff;
  border: 0;
  background: transparent;
  text-decoration: none;
}

.home-prefooter-cta__primary svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  stroke-width: 2.5;
}

.home-prefooter-cta__secondary {
  color: rgba(255, 255, 255, 0.94);
}


@media (min-width: 768px) {
  .home-capability-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-prefooter-cta__actions {
    flex-direction: row;
    justify-content: center;
  }

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

  .home-product-feature-grid__intro {
    grid-column: span 2;
  }

  .home-product-feature-grid--homepage .home-product-feature-grid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .home-product-feature-grid__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .home-product-feature-grid__intro {
    grid-column: span 1;
    padding: 2rem 0;
  }

  .home-product-feature-grid--homepage .home-product-feature-grid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-product-feature-grid--homepage .home-product-feature-grid__intro {
    grid-column: 1 / -1;
    padding: 1rem 0 0.5rem;
  }
}

.home-product-ribbon {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0.75rem 0 0.5rem;
}

.home-product-ribbon__item {
  position: relative;
  display: block;
  flex: 1 1 0;
  min-width: 0;
  margin-left: -1px;
  padding: 1px;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(
    180deg,
    rgba(185, 213, 240, 0.9) 0%,
    rgba(185, 213, 240, 0.36) 30%,
    rgba(10, 110, 210, 0.3) 68%,
    rgba(10, 110, 210, 0.56) 100%
  );
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.home-product-ribbon__item:first-child {
  margin-left: 0;
}

.home-product-ribbon__item:last-child {
}

.home-product-ribbon__item:hover,
.home-product-ribbon__item:focus-visible {
  z-index: 2;
  box-shadow:
    0 34px 80px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(14, 165, 233, 0.14);
}

.home-product-ribbon__item:focus-visible {
  outline: none;
}

.home-product-ribbon__surface {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  transition:
    background 280ms ease,
    opacity 280ms ease;
}

.home-product-ribbon__inner {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 25rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.85rem 2rem 1.8rem;
  border-radius: 0;
  background: #fff;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  transition:
    background 280ms ease,
    box-shadow 280ms ease;
}

.home-product-ribbon__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-product-ribbon__index {
  position: absolute;
  right: 1.15rem;
  top: 1.05rem;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(15, 23, 42, 0.26);
  transition:
    color 280ms ease,
    opacity 220ms ease,
    visibility 220ms ease;
}

.home-product-ribbon__title {
  margin: 0;
  padding-right: 0;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
  word-break: break-word;
  text-align: center;
  transition: color 280ms ease;
}

.home-product-ribbon__desc {
  margin: 0;
  max-width: 14rem;
  font-size: 0.92rem;
  line-height: 1.78;
  color: rgba(51, 65, 85, 0.82);
  text-align: center;
  transition: color 280ms ease;
}

.home-product-ribbon__media {
  position: relative;
  display: flex;
  min-height: 10rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  margin-top: -0.15rem;
  margin-bottom: 0.35rem;
}

.home-product-ribbon__media::before {
  content: none;
}

.home-product-ribbon__image {
  position: relative;
  z-index: 1;
  width: min(100%, 12.6rem);
  max-height: 8.9rem;
  object-fit: contain;
  object-position: center center;
  opacity: 0.94;
  filter:
    brightness(0.66)
    contrast(1.24)
    drop-shadow(0 18px 30px rgba(15, 23, 42, 0.1));
  transition:
    transform 280ms ease,
    opacity 280ms ease,
    filter 280ms ease;
}

.home-product-ribbon__item--5 .home-product-ribbon__image {
  width: min(100%, 11.6rem);
  max-height: 8.1rem;
}

.home-product-ribbon__item:hover .home-product-ribbon__image,
.home-product-ribbon__item:focus-visible .home-product-ribbon__image {
  opacity: 1;
  transform: none;
}

.home-product-ribbon__item:hover .home-product-ribbon__surface,
.home-product-ribbon__item:focus-visible .home-product-ribbon__surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(96, 165, 250, 0.18), rgba(0, 82, 204, 0.1) 56%, rgba(0, 42, 112, 0.24));
}

.home-product-ribbon__item:hover .home-product-ribbon__inner,
.home-product-ribbon__item:focus-visible .home-product-ribbon__inner {
  background: #d60000;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -18px 36px rgba(4, 24, 54, 0.2);
}

.home-product-ribbon__item:hover .home-product-ribbon__title,
.home-product-ribbon__item:focus-visible .home-product-ribbon__title,
.home-product-ribbon__item:hover .home-product-ribbon__desc,
.home-product-ribbon__item:focus-visible .home-product-ribbon__desc {
  color: rgba(255, 255, 255, 0.96);
}

.home-product-ribbon__item:hover .home-product-ribbon__index,
.home-product-ribbon__item:focus-visible .home-product-ribbon__index {
  display: none;
  color: rgba(255, 255, 255, 0);
  opacity: 0;
  visibility: hidden;
}

.home-product-ribbon__item:hover .home-product-ribbon__image,
.home-product-ribbon__item:focus-visible .home-product-ribbon__image {
  transform: scale(1.32);
  filter:
    brightness(0) invert(1)
    drop-shadow(0 18px 32px rgba(125, 211, 252, 0.22));
}

.home-product-ribbon__item--1 {
  z-index: 5;
}

.home-product-ribbon__item--2 {
  z-index: 4;
}

.home-product-ribbon__item--3 {
  z-index: 3;
}

.home-product-ribbon__item--4 {
  z-index: 2;
}

.home-product-ribbon__item--5 {
  z-index: 1;
}

.home-product-ribbon__item--1 .home-product-ribbon__surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.26)),
    linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(14, 165, 233, 0.04) 56%, rgba(15, 23, 42, 0.08));
}

.home-product-ribbon__item--2 .home-product-ribbon__surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.26)),
    linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(20, 184, 166, 0.04) 56%, rgba(15, 23, 42, 0.08));
}

.home-product-ribbon__item--3 .home-product-ribbon__surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.26)),
    linear-gradient(135deg, rgba(6, 182, 212, 0.16), rgba(14, 165, 233, 0.03) 56%, rgba(15, 23, 42, 0.08));
}

.home-product-ribbon__item--4 .home-product-ribbon__surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.26)),
    linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(59, 130, 246, 0.04) 56%, rgba(15, 23, 42, 0.08));
}

.home-product-ribbon__item--5 .home-product-ribbon__surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.26)),
    linear-gradient(135deg, rgba(251, 191, 36, 0.14), rgba(249, 115, 22, 0.03) 56%, rgba(15, 23, 42, 0.08));
}

@media (max-width: 1180px) {
  .home-product-ribbon {
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .home-product-ribbon__item {
    flex: 0 0 min(18rem, 52vw);
    margin-left: -1px;
  }
}

@media (max-width: 767px) {
  .home-capability-strip {
    padding: 3.5rem 0;
  }

  .home-prefooter-cta {
    padding: 4rem 0 4.5rem;
  }

  .home-prefooter-cta__inner p {
    font-size: 1rem;
  }

  .home-prefooter-cta__primary,
  .home-prefooter-cta__secondary {
    width: 100%;
  }

  .home-product-ribbon {
    flex-direction: column;
    overflow: visible;
  }

  .home-product-showcase__intro {
    gap: 0.75rem;
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .home-product-ribbon__item,
  .home-product-ribbon__item:first-child {
    margin-top: 0;
    margin-left: 0;
    clip-path: none;
  }

  .home-product-ribbon__item:hover,
  .home-product-ribbon__item:focus-visible {
    transform: none;
  }

  .home-product-ribbon__inner {
    min-height: 0;
    padding-inline: 1.4rem;
    clip-path: none;
  }

  .home-product-ribbon__desc {
    max-width: none;
  }

  .home-product-ribbon__surface {
    clip-path: none;
  }

  .home-product-ribbon__media {
    min-height: 10rem;
  }

  .home-product-ribbon__image {
    width: min(100%, 12rem);
    max-height: 8.5rem;
  }
}

.site-product-panel-list {
  display: grid;
  gap: 12px;
}

.site-product-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #334155;
  font-size: 17px;
  line-height: 1.6;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.site-product-item:hover,
.site-product-item:focus-visible {
  color: hsl(var(--primary));
  transform: translateX(4px);
}

.site-product-item--empty {
  color: #64748b;
}

.site-product-item-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-mega-column {
  display: grid;
  gap: 14px;
}

.site-mega-heading {
  color: #0f172b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.site-mega-link-card {
  display: grid;
  gap: 6px;
  padding: 14px 4px 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 0;
  background: transparent;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.site-mega-link-card:hover,
.site-mega-link-card:focus-visible {
  transform: none;
  border-color: hsl(var(--primary) / 0.22);
  box-shadow: none;
}

.site-mega-link-title {
  color: #0f172b;
  font-size: 16px;
  font-weight: 600;
}

.site-mega-link-meta {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.site-mega-link-card:hover .site-mega-link-title,
.site-mega-link-card:focus-visible .site-mega-link-title {
  color: hsl(var(--primary));
}

.site-popover-grid {
  display: grid;
  gap: 8px;
}

.site-popover-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.site-popover-link:hover {
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
}

header a.group\/navigation-menu-trigger,
header button.group\/navigation-menu-trigger,
header .text-muted-foreground,
header button.flex.items-center.gap-1\.5,
header button.flex.items-center.justify-center.h-9.w-9 {
  position: relative;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease,
    filter 0.18s ease;
}

.site-global-header {
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    backdrop-filter 0.24s ease,
    transform 0.24s ease;
}

body.home .site-global-header--home-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-color: transparent;
  background: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
}

body.home .site-global-header--home-overlay .container.site-shell {
  min-height: 5.3rem;
}

body.home .site-global-header--home-overlay a.group\/navigation-menu-trigger,
body.home .site-global-header--home-overlay button.group\/navigation-menu-trigger,
body.home .site-global-header--home-overlay .text-muted-foreground,
body.home .site-global-header--home-overlay button.flex.items-center.gap-1\.5,
body.home .site-global-header--home-overlay button.flex.items-center.justify-center.h-9.w-9,
body.home .site-global-header--home-overlay .header-lang-current,
body.home .site-global-header--home-overlay .header-utility-item a,
body.home .site-global-header--home-overlay .header-utility-item span {
  color: rgba(255, 255, 255, 0.94);
}

body.home .site-global-header--home-overlay .lucide-search,
body.home .site-global-header--home-overlay .lucide-globe,
body.home .site-global-header--home-overlay .lucide-user,
body.home .site-global-header--home-overlay .header-lang-current svg {
  color: rgba(255, 255, 255, 0.94);
}

body.home .site-global-header--home-overlay a.group\/navigation-menu-trigger:hover,
body.home .site-global-header--home-overlay a.group\/navigation-menu-trigger:focus-visible,
body.home .site-global-header--home-overlay button.group\/navigation-menu-trigger:hover,
body.home .site-global-header--home-overlay button.group\/navigation-menu-trigger:focus-visible,
body.home .site-global-header--home-overlay button.group\/navigation-menu-trigger.is-hover-open,
body.home .site-global-header--home-overlay button.flex.items-center.gap-1\.5:hover,
body.home .site-global-header--home-overlay button.flex.items-center.gap-1\.5:focus-visible,
body.home .site-global-header--home-overlay button.flex.items-center.justify-center.h-9.w-9:hover,
body.home .site-global-header--home-overlay button.flex.items-center.justify-center.h-9.w-9:focus-visible,
body.home .site-global-header--home-overlay .header-lang-current:hover,
body.home .site-global-header--home-overlay .header-lang-current:focus-visible,
body.home .site-global-header--home-overlay .header-utility-item a:hover,
body.home .site-global-header--home-overlay .header-utility-item a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

body.home .site-global-header--home-overlay a.group\/navigation-menu-trigger.is-current,
body.home .site-global-header--home-overlay button.group\/navigation-menu-trigger.is-current,
body.home .site-global-header--home-overlay a.group\/navigation-menu-trigger.is-current svg,
body.home .site-global-header--home-overlay button.group\/navigation-menu-trigger.is-current svg {
  color: #ffffff;
}

body.home .site-global-header--home-overlay a.group\/navigation-menu-trigger.is-current,
body.home .site-global-header--home-overlay button.group\/navigation-menu-trigger.is-current {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: none;
}

body.home .site-global-header--home-overlay a.group\/navigation-menu-trigger.is-current:hover,
body.home .site-global-header--home-overlay a.group\/navigation-menu-trigger.is-current:focus-visible,
body.home .site-global-header--home-overlay button.group\/navigation-menu-trigger.is-current:hover,
body.home .site-global-header--home-overlay button.group\/navigation-menu-trigger.is-current:focus-visible,
body.home .site-global-header--home-overlay button.group\/navigation-menu-trigger.is-current.is-hover-open {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

body.home .site-global-header--home-overlay > .container > .flex.items-center.gap-6 a img {
  filter: brightness(0) invert(1);
}

body.home .site-global-header--home-overlay.is-scrolled {
  border-color: rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

body.home .site-global-header--home-overlay.is-scrolled a.group\/navigation-menu-trigger,
body.home .site-global-header--home-overlay.is-scrolled button.group\/navigation-menu-trigger,
body.home .site-global-header--home-overlay.is-scrolled .text-muted-foreground,
body.home .site-global-header--home-overlay.is-scrolled button.flex.items-center.gap-1\.5,
body.home .site-global-header--home-overlay.is-scrolled button.flex.items-center.justify-center.h-9.w-9,
body.home .site-global-header--home-overlay.is-scrolled .header-lang-current,
body.home .site-global-header--home-overlay.is-scrolled .header-utility-item a,
body.home .site-global-header--home-overlay.is-scrolled .header-utility-item span {
  color: inherit;
}

body.home .site-global-header--home-overlay.is-scrolled > .container > .flex.items-center.gap-6 a img {
  filter: none;
}

header a.group\/navigation-menu-trigger::after,
header button.group\/navigation-menu-trigger::after {
  content: none;
}

header a.group\/navigation-menu-trigger:hover,
header a.group\/navigation-menu-trigger:focus-visible,
header button.group\/navigation-menu-trigger:hover,
header button.group\/navigation-menu-trigger:focus-visible,
header button.group\/navigation-menu-trigger.is-hover-open {
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.06);
}

header a.group\/navigation-menu-trigger.is-current,
header button.group\/navigation-menu-trigger.is-current {
  color: var(--yingyue-brand-blue);
  background: rgb(var(--yingyue-brand-blue-rgb) / 0.08);
  box-shadow: inset 0 0 0 1px rgb(var(--yingyue-brand-blue-rgb) / 0.12);
}

header a.group\/navigation-menu-trigger.is-current svg,
header button.group\/navigation-menu-trigger.is-current svg {
  color: var(--yingyue-brand-blue);
}

header a.group\/navigation-menu-trigger.is-current:hover,
header a.group\/navigation-menu-trigger.is-current:focus-visible,
header button.group\/navigation-menu-trigger.is-current:hover,
header button.group\/navigation-menu-trigger.is-current:focus-visible,
header button.group\/navigation-menu-trigger.is-current.is-hover-open {
  color: var(--yingyue-brand-blue);
  background: rgb(var(--yingyue-brand-blue-rgb) / 0.12);
}

header button.group\/navigation-menu-trigger:hover svg,
header button.group\/navigation-menu-trigger:focus-visible svg,
header button.group\/navigation-menu-trigger.is-hover-open svg,
header button.flex.items-center.gap-1\.5:hover svg,
header button.flex.items-center.gap-1\.5:focus-visible svg,
header button.flex.items-center.justify-center.h-9.w-9:hover svg,
header button.flex.items-center.justify-center.h-9.w-9:focus-visible svg {
  color: hsl(var(--primary));
}

header button.flex.items-center.gap-1\.5:hover,
header button.flex.items-center.gap-1\.5:focus-visible,
header button.flex.items-center.justify-center.h-9.w-9:hover,
header button.flex.items-center.justify-center.h-9.w-9:focus-visible {
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.06);
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 8, 20, 0.48);
}

.site-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-modal-panel {
  width: min(100%, 640px);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--background);
  color: var(--foreground);
  box-shadow: 0 24px 80px rgba(3, 8, 20, 0.25);
}

.site-modal-panel.site-modal-panel-sm {
  width: min(100%, 520px);
}

.site-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 8px;
}

.site-modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.site-modal-header p {
  margin: 6px 0 0;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.6;
}

.site-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--foreground);
  background: var(--muted);
}

.site-modal-body {
  padding: 8px 24px 24px;
}

.site-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.site-field label {
  font-size: 14px;
  font-weight: 600;
}

.site-input,
.site-search {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--input);
  border-radius: 12px;
  background: var(--background);
  color: var(--foreground);
}

.site-search::placeholder {
  color: rgba(100, 116, 139, 0.52);
}

.site-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-submit {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  color: var(--primary-foreground);
  background: hsl(var(--primary));
  white-space: nowrap;
}

.site-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.site-help {
  color: var(--muted-foreground);
  font-size: 14px;
}

.site-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
  padding: 4px;
  border-radius: 14px;
  background: #f1f5f9;
}

.site-auth-tab {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.site-auth-tab.is-active {
  background: #fff;
  color: var(--yingyue-brand-blue);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.site-auth-status {
  margin-bottom: 14px;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.6;
}

.site-auth-status[data-state="success"] {
  background: rgba(34, 197, 94, 0.08);
  color: #166534;
}

.site-auth-status[data-state="error"] {
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
}

.site-auth-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-hot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.site-hot-item {
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: var(--muted);
  color: var(--muted-foreground);
  font-size: 12px;
  cursor: pointer;
}

.site-hot-item:hover,
.site-hot-item:focus-visible {
  color: var(--yingyue-brand-blue);
  background: rgb(var(--yingyue-brand-blue-rgb) / 0.08);
}

.site-static-note {
  margin-top: 12px;
  color: var(--muted-foreground);
  font-size: 12px;
}

.site-mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #0f172a;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}

.site-mobile-menu-toggle:hover,
.site-mobile-menu-toggle:focus-visible {
  border-color: rgba(59, 130, 246, 0.42);
  background: rgba(239, 246, 255, 0.94);
  transform: translateY(-1px);
}

.site-mobile-menu-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  stroke-width: 2;
}

.site-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2300;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.site-mobile-menu[hidden] {
  display: none;
}

.site-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.42);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.site-mobile-menu__panel {
  position: relative;
  width: min(88vw, 24rem);
  height: 100%;
  padding: 1rem 1rem 1.5rem;
  overflow-y: auto;
  background: linear-gradient(180deg, #0f172a 0%, #111c34 100%);
  box-shadow: -24px 0 48px rgba(15, 23, 42, 0.24);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.24s ease;
}

.site-mobile-menu.is-open {
  pointer-events: auto;
}

.site-mobile-menu.is-open .site-mobile-menu__backdrop {
  opacity: 1;
}

.site-mobile-menu.is-open .site-mobile-menu__panel {
  transform: translate3d(0, 0, 0);
}

.site-mobile-menu__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.site-mobile-menu__brand {
  font-size: 0.9rem;
  letter-spacing: 0.26em;
  color: rgba(191, 219, 254, 0.88);
}

.site-mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
}

.site-mobile-menu__close svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 2;
}

.site-mobile-menu__nav {
  display: grid;
  gap: 0.7rem;
}

.site-mobile-menu__link,
.site-mobile-menu__section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: transparent;
  color: #f8fafc;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 600;
}

.site-mobile-menu__link {
  justify-content: flex-start;
}

.site-mobile-menu__section-toggle svg {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s ease;
}

.site-mobile-menu__section.is-open .site-mobile-menu__section-toggle svg {
  transform: rotate(180deg);
}

.site-mobile-menu__children {
  display: none;
  grid-template-columns: 1fr;
  gap: 0.55rem 0.8rem;
  padding: 0.25rem 0 0.8rem;
}

.site-mobile-menu__section.is-open .site-mobile-menu__children {
  display: grid;
}

.site-mobile-menu__child {
  display: block;
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.98rem;
  line-height: 1.55;
  padding-left: 0.95rem;
}

@media (max-width: 1280px) {
  header .site-desktop-navigation {
    display: none !important;
  }

  header .site-mobile-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: 0.35rem;
  }

  header .container.site-shell {
    gap: 1rem;
  }

  header .flex.items-center.gap-6 {
    margin-right: auto;
  }

  header .header-utilities {
    flex: 0 0 auto;
    margin-left: auto;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }
}

@media (min-width: 1281px) {
  header .site-desktop-navigation {
    display: flex !important;
  }
}

.hero-main-title {
  text-wrap: nowrap;
}

@media (min-width: 768px) {
  body.home .hero-slide__copy {
    max-width: min(56rem, 58vw);
  }

  body.home .hero-slide__content > .space-y-3,
  body.home .hero-slide__content .space-y-1\.5 {
    max-width: none;
    width: 100%;
  }

  body.home .hero-main-title {
    max-width: none !important;
    white-space: nowrap !important;
    text-wrap: nowrap !important;
  }

  body.home .hero-slide__description {
    max-width: 52rem;
    font-size: 1.36rem !important;
    line-height: 1.88 !important;
  }

  body.home .hero-slide__highlights,
  body.home .hero-slide__highlights li {
    font-size: 1.36rem;
    line-height: 1.88;
  }
}

body.yingyue-home-en-preview .hero-main-title,
body.yingyue-home-ja-preview .hero-main-title {
  max-width: 13.5em;
  white-space: normal;
  text-wrap: balance;
  font-size: 3rem;
  line-height: 1.08;
}

@media (min-width: 1280px) {
  body.yingyue-home-en-preview .hero-main-title {
    font-size: 3.2rem;
  }

  body.yingyue-home-ja-preview .hero-main-title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  body.yingyue-home-en-preview .hero-main-title,
  body.yingyue-home-ja-preview .hero-main-title {
    font-size: 1.75rem;
    line-height: 1.16;
  }
}

.hero-embla {
  contain: layout paint style;
}

.hero-embla__viewport {
  height: 100%;
  overflow: hidden;
}

.hero-embla__container {
  height: 100%;
  will-change: transform;
  backface-visibility: hidden;
  touch-action: pan-y pinch-zoom;
}

.hero-embla__slide {
  min-width: 100%;
}

.hero-bg-image,
.hero-bg-tint,
.hero-ambient-glow {
  will-change: transform, opacity;
}

.hero-bg-image {
  --hero-bg-flip: 1;
  transform-origin: center center;
  transition:
    transform 1.2s ease,
    filter 1.2s ease,
    opacity 0.8s ease;
  filter: saturate(0.96) brightness(0.9);
}

.hero-bg-tint {
  transition: opacity 0.9s ease;
}

.hero-ambient-glow {
  opacity: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(72, 189, 255, 0.12), transparent 32%),
    radial-gradient(circle at 78% 28%, rgba(31, 115, 255, 0.14), transparent 34%),
    radial-gradient(circle at 62% 82%, rgba(0, 208, 255, 0.08), transparent 28%);
  mix-blend-mode: screen;
  transition: opacity 1s ease;
}

.hero-embla__slide.is-active .hero-bg-image {
  animation: heroBackgroundDrift 13s ease-in-out infinite alternate;
  filter: saturate(1.02) brightness(0.98);
}

.hero-embla__slide.is-active .hero-ambient-glow {
  opacity: 1;
  animation: heroAmbientPulse 8.5s ease-in-out infinite;
}

.hero-lite-overlay {
  opacity: 0.42;
}

.hero-lite-svg {
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.hero-lite-frame {
  opacity: 0.22;
}

.hero-lite-scan {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.hero-lite-line {
  stroke-dasharray: 8 14;
  stroke-dashoffset: 0;
  opacity: 0.28;
}

.hero-lite-dot {
  opacity: 0.68;
  transform-origin: center;
}

.hero-lite-dot-ring {
  opacity: 0;
  transform-origin: center;
}

.hero-lite-frame,
.hero-lite-scan,
.hero-lite-lines,
.hero-lite-line,
.hero-lite-dot-ring {
  display: none;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-frame {
  animation: heroLiteFrameDriftX 10.5s ease-in-out infinite alternate;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-scan {
  animation: heroLiteScanPass 6.8s linear infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-line--a {
  animation: heroLiteLineShift 9s linear infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-line--b {
  animation: heroLiteLineShift 11s linear infinite reverse;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-line--c {
  animation: heroLiteLineShift 13s linear infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-line--d {
  animation: heroLiteLineShift 10s linear infinite reverse;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-dot--1 {
  animation: heroLiteDotBlink 3.8s ease-in-out infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-dot--2 {
  animation: heroLiteDotBlink 4.6s ease-in-out infinite 0.8s;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-dot--3 {
  animation: heroLiteDotBlink 4.2s ease-in-out infinite 1.2s;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-dot--4 {
  animation: heroLiteDotBlink 5.3s ease-in-out infinite 0.4s;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-dot--5 {
  animation: heroLiteDotBlink 4.8s ease-in-out infinite 1s;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-dot-ring--1 {
  animation: heroLiteRingPulse 4.8s ease-out infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-dot-ring--2 {
  animation: heroLiteRingPulse 5.6s ease-out infinite 1.1s;
}

.hero-embla__slide.is-active .hero-lite-overlay--default .hero-lite-dot-ring--3 {
  animation: heroLiteRingPulse 5.2s ease-out infinite 0.7s;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-frame {
  animation: heroLiteFrameDriftDown 11.2s ease-in-out infinite alternate;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-lines {
  animation: heroLiteScene2GroupFlow 9.8s ease-in-out infinite alternate;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-dots {
  animation: heroLiteScene2DotsFall 10.4s ease-in-out infinite alternate;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-scan {
  animation: heroLiteScanPassVertical 7.4s linear infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-line--a {
  animation: heroLiteLineArcFloat 8.8s ease-in-out infinite alternate;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-line--b {
  animation: heroLiteLineArcFloat 10.6s ease-in-out infinite alternate-reverse;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-line--c {
  animation: heroLiteLineArcFloat 12.2s ease-in-out infinite alternate;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-line--d {
  animation: heroLiteLineShift 9.5s linear infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-dot--1 {
  animation: heroLiteDotOrbitDownA 4.4s ease-in-out infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-dot--2 {
  animation: heroLiteDotOrbitDownB 5.1s ease-in-out infinite 0.8s;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-dot--3 {
  animation: heroLiteDotOrbitDownC 4.8s ease-in-out infinite 1.4s;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-dot--4 {
  animation: heroLiteDotOrbitDownB 5.9s ease-in-out infinite 0.3s;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-dot--5 {
  animation: heroLiteDotOrbitDownA 5.4s ease-in-out infinite 1s;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-dot-ring--1 {
  animation: heroLiteRingPulseSoft 5.2s ease-out infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-dot-ring--2 {
  animation: heroLiteRingPulseSoft 5.8s ease-out infinite 1.2s;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene2 .hero-lite-dot-ring--3 {
  animation: heroLiteRingPulseSoft 5.4s ease-out infinite 0.6s;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-frame {
  animation: heroLiteFrameDriftDiagonal 9.6s ease-in-out infinite alternate;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-lines {
  animation: heroLiteScene3GroupSweep 8.8s ease-in-out infinite alternate;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-dots {
  animation: heroLiteScene3DotsGlide 9.4s ease-in-out infinite alternate;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-scan {
  animation: heroLiteScanPassDiagonal 8.2s linear infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-line--a {
  animation: heroLiteLineShiftDiagonal 9.2s linear infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-line--b {
  animation: heroLiteLineShiftDiagonal 11.4s linear infinite reverse;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-line--c {
  animation: heroLiteLineShiftDiagonal 12.8s linear infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-line--d {
  animation: heroLiteLineArcFloat 10.8s ease-in-out infinite alternate;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-dot--1 {
  animation: heroLiteDotOrbitSideA 4.1s ease-in-out infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-dot--2 {
  animation: heroLiteDotOrbitSideB 5.2s ease-in-out infinite 0.9s;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-dot--3 {
  animation: heroLiteDotOrbitSideC 4.7s ease-in-out infinite 1.1s;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-dot--4 {
  animation: heroLiteDotOrbitSideB 5.8s ease-in-out infinite 0.5s;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-dot--5 {
  animation: heroLiteDotOrbitSideA 5s ease-in-out infinite 1.3s;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-dot-ring--1 {
  animation: heroLiteRingPulseSharp 4.9s ease-out infinite;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-dot-ring--2 {
  animation: heroLiteRingPulseSharp 5.7s ease-out infinite 0.8s;
}

.hero-embla__slide.is-active .hero-lite-overlay--scene3 .hero-lite-dot-ring--3 {
  animation: heroLiteRingPulseSharp 5.3s ease-out infinite 1.1s;
}

.hero-experimental-overlay {
  opacity: 0.54;
}

.hero-experimental-svg {
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.hero-experimental-svg--double {
  width: 200%;
}

.hero-experimental-grid,
.hero-experimental-scan,
.hero-experimental-radial {
  position: absolute;
  pointer-events: none;
}

.hero-experimental-grid--scene2 {
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(75, 139, 244, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 139, 244, 0.8) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-experimental-radial--scene5 {
  right: -10%;
  top: 50%;
  width: 50rem;
  height: 50rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 68, 255, 0.15) 0%, transparent 60%);
}

.hero-experimental-radial--scene9 {
  right: 5%;
  top: 50%;
  width: 37.5rem;
  height: 37.5rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.2) 0%, transparent 70%);
}

.hero-experimental-scan--scene2 {
  inset: 0 auto 0 30%;
  width: 10px;
  background: rgba(34, 211, 238, 0.3);
  filter: blur(6px);
  box-shadow: 0 0 20px #00f0ff;
}

.hero-experimental-scan--scene6 {
  inset: 0 auto 0 0;
  width: 25rem;
  background: linear-gradient(90deg, transparent, rgba(0, 136, 255, 0.12), transparent);
  transform: skewX(-20deg);
}

.hero-experimental-flow {
  stroke-dasharray: 150 50 50 50 300 100;
  animation: heroExperimentalFlowDash 12s linear infinite;
}

.hero-experimental-flow-slow {
  stroke-dasharray: 300 100 100 50 200 150;
  animation: heroExperimentalFlowDash 20s linear infinite reverse;
}

.hero-experimental-glow-pulse {
  animation: heroExperimentalPulseGlow 4s ease-in-out infinite;
}

.hero-experimental-circuit {
  stroke-dasharray: 1000;
  animation: heroExperimentalDrawCircuit 10s ease-in-out infinite;
}

.hero-experimental-float {
  animation: heroExperimentalFloatY 6s ease-in-out infinite;
}

.hero-experimental-float-delay {
  animation: heroExperimentalFloatY 6s ease-in-out infinite 3s;
}

.hero-experimental-spin {
  transform-origin: center;
  transform-box: fill-box;
  animation: heroExperimentalSpin 20s linear infinite;
}

.hero-experimental-spin-reverse {
  transform-origin: center;
  transform-box: fill-box;
  animation: heroExperimentalSpinReverse 25s linear infinite;
}

.hero-experimental-spin-slow {
  transform-origin: center;
  transform-box: fill-box;
  animation: heroExperimentalSpin 40s linear infinite;
}

.hero-experimental-pulse-hex {
  animation: heroExperimentalPulseHex 4s ease-in-out infinite;
}

.hero-experimental-flux {
  stroke-dasharray: 200 100;
  animation: heroExperimentalFluxFlow 6s linear infinite;
}

.hero-experimental-laser {
  animation: heroExperimentalLaserSweep 5s ease-in-out infinite alternate;
}

.hero-experimental-grid-blink {
  animation: heroExperimentalGridBlink 3s infinite;
}

.hero-experimental-ripple {
  transform-origin: 800px 350px;
  animation: heroExperimentalRippleExp 4s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.hero-embla__slide.is-active .hero-experimental-scan--scene2 {
  animation: heroExperimentalScanSlide 4s linear infinite;
}

.hero-embla__slide.is-active .hero-experimental-scan--scene6 {
  animation: heroExperimentalScanSlideWide 6s ease-in-out infinite;
}

@keyframes heroExperimentalFlowDash {
  to {
    stroke-dashoffset: -1000;
  }
}

@keyframes heroExperimentalPulseGlow {
  0%,
  100% {
    opacity: 0.3;
    filter: drop-shadow(0 0 5px rgba(0, 150, 255, 0.5));
  }
  50% {
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(0, 150, 255, 1));
  }
}

@keyframes heroExperimentalDrawCircuit {
  0% {
    stroke-dashoffset: 1000;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1000;
  }
}

@keyframes heroExperimentalFloatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes heroExperimentalSpin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes heroExperimentalSpinReverse {
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes heroExperimentalPulseHex {
  0%,
  100% {
    opacity: 0.2;
    stroke-width: 2;
  }
  50% {
    opacity: 0.8;
    stroke-width: 6;
    filter: drop-shadow(0 0 10px #00f0ff);
  }
}

@keyframes heroExperimentalFluxFlow {
  to {
    stroke-dashoffset: -800;
  }
}

@keyframes heroExperimentalLaserSweep {
  0% {
    transform: translateX(-300px) translateY(-150px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(600px) translateY(300px);
    opacity: 0;
  }
}

@keyframes heroExperimentalGridBlink {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
    fill: #00f0ff;
  }
}

@keyframes heroExperimentalRippleExp {
  0% {
    transform: scale(0.2);
    opacity: 1;
    stroke-width: 10px;
  }
  100% {
    transform: scale(4);
    opacity: 0;
    stroke-width: 1px;
  }
}

@keyframes heroExperimentalScanSlide {
  0% {
    left: 30%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes heroExperimentalScanSlideWide {
  0% {
    transform: translateX(-10%) skewX(-20deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(220%) skewX(-20deg);
    opacity: 0;
  }
}

#homepage-hero {
  height: 100vh;
}

#homepage-hero.hero-paused {
  animation-play-state: paused !important;
}

.hero-product-image {
  max-height: 420px;
  transform: translateY(14px);
  transform-origin: center center;
  filter:
    drop-shadow(0 22px 28px rgba(3, 8, 20, 0.44))
    drop-shadow(0 0 18px rgb(var(--yingyue-brand-blue-rgb) / 0.24))
    drop-shadow(0 0 42px rgb(255 255 255 / 0.10));
}

@media (min-width: 768px) {
  .hero-product-image {
    max-height: 490px;
    transform: translateY(18px);
  }
}

@media (max-width: 2499px) {
  .hero-product-image {
    transform: translateY(18px) scale(1.3);
  }
}

@media (max-width: 1729px) {
  .hero-product-image:not([data-hero-slide="4"] .hero-product-image) {
    transform: translateY(18px) translateX(40px) scale(0.98);
  }
  [data-hero-slide="4"] .hero-product-image {
    transform: translateY(18px) translateX(-150px) scale(0.82);
  }
  body.home .hero-nav-button {
    top: calc(44% - 80px);
    width: 2.4rem;
    height: 2.4rem;
    transform: translateY(-50%) scale(0.8);
  }
  body.home .hero-nav-button:hover,
  body.home .hero-nav-button:focus-visible {
    transform: translateY(-50%) scale(0.85);
  }
  body.home .hero-nav-button--prev {
    left: 30px;
  }
  body.home .hero-nav-button--next {
    right: 30px;
  }
  body.home .hero-nav-button svg {
    width: 1rem;
    height: 1rem;
  }
  .site-floating-contact {
    transform: translateY(calc(-50% + 210px));
  }
}

.hero-product-glow {
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: 0;
  width: clamp(280px, 56vw, 520px);
  height: clamp(96px, 18vw, 180px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgb(255 255 255 / 0.22) 0%, rgb(var(--yingyue-brand-blue-rgb) / 0.16) 28%, rgb(var(--yingyue-brand-blue-rgb) / 0.08) 54%, transparent 76%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
  opacity: 0.95;
  pointer-events: none;
}

.hero-liquid--pill,
.hero-liquid--button,
.hero-liquid--button-gold {
  --hero-liquid-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.002) 58%, rgba(255, 255, 255, 0.01));
  --hero-liquid-border: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  overflow: hidden;
  box-shadow:
    0 10px 22px rgba(3, 8, 20, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -8px 12px rgba(3, 8, 20, 0.035);
}

.hero-liquid--button,
.hero-liquid--button-gold {
  transform-origin: center;
  transition-property: transform, box-shadow, border-color;
  transition-duration: 0.24s;
  transition-timing-function: ease;
}

.hero-liquid--pill .hero-liquid__filter,
.hero-liquid--button .hero-liquid__filter,
.hero-liquid--button-gold .hero-liquid__filter {
  display: none;
}

.hero-liquid--pill .hero-liquid__overlay,
.hero-liquid--button .hero-liquid__overlay,
.hero-liquid--button-gold .hero-liquid__overlay {
  background: var(--hero-liquid-bg);
}

.hero-liquid--pill .hero-liquid__specular,
.hero-liquid--button .hero-liquid__specular,
.hero-liquid--button-gold .hero-liquid__specular {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(3, 8, 20, 0.12);
}

.hero-liquid--pill .hero-liquid__specular::before,
.hero-liquid--button .hero-liquid__specular::before,
.hero-liquid--button-gold .hero-liquid__specular::before {
  content: "";
  position: absolute;
  inset: -42%;
  border-radius: 999px;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0) 0deg,
    rgba(255, 255, 255, 0) 34deg,
    rgba(255, 255, 255, 0.7) 48deg,
    rgba(255, 255, 255, 0.08) 64deg,
    rgba(255, 255, 255, 0) 118deg,
    rgba(255, 255, 255, 0) 212deg,
    rgba(255, 255, 255, 0.38) 230deg,
    rgba(255, 255, 255, 0.04) 246deg,
    rgba(255, 255, 255, 0) 360deg
  );
  animation: heroLiquidEdgeFlow 5.8s linear infinite;
  opacity: 0.9;
}

.hero-liquid--button .hero-liquid__specular::before,
.hero-liquid--button-gold .hero-liquid__specular::before {
  animation: none;
  opacity: 0.46;
  transition:
    opacity 0.24s ease,
    filter 0.24s ease;
}

.hero-liquid--pill .hero-liquid__specular,
.hero-liquid--button .hero-liquid__specular,
.hero-liquid--button-gold .hero-liquid__specular {
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.hero-liquid--pill .hero-liquid__specular::after,
.hero-liquid--button .hero-liquid__specular::after,
.hero-liquid--button-gold .hero-liquid__specular::after,
.hero-liquid-icon::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.035) 12%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0.11) 75%, rgba(255, 255, 255, 0) 88%),
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 22%);
  opacity: 0.5;
}

.hero-liquid-icon {
  border-radius: 999px;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.004));
  box-shadow:
    0 8px 18px rgba(3, 8, 20, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -7px 10px rgba(3, 8, 20, 0.035);
}

@keyframes heroLiquidEdgeFlow {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-liquid--pill .hero-liquid__specular::before,
  .hero-liquid--button .hero-liquid__specular::before,
  .hero-liquid--button-gold .hero-liquid__specular::before {
    animation: none;
  }
}

.hero-liquid--pill {
  --hero-liquid-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.002) 58%, rgba(255, 255, 255, 0.008));
  box-shadow:
    0 8px 18px rgba(3, 8, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -6px 10px rgba(3, 8, 20, 0.025);
}

.hero-liquid--pill .hero-liquid__specular::before {
  animation-duration: 7.2s;
  opacity: 0.58;
}

.hero-secondary-cta {
  color: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 10px 22px rgba(3, 8, 20, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.hero-secondary-cta .hero-liquid__overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.002));
}

.hero-secondary-cta .hero-liquid__specular {
  box-shadow:
    inset 0.5px 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-secondary-cta .hero-liquid__content {
  text-shadow: 0 1px 2px rgba(3, 8, 20, 0.28);
}

.hero-slide__highlight-dot {
  background: #f4b942;
  box-shadow: 0 0 12px rgba(244, 185, 66, 0.5);
}

.hero-liquid--button:hover,
.hero-liquid--button:focus-visible,
.hero-liquid--button-gold:hover,
.hero-liquid--button-gold:focus-visible {
  transform: scale(1.035);
  box-shadow:
    0 14px 28px rgba(3, 8, 20, 0.16),
    0 0 20px rgba(173, 218, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -8px 12px rgba(3, 8, 20, 0.035);
}

.hero-liquid--button:hover .hero-liquid__specular::before,
.hero-liquid--button:focus-visible .hero-liquid__specular::before,
.hero-liquid--button-gold:hover .hero-liquid__specular::before,
.hero-liquid--button-gold:focus-visible .hero-liquid__specular::before {
  animation: heroLiquidEdgeFlow 2.1s linear infinite;
  opacity: 1;
  filter: drop-shadow(0 0 7px rgba(215, 238, 255, 0.58));
}

@keyframes heroSceneWaveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes heroScenePulseGlow {
  0%,
  100% {
    opacity: 0.35;
    filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.35));
  }
  50% {
    opacity: 0.85;
    filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.75));
  }
}

@keyframes heroSceneSpin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes heroSceneSpinReverse {
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes heroSceneScan {
  0% {
    left: 30%;
    opacity: 0;
  }
  10%,
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes heroBackgroundDrift {
  0% {
    transform: scaleX(var(--hero-bg-flip, 1)) scale(1.015) translate3d(0, 0, 0);
  }
  100% {
    transform: scaleX(var(--hero-bg-flip, 1)) scale(1.065) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes heroAmbientPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(1);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.04);
  }
}

@keyframes heroLiteLineShift {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.14;
  }
  50% {
    opacity: 0.38;
  }
  100% {
    stroke-dashoffset: -44;
    opacity: 0.16;
  }
}

@keyframes heroLiteDotBlink {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.96);
  }
  45% {
    opacity: 0.95;
    transform: scale(1.12);
  }
  60% {
    opacity: 0.52;
    transform: scale(0.98);
  }
}

@keyframes heroLiteScanPass {
  0% {
    opacity: 0;
    transform: translate3d(-80px, 0, 0);
  }
  12% {
    opacity: 0.04;
  }
  38% {
    opacity: 0.2;
  }
  64% {
    opacity: 0.08;
  }
  100% {
    opacity: 0;
    transform: translate3d(260px, 0, 0);
  }
}

@keyframes heroLiteRingPulse {
  0%,
  100% {
    opacity: 0.16;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.44;
    transform: scale(1.12);
  }
}

@keyframes heroLiteFrameDriftX {
  0% {
    transform: translate3d(-3px, 0, 0);
    opacity: 0.18;
  }
  100% {
    transform: translate3d(4px, 0, 0);
    opacity: 0.24;
  }
}

@keyframes heroLiteFrameDriftDown {
  0% {
    transform: translate3d(0, -5px, 0);
    opacity: 0.18;
  }
  100% {
    transform: translate3d(0, 6px, 0);
    opacity: 0.25;
  }
}

@keyframes heroLiteFrameDriftDiagonal {
  0% {
    transform: translate3d(-4px, 3px, 0);
    opacity: 0.18;
  }
  100% {
    transform: translate3d(6px, -4px, 0);
    opacity: 0.26;
  }
}

@keyframes heroLiteScanPassVertical {
  0% {
    opacity: 0;
    transform: translate3d(0, -68px, 0);
  }
  22% {
    opacity: 0.06;
  }
  46% {
    opacity: 0.28;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 118px, 0);
  }
}

@keyframes heroLiteScanPassDiagonal {
  0% {
    opacity: 0;
    transform: translate3d(-72px, -30px, 0) rotate(-8deg);
  }
  18% {
    opacity: 0.04;
  }
  44% {
    opacity: 0.24;
  }
  100% {
    opacity: 0;
    transform: translate3d(150px, 42px, 0) rotate(-8deg);
  }
}

@keyframes heroLiteLineArcFloat {
  0% {
    opacity: 0.12;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.34;
  }
  100% {
    opacity: 0.18;
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes heroLiteLineShiftDiagonal {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.14;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.38;
  }
  100% {
    stroke-dashoffset: -40;
    opacity: 0.16;
    transform: translate3d(10px, -7px, 0);
  }
}

@keyframes heroLiteScene2GroupFlow {
  0% {
    transform: translate3d(0, -3px, 0);
  }
  100% {
    transform: translate3d(0, 8px, 0);
  }
}

@keyframes heroLiteScene2DotsFall {
  0% {
    transform: translate3d(-1px, -4px, 0);
  }
  100% {
    transform: translate3d(2px, 7px, 0);
  }
}

@keyframes heroLiteScene3GroupSweep {
  0% {
    transform: translate3d(-4px, 4px, 0);
  }
  100% {
    transform: translate3d(7px, -6px, 0);
  }
}

@keyframes heroLiteScene3DotsGlide {
  0% {
    transform: translate3d(-3px, 2px, 0);
  }
  100% {
    transform: translate3d(5px, -4px, 0);
  }
}

@keyframes heroLiteDotOrbitDownA {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) scale(0.96);
  }
  50% {
    opacity: 0.94;
    transform: translate3d(-2px, 10px, 0) scale(1.08);
  }
}

@keyframes heroLiteDotOrbitDownB {
  0%,
  100% {
    opacity: 0.4;
    transform: translate3d(0, 0, 0) scale(0.95);
  }
  50% {
    opacity: 0.96;
    transform: translate3d(2px, 8px, 0) scale(1.12);
  }
}

@keyframes heroLiteDotOrbitDownC {
  0%,
  100% {
    opacity: 0.44;
    transform: translate3d(0, 0, 0) scale(0.96);
  }
  50% {
    opacity: 0.98;
    transform: translate3d(1px, 12px, 0) scale(1.1);
  }
}

@keyframes heroLiteDotOrbitSideA {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) scale(0.96);
  }
  50% {
    opacity: 0.96;
    transform: translate3d(9px, -3px, 0) scale(1.1);
  }
}

@keyframes heroLiteDotOrbitSideB {
  0%,
  100% {
    opacity: 0.4;
    transform: translate3d(0, 0, 0) scale(0.95);
  }
  50% {
    opacity: 0.98;
    transform: translate3d(7px, -5px, 0) scale(1.12);
  }
}

@keyframes heroLiteDotOrbitSideC {
  0%,
  100% {
    opacity: 0.44;
    transform: translate3d(0, 0, 0) scale(0.96);
  }
  50% {
    opacity: 0.98;
    transform: translate3d(11px, -6px, 0) scale(1.08);
  }
}

@keyframes heroLiteRingPulseSoft {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.34;
    transform: scale(1.08);
  }
}

@keyframes heroLiteRingPulseSharp {
  0%,
  100% {
    opacity: 0.14;
    transform: scale(0.88);
  }
  50% {
    opacity: 0.46;
    transform: scale(1.16);
  }
}

.hero-scene-wave {
  animation: heroSceneWaveMove 8s linear infinite;
}

@media (min-width: 960px) {
  .site-mega-inner:not(.site-product-mega-inner) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 959px) {
  .site-mega-popover {
    display: none;
  }
}

.hero-scene-glow-pulse {
  animation: heroScenePulseGlow 4s ease-in-out infinite;
  transform-origin: center;
}

.hero-scene-spin {
  animation: heroSceneSpin 20s linear infinite;
  transform-origin: 850px 350px;
}

.hero-scene-fast-spin {
  animation: heroSceneSpin 8s linear infinite;
  transform-origin: 850px 350px;
}

.hero-scene-spin-reverse {
  animation: heroSceneSpinReverse 25s linear infinite;
  transform-origin: 850px 350px;
}

.hero-scene-spin-slow {
  animation: heroSceneSpin 40s linear infinite;
  transform-origin: 850px 350px;
}

.hero-scene-scan {
  animation: heroSceneScan 4s linear infinite;
}

.solutions-page {
  background:
    linear-gradient(180deg, #020617 0, #020617 18rem, #f8fafc 18rem, #f8fafc 100%);
}

.solutions-page [id] {
  scroll-margin-top: 7.5rem;
}

.solutions-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--yingyue-brand-blue-ink) 96%, #020617), color-mix(in srgb, var(--yingyue-brand-blue-deep) 88%, #020617)),
    #0f172a;
  color: #fff;
}

.solutions-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
}

.solutions-hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.solutions-hero__orb--one {
  top: -4rem;
  right: 6%;
  width: 18rem;
  height: 18rem;
  background: rgb(var(--yingyue-brand-blue-rgb) / 0.18);
}

.solutions-hero__orb--two {
  bottom: 1rem;
  left: 4%;
  width: 14rem;
  height: 14rem;
  background: rgb(var(--yingyue-brand-blue-rgb) / 0.14);
}

.solutions-hero__eyebrow,
.solutions-section-label,
.solutions-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.solutions-hero__eyebrow::before,
.solutions-section-label::before,
.solutions-panel__eyebrow::before {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.solutions-hero__eyebrow {
  color: rgba(219, 234, 254, 0.92);
}

.solutions-hero__eyebrow::before {
  width: 2.8rem;
  background: rgba(191, 219, 254, 0.74);
  opacity: 1;
}

.solutions-section-label {
  color: var(--yingyue-brand-blue);
}

.solutions-section-label::after {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.solutions-hero__title {
  margin: 0;
  max-width: 10em;
  margin-top: 1rem;
  font-size: clamp(2.25rem, 3.2vw, 3.375rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.solutions-hero__summary {
  position: relative;
  margin-top: 1.25rem;
  max-width: 44rem;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(226, 232, 240, 0.9);
}

.solutions-anchor-wrap {
  margin-top: 2rem;
}

.solutions-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.55rem;
}

.solutions-anchor-section {
  position: relative;
  background: linear-gradient(180deg, #091a33 0%, #06101f 100%);
}

.solutions-anchor-wrap--below-hero {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.solutions-anchor-wrap--below-hero .solutions-anchor-nav,
.solutions-anchor-wrap--home .solutions-anchor-nav {
  justify-content: center;
}

.solutions-anchor-wrap--home {
  margin: 0 auto 1.35rem;
  max-width: 1000px;
}

.solutions-anchor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #334155;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 600;
  line-height: 1.4;
  transition:
    color 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease,
    text-shadow 0.22s ease;
  cursor: pointer;
}

.solutions-anchor-button:hover,
.solutions-anchor-button:focus-visible {
  color: #0f172a;
  transform: translateY(-1px);
}

.solutions-anchor-button.is-active {
  color: var(--yingyue-brand-blue);
  text-shadow: none;
}

.solutions-anchor-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--yingyue-brand-blue-soft-strong);
}

.solutions-panel {
  overflow: hidden;
  flex: 0 0 100%;
  width: 100%;
  border-radius: 2rem;
  border: 1px solid rgba(226, 232, 240, 0.96);
  background: transparent;
  color: #0f172a;
  box-shadow: none;
  transition:
    opacity 0.32s ease,
    filter 0.32s ease;
  opacity: 0.42;
  filter: blur(8px);
}

.solutions-panel.is-active {
  opacity: 1;
  filter: blur(0);
}

.solutions-directory__layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.solutions-directory__sidebar {
  position: sticky;
  top: 108px;
}

.solutions-directory__sidebar-panel {
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  padding: 1.25rem 1.1rem;
}

.solutions-directory__eyebrow {
  padding: 0 0.55rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #64748b;
}

.solutions-directory__nav {
  display: grid;
}

.solutions-directory__link {
  display: block;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding: 0.95rem 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
  color: #334155;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.solutions-directory__link:hover,
.solutions-directory__link:focus-visible {
  color: var(--yingyue-brand-blue);
  padding-left: 0.8rem;
}

.solutions-directory__content {
  display: grid;
  gap: 1.5rem;
}

.solutions-panel--stack {
  opacity: 1;
  filter: none;
  scroll-margin-top: 8rem;
}

.solutions-panel--stack .solutions-panel__actions {
  display: none;
}

.solutions-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  height: calc(19rem + 180px);
  align-items: stretch;
}

.solutions-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem 2rem 1.35rem calc(2rem + 40px);
  overflow: hidden;
}

.solutions-panel__eyebrow {
  margin-bottom: 1.1rem;
  color: var(--yingyue-accent-color);
}

.solutions-panel__title {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.solutions-panel__summary {
  margin: 1rem 0 0;
  color: rgba(71, 85, 105, 0.94);
  font-size: 1.3rem;
  line-height: 1.8;
}

.solutions-panel__checklist {
  display: grid;
  gap: 0.55rem;
  margin: calc(1rem + 10px) 0 20px;
  padding: 0;
  list-style: none;
}

.solutions-panel__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.55;
}

.solutions-panel__check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #dcfce7;
  color: #16a34a;
}

.solutions-panel__check-icon svg {
  width: 0.9rem;
  height: 0.9rem;
}

.solutions-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.solutions-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.45rem;
  border-radius: 0.9rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.solutions-button:hover,
.solutions-button:focus-visible {
  transform: none;
}

.hero-liquid--button:hover,
.hero-liquid--button:focus-visible,
.hero-liquid--button-gold:hover,
.hero-liquid--button-gold:focus-visible {
  transform: scale(1.035);
}

.solutions-button--primary {
  background: var(--yingyue-brand-blue);
  color: #fff;
  box-shadow: 0 18px 36px rgb(var(--yingyue-brand-blue-rgb) / 0.24);
}

.solutions-button--secondary {
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: #fff;
  color: inherit;
}

.solutions-panel__media {
  position: relative;
  height: 100%;
  min-height: 100%;
  max-height: none;
  display: flex;
  align-items: stretch;
  align-self: stretch;
  overflow: hidden;
}

.solutions-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 82% center;
  display: block;
  flex: 1 1 auto;
  opacity: 1;
}

.solutions-panel__image-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 12%, rgba(255, 255, 255, 0.03) 24%, rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}

.home-solutions-showcase .solutions-panel {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.home-solutions-showcase .solutions-panel__grid {
  position: relative;
  display: block;
  min-height: clamp(30rem, 42vw, 37rem);
  height: auto;
}

.home-solutions-showcase .solutions-panel__content {
  position: relative;
  z-index: 2;
  width: min(50rem, 56%);
  min-height: clamp(30rem, 42vw, 37rem);
  padding: calc(clamp(3rem, 5vw, 5.4rem) + 0.9375rem) calc(clamp(2rem, 4vw, 4.5rem) + 0.9375rem);
}

.home-solutions-showcase .solutions-panel__summary {
  max-width: none;
}

.home-solutions-showcase .solutions-panel__media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 100%;
  min-height: 0;
  pointer-events: none;
}

.home-solutions-showcase .solutions-panel__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 22%,
      rgba(255, 255, 255, 0.985) 34%,
      rgba(255, 255, 255, 0.95) 45%,
      rgba(255, 255, 255, 0.86) 56%,
      rgba(255, 255, 255, 0.66) 67%,
      rgba(255, 255, 255, 0.34) 77%,
      rgba(255, 255, 255, 0.1) 86%,
      rgba(255, 255, 255, 0) 93%
    );
  pointer-events: none;
}

.home-solutions-showcase .solutions-panel__media img {
  object-position: 82% center;
}

.home-solutions-showcase .solutions-panel__image-fade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 12%, rgba(255, 255, 255, 0.03) 24%, rgba(255, 255, 255, 0) 38%);
  z-index: 2;
}

.solution-detail-page {
  background:
    linear-gradient(180deg, #071932 0, #071932 35rem, #f7f9fc 35rem, #f7f9fc 100%);
}

.solution-detail-page .solutions-hero {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(6, 18, 38, 0.94) 0%, rgba(10, 36, 75, 0.9) 48%, rgba(31, 76, 139, 0.72) 100%),
    url("./assets/images/solutions/solution-hero-blueprint.svg") center / cover no-repeat,
    #071932;
}

.solution-detail-page .solutions-hero > .container.site-shell {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.solution-detail-page .solutions-hero__orb {
  display: none;
}

.solution-detail-page .solutions-hero__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.34;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.18));
}

.solution-detail-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  min-height: 440px;
}

.solution-detail-hero__content {
  padding-bottom: clamp(1rem, 3vh, 2.4rem);
}

.solution-detail-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.9rem;
}

.solution-detail-hero__breadcrumb a:hover,
.solution-detail-hero__breadcrumb a:focus-visible {
  color: #fff;
}

.solution-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.solution-detail-hero__actions .solutions-button--secondary {
  color: #0f172a;
}

.solution-detail-hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 1.9rem 0 0;
  border-top: 1px solid rgba(191, 219, 254, 0.26);
  border-bottom: 1px solid rgba(191, 219, 254, 0.26);
}

.solution-detail-hero__metric {
  position: relative;
  padding: 1rem 1.05rem 1.1rem 0;
  background: transparent;
}

.solution-detail-hero__metric + .solution-detail-hero__metric {
  padding-left: 1.05rem;
  border-left: 1px solid rgba(191, 219, 254, 0.2);
}

.solution-detail-hero__metric > span {
  display: block;
  margin-bottom: 0.7rem;
  color: rgba(147, 197, 253, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.solution-detail-hero__metric dt {
  margin: 0;
  color: rgba(191, 219, 254, 0.74);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-detail-hero__metric dd {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.solution-detail-hero__media {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 420px;
}

.solution-detail-hero__image-frame {
  position: relative;
  width: min(100%, 360px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.solution-detail-hero__image-frame::before {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 2%;
  width: 86%;
  height: 62%;
  background: radial-gradient(closest-side, rgba(28, 76, 142, 0.44), transparent);
  filter: blur(24px);
}

.solution-detail-hero__image-frame img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.34));
}

.solution-detail-anchor-section {
  position: sticky;
  top: 4rem;
  z-index: 20;
  border-bottom: 1px solid rgba(203, 213, 225, 0.74);
  background: rgba(247, 249, 252, 0.9);
  backdrop-filter: blur(16px);
}

.solution-detail-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding: 1rem 0 0.9rem;
}

.solution-detail-anchor-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.solution-detail-anchor-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.9rem;
  height: 2px;
  background: var(--yingyue-brand-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.solution-detail-anchor-nav a:hover,
.solution-detail-anchor-nav a:focus-visible {
  color: var(--yingyue-brand-blue);
  transform: translateY(-1px);
}

.solution-detail-anchor-nav a:hover::after,
.solution-detail-anchor-nav a:focus-visible::after {
  transform: scaleX(1);
}

.solution-detail-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.solution-detail-section--soft {
  background:
    linear-gradient(180deg, #eaf0f7, #f7f9fc);
}

.solution-detail-section__heading {
  max-width: 54rem;
  margin-bottom: 2rem;
}

.solution-detail-section__heading h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.solution-detail-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.solution-detail-overview__content {
  padding: 0;
}

.solution-detail-overview__content p {
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.9;
}

.solution-detail-overview__content p + p {
  margin-top: 1rem;
}

.solution-detail-overview__bullets {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.solution-detail-overview__bullets li {
  position: relative;
  padding-left: 1.2rem;
  color: #1e293b;
  line-height: 1.7;
}

.solution-detail-overview__bullets li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--yingyue-brand-blue);
}

.solution-detail-overview__media {
  position: relative;
  overflow: hidden;
  height: 430px;
  min-height: 430px;
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
  background: #dbeafe;
}

.solution-detail-overview__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.06), transparent 44%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.14), transparent 36%);
  pointer-events: none;
}

.solution-detail-overview__media img,
.solution-detail-related-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-detail-overview__media img {
  position: absolute;
  inset: 0;
  object-fit: contain;
}

.solution-detail-capability-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.solution-detail-capability-board__media {
  position: sticky;
  top: 9rem;
  align-self: start;
  height: min(62vh, 580px);
  min-height: 430px;
  overflow: hidden;
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 0 100%);
  background: #dfeaf6;
}

.solution-detail-capability-board__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-detail-capability-board__content .solution-detail-section__heading {
  margin-bottom: 1.3rem;
}

.solution-detail-capability-list {
  display: grid;
  border-top: 1px solid rgba(100, 116, 139, 0.26);
}

.solution-detail-capability-row {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  gap: 1.1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(100, 116, 139, 0.22);
}

.solution-detail-capability-row > span,
.solution-detail-test-card > span,
.solution-detail-module > span {
  color: var(--yingyue-brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.solution-detail-capability-row h3,
.solution-detail-test-card h3,
.solution-detail-module h3,
.solution-detail-related-card__content h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.14rem;
  line-height: 1.42;
}

.solution-detail-capability-row p,
.solution-detail-module p,
.solution-detail-related-card__content p {
  margin: 0.55rem 0 0;
  color: #475569;
  line-height: 1.8;
}

.solution-detail-test-lab {
  background: #09192f;
  color: #e5edf7;
  clip-path: polygon(0 0, 97% 0, 100% 5%, 100% 100%, 3% 100%, 0 95%);
}

.solution-detail-test-lab__header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.solution-detail-test-lab__header .solution-detail-section__heading {
  margin: 0;
  padding: clamp(2rem, 5vw, 3.5rem);
}

.solution-detail-test-lab__header .solutions-section-label,
.solution-detail-test-lab__header h2 {
  color: #fff;
}

.solution-detail-test-lab__header img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: contain;
  background: #f6f9fd;
}

.solution-detail-module-grid,
.solution-detail-related-grid {
  display: grid;
  gap: 0;
}

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

.solution-detail-test-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-right: 1px solid rgba(148, 163, 184, 0.2);
}

.solution-detail-test-card:last-child {
  border-right: 0;
}

.solution-detail-test-card h3 {
  margin-top: 0.8rem;
  color: #fff;
}

.solution-detail-test-card ul {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.solution-detail-test-card li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.7;
}

.solution-detail-test-card li::before {
  content: "";
  position: absolute;
  top: 0.74rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 0;
  background: #60a5fa;
}

.solution-detail-module-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(100, 116, 139, 0.22);
  border-bottom: 1px solid rgba(100, 116, 139, 0.22);
}

.solution-detail-module {
  position: relative;
  min-height: 240px;
  padding: 1.65rem 1.5rem;
  border-right: 1px solid rgba(100, 116, 139, 0.22);
}

.solution-detail-module:last-child {
  border-right: 0;
}

.solution-detail-module::after {
  content: "";
  position: absolute;
  top: 1.85rem;
  right: -0.38rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--yingyue-brand-blue);
  transform: rotate(45deg);
}

.solution-detail-module:last-child::after {
  display: none;
}

.solution-detail-module h3 {
  margin-top: 2.2rem;
}

.solution-detail-related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(148, 163, 184, 0.3);
}

.solution-detail-related-card {
  overflow: hidden;
  background: #fff;
}

.solution-detail-related-card__media {
  aspect-ratio: 1.45 / 1;
  background: #eff6ff;
}

.solution-detail-related-card__content {
  padding: 1.4rem;
}

.solution-detail-related-card__content a {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--yingyue-brand-blue);
  font-weight: 700;
}

.solution-detail-related-card__content a:hover,
.solution-detail-related-card__content a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .solution-detail-test-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .solution-detail-hero__layout,
  .solution-detail-overview,
  .solution-detail-capability-board,
  .solution-detail-test-lab__header {
    grid-template-columns: minmax(0, 1fr);
  }

  .solution-detail-hero__image-frame {
    max-width: 360px;
    margin: 0 auto;
  }

  .solution-detail-hero__layout {
    min-height: 0;
    align-items: center;
  }

  .solution-detail-hero__content {
    padding-bottom: 0;
  }

  .solution-detail-hero__media {
    min-height: 0;
    justify-content: center;
  }

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

  .solution-detail-capability-board__media {
    position: relative;
    top: auto;
    height: 360px;
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .solution-detail-page {
    background:
      linear-gradient(180deg, #020617 0, #020617 28rem, #f8fafc 28rem, #f8fafc 100%);
  }

  .solution-detail-anchor-section {
    position: static;
  }

  .solution-detail-hero__metrics,
  .solution-detail-test-grid,
  .solution-detail-module-grid,
  .solution-detail-related-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .solution-detail-test-card,
  .solution-detail-module,
  .solution-detail-related-card__content {
    padding: 1.3rem;
  }

  .solution-detail-overview__media,
  .solution-detail-capability-board__media {
    min-height: 260px;
    clip-path: none;
  }

  .solution-detail-test-lab {
    clip-path: none;
  }

  .solution-detail-test-card,
  .solution-detail-module {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  }

  .solution-detail-module::after {
    display: none;
  }

  .solution-detail-section {
    padding: 3.5rem 0;
  }
}

.home-solutions-showcase {
  position: relative;
  background:
    radial-gradient(circle at top center, rgba(64, 123, 214, 0.09), transparent 46%),
    linear-gradient(180deg, #f8fbff 0%, #f3f8ff 54%, #ffffff 100%);
}

.solution-universal-page {
  background: #fff;
  color: #222;
}

.solution-shell {
  width: 100%;
  max-width: var(--site-shell-max-width);
  margin-inline: auto;
  padding-inline: var(--site-main-content-inline-padding);
  box-sizing: border-box;
}

.solution-universal-page .container.site-shell.solution-shell,
.solution-universal-page .site-shell.solution-shell {
  padding-inline: var(--site-main-content-inline-padding) !important;
}

.solutions-directory-page {
  background:
    radial-gradient(circle at top center, rgba(64, 123, 214, 0.08), transparent 44%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 52%);
}

.solutions-directory-hero {
  border-bottom: 1px solid rgba(203, 213, 225, 0.72);
}

.solutions-directory-hero > .container.site-shell,
.solutions-directory-section > .container.site-shell,
.home-solutions-showcase > .container.site-shell {
  width: 100%;
  max-width: var(--site-shell-max-width);
  padding-inline: var(--site-main-content-inline-padding) !important;
  box-sizing: border-box;
}

.solutions-directory-hero__copy {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

.solutions-directory-hero__copy h1 {
  margin: 0.4rem 0 0;
  color: #0f172a;
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.solutions-directory-hero__copy p {
  margin: 1.2rem auto 0;
  max-width: 48rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.9;
}

.solutions-directory-section {
  padding: 3rem 0 5.25rem;
}

.solutions-directory-grid {
  display: grid;
  gap: 2rem;
}

.solutions-directory-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1.9rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.06);
}

.solutions-directory-card__media {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(22, 54, 109, 0.12), rgba(58, 111, 203, 0.08));
}

.solutions-directory-card__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 82% center;
  transition: transform 0.45s ease;
}

.solutions-directory-card__media-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.solutions-directory-card:hover .solutions-directory-card__media img,
.solutions-directory-card:focus-within .solutions-directory-card__media img {
  transform: scale(1.03);
}

.solutions-directory-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(2.2rem + 20px) calc(2.25rem + 30px);
}

.solutions-directory-card__eyebrow {
  color: var(--yingyue-brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.solutions-directory-card__body h2 {
  margin: 0.65rem 0 0;
  font-size: clamp(1.75rem, 2.2vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.solutions-directory-card__body h2 a {
  color: inherit;
}

.solutions-directory-card__body p {
  margin: 1rem 0 0;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.9;
}

.solutions-directory-card__highlights {
  display: grid;
  gap: 0.9rem;
  margin: 1.35rem 0 0;
}

.solutions-directory-card__highlights li {
  display: grid;
  gap: 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(58, 111, 203, 0.18);
}

.solutions-directory-card__highlights strong {
  color: #1e293b;
  font-size: 0.96rem;
  font-weight: 800;
}

.solutions-directory-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.solution-universal-page [id] {
  scroll-margin-top: 7.5rem;
}

.solution-universal-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background:
    linear-gradient(120deg, rgb(var(--yingyue-brand-blue-rgb) / 0.14), rgb(var(--yingyue-brand-blue-rgb) / 0.05)),
    var(--solution-hero-image) center / cover no-repeat,
    color-mix(in srgb, var(--yingyue-brand-blue) 16%, #eef4fb);
  color: #fff;
}

.solution-universal-hero > .site-shell,
.solution-universal-hero > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  position: relative;
  z-index: 1;
}

.solution-universal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(9 28 58 / 0.08), rgb(9 28 58 / 0.24)),
    linear-gradient(90deg, rgb(var(--yingyue-brand-blue-rgb) / 0.18), rgb(var(--yingyue-brand-blue-rgb) / 0.08));
}

.solution-universal-hero__panel {
  width: min(100%, 980px);
  margin: 5rem auto 2.25rem;
  padding: clamp(2rem, 4vw, 3.3rem) clamp(2rem, 5vw, 4rem);
  background: linear-gradient(180deg, rgb(18 42 83 / 0.66), rgb(14 34 69 / 0.58));
  border: 1px solid rgb(255 255 255 / 0.14);
  box-shadow: 0 24px 64px rgb(11 24 46 / 0.2);
  text-align: center;
}

.solution-universal__eyebrow,
.solution-universal__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--yingyue-brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.solution-universal__eyebrow {
  color: rgb(216 234 255 / 0.96);
}

.solution-universal__eyebrow::before,
.solution-universal__label::before,
.solution-universal__label::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: currentColor;
  opacity: 0.48;
}

.solution-universal__breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.solution-universal-hero h1 {
  max-width: 16em;
  margin: 0 auto;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.solution-universal-hero__panel p {
  max-width: 58rem;
  margin: 1.55rem auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 2;
}

.solution-universal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.solution-universal-hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.25rem;
  background: var(--yingyue-brand-blue);
  color: #fff;
  font-weight: 800;
}

.solution-universal-hero__actions a + a {
  background: rgba(255, 255, 255, 0.94);
  color: #132238;
}

.solution-universal-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 2.5rem;
  background: linear-gradient(180deg, rgb(12 31 60 / 0.82), rgb(16 44 86 / 0.74));
  border: 1px solid rgb(255 255 255 / 0.08);
}

.solution-universal-metrics div {
  padding: 1rem 1.25rem;
}

.solution-universal-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.solution-universal-metrics dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-universal-metrics dd {
  margin: 0.45rem 0 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
}

.solution-universal-anchor {
  position: sticky;
  top: 4rem;
  z-index: 20;
  border-bottom: 1px solid #ececec;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.solution-universal-anchor .site-shell,
.solution-universal-anchor .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

.solution-universal-anchor a {
  color: #334155;
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 0.2s ease;
}

.solution-universal-anchor a:hover,
.solution-universal-anchor a:focus-visible,
.solution-universal-anchor a[aria-current="true"] {
  color: var(--yingyue-brand-blue);
}

.solution-universal-section {
  padding: clamp(3.4rem, 5.2vw, 4.375rem) 20px;
  overflow-x: hidden;
}

.solution-universal-applications--showcase {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff;
}

.solution-universal-applications--showcase > .site-shell,
.solution-universal-applications--showcase > .container {
  width: 100%;
  max-width: 100%;
  padding-inline: 0 !important;
}

@media (min-width: 768px) {
  .solution-universal-page .solution-universal-applications--showcase > .container.site-shell.solution-shell,
  .solution-universal-page .solution-universal-applications--showcase > .site-shell.solution-shell {
    width: 100%;
    max-width: 100%;
    padding-inline: 0 !important;
  }
}

@media (max-width: 1023px) {
  .solutions-directory-card {
    grid-template-columns: 1fr;
  }

  .solutions-directory-card__media {
    min-height: 260px;
  }
}

.solution-universal-section__heading {
  max-width: 54rem;
  margin-bottom: 2rem;
}

.solution-universal-section__heading h2,
.solution-universal-overview h2 {
  margin: 0;
  color: #10213c;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
}

.solution-universal-section__heading p {
  margin: 1rem 0 0;
  color: #666;
  line-height: 1.85;
}

.solution-universal-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.solution-universal-overview p {
  margin: 1rem 0 0;
  color: #555;
  line-height: 1.9;
}

.solution-universal-overview ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.solution-universal-overview li {
  position: relative;
  padding-left: 1.15rem;
  color: #1e293b;
  line-height: 1.7;
}

.solution-universal-overview li::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--yingyue-brand-blue);
}

.solution-universal-overview figure {
  margin: 0;
  padding: clamp(1.8rem, 3.2vw, 3.25rem);
  overflow: hidden;
  background: linear-gradient(180deg, #edf4fc, #e8f0fa);
  text-align: center;
}

.solution-universal-overview figure img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.solution-universal-applications,
.solution-universal-capabilities {
  background: linear-gradient(180deg, rgb(var(--yingyue-brand-blue-rgb) / 0.04), #ffffff 16%);
}

.solution-universal-panorama {
  position: relative;
  margin: 0 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #edf5fd, #e6f0fa);
}

.solution-universal-panorama.is-embedded {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: none;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #e5f0fb, #dceaf7);
}

.solution-universal-panorama img {
  display: block;
  width: 100%;
  aspect-ratio: 2.65 / 1;
  min-height: 420px;
  object-fit: cover;
}

.solution-universal-panorama.is-embedded img {
  width: 100vw;
  max-width: 100vw;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 0;
  background: transparent;
}

.solution-universal-panorama span {
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.8rem;
  border: 2px solid rgba(35, 35, 35, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #1b1f25;
  font-size: clamp(0.78rem, 0.9vw, 1rem);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.14);
}

.solution-universal-panorama span::before {
  content: "";
  width: 0.54rem;
  height: 0.54rem;
  margin-right: 0.45rem;
  border-radius: 999px;
  background: var(--yingyue-brand-blue);
  box-shadow: 0 0 0 0.22rem rgb(var(--yingyue-brand-blue-rgb) / 0.18);
}

.solution-universal-logo-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 2.75rem;
  padding: 0.75rem;
  background: linear-gradient(90deg, var(--yingyue-brand-blue-ink), var(--yingyue-brand-blue-deep));
}

.solution-universal-applications--showcase .solution-universal-panorama,
.solution-universal-applications--showcase .solution-universal-logo-strip {
  margin: 0;
}

.solution-universal-logo-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 0.85rem 0.75rem;
  border: 1px solid #d7d7d7;
  background: #fff;
  color: var(--yingyue-brand-blue);
  font-family: Arial, "Noto Sans SC", sans-serif;
  font-size: clamp(0.95rem, 1.05vw, 1.25rem);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0;
}

.solution-universal-logo-strip span:nth-child(4n + 1),
.solution-universal-logo-strip span:nth-child(4n + 2) {
  color: var(--yingyue-brand-blue);
}

.solution-universal-logo-strip span:nth-child(4n + 3),
.solution-universal-logo-strip span:nth-child(4n) {
  color: var(--yingyue-brand-blue-deep);
}

.solution-universal-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  background: transparent;
}

.solution-universal-scenario-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  padding: 2rem 1.25rem;
  background: #fff;
  box-shadow: 0 0.5rem 1.35rem rgba(0, 0, 0, 0.06);
  text-align: center;
}

.solution-universal-scenario-grid__icon {
  width: 4.6rem;
  height: 4.6rem;
  color: var(--yingyue-brand-blue-deep);
}

.solution-universal-scenario-grid__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.solution-universal-scenario-grid span,
.solution-universal-capability-list span {
  color: var(--yingyue-brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.solution-universal-scenario-grid h3,
.solution-universal-capability-list h3,
.solution-universal-test-grid h3,
.solution-universal-related-grid h3 {
  margin: 1.05rem 0 0;
  color: #333;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.42;
}

.solution-universal-scenario-grid p,
.solution-universal-capability-list p,
.solution-universal-related-grid p {
  margin: 0.7rem 0 0;
  color: #666;
  line-height: 1.8;
}

.solution-universal-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(100, 116, 139, 0.24);
}

.solution-universal-capability-list article {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1.1rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid rgba(100, 116, 139, 0.22);
}

.solution-universal-capability-list article:nth-child(odd) {
  padding-right: 1.8rem;
}

.solution-universal-capability-list article:nth-child(even) {
  padding-left: 1.8rem;
  border-left: 1px solid rgba(100, 116, 139, 0.16);
}

.solution-universal-tests {
  background: linear-gradient(180deg, var(--yingyue-brand-blue-ink) 0%, #10284e 100%);
  color: #e5edf7;
}

.solution-universal-tests .solution-universal__label,
.solution-universal-tests h2 {
  color: #fff;
}

.solution-universal-test-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(148, 163, 184, 0.24);
}

.solution-universal-test-grid article {
  padding: 1.7rem;
  background: color-mix(in srgb, var(--yingyue-brand-blue-ink) 78%, #16325e);
}

.solution-universal-test-grid h3 {
  margin-top: 0;
  color: #fff;
}

.solution-universal-test-grid ul {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.solution-universal-test-grid li {
  position: relative;
  padding-left: 1rem;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.7;
}

.solution-universal-test-grid li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  background: var(--yingyue-brand-blue);
}

.solution-universal-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  background: transparent;
}

.solution-universal-related-grid article {
  background: #fff;
}

.solution-universal-related-card {
  display: flex;
  flex-direction: column;
  border-top: 0;
}

.solution-universal-related-card__media {
  position: relative;
  margin: 0;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: #f1f6ff;
}

.solution-universal-related-card__visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.solution-universal-related-card__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.solution-universal-related-card.is-photo .solution-universal-related-card__visual {
  padding: 0;
}

.solution-universal-related-card.is-photo .solution-universal-related-card__visual img {
  transform: none;
  filter: none;
}

.solution-universal-related-card.is-diagram .solution-universal-related-card__visual {
  padding: 0;
}

.solution-universal-related-card.is-diagram .solution-universal-related-card__visual img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.solution-universal-related-card.is-unified .solution-universal-related-card__media {
  background: #f6f9fe;
}

.solution-universal-related-card.is-unified .solution-universal-related-card__visual {
  inset: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.solution-universal-related-card.is-unified .solution-universal-related-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: none;
}

.solution-universal-related-grid article > div {
  padding: 1.2rem 0 0;
}

.solution-universal-related-grid a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--yingyue-brand-blue);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .solution-universal-scenario-grid,
  .solution-universal-test-grid,
  .solution-universal-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-universal-logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .solution-universal-overview__grid,
  .solution-universal-capability-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .solution-universal-hero,
  .solution-universal-hero > .site-shell,
  .solution-universal-hero > .container {
    min-height: 520px;
  }

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

  .solution-universal-capability-list article,
  .solution-universal-capability-list article:nth-child(odd),
  .solution-universal-capability-list article:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .solution-universal-page {
    --solution-mobile-gutter: clamp(24px, 6.4vw, 30px);
    overflow-x: clip;
  }

  .solution-universal-page .solution-shell,
  .solution-universal-page .container.site-shell.solution-shell {
    width: 100%;
    max-width: 100%;
    padding-inline: var(--solution-mobile-gutter) !important;
  }

  .solution-universal-section {
    padding: 2.9rem 0;
  }

  .solution-universal-hero,
  .solution-universal-hero > .site-shell,
  .solution-universal-hero > .container {
    min-height: auto;
  }

  .solution-universal-hero {
    padding: 4.25rem 0 2.45rem;
    background-position: center;
  }

  .solution-universal-hero__panel {
    width: 100%;
    margin: 0 0 1.15rem;
    padding: 1.65rem 1.55rem;
    text-align: left;
  }

  .solution-universal__breadcrumb {
    justify-content: flex-start;
    margin-bottom: 0.85rem;
    font-size: 0.78rem;
  }

  .solution-universal-hero h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(1.72rem, 8vw, 2.18rem);
    line-height: 1.2;
  }

  .solution-universal-hero__panel p {
    margin-top: 1rem;
    font-size: 0.92rem;
    line-height: 1.85;
  }

  .solution-universal-metrics {
    gap: 0.65rem;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .solution-universal-metrics div {
    padding: 1.1rem 1.35rem;
    background: rgb(13 34 65 / 0.84);
    border: 1px solid rgb(255 255 255 / 0.08);
  }

  .solution-universal-anchor {
    position: sticky;
    top: 3.8rem;
    overflow-x: auto;
    border-bottom: 1px solid #e8eef6;
    scrollbar-width: none;
  }

  .solution-universal-anchor::-webkit-scrollbar {
    display: none;
  }

  .solution-universal-anchor .site-shell,
  .solution-universal-anchor .container {
    flex-wrap: nowrap;
    gap: 0.65rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .solution-universal-anchor .site-shell::-webkit-scrollbar,
  .solution-universal-anchor .container::-webkit-scrollbar {
    display: none;
  }

  .solution-universal-anchor a {
    flex: 0 0 auto;
    min-height: 2.4rem;
    padding: 0 0.95rem;
    border: 1px solid #dce5f0;
    border-radius: 999px;
    background: #fff;
    font-size: 0.82rem;
    line-height: 2.35rem;
    white-space: nowrap;
  }

  .solution-universal-applications--showcase {
    padding-top: 2.75rem;
    padding-bottom: 0;
  }

  .solution-universal-applications--showcase > .site-shell,
  .solution-universal-applications--showcase > .container {
    padding-inline: var(--solution-mobile-gutter) !important;
  }

  .solution-universal-section__heading {
    margin-bottom: 1.45rem;
    padding-inline: 0.1rem;
  }

  .solution-universal-section__heading h2,
  .solution-universal-overview h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.25;
  }

  .solution-universal__label {
    margin-bottom: 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .solution-universal__label::before,
  .solution-universal__label::after {
    width: 1.35rem;
  }

  .solution-universal-scenario-grid,
  .solution-universal-test-grid,
  .solution-universal-related-grid,
  .solution-universal-metrics,
  .solution-universal-logo-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .solution-universal-metrics div + div {
    padding-left: 1.35rem;
    border-left: 0;
    border-top: 1px solid rgba(191, 219, 254, 0.22);
  }

  .solution-universal-overview figure,
  .solution-universal-overview figure img {
    min-height: 0;
    clip-path: none;
  }

  .solution-universal-overview figure {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 260px;
    padding: 1rem;
  }

  .solution-universal-overview figure img {
    width: auto;
    max-width: 100%;
    max-height: 228px;
  }

  .solution-universal-panorama img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .solution-universal-panorama,
  .solution-universal-panorama.is-embedded {
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 0.8rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: rgba(58, 111, 203, 0.42) rgba(226, 235, 247, 0.9);
    scrollbar-width: thin;
  }

  .solution-universal-panorama::-webkit-scrollbar {
    height: 8px;
  }

  .solution-universal-panorama::-webkit-scrollbar-track {
    background: rgba(226, 235, 247, 0.9);
  }

  .solution-universal-panorama::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(58, 111, 203, 0.45);
  }

  .solution-universal-panorama span {
    display: none;
  }

  .solution-universal-panorama.is-embedded {
    left: 50%;
    width: 100vw;
    border-radius: 0;
    overflow: visible;
    transform: translateX(-50%);
  }

  .solution-universal-panorama.is-embedded img {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
  }

  .solution-universal-logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.45rem;
  }

  .solution-universal-logo-strip span {
    min-height: 3.1rem;
    padding: 0.55rem 0.35rem;
    font-size: 0.78rem;
  }

  .solution-universal-scenario-grid {
    gap: 0.85rem;
  }

  .solution-universal-scenario-grid article {
    min-height: 0;
    padding: 1.25rem 1.15rem;
  }

  .solution-universal-scenario-grid__icon {
    width: 3.3rem;
    height: 3.3rem;
  }

  .solution-universal-overview__grid {
    gap: 1.7rem;
  }

  .solution-universal-overview p {
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .solution-universal-capability-list article {
    grid-template-columns: 2.7rem minmax(0, 1fr);
    gap: 0.85rem;
    padding: 1.15rem 0;
  }

  .solution-universal-test-grid {
    gap: 0.8rem;
    background: transparent;
  }

  .solution-universal-test-grid article {
    padding: 1.35rem 1.2rem;
    border: 1px solid rgb(148 163 184 / 0.16);
  }

  .solution-universal-related-grid {
    gap: 1.25rem;
  }

  .solution-universal-related-card {
    border: 1px solid #e8eef6;
    background: #fff;
  }

  .solution-universal-related-card__media {
    aspect-ratio: 1.7 / 1;
  }

  .solution-universal-related-grid article > div {
    padding: 1.15rem;
  }
}

.home-solutions-showcase::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 9rem;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 100%, rgba(64, 123, 214, 0.12) 0%, rgba(64, 123, 214, 0.05) 26%, rgba(64, 123, 214, 0) 68%);
}

.home-solutions-showcase > .container.site-shell {
  position: relative;
  z-index: 1;
}

body.home .home-product-feature-grid {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

body.home .home-solutions-showcase {
  padding-top: 1.85rem;
  padding-bottom: 5.35rem;
}

body.home .home-solutions-showcase__intro {
  margin-bottom: 0.55rem;
  align-items: center;
  text-align: center;
}

body.home .home-solutions-showcase__intro .home-section-heading__title,
body.home .home-solutions-showcase__intro .home-product-feature-grid__intro-label {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (min-width: 1024px) {
  body.home .home-solutions-showcase .solutions-panel {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 1.85rem;
    background: #07111d;
    box-shadow: none;
  }

  body.home .home-solutions-showcase .solutions-panel__grid {
    min-height: clamp(35rem, 43vw, 43rem);
    border-radius: inherit;
    overflow: hidden;
    isolation: isolate;
    background: #07111d;
  }

  body.home .home-solutions-showcase .solutions-panel__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  body.home .home-solutions-showcase .solutions-panel__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(94deg, rgba(2, 8, 16, 0.03) 0%, rgba(2, 8, 16, 0.01) 28%, rgba(2, 8, 16, 0.06) 48%, rgba(2, 8, 16, 0.34) 70%, rgba(2, 8, 16, 0.62) 100%),
      radial-gradient(circle at 26% 78%, rgba(10, 186, 181, 0.24), transparent 28%),
      radial-gradient(circle at 40% 18%, rgba(56, 189, 248, 0.18), transparent 24%);
  }

  body.home .home-solutions-showcase .solutions-panel__media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(1.08) saturate(1.08) contrast(1.06);
  }

  body.home .home-solutions-showcase .solutions-panel__image-fade {
    z-index: 3;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(3, 12, 22, 0.08) 48%, rgba(3, 12, 22, 0.2) 100%);
  }

  body.home .home-solutions-showcase .solutions-panel__content {
    position: absolute;
    top: calc(clamp(2.35rem, 4vw, 3.75rem) + 80px);
    left: clamp(2.1rem, 3.8vw, 3.75rem);
    z-index: 4;
    width: min(44rem, 46%);
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: #f8fbff;
  }

  body.home .home-solutions-showcase .solutions-panel__headline-block {
    display: grid;
    gap: 0.8rem;
    width: 100%;
    max-width: min(42rem, 100%);
    padding: 3rem;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 1.15rem;
    background:
      linear-gradient(180deg, rgba(6, 14, 26, 0.48) 0%, rgba(6, 14, 26, 0.34) 100%),
      radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 42%);
    box-shadow: 0 18px 36px rgba(2, 6, 23, 0.14);
    backdrop-filter: blur(8px);
  }

  body.home .home-solutions-showcase .solutions-panel__poster-badge {
    display: none;
  }

  body.home .home-solutions-showcase .solutions-panel__eyebrow {
    display: block;
    margin: 0;
    color: rgba(207, 250, 254, 0.82);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  body.home .home-solutions-showcase .solutions-panel__title {
    margin: 0;
    max-width: 100%;
    color: #ffffff;
    font-size: clamp(2rem, 2.6vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    white-space: normal;
    overflow-wrap: anywhere;
    text-shadow: 0 8px 28px rgba(2, 6, 23, 0.38);
  }

  body.home .home-solutions-showcase .solutions-panel__summary {
    margin: 0.15rem 0 0;
    max-width: none;
    color: rgba(226, 232, 240, 0.94);
    font-size: clamp(1.2rem, 1.5vw, 1.3rem);
    line-height: 1.8;
    text-shadow: 0 8px 24px rgba(2, 6, 23, 0.28);
  }

  body.home .home-solutions-showcase .solutions-panel__checklist {
    display: none;
  }

  /* 暂时隐藏海报上的浮动指标卡片（核心能力 / 电压精度等） */
  body.home .home-solutions-showcase .solutions-panel__feature-cloud {
    display: none !important;
  }

  body.home .home-solutions-showcase .solutions-panel__feature-card {
    position: absolute;
    display: grid;
    gap: 0.35rem;
    width: clamp(10.75rem, 13.5vw, 14.25rem);
    padding: 0.95rem 1rem 0.92rem;
    border: 1px solid rgba(125, 211, 252, 0.26);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(4, 12, 24, 0.76) 0%, rgba(4, 12, 24, 0.54) 100%);
    color: #f8fafc;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  }

  body.home .home-solutions-showcase .solutions-panel__feature-card:nth-child(1) {
    top: 14%;
    right: 8%;
    left: auto;
  }

  body.home .home-solutions-showcase .solutions-panel__feature-card:nth-child(2) {
    bottom: 12%;
    left: 7.5%;
    width: clamp(11rem, 14vw, 15rem);
  }

  body.home .home-solutions-showcase .solutions-panel__feature-card:nth-child(3) {
    top: 48%;
    left: 46%;
    width: clamp(10.5rem, 12.4vw, 12.75rem);
  }

  body.home .home-solutions-showcase .solutions-panel__feature-card:nth-child(4) {
    bottom: 12.5%;
    right: 8.5%;
    width: clamp(10.75rem, 13.5vw, 14rem);
  }

  body.home .home-solutions-showcase .solutions-panel__feature-label {
    color: rgba(103, 232, 249, 0.94);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  body.home .home-solutions-showcase .solutions-panel__feature-value {
    display: block;
    color: #ffffff;
    font-size: clamp(1.08rem, 1.34vw, 1.5rem);
    font-weight: 800;
    line-height: 1.26;
    letter-spacing: -0.02em;
  }

  body.home .home-solutions-showcase .solutions-panel__stretched-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: inherit;
  }

  body.home .home-solutions-showcase .solutions-panel__stretched-link:focus-visible {
    outline: 2px solid rgba(147, 197, 253, 0.95);
    outline-offset: -0.35rem;
  }
}

.home-solutions-showcase__intro .solutions-section-label {
  justify-content: center;
  margin-bottom: 0.18rem;
}

.home-solutions-showcase__intro .solutions-section-label::before,
.home-solutions-showcase__intro .solutions-section-label::after {
  width: 2rem;
  opacity: 1;
}

.solutions-panels {
  position: relative;
  overflow: hidden;
}

.solutions-panels__track {
  display: flex;
  align-items: stretch;
  width: 100%;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-news-cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #ffffff;
}

.home-news-cta-band::before,
.home-news-cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-news-cta-band::before {
  z-index: -2;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(58, 111, 203, 0), rgba(58, 111, 203, 0.18), rgba(58, 111, 203, 0));
}

.home-news-cta-band.is-in-view::before {
  animation: none;
}

.home-news-cta-band::after {
  z-index: -1;
  background: none;
}

@keyframes homeNewsCtaBackgroundDrift {
  0% {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.145) translate3d(-1.8%, -1.1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-news-cta-band::before {
    animation: none;
  }
}

.home-news-board {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 4rem;
  background: transparent;
}

.home-news-board .site-shell {
  padding-inline: var(--site-main-content-inline-padding);
}

.home-news-board__shell {
  position: relative;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-news-board__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  max-width: none;
}

.home-news-board__column {
  padding: 0;
}

.home-news-board__column--activities {
  padding-right: 2.5rem;
  border-right: 1px solid rgba(148, 163, 184, 0.18);
}

.home-news-board__column--latest {
  padding-left: 2.5rem;
}

.home-news-board__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.home-news-board__header h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.home-news-board__header a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 999px;
  color: rgba(30, 41, 59, 0.62);
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.home-news-board__header a:hover,
.home-news-board__header a:focus-visible {
  color: #3a6fcb;
  border-color: rgba(58, 111, 203, 0.32);
  background: rgba(58, 111, 203, 0.08);
}

.home-news-board__header svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  stroke-width: 2;
}

.home-news-board__featured {
  margin-bottom: 1.6rem;
}

.home-news-board__featured-link {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 1.35rem;
  color: inherit;
}

.home-news-board__featured-media {
  display: none;
}

.home-news-board__featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

.home-news-board__featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.home-news-board__featured-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.15rem 0.75rem;
  border-radius: 999px;
  background: rgba(58, 111, 203, 0.1);
  color: #2758b0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-news-board__featured h4 {
  margin: 0;
  color: #14213d;
  font-size: 1.22rem;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-rail--solid {
  background: var(--yingyue-brand-blue);
  box-shadow:
    0 18px 36px rgb(var(--yingyue-brand-blue-rgb) / 0.18),
    inset 0 0 0 1px rgb(255 255 255 / 0.10);
}

.sidebar-rail--solid::before {
  opacity: 0;
  background: none;
  box-shadow: none;
}

.sidebar-rail--solid::after {
  opacity: 0;
  background: none;
}

.site-floating-contact {
  position: fixed;
  top: 50%;
  right: 1.25rem; /* 20px - Fixed to window edge */
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 4.25rem;
  overflow: hidden;
  border-radius: 0.95rem;
  transform: translateY(calc(-50% + 180px));
}

@media (max-width: 1919px) {
  .site-floating-contact {
    right: 0.25rem;
  }
}

.site-floating-contact__item {
  position: relative;
  z-index: 1;
  display: flex;
  width: 4.25rem;
  min-height: 4.65rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(3, 8, 20, 0.22);
}

.site-floating-contact__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0.72rem;
  bottom: 0;
  left: 0.72rem;
  height: 1px;
  background: rgb(255 255 255 / 0.12);
}

.site-floating-contact__item svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.site-floating-contact__item span {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1;
}

.site-floating-contact__item:hover svg,
.site-floating-contact__item:focus-visible svg {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .site-floating-contact {
    position: fixed;
    top: 52%;
    right: 0.55rem;
    display: flex !important;
    width: 3.45rem;
    border-radius: 0.9rem;
    transform: translateY(-50%);
    z-index: 96;
  }

  .site-floating-contact__item {
    width: 3.45rem;
    min-height: 4.1rem;
    gap: 0.28rem;
  }

  .site-floating-contact__item svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .site-floating-contact__item span {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .site-floating-contact__item[data-floating-item="home"],
  .site-floating-contact__item[data-floating-item="share"] {
    display: none;
  }
}

.site-floating-contact-panel {
  position: fixed;
  top: 50%;
  right: 4.9rem;
  z-index: 95;
  width: min(18rem, calc(100vw - 6.4rem));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0.75rem, -50%, 0);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.site-floating-contact-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0);
}

.site-floating-contact-panel__card {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 20px 42px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(148, 163, 184, 0.16);
}

.site-floating-contact-panel__card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.45rem;
  width: 0.9rem;
  height: 0.9rem;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  border-right: 1px solid rgba(148, 163, 184, 0.16);
  transform: translateY(-50%) rotate(45deg);
}

.site-floating-contact-panel__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 1.9rem;
  height: 1.9rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
  font-size: 1.1rem;
  line-height: 1;
}

.site-floating-contact-panel__section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.site-floating-contact-panel__section--wechat {
  grid-template-columns: 1fr auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.site-floating-contact-panel__icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.site-floating-contact-panel__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-floating-contact-panel__body {
  min-width: 0;
}

.site-floating-contact-panel__label {
  color: #475569;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-floating-contact-panel__value {
  margin-top: 0.22rem;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.site-floating-contact-panel__meta {
  margin-top: 0.26rem;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.45;
}

.site-floating-contact-panel__qr {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 6.15rem;
  height: 6.15rem;
  padding: 0.45rem;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.98));
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.14);
}

.site-floating-contact-panel__qr img {
  display: block;
  width: 100%;
  height: auto;
}

.sidebar-rail--solid .sidebar-tile--solid {
  background: transparent;
  box-shadow: none;
}

.sidebar-rail--solid .sidebar-tile--solid::before {
  opacity: 0;
  background: none;
  box-shadow: none;
}

.sidebar-rail--solid .sidebar-tile--solid::after {
  opacity: 0;
  background: none;
}

.sidebar-rail--solid .sidebar-tile--solid:hover,
.sidebar-rail--solid .sidebar-tile--solid:focus-visible {
  background: rgb(255 255 255 / 0.08);
}

.home-news-board__featured p {
  margin: 0.85rem 0 1.05rem;
  color: #475569;
  font-size: 1.04rem;
  line-height: 1.82;
}

.home-news-board__featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #64748b;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.home-news-board__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-news-board__list li + li {
  margin-top: 1rem;
}

.home-news-board__list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #0f172a;
  transition: color 0.22s ease;
}

.home-news-board__list a:hover,
.home-news-board__list a:focus-visible {
  color: #2758b0;
}

.home-news-board__dot {
  width: 0.38rem;
  height: 0.38rem;
  flex: 0 0 auto;
  background: rgba(58, 111, 203, 0.42);
  transition: background-color 0.22s ease;
}

.home-news-board__list a:hover .home-news-board__dot,
.home-news-board__list a:focus-visible .home-news-board__dot {
  background: #60a5fa;
}

.home-news-board__text {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.06rem;
  line-height: 1.68;
  color: inherit;
}

.home-news-board__date {
  flex: 0 0 auto;
  color: #64748b;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}

.site-footer__groups {
  display: grid;
  gap: 1rem;
}

.site-footer__group-link {
  line-height: 1.6;
}

@media (min-width: 1200px) {
  .site-footer__grid {
    grid-template-columns: repeat(5, max-content);
    justify-content: space-between;
    gap: 2rem clamp(2.5rem, 4vw, 5rem);
  }

  .site-footer__section {
    width: max-content;
    min-width: 0;
  }

  .site-footer__title,
  .site-footer__group-link {
    white-space: nowrap;
  }

  .site-footer__section.site-footer__contact {
    width: min(100%, 26rem);
  }

  .site-footer__contact-links > * {
    white-space: normal;
  }
}

@media (max-width: 1199px) {
  .solutions-directory__layout {
    grid-template-columns: 1fr;
  }

  .solutions-directory__sidebar {
    position: static;
  }

  .solutions-panel__grid {
    grid-template-columns: 1fr;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .solutions-panel__media {
    height: 13rem;
    min-height: 13rem;
    max-height: 13rem;
  }

  .home-news-board__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-news-board__column--activities {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .home-news-board__column--latest {
    padding-left: 0;
  }

  .home-news-board__featured-link {
    grid-template-columns: 1fr;
  }

  .home-news-board__featured-media img {
    min-height: 14rem;
  }
}

@media (max-width: 767px) {
  :root {
    --site-main-content-inline-padding: 16px;
  }

  html {
    font-size: 13.5px;
  }

  html,
  body {
    overflow-x: clip;
  }

  body {
    font-size: 13px;
    line-height: 1.58;
  }

  .site-shell {
    padding-inline: 16px;
  }

  header .container.site-shell {
    height: auto;
    min-height: 4rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    gap: 0.75rem;
  }

  .header-top-bar {
    background: #f8fafc;
  }

  header .flex.items-center.gap-6 {
    margin-right: auto;
  }

  header a > img.object-contain {
    max-width: 125px;
    height: auto;
  }

  header .header-utilities {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.18rem;
    margin-left: auto;
    margin-right: 0;
    flex: 0 0 auto;
  }

  header .header-utility-item {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .header-utility-item--lang button,
  .header-utility-item--user button,
  .header-utility-item--search button {
    padding: 0 0.35rem;
    background: transparent;
    border: none;
    min-width: 0;
  }

  header .lucide-search,
  header .lucide-globe,
  header .lucide-user {
    display: inline-block;
    width: 1.05rem;
    height: 1.05rem;
    color: var(--foreground);
  }

  header .w-px.h-4.bg-border.mx-1 {
    display: none;
  }

  .site-mobile-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    width: 2.35rem;
    height: 2.35rem;
    margin-left: 0.1rem;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .hero-slide__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
  }

  .hero-slide__copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-slide__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .hero-main-title {
    text-wrap: balance;
    white-space: normal;
    font-size: 1.15rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
  }

  body.home .hero-slide__eyebrow {
    display: none;
  }

  body.home .hero-slide__highlights {
    display: grid;
    width: 100%;
    max-width: min(30rem, 100%);
    gap: 0.55rem;
    margin: 0.15rem auto 0;
    padding-inline: 0.65rem;
  }

  body.home .hero-slide__highlights li {
    display: grid;
    grid-template-columns: 0.55rem minmax(0, 1fr);
    align-items: start;
    justify-content: start;
    column-gap: 0.65rem;
    width: 100%;
    font-size: 0.84rem;
    line-height: 1.55;
    text-align: left;
    color: rgb(241 245 249 / 0.92);
  }

  body.home .hero-slide__actions .hero-liquid__content {
    min-height: 2.5rem;
    padding: 0 1.25rem;
    font-size: 0.88rem;
    border-radius: 999px;
  }

  body.home .hero-slide__actions svg {
    display: none;
  }

  .hero-embla__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .sidebar-rail {
    display: none;
  }

  body.home main,
  body.home #homepage-hero,
  body.home .hero-embla,
  body.home .hero-embla__viewport,
  body.home .hero-embla__container,
  body.home .hero-embla__slide,
  body.home .home-news-board,
  body.home .home-news-board__shell,
  body.home .home-news-board__grid {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body.home #homepage-hero {
    height: auto;
    min-height: calc(100svh - 5.4rem);
  }

  body.home .hero-embla,
  body.home .hero-embla__viewport,
  body.home .hero-embla__container {
    height: auto;
    min-height: 0;
  }

  body.home .hero-embla__container {
    display: block;
  }

  body.home .hero-embla__slide {
    display: none;
    height: auto;
    min-height: calc(100svh - 5.4rem);
  }

  body.home .hero-embla__slide.is-mobile-active {
    display: block;
  }

  body.home .hero-slide__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    min-height: calc(100svh - 5.4rem);
    padding-top: 1rem;
    padding-bottom: 1.75rem;
  }

  body.home .hero-slide__copy {
    max-width: none;
    text-align: center;
    flex: 0 0 auto;
    width: 100%;
  }

  body.home .hero-embla__slide[data-hero-slide="4"] .hero-slide__inner {
    align-content: start;
    padding-top: clamp(4.6rem, 12svh, 6.4rem);
    padding-bottom: 1.1rem;
  }

  body.home .hero-embla__slide[data-hero-slide="4"] .hero-slide__copy {
    margin-top: 0.35rem;
  }

  body.home .hero-embla__slide[data-hero-slide="4"] .hero-slide__content > .space-y-3 {
    width: 100%;
    max-width: min(30rem, 100%);
    margin-inline: auto;
  }

  body.home .hero-slide__content {
    gap: 0.65rem;
    align-items: center;
  }

  body.home .hero-main-title {
    font-size: 23px;
    line-height: 1.28;
    text-align: center;
    padding-inline: 0.35rem;
    margin-inline: auto;
  }

  body.home .hero-slide__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 3rem;
  }

  body.home .hero-slide__actions > * {
    flex: 0 0 auto;
  }

  body.home .hero-slide__eyebrow,
  body.home .hero-slide__title-secondary,
  body.home .hero-svg-overlay,
  body.home .hero-ambient-glow {
    display: none;
  }

  body.home .hero-slide__description {
    display: block;
    max-width: min(30rem, 100%);
    padding-inline: 0.65rem;
    color: rgb(226 232 240 / 0.92);
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
  }


  body.home .hero-slide__highlights li {
    display: grid;
  }

  body.home .hero-slide__highlights li span:first-child {
    display: block;
    width: 0.42rem;
    height: 0.42rem;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: #f5b63b;
    box-shadow: 0 0 10px rgb(245 182 59 / 0.28);
    flex: 0 0 auto;
  }

  body.home .hero-slide__highlights li span:last-child {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body.home .hero-slide__visual {
    display: none;
  }

  body.home .hero-slide__mobile-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0.95rem 0 0.55rem;
  }

  body.home .hero-embla__slide[data-hero-slide="4"] .hero-slide__mobile-visual {
    margin-top: 0.45rem;
    margin-bottom: 0.35rem;
  }

  body.home .hero-slide__mobile-visual .hero-product-image {
    display: block;
    margin-inline: auto;
    transform: translate3d(0, 0, 0) scale(1) !important;
    transform-origin: center center;
  }

  body.home .hero-product-image {
    max-width: 72%;
    margin-top: 0;
    filter:
      drop-shadow(0 14px 22px rgba(0, 0, 0, 0.32))
      drop-shadow(0 0 14px rgb(var(--yingyue-brand-blue-rgb) / 0.18));
  }

  body.home .hero-embla__slide[data-hero-slide="4"] .hero-product-image {
    max-width: min(56%, 14rem);
    max-height: min(45svh, 24rem);
  }

  body.home .hero-embla__slide[data-hero-slide="4"] .hero-slide__description {
    padding-inline: 0.35rem;
  }

  body.home .hero-product-glow {
    width: min(72vw, 360px);
    height: 110px;
    top: 56%;
    filter: blur(16px);
  }

  body.home .hero-dots {
    left: 0;
    right: 0;
    bottom: 0.95rem;
    width: 100%;
    justify-content: center;
    transform: none;
    translate: none;
    margin: 0 auto;
  }

  body.home .hero-nav-button {
    position: absolute;
    top: 44%;
    z-index: 80;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(7, 18, 38, 0.24);
    color: #fff;
    box-shadow: 0 10px 30px rgba(2, 8, 23, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
  }

  body.home .hero-nav-button:hover,
  body.home .hero-nav-button:focus-visible {
    background: rgba(20, 52, 110, 0.42);
    border-color: rgba(255, 255, 255, 0.34);
    transform: translateY(-50%) scale(1.06);
  }

  body.home .hero-nav-button:disabled {
    opacity: 0.42;
    cursor: default;
  }

  body.home .hero-nav-button--prev {
    left: 130px;
  }

  body.home .hero-nav-button--next {
    right: 130px;
  }

  body.home .hero-nav-button svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  body.home .hero-dots {
    left: 50%;
    right: auto;
    bottom: 4.75rem;
    width: auto;
    justify-content: center;
    transform: translateX(-50%);
    translate: none;
    margin: 0;
    gap: 0.45rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: rgb(7 18 38 / 0.18);
    box-shadow: 0 12px 30px rgb(2 8 23 / 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  body.home .hero-dot {
    width: 0.5rem;
    height: 0.5rem;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.52);
    box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.08);
    transition: width 180ms ease, background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
  }

  body.home .hero-dot:hover,
  body.home .hero-dot:focus-visible {
    background: rgba(255, 255, 255, 0.58);
    transform: scale(1.08);
  }

  body.home .hero-dot.is-active {
    width: 1.5rem;
    background-color: #fff;
  }

  body.home .hero-bg-image {
    filter: saturate(1.02) brightness(0.94);
  }

  body.home .home-product-feature-card {
    min-height: 0;
    padding: 1.25rem 0.75rem;
    align-items: center;
    text-align: center;
    border-radius: 1rem;
    gap: 0.5rem;
    transform: none;
    transition: none;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  }

  body.home .home-product-feature-card__header {
    margin-bottom: 0;
  }

  body.home .home-product-feature-card__header h4 {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  body.home .home-product-feature-card__media {
    min-height: 96px;
    margin-bottom: 0.95rem;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transform: none;
    animation: none;
    transition: none;
  }

  body.home .home-product-feature-card__media img,
  body.home .home-product-feature-card__media svg {
    width: auto;
    height: auto;
    max-width: 82%;
    max-height: 62px;
    object-position: center;
    object-fit: contain;
    transform: none;
    filter: brightness(0.72) contrast(1.16);
    transition: none;
  }

  body.home .home-product-feature-grid__grid > .home-product-feature-card:nth-child(1) .home-product-feature-card__media img,
  body.home .home-product-feature-grid__grid > .home-product-feature-card:nth-child(1) .home-product-feature-card__media svg {
    max-width: 90%;
    max-height: 72px;
  }

  body.home .home-product-feature-grid__grid > .home-product-feature-card:nth-child(2) .home-product-feature-card__media img,
  body.home .home-product-feature-grid__grid > .home-product-feature-card:nth-child(2) .home-product-feature-card__media svg {
    max-width: 90%;
    max-height: 66px;
  }

  body.home .home-product-feature-grid__grid > .home-product-feature-card:nth-child(3) .home-product-feature-card__media img,
  body.home .home-product-feature-grid__grid > .home-product-feature-card:nth-child(3) .home-product-feature-card__media svg {
    max-width: 98%;
    max-height: 76px;
  }

  body.home .home-product-feature-grid__grid > .home-product-feature-card:nth-child(4) .home-product-feature-card__media img,
  body.home .home-product-feature-grid__grid > .home-product-feature-card:nth-child(4) .home-product-feature-card__media svg {
    max-height: 118px;
    max-width: 104px;
  }

  body.home .home-product-feature-grid__grid > .home-product-feature-card:nth-child(5) .home-product-feature-card__media img,
  body.home .home-product-feature-grid__grid > .home-product-feature-card:nth-child(5) .home-product-feature-card__media svg {
    max-height: 54px;
    max-width: 74%;
  }

  body.home .home-product-feature-card__media img {
    width: auto;
    height: auto;
  }

  body.home .home-product-feature-card:hover,
  body.home .home-product-feature-card:focus-visible,
  body.home .home-product-feature-card:active,
  body.home .home-product-feature-card:hover .home-product-feature-card__media,
  body.home .home-product-feature-card:focus-visible .home-product-feature-card__media,
  body.home .home-product-feature-card:active .home-product-feature-card__media,
  body.home .home-product-feature-card:hover .home-product-feature-card__media img,
  body.home .home-product-feature-card:focus-visible .home-product-feature-card__media img,
  body.home .home-product-feature-card:active .home-product-feature-card__media img {
    background: #fff;
    transform: none;
    animation: none;
    filter: brightness(0.72) contrast(1.16);
  }

  body.home .home-product-feature-card:hover .home-product-feature-card__header h4,
  body.home .home-product-feature-card:focus-visible .home-product-feature-card__header h4,
  body.home .home-product-feature-card:active .home-product-feature-card__header h4 {
    color: var(--feature-card-title);
    transform: none;
  }

  body.home .home-product-feature-card p {
    display: none;
  }

  body.home .hero-dot.is-active {
    width: 1.5rem;
    background-color: #fff;
  }

  body.home .hero-bg-image {
    filter: saturate(1.02) brightness(0.94);
  }

  body.home .home-capability-strip__item p,
  body.home .home-news-board__featured p,
  body.home .home-news-board__text,
  body.home .home-prefooter-cta__inner p,
  footer p,
  footer a {
    font-size: 0.81rem;
  }

  body.home .home-section-heading__title,
  body.home .home-solutions-showcase__title,
  body.home .home-prefooter-cta__inner h2 {
    font-size: clamp(1.32rem, 5.4vw, 1.72rem);
    line-height: 1.22;
  }

  body.home .hero-main-title {
    max-width: none;
    text-align: left;
    text-wrap: balance;
    white-space: normal;
    font-size: clamp(1.14rem, 5vw, 1.46rem);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.015em;
  }

  body.home .home-product-feature-grid__intro,
  body.home .home-news-board__header {
    text-align: left;
  }

  body.home .home-solutions-showcase__intro {
    text-align: center;
  }

  body.home .home-product-feature-grid {
    padding-top: 1.6rem;
    padding-bottom: 2rem;
  }

  body.home .home-product-feature-grid__intro {
    padding-top: 0.15rem;
    padding-bottom: 0.25rem;
  }

  /* Solutions Grid for Mobile */
  .home-solutions-showcase .solutions-anchor-wrap {
    display: none;
  }

  .home-solutions-showcase .solutions-panels__track {
    display: flex;
    gap: 0.9rem;
    transform: none;
    width: auto;
    mask-image: none;
    -webkit-mask-image: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0.25rem 0.8rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .home-solutions-showcase .solutions-panels__track::-webkit-scrollbar {
    height: 6px;
  }

  .home-solutions-showcase .solutions-panels__track::-webkit-scrollbar-track {
    background: rgba(148, 163, 184, 0.14);
    border-radius: 999px;
  }

  .home-solutions-showcase .solutions-panels__track::-webkit-scrollbar-thumb {
    background: rgba(59, 111, 203, 0.38);
    border-radius: 999px;
  }

  .home-solutions-showcase .solutions-panels__track {
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 111, 203, 0.38) rgba(148, 163, 184, 0.14);
  }

  .home-solutions-showcase .solutions-panel {
    display: flex;
    width: min(78vw, 21rem);
    min-width: min(78vw, 21rem);
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    opacity: 1;
    filter: none;
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0.85rem 0.85rem 0.9rem;
  }

  .home-solutions-showcase .solutions-panel__grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    height: auto;
  }

  .home-solutions-showcase .solutions-panel__content {
    order: 2;
    position: static;
    z-index: auto;
    width: 100%;
    min-height: 0;
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }

  .home-solutions-showcase .solutions-panel__headline-block {
    width: 100%;
  }

  .home-solutions-showcase .solutions-panel__eyebrow,
  .home-solutions-showcase .solutions-panel__poster-badge,
  .home-solutions-showcase .solutions-panel__summary,
  .home-solutions-showcase .solutions-panel__checklist,
  .home-solutions-showcase .solutions-panel__actions,
  .home-solutions-showcase .solutions-panel__image-fade,
  .home-solutions-showcase .solutions-panel__feature-cloud {
    display: none;
  }

  .home-solutions-showcase .solutions-panel__title {
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0;
    word-break: keep-all;
  }

  .home-solutions-showcase .solutions-panel__media {
    order: 1;
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: 11.4rem;
    min-height: 11.4rem;
    max-height: 11.4rem;
    margin: 0 0 0.82rem;
    padding: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    align-self: stretch;
    border-radius: 0.85rem;
    pointer-events: auto;
  }

  .home-solutions-showcase .solutions-panel__media::before,
  .home-solutions-showcase .solutions-panel__image-fade {
    display: none !important;
  }

  .home-solutions-showcase .solutions-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    flex: none;
  }

  body.home .home-product-feature-grid__intro-label,
  body.home .home-section-heading__label {
    justify-content: center;
  }

  body.home .home-solutions-showcase .solutions-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  body.home .home-solutions-showcase .home-product-feature-grid__intro-label {
    justify-content: center;
  }

  body.home .home-solutions-showcase .solutions-section-label::before,
  body.home .home-product-feature-grid__intro-label::after,
  body.home .home-solutions-showcase .solutions-section-label::after {
    display: none;
  }

  body.home .home-product-feature-grid__intro p,
  body.home .home-section-heading p,
  body.home .home-news-board__header p {
    margin-inline: 0;
    font-size: 0.8rem;
    max-width: none;
  }

  body.home .home-product-feature-grid__intro-label,
  body.home .home-section-heading__label,
  body.home .solutions-section-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  body.home .home-product-feature-grid__all-link {
    margin-inline: auto;
  }

  body.home .home-product-feature-card__header h4,
  body.home .home-capability-strip__item h3,
  body.home .home-news-board__featured h4,
  body.home .home-news-board__header h3 {
    font-size: 0.95rem;
  }

  .home-prefooter-cta {
    margin-top: 0.75rem;
  }

  .home-prefooter-cta__inner {
    padding: 0.82rem 0;
  }

  .home-prefooter-cta__inner h2 {
    font-size: clamp(1.28rem, 5.2vw, 1.6rem);
  }

  .home-prefooter-cta__actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0 0.35rem;
    flex-wrap: wrap;
  }

  .home-prefooter-cta__primary,
  .home-prefooter-cta__secondary {
    width: auto;
    flex: 0 0 auto;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    font-size: 0.78rem;
    padding: 0;
  }

  .home-prefooter-cta__primary .hero-liquid__content,
  .home-prefooter-cta__secondary .hero-liquid__content {
    padding: 0.42rem 1rem;
    min-height: 0;
    height: auto;
    width: auto;
    white-space: nowrap;
  }

  .home-prefooter-cta__primary svg {
    display: none;
  }

  .solutions-page {
    background:
      linear-gradient(180deg, #020617 0, #020617 16rem, #f8fafc 16rem, #f8fafc 100%);
  }

  .solutions-panel {
    border-radius: 1.5rem;
  }

  .solutions-panel__content {
    order: 2;
    padding: 0 0.85rem 0.85rem;
  }

  .solutions-panel__media {
    order: 1;
    margin: 0.85rem;
    padding: 0;
  }

  .solutions-panel__grid {
    height: auto;
  }

  .solutions-panel__media {
    height: 9rem;
    min-height: 9rem;
    max-height: 9rem;
  }

  .solutions-panel__image-fade {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0) 62%);
  }

  .solutions-anchor-wrap {
    margin-top: 0.7rem;
  }

  .solutions-directory__sidebar-panel {
    border-radius: 1rem;
    padding: 0.9rem;
  }

  .home-solutions-showcase {
    padding-top: 2.15rem;
    padding-bottom: 2rem;
  }

  .site-popover {
    min-width: 11rem;
    padding: 0.45rem;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  }

  .site-popover-grid {
    gap: 0.2rem;
  }

  .site-popover-link {
    padding: 0.72rem 0.85rem;
    border-radius: 0.8rem;
    font-size: 0.94rem;
    line-height: 1.3;
  }

  .solutions-anchor-button {
    width: 100%;
    justify-content: center;
  }

  .home-news-board {
    padding: 1.65rem 0 1.35rem;
  }

  .home-news-board__header {
    margin-bottom: 1.1rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }

  .home-news-board__column {
    padding: 0 1.25rem;
  }

  .home-news-board__header a {
    display: none;
  }

  .home-news-board__header h3 {
    font-size: 0.98rem;
  }

  .home-news-board__featured h4 {
    font-size: 0.95rem;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
  }

  .home-news-board__featured p,
  .home-news-board__text {
    font-size: 0.8rem;
    line-height: 1.65;
  }

  .home-news-board__list a {
    align-items: center;
    gap: 0.7rem;
  }

  .home-news-board__dot {
    margin-top: 0;
  }

  .home-news-board__text {
    white-space: normal;
  }

  .home-news-board__date {
    margin-top: 0.08rem;
    font-size: 0.75rem;
  }

  .site-footer__grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .site-footer__section {
    gap: 0.9rem;
  }

  .site-footer__title {
    font-size: 1.05rem;
  }

  .site-footer__groups {
    gap: 0.8rem;
  }

  .site-footer__group {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.8rem;
  }

  .site-footer__group-link {
    display: inline-flex;
    max-width: 100%;
    font-size: 0.9rem;
  }

  .site-footer__sublist {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 0.8rem;
  }

  .site-footer__section:nth-child(1) .site-footer__groups,
  .site-footer__section:nth-child(3) .site-footer__groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.8rem;
  }

  .site-footer__section:nth-child(1) .site-footer__group,
  .site-footer__section:nth-child(3) .site-footer__group {
    display: block;
  }

  .site-footer__section:nth-child(3) .site-footer__groups,
  .site-footer__section:nth-child(4) .site-footer__groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem 0.8rem;
  }

  .site-footer__section:nth-child(4) .site-footer__group {
    display: block;
  }

  .site-footer__contact-body {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.8rem;
  }

  .site-footer__qr {
    width: 96px;
    padding: 0.35rem;
  }

  .site-footer__contact-links {
    width: 100%;
    gap: 0.4rem;
  }

  .site-footer__contact-links > * {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .site-footer__contact-links a {
    display: block;
    word-break: break-word;
  }

  .site-footer__legal {
    gap: 0.75rem;
    padding-top: 1.15rem;
    font-size: 0.78rem;
  }

  .site-footer__legal-links {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .solutions-anchor-button {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.45;
  }

  .solutions-panel__eyebrow {
    margin-bottom: 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  .solutions-panel__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
  }

  .solutions-panel__summary,
  .solutions-panel__checklist li,
  .solutions-button {
    font-size: 0.82rem;
  }
}

.news-archive-page {
  background:
    radial-gradient(circle at top left, rgb(var(--yingyue-brand-blue-rgb) / 0.06), transparent 24%),
    linear-gradient(180deg, var(--yingyue-brand-blue-bg) 0%, #ffffff 28%);
}

.news-archive-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--yingyue-brand-blue-ink) 96%, #020617), color-mix(in srgb, var(--yingyue-brand-blue-deep) 88%, #020617)),
    #0f172a;
  color: #fff;
}

.news-archive-hero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.news-archive-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08));
}

.news-archive-hero__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(219, 234, 254, 0.92);
}

.news-archive-hero__eyebrow::before {
  content: "";
  width: 2.8rem;
  height: 1px;
  background: rgba(191, 219, 254, 0.74);
}

.news-archive-hero__title {
  position: relative;
  margin-top: 1rem;
  max-width: 10em;
  font-size: clamp(2.25rem, 3.2vw, 3.375rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.news-archive-hero__summary {
  position: relative;
  margin-top: 1.25rem;
  max-width: 44rem;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(226, 232, 240, 0.9);
}

.news-archive-section {
  position: relative;
}

.news-archive-layout {
  display: grid;
  grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: start;
}

.news-archive-sidebar {
  position: sticky;
  top: 108px;
}

.news-archive-sidebar__panel {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.news-archive-sidebar__eyebrow {
  padding: 1.4rem 1.4rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #64748b;
}

.news-archive-sidebar__title {
  padding: 0.45rem 1.4rem 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.news-archive-sidebar__nav {
  display: grid;
}

.news-archive-sidebar__link {
  position: relative;
  display: grid;
  gap: 0.3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding: 1rem 1.4rem 1rem 1.7rem;
  color: #334155;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.news-archive-sidebar__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background-color 0.2s ease;
}

.news-archive-sidebar__link:hover,
.news-archive-sidebar__link:focus-visible,
.news-archive-sidebar__link.is-active {
  background: linear-gradient(90deg, rgb(var(--yingyue-brand-blue-rgb) / 0.1), rgb(var(--yingyue-brand-blue-rgb) / 0));
  color: #0f172a;
  padding-left: 1.95rem;
}

.news-archive-sidebar__link:hover::before,
.news-archive-sidebar__link:focus-visible::before,
.news-archive-sidebar__link.is-active::before {
  background: hsl(var(--primary));
}

.news-archive-sidebar__link-label {
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.5;
}

.news-archive-sidebar__link-meta {
  font-size: 0.78rem;
  line-height: 1.6;
  color: #64748b;
}

.news-archive-main {
  min-width: 0;
}

.news-archive-list {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.news-archive-card {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.8rem 0;
}

.news-archive-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.64), rgba(241, 245, 249, 0.92));
}

.news-archive-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-archive-card__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 1)),
    #f8fafc;
}

.news-archive-card__placeholder img {
  width: min(68%, 220px);
  height: auto;
  object-fit: contain;
  opacity: 0.88;
  filter: saturate(0.92);
}

.news-archive-card:hover .news-archive-card__media img,
.news-archive-card:focus-within .news-archive-card__media img {
  transform: scale(1.03);
}

.news-archive-card__body {
  min-width: 0;
}

.news-archive-card__title {
  font-size: clamp(1.05rem, 1.55vw, 1.42rem);
  font-weight: 700;
  line-height: 1.32;
  color: #0f172a;
}

.news-archive-card__title a {
  color: inherit;
  transition: color 0.2s ease;
}

.news-archive-card__title a:hover,
.news-archive-card__title a:focus-visible {
  color: hsl(var(--primary));
}

.news-archive-card__excerpt {
  margin-top: 0.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #475569;
}

.news-archive-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.95rem;
  min-height: 2.4rem;
  padding: 0 0.9rem;
  border: 1px solid rgb(var(--yingyue-brand-blue-rgb) / 0.18);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: hsl(var(--primary));
  background: rgb(var(--yingyue-brand-blue-rgb) / 0.04);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.news-archive-card__more:hover,
.news-archive-card__more:focus-visible {
  transform: translateX(4px);
  opacity: 0.88;
}

.news-archive-card__date {
  margin-top: 0.95rem;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  color: #94a3b8;
}

.news-archive-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding-top: 2.4rem;
}

.news-archive-pagination .page-numbers {
  display: inline-flex;
  min-width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 0 0.8rem;
  font-size: 0.92rem;
  color: #334155;
  background: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.news-archive-pagination .page-numbers:hover,
.news-archive-pagination .page-numbers:focus-visible,
.news-archive-pagination .page-numbers.current {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary));
  color: #fff;
}

.news-archive-empty {
  padding: 5rem 1rem;
  text-align: center;
}

.news-archive-empty h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
}

.news-archive-empty p {
  margin-top: 0.9rem;
  color: #64748b;
}

@media (max-width: 1279px) and (min-width: 1024px) {
  .news-archive-layout {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 2.2rem;
  }
}

@media (max-width: 1023px) {
  .news-archive-layout {
    grid-template-columns: 1fr;
  }

  .news-archive-sidebar {
    position: static;
  }

  .news-archive-sidebar__panel {
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  }

  .news-archive-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 767px) {
  .news-archive-hero__title {
    max-width: none;
  }

  .news-archive-hero__summary {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .news-archive-card {
    padding: 1.35rem 0;
  }

  .news-archive-card__title {
    font-size: 1rem;
  }

  .news-archive-sidebar__link-meta {
    display: none;
  }
}

.news-single-page {
  background:
    radial-gradient(circle at top left, rgb(var(--yingyue-brand-blue-rgb) / 0.06), transparent 24%),
    linear-gradient(180deg, var(--yingyue-brand-blue-bg) 0%, #ffffff 26%);
}

.news-single-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--yingyue-brand-blue-ink) 96%, #020617), color-mix(in srgb, var(--yingyue-brand-blue-deep) 88%, #020617)),
    #0f172a;
  color: #fff;
}

.news-single-hero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.news-single-hero__crumbs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.82);
}

.news-single-hero__crumbs a:hover,
.news-single-hero__crumbs a:focus-visible {
  color: #fff;
}

.news-single-hero__meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.84);
}

.news-single-hero__meta a {
  color: #fff;
}

.news-single-section {
  position: relative;
}

.news-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 2.8rem;
  align-items: start;
}

.news-single-article {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.06);
}

.news-single-article__header {
  padding: 2rem 2rem 1.35rem;
}

.news-single-article__title {
  margin-top: 0.9rem;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.news-single-article__summary {
  margin-top: 0.95rem;
  max-width: 46rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #475569;
}

.news-single-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #94a3b8;
}

.news-single-article__cover img {
  width: 100%;
  height: auto;
  display: block;
}

.news-single-article__content {
  padding: 0 2rem 2rem;
  color: #334155;
  font-size: 1rem;
  line-height: 1.95;
}

.news-single-article__content h1,
.news-single-article__content h2,
.news-single-article__content h3,
.news-single-article__content h4 {
  margin-top: 1.8em;
  margin-bottom: 0.7em;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.news-single-article__content h1 {
  font-size: 2rem;
}

.news-single-article__content h2 {
  font-size: 1.55rem;
}

.news-single-article__content h3 {
  font-size: 1.25rem;
}

.news-single-article__content p,
.news-single-article__content ul,
.news-single-article__content ol,
.news-single-article__content blockquote {
  margin-top: 1rem;
}

.news-single-article__content ul,
.news-single-article__content ol {
  padding-left: 1.25rem;
}

.news-single-article__content ul {
  list-style: disc;
}

.news-single-article__content ol {
  list-style: decimal;
}

.news-single-article__content li + li {
  margin-top: 0.45rem;
}

.news-single-article__content a {
  color: hsl(var(--primary));
}

.news-single-article__content blockquote {
  border-left: 3px solid hsl(var(--primary));
  padding-left: 1rem;
  color: #475569;
}

.news-single-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 1.15rem;
}

.news-single-sidebar__panel {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.news-single-article__footer {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 1.5rem 2rem 2rem;
}

.news-single-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.news-single-pagination__item {
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.98));
  padding: 1.1rem 1.2rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.news-single-pagination__item:hover,
.news-single-pagination__item:focus-visible {
  border-color: rgb(var(--yingyue-brand-blue-rgb) / 0.3);
  transform: translateY(-1px);
}

.news-single-pagination__label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #94a3b8;
}

.news-single-pagination__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  color: #0f172a;
}

.news-single-bottom-related {
  margin-top: 1.5rem;
}

.news-single-bottom-related__heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #64748b;
  text-transform: uppercase;
}

.news-single-bottom-related__list {
  display: grid;
  margin-top: 1rem;
}

.site-brand-debugger {
  position: fixed;
  right: 6rem;
  bottom: 1.25rem;
  top: auto;
  z-index: 140;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: none;
}

.site-brand-debugger__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgb(var(--yingyue-brand-blue-rgb) / 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 54px -34px rgba(15, 23, 42, 0.42);
  padding: 0.55rem 0.65rem 0.55rem 0.8rem;
  color: #0f172a;
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-brand-debugger__toggle:hover,
.site-brand-debugger__toggle:focus-visible {
  transform: translateX(-2px);
  border-color: rgb(var(--yingyue-brand-blue-rgb) / 0.34);
  box-shadow: 0 26px 62px -36px rgba(15, 23, 42, 0.5);
}

.site-brand-debugger__toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--yingyue-brand-blue-soft-strong), 0 26px 62px -36px rgba(15, 23, 42, 0.5);
}

.site-brand-debugger__swatch {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: var(--yingyue-brand-blue);
  box-shadow: 0 0 0 1px rgb(var(--yingyue-brand-blue-rgb) / 0.12);
  flex: 0 0 auto;
}

.site-brand-debugger__meta {
  display: grid;
  gap: 0.08rem;
  text-align: left;
}

.site-brand-debugger__eyebrow {
  color: #64748b;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-brand-debugger__value {
  color: var(--yingyue-brand-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.site-brand-debugger__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--yingyue-brand-blue-bg);
  color: var(--yingyue-brand-blue);
}

.site-brand-debugger__panel {
  position: fixed;
  top: 50%;
  right: 5.4rem;
  z-index: 141;
  width: min(460px, calc(100vw - 1.5rem));
  height: min(760px, calc(100vh - 2rem));
  overflow: hidden;
  border: 1px solid rgb(var(--yingyue-brand-blue-rgb) / 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 90px -46px rgba(15, 23, 42, 0.54);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(18px, -50%, 0) scale(0.985);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-brand-debugger.is-open .site-brand-debugger__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0) scale(1);
}

.site-brand-debugger__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.news-single-bottom-related__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 0.95rem 0;
}

.news-single-bottom-related__item:hover .news-single-bottom-related__title,
.news-single-bottom-related__item:focus-visible .news-single-bottom-related__title {
  color: hsl(var(--primary));
}

.news-single-bottom-related__title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
  color: #0f172a;
  transition: color 0.2s ease;
}

.news-single-bottom-related__date {
  flex: 0 0 auto;
  font-size: 0.8rem;
  color: #94a3b8;
}

@media (max-width: 1023px) {
  .news-single-layout {
    grid-template-columns: 1fr;
  }

  .news-single-sidebar {
    position: static;
  }

  .news-single-pagination {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-brand-debugger {
    top: auto;
    right: 5rem;
    bottom: 12px;
    transform: none;
  }

  .site-brand-debugger__toggle {
    padding: 0.72rem 0.85rem;
  }

  .site-brand-debugger__meta {
    display: none;
  }

  .site-brand-debugger__panel {
    top: auto;
    right: 0.75rem;
    bottom: 68px;
    width: min(460px, calc(100vw - 1.5rem));
    height: min(720px, calc(100vh - 5.5rem));
    transform: translate3d(0, 12px, 0) scale(0.985);
  }

  .site-brand-debugger.is-open .site-brand-debugger__panel {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .news-single-article__content {
    padding: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .news-single-article__header,
  .news-single-article__footer {
    padding: 1.25rem;
  }

  .news-single-article__title {
    font-size: 1.5rem;
  }

  .news-single-bottom-related__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}

@media (max-width: 1023px) {
  .sidebar-rail {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 2499.98px) {
  body.home .hero-main-title {
    font-size: clamp(2.15rem, 2.95vw, 3.35rem) !important;
    line-height: 1.08 !important;
  }
}

@media (min-width: 2500px) {
  body.home .hero-slide__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(9rem, 7vw, 13rem);
  }

  body.home .hero-slide__copy {
    flex: 0 0 min(56vw, 900px);
    max-width: min(56vw, 900px);
  }

  body.home .hero-main-title {
    font-size: clamp(2.35rem, 1.85vw, 3.55rem) !important;
    line-height: 1.08 !important;
  }

  body.home .hero-slide__eyebrow .hero-liquid__content {
    font-size: 0.95rem;
  }

  body.home .hero-slide__visual {
    flex: 0 0 min(46vw, 720px);
    justify-content: center;
  }

  body.home .hero-slide__visual > div {
    max-width: min(46vw, 780px);
    transform: scale(1.5);
    transform-origin: center center;
  }

  body.home .hero-product-image {
    max-width: min(100%, 960px);
    max-height: min(58vh, 580px);
  }

  body.home #homepage-hero,
  body.home .hero-embla,
  body.home .hero-embla__viewport,
  body.home .hero-embla__container,
  body.home .hero-embla__slide {
    height: 100vh;
  }

  body.home .home-solutions-showcase .solutions-panel__content {
    width: min(48rem, 48%);
  }

  body.home .home-solutions-showcase .solutions-panel__headline-block {
    max-width: min(46rem, 100%);
  }

  body.home .home-solutions-showcase .solutions-panel__title {
    font-size: clamp(2.2rem, 2.1vw, 3.35rem);
  }
}

@media (min-width: 2560px) {
  :root {
    --site-main-content-max-width: 1760px;
    --site-main-content-inline-padding: clamp(42px, 1.75vw, 90px);
    --site-aligned-shell-width: 2000px;
    --site-shell-max-width: 2000px;
  }

  body {
    --ultra-wide-scale: 1;
  }

  body > header,
  body > main,
  body > footer,
  body > .site-popover,
  body > .site-mega-popover,
  body > .site-modal {
    zoom: var(--ultra-wide-scale);
  }

  html {
    font-size: 18px;
  }

  .site-mega-container {
    width: min(100%, var(--site-shell-max-width));
  }

  header nav.group\/navigation-menu > ul {
    gap: clamp(1.75rem, 2.15vw, 3rem) !important;
  }

  header a.group\/navigation-menu-trigger,
  header button.group\/navigation-menu-trigger {
    padding-inline: 0.95rem;
  }

  header .container.site-shell {
    min-height: 6rem;
  }

  header .flex.items-center.gap-2 img {
    width: 236px;
    height: auto;
  }

  body.home .hero-slide__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 220px;
  }

  body.home .hero-slide__copy {
    flex: 0 0 740px;
    max-width: 740px;
  }

  body.home .hero-slide__visual {
    flex: 0 0 640px;
    justify-content: center;
  }

  body.home #homepage-hero,
  body.home .hero-embla,
  body.home .hero-embla__viewport,
  body.home .hero-embla__container,
  body.home .hero-embla__slide {
    height: 100vh;
  }

  body.home .hero-slide__visual > div {
    max-width: 720px;
  }

  .home-product-feature-card {
    padding: 1.8rem 1.85rem 1.55rem;
  }

  .home-product-feature-card__media {
    min-height: 11.5rem;
    padding-bottom: 0.9rem;
  }

  .home-product-feature-card__media img {
    max-width: 17rem;
    max-height: 12rem;
  }

  .home-product-feature-card__svg--battery,
  .home-product-feature-card__svg--power,
  .home-product-feature-card__svg--load {
    max-width: 17rem;
  }

  .home-product-feature-card__svg--system {
    max-width: 6.25rem;
  }

  .home-product-feature-card__header {
    justify-content: center;
    margin-bottom: 0.9rem;
  }

  .home-product-feature-card__header h4 {
    text-align: center;
    transform-origin: center center;
  }

  .home-product-feature-card p {
    text-align: center;
    margin-top: 0.85rem;
  }
}

@media (min-width: 3000px) {
  :root {
    --site-main-content-max-width: 2040px;
    --site-main-content-inline-padding: clamp(48px, 1.85vw, 100px);
    --site-aligned-shell-width: 2320px;
    --site-shell-max-width: 2320px;
  }

  body {
    --ultra-wide-scale: 1;
  }

  html {
    font-size: 19px;
  }

  .site-mega-container {
    width: min(100%, var(--site-shell-max-width));
  }

  header nav.group\/navigation-menu > ul {
    gap: clamp(1.35rem, 1.2vw, 2.1rem) !important;
  }

  header a.group\/navigation-menu-trigger,
  header button.group\/navigation-menu-trigger {
    padding-inline: 1.05rem;
  }

  header .container.site-shell {
    min-height: 6.35rem;
  }

  header .flex.items-center.gap-2 img {
    width: 252px;
  }

  body.home .hero-slide__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 250px;
  }

  body.home .hero-slide__copy {
    flex: 0 0 840px;
    max-width: 840px;
    transform: none;
  }

  body.home .hero-main-title {
    font-size: clamp(2.4rem, 1.75vw, 3.6rem) !important;
  }

  body.home .hero-slide__visual {
    flex: 0 0 740px;
    justify-content: center;
  }

  body.home #homepage-hero,
  body.home .hero-embla,
  body.home .hero-embla__viewport,
  body.home .hero-embla__container,
  body.home .hero-embla__slide {
    height: 100vh;
  }

  body.home .hero-slide__visual > div {
    max-width: 840px;
    transform: scale(1.5);
    transform-origin: center center;
  }

  .home-product-feature-card__media {
    min-height: 12.5rem;
  }

  .home-product-feature-card__media img {
    max-width: 18rem;
    max-height: 13rem;
  }
}

@media (min-width: 3600px) {
  :root {
    --site-main-content-max-width: 2200px;
    --site-main-content-inline-padding: clamp(56px, 1.95vw, 120px);
    --site-aligned-shell-width: 2500px;
    --site-shell-max-width: 2500px;
  }

  body {
    --ultra-wide-scale: 1;
  }

  header nav.group\/navigation-menu > ul {
    gap: clamp(1.25rem, 1vw, 1.85rem) !important;
  }

  body.home .hero-slide__inner {
    gap: 260px;
  }

  body.home .hero-slide__copy {
    flex: 0 0 920px;
    max-width: 920px;
    transform: none;
  }

  body.home .hero-slide__visual {
    flex: 0 0 820px;
  }

  body.home .hero-slide__visual > div {
    max-width: 920px;
    transform: scale(1.5);
    transform-origin: center center;
  }
}

/* ===== WPML Language Switcher ===== */
.header-utility-item--lang {
  position: relative;
}

.header-lang-menu {
  list-style: none;
  margin: 0;
}
.header-lang-switcher {
  position: relative;
  margin-left: 1rem;
}

.header-lang-current {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #475569;
  font-size: 0.88rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.header-lang-current:hover {
  background: transparent;
}

.header-lang-current svg {
  transition: transform 0.2s;
}

.header-lang-current > svg:last-child {
  transition: transform 0.2s;
}

.header-lang-switcher.is-open .header-lang-current > svg:last-child {
  transform: rotate(180deg);
}

.header-lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  min-width: 140px;
  padding: 0.35rem 0;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
  list-style: none;
  z-index: 999;
}

.header-lang-switcher.is-open .header-lang-dropdown {
  display: block;
}

.header-lang-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  color: #334155;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.header-lang-dropdown a:hover,
.header-lang-dropdown a:focus {
  background: rgb(var(--yingyue-brand-blue-rgb) / 0.08);
}

.header-lang-dropdown a.is-active {
  font-weight: 700;
  color: hsl(var(--primary));
  background: transparent;
}

.header-lang-dropdown li + li a {
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

body.home .site-global-header--home-overlay .header-lang-dropdown,
body.home .site-global-header--home-overlay .header-lang-dropdown a,
body.home .site-global-header--home-overlay .header-lang-dropdown a:hover,
body.home .site-global-header--home-overlay .header-lang-dropdown a:focus-visible,
body.home .site-global-header--home-overlay .header-lang-dropdown a.is-active {
  color: #334155;
}

body.home .site-global-header--home-overlay .header-lang-dropdown a:hover,
body.home .site-global-header--home-overlay .header-lang-dropdown a:focus-visible {
  background: rgb(var(--yingyue-brand-blue-rgb) / 0.08);
}

body.home .site-global-header--home-overlay .header-lang-dropdown a.is-active {
  color: hsl(var(--primary));
  background: transparent;
}

@media (max-width: 767px) {
  .header-lang-switcher {
    margin-left: 0.5rem;
  }

  .header-lang-current {
    padding: 0.4rem 0.65rem;
    font-size: 0.82rem;
  }
}

@media (min-width: 768px) {
  body.home .hero-nav-button {
    position: absolute;
    top: 50%;
    z-index: 24;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(7, 18, 38, 0.24);
    color: #fff;
    box-shadow: 0 10px 30px rgba(2, 8, 23, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
  }

  body.home .hero-nav-button:hover,
  body.home .hero-nav-button:focus-visible {
    background: rgba(20, 52, 110, 0.42);
    border-color: rgba(255, 255, 255, 0.34);
    transform: translateY(-50%) scale(1.06);
  }

  body.home .hero-nav-button:disabled {
    opacity: 0.42;
    cursor: default;
  }

  body.home .hero-nav-button--prev {
    left: 130px;
  }

  body.home .hero-nav-button--next {
    right: 130px;
  }

  body.home .hero-nav-button svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  body.home .hero-dots {
    left: 50%;
    right: auto;
    bottom: 1.75rem;
    width: auto;
    justify-content: center;
    transform: translateX(-50%);
    translate: none;
    margin: 0;
  }

  body.home .hero-dot {
    width: 0.6rem;
    height: 0.6rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: width 180ms ease, background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
  }

  body.home .hero-dot:hover,
  body.home .hero-dot:focus-visible {
    background: rgba(255, 255, 255, 0.58);
    transform: scale(1.08);
  }

  body.home .hero-dot.is-active {
    width: 1.6rem;
    background-color: #fff;
  }
}

@media (min-width: 768px) and (max-width: 1729px) {
  body.home .hero-nav-button {
    width: 3rem;
    height: 3rem;
    transform: translateY(-50%);
  }
  body.home .hero-nav-button:hover,
  body.home .hero-nav-button:focus-visible {
    transform: translateY(-50%) scale(1.06);
  }
  body.home .hero-nav-button--prev {
    left: 15px !important;
  }
  body.home .hero-nav-button--next {
    right: 15px !important;
  }
  body.home .hero-nav-button svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  body.home .site-floating-contact {
    transform: translateY(calc(-50% + 210px)) !important;
  }
}
