:root {
  --ink: #211a33;
  --muted: #71677f;
  --purple-900: #44305f;
  --purple-700: #7451aa;
  --purple-500: #9f7bd0;
  --purple-300: #cbb8e7;
  --purple-100: #eee7f8;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --border: rgba(255, 255, 255, 0.9);
  --line: rgba(75, 52, 107, 0.14);
  --shadow: 0 24px 70px rgba(73, 51, 103, 0.16);
  --shadow-hover: 0 34px 90px rgba(73, 51, 103, 0.24);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --header-height: 76px;
  --content: 1200px;
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: #f9f6ff;
}

* {
  box-sizing: border-box;
}

*::selection {
  background: rgba(159, 123, 208, 0.24);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(211, 194, 235, 0.6), transparent 30%),
    radial-gradient(circle at 92% 28%, rgba(235, 225, 249, 0.86), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f7f2ff 48%, #e9def8 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

body.menu-open {
  overflow: hidden;
}

.cursor-spotlight {
  position: fixed;
  z-index: 90;
  inset: 0;
  --cursor-x: 50%;
  --cursor-y: 50%;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0;
  background:
    radial-gradient(circle 210px at var(--cursor-x) var(--cursor-y), rgba(255, 255, 255, 0.5) 0%, rgba(238, 231, 248, 0.32) 26%, rgba(184, 205, 255, 0.14) 45%, transparent 68%);
  filter: blur(6px);
  transition: opacity 260ms var(--ease-out);
  will-change: background-position, opacity;
  contain: layout paint;
}

body.has-pointer-light:not(.is-pointer-idle) .cursor-spotlight {
  opacity: 0.42;
}

@media (pointer: coarse),
(prefers-reduced-motion: reduce) {
  .cursor-spotlight {
    display: none;
  }

  .spotlight-surface::before,
  .hero-visual.is-video-panel::after {
    display: none;
  }
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

a,
button,
input,
select,
textarea,
.glass-panel {
  position: relative;
  transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out), background 220ms var(--ease-out), opacity 220ms var(--ease-out);
}

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

svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

:focus-visible {
  outline: 3px solid var(--purple-500);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-weight: 900;
  line-height: 1.06;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 4.85vw, 60px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: 52px;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

p {
  color: var(--muted);
  line-height: 1.78;
}

.glass-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(1.18);
  transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out), background 220ms var(--ease-out), opacity 220ms var(--ease-out);
}

.spotlight-surface {
  --surface-x: 50%;
  --surface-y: 45%;
  overflow: hidden;
  isolation: isolate;
}

.spotlight-surface::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--surface-x) var(--surface-y), rgba(255, 255, 255, 0.74), rgba(238, 231, 248, 0.34) 24%, transparent 52%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
}

.spotlight-surface.is-surface-lit::before {
  opacity: 0.72;
}

.spotlight-surface>* {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 28px), 1360px);
  min-height: 64px;
  display: grid;
  grid-template-columns: 132px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 10px 14px 10px 20px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 42px rgba(73, 51, 103, 0.1);
  backdrop-filter: blur(26px) saturate(1.18);
  transition: background 220ms var(--ease-out), box-shadow 220ms var(--ease-out), top 220ms var(--ease-out);
}

.site-header.is-scrolled {
  top: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(73, 51, 103, 0.16);
}

.site-logo {
  width: 112px;
}

.site-logo img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(33, 26, 51, 0.72);
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: rgba(121, 86, 174, 0.12);
  box-shadow: inset 0 0 0 1px rgba(116, 81, 170, 0.1);
  color: var(--purple-900);
  transform: translateY(-1px);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-button,
.menu-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  border: 1px solid rgba(107, 75, 153, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

.icon-button:hover,
.menu-button:hover {
  background: white;
  box-shadow: 0 10px 24px rgba(73, 51, 103, 0.14);
  transform: translateY(-2px);
}

.language-switch {
  min-height: 42px;
  border: 1px solid rgba(107, 75, 153, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.language-switch:hover {
  background: white;
  box-shadow: 0 10px 24px rgba(73, 51, 103, 0.14);
  transform: translateY(-2px);
}

.menu-button,
.mobile-nav {
  display: none;
}

.search-dialog {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: none;
  place-items: start center;
  padding-top: 12vh;
}

.search-dialog.is-open {
  display: grid;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(35, 25, 50, 0.26);
  backdrop-filter: blur(14px);
}

.search-panel {
  position: relative;
  width: min(680px, calc(100% - 32px));
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.search-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-weight: 900;
}

.search-input {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(107, 75, 153, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.search-input input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 8px 0;
  color: var(--ink);
}

.search-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #6b4b99, #8a5fc2);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.search-submit:hover {
  box-shadow: 0 8px 20px rgba(107, 75, 153, 0.35);
  transform: translateY(-1px);
}

.search-submit:active {
  transform: translateY(0);
}

.search-results {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.search-results a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(238, 231, 248, 0.62);
  font-weight: 800;
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.search-results a:hover {
  background: rgba(203, 184, 231, 0.54);
  box-shadow: 0 12px 28px rgba(73, 51, 103, 0.12);
  transform: translateY(-2px);
}

.search-results span,
.empty-result {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.page-main {
  min-height: 70vh;
  padding-top: 108px;
}

.page-section {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.carousel-section {
  overflow: hidden;
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(520px, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 44px;
}

.hero-spotlight {
  position: relative;
  isolation: isolate;
  --spot-x: 66%;
  --spot-y: 42%;
  --spot-shift-x: 0px;
  --spot-shift-y: 0px;
  overflow: hidden;
  border-radius: 46px;
}

.hero-spotlight>* {
  position: relative;
  z-index: 1;
}

.hero-spotlight::before,
.hero-spotlight::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  transition: opacity 260ms var(--ease-out), transform 520ms var(--ease-out);
}

.hero-spotlight::before {
  inset: 18px 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y),
      rgba(255, 255, 255, 0.98) 0%,
      rgba(244, 238, 255, 0.76) 12%,
      rgba(204, 222, 255, 0.4) 30%,
      rgba(203, 184, 231, 0.14) 48%,
      transparent 68%);
  mix-blend-mode: screen;
  opacity: 0.46;
  filter: blur(1px);
}

.hero-spotlight::after {
  inset: 44px 12px;
  border-radius: 38px;
  background:
    linear-gradient(112deg, transparent 8%, rgba(255, 255, 255, 0.32) 42%, transparent 64%),
    radial-gradient(ellipse at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.34), transparent 46%);
  opacity: 0.14;
  transform: translate3d(calc(-8% + var(--spot-shift-x)), var(--spot-shift-y), 0) skewX(-8deg);
}

.hero-spotlight.is-spotlight-active::before {
  opacity: 0.84;
}

.hero-spotlight.is-spotlight-active::after {
  opacity: 0.42;
  transform: translate3d(calc(4% + var(--spot-shift-x)), var(--spot-shift-y), 0) skewX(-8deg);
}

.page-hero-copy {
  position: relative;
  z-index: 2;
}

.page-lede {
  max-width: 680px;
  font-size: 18px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--purple-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
  overflow: hidden;
}

.hero-visual img,
.hero-visual video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 2px);
}

.hero-visual.is-video-panel {
  border-color: rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(238, 229, 249, 0.34)),
    var(--glass);
  box-shadow: 0 32px 92px rgba(73, 51, 103, 0.2);
}

.hero-visual.is-video-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: calc(var(--radius-lg) - 2px);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.42), transparent 34%, rgba(203, 184, 231, 0.18) 100%),
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.52), transparent 30%);
  mix-blend-mode: screen;
}

.hero-spotlight .hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: calc(var(--radius-lg) - 2px);
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.72), rgba(238, 231, 248, 0.26) 18%, transparent 46%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.hero-spotlight.is-spotlight-active .hero-visual::after {
  opacity: 0.7;
}

.hero-spotlight.is-spotlight-active .hero-visual.is-video-panel::after {
  opacity: 0.82;
}

.hero-video {
  position: relative;
  z-index: 1;
  background: var(--purple-100);
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1);
  transition: transform 700ms var(--ease-out), filter 700ms var(--ease-out);
}

.hero-visual.is-video-panel:hover .hero-video {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.028);
}

.mirror-disc {
  position: absolute;
  inset: 9% auto auto -6%;
  width: 210px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: radial-gradient(circle at 44% 38%, rgba(255, 255, 255, 0.62), rgba(176, 147, 216, 0.16) 58%, transparent 72%);
  box-shadow: 0 24px 70px rgba(73, 51, 103, 0.1);
  backdrop-filter: blur(6px);
  opacity: 0.62;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  max-width: 250px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}

.hero-visual:hover .hero-badge {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  margin-bottom: 6px;
  font-family: "Noto Serif SC", serif;
  font-size: 22px;
}

.hero-badge span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.secondary-button,
.text-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

.primary-button {
  border: 1px solid var(--purple-700);
  background: var(--purple-700);
  color: white;
  box-shadow: 0 14px 34px rgba(116, 81, 170, 0.28);
}

.secondary-button {
  border: 1px solid rgba(107, 75, 153, 0.2);
  background: rgba(255, 255, 255, 0.6);
}

.primary-button svg,
.secondary-button svg,
.text-button svg,
.article-link svg,
.team-card a svg {
  transition: transform 180ms var(--ease-out);
}

.primary-button:hover,
.secondary-button:hover,
.text-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(73, 51, 103, 0.2);
}

.primary-button:hover svg,
.secondary-button:hover svg,
.text-button:hover svg,
.article-link:hover svg,
.team-card a:hover svg {
  transform: translateX(3px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.value-grid,
.featured-grid,
.metrics-grid,
.article-grid,
.advantage-grid,
.certificate-grid,
.contact-options,
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card,
.metric-card,
.advantage-card,
.article-card,
.contact-option,
.spec-grid article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.value-card:hover,
.metric-card:hover,
.advantage-card:hover,
.article-card:hover,
.contact-option:hover,
.product-tile:hover,
.timeline-item:hover,
.process-card:hover,
.certificate-card:hover,
.partner-card:hover,
.capability-card:hover,
.category-capability:hover,
.deliverable-card:hover {
  border-color: rgba(154, 118, 204, 0.5);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-hover);
  transform: translateY(-7px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 16px;
  background: rgba(155, 120, 205, 0.14);
  color: var(--purple-700);
}

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

.product-carousel {
  position: relative;
  --drag-center-x: 0px;
  --drag-side-x: 0px;
  --drag-tilt: 0deg;
  min-height: 760px;
  perspective: 1300px;
  user-select: none;
}

.carousel-stage {
  position: relative;
  min-height: 660px;
  transform-style: preserve-3d;
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-drag: none;
}

.product-carousel.is-dragging .carousel-stage {
  cursor: grabbing;
}

.series-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(520px, 54vw);
  min-height: 520px;
  display: grid;
  grid-template-rows: auto minmax(250px, 1fr) auto;
  padding: 18px;
  overflow: hidden;
  color: var(--ink);
  transform-origin: center;
  transition:
    transform 760ms cubic-bezier(0.18, 0.88, 0.2, 1),
    opacity 560ms var(--ease-out),
    filter 560ms var(--ease-out),
    box-shadow 560ms var(--ease-out),
    border-color 420ms var(--ease-out),
    background 420ms var(--ease-out);
  will-change: transform, opacity;
  -webkit-user-drag: none;
}

.series-card img {
  -webkit-user-drag: none;
}

.series-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.9), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(185, 152, 223, 0.16));
  opacity: 0.82;
}

.series-card[data-position="center"] {
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: translateX(calc(-50% + var(--drag-center-x))) translateZ(90px) scale(1) rotateY(var(--drag-tilt));
  box-shadow: 0 42px 110px rgba(73, 51, 103, 0.24);
}

.series-card[data-position="left"] {
  z-index: 2;
  opacity: 0.4;
  filter: saturate(0.72) blur(0.2px);
  transform: translateX(calc(-50% - 330px + var(--drag-side-x))) translateZ(-90px) scale(0.82) rotateY(calc(13deg + var(--drag-tilt))) rotateZ(-2deg);
}

.series-card[data-position="right"] {
  z-index: 2;
  opacity: 0.4;
  filter: saturate(0.72) blur(0.2px);
  transform: translateX(calc(-50% + 330px + var(--drag-side-x))) translateZ(-90px) scale(0.82) rotateY(calc(-13deg + var(--drag-tilt))) rotateZ(2deg);
}

.series-card[data-position="hidden"] {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateZ(-240px) scale(0.72);
}

.product-carousel:not(.is-dragging) .series-card[data-position="center"]:hover {
  border-color: rgba(154, 118, 204, 0.62);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 48px 120px rgba(73, 51, 103, 0.3);
  transform: translateX(calc(-50% + var(--drag-center-x))) translateZ(116px) scale(1.015) rotateY(var(--drag-tilt));
}

.product-carousel.is-dragging .series-card {
  transition:
    transform 120ms cubic-bezier(0.2, 0.82, 0.22, 1),
    opacity 160ms var(--ease-out),
    filter 160ms var(--ease-out),
    box-shadow 160ms var(--ease-out),
    border-color 160ms var(--ease-out),
    background 160ms var(--ease-out);
}

.product-carousel.is-dragging .series-card[data-position="center"] {
  border-color: rgba(154, 118, 204, 0.7);
  box-shadow: 0 50px 128px rgba(73, 51, 103, 0.3);
}

.product-carousel.is-settling .series-card {
  transition:
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 620ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 620ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 360ms var(--ease-out),
    background 360ms var(--ease-out);
}

.series-card[data-position="left"]:hover,
.series-card[data-position="right"]:hover {
  opacity: 0.56;
  filter: saturate(0.9);
  cursor: pointer;
}

.series-kicker,
.series-image,
.series-copy {
  position: relative;
  z-index: 1;
}

.series-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 2px 0 14px;
  border-radius: 999px;
  background: rgba(238, 231, 248, 0.84);
  padding: 8px 12px;
  color: var(--purple-700);
  font-size: 12px;
  font-weight: 900;
}

.series-image {
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.76), rgba(203, 184, 231, 0.35)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(238, 231, 248, 0.62));
}

.series-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 520ms var(--ease-out);
}

.series-card[data-position="center"]:hover .series-image img {
  transform: scale(1.045);
}

.series-orbit {
  position: absolute;
  inset: 12% auto auto 8%;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(176, 147, 216, 0.28));
  backdrop-filter: blur(8px);
}

.series-copy {
  padding: 22px 8px 6px;
}

.series-copy>span {
  display: block;
  margin-bottom: 6px;
  color: var(--purple-700);
  font-size: 12px;
  font-weight: 900;
}

.series-copy p {
  margin-bottom: 16px;
}

.series-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.series-meta small {
  border: 1px solid rgba(107, 75, 153, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  padding: 7px 10px;
  color: var(--purple-900);
  font-weight: 800;
}

.carousel-controls {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.carousel-button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(107, 75, 153, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(73, 51, 103, 0.14);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out), box-shadow 200ms var(--ease-out), color 200ms var(--ease-out);
}

.carousel-button:hover {
  background: var(--purple-700);
  color: white;
  box-shadow: 0 18px 42px rgba(116, 81, 170, 0.28);
  transform: translateY(-3px) scale(1.04);
}

.product-carousel.is-keen {
  --slide-scale: 1;
  --slide-opacity: 1;
  --slide-rotate: 0deg;
  --slide-roll: 0deg;
  --slide-depth: 90px;
  --slide-lift: 0px;
}

.product-carousel.is-keen .carousel-stage {
  overflow: visible;
}

.product-carousel.is-keen .series-slide {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: start center;
  overflow: visible;
  z-index: var(--slide-z-index, 1);
  transform-style: preserve-3d;
}

.product-carousel.is-keen .series-card {
  position: relative;
  top: auto;
  left: auto;
  transform:
    translate3d(0, var(--slide-lift), var(--slide-depth)) scale(var(--slide-scale)) rotateY(var(--slide-rotate)) rotateZ(var(--slide-roll));
  opacity: var(--slide-opacity);
  transition:
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms var(--ease-out),
    background 260ms var(--ease-out);
}

.product-carousel.is-keen.is-dragging .series-card {
  transition:
    transform 70ms linear,
    opacity 90ms linear,
    filter 90ms linear,
    box-shadow 90ms linear;
}

.product-carousel.is-keen .series-card[data-position="center"] {
  filter: none;
  box-shadow: 0 46px 118px rgba(73, 51, 103, 0.26);
}

.product-carousel.is-keen .series-card[data-position="left"],
.product-carousel.is-keen .series-card[data-position="right"] {
  filter: saturate(0.76) blur(0.12px);
}

.product-carousel.is-keen .series-card[data-position="hidden"] {
  pointer-events: none;
}

.product-carousel.is-keen:not(.is-dragging) .series-card[data-position="center"]:hover {
  border-color: rgba(154, 118, 204, 0.64);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 52px 128px rgba(73, 51, 103, 0.31);
  transform:
    translate3d(0, calc(var(--slide-lift) - 4px), calc(var(--slide-depth) + 24px)) scale(calc(var(--slide-scale) + 0.012)) rotateY(var(--slide-rotate)) rotateZ(var(--slide-roll));
}

.product-carousel.is-keen .series-card[data-position="center"]:hover .series-image img {
  transform: scale(1.04);
}

.product-carousel.is-keen .keen-slider:not([data-keen-slider-disabled]) {
  align-content: start;
}

.product-tile {
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.product-image {
  position: relative;
  display: block;
  height: 290px;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 2px) calc(var(--radius-md) - 2px) 18px 18px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}

.product-tile:hover .product-image img {
  transform: scale(1.055);
}

.tile-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(73, 51, 103, 0.18);
  backdrop-filter: blur(12px);
}

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

.product-copy>span {
  display: block;
  margin-bottom: 8px;
  color: var(--purple-700);
  font-size: 12px;
  font-weight: 900;
}

.product-copy p {
  margin-bottom: 12px;
}

.product-channel,
.channel-note {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(116, 81, 170, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 7px 10px;
  color: var(--purple-900);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.channel-note {
  margin-top: 14px;
}

.metrics-band {
  padding: 0;
}

.metric-card {
  min-height: 190px;
}

.metric-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--purple-900);
  font-family: "Noto Serif SC", serif;
  font-size: 54px;
}

.metric-card span {
  font-weight: 900;
}

.odm-hero .page-lede {
  max-width: 720px;
}

.odm-hero-visual {
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 92px rgba(73, 51, 103, 0.18);
}

.odm-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.odm-proof-strip span {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(107, 75, 153, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
  font-size: 13px;
  box-shadow: 0 16px 38px rgba(73, 51, 103, 0.1);
  backdrop-filter: blur(18px);
}

.odm-proof-strip strong {
  color: var(--purple-900);
  font-family: "Noto Serif SC", serif;
  font-size: 22px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.partner-grid,
.capability-grid,
.deliverable-grid {
  display: grid;
  gap: 18px;
}

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

.partner-card,
.capability-card,
.category-capability,
.deliverable-card {
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.partner-card {
  min-height: 300px;
  padding: 28px;
}

.partner-card-head svg,
.capability-card>svg,
.deliverable-card>svg {
  color: var(--purple-700);
}

.partner-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.partner-card-head svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.partner-card-head span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  border-radius: 999px;
  background: rgba(159, 123, 208, 0.12);
  padding: 7px 11px;
  color: var(--purple-700);
  font-size: 12px;
  font-weight: 900;
}

.partner-card h3,
.capability-card h3 {
  margin-bottom: 12px;
}

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

.capability-card {
  min-height: 238px;
  padding: 26px;
}

.capability-card>svg,
.capability-card>img {
  margin-bottom: 42px;
}

.odm-process-grid .process-card {
  min-height: 286px;
}

.odm-process-grid .process-card>span {
  margin-bottom: 54px;
}

.category-capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.category-capability {
  min-height: 190px;
  padding: 22px;
}

.category-capability span {
  display: block;
  margin-bottom: 54px;
  color: var(--purple-700);
  font-weight: 900;
}

.odm-case-grid .case-card {
  min-height: 310px;
}

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

.deliverable-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.deliverable-card strong,
.deliverable-card span {
  display: block;
}

.deliverable-card strong {
  font-size: 21px;
}

.deliverable-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.odm-inquiry {
  align-items: stretch;
}

.odm-contact-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.odm-contact-points span {
  display: block;
  border-left: 3px solid rgba(116, 81, 170, 0.46);
  padding: 10px 14px;
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.42);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.timeline {
  position: relative;
  display: grid;
  gap: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(var(--purple-300), var(--purple-700), var(--purple-300));
}

.timeline-item {
  width: calc(50% - 36px);
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.timeline-item:nth-child(even) {
  margin-left: calc(50% + 36px);
}

.timeline-year {
  margin-bottom: 12px;
  color: var(--purple-700);
  font-family: "Noto Serif SC", serif;
  font-size: 34px;
  font-weight: 900;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 24px;
}

.philosophy-copy,
.manifesto {
  padding: 34px;
}

.manifesto blockquote {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.55;
}

.filter-bar,
.content-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 44px;
  border: 1px solid rgba(107, 75, 153, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  align-content: center;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--purple-700);
  color: white;
  box-shadow: 0 12px 26px rgba(116, 81, 170, 0.2);
  transform: translateY(-2px);
}

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

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

.process-card {
  min-height: 250px;
  padding: 22px;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.process-card>span {
  display: block;
  margin-bottom: 68px;
  color: var(--purple-700);
  font-weight: 900;
}

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

.certificate-card {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.certificate-card strong {
  display: block;
  margin: 12px 0 4px;
  font-size: 22px;
}

.certificate-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.certificate-card svg {
  color: var(--purple-700);
}

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

.case-card,
.team-card {
  position: relative;
  min-height: 280px;
  padding: 26px;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.case-card:hover,
.team-card:hover,
.support-shortcut:hover,
.policy-point:hover {
  border-color: rgba(154, 118, 204, 0.5);
  box-shadow: var(--shadow-hover);
  transform: translateY(-7px);
}

.case-card>span,
.team-card>span {
  display: block;
  margin-bottom: 52px;
  color: var(--purple-700);
  font-size: 12px;
  font-weight: 900;
}

.case-card strong {
  display: block;
  margin-top: 22px;
  color: var(--purple-700);
  font-size: 12px;
}

.team-card>svg {
  margin-bottom: 22px;
  color: var(--purple-700);
}

.team-card a,
.article-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--purple-700);
  font-size: 13px;
  font-weight: 900;
}

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

.inquiry-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: 34px;
  padding: 22px;
}

.inquiry-note>svg {
  color: var(--purple-700);
}

.inquiry-note strong {
  display: block;
  margin-bottom: 5px;
}

.inquiry-note p {
  margin-bottom: 0;
}

.article-card {
  min-height: 360px;
  padding: 0;
}

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

.article-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 2px) calc(var(--radius-md) - 2px) 16px 16px;
}

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

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--purple-700);
  font-size: 12px;
  font-weight: 900;
}

.editorial-hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(520px, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 44px;
}

.featured-story {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.featured-story>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out);
}

.featured-story::after {
  content: "";
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(transparent, rgba(34, 24, 50, 0.9));
}

.featured-story>div {
  position: relative;
  z-index: 1;
  padding: 34px;
  color: var(--purple-700);
}

.featured-story span,
.featured-story p {
  color: var(--purple-700);
}

.featured-story span {
  font-size: 12px;
  font-weight: 900;
}

.featured-story h2 {
  margin: 10px 0 12px;
  font-size: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-story p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-story strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.featured-story:hover img {
  transform: scale(1.04);
}

.content-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 12px;
}

.content-toolbar .content-filter {
  margin-bottom: 0;
}

.content-search {
  min-width: 250px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(107, 75, 153, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  padding: 0 15px;
}

.content-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 11px 0;
}

.content-search {
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
}

.content-search:focus-within {
  border-color: var(--purple-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(159, 123, 208, 0.12);
}

.empty-content {
  padding: 28px;
  text-align: center;
}

.content-list {
  display: grid;
  gap: 22px;
}

.content-entry {
  display: grid;
  grid-template-columns: minmax(320px, 0.65fr) minmax(340px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  min-height: 292px;
  overflow: hidden;
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), border-color 260ms var(--ease-out), background 260ms var(--ease-out);
}

.content-entry[hidden] {
  display: none;
}

.content-entry:hover {
  border-color: rgba(154, 118, 204, 0.58);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.content-entry-left {
  min-width: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}

.content-entry-left img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(87, 63, 119, 0.14);
  transition: transform 420ms var(--ease-out), filter 420ms var(--ease-out);
}

.content-entry:hover .content-entry-left img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.025);
}

.content-entry-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  border: 1px solid rgba(126, 82, 185, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  padding: 7px 11px;
  color: var(--purple-700);
  font-size: 12px;
  font-weight: 900;
}

.content-entry h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  /* 标题最多一行，超出省略 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-entry-left p {
  max-width: 24em;
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.75;
}

.content-entry-right {
  display: grid;
  align-content: center;
  gap: 10px;
  border-left: 1px solid rgba(126, 82, 185, 0.12);
  padding-left: 24px;
}

.content-entry-right p {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  border: 1px solid rgba(126, 82, 185, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  padding: 14px 16px;
  transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.content-entry-right p:hover {
  border-color: rgba(126, 82, 185, 0.26);
  background: rgba(255, 255, 255, 0.82);
  transform: translateX(4px);
}

.content-entry-right strong {
  color: var(--purple-700);
  font-size: 13px;
  font-weight: 900;
}

.content-entry-right span {
  color: var(--ink-muted);
  line-height: 1.65;
}

.content-entry-right .article-link {
  width: fit-content;
  margin-top: 4px;
}

.content-entry-body {
  align-content: center;
  gap: 14px;
}

.content-entry-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.9;
}

.content-entry-body p:hover {
  border-color: transparent;
  background: transparent;
  transform: none;
}

.article-reader {
  padding-top: 130px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--purple-700);
  font-weight: 900;
  text-decoration: none;
}

.article-back svg {
  width: 18px;
  height: 18px;
}

.article-reader-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: stretch;
  padding: 28px;
  overflow: hidden;
}

.article-reader-copy {
  align-self: center;
  padding: 24px;
}

.article-reader-copy h1 {
  max-width: 10em;
  margin: 12px 0 18px;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.08;
}

.article-reader-hero img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(73, 51, 103, 0.18);
}

.article-reader-body {
  /* max-width: 920px; */
  margin: 28px auto 0;
  padding: clamp(28px, 5vw, 58px);
}

.article-reader-body p {
  margin: 0 0 22px;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 2;
}

.article-reader-body p:first-child {
  color: var(--ink);
  font-size: 20px;
}

.article-reader-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
  margin: 0;
  box-shadow: 0 18px 42px rgba(87, 63, 119, 0.12);
}

/* 微信文章兼容：重置嵌套 section 的 height:0 / overflow:hidden / line-height:0 裁剪问题 */
.article-reader-body section {
  height: auto !important;
  min-height: 0 !important;
  max-width: 100% !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

.article-reader-body section[style*="overflow: hidden"],
.article-reader-body section[style*="overflow:hidden"] {
  overflow: visible !important;
}

.article-reader-body section[style*="height: 0px"],
.article-reader-body section[style*="height:0px"] {
  height: auto !important;
}

.article-reader-body section[style*="line-height: 0"],
.article-reader-body section[style*="line-height:0"] {
  line-height: 1.6 !important;
}

.article-reader-body img {
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
}

.article-reader-body a[linktype="image"] {
  display: block;
  max-width: 100%;
}

/* 微信文章 svg 动画占位：覆盖全局 svg 20x20 规则，避免压扁背景图 */
.article-reader-body svg {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
}

.article-reader-body h1,
.article-reader-body h2,
.article-reader-body h3,
.article-reader-body h4 {
  margin: 28px 0 14px;
  color: var(--ink);
  line-height: 1.3;
}

.article-reader-body ul,
.article-reader-body ol {
  padding-left: 24px;
  margin: 0 0 22px;
}

.article-reader-body li {
  margin-bottom: 8px;
}

.article-reader-body a {
  color: var(--purple-700);
  text-decoration: underline;
}

.article-reader-body blockquote {
  margin: 24px 0;
  padding: 16px 22px;
  border-left: 3px solid var(--purple-700);
  background: rgba(126, 82, 185, 0.08);
  border-radius: 0 14px 14px 0;
  color: var(--ink);
}

.article-reader-body iframe,
.article-reader-body video {
  max-width: 100%;
  border-radius: 18px;
  margin: 24px 0;
}

.article-reader-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.article-reader-body th,
.article-reader-body td {
  border: 1px solid rgba(126, 82, 185, 0.18);
  padding: 10px 14px;
}

.article-reader-body th {
  background: rgba(126, 82, 185, 0.08);
  color: var(--ink);
}

.article-reader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.article-source-card {
  margin-top: 34px;
  border: 1px solid rgba(126, 82, 185, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  padding: 22px 24px;
}

.article-source-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--purple-700);
  font-size: 13px;
  font-weight: 900;
}

.article-source-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.85;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 0 24px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button svg {
  transition: transform 180ms var(--ease-out);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition: max-height 260ms var(--ease-out), opacity 220ms var(--ease-out), padding 260ms var(--ease-out);
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
  padding: 0 24px 22px;
  opacity: 1;
}

.faq-item.is-open button svg {
  transform: rotate(45deg);
}

.contact-layout,
.inquiry-layout,
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.contact-layout {
  grid-template-areas:
    "message-heading ."
    "message-form message-location";
  row-gap: 24px;
  align-items: stretch;
}

.contact-message-heading {
  grid-area: message-heading;
  margin-bottom: 0;
}

.contact-layout .contact-form {
  grid-area: message-form;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--purple-900);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(107, 75, 153, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  padding: 13px 14px;
  outline: 0;
  color: var(--ink);
  transition: border 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--purple-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(159, 123, 208, 0.12);
}

.contact-form button[type="submit"] {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--purple-700);
  color: white;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(116, 81, 170, 0.28);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
}

.contact-form button[type="submit"]:hover {
  background: var(--purple-900);
  box-shadow: 0 20px 44px rgba(73, 51, 103, 0.24);
  transform: translateY(-2px);
}

.contact-form button:disabled {
  opacity: 0.72;
}

.contact-option {
  min-height: 180px;
}

.contact-option svg {
  margin-bottom: 36px;
  color: var(--purple-700);
}

.contact-hero,
.support-hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(520px, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 44px;
}

.contact-hero .contact-options {
  grid-template-columns: 1fr;
}

.support-shortcuts,
.policy-points {
  display: grid;
  gap: 14px;
}

.support-shortcut {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.support-shortcut>svg:first-child {
  width: 30px;
  height: 30px;
  color: var(--purple-700);
}

.support-shortcut span,
.support-shortcut strong,
.support-shortcut small {
  display: block;
}

.support-shortcut small {
  margin-top: 5px;
  color: var(--muted);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 52px;
  align-items: start;
}

.policy-heading {
  position: sticky;
  top: 120px;
}

.policy-point {
  min-height: 150px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 24px;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}

.policy-point>span {
  color: var(--purple-500);
  font-family: "Noto Serif SC", serif;
  font-size: 30px;
  font-weight: 900;
}

.policy-point p {
  margin-bottom: 0;
}

.map-panel {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82), rgba(207, 186, 236, 0.46)),
    var(--glass);
  text-align: center;
}

.location-image-panel {
  grid-area: message-location;
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  align-self: start;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.42);
  text-align: left;
}

.location-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.02);
  filter: saturate(0.92) contrast(0.96);
  transition: transform 520ms var(--ease-out), filter 520ms var(--ease-out);
}

.location-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(40, 26, 60, 0.04), rgba(31, 22, 47, 0.42)),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.38), transparent 34%);
  pointer-events: none;
}

.location-image-panel:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1);
}

.location-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 58px rgba(48, 34, 68, 0.2);
  backdrop-filter: blur(24px);
}

.location-overlay h2 {
  margin: 2px 0 5px;
  font-size: 36px;
}

.location-overlay p {
  margin-bottom: 0;
}

.location-pin {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--purple-700);
  color: white;
  box-shadow: 0 18px 44px rgba(116, 81, 170, 0.34);
}

.map-marker {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--purple-700);
  color: white;
  box-shadow: 0 18px 44px rgba(116, 81, 170, 0.34);
}

.map-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.location-overlay .map-meta {
  grid-column: 2;
  justify-content: flex-start;
  margin-top: 0;
}

.map-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  padding: 9px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.detail-media {
  min-height: 560px;
  padding: 16px;
}

.detail-media img {
  width: 100%;
  height: 528px;
  object-fit: cover;
  border-radius: 20px;
}

.detail-copy {
  align-self: center;
}

.detail-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.detail-notes>div {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.46);
}

.site-footer {
  width: min(calc(100% - 28px), 1360px);
  margin: 28px auto 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px);
  overflow: hidden;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
  padding: 44px;
}

.footer-brand img {
  width: 160px;
  margin-bottom: 20px;
}

.footer-brand p {
  white-space: pre-line;
}

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

.footer-links>div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 6px;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--purple-700);
}

.social-row {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  padding: 16px 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-legal span {
  margin-right: auto;
}

[data-reveal] {
  /* opacity: 0; */
  transform: translateY(22px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 112px 1fr auto;
  }

  .desktop-nav a {
    padding: 9px 8px;
  }

  .page-hero,
  .contact-layout,
  .inquiry-layout,
  .detail-hero {
    grid-template-columns: 1fr 1fr;
  }

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

  .series-card[data-position="left"] {
    transform: translateX(calc(-50% - 240px + var(--drag-side-x))) translateZ(-90px) scale(0.82) rotateY(calc(12deg + var(--drag-tilt))) rotateZ(-2deg);
  }

  .series-card[data-position="right"] {
    transform: translateX(calc(-50% + 240px + var(--drag-side-x))) translateZ(-90px) scale(0.82) rotateY(calc(-12deg + var(--drag-tilt))) rotateZ(2deg);
  }

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

  .capability-grid,
  .category-capability-grid,
  .deliverable-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .editorial-hero,
  .contact-hero,
  .support-hero {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 900px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  .site-header {
    grid-template-columns: 112px 1fr;
  }

  .desktop-nav,
  .language-switch {
    display: none;
  }

  .header-tools {
    justify-self: end;
  }

  .menu-button {
    display: inline-grid;
  }

  .mobile-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(28px);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: 14px;
    border-radius: 16px;
    background: rgba(238, 231, 248, 0.7);
    font-weight: 900;
    text-align: center;
  }

  .page-hero,
  .contact-layout,
  .inquiry-layout,
  .detail-hero,
  .philosophy-grid,
  .editorial-hero,
  .contact-hero,
  .support-hero,
  .policy-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-areas:
      "message-heading"
      "message-form"
      "message-location";
  }

  .location-image-panel {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .location-overlay {
    left: 18px;
    right: 18px;
    top: 22px;
  }

  .policy-heading {
    position: static;
  }

  .content-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .content-search {
    min-width: 0;
  }

  .content-entry {
    grid-template-columns: 1fr;
  }

  .article-reader-hero {
    grid-template-columns: 1fr;
  }

  .article-reader-hero img {
    min-height: 320px;
  }

  .content-entry-right {
    border-top: 1px solid rgba(126, 82, 185, 0.12);
    border-left: 0;
    padding-top: 20px;
    padding-left: 0;
  }

  .page-hero {
    padding-top: 56px;
  }

  .product-carousel {
    min-height: 690px;
  }

  .carousel-stage {
    min-height: 600px;
  }

  .series-card {
    width: min(500px, 72vw);
    min-height: 470px;
  }

  .series-card[data-position="left"] {
    transform: translateX(calc(-50% - 180px)) translateZ(-90px) scale(0.82) rotateY(10deg) rotateZ(-2deg);
  }

  .series-card[data-position="right"] {
    transform: translateX(calc(-50% + 180px)) translateZ(-90px) scale(0.82) rotateY(-10deg) rotateZ(2deg);
  }

  .value-grid,
  .metrics-grid,
  .article-grid,
  .advantage-grid,
  .contact-options,
  .spec-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .partner-grid,
  .capability-grid,
  .category-capability-grid,
  .deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline::before {
    left: 18px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    width: calc(100% - 48px);
    margin-left: 48px;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
    --radius-md: 20px;
    --radius-lg: 26px;
  }

  h1 {
    font-size: clamp(32px, 9.6vw, 46px);
  }

  h2 {
    font-size: 34px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 58px;
    padding: 8px 10px 8px 16px;
    border-radius: 22px;
  }

  .site-logo {
    width: 96px;
  }

  .header-tools .icon-button {
    display: none;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .mobile-nav {
    top: 64px;
    grid-template-columns: 1fr;
  }

  .page-main {
    padding-top: 82px;
  }

  .page-section {
    width: calc(100% - 28px);
    padding: 60px 0;
  }

  .page-hero {
    min-height: auto;
    gap: 24px;
    border-radius: 30px;
  }

  .hero-visual,
  .hero-visual img,
  .hero-visual video {
    min-height: 390px;
  }

  .hero-badge {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 16px;
  }

  .mirror-disc {
    width: 150px;
  }

  .value-grid,
  .featured-grid,
  .metrics-grid,
  .article-grid,
  .advantage-grid,
  .contact-options,
  .spec-grid,
  .product-grid,
  .certificate-grid,
  .process-grid,
  .partner-grid,
  .capability-grid,
  .category-capability-grid,
  .deliverable-grid,
  .detail-notes,
  .field-grid,
  .contact-team-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .odm-proof-strip {
    grid-template-columns: 1fr;
  }

  .content-entry {
    padding: 16px;
  }

  .content-entry-left img {
    height: 220px;
    margin-bottom: 16px;
  }

  .content-entry h3 {
    font-size: 28px;
  }

  .content-entry-right p {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .content-entry-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .article-reader {
    padding-top: 98px;
  }

  .article-reader-copy {
    padding: 8px;
  }

  .article-reader-copy h1 {
    max-width: none;
    font-size: 38px;
  }

  .article-reader-hero {
    padding: 16px;
  }

  .article-reader-hero img {
    min-height: 250px;
  }

  .article-reader-body p {
    font-size: 16px;
  }

  .article-reader-actions {
    flex-direction: column;
  }

  .partner-card,
  .capability-card,
  .category-capability,
  .deliverable-card {
    min-height: auto;
  }

  .product-carousel {
    min-height: 650px;
  }

  .carousel-stage {
    min-height: 570px;
  }

  .series-card {
    width: min(304px, 74vw);
    min-height: 450px;
    padding: 14px;
  }

  .series-card[data-position="center"] {
    transform: translateX(calc(-50% + var(--drag-center-x))) translateZ(64px) scale(1) rotateY(var(--drag-tilt));
  }

  .product-carousel:not(.is-dragging) .series-card[data-position="center"]:hover {
    transform: translateX(calc(-50% + var(--drag-center-x))) translateZ(72px) scale(1.01) rotateY(var(--drag-tilt));
  }

  .series-card[data-position="left"] {
    opacity: 0;
    pointer-events: none;
    transform: translateX(calc(-50% - 90px)) translateZ(-120px) scale(0.72) rotateY(6deg);
  }

  .series-card[data-position="right"] {
    opacity: 0;
    pointer-events: none;
    transform: translateX(calc(-50% + 90px)) translateZ(-120px) scale(0.72) rotateY(-6deg);
  }

  .series-image {
    min-height: 220px;
  }

  .series-image img {
    height: 230px;
  }

  .series-orbit {
    width: 150px;
  }

  .carousel-button {
    width: 48px;
    height: 48px;
  }

  .editorial-hero,
  .contact-hero,
  .support-hero {
    min-height: auto;
  }

  .featured-story {
    min-height: 470px;
  }

  .featured-story h2 {
    font-size: 34px;
  }

  .policy-point {
    grid-template-columns: 48px 1fr;
  }

  .product-image {
    height: 260px;
  }

  .footer-main {
    gap: 34px;
    padding: 28px 22px;
  }

  .footer-legal {
    flex-wrap: wrap;
    padding: 16px 22px;
  }

  .footer-legal span {
    width: 100%;
  }
}

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

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



/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(120, 80, 200, 0.8);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(120, 80, 200, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.back-to-top:hover {
  background: rgba(120, 80, 200, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(120, 80, 200, 0.4);
}

.back-to-top i {
  width: 24px;
  height: 24px;
}

/* Search page */
.search-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

.search-header {
  margin-bottom: 32px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  padding: 4px 4px 4px 20px;
  backdrop-filter: blur(12px);
}

.search-bar i {
  width: 20px;
  height: 20px;
  color: white;
  flex-shrink: 0;
}

.search-bar input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 16px;
  padding: 12px 8px;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-bar button {
  background: rgba(120, 80, 200, 0.8);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 10px 28px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-bar button:hover {
  background: rgba(120, 80, 200, 0.95);
}

.search-layout {
  display: flex;
  gap: 32px;
}

.search-filters {
  width: 180px;
  flex-shrink: 0;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 100px;
}

.filter-item {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.filter-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(120, 80, 200, 0.9);
}

.filter-item.is-active {
  background: rgba(120, 80, 200, 0.2);
  color: rgba(120, 80, 200, 0.9);
  font-weight: 600;
}

.search-results-list {
  flex: 1;
  min-width: 0;
}

.search-summary {
  font-size: 14px;
  margin-bottom: 24px;
}

.result-group {
  margin-bottom: 32px;
}

.result-page-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result-item {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 4px;
}

.result-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.result-title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(120, 80, 200, 0.9);
  margin-bottom: 4px;
}

.result-snippet {
  font-size: 13px;
  line-height: 1.6;
}

.result-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

.search-empty {
  text-align: center;
  padding: 80px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
}

.search-empty p+p {
  margin-top: 8px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .search-layout {
    flex-direction: column;
  }

  .search-filters {
    width: 100%;
  }

  .filter-group {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
  }
}

.search-highlight {
  background: #ffd700;
  color: #000;
  font-weight: 700;
  padding: 0 2px;
  border-radius: 2px;
}

/* Product detail */
.product_cont {
  padding: 40px 0;
}

.product_cont .container {
  display: flex;
  justify-self: center;
  margin-bottom: 40px;
}

.server_prod {
  display: flex;
  gap: 60px;
}

.server_prod .left:nth-child(2) {
  width: 60%;
  padding: 50px;
}

.prod_tit {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
}

.grey {
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 8px;
}

.prod_desc {
  padding-top: 15px;
}

.chanpingmiaoshu {
  margin-top: 20px;
}

.biaoqian {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.biaoqian p {
  background: rgba(120, 80, 200, 0.15);
  color: rgba(120, 80, 200, 0.85);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin: 0;
  border: 1px solid rgba(120, 80, 200, 0.1);
}

.prod_btn {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.prod_btn .btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 32px;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  color: #fff;
  background-color: var(--purple-300);
}

.prod_btn .btn-default {
  background: rgba(120, 80, 200, 0.8);
  color: #fff;
}

.prod_btn .btn-default:hover {
  background: rgba(120, 80, 200, 0.95);
  transform: translateY(-1px);
}

.detail_cont {
  margin-top: 30px;
}

.detail_cont div {
  display: flex;
  flex-direction: column;
  justify-self: center;
}

.detail_cont .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  font-weight: bold;
  color: #956cae;
  display: inline-block;
  margin-bottom: 30px;
}

.detail_img {
  line-height: 1.8;
}

.detail_img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 8px 0;
}

/* Magnifier */
.magnifier {
  position: relative;
  width: 600px;
  max-width: 100%;
}

.magnifier-container {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.images-cover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.images-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

.move-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  background: rgba(120, 80, 200, 0.1);
  border: 1px solid rgba(120, 80, 200, 0.35);
  cursor: crosshair;
  display: none;
  z-index: 3;
}

.magnifier-assembly {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.magnifier-btn {
  display: flex;
  gap: 6px;
}

.magnifier-btn span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  user-select: none;
  transition: all 0.2s;
}

.magnifier-btn span:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.magnifier-line {
  flex: 1;
  overflow: hidden;
}

.magnifier-line ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.3s;
}

.magnifier-line li {
  width: 80px;
  height: 80px;
  min-width: 68px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.25s;
}

.magnifier-line li.active {
  border-color: rgba(120, 80, 200, 0.6);
}

.small-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
}

.small-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.magnifier-view {
  position: absolute;
  top: 0;
  left: calc(100% + 20px);
  width: 550px;
  height: 550px;
  overflow: hidden;
  border-radius: 12px;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  z-index: 20;
}

.magnifier-view img {
  position: absolute;
  max-width: none;
}

@media (max-width: 1200px) {
  .server_prod {
    flex-direction: column;
  }

  .magnifier-view {
    display: none !important;
  }

  .magnifier-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .magnifier-container {
    height: 300px;
  }

  .magnifier-line li {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
}

/* Pagination */
.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  padding: 20px 0;
  background-color: var(--purple-300);
  border-radius: 10px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.page-btn:hover {
  background: rgba(120, 80, 200, 0.15);
  border-color: rgba(120, 80, 200, 0.3);
  color: #fff;
}

.page-btn.is-active {
  background: rgba(120, 80, 200, 0.2);
  border-color: rgba(120, 80, 200, 0.4);
  color: rgba(120, 80, 200, 0.9);
  font-weight: 600;
}

.page-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.page-total {
  margin-right: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  user-select: none;
}