:root {
  --geshem-green: #009040;
  --geshem-green-dark: #007838;
  --geshem-green-soft: #e5f4eb;
  --industrial-gray: #808080;
  --silver-gray: #a8a8a8;
  --titanium-black: #090b0d;
  --graphite: #15191d;
  --cool-silver: #d7dee3;
  --industrial-blue: #4e8fb8;
  --signal-amber: #d8a34a;
  --deep-black: #050505;
  --ink: #151817;
  --muted: #656b68;
  --page-white: #f7f8f8;
  --surface: #ffffff;
  --line-gray: #e5e7e7;
  --shadow: 0 24px 70px rgba(10, 18, 15, 0.09);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f7f8f8 0%, #f2f4f3 34%, #f7f8f8 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.home-page {
  background: #000;
  color: rgba(246, 249, 250, 0.86);
}

body.product-category-dark {
  background: #000;
  color: rgba(246, 249, 250, 0.86);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 78px;
  margin: 0;
  border-bottom: 0;
  padding: 0 max(32px, calc((100vw - var(--max-width)) / 2));
  background: #000;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 220ms ease, box-shadow 220ms ease, min-height 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(8, 10, 12, 0.78);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand img {
  width: 152px;
  max-height: 54px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.15) contrast(1.04);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: rgba(246, 249, 250, 0.84);
  font-size: 13.5px;
  letter-spacing: 0.01em;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--signal-amber);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

/* ── 导航下拉菜单 ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: rgba(246, 249, 250, 0.84);
  cursor: pointer;
  font: inherit;
  font-size: 13.5px;
  letter-spacing: 0.01em;
}

.nav-dropdown-trigger:hover {
  color: #fff;
}

.nav-dropdown-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown-trigger[aria-expanded="true"] .nav-dropdown-arrow {
  transform: translateY(1px) rotate(-135deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: none;
  flex-direction: column;
  min-width: 160px;
  border: 1px solid rgba(215, 222, 227, 0.14);
  border-radius: 8px;
  padding: 8px;
  background: rgba(12, 15, 17, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

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

.nav-dropdown-menu a {
  border-radius: 6px;
  padding: 10px 14px;
  color: rgba(246, 249, 250, 0.86);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(216, 163, 74, 0.14);
  color: #fff;
}

.nav-dropdown-menu a::after {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button-primary {
  background: var(--geshem-green);
  color: #fff;
}

.button-primary:hover {
  background: var(--geshem-green-dark);
  transform: translateY(-1px);
}

.language-select {
  position: relative;
  justify-self: end;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(215, 222, 227, 0.18);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 249, 250, 0.92);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-trigger::before {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url("assets/images/globe-map-icon.svg") center / contain no-repeat;
  content: "";
}

.language-trigger::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.language-trigger span {
  line-height: 1;
}

.language-trigger:hover {
  border-color: rgba(216, 163, 74, 0.48);
  color: #fff;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: none;
  min-width: 190px;
  border: 1px solid rgba(215, 222, 227, 0.14);
  border-radius: 8px;
  padding: 8px;
  background: rgba(12, 15, 17, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.language-menu.is-open {
  display: grid;
}

.language-menu a {
  border-radius: 6px;
  padding: 10px 12px;
  color: rgba(246, 249, 250, 0.86);
  font-size: 14px;
  font-weight: 750;
}

.language-menu a:hover {
  background: rgba(216, 163, 74, 0.14);
  color: #fff;
}

.button-secondary {
  border-color: #cfd5d2;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--geshem-green);
  color: var(--geshem-green-dark);
}

.button-ai {
  border-color: rgba(0, 144, 64, 0.42);
  background: rgba(0, 144, 64, 0.08);
  color: var(--geshem-green-dark);
  box-shadow: inset 0 0 0 1px rgba(0, 144, 64, 0.06);
  cursor: pointer;
}

.button-ai::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--geshem-green);
  content: "";
}

.button-ai:hover {
  border-color: var(--geshem-green);
  color: var(--geshem-green-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: 26px;
  width: min(100% - 40px, var(--max-width));
  min-height: 58vh;
  margin: 0 auto;
  padding: 38px 0 18px;
}

.hero-copy {
  max-width: 640px;
}

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

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

h1 {
  margin-bottom: 24px;
  color: var(--deep-black);
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--deep-black);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--deep-black);
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.feature-copy p,
.about-content p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 350px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 104px 0;
}

.product-section {
  width: 100%;
}

.product-top-section {
  margin: 0 auto;
  padding: 0 0 104px;
}

.immersive-product-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  width: 100vw;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  padding: 84px max(32px, calc((100vw - 1280px) / 2)) 72px;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.88) 0%, rgba(5, 6, 7, 0.62) 42%, rgba(5, 6, 7, 0.2) 72%),
    var(--home-hero-bg, none),
    radial-gradient(circle at 72% 34%, rgba(78, 143, 184, 0.32), transparent 28%),
    radial-gradient(circle at 86% 68%, rgba(216, 163, 74, 0.18), transparent 24%),
    linear-gradient(135deg, #050607 0%, #11161a 42%, #20252a 100%);
  background-position: center;
  background-size: cover;
  color: #fff;
  cursor: pointer;
  isolation: isolate;
}

.immersive-product-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 22% 64%, rgba(255, 255, 255, 0.045)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 88px);
  content: "";
  opacity: 0.38;
}

.immersive-product-hero::after {
  position: absolute;
  inset: -22% -32%;
  z-index: -1;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.18) 48%, transparent 66%);
  content: "";
  transform: translateX(-44%) rotate(8deg);
  animation: heroLightSweep 8s ease-in-out infinite;
}

body.home-page .immersive-product-hero {
  background: transparent;
}

body.home-page .immersive-product-hero::before,
body.home-page .immersive-product-hero::after {
  display: none;
}

.immersive-product-bg span {
  position: absolute;
  border: 1px solid rgba(215, 222, 227, 0.14);
  border-radius: 999px;
  pointer-events: none;
}

.immersive-product-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.immersive-product-bg span:nth-child(1) {
  right: 9%;
  bottom: 10%;
  width: 560px;
  height: 560px;
  animation: heroOrbit 14s linear infinite;
}

.immersive-product-bg span:nth-child(2) {
  right: -120px;
  top: 10%;
  width: 360px;
  height: 360px;
  border-color: rgba(78, 143, 184, 0.2);
}

.immersive-product-bg span:nth-child(3) {
  left: 48%;
  bottom: -180px;
  width: 480px;
  height: 480px;
  border-color: rgba(216, 163, 74, 0.16);
}

.immersive-product-copy {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-rows: 26px 170px 64px 78px 48px;
  row-gap: 14px;
  max-width: 720px;
  min-height: 472px;
  text-align: left;
  animation: heroCopyIn 760ms ease both;
}

.immersive-product-copy .eyebrow {
  align-self: start;
  margin: 0;
  color: #9bd8ff;
}

.immersive-product-copy h1 {
  align-self: start;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 760px;
  max-height: 2.12em;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.55vw, 72px);
  line-height: 1.04;
  text-align: center;
  text-wrap: balance;
  white-space: pre-line;
}

.immersive-product-copy h1 span {
  display: block;
  white-space: nowrap;
}

.immersive-product-copy p:not(.eyebrow) {
  align-self: start;
  display: -webkit-box;
  overflow: hidden;
  max-width: 680px;
  margin: 0;
  color: rgba(235, 241, 245, 0.78);
  font-size: 19px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.immersive-product-hero.is-slide-changing .immersive-product-copy h1,
.immersive-product-hero.is-slide-changing .immersive-product-copy p:not(.eyebrow),
.immersive-product-hero.is-slide-changing .immersive-product-meta {
  animation: heroTextFade 520ms ease both;
}

.immersive-product-meta {
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
  margin: 0;
  overflow: hidden;
}

.immersive-product-meta span {
  min-height: 34px;
  border: 1px solid rgba(215, 222, 227, 0.22);
  border-radius: 999px;
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 249, 250, 0.84);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.immersive-product-actions {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.immersive-product-actions .button {
  min-width: 122px;
}

.hero-rotator-dots {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2));
  bottom: 34px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-rotator-dots button {
  width: 32px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.hero-rotator-dots button.is-active {
  width: 58px;
  background: var(--signal-amber);
}

.immersive-product-hero .button-primary {
  /* 主 CTA：联系工程师 — 实心琥珀色，最强视觉优先级 */
  background: var(--signal-amber);
  color: #111;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(216, 163, 74, 0.45);
}

.immersive-product-hero .button-primary:hover {
  background: #efbd64;
  box-shadow: 0 6px 24px rgba(216, 163, 74, 0.58);
  transform: translateY(-2px);
}

.immersive-product-hero .button-secondary {
  /* 次级按钮：边框样式，低调 */
  min-height: 44px;
  border-color: rgba(215, 222, 227, 0.36);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 249, 250, 0.82);
  backdrop-filter: blur(14px);
}

.immersive-product-hero .button-secondary:hover {
  border-color: rgba(215, 222, 227, 0.6);
  color: #fff;
}

.immersive-product-hero .button-ai {
  /* AI选型：第三优先级，绿色边框点缀 */
  min-height: 40px;
  border-color: rgba(0, 176, 95, 0.45);
  background: rgba(0, 144, 64, 0.06);
  color: rgba(36, 222, 134, 0.9);
  font-size: 14px;
}

.immersive-product-hero .button-ai::before {
  background: #24de86;
  box-shadow: 0 0 0 4px rgba(0, 176, 95, 0.1);
  animation: aiSignalPulse 1.9s ease-in-out infinite;
}

.immersive-product-hero .button-ai:hover {
  border-color: rgba(36, 222, 134, 0.72);
  background: rgba(0, 144, 64, 0.12);
  color: #24de86;
}

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

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

.immersive-product-media {
  position: relative;
  z-index: 2;
  min-height: 560px;
  animation: heroProductFloat 7s ease-in-out infinite;
}

.immersive-product-media::before {
  position: absolute;
  right: 10%;
  bottom: 6%;
  left: 10%;
  height: 26%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.58), transparent 68%);
  content: "";
  filter: blur(16px);
  transform: perspective(620px) rotateX(62deg);
}

.immersive-product-media img {
  position: absolute;
  right: -2%;
  bottom: 4%;
  width: min(790px, 100%);
  max-height: 86%;
  object-fit: contain;
  filter:
    drop-shadow(0 38px 48px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 24px rgba(78, 143, 184, 0.22));
  transform-origin: 55% 58%;
  animation: heroProductZoom 12s ease-in-out infinite;
}

.product-showcase {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.product-finder {
  scroll-margin-top: 96px;
  width: 100%;
  border-top: 0;
  border-bottom: 0;
  padding: 54px max(24px, calc((100vw - 1280px) / 2)) 62px;
  background: #000;
  color: #f7fafb;
}

.product-finder-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.product-finder-toolbar h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
}

.product-finder-toolbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(215, 222, 227, 0.24);
  border-radius: 6px;
  padding: 0 14px;
  color: rgba(247, 250, 251, 0.8);
  font-size: 14px;
  font-weight: 800;
}

.product-family-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 26px;
}

.product-family-tabs a,
.product-family-tabs button,
.finder-filter-options button {
  min-height: 44px;
  border: 1px solid rgba(247, 250, 251, 0.42);
  border-radius: 999px;
  padding: 0 20px;
  background: transparent;
  color: rgba(247, 250, 251, 0.62);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.product-family-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-family-tabs a:hover,
.product-family-tabs a:focus-visible,
.product-family-tabs button.is-active,
.product-family-tabs button:hover,
.finder-filter-options button.is-active,
.finder-filter-options button:hover {
  border-color: #fff;
  background: #fff;
  color: #101214;
}

.product-finder-filters {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(215, 222, 227, 0.08);
  padding: 20px 0;
}

.product-finder-filters > p {
  margin: 0;
  color: rgba(247, 250, 251, 0.55);
}

.finder-filter-group {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.finder-filter-group strong {
  padding-top: 9px;
  color: rgba(247, 250, 251, 0.72);
  font-size: 14px;
}

.finder-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.finder-filter-options button {
  min-height: 34px;
  padding: 0 13px;
  border-color: rgba(247, 250, 251, 0.18);
  color: rgba(247, 250, 251, 0.64);
  font-size: 13px;
}

.product-finder-status {
  border-top: 1px solid rgba(215, 222, 227, 0.08);
  padding: 18px 0 22px;
  color: rgba(247, 250, 251, 0.56);
  font-size: 14px;
  font-weight: 800;
}

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

.finder-product-card {
  position: relative;
  display: grid;
  min-height: 560px;
  border: 1px solid rgba(215, 222, 227, 0.08);
  border-radius: 8px;
  padding: 28px;
  background: #080a0a;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.finder-product-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: transparent;
  content: "";
  transition: background 180ms ease;
}

.finder-product-card:hover {
  border-color: rgba(0, 176, 95, 0.72);
  box-shadow: none;
}

.finder-product-card:hover::before {
  background: transparent;
}

.finder-product-card > span {
  position: relative;
  z-index: 1;
  color: rgba(247, 250, 251, 0.54);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.finder-product-card > span::first-letter {
  color: var(--geshem-green);
}

.finder-product-card img {
  width: 100%;
  height: 220px;
  margin: 28px 0 26px;
  object-fit: contain;
}

.finder-product-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.finder-product-card p {
  margin: 0 0 22px;
  color: rgba(247, 250, 251, 0.72);
}

.finder-category-card {
  min-height: 470px;
  color: inherit;
}

.finder-product-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(215, 222, 227, 0.08);
}

.finder-product-card dt {
  margin-bottom: 4px;
  color: rgba(247, 250, 251, 0.48);
  font-size: 13px;
  font-weight: 800;
}

.finder-product-card dd {
  margin: 0;
  color: rgba(247, 250, 251, 0.86);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.finder-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(215, 222, 227, 0.08);
}

.finder-card-actions a {
  color: rgba(247, 250, 251, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.finder-card-actions a:first-child {
  color: var(--geshem-green);
}

.finder-empty-state {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid rgba(215, 222, 227, 0.08);
  border-radius: 8px;
  padding: 24px;
  color: rgba(247, 250, 251, 0.66);
  background: #101314;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: #090b0d;
}

.product-banner {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(215, 222, 227, 0.16);
  border-radius: 0;
  padding: 76px max(32px, calc((100vw - 1280px) / 2));
  background:
    radial-gradient(circle at 76% 46%, rgba(78, 143, 184, 0.24), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(216, 163, 74, 0.12), transparent 24%),
    linear-gradient(135deg, #050607 0%, #101417 48%, #171d20 100%);
  color: #fff;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-banner:nth-child(2),
.product-banner:nth-child(5) {
  background:
    radial-gradient(circle at 24% 46%, rgba(78, 143, 184, 0.2), transparent 28%),
    radial-gradient(circle at 86% 84%, rgba(216, 163, 74, 0.1), transparent 24%),
    linear-gradient(135deg, #101113 0%, #151719 48%, #0b0c0e 100%);
}

.product-banner:nth-child(3),
.product-banner:nth-child(6) {
  background:
    radial-gradient(circle at 76% 46%, rgba(78, 143, 184, 0.18), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(0, 144, 64, 0.12), transparent 26%),
    linear-gradient(135deg, #151619 0%, #0f1114 48%, #08090b 100%);
}

.product-banner[data-banner-href] {
  cursor: pointer;
}

.product-banner[data-banner-href]:focus-visible {
  border-color: var(--geshem-green);
  box-shadow:
    0 0 0 4px rgba(0, 144, 64, 0.14),
    0 18px 52px rgba(10, 18, 15, 0.08);
  outline: none;
}

.product-banner-large {
  min-height: 620px;
}

.product-banner-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  align-self: start;
}

.product-banner-copy span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(246, 249, 250, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-banner-copy span b {
  color: var(--geshem-green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
}

.product-banner-copy span::after {
  width: 32px;
  height: 1px;
  background: rgba(0, 144, 64, 0.45);
  content: "";
}

.product-banner-copy::after {
  display: block;
  width: 78px;
  height: 3px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--signal-amber), rgba(142, 224, 173, 0.35));
  content: "";
}

.product-banner p,
.solution-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-banner p {
  color: rgba(235, 241, 245, 0.74);
}

.product-banner h3 {
  color: #fff;
  font-size: clamp(38px, 4.9vw, 68px);
  line-height: 1.04;
}

.product-banner-copy em {
  display: block;
  margin: -4px 0 18px;
  color: rgba(235, 241, 245, 0.46);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.product-banner-tags small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(215, 222, 227, 0.12);
  border-radius: 4px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(235, 241, 245, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-banner:hover {
  background:
    radial-gradient(circle at 76% 46%, rgba(78, 143, 184, 0.32), transparent 30%),
    radial-gradient(circle at 92% 84%, rgba(216, 163, 74, 0.18), transparent 24%),
    linear-gradient(135deg, #050607 0%, #12181b 48%, #1d2528 100%);
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.mini-ai-button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 22px;
  border: 1px solid rgba(0, 144, 64, 0.24);
  border-radius: 999px;
  padding: 0 13px;
  background: var(--geshem-green-soft);
  color: var(--geshem-green-dark);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mini-ai-button::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 7px;
  background: var(--geshem-green);
  content: "";
}

.mini-ai-button:hover {
  background: var(--geshem-green);
  color: #fff;
  transform: translateY(-1px);
}

.mini-ai-button:hover::before {
  background: #fff;
}

.product-banner-actions {
  position: absolute;
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 56px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.product-banner-alt .product-banner-copy {
  justify-self: end;
  max-width: 590px;
}

.product-banner-alt .product-image-wrap {
  right: auto;
  left: max(32px, calc((100vw - 1280px) / 2));
}

.product-banner-alt .product-banner-actions {
  right: max(32px, calc((100vw - 1280px) / 2));
  left: auto;
}

.banner-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(215, 222, 227, 0.24);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.banner-action:hover {
  border-color: rgba(142, 224, 173, 0.48);
  color: #fff;
  transform: translateY(-1px);
}

.banner-action-primary {
  border-color: var(--signal-amber);
  background: var(--signal-amber);
  color: #111;
}

.banner-action-primary:hover {
  background: #efbd64;
  color: #111;
}

.product-image-wrap {
  position: absolute;
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 96px;
  z-index: 1;
  width: min(48vw, 640px);
  height: 62%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(215, 222, 227, 0.1);
  border-radius: 10px;
  padding: 28px;
  background:
    radial-gradient(circle at 62% 34%, rgba(78, 143, 184, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    #111417;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 80px rgba(0, 0, 0, 0.24);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.product-banner-large .product-image-wrap {
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 104px;
  width: min(52vw, 720px);
  height: 66%;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.product-banner:hover .product-image-wrap {
  border-color: rgba(142, 224, 173, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(78, 143, 184, 0.14),
    0 0 34px rgba(78, 143, 184, 0.2),
    0 28px 86px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px) scale(1.018);
}

@keyframes heroLightSweep {
  0%,
  48% {
    transform: translateX(-48%) rotate(8deg);
    opacity: 0;
  }
  58% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(42%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes heroProductFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes heroProductZoom {
  0%,
  100% {
    transform: scale(1) translateX(0);
  }
  50% {
    transform: scale(1.045) translateX(-10px);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes parameterGlowSweep {
  0% {
    opacity: 0;
    transform: translateX(-110%);
  }

  18%,
  72% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
    transform: translateX(110%);
  }
}

@keyframes categoryBorderTraceHorizontal {
  0% {
    top: 0;
    left: 8px;
    opacity: 1;
  }

  23% {
    top: 0;
    left: calc(100% - 84px);
    opacity: 1;
  }

  24%,
  49% {
    top: 0;
    left: calc(100% - 84px);
    opacity: 0;
  }

  50% {
    top: calc(100% - 1px);
    left: calc(100% - 84px);
    opacity: 1;
  }

  73% {
    top: calc(100% - 1px);
    left: 8px;
    opacity: 1;
  }

  74%,
  100% {
    top: calc(100% - 1px);
    left: 8px;
    opacity: 0;
  }
}

@keyframes categoryBorderTraceVertical {
  0%,
  24% {
    top: 8px;
    left: calc(100% - 1px);
    opacity: 0;
  }

  25% {
    top: 8px;
    left: calc(100% - 1px);
    opacity: 1;
  }

  48% {
    top: calc(100% - 84px);
    left: calc(100% - 1px);
    opacity: 1;
  }

  49%,
  74% {
    top: calc(100% - 84px);
    left: calc(100% - 1px);
    opacity: 0;
  }

  75% {
    top: calc(100% - 84px);
    left: 0;
    opacity: 1;
  }

  98% {
    top: 8px;
    left: 0;
    opacity: 1;
  }

  99%,
  100% {
    top: 8px;
    left: 0;
    opacity: 0;
  }
}

@keyframes heroOrbit {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .immersive-product-hero::after,
  .immersive-product-copy,
  .immersive-product-media,
  .immersive-product-media img,
  .immersive-product-bg span:nth-child(1) {
    animation: none;
  }
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 40px;
  width: 100%;
  padding: 96px max(20px, calc((100vw - var(--max-width)) / 2));
  background: #111513;
  color: #fff;
}

.feature-band h2,
.feature-band .eyebrow {
  color: #fff;
}

.feature-band .eyebrow {
  color: #8ee0ad;
}

.feature-copy p {
  color: #c9d2ce;
}

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

.spec-list div,
.about-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 200ms ease, background 200ms ease;
}

.spec-list div:hover {
  border-color: rgba(0, 144, 64, 0.4);
  background: rgba(0, 144, 64, 0.06);
}

.spec-list strong,
.about-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

.spec-list strong {
  color: var(--geshem-green);
}

.spec-list span,
.about-metrics span {
  color: #c9d2ce;
}

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

.solution-list article {
  min-height: 184px;
  border: 1px solid var(--line-gray);
  border-left: 3px solid var(--geshem-green);
  border-radius: 4px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.58);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.solution-list article:hover {
  border-left-color: var(--geshem-green-dark);
  box-shadow: 0 8px 28px rgba(0, 144, 64, 0.1);
  transform: translateY(-2px);
}

.solution-list article:nth-child(2) { border-left-color: #4e8fb8; }
.solution-list article:nth-child(2):hover { border-left-color: #3a7aa8; }
.solution-list article:nth-child(3) { border-left-color: #d8a34a; }
.solution-list article:nth-child(3):hover { border-left-color: #c08830; }
.solution-list article:nth-child(4) { border-left-color: #9b6dc5; }
.solution-list article:nth-child(4):hover { border-left-color: #8559b5; }
.solution-list article:nth-child(5) { border-left-color: #e05a3a; }
.solution-list article:nth-child(5):hover { border-left-color: #c84828; }
.solution-list article:nth-child(6) { border-left-color: #3aab7a; }
.solution-list article:nth-child(6):hover { border-left-color: #2a9468; }

.solution-list .text-link {
  display: inline-flex;
  margin-top: 18px;
}

/* 解决方案场景图标 */
.solution-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 14px;
}

/* 表单提交感谢状态 */
.contact-form-thanks {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 320px;
  border: 1px solid rgba(0, 144, 64, 0.2);
  border-radius: 10px;
  padding: 40px 30px;
  background: rgba(0, 144, 64, 0.04);
  text-align: center;
}

.contact-form-thanks.is-visible {
  display: flex;
}

.contact-thanks-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--geshem-green);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

.contact-form-thanks h3 {
  margin: 0;
  color: var(--deep-black);
  font-size: 24px;
}

.contact-form-thanks p {
  margin: 0;
  max-width: 380px;
  color: var(--muted);
}

/* 移动端汉堡菜单 × 切换 */
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle span {
  transition: transform 200ms ease;
}

/* 表单必填/选填标记 */
.required-mark {
  display: inline-block;
  margin-left: 4px;
  color: var(--signal-amber);
  font-weight: 800;
}

.optional-mark {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 249, 250, 0.5);
  font-size: 11px;
  font-weight: 700;
}

.articles-section {
  border-top: 1px solid var(--line-gray);
}

.article-preview-grid,
.article-list,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-preview-grid article,
.article-list article,
.resource-grid article {
  border: 1px solid var(--line-gray);
  border-radius: 10px;
  padding: 24px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.article-preview-grid article:hover,
.article-list article:hover {
  border-color: rgba(0, 144, 64, 0.3);
  box-shadow: 0 6px 24px rgba(0, 144, 64, 0.08);
  transform: translateY(-2px);
}

.article-preview-grid span,
.article-list span,
.resource-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--geshem-green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-preview-grid p,
.article-list p,
.resource-grid p {
  color: var(--muted);
}

.article-preview-grid a:hover,
.article-list a:hover {
  color: var(--geshem-green-dark);
}

.solutions-page {
  width: 100vw;
  min-height: calc(100vh - 92px);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 0 0 100px;
  background:
    radial-gradient(circle at 78% 10%, rgba(78, 143, 184, 0.24), transparent 32%),
    radial-gradient(circle at 14% 28%, rgba(0, 144, 64, 0.12), transparent 24%),
    linear-gradient(180deg, #070809 0%, #101314 54%, #070809 100%);
  color: #f7fafb;
}

.solutions-page .resource-hero,
.solutions-page .resource-grid,
.solutions-page .detail-cta {
  width: min(100% - 40px, var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.solutions-page .resource-hero {
  padding: 96px 0 54px;
}

.solutions-page .resource-hero h1 {
  color: #fff;
}

.solutions-page .resource-hero p:not(.eyebrow) {
  color: rgba(235, 241, 245, 0.74);
}

.solutions-page .resource-grid {
  gap: 16px;
}

.solutions-page .resource-grid article {
  position: relative;
  display: grid;
  min-height: 300px;
  overflow: hidden;
  border-color: rgba(215, 222, 227, 0.12);
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    #101314;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.solutions-page .resource-grid article::before {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, rgba(0, 144, 64, 0.72) 34%, rgba(168, 168, 168, 0.74) 52%, transparent 72%);
  content: "";
  opacity: 0;
  transform: translateX(-115%);
  pointer-events: none;
}

.solutions-page .resource-grid article::after {
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 144, 64, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    #101314;
  content: "";
  pointer-events: none;
}

.solutions-page .resource-grid article > * {
  position: relative;
  z-index: 1;
}

.solutions-page .resource-grid article:hover {
  border-color: rgba(0, 144, 64, 0.58);
  box-shadow:
    0 0 0 1px rgba(168, 168, 168, 0.14),
    0 0 24px rgba(0, 144, 64, 0.22),
    0 24px 54px rgba(0, 0, 0, 0.26);
  transform: translateY(-3px);
}

.solutions-page .resource-grid article:hover::before {
  animation: parameterGlowSweep 980ms ease;
}

.solutions-page .resource-grid h2 {
  color: #fff;
  font-size: 24px;
}

.solutions-page .resource-grid p {
  color: rgba(235, 241, 245, 0.68);
}

.solutions-page .resource-grid .text-link {
  align-self: end;
  color: #24de86;
}

.solutions-page .resource-grid .text-link:hover {
  color: #fff;
}

.solutions-page .detail-cta {
  margin-top: 18px;
  border: 1px solid rgba(215, 222, 227, 0.12);
  background:
    linear-gradient(135deg, rgba(0, 144, 64, 0.16), rgba(255, 255, 255, 0.04)),
    #101314;
}

.section-link {
  display: inline-flex;
  margin-top: 24px;
}

.case-strip,
.about-section,
.contact-section {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.case-strip {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 76px 0;
  border-top: 1px solid var(--line-gray);
  border-bottom: 1px solid var(--line-gray);
}

.case-strip h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.text-link {
  color: var(--geshem-green-dark);
  font-weight: 800;
  white-space: nowrap;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 44px;
  padding: 104px 0;
}

.about-metrics {
  display: grid;
  gap: 12px;
}

.about-metrics div {
  border-color: var(--line-gray);
  background: #fff;
}

.about-metrics strong {
  color: var(--deep-black);
}

.about-metrics span {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  padding: 96px 0 110px;
}

.contact-hero {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 94px 0 58px;
}

.contact-inquiry-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: 64px;
  align-items: start;
  padding-bottom: 72px;
}

.contact-hero div {
  min-width: 0;
  max-width: 820px;
}

.contact-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6.6vw, 78px);
}

.contact-inquiry-hero h1 {
  font-size: clamp(40px, 3.8vw, 60px);
  line-height: 1.08;
}

.contact-inquiry-hero h1 span {
  display: block;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}

.contact-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 18px;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.contact-info-panel,
.map-placeholder {
  min-height: 460px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  background: #fff;
}

.contact-info-panel {
  padding: 30px;
}

.contact-info-panel p {
  color: var(--muted);
}

.contact-info-panel dl {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
}

.contact-info-panel dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}

.contact-info-panel dd {
  margin: 0;
  color: var(--deep-black);
  font-weight: 750;
}

.map-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.76)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(0, 144, 64, 0.08) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(5, 5, 5, 0.06) 38px 39px),
    #eef2f0;
}

.map-placeholder::before,
.map-placeholder::after {
  position: absolute;
  border-radius: 999px;
  content: "";
}

.map-placeholder::before {
  width: 330px;
  height: 330px;
  border: 1px solid rgba(0, 144, 64, 0.18);
}

.map-placeholder::after {
  width: 18px;
  height: 18px;
  background: var(--geshem-green);
  box-shadow: 0 0 0 10px rgba(0, 144, 64, 0.12);
}

.map-placeholder div {
  position: relative;
  z-index: 1;
  max-width: 410px;
  text-align: center;
}

.map-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--geshem-green);
  color: #fff;
  font-weight: 800;
}

.map-placeholder p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(10, 18, 15, 0.07);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #3e4642;
  font-size: 14px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9dedc;
  border-radius: 6px;
  padding: 12px 13px;
  background: #fbfcfc;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--geshem-green);
  box-shadow: 0 0 0 4px rgba(0, 144, 64, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--geshem-green-dark);
  font-weight: 750;
}

body.home-page .feature-band,
body.home-page .video-entry-section,
body.home-page .solutions-section,
body.home-page .articles-section,
body.home-page .about-section,
body.home-page .contact-section {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  border-top: 0;
  border-bottom: 0;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  background: transparent;
  color: rgba(246, 249, 250, 0.86);
}

body.home-page .video-entry-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

body.home-page .video-entry-section::before {
  opacity: 0;
}

body.home-page .section-heading .eyebrow,
body.home-page .feature-band .eyebrow,
body.home-page .about-section .eyebrow,
body.home-page .contact-section .eyebrow {
  color: #8ee0ad;
}

body.home-page .section-heading h2,
body.home-page .feature-band h2,
body.home-page .about-section h2,
body.home-page .contact-section h2,
body.home-page .solution-list h3,
body.home-page .article-preview-grid h3,
body.home-page .video-entry-card strong {
  color: #fff;
}

body.home-page .section-heading p,
body.home-page .feature-copy p,
body.home-page .about-content p,
body.home-page .contact-copy p,
body.home-page .solution-list p,
body.home-page .article-preview-grid p,
body.home-page .video-entry-card em {
  color: rgba(235, 241, 245, 0.66);
}

body.home-page .spec-list div,
body.home-page .video-entry-card,
body.home-page .solution-list article,
body.home-page .article-preview-grid article,
body.home-page .about-metrics div,
body.home-page .contact-form {
  border: 1px solid rgba(215, 222, 227, 0.12);
  background: #080a0a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

body.home-page .solution-list {
  border-color: rgba(215, 222, 227, 0.12);
}

body.home-page .solution-list article {
  border-color: rgba(215, 222, 227, 0.12);
}

body.home-page .video-entry-card:hover,
body.home-page .solution-list article:hover,
body.home-page .article-preview-grid article:hover,
body.home-page .about-metrics div:hover {
  border-color: rgba(0, 144, 64, 0.46);
  box-shadow:
    0 0 0 1px rgba(168, 168, 168, 0.14),
    0 0 24px rgba(0, 144, 64, 0.16);
}

body.home-page .text-link,
body.home-page .article-preview-grid span,
body.home-page .video-entry-card span,
body.home-page .form-status {
  color: #24de86;
}

body.home-page .about-metrics strong {
  color: #fff;
}

body.home-page .about-metrics span {
  color: rgba(235, 241, 245, 0.66);
}

body.home-page .contact-form {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 24px 64px rgba(0, 0, 0, 0.2);
}

body.home-page .contact-form label {
  color: rgba(235, 241, 245, 0.72);
}

body.home-page .contact-form input,
body.home-page .contact-form select,
body.home-page .contact-form textarea {
  border-color: rgba(215, 222, 227, 0.16);
  background: rgba(5, 7, 8, 0.56);
  color: #fff;
}

body.home-page .site-footer {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  border-top-color: transparent;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  background: #000;
  color: rgba(235, 241, 245, 0.56);
}

.site-footer.product-site-footer {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  border-top-color: transparent;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  background: #000;
  color: rgba(235, 241, 245, 0.56);
}

.site-footer {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 34px max(20px, calc((100vw - var(--max-width)) / 2)) 48px;
  border-top: 0;
  background: #000;
  color: var(--muted);
}

.footer-company {
  grid-column: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  max-width: 860px;
  text-align: left;
}

.site-footer img {
  width: 75px;
  max-height: 32px;
  object-fit: contain;
  margin: 0;
}

.footer-text {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.site-footer p {
  margin: 0 0 6px;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

.site-footer a {
  color: inherit;
}

.footer-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--geshem-green-dark);
}

.placeholder-page {
  width: min(100% - 40px, 980px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 96px 0;
}

.placeholder-page h1 {
  margin-top: 34px;
}

.placeholder-page p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.product-category-page {
  width: 100%;
  margin: 0 auto;
  padding: 34px 0 0;
  background:
    linear-gradient(180deg, #f7f8f8 0%, #eef2f0 48%, #f7f8f8 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--geshem-green-dark);
}

.category-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
  overflow: hidden;
  width: 100vw;
  min-height: 620px;
  margin: 24px 0 0;
  border: 1px solid rgba(215, 222, 227, 0.14);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  padding: 64px max(40px, calc((100vw - 1280px) / 2));
  background:
    radial-gradient(circle at 72% 28%, rgba(78, 143, 184, 0.28), transparent 31%),
    radial-gradient(circle at 92% 86%, rgba(216, 163, 74, 0.14), transparent 28%),
    linear-gradient(135deg, #050607 0%, #10161a 52%, #1a2226 100%);
  color: #fff;
  isolation: isolate;
}

.category-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 24% 68%, rgba(255, 255, 255, 0.045)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 82px);
  content: "";
  opacity: 0.32;
}

.category-hero > div {
  min-width: 0;
}

.category-hero h1 {
  max-width: 880px;
  color: #fff;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.08;
}

.category-hero .series-nav {
  position: relative;
  z-index: 6;
  flex-wrap: nowrap;
  gap: 10px;
  width: min(100%, 1280px);
  max-width: calc(100vw - 80px);
  margin: 12px 0 24px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.category-hero .series-nav a {
  min-height: 42px;
  border-radius: 6px;
  padding: 0 15px;
  white-space: nowrap;
}

.category-hero h1.category-title-nowrap {
  max-width: none;
  white-space: nowrap;
}

.category-hero > div:first-child {
  position: relative;
  z-index: 5;
}

.category-hero-media {
  pointer-events: none;
}

.category-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(235, 241, 245, 0.78);
  font-size: 18px;
}

.category-hero .eyebrow {
  color: #9bd8ff;
}

.category-hero-params {
  display: grid;
  gap: 12px;
  max-width: 660px;
  margin-top: 22px;
}

.category-hero-params div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(215, 222, 227, 0.1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.category-hero-params strong {
  padding-top: 5px;
  color: #9bd8ff;
  font-size: 13px;
}

.category-hero-params span {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: rgba(235, 241, 245, 0.82);
}

.category-hero-params em,
.category-hero-params a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  overflow: hidden;
  border: 1px solid rgba(168, 168, 168, 0.34);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(10, 14, 15, 0.48);
  color: rgba(235, 241, 245, 0.86);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.category-hero-params em::before,
.category-hero-params a::before {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(0, 144, 64, 0.78), rgba(168, 168, 168, 0.72), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-110%);
}

.category-hero-params em:hover,
.category-hero-params a:hover {
  border-color: rgba(0, 144, 64, 0.78);
  box-shadow:
    0 0 0 1px rgba(168, 168, 168, 0.2),
    0 0 18px rgba(0, 144, 64, 0.28);
  color: #24de86;
  transform: translateY(-1px);
}

.category-hero-params a.is-active {
  border-color: rgba(36, 222, 134, 0.96);
  background:
    linear-gradient(180deg, rgba(0, 144, 64, 0.24), rgba(9, 18, 16, 0.94)),
    rgba(0, 144, 64, 0.2);
  box-shadow:
    0 0 0 1px rgba(211, 217, 220, 0.18),
    0 0 20px rgba(0, 176, 95, 0.36),
    inset 0 0 18px rgba(0, 176, 95, 0.16);
  color: #24de86;
  transform: translateY(-1px);
}

.category-hero-params a.is-unavailable:not(.is-active) {
  border-color: rgba(168, 168, 168, 0.34);
  color: rgba(235, 241, 245, 0.86);
  opacity: 1;
}

.category-hero-params em:hover::before,
.category-hero-params a:hover::before,
.category-hero-params a.is-active::before {
  animation: parameterGlowSweep 980ms ease;
}

.category-hero-media {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.category-hero-media::before {
  position: absolute;
  right: 7%;
  bottom: 2%;
  left: 7%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.58), transparent 68%);
  content: "";
  filter: blur(16px);
  transform: perspective(560px) rotateX(62deg);
}

.category-hero-media img {
  position: relative;
  z-index: 1;
  width: min(88%, 520px);
  max-height: 360px;
  object-fit: contain;
  filter:
    drop-shadow(0 32px 44px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 24px rgba(78, 143, 184, 0.2));
}

.category-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.category-hero-actions .button-secondary {
  border-color: rgba(215, 222, 227, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
}

body.product-category-dark .product-category-page,
body.product-category-dark .category-hero,
body.product-category-dark .series-nav,
body.product-category-dark .filter-panel,
body.product-category-dark .category-products,
body.product-category-dark .category-test-videos {
  background: #000;
}

body.product-category-dark .category-hero {
  border: 0;
  min-height: 540px;
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 24px;
  box-shadow: none;
}

body.product-category-dark .category-hero::before {
  background: none;
}

body.product-category-dark .breadcrumb {
  color: rgba(246, 249, 250, 0.74);
}

body.product-category-dark .breadcrumb a {
  color: rgba(246, 249, 250, 0.78);
}

body.product-category-dark .breadcrumb span {
  color: rgba(246, 249, 250, 0.46);
}

body.product-category-dark .breadcrumb strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
}

body.product-category-dark .breadcrumb a:hover {
  color: #24de86;
}

body.product-category-dark .series-nav {
  box-shadow: none;
}

body.product-category-dark .series-nav a {
  border-color: rgba(215, 222, 227, 0.22);
  background: #000;
  color: rgba(246, 249, 250, 0.82);
}

body.product-category-dark .series-nav a:hover,
body.product-category-dark .series-nav a.is-active {
  border-color: var(--geshem-green);
  background: var(--geshem-green);
  color: #fff;
}

body.product-category-dark .category-products,
body.product-category-dark .category-test-videos {
  box-shadow: none;
}

body.product-category-dark .filter-panel,
body.product-category-dark .sample-product,
body.product-category-dark .category-placeholder {
  box-shadow: none;
}

body.product-category-dark .category-test-videos .video-placeholder-card {
  border-color: rgba(215, 222, 227, 0.1);
  background: linear-gradient(180deg, rgba(18, 23, 23, 0.96), rgba(13, 17, 17, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.series-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin: 0;
  border-bottom: 0;
  padding: 22px max(40px, calc((100vw - 1280px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 248, 0.94)),
    #fff;
  border: 0;
  border-radius: 0;
  box-shadow:
    inset 0 1px 0 rgba(215, 222, 227, 0.72),
    inset 0 -1px 0 rgba(215, 222, 227, 0.72);
}

.series-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line-gray);
  border-radius: 6px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.series-nav a:hover,
.series-nav a.is-active {
  border-color: var(--geshem-green);
  background: var(--geshem-green);
  color: #fff;
}

.filter-panel,
.sample-product,
.category-placeholder {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 34px max(40px, calc((100vw - 1280px) / 2));
  background: #f7f8f8;
  margin: 0;
  box-shadow: inset 0 -1px 0 rgba(215, 222, 227, 0.72);
}

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

.filter-panel > h2,
.filter-panel > .filter-grid {
  display: none;
}

.dynamic-filter-panel {
  display: grid;
  gap: 14px;
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.dynamic-filter-panel > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-options a,
.filter-clear {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line-gray);
  border-radius: 999px;
  padding: 0 12px;
  background: #fff;
  color: var(--deep-black);
  font-size: 13px;
  font-weight: 800;
}

.filter-options a:hover,
.filter-clear:hover {
  border-color: var(--geshem-green);
  background: rgba(0, 144, 64, 0.08);
  color: var(--geshem-green);
}

.filter-options a.is-active {
  border-color: var(--geshem-green);
  background: var(--geshem-green);
  color: #fff;
  box-shadow: 0 0 18px rgba(0, 144, 64, 0.24);
}

.filter-options a.is-unavailable:not(.is-active) {
  color: var(--deep-black);
  opacity: 1;
}

.filter-grid div {
  border-radius: 8px;
  padding: 18px;
  background: var(--page-white);
}

.filter-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep-black);
}

.filter-grid span,
.sample-product p,
.category-placeholder p {
  color: var(--muted);
}

.sample-product article {
  border-left: 4px solid var(--geshem-green);
  padding-left: 18px;
}

.category-products {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 48px max(40px, calc((100vw - 1280px) / 2)) 100px;
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 144, 64, 0.12), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(104, 84, 60, 0.14), transparent 34%),
    linear-gradient(135deg, #050606 0%, #0b0f0f 58%, #120d0a 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(215, 222, 227, 0.16);
}

.category-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.category-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
  color: #fff;
}

.category-section-heading p {
  display: none;
  max-width: 520px;
  margin: 0;
  color: rgba(235, 241, 245, 0.62);
}

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

.category-product-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 42% minmax(0, 1fr) auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 1px solid rgba(215, 222, 227, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #080a0a;
  box-shadow: none;
  transition: none;
}

.category-card-cover-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  text-decoration: none;
}

.category-product-card::before,
.category-product-card::after {
  display: none;
}

.category-product-card::before {
  top: 0;
  left: 8px;
  width: 76px;
  height: 1px;
}

.category-product-card::after {
  top: 8px;
  left: calc(100% - 1px);
  width: 1px;
  height: 76px;
  background: linear-gradient(180deg, transparent, rgba(36, 222, 134, 0.52), transparent);
}

.category-product-card:hover::before {
  animation: none;
}

.category-product-card:hover::after {
  animation: none;
}

.category-product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border: 0;
  padding: 28px 34px 14px;
  background: transparent;
  box-shadow: none;
}

.category-product-media img,
.category-product-card > img {
  display: block;
  justify-self: center;
  align-self: center;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  filter: saturate(0.96);
  opacity: 1;
  transition: none;
}

.category-media-action {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-radius: 6px;
  padding: 0 18px;
  background: linear-gradient(180deg, #04b564, #008e49);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(0, 144, 64, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.98);
  transition: none;
}

.category-product-content {
  position: relative;
  z-index: 1;
  padding: 24px 30px 14px;
  background: transparent;
}

.category-product-card span {
  display: none;
  align-items: center;
  min-height: 32px;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 0 10px;
  background: rgba(0, 144, 64, 0.18);
  color: #00b060;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-product-card h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.22;
}

.category-product-card p {
  color: rgba(235, 241, 245, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.category-product-meta {
  margin-top: 18px;
  border-top: 0;
  padding-top: 18px;
  color: rgba(235, 241, 245, 0.78) !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.category-empty-state {
  grid-column: 1 / -1;
  border: 1px dashed rgba(215, 222, 227, 0.22);
  border-radius: 8px;
  padding: 26px;
  color: rgba(235, 241, 245, 0.68);
  text-align: center;
}

.category-card-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-self: end;
  grid-column: auto;
  border-top: 0;
  margin: 0 30px;
  padding: 16px 0 22px !important;
}

.category-card-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: rgba(235, 241, 245, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

body.product-category-real .category-product-card {
  grid-template-rows: auto minmax(0, 1fr) auto;
  aspect-ratio: auto;
  min-height: 470px;
  border: 1px solid rgba(215, 222, 227, 0.08);
  padding: 28px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

body.product-category-real .category-product-card:hover {
  border-color: rgba(0, 176, 95, 0.72);
  box-shadow: none;
}

body.product-category-real .category-product-media {
  height: 220px;
  margin: 28px 0 26px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.product-category-real .category-product-media img,
body.product-category-real .category-product-card > img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

body.product-category-real .category-product-card > img {
  width: calc(100% - 68px);
  margin: 28px 34px 26px;
}

body.product-category-real .category-product-content {
  padding: 0;
}

body.product-category-real .category-product-card h3 {
  margin: 0 0 28px 50px;
  font-size: 26px;
  line-height: 1.1;
}

body.product-category-real .category-product-card p {
  max-width: 80%;
  margin: 0 0 22px 50px;
  color: rgba(247, 250, 251, 0.72);
}

body.product-category-real .category-product-meta {
  border-top: 0;
}

body.product-category-real .category-card-actions {
  justify-content: flex-start;
  border-top: 0;
  margin: 0;
  padding: 0 0 0 66.666% !important;
}

.category-card-actions a:first-child,
.category-card-actions a[href$=".pdf"] {
  color: var(--geshem-green);
}

.category-card-actions a:hover {
  color: #24de86;
}

.resource-page,
.article-page {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 34px 0 100px;
}

.resource-page.solutions-page {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 0 0 100px;
}

.resource-hero {
  max-width: none;
  padding: 86px 0 62px;
  text-align: center;
}

.resource-hero h1 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05;
  white-space: nowrap;
}

.resource-hero p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

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

.resource-grid article {
  min-height: 260px;
}

.resource-grid h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.download-panel {
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
}

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

.download-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.54fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 18px;
  background: var(--page-white);
}

.download-list strong {
  color: var(--deep-black);
}

.download-list span {
  color: var(--muted);
}

.download-list a {
  justify-self: end;
  color: var(--geshem-green-dark);
  font-weight: 800;
  white-space: nowrap;
}

.video-entry-section {
  position: relative;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 128px max(20px, calc((100vw - var(--max-width)) / 2)) 104px;
  background:
    radial-gradient(circle at 92% 96%, rgba(68, 46, 30, 0.24), transparent 34%),
    radial-gradient(circle at 18% 22%, rgba(0, 144, 64, 0.08), transparent 26%),
    linear-gradient(180deg, #111513 0%, #151917 16%, #dfe4e1 54%, #f7f8f8 100%);
}

.video-entry-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 24% 72%, rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 96px);
  content: "";
  opacity: 0.16;
  pointer-events: none;
}

.video-entry-section > * {
  position: relative;
  z-index: 1;
}

.video-entry-section .section-heading {
  margin-bottom: 48px;
}

.video-entry-section .section-heading .eyebrow {
  color: rgba(247, 250, 251, 0.76);
}

.video-entry-section .section-heading h2 {
  color: #fff;
}

.video-entry-section .section-heading p {
  color: rgba(247, 250, 251, 0.68);
}

.video-entry-grid,
.video-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.video-entry-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  border: 1px solid rgba(215, 222, 227, 0.78);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 20px 52px rgba(10, 18, 15, 0.08);
  backdrop-filter: blur(10px);
}

.video-entry-card span {
  color: var(--geshem-green-dark);
  font-size: 13px;
  font-weight: 900;
}

.video-entry-card strong {
  color: var(--deep-black);
  font-size: 22px;
  line-height: 1.2;
}

.video-entry-card em {
  align-self: end;
  color: var(--muted);
  font-style: normal;
}

.video-entry-card:hover {
  border-color: rgba(0, 144, 64, 0.46);
  box-shadow:
    0 0 0 1px rgba(168, 168, 168, 0.18),
    0 0 24px rgba(0, 144, 64, 0.14),
    0 24px 58px rgba(10, 18, 15, 0.12);
}

.video-library-section {
  margin-bottom: 18px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
}

.video-placeholder-card {
  display: grid;
  grid-template-rows: 210px auto auto;
  gap: 12px;
  min-height: 350px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 14px;
  background: var(--page-white);
}

.video-placeholder-thumb,
.video-placeholder-card video {
  width: 100%;
  height: 210px;
  border: 0;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(0, 144, 64, 0.18), rgba(17, 21, 19, 0.88)),
    var(--deep-black);
}

.video-placeholder-thumb {
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  font: inherit;
  overflow: hidden;
}

.video-placeholder-thumb::before {
  content: "";
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.video-placeholder-thumb::after {
  content: "";
  position: absolute;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--geshem-green-dark);
  transform: translateX(3px);
}

.video-placeholder-thumb span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.video-placeholder-card h3 {
  margin: 0;
  font-size: 20px;
}

.video-placeholder-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.video-placeholder-card.is-waiting p::after {
  content: "，请先上传视频并填写 data-video-src。";
  color: var(--geshem-green-dark);
  font-weight: 800;
}

.category-video-reference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 34px max(40px, calc((100vw - 1280px) / 2));
  background:
    linear-gradient(90deg, rgba(0, 144, 64, 0.1), rgba(255, 255, 255, 0.94) 42%, rgba(168, 168, 168, 0.12)),
    #f7f8f8;
  box-shadow: inset 0 -1px 0 rgba(215, 222, 227, 0.72);
}

.category-video-reference h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.category-video-reference p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.category-test-videos {
  width: 100%;
  padding: 56px max(40px, calc((100vw - 1280px) / 2)) 100px;
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 144, 64, 0.07), transparent 28%),
    linear-gradient(180deg, #eef2f0 0%, #f7f8f8 100%);
  box-shadow: inset 0 1px 0 rgba(215, 222, 227, 0.82);
}

.category-test-videos .category-section-heading {
  align-items: start;
}

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

.category-test-videos .video-placeholder-card {
  min-height: 360px;
  border-color: rgba(200, 208, 214, 0.88);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(242, 245, 244, 0.9)),
    #fff;
  box-shadow: 0 18px 44px rgba(10, 18, 15, 0.08);
}

.category-test-videos .video-placeholder-card:hover {
  border-color: rgba(0, 144, 64, 0.36);
  box-shadow:
    0 0 0 1px rgba(168, 168, 168, 0.12),
    0 0 24px rgba(0, 144, 64, 0.12),
    0 24px 58px rgba(10, 18, 15, 0.1);
}

.category-test-videos .video-placeholder-thumb {
  min-height: 190px;
}

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

.article-list article {
  padding: 28px;
}

.article-list h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.article-page article {
  max-width: 860px;
  margin: 54px auto 0;
}

.article-page h1 {
  font-size: clamp(38px, 5.6vw, 68px);
}

.article-page h2 {
  margin-top: 42px;
  font-size: clamp(26px, 3vw, 36px);
}

.article-page p {
  color: var(--muted);
  font-size: 18px;
}

.article-page .article-lede {
  color: #333b38;
  font-size: 20px;
}

.article-page .button {
  margin-top: 28px;
}

.product-detail-page {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 22px 0 100px;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 1.02fr);
  gap: 28px;
  align-items: center;
  padding: 30px 0 38px;
}

.product-detail-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.product-detail-copy h1 {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: clamp(34px, 5.2vw, 88px);
  line-height: 1;
  text-overflow: clip;
}

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

.product-detail-copy h1 + .detail-actions {
  margin-top: 110px;
}

.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
}

.product-detail-media img {
  width: min(100%, 520px);
  max-height: 360px;
  object-fit: contain;
  background: transparent;
}

.product-detail-media.is-empty {
  display: none;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 40px;
}

.product-gallery-slot {
  display: grid;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.product-gallery-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.product-gallery-slot figcaption {
  display: none;
}

.product-gallery-slot.is-empty {
  display: none;
}

.product-gallery-slot.is-empty span,
.product-gallery-slot.is-empty em {
  display: block;
}

.product-gallery-slot.is-empty span {
  color: var(--deep-black);
  font-weight: 900;
}

.product-gallery-slot.is-empty em {
  font-style: normal;
  font-size: 13px;
}

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.detail-highlights div {
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.detail-highlights strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-black);
  font-size: 24px;
  line-height: 1.12;
}

.detail-highlights span {
  color: var(--muted);
}

.detail-section {
  margin-top: 18px;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
}

.detail-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 34px;
}

.detail-two-column h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 44px);
}

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

.detail-list article {
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 20px;
  background: var(--page-white);
}

.detail-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.spec-table {
  display: grid;
  border-top: 1px solid var(--line-gray);
  border-left: 1px solid var(--line-gray);
}

.spec-groups {
  display: grid;
  gap: 22px;
}

.spec-group {
  display: grid;
  gap: 10px;
}

.spec-group h3 {
  margin: 0;
  color: var(--geshem-green-dark);
  font-size: 18px;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
  min-height: 54px;
}

.spec-table-paired div {
  grid-template-columns: minmax(118px, 0.18fr) minmax(0, 0.32fr) minmax(118px, 0.18fr) minmax(0, 0.32fr);
}

.spec-table strong,
.spec-table span {
  border-right: 1px solid var(--line-gray);
  border-bottom: 1px solid var(--line-gray);
  padding: 14px 16px;
}

.spec-table strong {
  background: var(--page-white);
  color: var(--deep-black);
}

.spec-table span {
  color: var(--muted);
}

.spec-empty {
  background: #fff !important;
}

.detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  border-radius: 8px;
  padding: 34px;
  background: #111513;
  color: #fff;
}

.detail-cta h2,
.detail-cta .eyebrow {
  color: #fff;
}

.detail-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.detail-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: #c9d2ce;
}

.ai-advisor {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ai-advisor.is-open {
  display: flex;
}

.ai-advisor-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.42);
  backdrop-filter: blur(10px);
}

.ai-advisor-dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid var(--line-gray);
  border-radius: 8px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(5, 5, 5, 0.25);
}

.ai-advisor-dialog h2 {
  margin-bottom: 12px;
}

.ai-advisor-dialog > p {
  color: var(--muted);
}

.ai-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-gray);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

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

.ai-form label {
  display: grid;
  gap: 8px;
  color: #3e4642;
  font-size: 14px;
  font-weight: 750;
}

.ai-form select,
.ai-form textarea {
  width: 100%;
  border: 1px solid #d9dedc;
  border-radius: 6px;
  padding: 12px 13px;
  background: #fbfcfc;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.ai-form select:focus,
.ai-form textarea:focus {
  border-color: var(--geshem-green);
  box-shadow: 0 0 0 4px rgba(0, 144, 64, 0.12);
}

.ai-result {
  display: none;
  margin-top: 18px;
  border: 1px solid rgba(0, 144, 64, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: var(--geshem-green-soft);
}

.ai-result.is-visible {
  display: block;
}

.ai-result strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep-black);
}

.ai-result p {
  margin-bottom: 12px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .category-hero .series-nav {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    max-height: 94px;
    overflow: hidden;
  }

  .category-hero .series-nav a {
    justify-content: center;
    min-width: 0;
    padding: 0 6px;
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
  }

  .site-header {
    grid-template-columns: auto auto;
    padding-right: 24px;
    padding-left: 24px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line-gray);
    border-radius: 8px;
    padding: 12px;
    background: rgba(9, 11, 13, 0.98);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .language-select {
    display: none;
  }

  .hero,
  .immersive-product-hero,
  .feature-band,
  .category-hero,
  .about-section,
  .contact-inquiry-hero,
  .contact-section,
  .contact-page-grid,
  .product-detail-hero,
  .detail-two-column {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .immersive-product-hero {
    min-height: auto;
    padding: 64px 28px 52px;
  }

  .immersive-product-copy {
    grid-template-rows: 24px 150px 58px 78px 48px;
    max-width: 760px;
    min-height: 438px;
  }

  .immersive-product-media {
    min-height: 420px;
    margin-top: 16px;
  }

  .immersive-product-media img {
    right: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
  }

  .hero-media {
    min-height: 340px;
  }

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

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

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

  .article-preview-grid,
  .resource-grid,
  .video-entry-grid,
  .video-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .download-list article {
    grid-template-columns: 1fr;
  }

  .download-list a {
    justify-self: start;
  }

  .product-finder-toolbar {
    display: grid;
  }

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

  .finder-product-card {
    min-height: 520px;
  }

  .product-banner,
  .product-banner-large {
    min-height: auto;
    padding: 52px 28px 34px;
  }

  .product-banner-copy {
    max-width: 680px;
  }

  .product-image-wrap,
  .product-banner-alt .product-image-wrap,
  .product-banner-large .product-image-wrap {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 320px;
    margin-top: 28px;
    margin-bottom: 84px;
  }

  .product-banner-actions {
    right: 28px;
    bottom: 28px;
    left: 28px;
    justify-content: flex-start;
  }

  .product-banner-alt .product-banner-copy {
    justify-self: start;
  }

  .product-banner-alt .product-banner-actions {
    right: 28px;
    left: 28px;
  }

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

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

  .category-hero {
    padding: 42px 32px;
  }

  .category-hero-media {
    min-height: 280px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section,
  .case-strip,
  .about-section,
  .contact-section,
  .contact-hero,
  .contact-page-grid,
  .product-detail-page,
  .resource-page,
  .article-page {
    width: min(100% - 28px, var(--max-width));
  }

  .product-category-page {
    width: 100%;
  }

  .solutions-page {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .solutions-page .resource-hero,
  .solutions-page .resource-grid,
  .solutions-page .detail-cta {
    width: min(100% - 28px, var(--max-width));
  }

  .brand img {
    width: 148px;
  }

  .language-trigger {
    width: 44px;
    padding: 0;
  }

  .language-trigger span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .language-trigger::before {
    margin-right: 0;
  }

  .language-trigger::after {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .immersive-product-copy h1 {
    font-size: clamp(24px, 8vw, 44px);
  }

  .category-hero h1 {
    font-size: 38px;
  }

  .category-hero h1.category-title-nowrap {
    white-space: normal;
  }

  .category-hero-params div {
    grid-template-columns: 1fr;
  }

  .resource-hero h1 {
    font-size: 42px;
    white-space: normal;
  }

  .contact-inquiry-hero h1 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .immersive-product-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .immersive-product-copy {
    grid-template-rows: 22px 104px 54px minmax(78px, auto) auto;
    min-height: 0;
  }

  .immersive-product-actions {
    align-items: stretch;
  }

  .immersive-product-actions .button {
    flex: 1 1 100%;
  }

  .immersive-product-media {
    min-height: 300px;
  }

  .category-hero {
    width: 100%;
    padding: 30px 20px;
  }

  .breadcrumb {
    width: min(100% - 28px, var(--max-width));
  }

  .series-nav,
  .filter-panel,
  .sample-product,
  .category-placeholder,
  .category-video-reference,
  .category-products {
    padding-right: 14px;
    padding-left: 14px;
  }

  .category-product-card {
    grid-template-columns: 1fr;
    grid-template-rows: 42% minmax(0, 1fr) auto;
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .category-product-media {
    min-height: 0;
    padding: 22px 24px 12px;
  }

  .category-product-content {
    padding: 18px 22px 12px;
  }

  .category-card-actions {
    grid-column: auto;
    margin: 0 22px;
    padding: 14px 0 18px !important;
  }

  .category-hero-media {
    min-height: 220px;
  }

  .category-hero-actions .button,
  .hero-proof-grid {
    width: 100%;
  }

  .category-hero-actions .button {
    flex: 1 1 100%;
  }

  .category-video-grid {
    grid-template-columns: 1fr;
  }

  .category-test-videos {
    padding-right: 14px;
    padding-left: 14px;
  }

  .dynamic-filter-panel > div {
    grid-template-columns: 1fr;
  }

  .product-finder {
    scroll-margin-top: 82px;
    padding: 28px 14px 38px;
  }

  .product-family-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 18px;
  }

  .product-family-tabs button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 16px;
  }

  .finder-filter-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-finder-grid {
    grid-template-columns: 1fr;
  }

  .finder-product-card {
    min-height: auto;
    padding: 22px;
  }

  .finder-product-card img {
    height: 190px;
    margin: 20px 0;
  }

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

  .product-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-lede,
  .section-heading p,
  .feature-copy p,
  .about-content p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-media {
    min-height: 260px;
  }

  .section,
  .about-section,
  .contact-section {
    padding: 74px 0;
  }

  .feature-band {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .solution-list,
  .spec-list,
  .hero-proof-grid,
  .category-product-grid,
  .detail-highlights,
  .article-preview-grid,
  .resource-grid,
  .video-entry-grid,
  .video-placeholder-grid,
  .contact-form,
  .ai-form {
    grid-template-columns: 1fr;
  }

  .category-video-reference {
    display: grid;
  }

  .product-detail-hero {
    padding-top: 28px;
  }

  .product-detail-media {
    min-height: 300px;
    padding: 0;
  }

  .detail-section,
  .detail-cta {
    padding: 22px;
  }

  .detail-cta {
    display: grid;
  }

  .spec-table div {
    grid-template-columns: 1fr;
  }

  .product-banner,
  .product-banner-large {
    padding: 42px 20px 28px;
  }

  .product-banner h3 {
    font-size: 38px;
  }

  .product-image-wrap,
  .product-banner-alt .product-image-wrap,
  .product-banner-large .product-image-wrap {
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 250px;
    padding: 18px;
    margin-bottom: 124px;
  }

  .product-banner-actions {
    right: 20px;
    bottom: 24px;
    left: 20px;
    justify-content: flex-start;
  }

  .product-banner-alt .product-banner-actions {
    right: 20px;
    left: 20px;
  }

  .case-strip,
  .site-footer {
    display: grid;
    align-items: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-company,
  .footer-links {
    grid-column: 1;
  }

  .footer-company {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
