:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  background:
    radial-gradient(circle at top left, rgba(90, 185, 255, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(23, 136, 216, 0.10), transparent 24%),
    linear-gradient(180deg, #f4faff 0%, #ffffff 22%, #f6fbff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 136, 216, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 136, 216, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 90%);
  pointer-events: none;
  z-index: -2;
}

a,
button {
  transition:
    color 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease,
    opacity 200ms ease;
}

button,
[role="button"] {
  cursor: pointer;
}

.site-nav {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 63, 115, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 42px rgba(15, 63, 115, 0.08);
}

.site-brand-title {
  color: #0f3f73;
}

.site-brand-subtitle {
  color: #7d94b3;
}

.site-brand-copy {
  display: block;
}

.nav-link {
  position: relative;
  color: #4f6480;
  border-radius: 0;
  background: transparent;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -0.7rem;
  height: 3px;
  border-radius: 999px;
  background: #1788d8;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
  opacity: 0;
}

.nav-link:hover {
  color: #0f63b5;
  background: transparent;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-link-active {
  color: #0f63b5 !important;
  background: transparent;
  box-shadow: none;
}

.nav-link-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-cta {
  background: #1788d8;
  border: 1px solid #1788d8;
  border-radius: 0.45rem;
  box-shadow: 0 14px 28px rgba(23, 136, 216, 0.14);
}

.nav-cta:hover {
  background: #ffffff;
  color: #1788d8;
  border-color: #1788d8;
  filter: none;
}

.dropdown-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 251, 255, 0.98)),
    linear-gradient(135deg, rgba(15, 63, 115, 0.03), transparent);
  border: 1px solid rgba(15, 63, 115, 0.10);
  border-radius: 0.7rem;
  box-shadow: 0 18px 36px rgba(15, 63, 115, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.dropdown-link {
  color: #4f6480;
}

.dropdown-link:hover {
  background: rgba(23, 136, 216, 0.08);
  color: #0f63b5;
}

.subnav-link-active {
  color: #0f63b5 !important;
  background: rgba(23, 136, 216, 0.10);
  box-shadow: inset 3px 0 0 #1788d8;
}

.section-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 136, 216, 0.10);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 24px 60px rgba(16, 35, 63, 0.06);
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 185, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 185, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 80%);
  pointer-events: none;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 136, 216, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.55rem 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(15, 63, 115, 0.72);
}

.hero-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.92)),
    linear-gradient(135deg, rgba(23, 136, 216, 0.08), transparent 48%);
  border: 1px solid rgba(125, 211, 252, 0.55);
  box-shadow: 0 28px 70px rgba(14, 74, 110, 0.08);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 136, 216, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 136, 216, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 78%);
  pointer-events: none;
}

.mesh-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.94)),
    linear-gradient(180deg, rgba(23, 136, 216, 0.12), transparent);
}

.number-grid {
  background-image:
    linear-gradient(rgba(23, 136, 216, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 136, 216, 0.10) 1px, transparent 1px);
  background-size: 26px 26px;
}

.media-card {
  border: 1px solid rgba(90, 185, 255, 0.34);
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(236, 247, 255, 0.98));
  box-shadow: 0 22px 52px rgba(23, 136, 216, 0.12);
}

.frost-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 255, 0.95)),
    linear-gradient(135deg, rgba(23, 136, 216, 0.05), transparent);
}

.ice-card {
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(239, 249, 255, 0.95)),
    linear-gradient(135deg, rgba(125, 211, 252, 0.12), transparent);
}

.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, rgba(90, 185, 255, 0), rgba(90, 185, 255, 0.75), rgba(90, 185, 255, 0));
  opacity: 0.55;
  pointer-events: none;
}

.circuit-line.vertical {
  width: 1px;
  background: linear-gradient(180deg, rgba(90, 185, 255, 0), rgba(90, 185, 255, 0.75), rgba(90, 185, 255, 0));
}

.tech-node {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98), rgba(125, 211, 252, 0.82));
  box-shadow: 0 0 0 6px rgba(186, 230, 253, 0.18), 0 0 24px rgba(56, 189, 248, 0.14);
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 450ms ease;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-dot {
  height: 0.7rem;
  width: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 136, 216, 0.26);
  background: rgba(255, 255, 255, 0.92);
}

.carousel-dot.active {
  width: 1.9rem;
  background: #1788d8;
  border-color: #1788d8;
}

.home-hero {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.92), rgba(232, 243, 255, 0.72) 48%, rgba(221, 236, 255, 0.9) 100%),
    linear-gradient(180deg, #eef6ff 0%, #e3f0ff 100%);
}

.home-hero-carousel {
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(56, 112, 170, 0.10);
}

.home-hero-carousel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5rem;
  background: linear-gradient(180deg, rgba(227, 240, 255, 0), rgba(227, 240, 255, 0.72));
  pointer-events: none;
  z-index: 10;
}

.home-hero-stage {
  aspect-ratio: 1672 / 941;
  min-height: clamp(15rem, 40vw, 34rem);
}

.home-hero-slide {
  display: block;
  overflow: hidden;
}

.home-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 22%, transparent 78%, rgba(215, 233, 255, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.home-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.home-hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
}

.home-hero-dots .carousel-dot {
  border-color: rgba(23, 136, 216, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.home-hero-dots .carousel-dot.active {
  background: linear-gradient(90deg, #296fff, #1788d8);
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(23, 136, 216, 0.22);
}

.home-capability-section {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.65), transparent 26%),
    linear-gradient(180deg, #f5f6f8 0%, #eef1f4 100%);
}

.home-capability-title {
  color: #3f68d6;
  text-shadow: 0 10px 24px rgba(63, 104, 214, 0.08);
}

.home-showcase-heading {
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: #111827;
}

.home-showcase-copy {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.9;
  color: #5b6472;
}

.home-showcase-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-showcase-visual {
  position: relative;
}

.home-showcase-visual::before {
  content: "";
  position: absolute;
  inset: 14% 8% 12%;
  border-radius: 2rem;
  background: radial-gradient(circle at center, rgba(90, 185, 255, 0.18), rgba(90, 185, 255, 0));
  pointer-events: none;
}

.home-showcase-visual-left::after,
.home-showcase-visual-right::after {
  content: "";
  position: absolute;
  inset: auto 8% 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(23, 136, 216, 0), rgba(23, 136, 216, 0.2), rgba(23, 136, 216, 0));
  pointer-events: none;
}

.home-showcase-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
}

.home-showcase-mosaic {
  position: relative;
  z-index: 1;
}

.home-showcase-mosaic > .home-showcase-image {
  height: clamp(9.5rem, 22vw, 13.25rem);
}

.home-showcase-stack {
  align-content: start;
}

.home-showcase-frame {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.home-showcase-frame-compact {
  min-height: clamp(9.5rem, 20vw, 12.5rem);
}

.home-showcase-frame-medium {
  min-height: clamp(11.5rem, 24vw, 15.625rem);
}

.home-showcase-tile {
  border-radius: 1rem;
  border: 1px solid rgba(23, 136, 216, 0.10);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(15, 63, 115, 0.06);
}

.home-showcase-tile-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96)),
    linear-gradient(135deg, rgba(23, 136, 216, 0.03), transparent);
}

.home-solution-section {
  background: #f4f8fd;
}

.home-solution-title {
  color: #3f68d6;
}

.home-solution-tabs {
  align-self: stretch;
  grid-auto-rows: 1fr;
}

.home-solution-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  width: 100%;
  border-radius: 0;
  border: 1px solid rgba(23, 136, 216, 0.10);
  background: rgba(255, 255, 255, 0.86);
  padding: 0.8rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: #355276;
  text-align: center;
  box-shadow: 0 10px 24px rgba(23, 136, 216, 0.05);
}

.home-solution-tab:hover {
  background: rgba(90, 185, 255, 0.10);
  border-color: rgba(23, 136, 216, 0.18);
  color: #0f63b5;
}

.home-solution-tab.active {
  background: #1788d8;
  color: #ffffff;
  border-color: rgba(23, 136, 216, 0.22);
  box-shadow: 0 14px 30px rgba(23, 136, 216, 0.18);
}

.home-solution-panel {
  position: relative;
  display: none;
  min-height: clamp(26rem, 62vw, 38rem);
  overflow: hidden;
  border-radius: 0;
}

.home-solution-panel.active {
  display: block;
}

.home-solution-bg,
.home-solution-overlay {
  position: absolute;
  inset: 0;
}

.home-solution-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-solution-overlay {
  background:
    linear-gradient(90deg, rgba(15, 63, 115, 0.58) 0%, rgba(23, 136, 216, 0.42) 34%, rgba(16, 35, 63, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(15, 63, 115, 0.18));
}

.home-solution-content {
  position: relative;
  z-index: 1;
  max-width: min(48rem, 100%);
  padding: clamp(5.5rem, 14vw, 10rem) clamp(1.25rem, 3.8vw, 2.25rem) clamp(2rem, 6vw, 3rem);
  color: #ffffff;
}

.home-solution-heading {
  font-size: clamp(2.5rem, 4.2vw, 4.6rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.home-solution-copy {
  margin-top: 2rem;
  max-width: 52rem;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.92;
  color: rgba(255, 255, 255, 0.94);
}

.home-solution-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  min-width: 11rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.95rem 1.8rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1788d8;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.12);
}

.home-solution-cta:hover {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.94);
}

.home-news-section {
  background: #ffffff;
}

.home-news-title {
  font-size: clamp(2.3rem, 3.6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #20242c;
}

.home-news-title-line {
  display: inline-block;
  width: 5.9rem;
  height: 3px;
  margin-top: 1.7rem;
  background: #1f3e73;
}

.home-news-carousel {
  position: relative;
}

.home-news-viewport {
  overflow: hidden;
}

.home-news-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.home-news-item {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 clamp(0.4rem, 1.2vw, 0.75rem);
}

.home-news-card {
  display: block;
  height: 100%;
  background: transparent;
}

.home-news-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #edf5ff;
}

.home-news-media-frame {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(23, 136, 216, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 136, 216, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.home-news-placeholder-chip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  border: 1px solid rgba(23, 136, 216, 0.18);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.38rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1788d8;
}

.home-news-placeholder-text {
  font-size: clamp(1.25rem, 1.6vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(15, 63, 115, 0.26);
}

.home-news-content {
  padding: 1.15rem 0 0;
}

.home-news-heading {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  color: #2b2f36;
}

.home-news-copy {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 0.75rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.98rem;
  line-height: 1.85;
  color: #8b9099;
}

.home-news-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.home-news-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(23, 136, 216, 0.12);
  background: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  color: #1788d8;
}

.home-news-arrow:hover {
  background: #1788d8;
  color: #ffffff;
  border-color: #1788d8;
}

.home-news-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.home-news-dot {
  width: 0.65rem;
  height: 0.65rem;
  border: 1px solid rgba(23, 136, 216, 0.24);
  background: #ffffff;
  border-radius: 999px;
}

.home-news-dot.active {
  width: 1.8rem;
  background: #1788d8;
  border-color: #1788d8;
}

.browser-dot {
  height: 0.72rem;
  width: 0.72rem;
  border-radius: 999px;
}

.thumb-active {
  border-color: rgba(23, 136, 216, 0.72) !important;
  box-shadow: 0 0 0 2px rgba(23, 136, 216, 0.12);
}

.flow-arrow {
  height: 1px;
  flex: 1;
  min-width: 48px;
  background: linear-gradient(90deg, rgba(23, 136, 216, 0.18), rgba(23, 136, 216, 0.55), rgba(23, 136, 216, 0.18));
  position: relative;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  height: 8px;
  width: 8px;
  border-top: 1px solid rgba(23, 136, 216, 0.7);
  border-right: 1px solid rgba(23, 136, 216, 0.7);
  transform: translateY(-50%) rotate(45deg);
}

.mobile-submenu {
  display: none;
}

.mobile-submenu.open {
  display: block;
}

.floating-card {
  animation: floatY 7s ease-in-out infinite;
}

.floating-card-delay {
  animation-delay: 1.3s;
}

.about-hero-dark {
  background:
    radial-gradient(circle at 14% 10%, rgba(90, 185, 255, 0.14), transparent 24%),
    radial-gradient(circle at 80% 24%, rgba(23, 136, 216, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(244, 250, 255, 0.92) 0%, rgba(255, 255, 255, 0.96) 42%, rgba(246, 251, 255, 0.94) 100%);
}

.about-hero-dark::before,
.about-hero-dark::after {
  content: "";
  position: absolute;
  right: -8%;
  border-radius: 999px;
  border: 42px solid rgba(90, 185, 255, 0.10);
  pointer-events: none;
}

.about-hero-dark::before {
  top: -8%;
  width: 34rem;
  height: 34rem;
}

.about-hero-dark::after {
  top: 12%;
  width: 48rem;
  height: 48rem;
  border-color: rgba(23, 136, 216, 0.05);
}

.about-hero-label {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(23, 136, 216, 0.12);
  color: rgba(15, 63, 115, 0.72);
}

.about-banner-section {
  background:
    radial-gradient(circle at top left, rgba(90, 185, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f5faff 0%, #eef6ff 100%);
}

.about-subnav-section {
  border-bottom: 1px solid rgba(15, 63, 115, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.about-subnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2.2rem, 4vw, 4.2rem);
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
}

.about-subnav::-webkit-scrollbar {
  display: none;
}

.about-subnav-link {
  position: relative;
  flex: 0 0 auto;
  padding: 1.1rem 1rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #5f6b7a;
  white-space: nowrap;
}

.about-subnav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #3f68d6;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.about-subnav-link:hover,
.about-subnav-link:focus-visible {
  color: #1d4ed8;
}

.about-subnav-link:hover::after,
.about-subnav-link:focus-visible::after {
  transform: scaleX(1);
}

.about-subnav-link:first-child {
  color: #1d4ed8;
}

.about-subnav-link:first-child::after {
  transform: scaleX(1);
}

.about-anchor-section {
  scroll-margin-top: 8.5rem;
}

.about-hero-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(14rem, 30vw, 26rem);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(15, 63, 115, 0.08)),
    url("../image/about/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 24px 56px rgba(15, 63, 115, 0.12);
  overflow: hidden;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  align-items: stretch;
}

.about-hero-copy > p {
  width: 100%;
  text-align: justify;
  text-justify: inter-ideograph;
}

.about-hero-photo {
  position: relative;
  z-index: 1;
  display: flex;
}

.about-hero-photo-card {
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 136, 216, 0.12);
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  box-shadow: 0 20px 46px rgba(15, 63, 115, 0.10);
}

.about-hero-photo-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 42rem;
  object-fit: contain;
}

.product-overview-hero {
  background-image: url("../image/products/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body[data-page="solution-education"] .product-overview-hero {
  background-image: url("../image/solutions/education/bg.png");
}

body[data-page="solution-automation"] .product-overview-hero {
  background-image: url("../image/solutions/automation/bg.png");
}

body[data-page="solution-finance"] .product-overview-hero {
  background-image: url("../image/solutions/finance/bg.png");
}

body[data-page="solution-medical"] .product-overview-hero {
  background-image: url("../image/solutions/medical/bg.png");
}

.product-overview-hero-shell {
  padding: clamp(1.2rem, 3vw, 2rem) 0;
}

.product-overview-hero-label {
  display: inline-flex;
  align-items: center;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(15, 63, 115, 0.78);
}

.product-overview-subnav-section {
  border-bottom: 1px solid rgba(15, 63, 115, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.product-overview-subnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 3vw, 3rem);
  overflow-x: auto;
  scrollbar-width: none;
}

.product-overview-subnav::-webkit-scrollbar {
  display: none;
}

.product-overview-subnav-link {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  padding: 1.1rem 0.5rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #5f6b7a;
  white-space: nowrap;
}

.product-overview-subnav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #3f68d6;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.product-overview-subnav-link:hover,
.product-overview-subnav-link:focus-visible {
  color: #1d4ed8;
}

.product-overview-subnav-link:hover::after,
.product-overview-subnav-link:focus-visible::after,
.product-overview-subnav-link.active::after {
  transform: scaleX(1);
}

.product-overview-subnav-link.active {
  color: #1d4ed8;
}

.product-overview-content {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.product-overview-content-shell {
  width: 100%;
  padding: 2.5rem 0 4rem;
}

body[data-nav-group="solutions"] .product-overview-content-shell {
  padding-top: 0;
}

.product-overview-panels {
  position: relative;
}

.product-overview-panel {
  display: none;
}

.product-overview-panel.active {
  display: block;
}

.product-overview-panel.reveal {
  opacity: 1;
  transform: none;
}

.product-detail-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-panel-heading {
  padding: 0.25rem clamp(1.25rem, 4vw, 3rem) 0.5rem;
}

.product-panel-heading-title {
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #3f68d6;
}

.product-detail-block {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94)),
    linear-gradient(135deg, rgba(23, 136, 216, 0.04), transparent 55%);
  box-shadow: 0 26px 54px rgba(16, 35, 63, 0.08);
}

.product-overview-group {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.product-overview-group-muted {
  background:
    linear-gradient(180deg, rgba(244, 248, 253, 0.98), rgba(252, 253, 255, 0.96)),
    linear-gradient(135deg, rgba(23, 136, 216, 0.04), transparent 60%);
}

.product-overview-group-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #3f68d6;
}

.product-feature-card {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94)),
    linear-gradient(135deg, rgba(23, 136, 216, 0.04), transparent 55%);
  box-shadow: 0 26px 54px rgba(16, 35, 63, 0.08);
}

.product-feature-grid {
  display: grid;
  align-items: center;
  gap: 2rem;
  min-height: clamp(28rem, 38vw, 34rem);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.product-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-feature-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(23, 136, 216, 0.12);
  background: rgba(23, 136, 216, 0.06);
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #1788d8;
}

.product-feature-title {
  margin-top: 1.1rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #101828;
}

.product-feature-subtitle {
  margin-top: 0.7rem;
  font-size: 1rem;
  font-weight: 600;
  color: #3f68d6;
}

.product-feature-desc {
  margin-top: 1.5rem;
  max-width: 40rem;
  font-size: 0.98rem;
  line-height: 1.9;
  color: #607086;
}

.product-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.product-feature-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.8rem;
  padding: 0.82rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.product-feature-button-light {
  border: 1px solid rgba(23, 136, 216, 0.16);
  background: #ffffff;
  color: #3f68d6;
}

.product-feature-button-primary {
  background: #4998f3;
  color: #ffffff;
}

.product-feature-button-primary:hover {
  background: #2d82e3;
}

.product-feature-button-light:hover {
  border-color: rgba(23, 136, 216, 0.28);
  background: rgba(73, 152, 243, 0.04);
}

.product-feature-visual {
  position: relative;
  min-height: clamp(24rem, 32vw, 30rem);
  overflow: hidden;
}

.product-feature-visual::before,
.product-feature-visual::after {
  content: none;
}

.product-feature-visual-panel {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.65rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.product-feature-placeholder-chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.16);
  padding: 0.45rem 0.75rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
}

.product-feature-placeholder-title {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
}

.product-feature-placeholder-meta {
  max-width: 22rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.product-feature-carousel {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
}

.product-feature-carousel-stage {
  position: relative;
  min-height: inherit;
  height: 100%;
}

.product-feature-carousel-slide {
  display: block;
  overflow: hidden;
}

.product-feature-carousel-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.product-feature-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-feature-carousel-arrow-prev {
  left: 1rem;
}

.product-feature-carousel-arrow-next {
  right: 1rem;
}

.product-feature-carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}

.product-feature-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.product-feature-visual-blue {
  background:
    linear-gradient(135deg, rgba(223, 236, 255, 0.98), rgba(180, 213, 255, 0.92) 52%, rgba(121, 174, 247, 0.95)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
}

.product-feature-visual-silver {
  background:
    linear-gradient(135deg, rgba(245, 247, 251, 0.98), rgba(222, 229, 240, 0.94) 48%, rgba(196, 205, 220, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
}

.product-feature-visual-gold {
  background:
    linear-gradient(135deg, rgba(255, 242, 196, 0.98), rgba(238, 211, 118, 0.94) 48%, rgba(223, 177, 67, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
}

.product-feature-visual-amber {
  background:
    linear-gradient(135deg, rgba(247, 226, 140, 0.98), rgba(217, 205, 86, 0.94) 48%, rgba(177, 157, 43, 0.95)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
}

.product-feature-visual-rose {
  background:
    linear-gradient(135deg, rgba(243, 232, 239, 0.98), rgba(228, 211, 220, 0.94) 52%, rgba(204, 183, 196, 0.95)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
}

.education-scene-spotlight {
  display: flex;
  align-items: stretch;
  width: min(100%, 1380px);
  margin: 0 auto;
  gap: 0.75rem;
  padding: 0 2rem;
  overflow-anchor: none;
}

.education-scene-card {
  display: flex;
  flex-direction: column;
  min-height: clamp(31rem, 38vw, 39rem);
  height: clamp(31rem, 38vw, 39rem);
  flex: 1 1 0%;
  flex-grow: 1.02;
  border: 1px solid rgba(203, 213, 225, 0.82);
  background: linear-gradient(180deg, rgba(239, 243, 248, 0.98), rgba(230, 236, 244, 0.96));
  color: #334155;
  text-align: left;
  transition:
    flex-grow 280ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  will-change: flex-grow;
}

.education-scene-card:hover,
.education-scene-card:focus-visible {
  transform: none;
}

.education-scene-card.active {
  flex-grow: 2.35;
  border-color: rgba(59, 130, 246, 0.22);
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(219, 234, 254, 0.96)),
    linear-gradient(135deg, rgba(56, 189, 248, 0.08), transparent 60%);
  color: #0f172a;
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.12);
}

.education-scene-copy {
  display: flex;
  position: relative;
  min-width: 0;
  flex: 1 1 auto;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.7rem 1.65rem 3.7rem;
  order: 2;
}

.education-scene-name {
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0f172a;
}

.education-scene-desc {
  display: none;
  margin-top: 1.35rem;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.92;
  color: #475569;
}

.education-scene-index {
  position: absolute;
  left: 1.65rem;
  bottom: 1.5rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: rgba(100, 116, 139, 0.94);
}

.education-scene-card.active .education-scene-index {
  color: #2563eb;
}

.education-scene-visual {
  display: none;
  order: 1;
  width: 100%;
  min-width: 0;
  min-height: clamp(14rem, 19vw, 18rem);
  align-self: stretch;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, contain;
}

.education-scene-card.active .education-scene-desc,
.education-scene-card.active .education-scene-visual {
  display: block;
}

.education-scene-visual-lab {
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.14)),
    url("../image/solutions/education/image1.png");
}

.education-scene-visual-science {
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.14)),
    url("../image/solutions/education/image2.png");
}

.education-scene-visual-contest {
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.14)),
    url("../image/solutions/education/image3.png");
}

.finance-scene-visual-portfolio {
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.14)),
    url("../image/solutions/finance/image1.png");
}

.finance-scene-visual-var {
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.14)),
    url("../image/solutions/finance/image2.png");
}

.finance-scene-visual-fraud {
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.14)),
    url("../image/solutions/finance/image3.png");
}

.medical-scene-visual-ship {
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.14)),
    url("../image/solutions/medical/image1.png");
}

.medical-scene-visual-optics {
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.14)),
    url("../image/solutions/medical/image2.png");
}

.education-scene-visual-label {
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding: 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.34) 100%);
}

.education-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.education-case-grid-shell {
  width: min(100%, 1380px);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.education-case-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(239, 243, 248, 0.98), rgba(230, 236, 244, 0.96));
  padding: 1.25rem 1.1rem 1.15rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.education-case-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.88), rgba(96, 165, 250, 0.46));
}

.education-case-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.education-case-number {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(37, 99, 235, 0.92);
}

.education-case-tag {
  border: 1px solid rgba(191, 219, 254, 0.86);
  border-radius: 999px;
  padding: 0.35rem 0.78rem;
  background: rgba(239, 246, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #2563eb;
}

.education-case-title {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.education-case-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #475569;
}

.education-case-meta {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.2rem;
}

.education-case-meta-item {
  border-radius: 0;
  border: 1px solid rgba(203, 213, 225, 0.72);
  background: rgba(248, 250, 252, 0.7);
  padding: 0.85rem 0.9rem 0.8rem;
}

.education-case-label {
  margin-bottom: 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #2563eb;
}

.education-case-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #475569;
}

.education-case-card-media-top {
  gap: 0;
  padding: 0;
}

.education-case-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 1.05rem;
  padding: 1.25rem 1.1rem 1.15rem;
}

.education-case-media {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(203, 213, 225, 0.72);
}

.education-case-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 47, 73, 0.08), rgba(8, 47, 73, 0.28)),
    linear-gradient(135deg, rgba(22, 78, 99, 0.92), rgba(37, 99, 235, 0.82) 56%, rgba(191, 219, 254, 0.76));
}

.education-case-media-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.65rem;
  padding: 1.2rem 1.1rem 1rem;
}

.education-case-media-chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  padding: 0.42rem 0.72rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.94);
}

.education-case-media-label {
  max-width: 18rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.94);
}

.education-case-media-automation-1::before {
  background:
    linear-gradient(180deg, rgba(8, 47, 73, 0.10), rgba(8, 47, 73, 0.28)),
    url("../image/solutions/automation/image1.png");
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.education-case-media-automation-2::before {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.28)),
    url("../image/solutions/automation/image2.png");
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.education-case-media-automation-3::before {
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.12), rgba(30, 41, 59, 0.24)),
    url("../image/solutions/automation/image3.png");
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.finance-case-media-1::before {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.10), rgba(15, 23, 42, 0.28)),
    url("../image/solutions/finance/image4.png");
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.finance-case-media-2::before {
  background:
    linear-gradient(180deg, rgba(8, 47, 73, 0.12), rgba(8, 47, 73, 0.28)),
    url("../image/solutions/finance/image5.png");
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.education-related-stack {
  display: grid;
  gap: 0;
  width: min(100%, 1380px);
  margin: 0 auto;
  padding: 0 2rem;
}

.education-related-block {
  width: 100%;
  background: transparent;
  box-shadow: none;
}

.education-related-block .product-feature-grid {
  padding: clamp(1.6rem, 3vw, 2.35rem) 0;
}

.education-related-link {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.98rem;
  font-weight: 700;
  color: #2563eb;
}

.education-related-block.product-detail-block,
.education-related-block.product-feature-card {
  background: transparent;
  box-shadow: none;
}

.history-list {
  position: relative;
  padding-left: 0.45rem;
}

.history-list::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(23, 136, 216, 0.20), rgba(23, 136, 216, 0.55), rgba(23, 136, 216, 0.20));
}

.history-list-item {
  position: relative;
  display: grid;
  grid-template-columns: 1rem 8rem minmax(0, 1fr);
  align-items: start;
  column-gap: 1.35rem;
  padding: 0.15rem 0 2rem;
}

.history-list-marker {
  position: relative;
  z-index: 1;
  justify-self: center;
  margin-top: 0.55rem;
  height: 0.72rem;
  width: 0.72rem;
  border-radius: 999px;
  background: #1788d8;
  box-shadow: 0 0 0 5px rgba(23, 136, 216, 0.08);
}

.history-list-marker-strong {
  height: 0.72rem;
  width: 0.72rem;
  margin-top: 0.55rem;
  box-shadow: 0 0 0 5px rgba(23, 136, 216, 0.08);
}

.history-list-year {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #233243;
  padding-top: 0.18rem;
}

.history-list-body {
  padding-top: 0.2rem;
}

.history-list-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f3f73;
}

.history-list-desc {
  margin-top: 0.8rem;
  max-width: 56rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #455a74;
}

.history-list-item:hover .history-list-marker {
  background: #0f63b5;
}

.history-list-item:hover .history-list-title {
  color: #0f63b5;
}

.honor-rail {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.6rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 136, 216, 0.28) transparent;
}

.honor-rail::-webkit-scrollbar {
  height: 8px;
}

.honor-rail::-webkit-scrollbar-track {
  background: transparent;
}

.honor-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(23, 136, 216, 0.22);
}

.honor-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16rem, 18rem);
  gap: 1.25rem;
  align-items: stretch;
}

.honor-card {
  min-height: 25rem;
  overflow: hidden;
  border-radius: 1.7rem;
  border: 1px solid rgba(23, 136, 216, 0.14);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 35, 63, 0.05);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.honor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 136, 216, 0.24);
  box-shadow: 0 22px 44px rgba(23, 136, 216, 0.10);
}

.honor-card-top {
  display: flex;
  min-height: 8.25rem;
  align-items: flex-end;
  padding: 1.35rem 1.35rem 1rem;
  background:
    radial-gradient(circle at top right, rgba(90, 185, 255, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(251, 254, 255, 1), rgba(244, 250, 255, 0.92));
  border-bottom: 1px solid rgba(23, 136, 216, 0.08);
}

.honor-year {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1788d8;
}

.honor-card-body {
  padding: 1.25rem 1.35rem 1.45rem;
  background: #ffffff;
}

.honor-desc {
  font-size: 0.97rem;
  line-height: 1.9;
  color: #50657f;
}

.news-topband {
  border-bottom: 1px solid rgba(203, 213, 225, 0.84);
  background: #ffffff;
}

.news-hero-banner {
  position: relative;
  min-height: clamp(15rem, 28vw, 19rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.6) 22%, rgba(255, 255, 255, 0.22) 58%, rgba(255, 255, 255, 0.08) 100%),
    url("../image/news/bg.png") center center / cover no-repeat;
}

.news-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.14) 100%);
  pointer-events: none;
}

.news-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(100%, 1380px);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 2rem;
}

.news-hero-title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #020617;
}

.news-channel-shell {
  width: min(100%, 1380px);
  margin: 0 auto;
  padding: 0 2rem 4.5rem;
}

.news-topband .news-channel-shell {
  padding: 0 2rem;
}

.news-topband + .news-channel-shell {
  padding-top: 1.2rem;
}

.news-channel-nav-shell {
  border-bottom: 1px solid rgba(15, 63, 115, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 21rem;
  gap: 1.5rem;
  margin-top: 0.75rem;
  align-items: start;
}

.news-main {
  min-width: 0;
}

.news-channel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2.2rem, 4vw, 4.2rem);
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
}

.news-channel-nav::-webkit-scrollbar {
  display: none;
}

.news-channel-tab {
  position: relative;
  flex: 0 0 auto;
  padding: 1.1rem 1rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  color: #5f6b7a;
  white-space: nowrap;
}

.news-channel-tab:hover,
.news-channel-tab:focus-visible {
  color: #1d4ed8;
}

.news-channel-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #3f68d6;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.news-channel-tab:hover::after,
.news-channel-tab:focus-visible::after,
.news-channel-tab-active::after {
  transform: scaleX(1);
}

.news-channel-tab-active {
  color: #1d4ed8;
}

.news-channel-tab-external {
  color: #5f6b7a;
}

.news-section-panel {
  margin-top: 1.15rem;
  border: 1px solid rgba(203, 213, 225, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96)),
    linear-gradient(135deg, rgba(23, 136, 216, 0.04), transparent);
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.05);
}

.news-main > .news-section-panel:first-child {
  margin-top: 0;
}

.news-section-head {
  display: grid;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(203, 213, 225, 0.7);
}

.news-section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(15, 63, 115, 0.72);
  text-transform: uppercase;
}

.news-section-title {
  margin: 0.15rem 0 0;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #020617;
}

.news-section-copy {
  margin: 0;
  max-width: 50rem;
  font-size: 0.97rem;
  line-height: 1.9;
  color: #5b708d;
}

.news-story-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.15rem;
}

.news-story-list-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-story-card {
  border: 1px solid rgba(191, 219, 254, 0.68);
  background: rgba(255, 255, 255, 0.95);
  padding: 1.15rem 1.15rem 1.05rem;
}

.news-story-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.news-story-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(224, 242, 254, 0.92);
  padding: 0.38rem 0.68rem;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  color: #0f63b5;
}

.news-story-tag-neutral {
  background: rgba(241, 245, 249, 0.96);
  color: #475569;
}

.news-story-tag-outline {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(191, 219, 254, 0.88);
}

.news-story-date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(79, 100, 128, 0.84);
}

.news-story-title {
  margin-top: 1rem;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.035em;
  color: #020617;
}

.news-story-excerpt {
  margin-top: 0.9rem;
  font-size: 0.96rem;
  line-height: 1.9;
  color: #50657f;
}

.news-story-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2563eb;
}

.news-story-link:hover,
.news-story-link:focus-visible {
  color: #0f63b5;
}

.news-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 5.9rem;
}

.news-sidebar-card {
  border: 1px solid rgba(203, 213, 225, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96)),
    linear-gradient(135deg, rgba(23, 136, 216, 0.05), transparent);
  padding: 1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.news-sidebar-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0f3f73;
  text-transform: uppercase;
}

.news-sidebar-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.95rem;
}

.news-reco-item,
.news-side-project {
  display: grid;
  gap: 0.55rem;
  border: 1px solid rgba(219, 234, 254, 0.92);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.9rem;
}

.news-reco-item {
  grid-template-columns: 2.8rem minmax(0, 1fr);
  align-items: start;
}

.news-reco-item:hover,
.news-side-project:hover,
.news-reco-item:focus-visible,
.news-side-project:focus-visible {
  border-color: rgba(96, 165, 250, 0.94);
  box-shadow: 0 14px 30px rgba(23, 136, 216, 0.08);
}

.news-reco-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  background: linear-gradient(135deg, rgba(15, 63, 115, 0.96), rgba(23, 136, 216, 0.92));
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.news-reco-copy {
  display: grid;
  gap: 0.3rem;
}

.news-reco-copy strong,
.news-side-project strong {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #020617;
}

.news-reco-copy span,
.news-side-project span {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #58708e;
}

.news-side-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: rgba(224, 242, 254, 0.92);
  padding: 0.34rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  color: #0f63b5;
}

.news-event-item {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 0.85rem;
  border: 1px solid rgba(219, 234, 254, 0.92);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.9rem;
}

.news-event-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  background: rgba(239, 246, 255, 0.98);
  font-size: 0.92rem;
  font-weight: 800;
  color: #2563eb;
}

.news-event-copy {
  display: grid;
  gap: 0.35rem;
}

.news-event-copy strong {
  font-size: 0.96rem;
  line-height: 1.55;
  color: #020617;
}

.news-event-copy span {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #58708e;
}

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

@media (min-width: 640px) {
  .home-news-item {
    flex-basis: 50%;
  }
}

@media (min-width: 1024px) {
  .product-feature-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(25rem, 1.06fr);
  }

  .product-feature-card-reverse .product-feature-copy {
    order: 2;
  }

  .product-feature-card-reverse .product-feature-visual {
    order: 1;
  }

  .home-solution-tabs {
    position: sticky;
    top: 6rem;
  }

  .home-solution-tab {
    padding-left: 2rem;
    text-align: left;
  }

  .home-solution-panel {
    min-height: clamp(34rem, 40vw, 38rem);
  }

  .home-solution-content {
    padding: clamp(7rem, 9vw, 8.5rem) 3rem 3rem;
  }

  .home-news-card {
    min-height: 100%;
  }

  .home-news-item {
    flex-basis: 33.333333%;
  }

  .home-news-content {
    padding-top: 1.35rem;
  }

  .about-hero-photo {
    padding-top: 0.35rem;
  }
}

@media (max-width: 1024px) {
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .product-overview-subnav {
    justify-content: flex-start;
  }

  .education-scene-spotlight {
    flex-direction: column;
  }

  .education-scene-card,
  .education-scene-card.active {
    flex: 1 1 auto;
    min-height: auto;
    height: auto;
  }

  .education-scene-card {
    transform: none;
  }

  .education-scene-card.active .education-scene-visual {
    width: 100%;
    min-width: 0;
    min-height: 15rem;
  }

  .education-case-grid {
    grid-template-columns: 1fr;
  }

  .education-case-grid-shell {
    padding: 0;
  }

  .education-related-stack {
    padding: 0;
  }

  .news-hero-copy,
  .news-channel-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .news-channel-nav {
    justify-content: flex-start;
    gap: 1.75rem;
  }

  .news-story-list-compact {
    grid-template-columns: 1fr;
  }

  .education-case-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-showcase-copy {
    max-width: none;
  }

  .home-showcase-visual::before {
    inset: 8% 4% 10%;
  }

  .home-solution-content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .news-channel-shell {
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .news-topband .news-channel-shell {
    padding: 0 1rem;
  }

  .news-topband + .news-channel-shell {
    padding-top: 1rem;
  }

  .news-hero-title {
    font-size: 2.8rem;
  }

  .news-section-panel {
    padding: 1rem;
  }

  .news-story-card,
  .news-sidebar-card {
    padding: 0.95rem;
  }

  .news-event-item {
    grid-template-columns: 1fr;
  }

  .news-event-date {
    justify-content: flex-start;
    min-height: 0;
    padding: 0.5rem 0.65rem;
  }

  .product-anchor-section {
    scroll-margin-top: 7rem;
  }

  .product-anchor-target {
    scroll-margin-top: 7rem;
  }

  .product-overview-hero-shell {
    padding: 1.25rem;
  }

  .product-overview-content-shell {
    padding: 1.75rem 0 2.5rem;
  }

  .product-overview-subnav-link {
    padding: 0.95rem 0 0.9rem;
    font-size: 0.88rem;
  }

  .product-feature-grid {
    gap: 1.35rem;
    min-height: 24rem;
    padding: 1.2rem;
  }

  .education-scene-spotlight {
    gap: 1rem;
    padding: 0;
  }

  .education-case-card {
    border-radius: 0;
    padding: 1.1rem 0.95rem 1rem;
  }

  .education-case-number {
    font-size: 1.38rem;
  }

  .education-case-title {
    font-size: 1.04rem;
  }

  .education-scene-copy {
    padding: 1.3rem 1.2rem 3.1rem;
  }

  .education-scene-index {
    left: 1.2rem;
    bottom: 1.15rem;
  }

  .education-scene-name {
    font-size: 1.02rem;
  }

  .education-scene-desc {
    margin-top: 1.15rem;
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .education-scene-index {
    padding-top: 1.25rem;
  }

  .education-scene-visual-label {
    padding: 1rem;
    font-size: 0.84rem;
  }

  .product-feature-visual {
    min-height: 18rem;
  }

  .product-feature-carousel-arrow {
    height: 2.35rem;
    width: 2.35rem;
    font-size: 1.5rem;
  }

  .product-feature-carousel-arrow-prev {
    left: 0.7rem;
  }

  .product-feature-carousel-arrow-next {
    right: 0.7rem;
  }

  .product-feature-carousel-dots {
    bottom: 0.7rem;
  }

  .product-feature-actions {
    width: 100%;
  }

  .product-feature-button {
    flex: 1 1 10rem;
  }

  .about-anchor-section {
    scroll-margin-top: 7rem;
  }

  .about-subnav {
    justify-content: flex-start;
    gap: 2rem;
  }

  .about-subnav-link {
    padding: 1rem 0 0.95rem;
    font-size: 1rem;
  }

  .home-hero-stage {
    min-height: 13.5rem;
  }

  .home-hero-image {
    object-position: 44% center;
  }

  .home-hero-carousel::after {
    height: 3.5rem;
  }

  .home-showcase-mosaic > .home-showcase-image {
    height: clamp(8.75rem, 38vw, 10.5rem);
  }

  .home-showcase-frame-compact {
    min-height: clamp(8.75rem, 34vw, 10.5rem);
  }

  .home-showcase-frame-medium {
    min-height: clamp(10rem, 38vw, 12rem);
  }

  .home-solution-tab {
    min-height: 3rem;
    padding: 0.72rem 1rem;
    font-size: 0.96rem;
  }

  .home-solution-panel {
    min-height: 27rem;
  }

  .home-solution-overlay {
    background:
      linear-gradient(180deg, rgba(23, 136, 216, 0.48) 0%, rgba(15, 63, 115, 0.52) 100%);
  }

  .home-solution-content {
    padding: 5.5rem 1.25rem 2rem;
  }

  .home-solution-copy {
    margin-top: 1.25rem;
    line-height: 1.8;
  }

  .home-solution-cta {
    margin-top: 1.8rem;
    min-width: 9.5rem;
    padding: 0.8rem 1.35rem;
    font-size: 0.96rem;
  }

  .home-news-item {
    flex-basis: 100%;
    padding: 0 0.4rem;
  }

  .home-news-content {
    padding-top: 1rem;
  }

  .home-news-heading {
    -webkit-line-clamp: 2;
    font-size: 1.1rem;
  }

  .home-news-copy {
    margin-top: 0.6rem;
    -webkit-line-clamp: 4;
    font-size: 0.92rem;
    line-height: 1.78;
  }

  .home-news-controls {
    gap: 0.7rem;
    flex-wrap: wrap;
  }

  .home-news-arrow {
    width: 2.45rem;
    height: 2.45rem;
  }

  .about-hero-dark::before,
  .about-hero-dark::after {
    right: -40%;
  }

  .about-hero-banner {
    height: clamp(10rem, 42vw, 14rem);
  }

  .about-hero-photo-card {
    min-height: 0;
  }

  .history-list {
    padding-left: 0.35rem;
  }

  .history-list::before {
    left: 0.85rem;
  }

  .history-list-item {
    grid-template-columns: 1rem 1fr;
    column-gap: 0.9rem;
    row-gap: 0.45rem;
    padding-bottom: 1.45rem;
  }

  .history-list-marker,
  .history-list-marker-strong {
    margin-top: 0.55rem;
    height: 0.68rem;
    width: 0.68rem;
    box-shadow: 0 0 0 4px rgba(23, 136, 216, 0.08);
  }

  .history-list-year {
    grid-column: 2;
    font-size: 1.75rem;
  }

  .history-list-body {
    grid-column: 2;
    padding-top: 0;
  }

  .history-list-title {
    font-size: 1.02rem;
  }

  .history-list-desc {
    margin-top: 0.55rem;
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .honor-track {
    grid-auto-columns: minmax(14.5rem, 16rem);
    gap: 1rem;
  }

  .honor-card {
    min-height: 22rem;
  }

  .honor-card-top {
    min-height: 6.8rem;
    padding: 1.1rem 1.1rem 0.85rem;
  }

  .honor-year {
    font-size: 1.9rem;
  }

  .honor-card-body {
    padding: 1rem 1.1rem 1.2rem;
  }

  .honor-desc {
    font-size: 0.9rem;
    line-height: 1.78;
  }
}

@media (max-width: 420px) {
  .site-brand-title {
    max-width: 11.5rem;
  }

  .home-capability-title {
    font-size: 1.8rem;
  }

  .home-showcase-heading {
    font-size: 1.5rem;
  }

  .home-solution-heading {
    font-size: 2rem;
  }

  .home-solution-copy {
    font-size: 0.94rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
