
html,body{margin:0;padding:0}
button{background:none;cursor:pointer}
.sl-container{width:min(1200px,92vw);margin:0 auto}
/* SuMeLen PbootCMS theme — ported from company-website globals.css */

:root {
  --ink: #050706;
  --paper: #f5f5f2;
  --white: #ffffff;
  --muted: #767a76;
  --line: rgb(10 18 13 / 12%);
  --green: #059a4a;
  --green-bright: #14b866;
  --orange: #f85b1f;
  --cyan: #62e0cf;
  --page-progress: 0;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  --header-height: 70px;
  /* 首页说明小字统一字号（不受后台编辑器残留 span font-size 干扰） */
  --home-copy-size: clamp(17px, 1.55vw, 20px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    "PingFang SC",
    "Noto Sans Arabic",
    "Helvetica Neue",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

button {
  border: 0;
}

::selection {
  background: var(--green);
  color: white;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  background: var(--paper);
}

.site-shell::after {
  content: "";
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      260px circle at var(--pointer-x) var(--pointer-y),
      rgb(117 255 212 / 8%),
      rgb(74 210 194 / 3%) 34%,
      transparent 72%
    );
  mix-blend-mode: screen;
  opacity: 0.8;
}

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 10002;
  width: calc(var(--page-progress) * 100%);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  pointer-events: none;
  transition: width 80ms linear;
}

.page-progress::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 12px;
  background: linear-gradient(145deg, #eafff6, var(--cyan) 58%, var(--green));
  border-radius: 58% 42% 58% 42% / 68% 66% 34% 32%;
  box-shadow:
    0 0 12px rgb(98 224 207 / 72%),
    0 0 28px rgb(20 184 102 / 34%);
  transform: translateY(-42%) rotate(45deg);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(128px, 0.8fr) auto minmax(258px, 0.8fr);
  align-items: center;
  padding: 0 clamp(24px, 4vw, 72px);
  color: white;
  background: rgb(2 7 5 / 68%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  backdrop-filter: saturate(150%) blur(24px);
  box-shadow: 0 0 0 rgb(0 0 0 / 0%);
  transition:
    background 500ms cubic-bezier(0.2, 0.7, 0, 1),
    border-color 500ms ease,
    box-shadow 500ms ease,
    backdrop-filter 500ms ease;
}

.is-scrolled .site-header {
  background: rgb(2 9 6 / 82%);
  border-bottom-color: rgb(126 255 193 / 13%);
  box-shadow:
    0 14px 44px rgb(0 0 0 / 18%),
    inset 0 -1px rgb(255 255 255 / 4%);
  backdrop-filter: saturate(175%) blur(30px);
}

.brand-link {
  display: inline-flex;
  width: 126px;
  height: 38px;
  align-items: center;
}

.brand-link img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1px 8px rgb(0 0 0 / 30%));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 34px);
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 24px 0 22px;
  color: rgb(255 255 255 / 72%);
  font-size: 15px;
  font-weight: 520;
  letter-spacing: 0.015em;
  transition: color 250ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 1px;
  background: white;
  transform: scaleX(0);
  transition: transform 280ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: white;
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.product-nav-group {
  position: static;
}

.product-nav-trigger {
  display: flex;
  align-items: center;
}

.product-nav-trigger > button {
  width: 20px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: 2px;
  padding: 0;
  color: rgb(255 255 255 / 52%);
  background: transparent;
  cursor: pointer;
}

.product-nav-trigger > button span {
  display: block;
  font-size: 15px;
  line-height: 1;
  transition: transform 260ms ease, color 260ms ease;
}

.product-nav-group:hover .product-nav-trigger > button span,
.product-nav-group.is-open .product-nav-trigger > button span {
  color: white;
  transform: rotate(180deg) translateY(-1px);
}

.product-nav-group.is-simple .product-mega-menu {
  display: none !important;
}

.product-mega-menu {
  position: fixed;
  z-index: 1100;
  top: calc(var(--header-height) - 8px);
  right: 0;
  left: 0;
  padding: 38px clamp(24px, 4vw, 72px) 34px;
  color: white;
  background:
    radial-gradient(circle at 76% -20%, rgb(32 181 116 / 16%), transparent 34%),
    rgb(1 8 5 / 78%);
  border-top: 1px solid rgb(255 255 255 / 8%);
  border-bottom: 1px solid rgb(128 255 199 / 12%);
  box-shadow: 0 28px 70px rgb(0 0 0 / 28%);
  backdrop-filter: blur(28px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 220ms ease,
    visibility 0s linear 320ms,
    transform 280ms cubic-bezier(0.2, 0.7, 0, 1);
}

.product-nav-group:hover .product-mega-menu,
.product-nav-group:focus-within .product-mega-menu,
.product-nav-group.is-open .product-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s;
}

.product-mega-menu__inner {
  width: min(1320px, 100%);
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(260px, 0.8fr) minmax(420px, 1.45fr);
  gap: clamp(26px, 4vw, 72px);
  margin: 0 auto;
}

.product-mega-menu__intro {
  padding: 8px 0;
}

.product-mega-menu__intro span {
  color: var(--green-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.product-mega-menu__intro strong {
  display: block;
  max-width: 280px;
  margin-top: 13px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.site-nav .product-mega-menu a {
  padding: 0;
  border: 0;
}

.site-nav .product-mega-menu a::after {
  display: none;
}

.product-mega-menu__overview {
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.product-mega-menu__overview a {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgb(255 255 255 / 14%) !important;
}

.product-mega-menu small {
  color: rgb(255 255 255 / 35%);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.product-mega-menu__overview a span {
  color: rgb(255 255 255 / 82%);
  font-size: 14px;
}

.product-mega-menu__overview a i {
  color: var(--green-bright);
  font-size: 12px;
  font-style: normal;
  transition: transform 220ms ease;
}

.product-mega-menu__overview a:hover i {
  transform: translate(3px, -3px);
}

.product-mega-menu__categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.product-mega-menu__categories a {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  min-height: 46px;
  color: rgb(255 255 255 / 64%);
  border-bottom: 1px solid rgb(255 255 255 / 10%) !important;
  font-size: 12px;
  transition: color 200ms ease, padding 220ms ease;
}

.product-mega-menu__categories a:hover {
  padding-left: 5px;
  color: white;
}

.product-mega-menu__inner--direct {
  grid-template-columns: 1fr;
}

.product-mega-menu__inner--direct .product-mega-menu__categories {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
}

.product-mega-menu__inner--direct .product-mega-menu__categories a {
  min-height: 76px;
  padding: 0 20px;
  border-right: 1px solid rgb(255 255 255 / 10%) !important;
  font-size: 15px;
}

.product-mega-menu__inner--direct .product-mega-menu__categories a:last-child {
  border-right: 0 !important;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 999px;
}

.language-switcher a,
.language-switcher button {
  min-width: 39px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  color: rgb(255 255 255 / 62%);
  text-decoration: none;
  background: transparent;
  border-radius: inherit;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease;
}

.language-switcher a.is-active,
.language-switcher button.is-active {
  color: #07100b;
  background: white;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 10px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: white;
  transition: transform 250ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.intro-film {
  position: fixed;
  z-index: 10001;
  inset: 0;
  display: grid;
  place-items: center;
  background: #000508;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 900ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 950ms;
}

.intro-film.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-film video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.intro-white-mark {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: #000508;
  animation: intro-white-stage 2.15s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.intro-white-logo {
  display: block;
  width: min(46vw, 520px);
  aspect-ratio: 359 / 106;
  background: #fff;
  -webkit-mask: url("../images/brand/sumelen-logo.png") center / contain no-repeat;
  mask: url("../images/brand/sumelen-logo.png") center / contain no-repeat;
  filter: drop-shadow(0 0 28px rgb(255 255 255 / 9%));
  animation: intro-white-logo 2.15s cubic-bezier(0.2, 0.7, 0, 1) forwards;
}

@keyframes intro-white-stage {
  0%,
  58% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes intro-white-logo {
  0% {
    opacity: 1;
    transform: scale(0.985);
  }

  46% {
    opacity: 1;
    transform: scale(1);
  }

  72% {
    opacity: 1;
    transform: scale(1.004);
  }

  100% {
    opacity: 0;
    transform: scale(1.018);
  }
}

.intro-actions {
  position: absolute;
  z-index: 2;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 10px;
}

.intro-action {
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.01em;
  backdrop-filter: blur(18px) saturate(130%);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
  cursor: pointer;
}

.intro-action:hover {
  transform: translateY(-1px);
}

.intro-action:focus-visible {
  outline: 2px solid rgb(255 255 255 / 88%);
  outline-offset: 3px;
}

.intro-action--quiet {
  color: rgb(255 255 255 / 72%);
  background: rgb(5 17 13 / 44%);
  border: 1px solid rgb(255 255 255 / 20%);
}

.intro-action--quiet:hover {
  color: white;
  border-color: rgb(255 255 255 / 42%);
  background: rgb(5 17 13 / 68%);
}

.intro-action--primary {
  color: #06100c;
  background: rgb(255 255 255 / 92%);
  border: 1px solid rgb(255 255 255 / 78%);
  box-shadow: 0 8px 32px rgb(0 0 0 / 24%);
}

.intro-action--primary:hover {
  background: white;
}

@media (max-width: 640px) {
  .intro-white-logo {
    width: min(72vw, 360px);
  }

  .intro-actions {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    left: max(16px, env(safe-area-inset-left));
    justify-content: center;
  }

  .intro-action {
    flex: 1;
    max-width: 180px;
    padding-inline: 12px;
  }
}

.home-hero,
.inner-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
}

.inner-hero--compact {
  min-height: 56svh;
  max-height: none;
  align-items: flex-start;
}

.inner-hero--compact .inner-hero__content {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 52px) 0 64px;
}

.inner-hero--compact .eyebrow {
  margin: 0 0 18px;
  line-height: 1.45;
  overflow: visible;
}

.inner-hero--compact h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.15;
}

.inner-hero--compact .inner-hero__content > p:last-child {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
}

.inner-hero--compact .inner-hero__image {
  transform: none;
  filter: saturate(0.9) contrast(1.02);
}

.home-hero {
  display: grid;
  place-items: center;
  color: white;
  background:
    radial-gradient(circle at 40% 62%, rgb(0 92 50 / 45%), transparent 33%),
    radial-gradient(circle at 70% 28%, rgb(0 65 46 / 28%), transparent 35%),
    #010504;
}

/* 可选头图：仅在 .has-hero-image 时启用，删图后完整保留原光效样式 */
.home-hero__image {
  display: none;
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.home-hero__veil {
  display: none;
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgb(1 5 4 / 88%) 0%, rgb(1 5 4 / 45%) 55%, rgb(1 5 4 / 55%) 100%),
    linear-gradient(90deg, rgb(1 5 4 / 55%), transparent 70%);
}

.home-hero__image[src*="nopic"],
.home-hero__image[src$="nopic.png"] {
  display: none !important;
}

.home-hero.has-hero-image .home-hero__image,
.home-hero.has-hero-image .home-hero__veil {
  display: block;
}

.home-hero.has-hero-image .hero-grid,
.home-hero.has-hero-image .hero-orbit {
  opacity: 0.35;
}

/* 首页不显示顶部水滴装饰，避免被看成蓝色 P 图标 */
.home-hero.water-stage::after {
  display: none;
}

.water-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: calc(8% - var(--scene-progress, 0) * 5%);
  width: min(62vw, 880px);
  aspect-ratio: 2.3 / 1;
  border: 1px solid rgb(115 255 196 / 16%);
  border-radius: 50%;
  box-shadow:
    0 0 0 calc(28px + var(--scene-progress, 0) * 44px) rgb(35 202 120 / 5%),
    0 0 0 calc(72px + var(--scene-progress, 0) * 72px) rgb(85 229 189 / 3%),
    0 35px 110px rgb(0 150 83 / 14%);
  opacity: calc(0.28 + var(--scene-progress, 0) * 0.62);
  transform:
    translateX(-50%)
    scale(calc(0.72 + var(--scene-progress, 0) * 0.58))
    rotateX(66deg);
  transform-origin: center;
}

.water-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: calc(14% + var(--scene-progress, 0) * 16%);
  left: 50%;
  width: 15px;
  height: 21px;
  background:
    radial-gradient(circle at 33% 28%, white 0 8%, transparent 10%),
    linear-gradient(145deg, #f8fffc 4%, #a8e5d7 52%, #179c69 100%);
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 58% 42% 58% 42% / 70% 65% 35% 30%;
  box-shadow:
    inset -3px -4px 7px rgb(0 73 50 / 18%),
    0 9px 28px rgb(94 255 195 / 32%);
  opacity: calc(1 - var(--scene-progress, 0) * 1.75);
  transform:
    translateX(-50%)
    translateY(calc(var(--scene-progress, 0) * 120px))
    rotate(45deg)
    scale(calc(0.86 + var(--scene-progress, 0) * 0.22));
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgb(106 255 185 / 18%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(106 255 185 / 18%) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 50% 54%, black 0, transparent 68%);
  transform:
    perspective(900px)
    rotateX(62deg)
    scale(1.7)
    translateY(calc((var(--scene-progress, 0) - 0.5) * 70px));
  transform-origin: center 70%;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(93 255 181 / 15%);
  border-radius: 50%;
  filter: drop-shadow(0 0 26px rgb(16 177 99 / 12%));
}

.hero-orbit-a {
  width: 62vw;
  aspect-ratio: 1;
  left: -20vw;
  bottom: -34vw;
  transform: scale(calc(0.96 + var(--scene-progress, 0) * 0.12));
}

.hero-orbit-b {
  width: 44vw;
  aspect-ratio: 1;
  top: -16vw;
  right: -12vw;
  transform: translateY(calc(var(--scene-progress, 0) * -80px));
}

.hero-watermark {
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: -0.34em;
  color: rgb(2 154 74 / 12%);
  font-size: min(88vw, 1060px);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.16em;
  transform: translateY(calc(var(--scene-progress, 0) * 80px));
  user-select: none;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 40px));
  padding: 110px 0 80px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Hero brand: 6号 ≈ HTML size 6 / ~28–32px */
.home-hero .eyebrow {
  margin-bottom: 28px;
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 760;
  letter-spacing: 0.28em;
}

/* Hero title: 8号（大于 6 号），整句单行 */
.home-hero h1 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(40px, 6.2vw, 88px);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.05;
  white-space: nowrap;
  color: transparent;
  background:
    linear-gradient(
      108deg,
      #ffffff 0%,
      #ffffff 38%,
      #aef8db 49%,
      #ffffff 58%,
      #ffffff 100%
    );
  background-position: calc(105% - var(--scene-progress, 0) * 130%) 50%;
  background-size: 230% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 18px 65px rgb(36 218 135 / 8%);
}

.hero-copy {
  width: max-content;
  max-width: 100%;
  margin: 34px auto 0;
  color: rgb(255 255 255 / 72%);
  font-size: var(--home-copy-size);
  font-weight: 430;
  line-height: 1.55;
  white-space: nowrap;
  text-align: center;
}

.hero-copy,
.hero-copy * {
  font-size: var(--home-copy-size) !important;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 40px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 15px;
  font-weight: 600;
}

.arrow-link span:last-child {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.arrow-link:hover span:last-child {
  color: var(--ink);
  background: currentColor;
  transform: translate(2px, -2px);
}

.scroll-cue {
  position: absolute;
  right: 40px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgb(255 255 255 / 45%);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgb(255 255 255 / 22%);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 1px;
  height: 50%;
  background: white;
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0% { transform: translateY(-110%); }
  100% { transform: translateY(220%); }
}

.manifesto {
  position: relative;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px max(7vw, 28px);
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.water-bloom::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8vw;
  bottom: -30vw;
  width: min(74vw, 1020px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle,
      rgb(4 154 75 / 9%) 0 1px,
      transparent 2px 42px
    ),
    radial-gradient(circle, rgb(31 184 99 / 15%), transparent 64%);
  filter: blur(calc(8px - var(--scene-progress, 0) * 5px));
  opacity: calc(0.26 + var(--scene-progress, 0) * 0.58);
  transform:
    translateY(calc((1 - var(--scene-progress, 0)) * 80px))
    scale(calc(0.68 + var(--scene-progress, 0) * 0.5));
}

.water-bloom > * {
  position: relative;
  z-index: 1;
}

.manifesto h2 {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(40px, 6.2vw, 88px);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.08;
  white-space: nowrap;
  color: transparent;
  background:
    linear-gradient(
      105deg,
      var(--ink) 0%,
      var(--ink) 42%,
      var(--green) 50%,
      var(--ink) 59%,
      var(--ink) 100%
    );
  background-position: calc(110% - var(--scene-progress, 0) * 135%) 50%;
  background-size: 230% 100%;
  background-clip: text;
  -webkit-background-clip: text;
}

.manifesto > .section-kicker {
  width: max-content;
  margin: 0 auto 18px;
  padding-inline-end: 0.35em;
}

.manifesto > p:last-child,
.manifesto > .cms-block-body {
  box-sizing: border-box;
  width: min(42rem, 100%);
  max-width: 100%;
  margin: 40px auto 0;
  color: #5d625e;
  font-size: var(--home-copy-size);
  line-height: 1.62;
  text-align: center;
}

.manifesto > .cms-block-body,
.manifesto > .cms-block-body * {
  font-size: var(--home-copy-size) !important;
}

.manifesto > .cms-block-body p {
  margin: 0 0 0.85em;
  color: inherit;
  line-height: inherit;
  text-align: center !important;
}

.story-panel {
  position: relative;
  min-height: 115svh;
  color: white;
  background: var(--ink);
}

.story-panel__media {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  border-radius: 0;
}

.story-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform:
    translateY(calc((var(--scene-progress, 0) - 0.5) * 5%))
    scale(calc(1.04 + var(--scene-progress, 0) * 0.06));
  filter:
    blur(calc((1 - var(--scene-progress, 0)) * 2.2px))
    saturate(calc(0.76 + var(--scene-progress, 0) * 0.28))
    contrast(1.05);
  transition: filter 500ms ease;
}

.water-surface::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at calc(58% + var(--scene-progress, 0) * 14%) 68%,
      transparent 0 8%,
      rgb(125 255 211 / 12%) 8.3%,
      transparent 8.8% 15%,
      rgb(93 238 194 / 8%) 15.3%,
      transparent 15.8% 24%,
      rgb(99 225 199 / 5%) 24.3%,
      transparent 25%
    ),
    linear-gradient(
      112deg,
      transparent 28%,
      rgb(174 255 229 / 7%) 48%,
      transparent 66%
    );
  mix-blend-mode: screen;
  opacity: calc(0.16 + var(--scene-progress, 0) * 0.5);
  transform: scale(calc(0.88 + var(--scene-progress, 0) * 0.2));
}

.story-panel__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(1 5 4 / 86%) 0%, rgb(1 5 4 / 58%) 48%, rgb(1 5 4 / 15%) 100%),
    linear-gradient(0deg, rgb(1 5 4 / 35%), transparent 38%);
}

/* 灌溉块：不做整幅白蒙版，避免把图盖糊；字可读性改由文字区柔光衬底承担 */
.story-panel--green .story-panel__veil {
  display: none !important;
}

.story-panel--green .story-panel__media.water-surface::after,
.story-panel--green .water-surface::after {
  display: none !important;
  opacity: 0 !important;
}

.story-panel--green .story-panel__media img {
  filter: none !important;
}

/* 灌溉故事块：默认黑字；后台「故事文字颜色」可覆盖 */
.story-panel--green {
  --story-ink: #0a0f0c;
  color: var(--story-ink);
}

/* 标题/正文/链接：柔白光晕；小标题不套蒙版，保持品牌绿 */
.story-panel--green .story-panel__copy {
  position: relative;
}

.story-panel--green .story-panel__copy::before {
  display: none !important;
  content: none !important;
}

.story-panel--green h2,
.story-panel--green h2.cms-block-title,
.story-panel--green .story-panel__copy > .cms-block-body,
.story-panel--green .story-panel__copy > .cms-block-body *,
.story-panel--green .story-panel__copy > .cms-block-body p,
.story-panel--green .arrow-link,
.story-panel--green .arrow-link span {
  text-shadow:
    0 0 6px rgb(255 255 255 / 95%),
    0 0 14px rgb(255 255 255 / 90%),
    0 0 28px rgb(255 255 255 / 75%),
    0 0 48px rgb(255 255 255 / 45%),
    0 1px 0 rgb(255 255 255 / 70%) !important;
}

.story-panel--green .eyebrow {
  color: var(--green-bright) !important;
  -webkit-text-fill-color: var(--green-bright) !important;
  text-shadow: none !important;
  opacity: 1;
}

.story-panel--green h2,
.story-panel--green h2.cms-block-title,
.story-panel--green h2.cms-block-title--default,
.story-panel--green h2.cms-block-title--large,
.story-panel--green h2.cms-block-title--xlarge {
  color: var(--story-ink) !important;
  -webkit-text-fill-color: var(--story-ink) !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

.story-panel--green .story-panel__copy > .cms-block-body,
.story-panel--green .story-panel__copy > .cms-block-body *,
.story-panel--green .story-panel__copy > .cms-block-body p {
  color: var(--story-ink) !important;
  -webkit-text-fill-color: var(--story-ink) !important;
}

.story-panel--green .arrow-link,
.story-panel--green .arrow-link span {
  color: var(--story-ink) !important;
  -webkit-text-fill-color: var(--story-ink) !important;
}

.story-panel--green .arrow-link span:last-child {
  border-color: var(--story-ink) !important;
}

/* 植物工厂块：白字、无蒙版；小标题绿字并与主标题左对齐 */
.story-panel--blue .story-panel__veil {
  display: none !important;
}

.story-panel--blue .story-panel__media.water-surface::after,
.story-panel--blue .water-surface::after {
  display: none !important;
  opacity: 0 !important;
}

.story-panel--blue .story-panel__media img {
  filter: none !important;
}

.story-panel--blue .story-panel__copy::before {
  display: none !important;
  content: none !important;
}

.story-panel--blue {
  color: #fff;
}

.story-panel--blue .story-panel__lead {
  align-items: flex-start;
  width: max-content;
  max-width: 100%;
}

.story-panel--blue .eyebrow {
  color: var(--green-bright) !important;
  -webkit-text-fill-color: var(--green-bright) !important;
  text-shadow: none !important;
  margin-inline: 0;
  padding-inline: 0;
  opacity: 1;
}

.story-panel--blue h2,
.story-panel--blue h2.cms-block-title,
.story-panel--blue h2.cms-block-title--default,
.story-panel--blue h2.cms-block-title--large,
.story-panel--blue h2.cms-block-title--xlarge {
  margin-inline: 0;
  padding-inline-start: 0;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: none !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

.story-panel--blue .story-panel__copy > .cms-block-body,
.story-panel--blue .story-panel__copy > .cms-block-body *,
.story-panel--blue .story-panel__copy > .cms-block-body p {
  color: rgb(255 255 255 / 82%) !important;
  -webkit-text-fill-color: rgb(255 255 255 / 82%) !important;
  text-shadow: none !important;
}

.story-panel--blue .arrow-link,
.story-panel--blue .arrow-link span {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: none !important;
}

.story-panel--blue .arrow-link span:last-child {
  border-color: rgb(255 255 255 / 70%) !important;
}

.story-panel__content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 110px max(7vw, 28px);
  overflow: visible;
  text-align: center;
}

.story-number {
  display: none !important;
}

.story-panel__content > .story-panel__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  max-width: min(100%, calc(100vw - 56px));
  margin: 0 auto;
}

.story-panel__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  max-width: 100%;
  margin: 0;
}

.story-panel h2 {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding-inline-end: 0.12em;
  text-align: left;
  /* 8号：与首页主标题同级 */
  font-size: clamp(40px, 6.2vw, 88px);
  font-weight: 610;
  letter-spacing: -0.04em;
  line-height: 1.08;
  white-space: nowrap;
  color: transparent;
  background:
    linear-gradient(
      105deg,
      #ffffff 0%,
      #ffffff 39%,
      #a8f5d4 49%,
      #ffffff 58%,
      #ffffff 100%
    );
  background-position: calc(110% - var(--scene-progress, 0) * 145%) 50%;
  background-size: 235% 100%;
  background-clip: text;
  -webkit-background-clip: text;
}

.story-panel__content .eyebrow {
  width: max-content;
  margin: 0 0 18px;
  padding-inline-end: 0.35em;
  font-size: clamp(12px, 1.15vw, 14px);
  font-weight: 720;
  letter-spacing: 0.2em;
  text-align: left;
}

.story-panel__content > p:not(.eyebrow) {
  /* 兼容旧结构：与标题同左缘 */
  width: min(36rem, 100%);
  max-width: 100%;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: var(--home-copy-size);
  line-height: 1.62;
  text-align: left;
  align-self: flex-start;
}

/* 故事正文 + 下方链接：与大标题同一左缘，整组水平居中 */
.story-panel__copy > .cms-block-body {
  display: block;
  box-sizing: border-box;
  width: min(36rem, 100%);
  max-width: 100%;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: var(--home-copy-size);
  line-height: 1.62;
  text-align: left;
  align-self: flex-start;
}

.story-panel__copy > .cms-block-body,
.story-panel__copy > .cms-block-body * {
  font-size: var(--home-copy-size) !important;
}

.story-panel__copy > .cms-block-body p {
  margin: 0 0 0.85em;
  max-width: none;
  width: auto;
  color: inherit;
  line-height: inherit;
  text-align: left !important;
}

.story-panel__copy > div[data-reveal]:not(.cms-block-body) {
  align-self: flex-start;
  display: flex;
  justify-content: flex-start;
  width: auto;
  margin-top: 28px;
  padding-right: 0;
}

.numbers-section,
.home-cases,
.application-section,
.systems-section,
.automation-section,
.subsector-section,
.product-family,
.case-index,
.qualification-section,
.company-structure {
  padding: 150px max(7vw, 28px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 84px;
}

.section-heading::after {
  content: "";
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--green) 15%,
      var(--cyan) 50%,
      transparent
    );
  filter: drop-shadow(0 0 8px rgb(41 196 135 / 32%));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 900ms ease 260ms,
    transform 1300ms cubic-bezier(0.2, 0.7, 0, 1) 180ms;
}

.section-heading.is-visible::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.section-heading h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(44px, 6vw, 90px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.home-cases .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-cases .section-heading .section-kicker {
  margin-bottom: 18px;
}

.home-cases .section-heading h2 {
  width: max-content;
  max-width: none;
  margin: 0 auto;
  padding-inline-end: 0.1em;
  /* 8号：与首页主标题同级，整句单行 */
  font-size: clamp(40px, 6.2vw, 88px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  white-space: nowrap;
  text-align: center;
}

.home-cases .section-heading::after {
  transform-origin: center center;
}

.numbers-section {
  position: relative;
  color: white;
  background: #06110c;
  overflow: hidden;
  isolation: isolate;
}

.numbers-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -42vw;
  width: min(92vw, 1320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle,
      rgb(95 240 177 / 9%) 0 1px,
      transparent 2px 52px
    ),
    radial-gradient(circle, rgb(0 131 73 / 22%), transparent 64%);
  opacity: calc(0.18 + var(--scene-progress, 0) * 0.66);
  transform:
    translateX(-50%)
    scale(calc(0.7 + var(--scene-progress, 0) * 0.44));
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgb(255 255 255 / 14%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.number-item {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px clamp(20px, 2.2vw, 38px);
  border-right: 1px solid rgb(255 255 255 / 14%);
  overflow: hidden;
  isolation: isolate;
}

.number-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 54%;
  background:
    linear-gradient(0deg, rgb(5 149 78 / 18%), transparent),
    radial-gradient(circle at 50% 110%, rgb(75 239 161 / 18%), transparent 56%);
  opacity: 0;
  transform: translateY(52%);
  transition:
    opacity 900ms ease,
    transform 1200ms cubic-bezier(0.2, 0.7, 0, 1);
}

.number-item.is-visible::before,
.number-item:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.number-item:last-child {
  border-right: 0;
}

.number-item strong {
  color: var(--green-bright);
  font-size: clamp(50px, 5.5vw, 84px);
  font-weight: 580;
  letter-spacing: -0.06em;
}

.number-item span {
  max-width: 180px;
  color: rgb(255 255 255 / 60%);
  font-size: 13px;
  line-height: 1.6;
}

.source-note {
  margin: 26px 0 0;
  color: rgb(255 255 255 / 38%);
  font-size: 11px;
}

.featured-case-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.featured-case {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: white;
  background: #111;
  border-radius: 28px;
  isolation: isolate;
}

.featured-case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0, 1);
}

.featured-case::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgb(0 0 0 / 82%));
}

.water-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -20%;
  pointer-events: none;
  background:
    linear-gradient(
      112deg,
      transparent 34%,
      rgb(196 255 235 / 18%) 47%,
      rgb(255 255 255 / 7%) 51%,
      transparent 64%
    );
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-70%) rotate(3deg);
  transition:
    opacity 500ms ease,
    transform 1100ms cubic-bezier(0.2, 0.7, 0, 1);
}

.water-card:hover::before {
  opacity: 1;
  transform: translateX(70%) rotate(3deg);
}

.featured-case:hover img {
  transform: scale(1.055);
}

.featured-case > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.featured-case span,
.case-card a > p,
.case-card > p,
.system-card > p:not(:has(img)),
.product-card a > p,
.product-card > p {
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-case h3 {
  margin: 10px 0 0;
  font-size: clamp(26px, 2.6vw, 42px);
  font-weight: 560;
  letter-spacing: -0.035em;
}

.center-link {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.closing-cta {
  position: relative;
  min-height: 86svh;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 120px 24px;
  overflow: hidden;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 50% 78%, rgb(0 132 67 / 42%), transparent 32%),
    #010504;
}

.closing-cta::before {
  content: "";
  position: absolute;
  width: 68vw;
  height: 68vw;
  border: 1px solid rgb(64 255 157 / 12%);
  border-radius: 50%;
  transform: scale(calc(0.8 + var(--scene-progress, 0) * 0.45));
}

.closing-cta__drop {
  width: 32px;
  height: 44px;
  margin-bottom: 34px;
  background: linear-gradient(160deg, white, #b8d8ce 74%);
  border-radius: 58% 42% 55% 45% / 72% 63% 37% 28%;
  transform: rotate(45deg);
  box-shadow: 0 18px 60px rgb(76 255 166 / 26%);
}

.closing-cta h2 {
  position: relative;
  width: max-content;
  max-width: none;
  margin: 0 auto 38px;
  padding-inline-end: 0.1em;
  /* 8号：与首页主标题同级 */
  font-size: clamp(40px, 6.2vw, 88px);
  font-weight: 610;
  letter-spacing: -0.04em;
  line-height: 1.08;
  white-space: nowrap;
  text-align: center;
}

.inner-hero {
  display: flex;
  align-items: flex-end;
  color: white;
  background: #010504;
}

.inner-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -10vw;
  bottom: -32vw;
  width: min(72vw, 960px);
  aspect-ratio: 1;
  border: 1px solid rgb(116 255 204 / 11%);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgb(73 227 165 / 4%),
    0 0 0 94px rgb(87 238 194 / 2.5%);
  opacity: calc(0.18 + var(--scene-progress, 0) * 0.68);
  transform: scale(calc(0.72 + var(--scene-progress, 0) * 0.5));
  pointer-events: none;
}

.inner-hero__image,
.inner-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inner-hero__image {
  z-index: 0;
  object-fit: cover;
  transform:
    translateY(calc((var(--scene-progress, 0) - 0.5) * 6%))
    scale(calc(1.04 + var(--scene-progress, 0) * 0.07));
  filter:
    blur(calc((1 - var(--scene-progress, 0)) * 1.5px))
    saturate(calc(0.78 + var(--scene-progress, 0) * 0.2))
    contrast(1.02)
    brightness(1.02);
}

.inner-hero__veil {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgb(1 5 4 / 42%) 0%, rgb(1 5 4 / 10%) 55%, rgb(1 5 4 / 16%) 100%),
    linear-gradient(90deg, rgb(1 5 4 / 12%) 0%, rgb(1 5 4 / 5%) 28%, transparent 52%);
}

[dir="rtl"] .inner-hero__veil {
  background:
    linear-gradient(0deg, rgb(1 5 4 / 42%) 0%, rgb(1 5 4 / 10%) 55%, rgb(1 5 4 / 16%) 100%),
    linear-gradient(270deg, rgb(1 5 4 / 12%) 0%, rgb(1 5 4 / 5%) 28%, transparent 52%);
}

.inner-hero__content {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
  padding: 170px 0 90px;
}

.inner-hero h1 {
  max-width: 1120px;
  margin: 0;
  padding: 0.08em 0 0.12em;
  font-size: clamp(56px, 8vw, 126px);
  font-weight: 610;
  letter-spacing: -0.04em;
  line-height: 1.18;
  overflow: visible;
  color: transparent;
  background:
    linear-gradient(
      108deg,
      #ffffff 0%,
      #ffffff 39%,
      #b7f7df 49%,
      #ffffff 58%,
      #ffffff 100%
    );
  background-position: calc(110% - var(--scene-progress, 0) * 140%) 50%;
  background-size: 235% 100%;
  background-clip: text;
  -webkit-background-clip: text;
}

.inner-hero__content > p:last-child {
  max-width: 760px;
  margin: 32px 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.58;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2vw;
  align-items: center;
  padding: 150px max(2.5vw, 16px);
}

.editorial-copy h2,
.plant-definition h2,
.control-platform h2,
.deep-section h2,
.visual-banner h2,
.about-intro h2,
.contact-section h2 {
  margin: 0;
  padding: 0.1em 0 0.08em;
  /* 默认字号；标题档位 cms-block-title--* 会覆盖 */
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 610;
  letter-spacing: -0.04em;
  line-height: 1.18;
  overflow: visible;
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.editorial-copy h2 {
  width: max-content;
  max-width: none;
  margin: 0;
  padding-inline-end: 0.08em;
  /* 与内页默认大标题同级，强制单行不缩字 */
  font-size: clamp(40px, 6.2vw, 88px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  white-space: nowrap;
  text-align: left;
}

.editorial-copy h2.cms-block-title--default {
  font-size: clamp(36px, 4.8vw, 64px) !important;
}
.editorial-copy h2.cms-block-title--large {
  font-size: clamp(40px, 6.2vw, 88px) !important;
}
.editorial-copy h2.cms-block-title--xlarge {
  font-size: clamp(48px, 7vw, 104px) !important;
}

.editorial-copy .section-kicker {
  margin-bottom: 18px;
}

/* 内页正文：对准 cms-block-body，与首页小字同号、与标题左对齐 */
.editorial-copy > .cms-block-body,
.deep-section__copy > .cms-block-body,
.control-platform__copy > .cms-block-body,
.definition-copy.cms-block-body,
.definition-copy > .cms-block-body,
.definition-copy > p,
.about-intro__copy > .cms-block-body,
.about-intro__copy > .cms-rich__inner,
.contact-section .cms-block-body {
  margin: 28px 0 0;
  color: #646965;
  font-size: var(--home-copy-size);
  line-height: 1.72;
  text-align: left;
  max-width: 36rem;
}

.editorial-copy > .cms-block-body,
.editorial-copy > .cms-block-body *,
.deep-section__copy > .cms-block-body,
.deep-section__copy > .cms-block-body *,
.control-platform__copy > .cms-block-body,
.control-platform__copy > .cms-block-body *,
.definition-copy.cms-block-body,
.definition-copy.cms-block-body *,
.definition-copy > .cms-block-body,
.definition-copy > .cms-block-body *,
.definition-copy > p,
.about-intro__copy > .cms-block-body,
.about-intro__copy > .cms-block-body *,
.about-intro__copy > .cms-rich__inner,
.about-intro__copy > .cms-rich__inner *,
.contact-section .cms-block-body,
.contact-section .cms-block-body * {
  font-size: var(--home-copy-size) !important;
}

.editorial-visual {
  min-width: 0;
  min-height: min(72vh, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
}

.editorial-visual img {
  width: 100%;
  height: 100%;
  max-height: min(72vh, 720px);
  object-fit: contain;
}

.dark-section {
  color: white;
  background: #06110c;
}

.deep-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.deep-section__media {
  min-height: 760px;
  overflow: hidden;
}

.deep-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform:
    translateY(calc((var(--scene-progress, 0) - 0.5) * 6%))
    scale(1.08);
}

.deep-section__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px max(6vw, 36px);
}

.deep-section__copy > .cms-block-body {
  color: rgb(255 255 255 / 64%);
}

.mini-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  background: rgb(255 255 255 / 14%);
}

.mini-stat-row span {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  background: #06110c;
  color: rgb(255 255 255 / 50%);
  font-size: 11px;
}

.mini-stat-row b {
  color: white;
  font-size: 20px;
  font-weight: 580;
}

.application-list {
  border-top: 1px solid var(--line);
}

.application-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  transition: padding 260ms ease;
}

.application-row:hover {
  padding: 0 20px;
}

.application-row > span {
  color: var(--muted);
  font-size: 12px;
}

.application-row h3 {
  margin: 0;
  font-size: clamp(25px, 3.3vw, 48px);
  font-weight: 520;
  letter-spacing: -0.035em;
}

.application-row i {
  font-size: 18px;
  font-style: normal;
}

.visual-banner {
  position: relative;
  isolation: isolate;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #010504;
}

.visual-banner img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(calc((var(--scene-progress, 0) - 0.5) * -7%));
}

.visual-banner::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgb(0 15 8 / 72%), rgb(0 8 4 / 18%) 70%);
}

.visual-banner > div {
  position: relative;
  z-index: 2;
  padding: 100px max(7vw, 28px);
}

.visual-banner h2 {
  max-width: 1100px;
  white-space: normal;
}

.plant-definition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: 150px max(7vw, 28px);
}

.definition-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.definition-points span {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: #363a36;
  font-size: 14px;
}

.control-platform {
  min-height: 90svh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.control-platform__visual {
  align-self: stretch;
  overflow: hidden;
}

.control-platform__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.control-platform__copy {
  padding: 110px max(6vw, 34px);
}

.control-platform__copy > .cms-block-body {
  color: rgb(255 255 255 / 62%);
}

.system-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.system-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 34px;
  background: white;
  border-radius: 0;
}

/* 兼容后台编辑后变成 <p><img> 或原结构 <div><img> */
.system-card > div:has(img),
.system-card > p:has(img) {
  height: 360px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #eceeeb;
  border-radius: 0;
}

.system-card img {
  display: block;
  width: 94% !important;
  height: 94% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transition: transform 600ms ease;
}

.system-card:hover img {
  transform: scale(1.04);
}

.system-card > p:not(:has(img)) {
  margin: 26px 0 9px;
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.system-card h3,
.product-card h3 {
  margin: 0;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 560;
  letter-spacing: -0.035em;
}

.automation-section {
  color: white;
  background: #06110c;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.automation-grid article {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: #172019;
}

.automation-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 700ms ease;
}

.automation-grid article:hover img {
  transform: scale(1.05);
}

.automation-grid article::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgb(0 0 0 / 75%));
}

.automation-grid h3 {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  margin: 0;
  font-size: 24px;
  font-weight: 540;
}

.subsector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.subsector-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--paper);
}

.subsector-grid span {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.subsector-grid h3 {
  margin: auto 0 18px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 560;
  letter-spacing: -0.04em;
}

.subsector-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-family--dark {
  color: white;
  background: #06110c;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 16px;
}

.product-card {
  padding: 16px 16px 24px;
  background: white;
  border-radius: 0;
  text-align: center;
}

.product-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-card a > div,
.product-card > div {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
  overflow: hidden;
  background: #f0f1ee;
  border-radius: 0;
}

.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  mix-blend-mode: normal;
  transition: transform 400ms ease;
}

.product-card:hover img {
  transform: translateY(-4px);
}

.product-card a > p,
.product-card > p {
  width: 100%;
  margin: 18px 0 8px;
  text-align: center;
}

.product-card h3 {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.3;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.95fr);
  gap: 0;
  min-height: 640px;
  align-items: stretch;
  background: #f5f5f2;
  overflow: visible;
}

.product-showcase__hero {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  height: 100%;
  overflow: hidden;
  background: #eef0ed;
}

.product-showcase__hero img {
  width: 100%;
  height: 100%;
  padding: 28px 28px 110px;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
}

.product-showcase__hero > div {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 30px;
  left: 32px;
  color: var(--ink);
}

.product-showcase__hero span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.product-showcase__hero h3 {
  margin: 9px 0 0;
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 580;
  letter-spacing: -0.045em;
}

/* 右侧描述：允许换行，不被裁切 */
.product-showcase__side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  min-height: 100%;
  height: auto;
  padding: 40px 36px;
  overflow: visible;
  color: var(--ink);
  background: #f7f7f4;
  border-left: 1px solid rgb(10 18 13 / 8%);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.product-showcase__side.cms-rich__inner {
  max-width: none;
  margin: 0;
}

.product-showcase__side > * {
  min-width: 0;
  max-width: 100%;
}

.product-showcase__side > *:first-child {
  margin-top: 0;
}

.product-showcase__side > *:last-child {
  margin-bottom: 0;
}

.product-showcase__side p,
.product-showcase__side span,
.product-showcase__side strong,
.product-showcase__side td,
.product-showcase__side th {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-showcase__side p {
  margin: 0 0 1em;
}

.product-showcase__side p:last-child {
  margin-bottom: 0;
}

.product-showcase__side img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0.6em 0 0;
  object-fit: contain;
}

.product-showcase__side p:has(img) {
  margin: 0;
}

.product-showcase__side p:has(img) img {
  margin: 0;
}

.product-showcase__side ul,
.product-showcase__side ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.product-showcase__side table {
  width: 100% !important;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.product-showcase__side table col {
  width: auto !important;
}

.product-showcase__side td,
.product-showcase__side th {
  width: auto !important;
  max-width: 100%;
  padding: 8px 0;
  vertical-align: top;
}

.product-detail .detail-nav {
  margin-top: 28px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 24px;
  align-items: start;
}

.case-card {
  min-width: 0;
}

.case-card a {
  display: block;
}

.case-card a > div,
.case-card > div {
  height: 320px;
  overflow: hidden;
  background: #dfe3df;
}

.case-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.case-card:hover img {
  transform: scale(1.045);
}

.case-card a > p,
.case-card > p {
  margin: 18px 0 8px;
}

.case-card h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.case-card--wide {
  grid-column: 1 / -1;
}

.case-card--wide a > div,
.case-card--wide > div {
  height: min(42vw, 420px);
}

.case-card--placeholder {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgb(24 173 94 / 35%), transparent 40%),
    #06110c;
}

.case-card--placeholder > span {
  margin: 0 0 auto;
  color: var(--green-bright);
  font-size: 64px;
  font-weight: 240;
}

.case-card--placeholder p {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 45%);
}

.qualification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.qualification-grid article {
  min-width: 0;
}

.qualification-grid a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.qualification-grid__media,
.qualification-grid article > div,
.qualification-grid a > div:has(img) {
  width: 100%;
  height: 360px;
  min-height: 360px;
  max-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(10 18 13 / 8%);
}

.qualification-grid img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.qualification-grid span {
  display: block;
  margin: 18px 0 8px;
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.qualification-grid h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 570;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.qualification-grid p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.news-ledger {
  padding: 150px max(7vw, 28px);
}

.ledger-list {
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.ledger-list article {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 132px;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.ledger-list span {
  color: var(--green-bright);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ledger-list h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 520;
  letter-spacing: -0.035em;
}

.ledger-list i {
  font-style: normal;
}

/* 关于我们：全幅对切开合，图片铺满左侧，衔接上下内容 */
.about-intro {
  min-height: 86svh;
  display: grid;
  /* 图片更宽，文字右移，保证左侧四人完整可见 */
  grid-template-columns: 1.35fr 0.65fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  margin: 0;
}

.about-intro__visual {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
}

.about-intro__visual img {
  width: 100%;
  height: 100%;
  min-height: 86svh;
  object-fit: cover;
  /* 靠左，避免国旗被居中裁切掉 */
  object-position: left center;
  border-radius: 0;
  display: block;
}

.about-intro__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 10vw, 120px) clamp(28px, 5vw, 72px);
}

.about-intro--light {
  background: #fff;
}

.about-intro--light .about-intro__copy {
  background: #fff;
  color: #0a0f0c;
}

.about-intro--light .section-kicker,
.about-intro--light .eyebrow {
  color: #0a0f0c !important;
}

.about-intro--light h2,
.about-intro--light h2.cms-block-title {
  color: #0a0f0c !important;
  -webkit-text-fill-color: #0a0f0c !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

.about-intro--light .about-intro__copy > .cms-block-body,
.about-intro--light .about-intro__copy > .cms-rich__inner,
.about-intro--light .about-intro__copy > .cms-block-body *,
.about-intro--light .about-intro__copy > .cms-rich__inner * {
  color: #0a0f0c !important;
  -webkit-text-fill-color: #0a0f0c !important;
}

.large-year {
  display: block;
  color: var(--green);
  font-size: clamp(88px, 14vw, 220px);
  font-weight: 620;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.capability-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(7vw, 28px);
}

.capability-band article {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px clamp(20px, 3vw, 42px);
  border-right: 1px solid rgb(255 255 255 / 14%);
}

.capability-band article:first-child {
  border-left: 1px solid rgb(255 255 255 / 14%);
}

.capability-band h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 560;
}

.capability-band p {
  margin: 0;
  color: rgb(255 255 255 / 52%);
  font-size: 13px;
  line-height: 1.55;
}

.structure-list {
  border-top: 1px solid var(--line);
}

.structure-list > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}

.structure-list span {
  color: var(--green);
  font-size: 11px;
}

.structure-list p {
  margin: 0;
  font-size: clamp(23px, 3vw, 43px);
  font-weight: 520;
  letter-spacing: -0.035em;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(200px, 0.55fr);
  gap: 4vw;
  align-items: start;
  padding: 150px max(7vw, 28px);
  color: white;
  background:
    radial-gradient(circle at 75% 30%, rgb(12 130 74 / 28%), transparent 30%),
    #010504;
}

.contact-section__copy {
  min-width: 0;
}

.contact-section__copy > p:empty {
  display: none;
}

.contact-section__qr {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
  justify-self: start;
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
}

.contact-section__qr img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  padding: 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgb(0 0 0 / 28%);
}

.contact-details {
  align-self: end;
}

.contact-details p {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  margin: 0;
  padding: 23px 0;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  color: rgb(255 255 255 / 64%);
  font-size: 15px;
  line-height: 1.55;
}

.contact-details span {
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Connected product catalogue */
.iot-catalog {
  color: var(--ink);
  background: #f2f3ef;
}

.iot-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 4vw, 76px);
  padding: 140px max(7vw, 28px) 80px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 74% 48%, rgb(5 138 76 / 22%), transparent 32%),
    radial-gradient(circle at 92% 14%, rgb(70 220 190 / 9%), transparent 28%),
    #010504;
  isolation: isolate;
}

.iot-hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: -18vw;
  bottom: -44vw;
  width: min(92vw, 1280px);
  aspect-ratio: 1;
  border: 1px solid rgb(92 255 184 / 9%);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgb(44 218 139 / 3%),
    0 0 0 160px rgb(72 222 186 / 2%);
  transform: scale(calc(0.82 + var(--scene-progress, 0) * 0.24));
}

.iot-hero__mesh {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgb(124 255 202 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(124 255 202 / 7%) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 72% 52%, black, transparent 54%);
  opacity: calc(0.24 + var(--scene-progress, 0) * 0.48);
  transform: perspective(900px) rotateX(58deg) scale(1.35) translateY(calc(var(--scene-progress, 0) * 34px));
}

.iot-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.iot-hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.8vw, 108px);
  font-weight: 610;
  letter-spacing: -0.064em;
  line-height: 0.94;
  color: transparent;
  background:
    linear-gradient(108deg, #fff 0%, #fff 39%, #aaf2d8 49%, #fff 58%, #fff 100%);
  background-position: calc(110% - var(--scene-progress, 0) * 145%) 50%;
  background-size: 235% 100%;
  background-clip: text;
  -webkit-background-clip: text;
}

.iot-hero__copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 32px 0 0;
  color: rgb(255 255 255 / 65%);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.68;
}

.iot-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  font-size: 14px;
  font-weight: 610;
}

.iot-hero__link i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 52%);
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.iot-hero__link:hover i {
  color: #07100b;
  background: white;
  transform: translateY(3px);
}

.iot-hero__visual {
  position: relative;
  height: min(72vh, 720px);
  min-height: 540px;
  transform: translateY(calc((var(--scene-progress, 0) - 0.5) * -42px));
}

.iot-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgb(111 255 205 / 17%);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  box-shadow: inset 0 0 54px rgb(27 207 122 / 3%);
}

.iot-orbit::before,
.iot-orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid rgb(184 255 231 / 80%);
  border-radius: 50%;
  background: #0c8e53;
  box-shadow: 0 0 18px rgb(70 255 175 / 65%);
}

.iot-orbit::before { top: 13%; left: 18%; }
.iot-orbit::after { right: 7%; bottom: 29%; }
.iot-orbit--outer { width: min(38vw, 590px); aspect-ratio: 1; }
.iot-orbit--inner { width: min(26vw, 390px); aspect-ratio: 1; transform: translate(-50%, -50%) rotate(32deg); }

.iot-signal {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(128 255 211 / 80%), transparent);
  transform-origin: left center;
  filter: drop-shadow(0 0 5px rgb(61 237 166 / 70%));
}

.iot-signal--a { width: 44%; transform: rotate(-27deg); }
.iot-signal--b { width: 38%; transform: rotate(143deg); }

.iot-device {
  position: absolute;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 3%));
  border: 1px solid rgb(255 255 255 / 17%);
  box-shadow:
    0 28px 85px rgb(0 0 0 / 38%),
    inset 0 1px rgb(255 255 255 / 12%);
  backdrop-filter: blur(18px);
}

.iot-device img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgb(0 0 0 / 24%));
}

.iot-device--controller {
  z-index: 3;
  top: 22%;
  left: 23%;
  width: min(22vw, 320px);
  aspect-ratio: 1;
  border-radius: 38px;
}

.iot-device--station {
  z-index: 2;
  right: 2%;
  bottom: 3%;
  width: min(18vw, 250px);
  aspect-ratio: 0.86;
  border-radius: 26px;
}

.iot-device--station img { width: 92%; height: 92%; }

.iot-device--sensor {
  z-index: 4;
  bottom: 8%;
  left: 0;
  width: min(15vw, 210px);
  aspect-ratio: 1.16;
  border-radius: 24px;
}

.iot-hero__readout {
  position: absolute;
  top: 11%;
  right: 7%;
  padding: 8px 12px;
  color: rgb(191 255 230 / 78%);
  background: rgb(7 61 39 / 44%);
  border: 1px solid rgb(111 255 198 / 16%);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.iot-architecture {
  padding: 150px max(7vw, 28px);
  background: #f5f5f2;
}

.iot-architecture__rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.iot-architecture__rail a {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  background: #f5f5f2;
  transition: color 380ms ease, background 380ms ease;
}

.iot-architecture__rail a::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: radial-gradient(circle at 30% 100%, rgb(33 206 125 / 25%), transparent 65%);
  opacity: 0;
  transform: translateY(30%);
  transition: opacity 500ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0, 1);
}

.iot-architecture__rail a:hover {
  color: white;
  background: #06110c;
}

.iot-architecture__rail a:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.iot-architecture__rail span,
.iot-architecture__rail small,
.iot-architecture__rail strong,
.iot-architecture__rail i {
  position: relative;
  z-index: 1;
}

.iot-architecture__rail span {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.iot-architecture__rail small {
  margin-top: auto;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.iot-architecture__rail strong {
  margin-top: 10px;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 560;
  letter-spacing: -0.035em;
}

.iot-architecture__rail i {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--green);
  font-size: 13px;
  font-style: normal;
}

.iot-index {
  position: sticky;
  z-index: 30;
  top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  align-items: center;
  gap: 40px;
  padding: 26px max(7vw, 28px);
  color: white;
  background: rgb(1 8 5 / 91%);
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  backdrop-filter: blur(26px) saturate(145%);
}

.iot-index .section-kicker {
  margin: 0 0 6px;
  font-size: 9px;
}

.iot-index h2 {
  margin: 0;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 540;
  letter-spacing: -0.035em;
}

.iot-index nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.iot-index nav::-webkit-scrollbar { display: none; }

.iot-index nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  color: rgb(255 255 255 / 62%);
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 999px;
  font-size: 11px;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.iot-index nav a:hover {
  color: white;
  background: rgb(12 146 79 / 30%);
  border-color: rgb(93 255 179 / 25%);
}

.iot-category {
  padding: 145px max(7vw, 28px);
  scroll-margin-top: calc(var(--header-height) + 108px);
}

.iot-category:nth-of-type(even) {
  background: #eceee9;
}

.iot-category > header {
  display: grid;
  grid-template-columns: 90px minmax(320px, 1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(24px, 4vw, 70px);
  margin-bottom: 70px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.iot-category > header > span {
  align-self: start;
  padding-top: 7px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.iot-category > header div > p {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.17em;
}

.iot-category > header h2 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 90px);
  font-weight: 610;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.iot-category > header > p {
  margin: 0;
  color: #656a66;
  font-size: 16px;
  line-height: 1.72;
}

.iot-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.iot-category--platform .iot-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.iot-product-card {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  text-align: left;
  background: white;
  border: 1px solid rgb(6 18 11 / 8%);
  border-radius: 27px;
  box-shadow: 0 0 0 rgb(0 0 0 / 0%);
  cursor: pointer;
  transition:
    box-shadow 450ms ease,
    border-color 350ms ease,
    transform 550ms cubic-bezier(0.2, 0.7, 0, 1);
}

.iot-product-card:hover {
  border-color: rgb(4 154 74 / 24%);
  box-shadow: 0 28px 65px rgb(6 33 18 / 12%);
  transform: translateY(-7px);
}

.iot-product-card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.iot-product-card__media {
  position: relative;
  height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 56%, white 0 22%, transparent 62%),
    linear-gradient(145deg, #f5f6f3, #e9ece7);
  border-radius: 26px 26px 0 0;
}

.iot-product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgb(255 255 255 / 58%) 48%, transparent 70%);
  opacity: 0;
  transform: translateX(-90%);
  transition: opacity 300ms ease, transform 950ms cubic-bezier(0.2, 0.7, 0, 1);
}

.iot-product-card:hover .iot-product-card__media::after {
  opacity: 0.7;
  transform: translateX(90%);
}

.iot-product-card__media img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgb(0 0 0 / 15%));
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0, 1);
}

.iot-product-card:hover .iot-product-card__media img {
  transform: scale(1.035) translateY(-5px);
}

.iot-product-card--cover .iot-product-card__media {
  background: #e6eae5;
}

.iot-product-card--cover .iot-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.iot-product-card__media > i {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: white;
  background: rgb(2 12 7 / 80%);
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 50%;
  font-size: 17px;
  font-style: normal;
  backdrop-filter: blur(12px);
  transition: color 220ms ease, background 220ms ease, transform 320ms ease;
}

.iot-product-card:hover .iot-product-card__media > i {
  color: #041008;
  background: var(--green-bright);
  transform: rotate(90deg);
}

.iot-product-card__copy {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 27px 28px 29px;
}

.iot-product-card__copy small {
  color: var(--green);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.iot-product-card__copy > strong {
  margin-top: 12px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 570;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

.iot-product-card__copy > span {
  margin-top: 18px;
  color: #6b706c;
  font-size: 14px;
  line-height: 1.68;
}

.iot-product-card__copy em {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
  color: #2e332f;
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}

.iot-product-card__copy em b {
  color: var(--green);
  font-size: 12px;
}

.iot-source-note {
  margin: 0;
  padding: 24px max(7vw, 28px) 120px;
  color: #818682;
  background: #f2f3ef;
  font-size: 11px;
  line-height: 1.7;
}

.iot-dialog-backdrop {
  position: fixed;
  z-index: 10020;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(0 5 3 / 76%);
  backdrop-filter: blur(22px) saturate(115%);
  animation: iot-dialog-in 320ms ease both;
}

.iot-dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(820px, calc(100svh - 48px));
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  overflow: auto;
  color: var(--ink);
  background: #f6f7f3;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 32px;
  box-shadow: 0 48px 130px rgb(0 0 0 / 55%);
  animation: iot-dialog-card-in 480ms cubic-bezier(0.2, 0.7, 0, 1) both;
}

@keyframes iot-dialog-in { from { opacity: 0; } }
@keyframes iot-dialog-card-in { from { opacity: 0; transform: translateY(22px) scale(0.98); } }

.iot-dialog__close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  color: white;
  background: rgb(2 10 6 / 72%);
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.iot-dialog__media {
  min-height: 630px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, white 0 20%, transparent 64%),
    linear-gradient(145deg, #eef1ec, #e2e7e1);
}

.iot-dialog__media img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgb(0 0 0 / 16%));
}

.iot-dialog__media.is-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.iot-dialog__copy {
  display: flex;
  flex-direction: column;
  padding: 78px clamp(34px, 5vw, 70px) 48px;
}

.iot-dialog__copy > p:first-child {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.iot-dialog__copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.iot-dialog__copy > p:nth-of-type(2) {
  margin: 26px 0 0;
  color: #5f6560;
  font-size: 16px;
  line-height: 1.72;
}

.iot-dialog__copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 36px 0 0;
  padding: 1px;
  background: rgb(5 18 11 / 12%);
  list-style: none;
}

.iot-dialog__copy li {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 14px;
  background: #f6f7f3;
  font-size: 12px;
  line-height: 1.45;
}

.iot-dialog__copy > div {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.iot-dialog__copy > div span {
  display: block;
  color: var(--green);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.15em;
}

.iot-dialog__copy > div strong {
  display: block;
  margin-top: 9px;
  font-size: 14px;
  font-weight: 560;
  line-height: 1.55;
}

.iot-dialog__copy > small {
  margin-top: auto;
  padding-top: 34px;
  color: #8a8e8a;
  font-size: 9px;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px max(7vw, 28px) 32px;
  color: white;
  text-align: center;
  background: #010504;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand img {
  width: 168px;
}

.footer-brand p {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 38%);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  margin: 70px 0;
}

.footer-nav a {
  color: rgb(255 255 255 / 60%);
  font-size: 13px;
  transition: color 200ms ease;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  width: 100%;
  padding-top: 25px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 33%);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-align: center;
}

.footer-icp a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.footer-icp a:hover {
  color: rgb(255 255 255 / 62%);
  border-bottom-color: rgb(255 255 255 / 28%);
}

[data-reveal] {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(38px) scale(0.985);
  transition:
    opacity 1000ms cubic-bezier(0.2, 0.7, 0, 1),
    filter 1150ms cubic-bezier(0.2, 0.7, 0, 1),
    transform 1100ms cubic-bezier(0.2, 0.7, 0, 1);
  will-change: opacity, filter, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

[dir="rtl"] {
  font-family:
    "Noto Sans Arabic",
    "SF Pro Display",
    "PingFang SC",
    Arial,
    sans-serif;
}

[dir="rtl"] .site-nav,
[dir="rtl"] .header-actions,
[dir="rtl"] .hero-actions,
[dir="rtl"] .footer-nav {
  direction: rtl;
}

[dir="rtl"] .product-nav-trigger > button {
  margin-right: 2px;
  margin-left: 0;
}

[dir="rtl"] .product-mega-menu__categories a:hover {
  padding-right: 5px;
  padding-left: 0;
}

[dir="rtl"] .iot-product-card {
  text-align: right;
}

[dir="rtl"] .iot-product-card__media > i,
[dir="rtl"] .iot-dialog__close {
  right: auto;
  left: 18px;
}

[dir="rtl"] .site-nav a,
[dir="rtl"] .section-kicker,
[dir="rtl"] .eyebrow,
[dir="rtl"] .footer-brand p {
  letter-spacing: 0;
}

[dir="rtl"] .story-panel__veil {
  transform: scaleX(-1);
}

[dir="rtl"] .story-number {
  left: auto;
  right: clamp(96px, 14vw, 200px);
}

[dir="rtl"] .section-heading::after {
  transform-origin: right center;
}

[dir="rtl"] .home-hero h1,
[dir="rtl"] .inner-hero h1,
[dir="rtl"] .manifesto h2,
[dir="rtl"] .story-panel h2,
[dir="rtl"] .section-heading h2,
[dir="rtl"] .closing-cta h2 {
  letter-spacing: -0.035em;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 120px 1fr auto;
    padding: 0 24px;
  }

  .site-nav {
    justify-content: center;
    gap: 16px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .language-switcher button {
    min-width: 32px;
    padding: 0 7px;
  }

  .featured-case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-case:first-child {
    grid-column: 1 / -1;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .number-item:nth-child(2) {
    border-right: 0;
  }

  .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }

  .automation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-mega-menu__inner {
    grid-template-columns: minmax(190px, 0.65fr) minmax(230px, 0.75fr) minmax(370px, 1.6fr);
    gap: 28px;
  }

  .product-mega-menu__inner--direct {
    grid-template-columns: 1fr;
  }

  .iot-hero {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
  }

  .iot-architecture__rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .iot-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 62px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand-link {
    width: 112px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 24px 28px;
    background: rgb(1 7 4 / 96%);
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    backdrop-filter: blur(26px);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 360ms cubic-bezier(0.2, 0.7, 0, 1),
      opacity 250ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    font-size: 17px;
  }

  .site-nav a::after {
    display: none;
  }

  .product-nav-group {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
  }

  .product-nav-trigger {
    display: grid;
    grid-template-columns: 1fr 46px;
  }

  .product-nav-trigger > a {
    border-bottom: 0;
  }

  .product-nav-trigger > button {
    width: 46px;
    height: 54px;
    margin: 0;
  }

  .product-nav-group:not(.is-open) .product-mega-menu,
  .product-nav-group:not(.is-open):hover .product-mega-menu,
  .product-nav-group:not(.is-open):focus-within .product-mega-menu {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .product-mega-menu,
  .product-nav-group.is-open .product-mega-menu {
    position: static;
    max-height: 560px;
    padding: 12px 0 22px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 320ms ease, padding 320ms ease, opacity 220ms ease;
  }

  .product-mega-menu__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-mega-menu__intro {
    display: none;
  }

  .product-mega-menu__overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-top: 0;
  }

  .site-nav .product-mega-menu__overview a {
    min-height: 54px;
    padding: 0 13px;
    background: rgb(255 255 255 / 6%);
    border: 1px solid rgb(255 255 255 / 10%) !important;
    border-radius: 12px;
    font-size: 12px;
  }

  .product-mega-menu__categories {
    gap: 0 18px;
  }

  .site-nav .product-mega-menu__categories a {
    min-height: 43px;
    padding: 0;
    font-size: 11px;
  }

  .product-mega-menu__inner--direct .product-mega-menu__categories a {
    min-height: 52px;
    padding: 0 12px;
  }

  .iot-hero {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 130px;
  }

  .iot-hero__copy {
    max-width: 760px;
  }

  .iot-hero__visual {
    width: min(620px, 90vw);
    height: 540px;
    min-height: 0;
    margin: -20px auto -70px;
  }

  .iot-orbit--outer { width: min(76vw, 520px); }
  .iot-orbit--inner { width: min(54vw, 360px); }
  .iot-device--controller { width: min(42vw, 280px); }
  .iot-device--station { width: min(33vw, 220px); }
  .iot-device--sensor { width: min(27vw, 180px); }

  .iot-index {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .iot-index nav {
    justify-content: flex-start;
  }

  .iot-category > header {
    grid-template-columns: 64px 1fr;
  }

  .iot-category > header > p {
    grid-column: 2;
  }

  .iot-dialog {
    grid-template-columns: 1fr;
  }

  .iot-dialog__media {
    min-height: 340px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .editorial-split,
  .plant-definition,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-intro__visual {
    min-height: 56svh;
  }

  .about-intro__visual img {
    min-height: 56svh;
  }

  .about-intro__copy {
    padding: 72px 7vw;
  }

  .contact-section__qr {
    justify-self: start;
    margin-top: 24px;
  }

  .contact-section__qr img {
    width: min(220px, 70vw);
  }

  .editorial-copy h2 {
    font-size: clamp(28px, 7.2vw, 40px);
    white-space: nowrap;
  }

  .editorial-copy h2.cms-block-title--default,
  .editorial-copy h2.cms-block-title--large,
  .editorial-copy h2.cms-block-title--xlarge {
    font-size: clamp(28px, 7.2vw, 40px) !important;
  }

  .deep-section,
  .control-platform {
    grid-template-columns: 1fr;
  }

  .deep-section__media,
  .control-platform__visual {
    min-height: 60svh;
  }

  .deep-section__copy,
  .control-platform__copy {
    padding: 90px 7vw;
  }

  .system-cards,
  .subsector-grid,
  .qualification-grid {
    grid-template-columns: 1fr;
  }

  .system-card > div:has(img),
  .system-card > p:has(img) {
    height: 450px;
  }

  .subsector-grid article {
    min-height: 260px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-showcase__hero {
    min-height: 560px;
  }

  .product-showcase__side {
    padding: 36px 24px;
    border-left: 0;
    border-top: 1px solid rgb(10 18 13 / 8%);
  }

  .capability-band {
    grid-template-columns: 1fr 1fr;
  }

  .capability-band article:nth-child(2) {
    border-right: 0;
  }

  .capability-band article:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0 16px;
  }

  .language-switcher {
    gap: 0;
  }

  .language-switcher button {
    min-width: 29px;
    height: 24px;
    padding: 0 6px;
    font-size: 10px;
  }

  .header-actions {
    gap: 5px;
  }

  .home-hero__content {
    width: calc(100% - 28px);
  }

  .water-stage::before {
    width: 105vw;
    bottom: 10%;
  }

  .water-stage::after {
    top: 15%;
  }

  .home-hero .eyebrow {
    font-size: clamp(18px, 5vw, 24px);
    letter-spacing: 0.22em;
  }

  .home-hero h1 {
    font-size: clamp(22px, 7.2vw, 40px);
    white-space: nowrap;
  }

  .hero-copy {
    font-size: clamp(13px, 3.2vw, 16px);
    white-space: nowrap;
  }

  .hero-copy,
  .hero-copy * {
    font-size: clamp(13px, 3.2vw, 16px) !important;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .scroll-cue {
    right: 14px;
  }

  .manifesto,
  .numbers-section,
  .home-cases,
  .application-section,
  .systems-section,
  .automation-section,
  .subsector-section,
  .product-family,
  .case-index,
  .qualification-section,
  .company-structure,
  .news-ledger {
    padding: 110px 20px;
  }

  .home-cases .section-heading h2 {
    font-size: clamp(22px, 7.2vw, 40px);
    white-space: nowrap;
  }

  .manifesto {
    min-height: auto;
    align-items: center;
    text-align: center;
  }

  .manifesto > .section-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .manifesto h2 {
    font-size: clamp(22px, 7vw, 40px);
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
  }

  .manifesto > p:last-child,
  .manifesto > .cms-block-body {
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
  }

  .manifesto > .cms-block-body,
  .manifesto > .cms-block-body * {
    font-size: 16px !important;
  }

  .story-panel__content {
    align-items: center;
    justify-content: flex-end;
    padding: 100px 22px 70px;
    text-align: left;
  }

  .story-number {
    display: none;
  }

  .story-panel__content > .story-panel__copy {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    align-items: flex-start;
  }

  .story-panel__lead {
    align-items: flex-start;
    width: max-content;
    max-width: 100%;
    margin: 0;
  }

  .story-panel__content .eyebrow {
    margin-left: 0;
    font-size: clamp(11px, 3vw, 13px);
    letter-spacing: 0.16em;
  }

  .story-panel h2 {
    /* 8号移动端：与首页主标题一致 */
    font-size: clamp(22px, 7.2vw, 40px);
    white-space: nowrap;
    padding-inline-end: 0.14em;
    margin: 0;
    text-align: left;
  }

  .story-panel__content > p:not(.eyebrow),
  .story-panel__copy > .cms-block-body {
    margin: 24px 0 0;
    max-width: 100%;
    width: min(36rem, 100%);
    text-align: left;
    align-self: flex-start;
  }

  .story-panel__copy > .cms-block-body,
  .story-panel__copy > .cms-block-body * {
    font-size: 16px !important;
  }

  .story-panel__copy > div[data-reveal]:not(.cms-block-body) {
    justify-content: flex-start;
    align-self: flex-start;
    padding-right: 0;
  }

  .story-panel__veil {
    background:
      linear-gradient(0deg, rgb(1 5 4 / 95%) 0%, rgb(1 5 4 / 40%) 68%, rgb(1 5 4 / 20%) 100%);
  }

  .story-panel--green .story-panel__copy::before {
    display: none !important;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .number-item {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }

  .number-item:last-child {
    border-bottom: 0;
  }

  .featured-case-grid,
  .automation-grid,
  .product-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .featured-case:first-child,
  .case-card--wide {
    grid-column: auto;
  }

  .featured-case {
    min-height: 440px;
  }

  .closing-cta h2 {
    font-size: clamp(22px, 7.2vw, 40px);
    white-space: nowrap;
  }

  .inner-hero {
    min-height: 92svh;
  }

  .inner-hero--compact {
    min-height: 48svh;
    max-height: none;
  }

  .inner-hero--compact .inner-hero__content {
    padding: calc(var(--header-height) + 36px) 0 44px;
  }

  .inner-hero--compact h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .inner-hero__content {
    width: calc(100% - 40px);
    padding-bottom: 60px;
  }

  .inner-hero h1 {
    font-size: 48px;
    line-height: 1.22;
    letter-spacing: -0.02em;
  }

  .inner-hero__content > p:last-child {
    font-size: 17px;
  }

  .editorial-split,
  .plant-definition,
  .contact-section {
    padding: 110px 20px;
  }

  .editorial-visual {
    min-height: 350px;
  }

  .mini-stat-row {
    grid-template-columns: 1fr;
  }

  .application-row {
    grid-template-columns: 45px 1fr auto;
  }

  .visual-banner {
    min-height: 70svh;
  }

  .visual-banner > div {
    padding: 70px 20px;
  }

  .definition-points {
    grid-template-columns: 1fr;
  }

  .system-card > div:has(img),
  .system-card > p:has(img) {
    height: 300px;
  }

  .automation-grid article {
    min-height: 420px;
  }

  .product-card a > div,
  .product-card > div {
    aspect-ratio: 1 / 1;
    height: auto;
    padding: 14px;
  }

  .product-showcase__hero {
    min-height: 420px;
  }

  .case-card a > div,
  .case-card > div,
  .case-card--wide a > div,
  .case-card--wide > div {
    height: 240px;
  }

  .qualification-grid__media,
  .qualification-grid article > div,
  .qualification-grid a > div:has(img) {
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    padding: 14px;
  }

  .qualification-grid img {
    max-width: 100%;
    max-height: 100%;
  }

  .ledger-list article {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 24px 0;
  }

  .ledger-list article > span {
    grid-column: 1 / -1;
  }

  .capability-band {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .capability-band article {
    min-height: 260px;
    border-right: 1px solid rgb(255 255 255 / 14%);
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }

  .structure-list > div {
    grid-template-columns: 45px 1fr;
  }

  .contact-details p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    padding: 70px 20px 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .iot-hero {
    min-height: 100svh;
    padding: 118px 20px 56px;
  }

  .iot-hero h1 {
    font-size: 50px;
  }

  .iot-hero__copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .iot-hero__visual {
    width: 100%;
    height: 390px;
    margin: 0 auto -48px;
  }

  .iot-hero__readout {
    top: 1%;
    right: 0;
  }

  .iot-device--controller {
    top: 20%;
    left: 24%;
    width: 48vw;
    max-width: 220px;
    border-radius: 26px;
  }

  .iot-device--station {
    width: 34vw;
    max-width: 160px;
  }

  .iot-device--sensor {
    width: 31vw;
    max-width: 142px;
  }

  .iot-architecture,
  .iot-category {
    padding: 105px 20px;
  }

  .iot-architecture__rail {
    grid-template-columns: 1fr;
  }

  .iot-architecture__rail a {
    min-height: 180px;
  }

  .iot-index {
    top: var(--header-height);
    padding: 16px 20px;
  }

  .iot-index > div {
    display: none;
  }

  .iot-index nav {
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px;
  }

  .iot-category {
    scroll-margin-top: calc(var(--header-height) + 64px);
  }

  .iot-category > header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 42px;
  }

  .iot-category > header > span {
    padding-top: 0;
  }

  .iot-category > header > p {
    grid-column: auto;
  }

  .iot-category > header h2 {
    font-size: 52px;
  }

  .iot-product-grid,
  .iot-category--platform .iot-product-grid {
    grid-template-columns: 1fr;
  }

  .iot-product-card__media {
    height: 310px;
  }

  .iot-product-card__copy {
    min-height: 250px;
    padding: 24px;
  }

  .iot-source-note {
    padding: 18px 20px 90px;
  }

  .iot-dialog-backdrop {
    align-items: end;
    padding: 10px;
  }

  .iot-dialog {
    max-height: calc(100svh - 20px);
    border-radius: 25px;
  }

  .iot-dialog__media {
    min-height: 280px;
  }

  .iot-dialog__copy {
    padding: 42px 24px 32px;
  }

  .iot-dialog__copy h2 {
    font-size: 44px;
  }

  .iot-dialog__copy ul {
    grid-template-columns: 1fr;
  }

  .product-mega-menu__categories {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .site-shell::after {
    display: none;
  }

  .story-panel__media,
  .story-panel__media img,
  .inner-hero__image,
  .water-stage::before,
  .water-stage::after,
  .water-bloom::before,
  .numbers-section::before,
  .inner-hero::after {
    filter: none;
    transform: none;
  }
}

/* ---- PbootCMS list / detail / rich text ---- */
.list-section,
.detail-section,
.cms-rich {
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
  padding: 64px 0 120px;
}

.product-card a,
.case-card a,
.qualification-grid a {
  color: inherit;
  text-decoration: none;
}

.detail-header {
  width: min(900px, 100%);
  margin: 0 auto 40px;
}

.detail-header h1 {
  margin: 12px 0 0;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 610;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.detail-meta {
  margin: 18px 0 0;
  color: var(--muted);
}

.detail-hero-media {
  margin: 0 0 48px;
  overflow: visible;
  border-radius: 28px;
  background: #eef0ed;
  text-align: center;
}

.detail-hero-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
  object-position: top center;
}

.cms-rich__inner {
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: rgb(5 7 6 / 82%);
}

.cms-rich__inner img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 1em auto;
  border-radius: 18px;
  object-fit: contain;
}

.news-detail .detail-hero-media {
  width: min(900px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  box-sizing: border-box;
}

.detail-nav {
  width: min(820px, 100%);
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgb(5 7 6 / 10%);
  color: var(--muted);
  line-height: 1.8;
}

.detail-nav a {
  color: var(--ink);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  padding-top: 8px;
}

.pagination .page-link,
.pagination a,
.pagination .page-numbar a,
.pagination .page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  color: var(--ink);
  text-decoration: none;
  background: white;
  border: 1px solid rgb(5 7 6 / 12%);
  border-radius: 999px;
}

.pagination .page-num-current,
.pagination a.page-num-current {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.pagination .page-numbar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pagination .page-meta {
  margin-left: 10px;
  color: var(--muted);
  font-size: 13px;
}

.page-numbar a,
.page-numbar span {
  margin: 0;
}


/* CMS block title size tiers (editable via ext_title_size) */
.cms-block-title--default {
  font-size: clamp(28px, 3.6vw, 44px) !important;
}
.cms-block-title--large {
  font-size: clamp(36px, 4.8vw, 64px) !important;
}
.cms-block-title--xlarge {
  font-size: clamp(44px, 6vw, 88px) !important;
}
/* 首页 manifesto / story 标题档位（覆盖 section 默认） */
.manifesto h2.cms-block-title--default,
.story-panel h2.cms-block-title--default {
  font-size: clamp(32px, 4.6vw, 64px) !important;
}
.manifesto h2.cms-block-title--large,
.story-panel h2.cms-block-title--large {
  font-size: clamp(40px, 6.2vw, 88px) !important;
}
.manifesto h2.cms-block-title--xlarge,
.story-panel h2.cms-block-title--xlarge {
  font-size: clamp(48px, 7vw, 104px) !important;
}
.cms-block-body p {
  margin: 0 0 0.85em;
}
.cms-block-body p:last-child {
  margin-bottom: 0;
}
.story-stack--item {
  display: block;
}
.story-stack--item + .story-stack--item {
  margin-top: 0;
}
.definition-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}
.definition-points span {
  opacity: 0.85;
}
.section-kicker:empty,
.mini-stat-row span:has(b:empty),
.editorial-visual img[src=""],
.about-intro__visual img[src*="nopic"],
.about-intro__visual img[src=""] {
  display: none;
}
.mini-stat-row span b:empty + *,
.mini-stat-row span:has(b:empty) {
  display: none;
}

/* 自定义字色：仅 dark 块；blue 默认白字无蒙版，不走自定义墨色 */
.story-panel--custom-ink.story-panel--dark {
  color: var(--story-ink);
}
.story-panel--custom-ink.story-panel--dark h2,
.story-panel--custom-ink.story-panel--dark .cms-block-body,
.story-panel--custom-ink.story-panel--dark .cms-block-body *,
.story-panel--custom-ink.story-panel--dark .arrow-link,
.story-panel--custom-ink.story-panel--dark .arrow-link span {
  color: var(--story-ink) !important;
  -webkit-text-fill-color: var(--story-ink) !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}
.story-panel--custom-ink.story-panel--dark .eyebrow {
  color: var(--green-bright) !important;
  -webkit-text-fill-color: var(--green-bright) !important;
  text-shadow: none !important;
}
.story-panel--custom-ink.story-panel--dark .arrow-link span:last-child {
  border-color: var(--story-ink) !important;
}

