:root {
  --deep: #03120f;
  --forest: #0b5a46;
  --green: #15936f;
  --mint: #5bd0ad;
  --lime: #bdf35e;
  --ink: #e7f4ef;
  --muted: #9ab0aa;
  --line: rgba(183, 255, 223, 0.16);
  --paper: #061613;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 16, 14, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id],
div[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: "Geist", "Avenir Next", "Microsoft YaHei", "PingFang SC", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(33, 151, 119, 0.2), transparent 34%),
    radial-gradient(circle at 88% 28%, rgba(70, 170, 210, 0.11), transparent 32%),
    linear-gradient(180deg, #061a16 0%, #071813 42%, #04100e 100%);
  overflow-x: hidden;
  position: relative;
}

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

button,
a {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 76px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(4, 29, 24, 0.94), rgba(4, 29, 24, 0.72));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 11, 9, 0.38);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 1 560px;
  min-width: 0;
}

.brand > span {
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: left center;
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  max-width: min(35vw, 460px);
  overflow: hidden;
  font-size: clamp(18px, 1.9vw, 29px);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  max-width: min(36vw, 500px);
  margin-top: 4px;
  overflow: hidden;
  color: rgba(222, 255, 236, 0.82);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  font-size: clamp(13px, 0.9vw, 16px);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 5px;
  white-space: nowrap;
  position: relative;
  transition: color 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 243, 94, 0.96), transparent);
  transform: scaleX(0);
  opacity: 0;
  transform-origin: center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-trigger::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.78;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  order: 2;
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger,
.nav-trigger:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nav-item:hover .nav-trigger::before,
.nav-item:focus-within .nav-trigger::before {
  transform: rotate(225deg) translate(-2px, -1px);
}

.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after,
.nav-trigger:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  z-index: 30;
  display: grid;
  width: max-content;
  min-width: 190px;
  max-width: min(310px, 92vw);
  padding: 10px;
  border: 1px solid rgba(204, 255, 232, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(4, 28, 24, 0.96), rgba(6, 57, 46, 0.94)),
    radial-gradient(circle at 16% 0, rgba(189, 243, 94, 0.12), transparent 36%);
  box-shadow:
    0 28px 78px rgba(0, 12, 10, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: -16px 0 auto;
  height: 18px;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 9px;
  color: rgba(234, 255, 247, 0.82);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  white-space: nowrap;
  transition:
    color 200ms ease,
    background 200ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown a::after {
  content: none;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: #fff;
  background: rgba(189, 243, 94, 0.12);
  transform: translateX(3px);
}

.nav-contact-dropdown {
  width: 248px;
  max-width: min(248px, 92vw);
}

.nav-wechat-card {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin: 8px 2px;
  padding: 13px;
  border: 1px solid rgba(213, 255, 236, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.nav-wechat-card img {
  width: 112px;
  height: 112px;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.nav-wechat-card strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.nav-wechat-card span {
  color: rgba(232, 255, 247, 0.66);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.nav-dropdown a.nav-map-link {
  justify-content: center;
  margin-top: 4px;
  color: #071813;
  background: var(--lime);
}

.nav-dropdown a.nav-map-link:hover,
.nav-dropdown a.nav-map-link:focus-visible {
  color: #071813;
  background: #d6ff7d;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.lang-toggle,
.menu-button {
  border: 1px solid rgba(200, 240, 90, 0.45);
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.lang-toggle {
  min-width: 68px;
  height: 44px;
  border-radius: 10px;
  font-weight: 900;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  justify-items: center;
  gap: clamp(26px, 4vw, 44px);
  padding: 124px clamp(22px, 7vw, 120px) 74px;
  overflow: hidden;
  color: var(--white);
  background: #04121a;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 12, 18, 0.8) 0%, rgba(3, 28, 29, 0.54) 36%, rgba(8, 62, 54, 0.22) 68%, rgba(8, 62, 54, 0.04) 100%),
    radial-gradient(circle at 18% 52%, rgba(92, 184, 170, 0.11), transparent 36%);
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(1, 18, 24, 0.16), rgba(2, 24, 20, 0.48)),
    linear-gradient(0deg, rgba(0, 9, 11, 0.78), rgba(0, 9, 11, 0.06) 42%, transparent 68%),
    radial-gradient(circle at 78% 30%, rgba(90, 190, 255, 0.16), transparent 36%);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #04121a url("assets/hero/factory-realistic.web.webp") center/cover no-repeat;
}

.interactive-hero {
  --hero-x: 0;
  --hero-y: 0;
  --hero-light-x: 62%;
  --hero-light-y: 42%;
  --hero-mode-rgb: 189, 243, 94;
  --hero-mode-muted-rgb: 91, 208, 173;
  perspective: 1400px;
}

.interactive-hero[data-hero-mode="distillation"] {
  --hero-mode-rgb: 189, 243, 94;
  --hero-mode-muted-rgb: 91, 208, 173;
}

.interactive-hero[data-hero-mode="solvent"] {
  --hero-mode-rgb: 89, 201, 222;
  --hero-mode-muted-rgb: 119, 236, 190;
}

.interactive-hero[data-hero-mode="manufacturing"] {
  --hero-mode-rgb: 255, 184, 92;
  --hero-mode-muted-rgb: 128, 221, 212;
}

.interactive-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 12, 12, 0.78) 0%, rgba(3, 28, 24, 0.48) 38%, rgba(8, 62, 54, 0.14) 70%, rgba(8, 62, 54, 0.04) 100%),
    radial-gradient(circle at var(--hero-light-x) var(--hero-light-y), rgba(var(--hero-mode-rgb), 0.15), transparent 28%),
    radial-gradient(circle at 18% 52%, rgba(92, 184, 170, 0.11), transparent 36%);
}

.interactive-hero::after {
  background:
    linear-gradient(180deg, rgba(1, 18, 24, 0.08), rgba(2, 24, 20, 0.42)),
    linear-gradient(0deg, rgba(0, 9, 11, 0.74), rgba(0, 9, 11, 0.04) 45%, transparent 70%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.3), transparent 44%, rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 78% 30%, rgba(90, 190, 255, 0.12), transparent 36%);
}

.interactive-hero .hero-media {
  isolation: isolate;
  background: #04121a;
}

.interactive-hero .hero-media::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 16%, rgba(208, 236, 229, 0.2), transparent 42%),
    radial-gradient(ellipse at 72% 48%, rgba(var(--hero-mode-rgb), 0.12), transparent 36%),
    linear-gradient(180deg, rgba(1, 18, 18, 0.08), transparent 38%, rgba(0, 10, 9, 0.62) 92%),
    linear-gradient(90deg, rgba(0, 10, 9, 0.48), transparent 28%, transparent 70%, rgba(0, 10, 9, 0.22));
  filter: blur(0.2px);
  opacity: 0.72;
  mix-blend-mode: soft-light;
  animation: heroMediaBlend 11s ease-in-out infinite alternate;
}

.hero-video {
  position: absolute;
  inset: -2%;
  z-index: 1;
  width: 104%;
  height: 104%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.06) brightness(0.82);
  opacity: 0.94;
  transform:
    translate3d(
      calc(var(--hero-x) * 0.12px),
      calc(var(--hero-y) * 0.08px),
      0
    )
    scale(1.025);
  transition: transform 180ms ease-out;
  will-change: transform;
}

.hero-photo-layer {
  position: absolute;
  inset: -3%;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate3d(
      calc(var(--hero-x) * var(--hero-depth, 0.02) * 1px),
      calc(var(--hero-y) * var(--hero-depth, 0.02) * 1px),
      0
    )
    scale(1.04);
  transition: transform 180ms ease-out;
  will-change: transform;
}

.hero-photo-layer-main {
  --hero-depth: 0.7;
  background-image: url("assets/new-content/2-关于我们/公司大门-图.web.webp");
  filter: saturate(1.05) contrast(1.02) brightness(0.96);
  opacity: 0.24;
  mix-blend-mode: overlay;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42) 54%, transparent 100%);
}

.hero-photo-layer-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 15, 13, 0.64), rgba(1, 15, 13, 0.2) 48%, rgba(1, 15, 13, 0.34)),
    linear-gradient(180deg, rgba(1, 14, 12, 0.12), rgba(1, 14, 12, 0.78));
}

.hero-scan-system {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.38;
  mix-blend-mode: screen;
}

.hero-scan-system span {
  position: absolute;
  left: -18%;
  width: 136%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 243, 94, 0.72), rgba(91, 208, 173, 0.48), transparent);
  filter: drop-shadow(0 0 12px rgba(91, 208, 173, 0.38));
  animation: industrialScan 7.2s linear infinite;
}

.hero-scan-system span:nth-child(1) {
  top: 31%;
}

.hero-scan-system span:nth-child(2) {
  top: 58%;
  animation-delay: -2.4s;
  opacity: 0.7;
}

.hero-scan-system span:nth-child(3) {
  top: 76%;
  animation-delay: -4.9s;
  opacity: 0.48;
}

.hero-cursor-light {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(circle at var(--hero-light-x) var(--hero-light-y), rgba(var(--hero-mode-rgb), 0.2), rgba(var(--hero-mode-muted-rgb), 0.08) 14%, transparent 33%);
  opacity: 0.72;
  mix-blend-mode: screen;
  transition: opacity 260ms ease;
}

.darkveil-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 56% 45%, rgba(104, 194, 159, 0.2), transparent 34%),
    radial-gradient(circle at 72% 26%, rgba(35, 113, 148, 0.16), transparent 30%),
    linear-gradient(135deg, #020a10, #051914 58%, #020b0d);
}

.interactive-hero .darkveil-container {
  z-index: 2;
  opacity: 0.24;
  mix-blend-mode: screen;
  background: transparent;
}

.darkveil-container::before,
.darkveil-container::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
}

.darkveil-container::before {
  z-index: 1;
  background:
    radial-gradient(circle at 30% 44%, rgba(116, 255, 187, 0.28), transparent 28%),
    radial-gradient(circle at 72% 34%, rgba(55, 147, 255, 0.24), transparent 26%),
    linear-gradient(115deg, transparent 20%, rgba(113, 238, 206, 0.18) 42%, transparent 66%);
  filter: blur(18px);
  opacity: 0.76;
  transform: translate3d(-7%, -2%, 0) scale(1.14);
  animation: darkVeilDrift 8.5s ease-in-out infinite alternate;
}

.darkveil-container::after {
  z-index: 2;
  background:
    linear-gradient(rgba(188, 255, 222, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 238, 206, 0.052) 1px, transparent 1px);
  background-size: 104px 104px, 104px 104px;
  opacity: 0.58;
  transform: translate3d(0, 0, 0);
  animation: darkVeilGrid 13s linear infinite;
}

.darkveil-canvas,
.darkveil-container canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(1.2) brightness(0.98) contrast(1.22);
}

.darkveil-fallback {
  background:
    radial-gradient(circle at 64% 42%, rgba(83, 190, 154, 0.24), transparent 35%),
    radial-gradient(circle at 34% 64%, rgba(25, 101, 88, 0.26), transparent 34%),
    linear-gradient(135deg, #020a10, #061913 58%, #020b0d);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background:
    linear-gradient(rgba(189, 243, 94, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 208, 173, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 38%, rgba(91, 208, 173, 0.08), transparent 36%),
    linear-gradient(180deg, transparent 66%, rgba(0, 10, 9, 0.86));
  background-size: 82px 82px, 82px 82px, auto;
  opacity: 0.34;
  mix-blend-mode: screen;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-side-nav {
  position: fixed;
  top: 50%;
  left: clamp(22px, 3.5vw, 58px);
  z-index: 48;
  display: grid;
  gap: 16px;
  transform: translateY(-50%);
  padding: 10px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(1, 17, 14, 0.74), rgba(5, 43, 35, 0.24));
  border: 1px solid rgba(183, 255, 223, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 44px rgba(0, 9, 8, 0.28);
}

.hero-side-nav::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(189, 243, 94, 0.36), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-side-nav a {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 8px 24px rgba(0, 0, 0, 0.24);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), background 620ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-side-nav a.is-active {
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(189, 243, 94, 0.1), 0 0 24px rgba(189, 243, 94, 0.3);
}

.hero-side-nav a.is-active::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(189, 243, 94, 0.22), transparent 62%);
  animation: sideNavPulse 1.9s ease-in-out infinite;
  pointer-events: none;
}

.hero-side-nav a:hover {
  transform: scale(1.2);
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(91, 208, 173, 0.12), 0 0 24px rgba(91, 208, 173, 0.32);
}

.hero-side-nav span {
  position: absolute;
  top: 50%;
  left: 28px;
  min-width: 86px;
  padding: 7px 10px;
  border: 1px solid rgba(183, 255, 223, 0.16);
  border-radius: 6px;
  color: rgba(239, 255, 248, 0.9);
  background: rgba(2, 17, 15, 0.72);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-side-nav a:hover span,
.hero-side-nav a:focus-visible span,
.hero-side-nav a.is-active span {
  opacity: 1;
  transform: translate(0, -50%);
}

.hero-content .eyebrow,
.hero h1,
.hero-subtitle,
.hero-content > p:not(.eyebrow):not(.hero-subtitle),
.hero-actions,
.hero-panel {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(10px);
  animation: heroReveal 960ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 {
  animation-delay: 180ms;
}

.hero-subtitle {
  animation-delay: 340ms;
}

.hero-content > p:not(.eyebrow):not(.hero-subtitle) {
  animation-delay: 500ms;
}

.hero-actions {
  animation-delay: 660ms;
}

.hero-panel {
  animation-delay: 760ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 1180px;
  position: relative;
  overflow: hidden;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "PingFang SC", "Microsoft YaHei", "Geist", sans-serif;
  font-size: clamp(40px, 4.35vw, 66px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-subtitle {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(238, 248, 244, 0.88);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.5;
  font-weight: 750;
  letter-spacing: 0;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.hero-content > p:not(.eyebrow):not(.hero-subtitle) {
  max-width: 860px;
  margin: 20px auto 0;
  color: rgba(241, 250, 246, 0.84);
  font-size: clamp(15px, 0.98vw, 17px);
  line-height: 1.82;
  font-weight: 650;
  text-wrap: balance;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-tech-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(620px, 100%);
  margin: 24px auto 0;
}

.hero-tech-rail button {
  min-height: 32px;
  min-width: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(189, 243, 94, 0.22);
  border-radius: 999px;
  color: rgba(238, 255, 247, 0.82);
  background:
    linear-gradient(135deg, rgba(189, 243, 94, 0.1), rgba(91, 208, 173, 0.05)),
    rgba(2, 17, 15, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    background 320ms ease,
    color 320ms ease,
    box-shadow 320ms ease;
}

.hero-tech-rail button:hover,
.hero-tech-rail button:focus-visible,
.hero-tech-rail button.is-active {
  color: #fff;
  border-color: rgba(var(--hero-mode-rgb), 0.48);
  background:
    linear-gradient(135deg, rgba(var(--hero-mode-rgb), 0.18), rgba(var(--hero-mode-muted-rgb), 0.08)),
    rgba(2, 17, 15, 0.48);
  box-shadow:
    0 0 0 1px rgba(var(--hero-mode-rgb), 0.08),
    0 14px 36px rgba(var(--hero-mode-rgb), 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1), border-color 700ms cubic-bezier(0.22, 1, 0.36, 1), background 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button[data-magnetic-button] {
  will-change: transform;
}

.button::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.32), transparent 56%);
  transform: translateX(-120%);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover::before {
  transform: translateX(120%);
}

.button.primary {
  color: #06251f;
  background: linear-gradient(135deg, var(--lime), var(--mint));
  box-shadow: 0 16px 42px rgba(112, 255, 190, 0.18);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary:hover {
  box-shadow: 0 20px 58px rgba(132, 255, 191, 0.28);
}

.button.ghost:hover {
  border-color: rgba(202, 255, 224, 0.74);
  box-shadow: 0 18px 44px rgba(94, 194, 178, 0.16);
}

.button.ghost.dark {
  border-color: rgba(20, 52, 47, 0.22);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
}

.hero-panel {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 18px 20px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(4, 22, 31, 0.6), rgba(8, 73, 60, 0.26));
  border: 1px solid rgba(183, 255, 223, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 26px 80px rgba(0, 18, 16, 0.36);
}

.hero-metric + .hero-metric {
  padding-top: 0;
  border-top: 0;
  border-left: 1px solid rgba(221, 255, 239, 0.14);
}

.hero-metric span {
  display: block;
  color: var(--lime);
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.hero-metric sup,
.stats-band sup {
  font-size: 0.45em;
  line-height: 0;
  vertical-align: super;
  margin-left: 1px;
}

.split-unit {
  display: inline-block;
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--split-index) * 42ms);
  will-change: transform, opacity, filter;
}

.split-line {
  display: block;
  white-space: nowrap;
}

.is-split-visible .split-unit {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.card-spotlight {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --spotlight-color: rgba(128, 221, 212, 0.18);
}

.card-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 72%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card-spotlight:hover::after,
.card-spotlight:focus-within::after {
  opacity: 0.74;
}

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

.hero-metric p {
  margin: 8px 0 0;
  color: rgba(238, 251, 246, 0.76);
  font-weight: 800;
  text-align: center;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes sideNavPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.06);
  }
}

@keyframes darkVeilDrift {
  0% {
    transform: translate3d(-9%, -4%, 0) scale(1.1) rotate(0deg);
    opacity: 0.58;
  }
  50% {
    transform: translate3d(4%, 3%, 0) scale(1.2) rotate(3deg);
    opacity: 0.84;
  }
  100% {
    transform: translate3d(10%, -2%, 0) scale(1.13) rotate(-2deg);
    opacity: 0.64;
  }
}

@keyframes industrialScan {
  0% {
    transform: translateX(-20%) skewX(-18deg);
    opacity: 0;
  }

  14%,
  72% {
    opacity: 1;
  }

  100% {
    transform: translateX(20%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes heroMediaBlend {
  0% {
    opacity: 0.58;
    transform: translate3d(-1.5%, -0.8%, 0) scale(1.02);
  }

  100% {
    opacity: 0.78;
    transform: translate3d(1.2%, 0.9%, 0) scale(1.045);
  }
}

@keyframes darkVeilGrid {
  to {
    transform: translate3d(104px, 104px, 0);
  }
}

.section {
  padding: clamp(70px, 8vw, 112px) clamp(22px, 7vw, 120px);
}

.home-flow {
  position: relative;
  overflow: hidden;
}

.home-flow::before {
  content: "";
  position: absolute;
  top: calc(100svh + 54px);
  bottom: 220px;
  left: clamp(32px, 4.8vw, 82px);
  z-index: 0;
  width: 2px;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(189, 243, 94, 0.6) 12%, rgba(91, 208, 173, 0.44) 64%, transparent),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0 8px, transparent 8px 18px);
  box-shadow: 0 0 26px rgba(91, 208, 173, 0.18);
  opacity: 0.8;
}

.home-latest-news {
  position: absolute;
  top: 94px;
  left: 50%;
  z-index: 4;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  width: min(1380px, calc(100% - clamp(32px, 8vw, 128px)));
  min-height: 76px;
  margin: 0;
  padding: 14px 18px 14px 22px;
  border: 1px solid rgba(142, 226, 194, 0.25);
  border-radius: 10px;
  background: rgba(3, 31, 26, 0.94);
  box-shadow: 0 22px 54px rgba(0, 18, 15, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.home-flow > .hero .hero-content {
  transform: translateY(64px);
}

.home-latest-news-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8ee2c2;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.home-latest-news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(189, 243, 94, 0.12), 0 0 18px rgba(189, 243, 94, 0.62);
}

.home-latest-news-title {
  min-width: 0;
  padding: 10px 0;
  overflow: hidden;
  border: 0;
  color: #f4fff8;
  background: transparent;
  font: inherit;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease;
}

.home-latest-news-title:hover,
.home-latest-news-title:focus-visible {
  color: var(--lime);
}

.home-latest-news-title:focus-visible,
.home-latest-news-all:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.home-latest-news-date {
  color: rgba(218, 239, 231, 0.7);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.home-latest-news-all {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(142, 226, 194, 0.38);
  border-radius: 8px;
  color: #dff9ed;
  background: rgba(109, 219, 177, 0.08);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.home-latest-news-all:hover {
  border-color: var(--lime);
  color: #052019;
  background: var(--lime);
}

html[data-theme="light"] .home-latest-news {
  border-color: rgba(12, 91, 71, 0.18);
  background: rgba(248, 253, 250, 0.96);
  box-shadow: 0 22px 54px rgba(16, 65, 52, 0.14);
}

html[data-theme="light"] .home-latest-news-label {
  color: #0a7558;
}

html[data-theme="light"] .home-latest-news-title {
  color: #073d31;
}

html[data-theme="light"] .home-latest-news-title:hover,
html[data-theme="light"] .home-latest-news-title:focus-visible {
  color: #008e68;
}

html[data-theme="light"] .home-latest-news-date {
  color: rgba(7, 61, 49, 0.62);
}

html[data-theme="light"] .home-latest-news-all {
  border-color: rgba(7, 94, 70, 0.25);
  color: #075e46;
  background: rgba(7, 117, 88, 0.06);
}

html[data-theme="light"] .home-latest-news-all:hover {
  border-color: #087457;
  color: #fff;
  background: #087457;
}

@media (max-width: 760px) {
  .home-latest-news {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .home-latest-news-all {
    grid-column: 2 / 4;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .home-latest-news {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    width: calc(100% - 28px);
    padding: 15px 16px 16px;
  }

  .home-flow > .hero .hero-content {
    transform: translateY(118px);
  }

  .home-latest-news-date {
    grid-column: 2;
    grid-row: 1;
    font-size: 12px;
  }

  .home-latest-news-title {
    grid-column: 1 / -1;
    display: -webkit-box;
    padding: 5px 0;
    overflow: hidden;
    font-size: 17px;
    text-overflow: initial;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .home-latest-news-all {
    grid-column: 1 / -1;
    min-height: 40px;
    padding-inline: 14px;
  }
}

.home-flow-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #02110f;
}

.home-flow-section::before {
  content: attr(data-flow-step);
  position: absolute;
  top: clamp(76px, 8.4vw, 118px);
  left: clamp(18px, 3.7vw, 68px);
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 243, 94, 0.42);
  border-radius: 50%;
  color: var(--lime);
  background:
    radial-gradient(circle at center, rgba(189, 243, 94, 0.16), rgba(2, 17, 15, 0.88) 58%),
    #02110f;
  box-shadow:
    0 0 0 8px rgba(189, 243, 94, 0.05),
    0 0 32px rgba(91, 208, 173, 0.18);
  font-size: 11px;
  font-weight: 900;
}

.home-flow-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 17, 15, 0.86) 0%, rgba(3, 25, 21, 0.58) 42%, rgba(3, 28, 24, 0.12) 100%),
    linear-gradient(180deg, rgba(2, 17, 15, 0.66) 0%, rgba(2, 17, 15, 0.28) 48%, rgba(2, 17, 15, 0.76) 100%),
    radial-gradient(circle at 78% 28%, rgba(189, 243, 94, 0.2), transparent 34%),
    var(--home-section-image) var(--home-section-position, center)/cover no-repeat;
  filter: saturate(1.08) contrast(1.08) brightness(1.16);
}

.home-flow-section .section-head,
.home-flow-section .section-lead,
.home-flow-section > :not(.section-head):not(.section-lead) {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

.home-section-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.home-statement {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 720px;
  margin-bottom: clamp(34px, 5vw, 72px);
  margin-inline: 0 auto;
  text-align: left;
}

.home-statement h2,
.home-delivery-copy h2 {
  margin: 0;
  max-width: 980px;
  color: #f4fff8;
  font-size: clamp(34px, 5.3vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-statement p,
.home-delivery-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 43em;
  color: rgba(215, 238, 229, 0.76);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 650;
  line-height: 1.82;
}

.home-capabilities,
.home-delivery,
.home-industries {
  isolation: isolate;
}

.home-capabilities {
  --home-section-image: url("assets/products/distillation.web.webp");
  --home-section-position: center 46%;
}

.home-delivery {
  --home-section-image: url("assets/about/smart-workshop.web.webp");
  --home-section-position: center;
}

.home-industries {
  --home-section-image: url("assets/new-content/5-业务领域/2-化工行业/尾气吸附.web.webp");
  --home-section-position: center;
}

.home-news {
  --home-section-image: url("assets/news/industry-carbon.web.webp");
  --home-section-position: center;
}

.home-contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #02110f;
}

.home-contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  --home-section-image: url("assets/new-content/2-关于我们/公司大门-图.web.webp");
  --home-section-position: center;
  background:
    linear-gradient(90deg, rgba(2, 17, 15, 0.86) 0%, rgba(3, 25, 21, 0.58) 42%, rgba(3, 28, 24, 0.12) 100%),
    linear-gradient(180deg, rgba(2, 17, 15, 0.66) 0%, rgba(2, 17, 15, 0.28) 48%, rgba(2, 17, 15, 0.76) 100%),
    radial-gradient(circle at 78% 28%, rgba(189, 243, 94, 0.2), transparent 34%),
    var(--home-section-image) var(--home-section-position, center)/cover no-repeat;
  filter: saturate(1.08) contrast(1.08) brightness(1.16);
}

.home-contact-section > * {
  position: relative;
  z-index: 1;
}

/* Homepage type scale: one calm hierarchy across all four main sections. */
.home-flow-section .eyebrow,
.home-contact-section .eyebrow {
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.12em;
}

.home-statement h2,
.home-flow-section .home-delivery-copy h2,
.home-contact-section .contact-card h2 {
  max-width: 620px;
  margin-inline: 0 auto;
  font-size: 46px;
  line-height: 1.18;
  font-weight: 920;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.home-statement p,
.home-flow-section .home-delivery-copy p:not(.eyebrow),
.home-contact-section .contact-card p {
  max-width: 42em;
  margin: 16px 0 0;
  color: rgba(232, 242, 250, 0.82);
  font-size: 17px;
  line-height: 1.76;
  font-weight: 700;
  text-wrap: balance;
}

.home-flow-section .capability-tile strong,
.home-flow-section .delivery-track strong,
.home-flow-section .industry-strip span,
.home-news .news-card h3 {
  font-size: 30px;
  line-height: 1.16;
  font-weight: 950;
}

.home-flow-section .capability-tile p,
.home-news .news-card p {
  font-size: 16px;
  line-height: 1.72;
  font-weight: 700;
}

.home-news .news-card h3 {
  min-height: 92px;
  font-size: 23px;
  line-height: 1.34;
}

.home-news .news-card p {
  min-height: 104px;
  font-size: 15px;
}

.capability-lane {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(180px, 0.9fr));
  gap: 1px;
  border: 1px solid rgba(158, 235, 199, 0.15);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(167, 226, 201, 0.12);
  box-shadow: 0 28px 90px rgba(0, 15, 13, 0.24);
}

.capability-tile {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 29vw, 410px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: clamp(24px, 3vw, 42px);
  color: #f4fff8;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%),
    radial-gradient(circle at 20% 12%, rgba(189, 243, 94, 0.11), transparent 34%),
    rgba(2, 21, 18, 0.76);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), background 360ms ease;
}

.capability-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 17, 15, 0.12), rgba(2, 17, 15, 0.38) 46%, rgba(2, 17, 15, 0.9)),
    radial-gradient(circle at 18% 18%, rgba(189, 243, 94, 0.1), transparent 34%);
}

.capability-tile img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.02);
  transition: transform 780ms cubic-bezier(0.22, 1, 0.36, 1), opacity 360ms ease;
}

.capability-tile.is-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 42%),
    linear-gradient(145deg, rgba(17, 110, 83, 0.72), rgba(3, 31, 27, 0.88));
}

.capability-tile:hover,
.capability-tile:focus-visible {
  transform: translateY(-6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), transparent 42%),
    radial-gradient(circle at 20% 12%, rgba(189, 243, 94, 0.17), transparent 34%),
    rgba(8, 48, 40, 0.88);
}

.capability-tile:hover img,
.capability-tile:focus-visible img {
  opacity: 0.58;
  transform: scale(1.08);
}

.capability-tile span,
.delivery-track span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.capability-tile span,
.capability-tile strong,
.capability-tile p {
  position: relative;
  z-index: 2;
}

.capability-tile strong {
  font-size: clamp(28px, 3.8vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.capability-tile p {
  margin: 0;
  max-width: 22em;
  color: rgba(224, 244, 236, 0.78);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 650;
  line-height: 1.72;
}

.home-delivery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.home-delivery-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  max-width: 720px;
  margin-inline: 0 auto;
  text-align: left;
  justify-items: start;
}

.home-delivery-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.delivery-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: min(1080px, 100%);
  margin-inline: auto;
  border-top: 1px solid rgba(158, 235, 199, 0.18);
  border-bottom: 1px solid rgba(158, 235, 199, 0.18);
  background: rgba(158, 235, 199, 0.12);
}

.delivery-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 34px;
  right: 34px;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), rgba(91, 208, 173, 0.18));
  opacity: 0.45;
  transform: translateY(-50%);
}

.delivery-track a {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 132px;
  padding: 24px 18px;
  color: #f4fff8;
  background: rgba(2, 17, 15, 0.48);
  border-top: 0;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), color 300ms ease;
}

.delivery-track a:first-child {
  border-top: 0;
}

.delivery-track a:hover,
.delivery-track a:focus-visible {
  color: var(--lime);
  transform: translateY(-4px);
}

.delivery-track strong {
  font-size: 24px;
  line-height: 1.16;
  text-align: center;
}

.industry-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 1fr 0.9fr;
  gap: 12px;
  min-height: clamp(300px, 36vw, 520px);
}

.industry-strip a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 300px;
  padding: clamp(22px, 3vw, 36px);
  border-radius: 8px;
  color: #fff;
  background: #08251f;
}

.industry-strip a:nth-child(even) {
  margin-top: clamp(32px, 5vw, 82px);
}

.industry-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 360ms ease;
}

.industry-strip a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 26%, rgba(2, 17, 15, 0.9));
}

.industry-strip a:hover img,
.industry-strip a:focus-visible img {
  opacity: 0.78;
  transform: scale(1.06);
}

.industry-strip span {
  position: relative;
  z-index: 1;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 950;
  line-height: 1;
}

.profile-grid,
.qualification-layout,
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.profile-copy {
  display: grid;
  gap: 20px;
  color: #38504b;
  font-size: 18px;
  line-height: 2;
}

.profile-copy p {
  margin: 0;
}

.profile-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.profile-showcase-card {
  display: grid;
  grid-template-rows: minmax(240px, 0.82fr) 1fr;
  min-height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(190, 255, 226, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(8, 31, 29, 0.88), rgba(9, 61, 50, 0.42)),
    radial-gradient(circle at 18% 0%, rgba(151, 255, 98, 0.12), transparent 32%);
  box-shadow: 0 24px 70px rgba(0, 14, 12, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 360ms ease, box-shadow 360ms ease;
}

.profile-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 255, 92, 0.36);
  box-shadow: 0 34px 88px rgba(0, 20, 16, 0.48), 0 0 0 1px rgba(180, 255, 92, 0.08) inset;
}

.profile-showcase-card.is-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  grid-template-rows: auto;
}

.profile-showcase-card figure {
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  background: rgba(3, 18, 16, 0.58);
}

.profile-showcase-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 640ms cubic-bezier(0.22, 1, 0.36, 1), filter 640ms ease;
}

.profile-showcase-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.profile-showcase-card > div {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 3.2vw, 44px);
}

.profile-showcase-card span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-showcase-card h3 {
  margin: 0;
  color: #effff8;
  font-size: clamp(26px, 2.8vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.profile-showcase-card p {
  margin: 0;
  color: rgba(223, 242, 235, 0.76);
  font-size: 16px;
  line-height: 1.88;
}

.manufacturing-motion-section {
  position: relative;
  overflow: hidden;
}

.manufacturing-motion-section::after {
  content: "";
  position: absolute;
  inset: 10% -18% auto auto;
  width: 44vw;
  height: 44vw;
  min-width: 420px;
  min-height: 420px;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255, 184, 92, 0.1), transparent 62%),
    radial-gradient(circle at 30% 40%, rgba(91, 208, 173, 0.12), transparent 42%);
  filter: blur(6px);
}

.manufacturing-motion-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.manufacturing-video-card {
  position: relative;
  min-height: clamp(360px, 44vw, 560px);
  border: 1px solid rgba(255, 184, 92, 0.18);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(2, 17, 15, 0.78);
  box-shadow: 0 34px 100px rgba(0, 14, 12, 0.44);
  isolation: isolate;
}

.manufacturing-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 32%, rgba(1, 12, 10, 0.72)),
    linear-gradient(90deg, rgba(1, 12, 10, 0.38), transparent 44%, rgba(1, 12, 10, 0.16)),
    linear-gradient(rgba(255, 184, 92, 0.055) 1px, transparent 1px);
  background-size: auto, auto, 100% 42px;
}

.inline-loop-video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.08) brightness(0.84);
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.manufacturing-video-card:hover .inline-loop-video {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.14) brightness(0.92);
}

.manufacturing-video-card figcaption {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 3;
  display: grid;
  gap: 8px;
}

.manufacturing-video-card figcaption span {
  width: max-content;
  padding: 7px 9px;
  border: 1px solid rgba(255, 184, 92, 0.34);
  border-radius: 6px;
  color: #ffd299;
  background: rgba(1, 15, 13, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.manufacturing-video-card figcaption strong {
  max-width: 620px;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1.05;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.48);
  text-wrap: balance;
}

.manufacturing-flow-grid {
  display: grid;
  gap: 14px;
}

.manufacturing-flow-grid article {
  display: grid;
  align-content: center;
  min-height: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(183, 255, 223, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(8, 31, 29, 0.82), rgba(9, 61, 50, 0.42)),
    rgba(1, 15, 13, 0.68);
}

.manufacturing-flow-grid article > span {
  width: 38px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 184, 92, 0.28);
  border-radius: 6px;
  color: #ffd299;
  background: rgba(255, 184, 92, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.manufacturing-flow-grid h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.15;
}

.manufacturing-flow-grid p {
  margin: 12px 0 0;
  color: rgba(222, 242, 235, 0.68);
  line-height: 1.75;
  font-weight: 700;
}

.media-card,
.qualification-image,
.product-layout figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.media-card img,
.qualification-image img,
.product-layout figure img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.stats-band div {
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.86);
  min-width: 0;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  color: var(--green);
  font-size: clamp(30px, 3.5vw, 56px);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}

.stats-band span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.qualification-layout {
  grid-template-columns: repeat(2, minmax(0, 0.72fr)) minmax(340px, 1.25fr);
}

.qualification-summary,
.cert-grid,
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.qualification-summary + .section-more {
  margin-top: 26px;
}

.feature-card,
.business-grid article,
.product-cards article {
  min-height: 240px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 34px rgba(5, 39, 34, 0.06);
}

.flip-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  min-height: 260px;
}

.flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(5, 39, 34, 0.06);
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  animation: autoFaceFront 8s ease-in-out infinite;
  animation-fill-mode: both;
}

.flip-card .flip-face {
  display: grid;
  align-content: center;
  padding: clamp(24px, 3vw, 34px);
}

.flip-back {
  animation-name: autoFaceBack;
}

.flip-card .flip-back {
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(6, 31, 27, 0.94), rgba(14, 94, 76, 0.88));
}

.flip-card .flip-back img {
  width: 100%;
  height: 178px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
}

.flip-card .flip-back span {
  color: var(--white);
  font-weight: 900;
  line-height: 1.55;
}

.qualification-summary .flip-card:nth-child(2) .flip-face {
  animation-delay: 1.15s;
}

.qualification-summary .flip-card:nth-child(3) .flip-face {
  animation-delay: 2.3s;
}

@keyframes autoFaceFront {
  0%,
  42%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  50%,
  92% {
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
  }
}

@keyframes autoFaceBack {
  0%,
  42%,
  100% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  50%,
  92% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flip-face {
    animation: none;
  }

  .hero-side-nav a.is-active::after {
    animation: none;
  }

  .flip-front {
    opacity: 1;
    transform: none;
  }

  .flip-back {
    display: none;
  }

  .hero-content .eyebrow,
  .hero h1,
  .hero-subtitle,
  .hero-content > p:not(.eyebrow),
  .hero-actions,
  .hero-panel {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .hero-photo-layer,
  .hero-video,
  .interactive-hero .hero-media::before,
  .inline-loop-video,
  .hero-scan-system span,
  .home-reveal,
  .home-interactive-card {
    transition: none;
    animation: none;
    transform: none;
    filter: none;
  }

  .home-reveal {
    opacity: 1;
  }
}

.feature-card h3,
.business-grid h3,
.product-list h3,
.product-cards h3 {
  margin: 0 0 16px;
  color: var(--forest);
  font-size: clamp(22px, 2vw, 30px);
}

.feature-card p,
.business-grid p,
.product-list p,
.product-cards p {
  margin: 0;
  color: #4c625d;
  line-height: 1.8;
  font-size: 16px;
}

.business-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 31, 27, 0.94), rgba(12, 85, 69, 0.88)),
    url("assets/products/gac.web.webp") center/cover no-repeat;
}

.business-section .section-head h2 {
  color: var(--white);
}

.business-intro {
  max-width: 1040px;
  margin: -10px 0 26px;
}

.business-intro h3 {
  max-width: 900px;
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.18;
}

.business-intro p {
  max-width: 1060px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

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

.business-grid article {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.business-grid span {
  display: inline-flex;
  color: var(--lime);
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 28px;
}

.business-grid h3,
.business-grid p {
  color: var(--white);
}

.product-layout {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.86fr);
}

.product-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.product-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--green);
  background: var(--white);
  color: var(--forest);
  font-weight: 800;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 246, 239, 0.86)),
    url("assets/products/distillation.web.webp") center/cover no-repeat;
  box-shadow: 0 18px 46px rgba(5, 39, 34, 0.08);
}

.product-intro h3 {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--forest);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.08;
}

.product-intro p {
  max-width: 840px;
  margin: 0;
  color: #405a54;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.product-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-tags li {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 133, 104, 0.22);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

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

.product-flow-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(5, 39, 34, 0.07);
}

.product-flow-card figure {
  margin: 0;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #f8fbf9;
}

.product-flow-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.product-flow-card > div {
  padding: clamp(22px, 2.4vw, 30px);
}

.product-flow-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-flow-card h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.2;
}

.product-flow-card p {
  margin: 0 0 18px;
  color: #435b56;
  font-size: 16px;
  line-height: 1.82;
}

.product-flow-card dl {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px 12px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-flow-card dt,
.product-flow-card dd {
  margin: 0;
  line-height: 1.7;
}

.product-flow-card dt {
  color: var(--forest);
  font-weight: 1000;
}

.product-flow-card dd {
  color: var(--muted);
  font-weight: 700;
}

.gallery-section {
  background: #eaf4ee;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.factory-carousel {
  position: relative;
  min-height: min(620px, 68vw);
  padding: clamp(18px, 3vw, 34px) clamp(48px, 6vw, 86px) 54px;
  border: 1px solid rgba(183, 255, 223, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 12%, rgba(128, 221, 212, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(4, 18, 16, 0.94), rgba(10, 67, 53, 0.46));
  box-shadow: 0 34px 96px rgba(0, 11, 9, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}

.factory-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(183, 255, 223, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(183, 255, 223, 0.028) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.4;
}

.factory-carousel-viewport {
  position: relative;
  height: clamp(360px, 42vw, 520px);
  perspective: 1200px;
  overflow: hidden;
  border-radius: 12px;
  pointer-events: none;
}

.factory-carousel-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.factory-carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(620px, 62vw);
  height: min(440px, 40vw);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(190, 255, 226, 0.18);
  border-radius: 12px;
  background: #071915;
  box-shadow: 0 30px 78px rgba(0, 9, 8, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform:
    translate(-50%, -50%)
    translateX(calc(var(--offset) * min(48vw, 430px)))
    translateZ(var(--z))
    rotateY(var(--rotate))
    scale(var(--scale));
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity, filter;
  transition:
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.factory-carousel-card.is-active,
.factory-carousel-card.is-near {
  opacity: 1;
}

.factory-carousel-card.is-active {
  pointer-events: none;
}

.factory-carousel-card.is-far {
  opacity: 0;
}

.factory-carousel-card.is-active {
  box-shadow: 0 40px 96px rgba(0, 9, 8, 0.56), 0 0 54px rgba(128, 221, 212, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.factory-carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06) brightness(0.82);
  transform: scale(1.015);
  transition: transform 1600ms cubic-bezier(0.22, 1, 0.36, 1), filter 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.factory-carousel-card.is-active img {
  filter: saturate(0.96) contrast(1.08) brightness(0.9);
  transform: scale(1);
}

.factory-carousel-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 7px;
  padding: 28px;
  color: #f2fff9;
  background: linear-gradient(180deg, transparent, rgba(2, 18, 15, 0.92));
}

.factory-carousel-card figcaption span {
  width: max-content;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.factory-carousel-card figcaption strong {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
}

.factory-carousel-card figcaption p {
  max-width: 38em;
  margin: 0;
  color: rgba(235, 250, 243, 0.78);
  font-weight: 700;
  line-height: 1.7;
}

.factory-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 60;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(183, 255, 223, 0.28);
  border-radius: 50%;
  background: rgba(3, 20, 17, 0.78);
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), border-color 700ms cubic-bezier(0.22, 1, 0.36, 1), background 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.factory-carousel-control::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-top: 2px solid #eafff7;
  border-right: 2px solid #eafff7;
}

.factory-carousel-control.prev {
  left: clamp(16px, 3vw, 34px);
}

.factory-carousel-control.prev::before {
  transform: rotate(-135deg);
}

.factory-carousel-control.next {
  right: clamp(16px, 3vw, 34px);
}

.factory-carousel-control.next::before {
  transform: rotate(45deg);
}

.factory-carousel-control:hover {
  border-color: rgba(189, 243, 94, 0.6);
  background: rgba(17, 132, 96, 0.72);
  transform: translateY(-50%) scale(1.06);
}

.factory-carousel-control:active {
  transform: translateY(-50%) scale(0.98);
}

.factory-carousel-indicators {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 60;
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(0, 23, 18, 0.28);
  pointer-events: auto;
  transform: translateX(-50%);
}

.factory-carousel-indicators button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(238, 255, 248, 0.42);
  cursor: pointer;
  transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1), background 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.factory-carousel-indicators button.is-active {
  width: 48px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(189, 243, 94, 0.42);
}

.gallery-carousel-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  background: #dfe9e3;
  box-shadow: var(--shadow);
}

.gallery-carousel-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1600ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-carousel-card img.is-switching {
  opacity: 0;
  transform: scale(1.025);
}

.gallery-carousel-card img.gallery-next {
  opacity: 0;
  transform: scale(1.028);
  z-index: 2;
}

.gallery-carousel-card img.gallery-next.is-visible {
  opacity: 1;
  transform: scale(1);
}

.with-action {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.news-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.news-tabs button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  color: var(--forest);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.news-tabs button.is-active {
  color: var(--white);
  background: var(--green);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-section {
  scroll-margin-top: 96px;
}

.news-pagination-shell {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 40px;
}

.news-pagination-shell[hidden] {
  display: none;
}

.news-pagination-status {
  margin: 0;
  color: rgba(223, 242, 235, 0.72);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.news-pagination button,
.news-pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(183, 255, 223, 0.18);
  border-radius: 8px;
  color: #eefdf7;
  background: rgba(2, 17, 15, 0.58);
  font: inherit;
  font-weight: 800;
}

.news-pagination button {
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.news-pagination button:hover:not(:disabled),
.news-pagination button:focus-visible {
  border-color: rgba(103, 215, 178, 0.7);
  background: rgba(18, 136, 100, 0.3);
}

.news-pagination button:focus-visible {
  outline: 3px solid rgba(103, 215, 178, 0.32);
  outline-offset: 2px;
}

.news-pagination button:active:not(:disabled) {
  transform: scale(0.97);
}

.news-pagination button.is-current {
  color: #ffffff;
  border-color: transparent;
  background: #128864;
}

.news-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.news-pagination-direction {
  min-width: 82px !important;
}

.news-pagination-ellipsis {
  min-width: 30px;
  padding: 0;
  border-color: transparent;
  background: transparent;
}

.news-empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 64px 24px;
  border: 1px dashed rgba(183, 255, 223, 0.2);
  border-radius: 8px;
  color: rgba(223, 242, 235, 0.72);
  text-align: center;
}

html[data-theme="light"] .news-pagination-status,
html[data-theme="light"] .news-empty-state {
  color: #526a62;
}

html[data-theme="light"] .news-pagination button,
html[data-theme="light"] .news-pagination-ellipsis {
  color: #164b3c;
  border-color: rgba(16, 105, 80, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .news-pagination button:hover:not(:disabled),
html[data-theme="light"] .news-pagination button:focus-visible {
  border-color: rgba(18, 136, 100, 0.5);
  background: #eef8f3;
}

html[data-theme="light"] .news-pagination button.is-current {
  color: #ffffff;
  border-color: #128864;
  background: #128864;
}

html[data-theme="light"] .news-pagination-ellipsis {
  border-color: transparent;
  background: transparent;
}

@media (max-width: 720px) {
  .news-pagination-shell {
    margin-top: 30px;
  }

  .news-pagination {
    gap: 6px;
  }

  .news-pagination button,
  .news-pagination-ellipsis {
    min-width: 40px;
    min-height: 40px;
    padding-inline: 9px;
  }

  .news-pagination-direction {
    min-width: 72px !important;
  }
}

.home-news-grid {
  grid-template-columns: repeat(4, 1fr);
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 39, 34, 0.07);
  cursor: pointer;
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #dfe9e3;
}

.news-card div {
  padding: 22px;
}

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

.news-card h3 {
  min-height: 66px;
  margin: 12px 0;
  font-size: 21px;
  line-height: 1.45;
}

.news-card p {
  min-height: 78px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.news-card button {
  margin-top: 18px;
  border: 0;
  color: var(--forest);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.contact-section {
  padding-top: 0;
}

.news-page,
.inquiry-page,
.qual-page,
.profile-page,
.products-page,
.innovation-page,
.industries-page,
.solutions-page {
  background: #f4faf6;
}

.news-hero,
.inquiry-hero,
.qual-hero,
.profile-hero,
.products-hero {
  padding: 150px clamp(22px, 7vw, 120px) 80px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 23, 19, 0.92), rgba(14, 94, 76, 0.72)),
    url("assets/hero/factory-realistic.web.webp") center/cover no-repeat;
}

.news-hero h1,
.inquiry-hero h1,
.qual-hero h1,
.profile-hero h1,
.products-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1;
}

.news-hero p:not(.eyebrow),
.inquiry-hero p:not(.eyebrow),
.qual-hero p:not(.eyebrow),
.profile-hero p:not(.eyebrow),
.products-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
}

.profile-detail-section,
.product-page-section {
  padding-top: 48px;
}

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

.profile-detail-grid article,
.history-timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(5, 39, 34, 0.07);
}

.profile-detail-grid article {
  min-height: 290px;
  padding: clamp(26px, 3.4vw, 42px);
}

.profile-detail-grid h2 {
  margin: 14px 0 16px;
  color: var(--forest);
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1.15;
}

.profile-detail-grid p:not(.eyebrow) {
  margin: 0;
  color: #415953;
  font-size: 17px;
  line-height: 1.92;
  font-weight: 700;
}

.profile-stats {
  margin-top: 0;
}

.history-section {
  padding-top: 48px;
}

.history-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.history-timeline article {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items: start;
  padding: clamp(20px, 2.6vw, 30px);
}

.history-timeline strong {
  color: var(--green);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}

.history-timeline p {
  margin: 0;
  color: #415953;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.78;
}

.inquiry-section {
  padding-top: 42px;
}

.inquiry-form {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

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

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-weight: 900;
}

.inquiry-form em {
  margin-left: 4px;
  color: #d84f3a;
  font-style: normal;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 52, 47, 0.18);
  border-radius: 6px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfdfb;
  outline: 0;
}

.inquiry-form textarea {
  resize: vertical;
  line-height: 1.7;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 133, 104, 0.12);
}

.full-field {
  margin-top: 18px;
}

.required-note,
.form-status {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.cert-section {
  padding-bottom: 48px;
}

.cert-card,
.capability-grid article,
.lab-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(5, 39, 34, 0.07);
}

.cert-card {
  padding: clamp(24px, 3vw, 34px);
}

.cert-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(200, 240, 90, 0.42);
  font-size: 13px;
  font-weight: 900;
}

.cert-card h3,
.lab-panel h3,
.capability-grid h3 {
  margin: 18px 0 12px;
  color: var(--forest);
  font-size: clamp(22px, 2vw, 30px);
}

.cert-card p,
.lab-panel p,
.capability-grid p,
.lab-panel li {
  margin: 0;
  color: #4c625d;
  font-size: 16px;
  line-height: 1.85;
}

.cert-card figure {
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid rgba(20, 52, 47, 0.12);
  border-radius: 8px;
  background: #f8fbf8;
}

.cert-card img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  padding: 12px;
}

.lab-section {
  padding-top: 48px;
  background:
    linear-gradient(135deg, rgba(6, 31, 27, 0.94), rgba(12, 85, 69, 0.86)),
    url("assets/hero/factory-realistic.web.webp") center/cover no-repeat;
}

.lab-section .section-head h2 {
  color: var(--white);
}

.lab-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.lab-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lab-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.lab-panel {
  padding: clamp(26px, 4vw, 46px);
}

.lab-panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.lab-panel li {
  position: relative;
  padding-left: 22px;
}

.lab-panel li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.lab-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.lab-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(5, 39, 34, 0.12);
}

.lab-gallery img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  padding: 12px;
}

.lab-gallery figcaption {
  padding: 0 18px 18px;
  color: var(--forest);
  font-weight: 900;
}

.capability-grid article {
  min-height: 190px;
  padding: clamp(24px, 3vw, 34px);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #0a3a32, #168568);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 60px);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.contact-card .button {
  margin-top: 18px;
}

.contact-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info-panel {
  display: grid;
  gap: 20px;
}

.contact-card li {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-card strong {
  color: var(--lime);
}

.contact-wechat {
  display: grid;
  grid-template-columns: 116px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-wechat img {
  width: 116px;
  height: 116px;
  padding: 7px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.contact-wechat div {
  display: grid;
  gap: 8px;
}

.contact-wechat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.contact-map-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 0;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(183, 255, 223, 0.16);
  border-radius: 8px;
  background: #061613;
  box-shadow: var(--shadow);
}

.contact-map-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 340px;
  padding: clamp(26px, 4vw, 44px);
  background:
    linear-gradient(145deg, rgba(7, 31, 27, 0.98), rgba(12, 88, 70, 0.9)),
    radial-gradient(circle at 18% 12%, rgba(189, 243, 94, 0.12), transparent 32%);
}

.contact-map-copy h3 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.contact-map-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(234, 255, 247, 0.78);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.75;
}

.contact-map-copy .button {
  margin-top: 22px;
}

.contact-map-frame {
  width: 100%;
  min-height: 340px;
  border: 0;
  background:
    linear-gradient(90deg, rgba(91, 208, 173, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(91, 208, 173, 0.08) 1px, transparent 1px),
    #eaf2ef;
  background-size: 28px 28px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(22px, 7vw, 120px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--deep);
}

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

.footer a:hover,
.footer a:focus-visible {
  color: var(--accent);
}

/* Dark green visual system aligned with the video hero. */
.section {
  position: relative;
}

.section:not(.hero):not(.business-section):not(.lab-section) {
  background:
    linear-gradient(180deg, rgba(5, 24, 20, 0.86), rgba(4, 18, 16, 0.96)),
    radial-gradient(circle at 14% 18%, rgba(31, 143, 113, 0.14), transparent 32%);
}

.profile-section,
.products-section,
.news-section,
.cert-section,
.profile-detail-section,
.history-section,
.inquiry-section,
.product-page-section,
.team-section {
  color: var(--ink);
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(7, 28, 24, 0.96), rgba(4, 18, 16, 0.98)),
    radial-gradient(circle at 82% 10%, rgba(93, 208, 173, 0.12), transparent 30%);
}

.section-head h2,
.profile-detail-grid h2,
.product-intro h3,
.product-flow-card h3,
.news-card h3,
.cert-card h3,
.lab-panel h3,
.capability-grid h3 {
  color: #effff8;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.profile-copy,
.product-intro p,
.product-flow-card p,
.news-card p,
.profile-detail-grid p:not(.eyebrow),
.history-timeline p,
.cert-card p,
.lab-panel p,
.capability-grid p,
.lab-panel li,
.article-body p,
.business-intro p {
  color: rgba(223, 242, 235, 0.76);
}

.media-card,
.qualification-image,
.product-layout figure,
.feature-card,
.business-grid article,
.product-cards article,
.product-intro,
.product-flow-card,
.news-card,
.profile-detail-grid article,
.history-timeline article,
.inquiry-form,
.cert-card,
.capability-grid article,
.lab-panel,
.modal-panel {
  border-color: rgba(190, 255, 226, 0.16);
  background: linear-gradient(145deg, rgba(8, 31, 29, 0.82), rgba(9, 61, 50, 0.4));
  box-shadow: 0 20px 58px rgba(0, 14, 12, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.flip-face {
  border-color: rgba(190, 255, 226, 0.16);
  background: linear-gradient(145deg, rgba(8, 31, 29, 0.88), rgba(9, 61, 50, 0.42));
  box-shadow: 0 20px 58px rgba(0, 14, 12, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.flip-card .flip-back,
.business-section,
.lab-section,
.contact-card,
.news-hero,
.inquiry-hero,
.qual-hero,
.profile-hero,
.products-hero,
.innovation-hero,
.industries-hero,
.solutions-hero {
  background:
    linear-gradient(135deg, rgba(3, 16, 20, 0.94), rgba(7, 61, 51, 0.78)),
    radial-gradient(circle at 78% 22%, rgba(71, 173, 210, 0.14), transparent 34%),
    url("assets/hero/factory-realistic.web.webp") center/cover no-repeat;
}

.innovation-hero {
  background:
    linear-gradient(135deg, rgba(3, 16, 20, 0.94), rgba(7, 61, 51, 0.78)),
    radial-gradient(circle at 78% 22%, rgba(71, 173, 210, 0.14), transparent 34%),
    url("assets/new-content/4-科研创新/banner图.web.webp") center/cover no-repeat;
}

.industries-hero {
  background:
    linear-gradient(135deg, rgba(3, 16, 20, 0.94), rgba(7, 61, 51, 0.78)),
    radial-gradient(circle at 78% 22%, rgba(71, 173, 210, 0.14), transparent 34%),
    url("assets/new-content/5-业务领域/banner图.web.webp") center/cover no-repeat;
}

.solutions-hero {
  background:
    linear-gradient(135deg, rgba(3, 16, 20, 0.94), rgba(7, 61, 51, 0.78)),
    radial-gradient(circle at 78% 22%, rgba(71, 173, 210, 0.14), transparent 34%),
    url("assets/new-content/6-工艺解决方案/banner图1.web.webp") center/cover no-repeat;
}

.stats-band {
  background: rgba(183, 255, 223, 0.12);
}

.stats-band div {
  background: linear-gradient(145deg, rgba(6, 28, 24, 0.86), rgba(9, 57, 47, 0.52));
}

.stats-band span,
.product-flow-card dd,
.required-note,
.form-status {
  color: rgba(222, 242, 235, 0.66);
}

.feature-card h3,
.business-grid h3,
.product-list h3,
.product-cards h3,
.product-flow-card dt,
.inquiry-form label,
.news-tabs button,
.product-list li,
.product-tags li,
.news-card button,
.lab-gallery figcaption {
  color: #eefdf7;
}

.feature-card p,
.business-grid p,
.product-list p,
.product-cards p {
  color: rgba(223, 242, 235, 0.72);
}

.product-list li,
.product-tags li,
.news-tabs,
.product-flow-card figure,
.product-flow-card img,
.cert-card figure,
.lab-gallery figure {
  border-color: rgba(183, 255, 223, 0.14);
  background: rgba(2, 17, 15, 0.54);
}

.product-tags li {
  color: rgba(235, 255, 247, 0.86);
}

.section-more,
.news-tabs button.is-active {
  background: linear-gradient(135deg, #128864, #67d7b2);
  box-shadow: 0 18px 42px rgba(43, 183, 139, 0.18);
}

.news-tabs {
  background: rgba(4, 20, 18, 0.76);
}

.news-card img {
  background: #102822;
}

.inquiry-form input,
.inquiry-form textarea {
  color: #eaf8f2;
  border-color: rgba(183, 255, 223, 0.18);
  background: rgba(2, 17, 15, 0.72);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(221, 241, 234, 0.46);
}

.button.ghost.dark {
  color: #effff8;
  border-color: rgba(183, 255, 223, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

.modal {
  background: rgba(0, 10, 9, 0.82);
}

.modal-summary,
.history-timeline strong,
.product-flow-card span,
.news-card span,
.business-grid span,
.contact-card strong {
  color: var(--lime);
}

/* Premium industrial-tech polish. */
.section:not(.hero):not(.home-flow-section)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(183, 255, 223, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 255, 223, 0.025) 1px, transparent 1px);
  background-size: 104px 104px;
  opacity: 0.36;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.22) 72%, transparent);
}

.section-head,
.profile-detail-grid h2,
.product-intro h3,
.products-hero .hero-copy,
.qual-hero .hero-copy,
.profile-hero .hero-copy,
.news-hero .hero-copy,
.inquiry-hero .hero-copy {
  position: relative;
}

.section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: min(220px, 34vw);
  height: 1px;
  background: linear-gradient(90deg, var(--lime), rgba(91, 208, 173, 0.56), transparent);
  box-shadow: 0 0 22px rgba(189, 243, 94, 0.22);
}

.section-head .eyebrow,
.products-hero .eyebrow,
.qual-hero .eyebrow,
.profile-hero .eyebrow,
.news-hero .eyebrow,
.inquiry-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(189, 243, 94, 0.22);
  border-radius: 999px;
  background: rgba(189, 243, 94, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section-head h2,
.profile-detail-grid h2,
.products-hero h1,
.qual-hero h1,
.profile-hero h1,
.news-hero h1,
.inquiry-hero h1 {
  letter-spacing: 0;
  line-height: 0.98;
}

.media-card,
.qualification-image,
.product-layout figure,
.feature-card,
.business-grid article,
.product-cards article,
.product-intro,
.product-flow-card,
.news-card,
.profile-detail-grid article,
.history-timeline article,
.inquiry-form,
.cert-card,
.capability-grid article,
.lab-panel,
.contact-card,
.gallery-carousel-card,
.stats-band div {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 820ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 820ms cubic-bezier(0.22, 1, 0.36, 1),
    background 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.media-card::before,
.qualification-image::before,
.product-layout figure::before,
.feature-card::before,
.business-grid article::before,
.product-cards article::before,
.product-intro::before,
.product-flow-card::before,
.news-card::before,
.profile-detail-grid article::before,
.history-timeline article::before,
.inquiry-form::before,
.cert-card::before,
.capability-grid article::before,
.lab-panel::before,
.contact-card::before,
.gallery-carousel-card::before,
.stats-band div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(189, 243, 94, 0.12), transparent 30%);
  opacity: 0.72;
}

.media-card:hover,
.qualification-image:hover,
.product-layout figure:hover,
.feature-card:hover,
.business-grid article:hover,
.product-cards article:hover,
.product-flow-card:hover,
.news-card:hover,
.profile-detail-grid article:hover,
.history-timeline article:hover,
.cert-card:hover,
.capability-grid article:hover,
.lab-panel:hover,
.contact-card:hover,
.gallery-carousel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(189, 243, 94, 0.34);
  box-shadow:
    0 32px 88px rgba(0, 8, 7, 0.48),
    0 0 0 1px rgba(189, 243, 94, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.media-card img,
.qualification-image img,
.product-layout figure img,
.product-flow-card img,
.news-card img,
.cert-card img,
.gallery-carousel-card img,
.gallery-carousel-card picture {
  filter: saturate(0.92) contrast(1.05) brightness(0.94);
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1), filter 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.media-card:hover img,
.qualification-image:hover img,
.product-layout figure:hover img,
.product-flow-card:hover img,
.news-card:hover img,
.cert-card:hover img,
.gallery-carousel-card:hover img,
.gallery-carousel-card:hover picture {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.09) brightness(0.98);
}

.section-more,
.news-tabs button,
.lang-toggle,
.menu-button {
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 700ms cubic-bezier(0.22, 1, 0.36, 1),
    background 700ms cubic-bezier(0.22, 1, 0.36, 1),
    color 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-more:hover,
.news-tabs button:hover,
.lang-toggle:hover,
.menu-button:hover {
  transform: translateY(-2px);
  border-color: rgba(189, 243, 94, 0.58);
  box-shadow: 0 22px 56px rgba(49, 190, 144, 0.22), 0 0 0 1px rgba(189, 243, 94, 0.08);
}

.news-card button {
  border-bottom: 1px solid rgba(189, 243, 94, 0.42);
  padding-bottom: 3px;
}

.hero-panel {
  box-shadow:
    0 26px 90px rgba(0, 10, 8, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(189, 243, 94, 0.08);
}

.hero-panel div:not(:last-child) {
  border-right-color: rgba(183, 255, 223, 0.22);
}

.footer {
  border-top: 1px solid rgba(183, 255, 223, 0.12);
  background: #020d0b;
}

.news-page,
.inquiry-page,
.qual-page,
.profile-page,
.products-page {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(33, 151, 119, 0.2), transparent 34%),
    radial-gradient(circle at 88% 28%, rgba(70, 170, 210, 0.11), transparent 32%),
    linear-gradient(180deg, #061a16 0%, #071813 42%, #04100e 100%);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 16%, rgba(128, 221, 212, 0.12), transparent 32%),
    rgba(1, 14, 12, 0.82);
  backdrop-filter: blur(18px);
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-open {
  overflow: hidden;
}

.modal-panel {
  position: relative;
  width: min(960px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(183, 255, 223, 0.16);
  border-radius: 14px;
  color: #f2fff9;
  background:
    linear-gradient(135deg, rgba(7, 38, 31, 0.96), rgba(2, 17, 15, 0.98)),
    radial-gradient(circle at 88% 10%, rgba(128, 221, 212, 0.14), transparent 30%);
  box-shadow: 0 36px 120px rgba(0, 8, 6, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  scrollbar-color: rgba(189, 243, 94, 0.5) rgba(255, 255, 255, 0.06);
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(183, 255, 223, 0.2);
  border-radius: 50%;
  color: #f3fff8;
  background: rgba(16, 112, 84, 0.88);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 16px 42px rgba(0, 18, 13, 0.35);
  transition: transform 300ms ease, background 300ms ease, border-color 300ms ease;
}

.modal-close:hover {
  border-color: rgba(189, 243, 94, 0.58);
  background: rgba(30, 150, 109, 0.95);
  transform: scale(1.04);
}

.modal .eyebrow {
  color: var(--lime);
}

.modal h2 {
  clear: both;
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: #f5fff9;
  text-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
}

.modal-summary {
  color: rgba(205, 246, 228, 0.9);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
}

.article-body {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.article-body p {
  margin: 0;
  color: rgba(235, 250, 243, 0.82);
  font-size: 17px;
  line-height: 2;
}

.article-images {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.article-images img {
  width: 100%;
  border: 1px solid rgba(183, 255, 223, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 76px rgba(0, 8, 6, 0.36);
}

.supplement-preview {
  padding-top: clamp(84px, 10vw, 132px);
  padding-bottom: clamp(84px, 10vw, 132px);
}

.section-lead {
  max-width: 880px;
  margin: -12px 0 34px;
  color: rgba(223, 242, 235, 0.74);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.8;
  font-weight: 700;
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.preview-copy,
.preview-media,
.industry-preview-grid a,
.solution-preview-grid article,
.supplement-split,
.text-card-grid article,
.process-steps article,
.solution-row {
  border: 1px solid rgba(190, 255, 226, 0.16);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(8, 31, 29, 0.82), rgba(9, 61, 50, 0.4));
  box-shadow: 0 22px 64px rgba(0, 14, 12, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.home-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

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

.home-interactive-card {
  position: relative;
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-interactive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 24%, rgba(189, 243, 94, 0.14) 42%, rgba(91, 208, 173, 0.1) 52%, transparent 70%);
  opacity: 0;
  transform: translateX(-70%);
  transition:
    opacity 380ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.home-interactive-card:hover {
  border-color: rgba(189, 243, 94, 0.34);
  box-shadow:
    0 30px 86px rgba(0, 14, 12, 0.46),
    0 0 42px rgba(91, 208, 173, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.home-interactive-card:hover::before {
  opacity: 1;
  transform: translateX(70%);
}

.home-interactive-card > * {
  position: relative;
  z-index: 1;
}

.preview-copy {
  padding: clamp(28px, 4vw, 48px);
}

.preview-copy h3,
.split-copy h2,
.text-card-grid strong,
.process-steps strong,
.solution-row h2 {
  color: #effff8;
  margin: 0 0 16px;
  line-height: 1.08;
}

.preview-copy p,
.split-copy p,
.text-card-grid p,
.process-steps p,
.solution-row p {
  color: rgba(223, 242, 235, 0.74);
  line-height: 1.8;
  font-weight: 700;
}

.preview-media {
  min-height: 320px;
}

.preview-media img,
.content-gallery-grid img,
.supplement-split figure img,
.solution-row figure img,
.industry-preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08) brightness(0.86);
}

.mini-grid,
.industry-preview-grid,
.solution-preview-grid,
.text-card-grid,
.process-steps {
  display: grid;
  gap: 18px;
}

.mini-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-grid span,
.solution-preview-grid article span {
  color: rgba(235, 255, 247, 0.76);
  font-weight: 800;
}

.mini-grid span {
  padding: 18px 20px;
  border: 1px solid rgba(183, 255, 223, 0.14);
  border-radius: 12px;
  background: rgba(2, 17, 15, 0.56);
}

.industry-preview-grid,
.solution-preview-grid,
.text-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-preview-grid a {
  position: relative;
  min-height: 260px;
}

.industry-preview-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(2, 16, 13, 0.88));
}

.industry-preview-grid span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #f4fff8;
  font-size: 24px;
  font-weight: 900;
}

.solution-preview-grid article,
.text-card-grid article,
.process-steps article {
  padding: 26px;
}

.solution-preview-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 22px;
}

.supplement-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  padding: 0;
}

.supplement-split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.supplement-split.reverse .split-copy {
  order: 2;
}

.supplement-split .split-copy {
  padding: clamp(34px, 5vw, 64px);
}

.supplement-split figure,
.solution-row figure {
  margin: 0;
  min-height: 360px;
}

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

.process-steps span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--lime);
  font-weight: 900;
  letter-spacing: 0.14em;
}

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

.content-gallery-grid figure {
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(183, 255, 223, 0.14);
  border-radius: 14px;
  background: rgba(2, 17, 15, 0.54);
  box-shadow: 0 22px 64px rgba(0, 14, 12, 0.28);
}

.patent-gallery figure {
  min-height: 360px;
  background: rgba(235, 255, 247, 0.08);
}

.patent-gallery img {
  object-fit: contain;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.industry-detail {
  padding-top: clamp(88px, 10vw, 132px);
  padding-bottom: clamp(88px, 10vw, 132px);
}

.solution-list {
  display: grid;
  gap: 24px;
}

.solution-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  padding: 0;
}

.solution-row > div {
  padding: clamp(32px, 5vw, 58px);
}

.solutions-index {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(48px, 6vw, 76px);
}

.solutions-index h2 {
  margin: 0 0 28px;
  color: #effff8;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.98;
}

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

.solution-anchor-grid a {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(190, 255, 226, 0.16);
  border-radius: 12px;
  color: rgba(235, 255, 247, 0.82);
  font-weight: 900;
  line-height: 1.45;
  background:
    linear-gradient(135deg, rgba(9, 43, 38, 0.86), rgba(4, 22, 19, 0.72)),
    radial-gradient(circle at 18% 0, rgba(178, 255, 81, 0.14), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.solution-anchor-grid a::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(178, 255, 81, 0.62), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.solution-anchor-grid a:hover {
  color: #ffffff;
  border-color: rgba(178, 255, 81, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 28, 22, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.solution-anchor-grid a:hover::after {
  opacity: 1;
}

.process-solution-stack {
  display: grid;
  gap: 24px;
  padding-top: 0;
}

.process-solution-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: stretch;
  border: 1px solid rgba(190, 255, 226, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 14%, rgba(178, 255, 81, 0.12), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(84, 218, 180, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(7, 35, 31, 0.94), rgba(2, 18, 16, 0.92));
  box-shadow: 0 28px 90px rgba(0, 14, 12, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.process-solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(160, 255, 206, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 255, 206, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 86%);
}

.process-solution-card.text-heavy {
  grid-template-columns: 96px minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.solution-number {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 42px;
  border-right: 1px solid rgba(190, 255, 226, 0.14);
  color: var(--lime);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.solution-content {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 4.2vw, 56px);
}

.solution-content h2 {
  margin: 0 0 20px;
  color: #f5fff9;
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 1.08;
}

.solution-body {
  display: grid;
  gap: 14px;
}

.solution-body p,
.solution-bullets li {
  margin: 0;
  color: rgba(223, 242, 235, 0.78);
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 700;
  line-height: 1.9;
}

.solution-bullets {
  display: grid;
  gap: 8px;
  margin: 2px 0 8px;
  padding: 0;
  list-style: none;
}

.solution-bullets li {
  position: relative;
  padding-left: 22px;
}

.solution-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime), #35d8a0);
  box-shadow: 0 0 18px rgba(178, 255, 81, 0.4);
}

.solution-flow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  margin: 0;
  padding: 20px;
  border-left: 1px solid rgba(190, 255, 226, 0.13);
  background:
    radial-gradient(circle at 50% 8%, rgba(209, 255, 232, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(236, 255, 247, 0.08), rgba(2, 20, 17, 0.42));
}

.solution-flow img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  padding: 10px;
  border-radius: 14px;
  background: rgba(248, 255, 252, 0.96);
  filter: saturate(0.98) contrast(1.05) brightness(0.96);
  box-shadow: 0 24px 74px rgba(0, 9, 7, 0.36);
}

.solution-flow.placeholder-only {
  min-height: 360px;
}

.flow-placeholder {
  width: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  border: 1px dashed rgba(190, 255, 226, 0.28);
  border-radius: 14px;
  color: rgba(235, 255, 247, 0.78);
  text-align: center;
  background: rgba(2, 17, 15, 0.48);
}

.flow-placeholder strong {
  color: #effff8;
  font-size: 24px;
}

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

.solution-subgrid article {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(190, 255, 226, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0, rgba(178, 255, 81, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(8, 31, 29, 0.88), rgba(9, 61, 50, 0.4));
  box-shadow: 0 22px 64px rgba(0, 14, 12, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.solution-subgrid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--lime);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.solution-subgrid h3 {
  margin: 0 0 16px;
  color: #effff8;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
}

.solution-subgrid p {
  margin: 0;
  color: rgba(223, 242, 235, 0.76);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.85;
}

.factory-carousel-control,
.factory-carousel-indicators,
.factory-carousel-indicators button {
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: fixed;
    top: 78px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(300px, calc(100vw - 36px));
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(4, 29, 24, 0.96);
  }

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

  .nav-item {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 11px 10px;
    border-radius: 9px;
  }

  .nav-trigger::after {
    content: none;
  }

  .nav-item:hover .nav-trigger,
  .nav-item:focus-within .nav-trigger,
  .nav-trigger:hover {
    background: rgba(189, 243, 94, 0.1);
    transform: none;
  }

  .nav-item:hover .nav-trigger::before,
  .nav-item:focus-within .nav-trigger::before {
    transform: rotate(45deg) translateY(-1px);
  }

  .nav-item.is-expanded .nav-trigger {
    color: #fff;
    background: rgba(189, 243, 94, 0.1);
  }

  .nav-item.is-expanded .nav-trigger::before {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .nav-dropdown {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0 0 8px;
    padding: 2px 0 4px 12px;
    border: 0;
    border-left: 1px solid rgba(189, 243, 94, 0.25);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  .nav-item.is-expanded .nav-dropdown {
    display: grid;
  }

  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown,
  .nav-item.is-expanded .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown::before {
    content: none;
  }

  .nav-dropdown a {
    min-height: 32px;
    padding: 7px 10px;
    color: rgba(232, 255, 247, 0.68);
    font-size: 12px;
  }

  .nav-contact-dropdown {
    width: 100%;
    max-width: none;
  }

  .nav-wechat-card {
    justify-items: start;
    grid-template-columns: 78px 1fr;
    gap: 10px 12px;
    margin: 6px 10px 8px;
    padding: 10px;
    text-align: left;
  }

  .nav-wechat-card img {
    grid-row: span 2;
    width: 78px;
    height: 78px;
  }

  .nav-wechat-card span {
    font-size: 10px;
  }

  .hero,
  .profile-grid,
  .profile-showcase-card.is-wide,
  .manufacturing-motion-layout,
  .home-statement,
  .home-delivery,
  .qualification-layout,
  .product-layout,
  .product-intro,
  .lab-layout,
  .contact-card,
  .contact-map-panel,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .home-statement h2,
  .home-flow-section .home-delivery-copy h2,
  .home-contact-section .contact-card h2 {
    font-size: 40px;
  }

  .business-grid,
  .profile-showcase-grid,
  .capability-lane,
  .product-cards,
  .product-flow-grid,
  .profile-detail-grid,
  .history-timeline,
  .qualification-summary,
  .cert-grid,
  .capability-grid,
  .lab-gallery,
  .news-grid,
  .home-news-grid,
  .stats-band,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .factory-carousel {
    padding-inline: 56px;
  }

  .factory-carousel-card {
    width: min(560px, 70vw);
    height: min(400px, 48vw);
  }

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

  .process-solution-card,
  .process-solution-card.text-heavy {
    grid-template-columns: 1fr;
  }

  .solution-number {
    justify-content: flex-start;
    padding: 28px 32px 0;
    border-right: 0;
  }

  .solution-flow {
    min-height: 300px;
    border-left: 0;
  }

  .solution-subgrid {
    grid-template-columns: 1fr;
  }

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

  .industry-strip a:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0 16px;
  }

  .brand small {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .hero-photo-layer-main {
    background-position: 52% center;
  }

  .hero-scan-system {
    display: none;
  }

  .hero-cursor-light {
    opacity: 0.32;
  }

  .hero-tech-rail {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-tech-rail button {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .home-flow::before,
  .home-flow-section::before {
    content: none;
    display: none;
  }

  .home-section-kicker,
  .home-statement {
    grid-template-columns: 1fr;
  }

  .home-section-kicker {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-statement h2,
  .home-flow-section .home-delivery-copy h2,
  .home-contact-section .contact-card h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .home-statement p,
  .home-flow-section .home-delivery-copy p:not(.eyebrow),
  .home-contact-section .contact-card p {
    font-size: 16px;
  }

  .home-flow-section .capability-tile strong,
  .home-flow-section .delivery-track strong,
  .home-flow-section .industry-strip span,
  .home-news .news-card h3 {
    font-size: 22px;
  }

  .home-news .news-card h3,
  .home-news .news-card p {
    min-height: 0;
  }

  .capability-lane,
  .industry-strip {
    grid-template-columns: 1fr;
  }

  .capability-tile,
  .industry-strip a {
    min-height: 220px;
  }

  .delivery-track a {
    grid-template-columns: 1fr;
    min-height: auto;
    justify-items: start;
    padding: 18px;
    text-align: left;
  }

  .delivery-track {
    grid-template-columns: 1fr;
  }

  .delivery-track::before {
    content: none;
  }

  .manufacturing-video-card {
    min-height: 360px;
  }

  .manufacturing-video-card figcaption strong {
    font-size: clamp(24px, 8vw, 34px);
  }

  .manufacturing-flow-grid article {
    padding: 22px;
  }

  .profile-showcase-grid,
  .profile-showcase-card.is-wide {
    grid-template-columns: 1fr;
  }

  .profile-showcase-card {
    grid-template-rows: auto 1fr;
  }

  .hero-side-nav {
    display: none;
  }

  .hero-panel {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 14px 10px;
  }

  .hero-metric + .hero-metric {
    padding-top: 0;
    padding-left: 10px;
    border-top: 0;
    border-left: 1px solid rgba(221, 255, 239, 0.14);
  }

  .hero-metric span {
    font-size: clamp(18px, 5vw, 22px);
  }

  .hero-metric p {
    margin-top: 8px;
    font-size: 11px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-wechat {
    grid-template-columns: 86px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .contact-wechat img {
    width: 86px;
    height: 86px;
  }

  .contact-map-copy {
    min-height: 0;
    padding: 24px;
  }

  .contact-map-frame {
    min-height: 300px;
  }

  .factory-carousel {
    min-height: 520px;
    padding: 14px 14px 58px;
  }

  .factory-carousel-viewport {
    height: 390px;
  }

  .factory-carousel-card {
    width: min(320px, 78vw);
    height: 330px;
    transform:
      translate(-50%, -50%)
      translateX(calc(var(--offset) * 86vw))
      translateZ(var(--z))
      rotateY(var(--rotate))
      scale(var(--scale));
  }

  .factory-carousel-card figcaption {
    padding: 22px;
  }

  .factory-carousel-control {
    top: auto;
    bottom: 14px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .factory-carousel-control.prev {
    left: 18px;
  }

  .factory-carousel-control.next {
    right: 18px;
  }

  .factory-carousel-control:hover {
    transform: scale(1.04);
  }

  .factory-carousel-control:active {
    transform: scale(0.98);
  }

  .solutions-index {
    padding-top: 56px;
  }

  .solution-anchor-grid {
    grid-template-columns: 1fr;
  }

  .solution-number {
    padding: 24px 22px 0;
  }

  .solution-content {
    padding: 26px 22px;
  }

  .solution-flow {
    min-height: 240px;
    padding: 12px;
  }

  .solution-flow img {
    max-height: 420px;
    padding: 6px;
  }

  .business-grid,
  .product-cards,
  .product-flow-grid,
  .profile-detail-grid,
  .history-timeline,
  .qualification-summary,
  .cert-grid,
  .capability-grid,
  .lab-gallery,
  .news-grid,
  .home-news-grid,
  .preview-layout,
  .industry-preview-grid,
  .solution-preview-grid,
  .text-card-grid,
  .process-steps,
  .supplement-split,
  .supplement-split.reverse,
  .solution-row,
  .stats-band,
  .gallery-grid,
  .content-gallery-grid,
  .product-list ul {
    grid-template-columns: 1fr;
  }

  .supplement-split.reverse .split-copy {
    order: 0;
  }

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

  .history-timeline article {
    grid-template-columns: 1fr;
  }

  .with-action {
    display: grid;
  }

  .footer {
    display: grid;
  }
}

.profile-longform {
  background:
    radial-gradient(circle at 82% 16%, rgba(120, 224, 183, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(236, 248, 242, 0.96), rgba(223, 241, 233, 0.92));
}

.profile-section-head {
  max-width: 1040px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.profile-section-head h2 {
  margin: 0 0 22px;
  color: var(--forest);
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.profile-section-head p:not(.eyebrow) {
  max-width: 72em;
  color: #4d6861;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.9;
  font-weight: 750;
}

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

.branch-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(8, 65, 52, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 58px rgba(6, 45, 34, 0.08);
}

.branch-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.14em;
}

.branch-card h3 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 24px;
  line-height: 1.16;
}

.branch-card p {
  margin: 0;
  color: #526c66;
  line-height: 1.85;
  font-weight: 700;
}

.quality-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(8, 65, 52, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 249, 244, 0.68));
  box-shadow: 0 24px 68px rgba(4, 37, 30, 0.09);
}

.quality-process-list {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.quality-process-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(8, 65, 52, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 58px rgba(6, 45, 34, 0.08);
}

.quality-process-card.has-media {
  grid-template-columns: 58px minmax(0, 0.94fr) minmax(340px, 1.06fr);
  align-items: center;
}

.quality-index {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #002a21;
  font-weight: 1000;
  background: linear-gradient(135deg, var(--lime), #70dfb5);
  box-shadow: 0 14px 32px rgba(46, 185, 132, 0.24);
}

.quality-copy h3 {
  margin: 0 0 16px;
  color: var(--forest);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.18;
}

.quality-copy p {
  margin: 0;
  color: #4d6861;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 720;
}

.media-carousel {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(190, 255, 226, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 16%, rgba(128, 221, 212, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(4, 23, 20, 0.95), rgba(7, 69, 55, 0.62));
  overflow: hidden;
  box-shadow: 0 28px 76px rgba(0, 18, 15, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.profile-wide-carousel {
  min-height: 620px;
}

.profile-wide-carousel .media-carousel-viewport {
  min-height: 620px;
}

.media-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(183, 255, 223, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(183, 255, 223, 0.03) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.45;
}

.media-carousel-viewport {
  position: relative;
  height: 100%;
  min-height: 430px;
  perspective: 1200px;
  pointer-events: none;
}

.media-carousel-slide {
  position: absolute;
  inset: 22px 78px 62px;
  margin: 0;
  opacity: 0;
  transform: translateX(calc(var(--media-offset) * 36%)) translateZ(0) scale(0.88);
  filter: brightness(0.72) saturate(0.86);
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.media-carousel-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: brightness(0.96) saturate(0.98);
}

.media-carousel-slide.is-prev,
.media-carousel-slide.is-next {
  opacity: 0.36;
}

.media-carousel-slide.is-hidden {
  opacity: 0;
}

.media-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(190, 255, 226, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.media-carousel.is-contain .media-carousel-slide img {
  object-fit: contain;
  padding: 10px;
  background: rgba(246, 250, 247, 0.96);
}

.industry-media-carousel {
  min-height: clamp(520px, 62vw, 780px);
  margin-top: 34px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 8%, rgba(128, 221, 212, 0.18), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(186, 255, 85, 0.09), transparent 28%),
    linear-gradient(145deg, rgba(0, 20, 16, 0.98), rgba(7, 54, 42, 0.92));
  box-shadow:
    0 30px 90px rgba(0, 18, 15, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.industry-media-carousel .media-carousel-viewport {
  min-height: clamp(520px, 62vw, 780px);
}

.industry-media-carousel .media-carousel-slide {
  inset: clamp(24px, 3vw, 38px) clamp(58px, 6vw, 96px) 86px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  transform: translateX(calc(var(--media-offset) * 34%)) translateZ(0) scale(0.9);
}

.industry-media-carousel .media-carousel-slide.is-active {
  transform: translateX(0) translateZ(0) scale(1);
}

.industry-media-carousel.media-carousel.is-contain .media-carousel-slide img {
  min-height: 0;
  padding: 0;
  object-fit: contain;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border-color: rgba(190, 255, 226, 0.2);
  border-radius: 18px;
}

.industry-media-carousel figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  color: #f2fff9;
  font-size: clamp(17px, 1.4vw, 24px);
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: 0;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
}

.industry-media-carousel figcaption span {
  display: inline-grid;
  min-width: 46px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(186, 255, 85, 0.42);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(186, 255, 85, 0.1);
  font-size: 13px;
  font-weight: 1000;
}

.industry-media-carousel figcaption strong {
  display: none;
}

.industry-media-carousel .media-carousel-control {
  width: 54px;
  height: 54px;
  border-color: rgba(190, 255, 226, 0.28);
  background: rgba(1, 28, 22, 0.74);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.industry-media-carousel .media-carousel-control:hover {
  background: rgba(20, 137, 101, 0.9);
}

.industry-media-carousel .media-carousel-dots {
  bottom: 28px;
}

.media-caption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 4;
  color: #f3fff9;
  font-weight: 900;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
}

.media-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(190, 255, 226, 0.25);
  border-radius: 50%;
  color: #effff8;
  background: rgba(4, 28, 23, 0.72);
  cursor: pointer;
  font-size: 28px;
  transform: translateY(-50%);
  pointer-events: auto;
}

.media-carousel-control:hover {
  background: rgba(33, 150, 112, 0.82);
  box-shadow: 0 0 28px rgba(128, 221, 212, 0.2);
}

.media-carousel-control.prev {
  left: 18px;
}

.media-carousel-control.next {
  right: 18px;
}

.media-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 12;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
  pointer-events: auto;
}

.media-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(235, 255, 247, 0.44);
  cursor: pointer;
  transition: width 250ms ease, background 250ms ease;
}

.media-carousel-dots button.is-active {
  width: 34px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(186, 255, 85, 0.42);
}

.modal-panel {
  color: #f2fff9 !important;
  background:
    linear-gradient(135deg, rgba(3, 22, 19, 0.98), rgba(5, 48, 38, 0.96)),
    radial-gradient(circle at 82% 10%, rgba(128, 221, 212, 0.12), transparent 32%) !important;
}

.modal h2 {
  color: #f5fff9 !important;
  opacity: 1 !important;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.35) !important;
}

.modal-summary,
.article-body p {
  color: rgba(225, 245, 238, 0.86) !important;
}

.article-images img {
  border: 1px solid rgba(190, 255, 226, 0.14) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.modal .eyebrow {
  color: var(--lime) !important;
}

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

  .quality-intro-panel,
  .quality-process-card.has-media {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .quality-process-card {
    grid-template-columns: 1fr;
  }

  .media-carousel,
  .media-carousel-viewport {
    min-height: 330px;
  }

  .profile-wide-carousel,
  .profile-wide-carousel .media-carousel-viewport {
    min-height: 380px;
  }

  .industry-media-carousel,
  .industry-media-carousel .media-carousel-viewport {
    min-height: 430px;
  }

  .media-carousel-slide {
    inset: 18px 18px 58px;
  }

  .industry-media-carousel .media-carousel-slide {
    inset: 16px 16px 72px;
    gap: 12px;
  }

  .industry-media-carousel figcaption {
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
  }

  .industry-media-carousel figcaption span {
    min-width: 38px;
    height: 26px;
    font-size: 12px;
  }

  .media-carousel-control {
    width: 40px;
    height: 40px;
  }

  .media-carousel-control.prev {
    left: 10px;
  }

  .media-carousel-control.next {
    right: 10px;
  }
}

/* 20260527d - detail pages should feel like one continuous industrial system */
.innovation-page,
.industries-page,
.solutions-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(127, 255, 193, 0.11), transparent 34rem),
    linear-gradient(180deg, #061d18 0%, #092820 26%, #eaf5ef 50%, #f7fbf8 100%);
}

.innovation-page .page-hero,
.industries-page .page-hero,
.solutions-page .page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: 0;
  padding: clamp(136px, 14vw, 188px) clamp(22px, 7vw, 120px) clamp(116px, 14vw, 190px);
  color: #f6fff9;
  background:
    linear-gradient(135deg, rgba(3, 23, 19, 0.94), rgba(11, 78, 63, 0.72)),
    url("assets/hero/factory-realistic.web.webp") center/cover no-repeat;
  border-bottom: 0;
}

.innovation-page .page-hero::before,
.industries-page .page-hero::before,
.solutions-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 24%, rgba(128, 221, 212, 0.18), transparent 34%),
    linear-gradient(rgba(180, 255, 218, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 255, 218, 0.03) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
  opacity: 0.75;
}

.innovation-page .page-hero::after,
.industries-page .page-hero::after,
.solutions-page .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: clamp(130px, 18vw, 260px);
  background: linear-gradient(180deg, rgba(234, 245, 239, 0), rgba(234, 245, 239, 0.86) 64%, #eaf5ef 100%);
  pointer-events: none;
}

.innovation-page .page-hero h1,
.industries-page .page-hero h1,
.solutions-page .page-hero h1 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: 0;
}

.innovation-page .page-hero p:not(.eyebrow),
.industries-page .page-hero p:not(.eyebrow),
.solutions-page .page-hero p:not(.eyebrow) {
  max-width: 840px;
  margin: 22px 0 0;
  color: rgba(239, 255, 248, 0.82);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.8;
  font-weight: 760;
}

.innovation-page .page-hero + .section,
.industries-page .page-hero + .section,
.solutions-page .page-hero + .section {
  position: relative;
  z-index: 2;
  margin-top: clamp(-88px, -6vw, -42px);
}

.innovation-page .section,
.industries-page .section,
.solutions-page .section {
  position: relative;
  z-index: 1;
}

.research-hero-card,
.research-two-column,
.research-long-copy,
.research-carousel-section,
.industry-detail,
.solutions-index,
.process-solution-card,
.solution-subgrid article {
  border: 1px solid rgba(9, 67, 54, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 247, 0.84)),
    radial-gradient(circle at 8% 0, rgba(145, 235, 185, 0.12), transparent 34%);
  box-shadow: 0 24px 72px rgba(8, 47, 39, 0.1);
}

.research-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  max-width: 1760px;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
}

.research-hero-card .research-copy {
  padding: clamp(34px, 5vw, 72px);
  align-self: center;
}

.research-hero-card h2,
.research-two-column h2,
.research-long-copy h2,
.research-carousel-section h2 {
  margin: 0 0 22px;
  color: #0b4538;
  font-size: clamp(34px, 4.8vw, 76px);
  line-height: 1.03;
}

.research-hero-card h3 {
  width: fit-content;
  margin: 0 0 24px;
  padding: 10px 14px;
  border: 1px solid rgba(115, 217, 189, 0.28);
  border-radius: 999px;
  color: #73d9bd;
  background: rgba(91, 208, 173, 0.08);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.35;
  font-weight: 950;
}

.research-hero-card p,
.research-two-column p,
.research-long-copy p {
  color: #46665d;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.95;
  font-weight: 720;
  text-wrap: pretty;
}

.innovation-page .research-hero-card p {
  max-width: 68ch;
  color: rgba(232, 248, 242, 0.84);
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 2.05;
}

.research-hero-card figure {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.research-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.86);
}

.research-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 3vw, 44px);
  max-width: 1760px;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 54px);
  align-items: center;
}

.innovation-page .research-two-column > div {
  position: relative;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(190, 255, 226, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% 0, rgba(189, 243, 94, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(5, 31, 27, 0.82), rgba(6, 51, 42, 0.58));
}

.research-two-column figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(9, 67, 54, 0.12);
}

.research-two-column img {
  display: block;
  width: 100%;
  height: auto;
}

.research-long-copy {
  max-width: 1500px;
  border-radius: 24px;
  padding: clamp(34px, 5vw, 68px);
}

.research-long-copy p {
  margin: 0 0 18px;
}

.research-long-copy strong {
  color: #0b5a49;
}

.innovation-page .research-long-copy > p:not(.eyebrow) {
  max-width: 920px;
  color: rgba(224, 244, 237, 0.78);
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.9;
  font-weight: 760;
}

.innovation-page .research-two-column,
.innovation-page .research-long-copy,
.innovation-page .research-carousel-section {
  border-color: rgba(190, 255, 226, 0.13);
  background:
    radial-gradient(circle at 12% 0, rgba(91, 208, 173, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(5, 24, 20, 0.88), rgba(4, 18, 16, 0.96));
  color: #e7f4ef;
}

.innovation-page .research-two-column h2,
.innovation-page .research-long-copy h2,
.innovation-page .research-carousel-section h2 {
  color: #f3fff8;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.innovation-page .research-long-copy h2 {
  max-width: 1180px;
  font-size: clamp(34px, 4.4vw, 62px);
  text-wrap: balance;
}

.innovation-page .research-two-column p:not(.eyebrow),
.innovation-page .research-carousel-section .section-head p:not(.eyebrow) {
  color: rgba(224, 244, 237, 0.78);
}

.research-step-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.research-step-line span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(9, 67, 54, 0.14);
  border-radius: 999px;
  color: #0b5a49;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(8, 47, 39, 0.08);
}

.research-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 3.2vw, 44px);
}

.research-pillar-grid article {
  position: relative;
  min-height: 250px;
  padding: clamp(24px, 2.8vw, 36px);
  border: 1px solid rgba(9, 67, 54, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 0, rgba(189, 243, 94, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(246, 251, 248, 0.9), rgba(225, 240, 233, 0.78));
  box-shadow: 0 24px 58px rgba(8, 47, 39, 0.1);
}

.research-pillar-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: #15936f;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.2em;
}

.research-pillar-grid h3 {
  margin: 0 0 14px;
  color: #073c32;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.18;
  font-weight: 1000;
}

.research-pillar-grid p {
  margin: 0;
  color: #426158;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 720;
}

.research-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 28px;
}

.research-metrics article {
  padding: 22px 26px;
  border: 1px solid rgba(9, 67, 54, 0.14);
  border-radius: 16px;
  background: linear-gradient(135deg, #063a30, #0a6a53);
  color: #eafff6;
}

.research-metrics strong {
  display: block;
  color: var(--lime);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.research-metrics span {
  display: block;
  margin-top: 8px;
  font-weight: 900;
}

.research-carousel-section {
  max-width: 1760px;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 54px);
}

.research-carousel-section .section-head p:not(.eyebrow) {
  max-width: 900px;
  color: #557068;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.8;
}

.research-card-carousel,
.research-card-carousel .media-carousel-viewport {
  min-height: clamp(500px, 58vw, 820px);
}

.research-card-carousel .media-carousel-slide {
  inset: clamp(22px, 3vw, 38px) clamp(58px, 6vw, 96px) 82px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
}

.research-card-carousel.media-carousel.is-contain .media-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
}

.research-card-carousel figcaption {
  color: #f2fff9;
  font-size: clamp(16px, 1.2vw, 21px);
  font-weight: 900;
}

.certificate-pair-carousel,
.certificate-pair-carousel .media-carousel-viewport {
  min-height: clamp(560px, 62vw, 900px);
}

.certificate-pair-carousel.media-carousel {
  max-width: 1320px;
  margin: 34px auto 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(128, 221, 212, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(2, 23, 19, 0.98), rgba(5, 52, 41, 0.86));
}

.certificate-pair-carousel .media-carousel-viewport {
  pointer-events: auto;
}

.certificate-pair-carousel .media-carousel-slide {
  top: clamp(26px, 3vw, 42px);
  bottom: 72px;
  left: clamp(54px, 5vw, 78px);
  right: clamp(54px, 5vw, 78px);
  width: calc((100% - clamp(108px, 10vw, 156px) - clamp(18px, 2.4vw, 34px)) / 2);
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  opacity: 0;
  transform:
    translateX(calc(var(--media-group-offset) * (100% + clamp(18px, 2.4vw, 34px))))
    translateZ(0)
    scale(0.98);
  filter: none;
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease;
}

.certificate-pair-carousel .media-carousel-slide.is-visible-group {
  opacity: 1;
}

.certificate-pair-carousel .media-carousel-slide.is-active,
.certificate-pair-carousel .media-carousel-slide.is-next {
  transform:
    translateX(calc(var(--media-group-offset) * (100% + clamp(18px, 2.4vw, 34px))))
    translateZ(0)
    scale(1);
}

.certificate-pair-carousel.media-carousel.is-contain .media-carousel-slide img {
  padding: 0;
  object-fit: contain;
  object-position: center;
  background: #f8faf6;
  border-radius: 10px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.certificate-pair-carousel figcaption {
  display: none;
}

.industry-detail {
  max-width: 1760px;
  margin-right: auto;
  margin-bottom: clamp(26px, 4vw, 54px);
  margin-left: auto;
  padding: clamp(34px, 5vw, 72px);
  border-radius: 26px;
}

.industry-detail .section-head h2,
.solutions-index h2 {
  color: #0b4538;
}

.industry-detail .section-lead {
  max-width: 1120px;
  margin: -8px 0 34px;
  color: #526c65;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.9;
}

.industry-media-carousel {
  overflow: hidden;
}

.industry-media-carousel::after,
.research-card-carousel::after {
  content: "";
  position: absolute;
  inset: 18px 58px 62px;
  border-radius: 24px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 92%, rgba(186, 255, 85, 0.13), transparent 48%);
}

.media-carousel-control,
.media-carousel-dots,
.media-carousel-dots button {
  pointer-events: auto !important;
}

.media-carousel-control {
  z-index: 90 !important;
}

.media-carousel-dots {
  z-index: 95 !important;
}

.media-carousel-slide.is-active {
  z-index: 4;
  pointer-events: auto;
}

.media-carousel-slide.is-prev,
.media-carousel-slide.is-next {
  z-index: 2;
}

.solutions-index {
  max-width: 1760px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 24px;
  padding: clamp(32px, 4vw, 58px);
}

.process-solution-stack {
  max-width: 1760px;
  margin-right: auto;
  margin-left: auto;
}

.process-solution-card {
  border-color: rgba(9, 67, 54, 0.14);
  background:
    radial-gradient(circle at 12% 10%, rgba(178, 255, 81, 0.1), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(237, 247, 241, 0.9));
  box-shadow: 0 24px 72px rgba(8, 47, 39, 0.12);
}

.process-solution-card::before {
  opacity: 0.35;
}

.solution-number {
  border-right-color: rgba(9, 67, 54, 0.12);
  color: #118a6d;
}

.solution-content h2 {
  color: #0b4538;
}

.solution-body p,
.solution-bullets li {
  color: #4b675f;
}

.solution-flow {
  background: rgba(255, 255, 255, 0.72);
  border-left: 1px solid rgba(9, 67, 54, 0.1);
}

.solution-flow img {
  filter: saturate(0.98) contrast(1.02);
}

.solution-subgrid {
  max-width: 1760px;
  margin-right: auto;
  margin-left: auto;
}

.solution-subgrid article {
  border-radius: 18px;
}

.solutions-page #solution-vocs.process-solution-card.text-heavy {
  grid-template-columns: 76px minmax(420px, 0.98fr) minmax(420px, 1.02fr);
  min-height: auto;
  align-items: stretch;
}

.solutions-page #solution-vocs .anchor-alias {
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

.solutions-page #solution-vocs .solution-content {
  padding-block: clamp(28px, 3.4vw, 46px);
}

.solutions-page #solution-vocs .solution-flow {
  padding: clamp(16px, 2vw, 28px);
  min-height: 0;
}

.solutions-page #solution-vocs .solution-flow img {
  width: min(100%, 680px);
  height: auto;
  max-height: clamp(320px, 42vw, 560px);
  object-fit: contain;
}

.solutions-page .solution-subgrid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(158, 235, 199, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 38%),
    radial-gradient(circle at 16% 10%, rgba(181, 255, 92, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(5, 34, 29, 0.96), rgba(4, 22, 20, 0.94));
  box-shadow: 0 24px 70px rgba(0, 15, 13, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.solutions-page .solution-subgrid article::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(181, 255, 92, 0.7));
  opacity: 0.7;
}

.solutions-page .solution-subgrid span {
  color: #bdf35e;
  text-shadow: 0 0 22px rgba(189, 243, 94, 0.32);
}

.solutions-page .solution-subgrid h3 {
  color: #f4fff8;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.solutions-page .solution-subgrid p {
  max-width: 34em;
  color: rgba(229, 248, 240, 0.86);
  font-weight: 650;
}

@media (max-width: 1100px) {
  .research-hero-card,
  .research-two-column,
  .process-solution-card,
  .process-solution-card.text-heavy {
    grid-template-columns: 1fr;
  }

  .research-hero-card figure {
    min-height: 360px;
  }

  .research-pillar-grid {
    grid-template-columns: 1fr;
  }

  .solution-number {
    justify-content: flex-start;
    padding: 24px 32px 0;
    border-right: 0;
  }

  .solution-flow {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .innovation-page .page-hero,
  .industries-page .page-hero,
  .solutions-page .page-hero {
    padding-top: 118px;
  }

  .research-hero-card,
  .research-two-column,
  .research-long-copy,
  .research-carousel-section,
  .industry-detail,
  .solutions-index {
    border-radius: 18px;
  }

  .research-metrics {
    grid-template-columns: 1fr;
  }

  .research-card-carousel,
  .research-card-carousel .media-carousel-viewport {
    min-height: 430px;
  }
}

/* 20260527e - stitched detail-page opening system */
.innovation-hero {
  --detail-hero-image: url("assets/new-content/4-科研创新/banner图.web.webp");
}

.industries-hero {
  --detail-hero-image: url("assets/new-content/5-业务领域/banner图.web.webp");
}

.solutions-hero {
  --detail-hero-image: url("assets/new-content/6-工艺解决方案/banner图1.web.webp");
}

.profile-hero {
  --detail-hero-image: url("assets/new-content/2-关于我们/高端加工设备.web.webp");
  --detail-hero-position: center 46%;
}

.qual-hero {
  --detail-hero-image: url("assets/new-content/4-科研创新/2-研发基础设施/检测仪器/IMG_20220625_121501.web.webp");
  --detail-hero-position: center 54%;
}

.products-hero {
  --detail-hero-image: url("assets/equipment/four-views.web.webp");
  --detail-hero-position: center;
}

.news-hero {
  --detail-hero-image: url("assets/products/h2s.jpg");
  --detail-hero-position: center 42%;
}

.inquiry-hero {
  --detail-hero-image: url("assets/about/smart-workshop.web.webp");
  --detail-hero-position: center;
}

.innovation-hero {
  --detail-hero-image: url("assets/new-content/4-科研创新/2-研发基础设施/中小试验平台/ChatGPT_Image_2026年5月27日_02_23_09.web.webp");
  --detail-hero-position: center;
}

.industries-hero {
  --detail-hero-image: url("assets/new-content/5-业务领域/2-化工行业/尾气吸附.web.webp");
  --detail-hero-position: center;
}

.solutions-hero {
  --detail-hero-image: url("assets/products/distillation.web.webp");
  --detail-hero-position: center;
}

.profile-hero,
.qual-hero,
.products-hero,
.news-hero,
.inquiry-hero,
.innovation-page .page-hero,
.industries-page .page-hero,
.solutions-page .page-hero {
  display: grid;
  align-content: end;
  position: relative;
  min-height: clamp(560px, 68dvh, 820px);
  overflow: hidden;
  padding-top: clamp(130px, 13vw, 190px);
  padding-bottom: clamp(86px, 9vw, 142px);
  background:
    linear-gradient(112deg, rgba(2, 18, 15, 0.98) 0%, rgba(4, 35, 29, 0.9) 42%, rgba(5, 35, 31, 0.38) 100%),
    var(--detail-hero-image, url("assets/hero/factory-realistic.web.webp")) var(--detail-hero-position, center)/cover no-repeat;
}

.profile-hero > *,
.qual-hero > *,
.products-hero > *,
.news-hero > *,
.inquiry-hero > *,
.innovation-page .page-hero > *,
.industries-page .page-hero > *,
.solutions-page .page-hero > * {
  position: relative;
  z-index: 2;
}

.profile-hero::before,
.qual-hero::before,
.products-hero::before,
.news-hero::before,
.inquiry-hero::before,
.innovation-page .page-hero::before,
.industries-page .page-hero::before,
.solutions-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 18%, rgba(128, 221, 212, 0.2), transparent 32%),
    linear-gradient(120deg, rgba(186, 255, 85, 0.1), transparent 34%),
    linear-gradient(rgba(180, 255, 218, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 255, 218, 0.028) 1px, transparent 1px);
  background-size: auto, auto, 86px 86px, 86px 86px;
}

.profile-hero::after,
.qual-hero::after,
.products-hero::after,
.news-hero::after,
.inquiry-hero::after,
.innovation-page .page-hero::after,
.industries-page .page-hero::after,
.solutions-page .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  z-index: 1;
  pointer-events: none;
  height: clamp(210px, 26vw, 340px);
  background:
    linear-gradient(180deg, rgba(234, 245, 239, 0), rgba(234, 245, 239, 0.72) 58%, #eaf5ef 100%),
    radial-gradient(ellipse at 50% 100%, rgba(186, 255, 85, 0.12), transparent 68%);
}

.page-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1040px, 100%);
  margin-top: clamp(32px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(215, 255, 235, 0.18);
  border-radius: 18px;
  background: rgba(224, 255, 240, 0.12);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.page-hero-proof article {
  min-width: 0;
  padding: clamp(18px, 2.3vw, 28px);
  background: linear-gradient(140deg, rgba(5, 33, 28, 0.72), rgba(6, 65, 51, 0.36));
}

.page-hero-proof span {
  display: block;
  color: var(--lime);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 1000;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.page-hero-proof strong {
  display: block;
  margin-top: 10px;
  color: rgba(243, 255, 249, 0.88);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.55;
  font-weight: 850;
}

.innovation-page .page-hero + .section,
.industries-page .page-hero + .section,
.solutions-page .page-hero + .section {
  margin-top: clamp(-116px, -8vw, -58px);
}

.research-hero-card,
.industry-detail:first-of-type,
.solutions-index {
  backdrop-filter: blur(12px);
  box-shadow:
    0 36px 90px rgba(7, 43, 35, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.research-hero-card {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
}

.research-hero-card figure {
  position: relative;
}

.research-hero-card figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(244, 250, 247, 0.9), rgba(244, 250, 247, 0.1) 32%, transparent 58%),
    linear-gradient(180deg, transparent 56%, rgba(3, 24, 20, 0.44));
  pointer-events: none;
}

.industry-detail:first-of-type,
.solutions-index {
  border-color: rgba(217, 255, 238, 0.48);
}

.innovation-page .page-hero + .section h2,
.industries-page .page-hero + .section h2,
.solutions-page .page-hero + .section h2 {
  color: #f3fff8;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.innovation-page .page-hero + .section h3,
.industries-page .page-hero + .section h3,
.solutions-page .page-hero + .section h3 {
  color: #73d9bd;
}

.innovation-page .page-hero + .section p:not(.eyebrow),
.industries-page .page-hero + .section p:not(.eyebrow),
.solutions-page .page-hero + .section p:not(.eyebrow) {
  color: rgba(225, 244, 237, 0.8);
}

.innovation-page .page-hero + .section .eyebrow,
.industries-page .page-hero + .section .eyebrow,
.solutions-page .page-hero + .section .eyebrow {
  color: var(--lime);
}

.industries-page .industry-detail .section-head h2 {
  color: #f3fff8;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.industries-page .industry-detail .section-lead {
  color: rgba(225, 244, 237, 0.78);
}

.industries-page .industry-detail .eyebrow {
  color: var(--lime);
}

.media-carousel-control {
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms ease,
    box-shadow 220ms ease;
}

.media-carousel-control:active {
  transform: translateY(-50%) scale(0.96);
}

.media-carousel-dots button:focus-visible,
.media-carousel-control:focus-visible,
.solution-anchor-grid a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

html[data-theme="light"] {
  --deep: #eef6f0;
  --ink: #0b2a23;
  --muted: #526d64;
  --paper: #f3f8f4;
  --line: rgba(11, 90, 70, 0.18);
  --shadow: 0 28px 80px rgba(20, 68, 56, 0.16);
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 18% 8%, rgba(91, 208, 173, 0.18), transparent 34%),
    linear-gradient(180deg, #f4faf5 0%, #eaf4ef 46%, #dfece6 100%);
}

html[data-theme="light"] .site-header {
  color: #05251e;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 245, 0.94));
  border-bottom-color: rgba(8, 74, 58, 0.2);
  box-shadow: 0 18px 48px rgba(23, 70, 57, 0.16);
}

html[data-theme="light"] .nav,
html[data-theme="light"] .brand small {
  color: rgba(5, 37, 30, 0.9);
}

html[data-theme="light"] .nav-trigger {
  color: rgba(5, 37, 30, 0.88);
}

html[data-theme="light"] .nav-item:hover .nav-trigger,
html[data-theme="light"] .nav-item:focus-within .nav-trigger,
html[data-theme="light"] .nav-trigger:hover {
  color: #08251f;
}

html[data-theme="light"] .hero::after {
  background: linear-gradient(0deg, rgba(236, 248, 241, 0.08), transparent 42%);
}

html[data-theme="light"] .interactive-hero::before {
  background:
    linear-gradient(90deg, rgba(238, 248, 242, 0.05) 0%, rgba(222, 242, 232, 0.03) 38%, transparent 74%),
    radial-gradient(circle at var(--hero-light-x) var(--hero-light-y), rgba(var(--hero-mode-rgb), 0.04), transparent 28%);
}

html[data-theme="light"] .interactive-hero::after {
  background:
    linear-gradient(0deg, rgba(236, 248, 241, 0.08), transparent 38%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.025), transparent 44%);
}

html[data-theme="light"] .interactive-hero .hero-media::before {
  opacity: 0.08;
}

html[data-theme="light"] .hero-video {
  filter: saturate(1.06) contrast(1.08) brightness(1.02);
  opacity: 0.98;
}

html[data-theme="light"] .hero-content,
html[data-theme="light"] .home-flow-section,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .contact-map-panel {
  color: #0b2a23;
}

html[data-theme="light"] .hero-content > p:not(.eyebrow):not(.hero-subtitle),
html[data-theme="light"] .home-statement p,
html[data-theme="light"] .home-delivery-copy p:not(.eyebrow),
html[data-theme="light"] .contact-card p {
  color: rgba(11, 42, 35, 0.78);
}

.theme-toggle,
.lang-toggle,
.menu-button {
  border: 1px solid rgba(200, 240, 90, 0.45);
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.theme-toggle {
  min-width: 52px;
  height: 44px;
  border-radius: 10px;
  font-weight: 950;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(189, 243, 94, 0.58);
  box-shadow: 0 22px 56px rgba(49, 190, 144, 0.22), 0 0 0 1px rgba(189, 243, 94, 0.08);
}

.hero-tech-rail a {
  min-height: 32px;
  min-width: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(189, 243, 94, 0.22);
  border-radius: 999px;
  color: rgba(238, 255, 247, 0.82);
  background:
    linear-gradient(135deg, rgba(189, 243, 94, 0.1), rgba(91, 208, 173, 0.05)),
    rgba(2, 17, 15, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    background 320ms ease,
    color 320ms ease,
    box-shadow 320ms ease;
}

.hero-tech-rail a:hover,
.hero-tech-rail a:focus-visible,
.hero-tech-rail a.is-active {
  color: #fff;
  border-color: rgba(var(--hero-mode-rgb), 0.48);
  background:
    linear-gradient(135deg, rgba(var(--hero-mode-rgb), 0.18), rgba(var(--hero-mode-muted-rgb), 0.08)),
    rgba(2, 17, 15, 0.48);
  box-shadow:
    0 0 0 1px rgba(var(--hero-mode-rgb), 0.08),
    0 14px 36px rgba(var(--hero-mode-rgb), 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.hero-panel {
  width: min(820px, 100%);
}

.hero-metric {
  display: grid;
  align-content: center;
  min-height: 92px;
  padding: 8px 18px;
  border-radius: 6px;
}

.hero-metric span {
  letter-spacing: 0;
}

.hero-metric:hover,
.hero-metric:focus-visible {
  background: rgba(189, 243, 94, 0.08);
  outline: 0;
}

.hero-panel a:not(:last-child) {
  border-right: 1px solid rgba(183, 255, 223, 0.22);
}

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

.capability-tile.is-flow {
  min-height: clamp(250px, 23vw, 330px);
  justify-content: flex-end;
  background: rgba(5, 31, 27, 0.9);
}

.capability-tile.is-flow::after {
  background:
    linear-gradient(180deg, rgba(3, 22, 19, 0.08), rgba(3, 22, 19, 0.18) 44%, rgba(3, 22, 19, 0.9)),
    radial-gradient(circle at 18% 16%, rgba(189, 243, 94, 0.12), transparent 36%);
}

.capability-tile.is-flow img {
  inset: 18px 18px auto;
  width: calc(100% - 36px);
  height: 62%;
  object-fit: contain;
  padding: 16px;
  border-radius: 8px;
  background: rgba(244, 250, 246, 0.94);
  opacity: 0.88;
  filter: none;
  transform: none;
}

.capability-tile.is-flow:hover img,
.capability-tile.is-flow:focus-visible img {
  opacity: 0.98;
  transform: translateY(-4px);
}

.capability-tile strong {
  font-size: clamp(28px, 3.1vw, 48px);
}

.delivery-track a {
  overflow: hidden;
  align-content: end;
  isolation: isolate;
}

.delivery-track a img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(0.9) contrast(1.05);
  transition: opacity 300ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.delivery-track a:hover img,
.delivery-track a:focus-visible img {
  opacity: 0.52;
  transform: scale(1.05);
}

@media (max-width: 720px) {
  .theme-toggle {
    min-width: 44px;
  }

  .hero-tech-rail a {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .hero-panel a:not(:last-child) {
    border-right: 0;
  }

  .capability-lane {
    grid-template-columns: 1fr;
  }

  .capability-tile.is-flow img {
    height: 58%;
  }
}

@media (max-width: 900px) {
  .research-hero-card {
    grid-template-columns: 1fr;
  }

  .page-hero-proof {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .innovation-page .page-hero,
  .industries-page .page-hero,
  .solutions-page .page-hero {
    min-height: auto;
    padding-bottom: 110px;
  }
}

@media (max-width: 720px) {
  .innovation-page .page-hero,
  .industries-page .page-hero,
  .solutions-page .page-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .innovation-page .page-hero + .section,
  .industries-page .page-hero + .section,
  .solutions-page .page-hero + .section {
    margin-top: -68px;
  }

  .page-hero-proof article {
    padding: 16px 18px;
  }
}

[data-channel-panel][hidden] {
  display: none !important;
}

.page-channel-tabs,
.solution-anchor-grid[data-channel-tabs] {
  position: sticky;
  top: 82px;
  z-index: 4;
  width: min(1260px, calc(100% - 44px));
  margin: clamp(-42px, -3vw, -26px) auto clamp(46px, 6vw, 84px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 1px;
  padding: 7px;
  border: 1px solid rgba(183, 255, 223, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(236, 255, 248, 0.1), rgba(236, 255, 248, 0.025)),
    rgba(3, 19, 17, 0.9);
  box-shadow:
    0 20px 60px rgba(0, 12, 10, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  counter-reset: channel-tab;
  scroll-margin-top: 104px;
}

.solution-anchor-grid[data-channel-tabs] {
  top: 82px;
  width: min(1260px, calc(100% - 44px));
  margin: clamp(-42px, -3vw, -26px) auto clamp(46px, 6vw, 84px);
}

.page-channel-tabs a,
.solution-anchor-grid[data-channel-tabs] a {
  position: relative;
  min-height: 62px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13px 14px 12px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: rgba(234, 250, 244, 0.84);
  background: rgba(255, 255, 255, 0.035);
  font-size: clamp(13px, 0.82vw, 15px);
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
  isolation: isolate;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    background 240ms ease,
    color 240ms ease,
    box-shadow 240ms ease;
}

.page-channel-tabs a::before,
.solution-anchor-grid[data-channel-tabs] a::before {
  counter-increment: channel-tab;
  content: counter(channel-tab, decimal-leading-zero);
  color: rgba(189, 243, 94, 0.76);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-channel-tabs a::after,
.solution-anchor-grid[data-channel-tabs] a::after {
  position: absolute;
  inset: auto 12px 8px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(189, 243, 94, 0.76), transparent);
  opacity: 0;
  transform: scaleX(0.42);
  transform-origin: center;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.page-channel-tabs a:hover,
.page-channel-tabs a:focus-visible,
.page-channel-tabs a.is-active,
.solution-anchor-grid[data-channel-tabs] a:hover,
.solution-anchor-grid[data-channel-tabs] a:focus-visible,
.solution-anchor-grid[data-channel-tabs] a.is-active {
  color: #f7fff9;
  border-color: rgba(189, 243, 94, 0.46);
  background:
    linear-gradient(180deg, rgba(65, 134, 96, 0.45), rgba(15, 65, 52, 0.56)),
    rgba(189, 243, 94, 0.08);
  box-shadow:
    0 16px 34px rgba(0, 18, 12, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.page-channel-tabs a:hover::after,
.page-channel-tabs a:focus-visible::after,
.page-channel-tabs a.is-active::after,
.solution-anchor-grid[data-channel-tabs] a:hover::after,
.solution-anchor-grid[data-channel-tabs] a:focus-visible::after,
.solution-anchor-grid[data-channel-tabs] a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.page-channel-tabs a:focus-visible,
.solution-anchor-grid[data-channel-tabs] a:focus-visible {
  outline: 2px solid rgba(189, 243, 94, 0.72);
  outline-offset: 3px;
}

.page-channel-tabs + [data-channel-panel],
.process-solution-stack [data-channel-panel]:not([hidden]) {
  animation: channelPanelIn 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes channelPanelIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html[data-theme="light"] .page-channel-tabs,
html[data-theme="light"] .solution-anchor-grid[data-channel-tabs] {
  border-color: rgba(11, 90, 70, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 249, 244, 0.82)),
    rgba(244, 250, 246, 0.94);
  box-shadow: 0 24px 74px rgba(20, 68, 56, 0.14);
}

html[data-theme="light"] .page-channel-tabs a,
html[data-theme="light"] .solution-anchor-grid[data-channel-tabs] a {
  color: rgba(11, 42, 35, 0.78);
  background: rgba(255, 255, 255, 0.54);
}

html[data-theme="light"] .page-channel-tabs a::before,
html[data-theme="light"] .solution-anchor-grid[data-channel-tabs] a::before {
  color: rgba(12, 112, 84, 0.82);
}

html[data-theme="light"] .page-channel-tabs a:hover,
html[data-theme="light"] .page-channel-tabs a:focus-visible,
html[data-theme="light"] .page-channel-tabs a.is-active,
html[data-theme="light"] .solution-anchor-grid[data-channel-tabs] a:hover,
html[data-theme="light"] .solution-anchor-grid[data-channel-tabs] a:focus-visible,
html[data-theme="light"] .solution-anchor-grid[data-channel-tabs] a.is-active {
  color: #082019;
  border-color: rgba(11, 114, 82, 0.24);
  background:
    linear-gradient(180deg, rgba(212, 245, 222, 0.92), rgba(236, 255, 247, 0.82)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 14px 34px rgba(38, 109, 81, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

@media (max-width: 720px) {
  .page-channel-tabs,
  .solution-anchor-grid[data-channel-tabs] {
    top: 72px;
    width: calc(100% - 28px);
    display: flex;
    gap: 1px;
    padding: 7px;
    margin-top: -34px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .page-channel-tabs::-webkit-scrollbar,
  .solution-anchor-grid[data-channel-tabs]::-webkit-scrollbar {
    display: none;
  }

  .solution-anchor-grid[data-channel-tabs] {
    width: calc(100% - 28px);
    margin-top: -18px;
  }

  .page-channel-tabs a,
  .solution-anchor-grid[data-channel-tabs] a {
    flex: 0 0 clamp(126px, 42vw, 168px);
    min-height: 54px;
    padding: 10px 12px 11px;
    font-size: 12px;
    scroll-snap-align: start;
  }
}

/* Final theme corrections: delivery cards stay graphic-free, and light mode is full-page. */
.delivery-track a img {
  display: none;
}

.delivery-track {
  border-color: rgba(158, 235, 199, 0.24);
  background: rgba(158, 235, 199, 0.1);
}

.delivery-track a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 42%),
    radial-gradient(circle at 50% 0, rgba(189, 243, 94, 0.12), transparent 34%),
    rgba(2, 17, 15, 0.72);
}

html[data-theme="light"] body {
  color: #0b2a23;
  background:
    radial-gradient(circle at 12% 0, rgba(91, 208, 173, 0.12), transparent 34%),
    linear-gradient(180deg, #f7fbf8 0%, #eef7f2 44%, #e6f1eb 100%);
}

html[data-theme="light"] .home-flow,
html[data-theme="light"] main {
  background: #f2f8f4;
}

html[data-theme="light"] .home-flow::before {
  background:
    linear-gradient(180deg, transparent, rgba(20, 132, 98, 0.38) 12%, rgba(91, 208, 173, 0.26) 64%, transparent),
    repeating-linear-gradient(180deg, rgba(12, 76, 61, 0.2) 0 8px, transparent 8px 18px);
  box-shadow: 0 0 22px rgba(91, 208, 173, 0.12);
}

html[data-theme="light"] .home-flow-section,
html[data-theme="light"] .home-contact-section,
html[data-theme="light"] .section:not(.hero) {
  color: #0b2a23;
  background: #f2f8f4;
}

html[data-theme="light"] .home-flow-section::before {
  color: #0d6f55;
  border-color: rgba(13, 111, 85, 0.26);
  background:
    radial-gradient(circle at center, rgba(189, 243, 94, 0.28), rgba(255, 255, 255, 0.95) 62%),
    #ffffff;
  box-shadow:
    0 0 0 8px rgba(40, 142, 107, 0.08),
    0 16px 34px rgba(31, 94, 75, 0.12);
}

html[data-theme="light"] .home-flow-section::after,
html[data-theme="light"] .home-contact-section::after {
  background:
    linear-gradient(90deg, rgba(247, 251, 248, 0.94) 0%, rgba(238, 248, 243, 0.74) 48%, rgba(230, 242, 235, 0.38) 100%),
    radial-gradient(circle at 78% 28%, rgba(91, 208, 173, 0.16), transparent 34%),
    linear-gradient(rgba(12, 96, 75, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 96, 75, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 88px 88px, 88px 88px;
  filter: none;
  opacity: 1;
}

html[data-theme="light"] .home-statement h2,
html[data-theme="light"] .home-flow-section .home-delivery-copy h2,
html[data-theme="light"] .home-contact-section .contact-card h2,
html[data-theme="light"] .section-head h2,
html[data-theme="light"] .profile-detail-grid h2,
html[data-theme="light"] .research-hero-card h2,
html[data-theme="light"] .research-two-column h2,
html[data-theme="light"] .research-long-copy h2,
html[data-theme="light"] .research-carousel-section h2,
html[data-theme="light"] .industry-detail .section-head h2,
html[data-theme="light"] .solutions-index h2,
html[data-theme="light"] .solution-content h2,
html[data-theme="light"] .innovation-page .page-hero + .section h2,
html[data-theme="light"] .industries-page .page-hero + .section h2,
html[data-theme="light"] .solutions-page .page-hero + .section h2 {
  color: #0b4538;
  text-shadow: none;
}

html[data-theme="light"] .home-statement p,
html[data-theme="light"] .home-flow-section .home-delivery-copy p:not(.eyebrow),
html[data-theme="light"] .home-contact-section .contact-card p,
html[data-theme="light"] .section-lead,
html[data-theme="light"] .research-hero-card p,
html[data-theme="light"] .research-two-column p,
html[data-theme="light"] .research-long-copy p,
html[data-theme="light"] .research-carousel-section .section-head p:not(.eyebrow),
html[data-theme="light"] .industry-detail .section-lead,
html[data-theme="light"] .solution-body p,
html[data-theme="light"] .solution-bullets li,
html[data-theme="light"] .solutions-page .solution-subgrid p,
html[data-theme="light"] .innovation-page .page-hero + .section p:not(.eyebrow),
html[data-theme="light"] .industries-page .page-hero + .section p:not(.eyebrow),
html[data-theme="light"] .solutions-page .page-hero + .section p:not(.eyebrow) {
  color: #526d64;
  text-shadow: none;
}

html[data-theme="light"] .eyebrow,
html[data-theme="light"] .innovation-page .page-hero + .section .eyebrow,
html[data-theme="light"] .industries-page .industry-detail .eyebrow,
html[data-theme="light"] .solutions-page .page-hero + .section .eyebrow {
  color: #0d7a5d;
}

html[data-theme="light"] .delivery-track {
  border-color: rgba(13, 111, 85, 0.18);
  background: rgba(13, 111, 85, 0.08);
  box-shadow: 0 18px 54px rgba(29, 86, 68, 0.1);
}

html[data-theme="light"] .delivery-track::before {
  background: linear-gradient(90deg, rgba(13, 111, 85, 0.68), rgba(91, 208, 173, 0.18));
  opacity: 0.42;
}

html[data-theme="light"] .delivery-track a {
  color: #0b4538;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(236, 247, 241, 0.7)),
    radial-gradient(circle at 50% 0, rgba(189, 243, 94, 0.2), transparent 36%);
}

html[data-theme="light"] .delivery-track a:hover,
html[data-theme="light"] .delivery-track a:focus-visible {
  color: #075f48;
}

html[data-theme="light"] .preview-copy,
html[data-theme="light"] .preview-media,
html[data-theme="light"] .industry-preview-grid a,
html[data-theme="light"] .solution-preview-grid article,
html[data-theme="light"] .supplement-split,
html[data-theme="light"] .text-card-grid article,
html[data-theme="light"] .process-steps article,
html[data-theme="light"] .solution-row,
html[data-theme="light"] .media-card,
html[data-theme="light"] .qualification-image,
html[data-theme="light"] .product-layout figure,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .business-grid article,
html[data-theme="light"] .product-cards article,
html[data-theme="light"] .product-intro,
html[data-theme="light"] .product-flow-card,
html[data-theme="light"] .news-card,
html[data-theme="light"] .profile-detail-grid article,
html[data-theme="light"] .history-timeline article,
html[data-theme="light"] .inquiry-form,
html[data-theme="light"] .cert-card,
html[data-theme="light"] .capability-grid article,
html[data-theme="light"] .lab-panel,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .contact-map-panel,
html[data-theme="light"] .gallery-carousel-card,
html[data-theme="light"] .stats-band div,
html[data-theme="light"] .quality-process-card,
html[data-theme="light"] .research-hero-card,
html[data-theme="light"] .research-two-column,
html[data-theme="light"] .research-long-copy,
html[data-theme="light"] .research-carousel-section,
html[data-theme="light"] .industry-detail,
html[data-theme="light"] .solutions-index,
html[data-theme="light"] .process-solution-card,
html[data-theme="light"] .solutions-page .solution-subgrid article {
  border-color: rgba(11, 90, 70, 0.14);
  color: #0b2a23;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 249, 245, 0.86)),
    radial-gradient(circle at 12% 0, rgba(91, 208, 173, 0.1), transparent 36%);
  box-shadow:
    0 22px 64px rgba(20, 68, 56, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

html[data-theme="light"] .innovation-page .research-two-column > div,
html[data-theme="light"] .mini-grid span,
html[data-theme="light"] .research-pillar-grid article,
html[data-theme="light"] .research-metrics article,
html[data-theme="light"] .solution-flow,
html[data-theme="light"] .media-carousel,
html[data-theme="light"] .industry-media-carousel,
html[data-theme="light"] .certificate-pair-carousel.media-carousel {
  border-color: rgba(11, 90, 70, 0.13);
  color: #0b2a23;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 246, 239, 0.88)),
    radial-gradient(circle at 50% 10%, rgba(91, 208, 173, 0.11), transparent 38%);
  box-shadow: 0 20px 58px rgba(20, 68, 56, 0.12);
}

html[data-theme="light"] .media-carousel::before,
html[data-theme="light"] .industry-media-carousel::after,
html[data-theme="light"] .research-card-carousel::after,
html[data-theme="light"] .research-hero-card figure::before,
html[data-theme="light"] .solutions-page .solution-subgrid article::after {
  opacity: 0.16;
}

html[data-theme="light"] .media-carousel-slide,
html[data-theme="light"] .industry-media-carousel .media-carousel-slide {
  filter: brightness(0.96) saturate(0.96);
}

html[data-theme="light"] .media-carousel-slide img,
html[data-theme="light"] .industry-media-carousel.media-carousel.is-contain .media-carousel-slide img,
html[data-theme="light"] .certificate-pair-carousel.media-carousel.is-contain .media-carousel-slide img {
  border-color: rgba(11, 90, 70, 0.14);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(20, 68, 56, 0.14);
}

html[data-theme="light"] .media-carousel-control,
html[data-theme="light"] .industry-media-carousel .media-carousel-control {
  color: #0b4538;
  border-color: rgba(11, 90, 70, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(20, 68, 56, 0.14);
}

html[data-theme="light"] .media-carousel-control:hover,
html[data-theme="light"] .industry-media-carousel .media-carousel-control:hover {
  color: #05251e;
  background: rgba(216, 246, 225, 0.96);
}

html[data-theme="light"] .media-carousel-dots button {
  background: rgba(11, 90, 70, 0.24);
}

html[data-theme="light"] .media-carousel-dots button.is-active {
  background: #0d7a5d;
  box-shadow: 0 0 18px rgba(13, 122, 93, 0.22);
}

html[data-theme="light"] .industry-media-carousel figcaption,
html[data-theme="light"] .research-card-carousel figcaption,
html[data-theme="light"] .media-caption,
html[data-theme="light"] .solutions-page .solution-subgrid h3 {
  color: #0b4538;
  text-shadow: none;
}

html[data-theme="light"] .solutions-page .solution-subgrid span,
html[data-theme="light"] .modal-summary,
html[data-theme="light"] .history-timeline strong,
html[data-theme="light"] .product-flow-card span,
html[data-theme="light"] .news-card span,
html[data-theme="light"] .business-grid span,
html[data-theme="light"] .contact-card strong {
  color: #0d7a5d;
  text-shadow: none;
}

html[data-theme="light"] body .section:not(.hero):not(.home-flow-section):not([data-channel-panel]) {
  color: #0b2a23 !important;
  background: #f2f8f4 !important;
}

html[data-theme="light"] body .section.research-hero-card,
html[data-theme="light"] body .section.research-two-column,
html[data-theme="light"] body .section.research-long-copy,
html[data-theme="light"] body .section.research-carousel-section,
html[data-theme="light"] body .section.industry-detail,
html[data-theme="light"] body .solutions-index,
html[data-theme="light"] body .process-solution-card,
html[data-theme="light"] body .solutions-page .solution-subgrid article {
  color: #0b2a23 !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 245, 0.88)),
    radial-gradient(circle at 12% 0, rgba(91, 208, 173, 0.1), transparent 36%) !important;
  border-color: rgba(11, 90, 70, 0.14) !important;
  box-shadow:
    0 22px 64px rgba(20, 68, 56, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76) !important;
}

/* Homepage editorial rhythm: alternate the major sections instead of stacking every title on one side. */
@media (min-width: 981px) {
  .home-capabilities,
  .home-delivery,
  .home-industries,
  .home-news {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    column-gap: clamp(34px, 6vw, 112px);
    row-gap: clamp(18px, 2vw, 32px);
    align-items: center;
    min-height: clamp(640px, 78svh, 900px);
  }

  .home-capabilities .home-section-kicker,
  .home-news .home-section-kicker {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin: 0;
  }

  .home-capabilities .home-statement,
  .home-news .home-statement {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin: 0;
  }

  .home-capabilities .capability-lane,
  .home-news .home-news-grid {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
  }

  .home-capabilities .capability-lane {
    min-height: clamp(520px, 52vw, 680px);
    transform: translateY(18px);
  }

  .home-capabilities .capability-tile.is-flow:nth-child(1),
  .home-capabilities .capability-tile.is-flow:nth-child(4) {
    transform: translateY(-18px);
  }

  .home-capabilities .capability-tile.is-flow:nth-child(1):hover,
  .home-capabilities .capability-tile.is-flow:nth-child(1):focus-visible,
  .home-capabilities .capability-tile.is-flow:nth-child(4):hover,
  .home-capabilities .capability-tile.is-flow:nth-child(4):focus-visible {
    transform: translateY(-24px);
  }

  .home-delivery {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  }

  .home-delivery .delivery-track {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: minmax(150px, auto);
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(158, 235, 199, 0.18);
    border-radius: 18px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%),
      rgba(158, 235, 199, 0.1);
    box-shadow: 0 28px 82px rgba(0, 15, 13, 0.22);
  }

  .home-delivery .delivery-track::before {
    inset: 50% 28px auto;
    z-index: 0;
  }

  .home-delivery .delivery-track a {
    min-height: 0;
    align-content: center;
    justify-items: start;
    padding: clamp(22px, 2.4vw, 34px);
    border: 1px solid rgba(190, 255, 226, 0.12);
    border-radius: 12px;
  }

  .home-delivery .delivery-track a:nth-child(1) {
    grid-column: 1 / span 2;
  }

  .home-delivery .delivery-track a:nth-child(2) {
    grid-column: 3 / span 2;
  }

  .home-delivery .delivery-track a:nth-child(3) {
    grid-column: 5 / span 2;
  }

  .home-delivery .delivery-track a:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .home-delivery .delivery-track a:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .home-delivery .home-delivery-copy {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    justify-self: end;
  }

  .home-industries {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  }

  .home-industries .industry-strip {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: stretch;
  }

  .home-industries .home-section-kicker {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0;
  }

  .home-industries .home-statement {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 0;
  }

  .home-industries .industry-strip a:nth-child(1),
  .home-industries .industry-strip a:nth-child(3) {
    transform: translateY(28px);
  }

  .home-industries .industry-strip a:nth-child(2),
  .home-industries .industry-strip a:nth-child(4) {
    transform: translateY(-18px);
  }

  .home-industries .industry-strip a:hover,
  .home-industries .industry-strip a:focus-visible {
    transform: translateY(-4px);
  }

  .home-news .home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: center;
    align-content: center;
    align-items: start;
  }

  .home-news .news-card img {
    height: 150px;
  }

  .home-news .news-card div {
    padding: 18px;
  }

  .home-news .news-card h3 {
    min-height: 0;
    font-size: 20px;
    line-height: 1.32;
  }

  .home-news .news-card p {
    min-height: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .home-news .news-card:nth-child(2),
  .home-news .news-card:nth-child(4) {
    transform: translateY(34px);
  }

  .home-news .news-card:hover,
  .home-news .news-card:focus-within {
    transform: translateY(-6px);
  }

  .home-section-kicker {
    padding-top: 8px;
    border-top: 1px solid rgba(183, 255, 223, 0.18);
  }

  html[data-theme="light"] .home-section-kicker {
    border-top-color: rgba(11, 90, 70, 0.16);
  }
}

@media (max-width: 980px) {
  .home-capabilities,
  .home-delivery,
  .home-industries,
  .home-news {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* CardSwap-style treatment for the homepage core capability cards. */
@media (min-width: 981px) {
  .home-capabilities .card-swap-lane {
    display: block;
    position: relative;
    min-height: clamp(560px, 52vw, 720px);
    border: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    perspective: 1180px;
    transform: translateY(18px);
  }

  .home-capabilities .card-swap-lane .capability-tile.is-flow {
    --swap-x: 0px;
    --swap-y: 0px;
    --swap-z: 0px;
    --swap-scale: 1;
    --swap-skew: 0deg;
    --swap-opacity: 1;
    --swap-brightness: 1;
    --swap-saturation: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(540px, 78%);
    height: clamp(350px, 32vw, 456px);
    min-height: 0;
    display: grid;
    align-content: end;
    padding: clamp(28px, 3vw, 42px);
    border: 1px solid rgba(184, 247, 218, 0.2);
    border-radius: 14px;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(8, 49, 41, 0.2), rgba(1, 17, 14, 0.92) 72%),
      rgba(2, 24, 20, 0.88);
    box-shadow:
      0 34px 92px rgba(0, 13, 10, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: var(--swap-opacity);
    filter: saturate(var(--swap-saturation)) brightness(var(--swap-brightness));
    transform:
      translate(-50%, -50%)
      translate3d(var(--swap-x), var(--swap-y), var(--swap-z))
      scale(var(--swap-scale))
      skewY(var(--swap-skew));
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition:
      transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 620ms ease,
      filter 620ms ease,
      box-shadow 620ms ease;
    will-change: transform, opacity, filter;
  }

  .home-capabilities .card-swap-lane .capability-tile.is-flow::after {
    background:
      linear-gradient(180deg, rgba(1, 16, 14, 0.04), rgba(1, 16, 14, 0.18) 46%, rgba(1, 16, 14, 0.94)),
      radial-gradient(circle at 20% 18%, rgba(189, 243, 94, 0.13), transparent 34%);
  }

  .home-capabilities .card-swap-lane .capability-tile.is-flow img {
    inset: 22px 22px auto;
    width: calc(100% - 44px);
    height: 58%;
    padding: 18px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(242, 247, 244, 0.95);
    opacity: 0.94;
    filter: none;
    transform: none;
  }

  .home-capabilities .card-swap-lane .capability-tile.is-flow:hover,
  .home-capabilities .card-swap-lane .capability-tile.is-flow:focus-visible {
    transform:
      translate(-50%, -50%)
      translate3d(var(--swap-x), var(--swap-y), var(--swap-z))
      scale(var(--swap-scale))
      skewY(var(--swap-skew));
    box-shadow:
      0 42px 104px rgba(0, 13, 10, 0.46),
      0 0 0 1px rgba(189, 243, 94, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .home-capabilities .card-swap-lane .capability-tile.is-flow:hover img,
  .home-capabilities .card-swap-lane .capability-tile.is-flow:focus-visible img {
    opacity: 1;
    transform: none;
  }

  .home-capabilities .card-swap-lane .capability-tile.is-flow[data-swap-slot="0"] {
    --swap-x: -56px;
    --swap-y: 42px;
    --swap-z: 0px;
    --swap-scale: 1;
    --swap-skew: 0deg;
    --swap-opacity: 1;
    --swap-brightness: 1;
    --swap-saturation: 1;
  }

  .home-capabilities .card-swap-lane .capability-tile.is-flow[data-swap-slot="1"] {
    --swap-x: 46px;
    --swap-y: -46px;
    --swap-z: -92px;
    --swap-scale: 0.96;
    --swap-skew: 3deg;
    --swap-opacity: 0.84;
    --swap-brightness: 0.9;
    --swap-saturation: 0.94;
  }

  .home-capabilities .card-swap-lane .capability-tile.is-flow[data-swap-slot="2"] {
    --swap-x: 146px;
    --swap-y: -132px;
    --swap-z: -184px;
    --swap-scale: 0.92;
    --swap-skew: 5deg;
    --swap-opacity: 0.66;
    --swap-brightness: 0.82;
    --swap-saturation: 0.88;
  }

  .home-capabilities .card-swap-lane .capability-tile.is-flow[data-swap-slot="3"] {
    --swap-x: 246px;
    --swap-y: -218px;
    --swap-z: -276px;
    --swap-scale: 0.88;
    --swap-skew: 6deg;
    --swap-opacity: 0.46;
    --swap-brightness: 0.74;
    --swap-saturation: 0.78;
  }

  html[data-theme="light"] .home-capabilities .card-swap-lane .capability-tile.is-flow {
    color: #f7fff9;
    border-color: rgba(9, 80, 63, 0.24);
    background:
      linear-gradient(180deg, rgba(12, 75, 60, 0.2), rgba(2, 29, 24, 0.9) 74%),
      rgba(5, 52, 42, 0.9);
    box-shadow:
      0 32px 84px rgba(24, 64, 54, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  html[data-theme="light"] .home-capabilities .card-swap-lane .capability-tile.is-flow span,
  html[data-theme="light"] .home-capabilities .card-swap-lane .capability-tile.is-flow strong {
    color: #f7fff9;
    text-shadow: 0 2px 18px rgba(0, 18, 14, 0.48);
  }
}

@media (min-width: 981px) and (max-width: 1240px) {
  .home-capabilities .card-swap-lane .capability-tile.is-flow {
    width: min(470px, 78%);
  }

  .home-capabilities .card-swap-lane .capability-tile.is-flow[data-swap-slot="2"] {
    --swap-x: 116px;
    --swap-y: -120px;
  }

  .home-capabilities .card-swap-lane .capability-tile.is-flow[data-swap-slot="3"] {
    --swap-x: 174px;
    --swap-y: -202px;
  }
}

/* Light-mode legibility pass: keep section imagery visible and force card text back to ink colors. */
html[data-theme="light"] .home-flow-section::after {
  background:
    linear-gradient(90deg, rgba(247, 251, 248, 0.38) 0%, rgba(239, 248, 244, 0.22) 46%, rgba(230, 242, 235, 0.08) 100%),
    linear-gradient(180deg, rgba(247, 251, 248, 0.26) 0%, rgba(244, 250, 247, 0.08) 46%, rgba(231, 242, 235, 0.22) 100%),
    radial-gradient(circle at 78% 28%, rgba(91, 208, 173, 0.1), transparent 34%),
    var(--home-section-image) var(--home-section-position, center)/cover no-repeat;
  filter: saturate(1.1) contrast(1.08) brightness(0.96);
  opacity: 1;
}

html[data-theme="light"] .home-contact-section::after {
  background:
    linear-gradient(90deg, rgba(247, 251, 248, 0.44) 0%, rgba(239, 248, 244, 0.24) 46%, rgba(230, 242, 235, 0.08) 100%),
    linear-gradient(180deg, rgba(247, 251, 248, 0.3) 0%, rgba(244, 250, 247, 0.08) 46%, rgba(231, 242, 235, 0.24) 100%),
    radial-gradient(circle at 78% 28%, rgba(91, 208, 173, 0.1), transparent 34%),
    var(--home-section-image) var(--home-section-position, center)/cover no-repeat;
  filter: saturate(1.1) contrast(1.08) brightness(0.96);
}

html[data-theme="light"] .news-card h3,
html[data-theme="light"] .product-flow-card h3,
html[data-theme="light"] .cert-card h3,
html[data-theme="light"] .lab-panel h3,
html[data-theme="light"] .capability-grid h3,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .business-grid h3,
html[data-theme="light"] .product-cards h3,
html[data-theme="light"] .history-timeline h3,
html[data-theme="light"] .quality-copy h3,
html[data-theme="light"] .contact-card h2,
html[data-theme="light"] .contact-map-panel h3,
html[data-theme="light"] .home-news .news-card h3 {
  color: #0b4538 !important;
  text-shadow: none !important;
}

html[data-theme="light"] .news-card p,
html[data-theme="light"] .product-flow-card p,
html[data-theme="light"] .cert-card p,
html[data-theme="light"] .lab-panel p,
html[data-theme="light"] .capability-grid p,
html[data-theme="light"] .feature-card p,
html[data-theme="light"] .business-grid p,
html[data-theme="light"] .product-cards p,
html[data-theme="light"] .history-timeline p,
html[data-theme="light"] .quality-copy p,
html[data-theme="light"] .profile-copy,
html[data-theme="light"] .product-intro p,
html[data-theme="light"] .lab-panel li,
html[data-theme="light"] .article-body p,
html[data-theme="light"] .business-intro p,
html[data-theme="light"] .home-news .news-card p {
  color: #526d64 !important;
  text-shadow: none !important;
}

html[data-theme="light"] .news-card button,
html[data-theme="light"] .section-more,
html[data-theme="light"] .news-tabs button,
html[data-theme="light"] .product-flow-card span,
html[data-theme="light"] .news-card span {
  color: #0d7a5d !important;
  text-shadow: none !important;
}

html[data-theme="light"] .profile-section-head h2,
html[data-theme="light"] .profile-longform h2,
html[data-theme="light"] .profile-copy h2,
html[data-theme="light"] .supplement-split .split-copy h2,
html[data-theme="light"] .research-two-column > div h2 {
  color: #0b4538 !important;
  text-shadow: none !important;
}

html[data-theme="light"] .profile-section-head p:not(.eyebrow),
html[data-theme="light"] .profile-copy,
html[data-theme="light"] .profile-copy p,
html[data-theme="light"] .supplement-split .split-copy p:not(.eyebrow),
html[data-theme="light"] .research-two-column > div p:not(.eyebrow) {
  color: #526d64 !important;
  text-shadow: none !important;
}

html[data-theme="light"] .inquiry-form label,
html[data-theme="light"] .inquiry-form label span {
  color: #0b4538 !important;
  text-shadow: none !important;
}

html[data-theme="light"] .inquiry-form input,
html[data-theme="light"] .inquiry-form textarea {
  color: #0b2a23 !important;
  border-color: rgba(11, 90, 70, 0.18) !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

html[data-theme="light"] .inquiry-form input::placeholder,
html[data-theme="light"] .inquiry-form textarea::placeholder,
html[data-theme="light"] .required-note,
html[data-theme="light"] .form-status {
  color: #607a72 !important;
}

html[data-theme="light"] .home-flow-section .button.ghost,
html[data-theme="light"] .contact-section .button.ghost {
  color: #0b4538 !important;
  border-color: rgba(11, 90, 70, 0.2) !important;
  background: rgba(255, 255, 255, 0.72) !important;
}

html[data-theme="light"] .home-flow-section .home-section-kicker,
html[data-theme="light"] .home-flow-section .home-statement,
html[data-theme="light"] .home-flow-section .home-delivery-copy,
html[data-theme="light"] .home-contact-section .contact-card,
html[data-theme="light"] .home-contact-section .contact-map-copy {
  color: #062f28;
  border: 1px solid rgba(7, 72, 58, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(247, 252, 249, 0.92), rgba(247, 252, 249, 0.72) 70%, rgba(247, 252, 249, 0.5)),
    rgba(247, 252, 249, 0.7);
  box-shadow:
    0 18px 46px rgba(23, 74, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(3px);
}

html[data-theme="light"] .home-flow-section .home-section-kicker {
  padding: 14px 16px;
}

html[data-theme="light"] .home-flow-section .home-statement,
html[data-theme="light"] .home-flow-section .home-delivery-copy,
html[data-theme="light"] .home-contact-section .contact-card {
  padding: clamp(18px, 2.2vw, 26px);
}

html[data-theme="light"] .home-flow-section .eyebrow,
html[data-theme="light"] .home-contact-section .eyebrow {
  color: #05644e !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

html[data-theme="light"] .home-statement h2,
html[data-theme="light"] .home-flow-section .home-delivery-copy h2,
html[data-theme="light"] .home-contact-section .contact-card h2,
html[data-theme="light"] .contact-map-panel h3 {
  color: #063b31 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

html[data-theme="light"] .home-statement p,
html[data-theme="light"] .home-flow-section .home-delivery-copy p:not(.eyebrow),
html[data-theme="light"] .home-contact-section .contact-card p,
html[data-theme="light"] .contact-map-panel p {
  color: #244e43 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.68) !important;
}

html[data-theme="light"] .home-flow-section .section-more {
  color: #063b31 !important;
  background: rgba(28, 190, 139, 0.78) !important;
  border-color: rgba(7, 92, 70, 0.2) !important;
  box-shadow: 0 14px 30px rgba(19, 122, 91, 0.16);
}

html[data-theme="light"] .home-contact-section .contact-map-copy {
  border-radius: 0;
  border-width: 0 1px 0 0;
}

/* 20260602t: default-light refinements and single-channel detail pages. */
.profile-page main,
.innovation-page main,
.industries-page main,
.solutions-page main,
.products-page main,
.qual-page main {
  padding-top: 104px;
}

.profile-page .page-hero,
.innovation-page .page-hero,
.industries-page .page-hero,
.solutions-page .page-hero,
.products-page .page-hero,
.qual-page .qual-hero {
  display: none;
}

.solutions-page .solutions-index {
  display: none;
}

.page-channel-tabs,
.solution-anchor-grid[data-channel-tabs] {
  position: sticky;
  top: 104px;
  z-index: 32;
  margin: 20px auto clamp(22px, 3vw, 40px);
  overflow: visible;
}

.innovation-page .page-hero + .section,
.industries-page .page-hero + .section,
.solutions-page .page-hero + .section {
  margin-top: 0;
}

@media (max-width: 720px) {
  .page-channel-tabs,
  .solution-anchor-grid[data-channel-tabs] {
    top: 86px;
    width: calc(100% - 28px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 14px auto 24px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .page-channel-tabs a,
  .solution-anchor-grid[data-channel-tabs] a {
    min-width: 0;
    flex: none;
  }
}

html[data-theme="light"] .hero h1,
html[data-theme="light"] .hero-subtitle,
html[data-theme="light"] .hero-content > p:not(.eyebrow):not(.hero-subtitle) {
  color: #f7fffb;
  text-shadow:
    0 2px 5px rgba(0, 22, 18, 0.72),
    0 18px 52px rgba(0, 22, 18, 0.48);
}

.hero-actions {
  gap: 10px;
  margin-top: 26px;
  padding: 7px;
  border: 1px solid rgba(222, 255, 237, 0.22);
  border-radius: 8px;
  background: rgba(4, 24, 21, 0.34);
  backdrop-filter: blur(14px);
}

.hero-actions .button {
  min-height: 44px;
  min-width: 154px;
  border-radius: 6px;
  padding: 0 20px;
}

.hero-panel {
  width: min(880px, calc(100% - 40px));
  margin-top: clamp(22px, 3vw, 34px);
  padding: 12px;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(7, 45, 38, 0.72), rgba(5, 31, 27, 0.66));
  border-color: rgba(213, 255, 233, 0.18);
  box-shadow:
    0 24px 70px rgba(0, 20, 16, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-metric {
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.hero-metric + .hero-metric {
  border-left: 0;
}

.hero-metric span {
  font-size: clamp(26px, 3vw, 46px);
}

html[data-theme="light"] .hero-actions {
  background: rgba(247, 252, 249, 0.78);
  border-color: rgba(7, 72, 58, 0.18);
  box-shadow: 0 18px 52px rgba(13, 58, 47, 0.16);
}

html[data-theme="light"] .hero-actions .button.primary {
  color: #05251e;
  background: linear-gradient(135deg, #b8f46f, #41d6a6);
}

html[data-theme="light"] .hero-actions .button.ghost {
  color: #07362d;
  border-color: rgba(7, 72, 58, 0.28);
  background: rgba(255, 255, 255, 0.68);
  text-shadow: none;
}

html[data-theme="light"] .hero-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(235, 248, 241, 0.74));
  border-color: rgba(7, 72, 58, 0.16);
  box-shadow:
    0 22px 64px rgba(16, 67, 54, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] .hero-metric {
  background: rgba(255, 255, 255, 0.62);
}

html[data-theme="light"] .hero-metric span {
  color: #087a5d;
  text-shadow: none;
}

html[data-theme="light"] .hero-metric p {
  color: #18483c;
}

.certificate-wall {
  width: min(1380px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
}

.certificate-wall figure {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 28, 24, 0.72);
  border: 1px solid rgba(211, 255, 235, 0.16);
}

.certificate-wall img {
  width: 100%;
  height: clamp(180px, 22vw, 300px);
  display: block;
  object-fit: contain;
  border-radius: 6px;
  background: #f8faf6;
}

.certificate-wall figcaption {
  margin-top: 8px;
  color: rgba(235, 251, 244, 0.82);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

html[data-theme="light"] .certificate-wall figure {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(7, 72, 58, 0.14);
  box-shadow: 0 14px 34px rgba(26, 84, 67, 0.12);
}

html[data-theme="light"] .certificate-wall figcaption {
  color: #17483d;
}

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

.profile-certificate-wall img {
  height: clamp(150px, 17vw, 238px);
}

.research-infrastructure-grid {
  margin-top: clamp(18px, 2.4vw, 28px);
}

.process-solution-card {
  padding: clamp(24px, 3vw, 44px);
  gap: clamp(22px, 3vw, 44px);
}

.solution-body p {
  font-size: clamp(14px, 0.92vw, 16px);
  line-height: 1.68;
}

.solution-bullets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.solution-bullets li {
  font-size: clamp(13px, 0.82vw, 15px);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .certificate-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .solutions-page #solution-vocs.process-solution-card.text-heavy {
    grid-template-columns: minmax(0, 1fr);
  }

  .solutions-page #solution-vocs .solution-content,
  .solutions-page #solution-vocs .solution-flow {
    min-width: 0;
  }

  .solution-bullets {
    grid-template-columns: 1fr;
  }
}

/* Delivery cards: reveal the matching project image only on hover/focus. */
@media (min-width: 981px) {
  .home-delivery .delivery-track a {
    transform-origin: center;
    transition:
      transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 260ms ease,
      color 260ms ease,
      background 260ms ease,
      border-color 260ms ease,
      box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .home-delivery .delivery-track a img {
    display: block;
    z-index: -1;
    opacity: 0;
    transform: scale(1.08);
    filter: saturate(0.98) contrast(1.1) brightness(0.74);
  }

  .home-delivery .delivery-track:has(a:hover) a:not(:hover),
  .home-delivery .delivery-track:has(a:focus-visible) a:not(:focus-visible) {
    opacity: 0.62;
    transform: scale(0.92);
  }

  .home-delivery .delivery-track:has(a:hover) a:hover,
  .home-delivery .delivery-track:has(a:focus-visible) a:focus-visible,
  .home-delivery .delivery-track a:hover,
  .home-delivery .delivery-track a:focus-visible {
    z-index: 4;
    opacity: 1;
    color: #f7fff9;
    border-color: rgba(189, 243, 94, 0.42);
    background:
      linear-gradient(180deg, rgba(2, 17, 15, 0.18), rgba(2, 17, 15, 0.72)),
      radial-gradient(circle at 24% 12%, rgba(189, 243, 94, 0.18), transparent 34%);
    box-shadow:
      0 28px 70px rgba(0, 10, 8, 0.34),
      0 0 0 1px rgba(189, 243, 94, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: scale(1.12);
  }

  .home-delivery .delivery-track a:hover img,
  .home-delivery .delivery-track a:focus-visible img {
    opacity: 0.82;
    transform: scale(1);
  }

  html[data-theme="light"] .home-delivery .delivery-track:has(a:hover) a:not(:hover),
  html[data-theme="light"] .home-delivery .delivery-track:has(a:focus-visible) a:not(:focus-visible) {
    opacity: 0.66;
  }

  html[data-theme="light"] .home-delivery .delivery-track:has(a:hover) a:hover,
  html[data-theme="light"] .home-delivery .delivery-track:has(a:focus-visible) a:focus-visible,
  html[data-theme="light"] .home-delivery .delivery-track a:hover,
  html[data-theme="light"] .home-delivery .delivery-track a:focus-visible {
    color: #f7fff9 !important;
    border-color: rgba(13, 111, 85, 0.3);
    background:
      linear-gradient(180deg, rgba(5, 42, 34, 0.12), rgba(5, 42, 34, 0.58)),
      radial-gradient(circle at 24% 12%, rgba(189, 243, 94, 0.16), transparent 34%);
    box-shadow:
      0 26px 64px rgba(20, 68, 56, 0.22),
      0 0 0 1px rgba(13, 111, 85, 0.1);
  }

  html[data-theme="light"] .home-delivery .delivery-track a:hover img,
  html[data-theme="light"] .home-delivery .delivery-track a:focus-visible img {
    opacity: 0.72;
    filter: saturate(1.04) contrast(1.04) brightness(0.86);
  }
}

/* Delivery section: processed laser-cutting photography supplied by the client. */
.home-delivery {
  --home-section-image: url("assets/home/delivery-laser-cutting.web.webp");
  --home-section-position: center 52%;
}

.home-delivery::after {
  background:
    linear-gradient(90deg, rgba(2, 17, 15, 0.76) 0%, rgba(2, 17, 15, 0.46) 48%, rgba(2, 17, 15, 0.72) 100%),
    linear-gradient(180deg, rgba(2, 17, 15, 0.34) 0%, rgba(2, 17, 15, 0.08) 48%, rgba(2, 17, 15, 0.62) 100%),
    var(--home-section-image) var(--home-section-position)/cover no-repeat;
  filter: saturate(0.96) contrast(1.08) brightness(0.9);
}

html[data-theme="light"] .home-delivery::after {
  background:
    linear-gradient(90deg, rgba(237, 247, 242, 0.18) 0%, rgba(245, 250, 247, 0.04) 48%, rgba(229, 241, 235, 0.16) 100%),
    linear-gradient(180deg, rgba(244, 250, 247, 0.1) 0%, transparent 54%, rgba(229, 241, 235, 0.12) 100%),
    var(--home-section-image) var(--home-section-position)/cover no-repeat;
  filter: saturate(0.94) contrast(1.02) brightness(1.04);
}

@media (max-width: 720px) {
  .home-delivery {
    --home-section-position: 52% center;
  }
}

/* Directus-managed page modules. Static HTML remains the loading/error fallback. */
.cms-managed-hidden,
[hidden].cms-managed-hidden {
  display: none !important;
}

.cms-layout-managed[data-cms-layout="image_left"] {
  direction: ltr;
}

.cms-layout-managed[data-cms-layout="image_right"] {
  direction: rtl;
}

.cms-layout-managed[data-cms-layout="image_left"] > *,
.cms-layout-managed[data-cms-layout="image_right"] > * {
  direction: ltr;
}

.cms-layout-managed[data-cms-layout="centered"] {
  text-align: center;
}

.cms-layout-managed[data-cms-layout="centered"] :is(p, h1, h2, h3) {
  margin-inline: auto;
}

.cms-layout-managed[data-cms-layout="full_width"] {
  width: 100%;
  max-width: none;
}

[data-cms-custom-sections] {
  display: grid;
  gap: clamp(32px, 6vw, 88px);
}

.cms-managed-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 6vw, 92px);
  min-height: 440px;
  border-top: 1px solid var(--line);
}

.cms-managed-section[data-cms-layout="image_left"] figure {
  order: -1;
}

.cms-managed-section[data-cms-layout="centered"],
.cms-managed-section[data-cms-layout="full_width"] {
  grid-template-columns: minmax(0, 1fr);
}

.cms-managed-section figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(1, 28, 22, 0.16);
}

.cms-managed-section figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cms-managed-copy > h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.cms-managed-copy > :is(p, div) {
  color: var(--muted);
  line-height: 1.85;
  max-width: 68ch;
}

.cms-managed-copy .button {
  display: inline-flex;
  margin-top: 24px;
}

.cms-managed-items {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.cms-managed-item {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 4vw, 42px);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), background 300ms ease;
}

.cms-managed-item:active {
  transform: translateY(1px) scale(0.99);
}

.cms-managed-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
}

.cms-managed-item h3,
.cms-managed-item p {
  margin: 0;
}

.cms-managed-item p {
  color: var(--muted);
  line-height: 1.7;
}

.cms-managed-value {
  color: var(--lime);
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.05em;
}

html[data-theme="light"] .cms-managed-item {
  background: rgba(250, 253, 251, 0.96);
}

@media (max-width: 767px) {
  .cms-managed-section,
  .cms-managed-section[data-cms-layout] {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 24px;
    direction: ltr;
  }

  .cms-managed-items {
    grid-template-columns: minmax(0, 1fr);
  }
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

/* Fixed project-consultation dialogue */
.consult-widget {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 26px);
  z-index: 49;
  font-family: inherit;
}

.consult-launcher {
  display: inline-flex;
  min-width: 136px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(203, 255, 232, 0.28);
  border-radius: 10px;
  color: #f7fffb;
  background: #087457;
  box-shadow: 0 18px 42px rgba(4, 65, 49, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), background-color 220ms ease;
}

.consult-launcher:hover {
  background: #0a8564;
  transform: translateY(-2px);
}

.consult-launcher:active {
  transform: translateY(1px) scale(0.98);
}

.consult-launcher:focus-visible,
.consult-panel button:focus-visible,
.consult-panel a:focus-visible,
.consult-panel input:focus-visible,
.consult-panel textarea:focus-visible {
  outline: 3px solid rgba(111, 218, 178, 0.42);
  outline-offset: 2px;
}

.consult-launcher-icon {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.consult-launcher-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consult-launcher-icon > span {
  position: absolute;
  top: -2px;
  right: -3px;
  width: 8px;
  height: 8px;
  border: 2px solid #087457;
  border-radius: 50%;
  background: #bdf35e;
  animation: consultStatusPulse 2.2s ease-in-out infinite;
}

.consult-panel {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(82px, 7vw, 96px);
  width: min(390px, calc(100vw - 28px));
  max-height: min(650px, calc(100dvh - 118px));
  display: grid;
  grid-template-rows: auto minmax(148px, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(7, 86, 65, 0.2);
  border-radius: 12px;
  color: #143f34;
  background: rgba(249, 253, 251, 0.98);
  box-shadow: 0 28px 70px rgba(4, 48, 37, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 220ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.consult-widget.is-open .consult-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.consult-panel-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 15px;
  color: #f7fffb;
  background: #064c3b;
  box-shadow: inset 0 -1px 0 rgba(213, 255, 236, 0.12);
}

.consult-panel-header > img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #f7fffb;
}

.consult-panel-header strong,
.consult-panel-header span {
  display: block;
}

.consult-panel-header strong {
  font-size: 16px;
  font-weight: 900;
}

.consult-panel-header div > span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  color: rgba(231, 251, 242, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.consult-panel-header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bdf35e;
}

.consult-panel-header button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: rgba(244, 255, 249, 0.82);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.consult-panel-header button:hover {
  background: rgba(255, 255, 255, 0.13);
}

.consult-panel-header button:active {
  transform: scale(0.96);
}

.consult-panel-header svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.consult-transcript {
  min-height: 0;
  overflow-y: auto;
  padding: 18px 16px;
  overscroll-behavior: contain;
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(245, 251, 248, 0.94)),
    radial-gradient(circle at 12% 10%, rgba(41, 151, 115, 0.08), transparent 36%);
}

.consult-message {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 10px;
  animation: consultMessageIn 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.consult-message:first-child {
  margin-top: 0;
}

.consult-message img {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid rgba(8, 116, 87, 0.18);
  border-radius: 50%;
  background: #fff;
}

.consult-message p {
  max-width: 82%;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(9, 93, 71, 0.1);
  border-radius: 10px 10px 10px 3px;
  color: #214f43;
  background: #edf6f2;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
}

.consult-message.is-user {
  justify-content: flex-end;
}

.consult-message.is-user p {
  border-color: #087457;
  border-radius: 10px 10px 3px 10px;
  color: #fff;
  background: #087457;
}

.consult-composer {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(7, 86, 65, 0.12);
  background: #fbfefc;
}

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

.consult-service-grid button,
.consult-skip,
.consult-restart {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(8, 116, 87, 0.2);
  border-radius: 8px;
  color: #075d47;
  background: #f1f8f5;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.consult-service-grid button:hover,
.consult-skip:hover,
.consult-restart:hover {
  border-color: #087457;
  background: #e5f3ed;
}

.consult-service-grid button:active,
.consult-skip:active,
.consult-restart:active,
.consult-submit:active {
  transform: translateY(1px) scale(0.98);
}

.consult-field {
  display: grid;
  gap: 7px;
}

.consult-field > span {
  color: #285449;
  font-size: 13px;
  font-weight: 850;
}

.consult-field input,
.consult-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 93, 70, 0.2);
  border-radius: 8px;
  color: #173f35;
  background: #fff;
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.consult-field input:focus,
.consult-field textarea:focus {
  border-color: #087457;
  box-shadow: inset 0 0 0 1px #087457;
}

.consult-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #5d746d;
  font-size: 12px;
  line-height: 1.5;
}

.consult-consent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: #087457;
}

.consult-form-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.consult-submit {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid #087457;
  border-radius: 8px;
  color: #fff;
  background: #087457;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.consult-submit:hover {
  background: #09684f;
}

.consult-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.consult-error {
  margin: 0;
  color: #a43b32;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
}

.consult-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px 12px;
  border-top: 1px solid rgba(7, 86, 65, 0.09);
  color: #71847e;
  background: #f5faf7;
  font-size: 11px;
  font-weight: 700;
}

.consult-panel-footer a {
  color: #087457;
  font-weight: 900;
  white-space: nowrap;
}

.consult-panel-footer a:hover {
  text-decoration: underline;
}

@keyframes consultMessageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes consultStatusPulse {
  0%, 100% { opacity: 0.72; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.12); }
}

@media (max-width: 620px) {
  .consult-widget {
    right: 12px;
    bottom: 12px;
  }

  .consult-launcher {
    min-width: 124px;
    min-height: 50px;
    padding-inline: 15px;
  }

  .consult-panel {
    right: 12px;
    bottom: 74px;
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 94px);
  }

  .consult-transcript {
    padding: 16px 14px;
  }

  .consult-composer {
    padding: 12px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consult-launcher-icon > span,
  .consult-message {
    animation: none;
  }

  .consult-panel,
  .consult-launcher {
    transition: none;
  }
}
