:root {
  color-scheme: light;
  --ink: #292929;
  --muted: #666f75;
  --soft-text: #8b979d;
  --line: #dbdbdb;
  --light-line: #e8eef0;
  --bg: #ffffff;
  --soft: #f4f4f4;
  --panel: #ffffff;
  --brand: #009a9e;
  --brand-dark: #087579;
  --admin-ink: #142033;
  --admin-muted: #667085;
  --admin-bg: #eef4f6;
  --admin-line: #d8e4e8;
  --blue: #2e6fce;
  --gold: #d99025;
  --danger: #c43d3d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-wrap {
  width: min(1281px, calc(100% - 40px));
  margin: 0 auto;
}

.site-top {
  background: #fff;
}

.top-inner {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  min-height: 112px;
}

.site-logo,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.logo-mark,
.brand-mark,
.logo-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.logo-mark,
.brand-mark {
  border-radius: 2px;
  color: #fff;
  background: var(--brand);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.logo-image {
  flex: 0 0 auto;
  object-fit: contain;
}

.site-logo strong,
.site-logo em,
.brand strong,
.brand em {
  display: block;
  line-height: 1.15;
}

.site-logo strong,
.brand strong {
  color: #202020;
  font-size: 24px;
  font-weight: 800;
}

.site-logo em,
.brand em {
  margin-top: 5px;
  color: #777;
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4.2vw, 70px);
  padding-top: 5px;
  font-size: 18px;
}

.site-nav a {
  position: relative;
  color: #393939;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -10px;
  height: 2px;
  background: var(--brand);
  transition: left 180ms ease, right 180ms ease;
}

.site-nav a:hover,
.site-nav a.current {
  color: var(--brand);
}

.site-nav a:hover {
  transform: scale(1.06);
}

.site-nav a:hover::after,
.site-nav a.current::after {
  left: 0;
  right: 0;
}

.site-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #393939;
  font-size: 14px;
}

.site-lang button {
  padding: 4px 0;
  border: 0;
  color: #393939;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.site-lang button.current,
.site-lang button:hover {
  color: var(--brand);
}

.site-lang button:hover {
  transform: scale(1.08);
}

.soft-banner {
  position: relative;
  --copy-panel-width: 40vw;
  --banner-copy-left: clamp(56px, 5vw, 72px);
  --transition-start: calc(var(--copy-panel-width) - clamp(70px, 6vw, 104px));
  --transition-end: calc(var(--copy-panel-width) + clamp(138px, 14vw, 230px));
  height: clamp(560px, 52vw, 760px);
  margin-top: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at calc(var(--copy-panel-width) + 7vw) 48%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.34) 19%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(90deg, #07878b 0 var(--transition-start), #0b8e92 28%, #5bbabd 43%, #e9f6f5 var(--transition-end), #f8fbfb 100%);
}

.soft-banner::before,
.soft-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.soft-banner::before {
  z-index: 1;
  right: auto;
  width: calc(var(--copy-panel-width) + clamp(180px, 18vw, 300px));
  background:
    linear-gradient(97deg, rgba(0, 126, 130, 0.98) 0 48%, rgba(0, 137, 141, 0.82) 58%, rgba(0, 154, 158, 0.38) 72%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 23% 18%, rgba(255, 255, 255, 0.18), transparent 43%);
  opacity: 1;
}

.soft-banner::after {
  z-index: 2;
  left: calc(var(--copy-panel-width) - clamp(74px, 6vw, 108px));
  right: auto;
  width: clamp(210px, 20vw, 340px);
  background:
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0) 0 18px, rgba(255, 255, 255, 0.13) 19px 20px, rgba(255, 255, 255, 0) 21px 42px),
    linear-gradient(112deg, rgba(255, 255, 255, 0) 0 19%, rgba(255, 255, 255, 0.36) 39%, rgba(0, 174, 178, 0.16) 53%, rgba(255, 255, 255, 0) 78% 100%);
  mix-blend-mode: screen;
  opacity: 0.62;
  transform: translateX(-105%);
}

.site-page.is-ready .soft-banner::before {
  animation: heroOverlayPulse 6.2s ease-in-out infinite alternate;
}

.site-page.is-ready .soft-banner::after {
  animation: heroLightSweep 4.6s ease-in-out infinite;
}

.soft-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-page .banner-visual {
  display: none;
  opacity: 0;
  transform: scale(1);
  transform-origin: center;
  transition: transform 420ms ease;
  will-change: transform;
}

.site-page.is-ready .banner-visual {
  animation: bannerDrift 16s ease-in-out infinite alternate;
}

.soft-banner:hover .banner-visual {
  animation: none;
  transform: scale(1.046) translate3d(-8px, 0, 0);
}

.hero-product-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  z-index: 3;
  right: clamp(30px, 5vw, 72px);
  left: calc(var(--copy-panel-width) + clamp(26px, 3vw, 52px));
  top: 50%;
  width: auto;
  height: auto;
  aspect-ratio: 1784 / 882;
  max-height: min(560px, calc(100% - clamp(76px, 8vw, 116px)));
  margin: 0;
  padding: clamp(10px, 1.2vw, 18px);
  border: 1px solid rgba(0, 154, 158, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 253, 253, 0.94)),
    radial-gradient(circle at 10% 0%, rgba(0, 174, 178, 0.12), transparent 34%);
  box-shadow:
    0 28px 58px rgba(0, 76, 82, 0.13),
    0 10px 24px rgba(0, 76, 82, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  overflow: hidden;
  transform: translateY(-50%) translateZ(0);
  transform-origin: center;
  transform-style: preserve-3d;
  cursor: default;
  transition: transform 260ms ease;
}

.hero-product-card::before,
.hero-product-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-product-card::before {
  inset: clamp(8px, 1vw, 14px);
  z-index: 2;
  border: 1px solid rgba(0, 154, 158, 0.14);
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(0, 154, 158, 0.28), rgba(0, 154, 158, 0)) 0 0 / 120px 1px no-repeat,
    linear-gradient(180deg, rgba(0, 154, 158, 0.28), rgba(0, 154, 158, 0)) 0 0 / 1px 120px no-repeat,
    linear-gradient(270deg, rgba(0, 154, 158, 0.22), rgba(0, 154, 158, 0)) 100% 100% / 120px 1px no-repeat,
    linear-gradient(0deg, rgba(0, 154, 158, 0.22), rgba(0, 154, 158, 0)) 100% 100% / 1px 120px no-repeat;
}

.hero-product-card::after {
  z-index: 3;
  left: -22%;
  top: 0;
  width: 24%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: skewX(-14deg) translateX(-130%);
  opacity: 0;
}

.hero-product-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transform: translateZ(0);
  transition: filter 260ms ease, transform 260ms ease;
}

.site-page.is-ready .hero-product-card {
  animation: heroCardFloat 7.4s ease-in-out infinite;
}

.site-page.is-ready .hero-product-card::after {
  animation: heroFrameSheen 5.8s ease-in-out infinite;
}

.hero-product-card:hover {
  animation: none;
  transform: translateY(calc(-50% - 4px)) translateZ(0) scale(1.01);
}

.hero-product-card:hover::before {
  border-color: rgba(0, 154, 158, 0.28);
}

.hero-product-card:hover::after {
  opacity: 0.9;
}

.hero-product-card:hover img {
  transform: scale(1.006);
}

.hero-bottom-line {
  position: absolute;
  z-index: 4;
  left: var(--banner-copy-left);
  bottom: clamp(16px, 2vw, 28px);
  width: min(calc(var(--copy-panel-width) - var(--banner-copy-left) - clamp(28px, 3vw, 48px)), 520px);
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.38) 62%, rgba(255, 255, 255, 0));
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.25);
  pointer-events: none;
  transform-origin: left center;
}

.site-page.is-ready .hero-bottom-line {
  animation: linePulse 2.8s ease-in-out infinite;
}

.banner-copy {
  position: absolute;
  z-index: 4;
  left: var(--banner-copy-left);
  top: 50%;
  width: calc(var(--copy-panel-width) - var(--banner-copy-left) - clamp(34px, 3.2vw, 56px));
  height: auto;
  color: #fff;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  pointer-events: none;
  transform: translateY(-50%);
  isolation: isolate;
}

.banner-copy::before {
  content: none;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: calc(0px - var(--banner-copy-left));
  width: min(860px, calc(var(--banner-copy-left) + 620px));
  border-radius: 0;
  background:
    linear-gradient(100deg, rgba(0, 126, 130, 0.98), rgba(0, 126, 130, 0.86) 54%, rgba(0, 126, 130, 0.25) 78%, rgba(0, 126, 130, 0));
  box-shadow: 44px 0 140px rgba(0, 102, 108, 0.1);
}

.banner-copy::after {
  content: none;
}

.site-page.is-ready .banner-copy::after {
  animation: none;
}

.site-page.motion-ready .banner-copy h1,
.site-page.motion-ready .banner-copy p,
.site-page.motion-ready .banner-copy div {
  opacity: 0;
  transform: translateY(22px);
}

.site-page.is-ready .banner-copy h1,
.site-page.is-ready .banner-copy p,
.site-page.is-ready .banner-copy div {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms ease, transform 720ms ease;
}

.site-page.is-ready .banner-copy p {
  transition-delay: 120ms;
}

.site-page.is-ready .banner-copy div {
  transition-delay: 240ms;
}

.banner-copy h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(32px, 2.55vw, 36px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: auto;
  pointer-events: auto;
  cursor: default;
  transform-origin: left center;
  transition: text-shadow 180ms ease, transform 180ms ease;
}

.site-page.is-ready .banner-copy h1:hover {
  transform: scale(1.055);
  text-shadow: 0 12px 26px rgba(0, 51, 56, 0.22);
}

.banner-copy p {
  max-width: 92%;
  margin: 26px 0 0;
  font-size: clamp(19px, 1.42vw, 22px);
  line-height: 1.58;
  overflow-wrap: normal;
  word-break: keep-all;
  text-wrap: auto;
}

.banner-copy div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 12px;
  max-width: none;
  margin-top: 42px;
}

.banner-copy a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
  pointer-events: auto;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.banner-copy a:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 28px rgba(0, 73, 78, 0.18);
  transform: translateY(-3px) scale(1.08);
}

.banner-copy a::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.site-page.is-ready .banner-copy a::after {
  animation: buttonSheen 4.8s ease-in-out infinite;
}

.product-area {
  background:
    linear-gradient(180deg, #f4f4f4 0 90px, #ffffff 90px 100%);
}

.product-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 90px;
  border-left: 1px solid var(--line);
  background: #f4f4f4;
}

.product-nav a {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  border-right: 1px solid var(--line);
  color: #2b2b2b;
  background: transparent;
  font-size: 24px;
  text-align: center;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-nav a::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  pointer-events: none;
}

.product-nav a.active {
  color: var(--brand);
  background: transparent;
  box-shadow: inset 0 -3px 0 var(--brand);
}

.product-nav a:hover {
  color: #fff;
  background: var(--brand);
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.34), 0 12px 24px rgba(0, 154, 158, 0.16);
}

.product-nav a:hover {
  transform: perspective(760px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-2px) scale(1.065);
}

.product-nav a:hover::after {
  animation: buttonSheen 760ms ease;
}

.feature-showcase {
  position: relative;
  padding: 58px 0 72px;
}

.feature-showcase::before {
  content: "";
  position: absolute;
  inset: 92px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 154, 158, 0.36), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  pointer-events: none;
}

.product-area.is-visible .feature-showcase::before {
  opacity: 1;
  animation: featureLineGrow 1.2s ease-out 160ms forwards;
}

.feature-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.feature-showcase-head h2 {
  margin: 0;
  color: #20282b;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-showcase-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.feature-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-width: 0;
  padding: 14px 14px 20px;
  background: #fff;
  border: 1px solid #dfe9eb;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(12, 54, 58, 0.06);
  scroll-margin-top: 120px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card::before,
.feature-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.feature-card::before {
  inset: 14px 14px 72px;
  z-index: 2;
  transform: translateX(-118%) skewX(-16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
}

.feature-card::after {
  right: 14px;
  bottom: 14px;
  left: 14px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), rgba(217, 144, 37, 0.78), var(--brand-dark));
  transform: scaleX(0.18);
  transform-origin: left center;
  opacity: 0.74;
  transition: transform 180ms ease, opacity 180ms ease;
}

.feature-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #eef7f7;
  border: 1px solid #d7e8ea;
  border-radius: 6px;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0) scale(1);
  transition: transform 220ms ease;
}

.feature-card h3 {
  margin: 18px 0 0;
  color: #20282b;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  transition: color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: rgba(0, 154, 158, 0.48);
  box-shadow: 0 24px 58px rgba(8, 117, 121, 0.16);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-7px) scale(1.025);
}

.feature-card:hover::before {
  animation: imageSheen 820ms ease;
}

.feature-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.feature-card:hover img {
  transform: translateZ(18px) scale(1.075);
}

.feature-card:hover h3 {
  color: var(--brand-dark);
  transform: translateY(-2px) scale(1.045);
}

.product-area.is-visible .feature-card {
  animation: featureCardRise 680ms ease-out both;
}

.product-area.is-visible .feature-card:nth-child(1) {
  animation-delay: 70ms;
}

.product-area.is-visible .feature-card:nth-child(2) {
  animation-delay: 140ms;
}

.product-area.is-visible .feature-card:nth-child(3) {
  animation-delay: 210ms;
}

.product-area.is-visible .feature-card:nth-child(4) {
  animation-delay: 280ms;
}

.product-area.is-visible .feature-card:nth-child(5) {
  animation-delay: 350ms;
}

.product-area.is-visible .feature-card:nth-child(6) {
  animation-delay: 420ms;
}

.soft-content {
  padding-top: 0;
  text-align: left;
}

.intro-text,
.article-block p {
  margin: 0;
  color: #393939;
  font-size: 17px;
  line-height: 36px;
  text-align: justify;
}

.intro-text {
  padding-top: 36px;
  text-indent: 2em;
}

.software-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 957px) 180px;
  gap: 47px;
  align-items: start;
  margin-top: 30px;
}

.software-showcase::before {
  content: "";
  position: absolute;
  inset: 30px 180px auto 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 154, 158, 0.52), transparent);
  transform: translateX(-28%);
  opacity: 0;
  pointer-events: none;
}

.software-showcase.is-visible::before {
  opacity: 1;
  animation: panelScan 3.2s ease-in-out infinite;
}

.software-image {
  margin: 0;
  padding: 30px 0 0 30px;
}

.software-image img {
  width: 100%;
  height: auto;
  border: 1px solid #d6e0e4;
  box-shadow: 0 18px 40px rgba(8, 117, 121, 0.08);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.software-image {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  transform-style: preserve-3d;
  perspective: 900px;
  cursor: zoom-in;
}

.software-image::before,
.software-image::after {
  content: "";
  position: absolute;
  inset: 30px 0 0 30px;
  pointer-events: none;
}

.software-image::before {
  z-index: 2;
  transform: translateX(-110%) skewX(-16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.software-image::after {
  z-index: 3;
  border: 1px solid rgba(0, 154, 158, 0.25);
  box-shadow: 0 0 28px rgba(0, 154, 158, 0.12);
  opacity: 0;
}

.software-showcase.is-visible .software-image::after {
  opacity: 1;
  animation: frameGlow 2.8s ease-in-out infinite;
}

.site-page .software-showcase.is-visible .software-image img {
  animation: productFloat 7.5s ease-in-out infinite;
}

.software-image:hover::before {
  animation: imageSheen 880ms ease;
}

.software-image:hover img {
  animation: none !important;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px) scale(1.045);
  box-shadow: 0 28px 70px rgba(8, 117, 121, 0.22);
}

.software-actions {
  display: grid;
  gap: 47px;
  padding-top: 36px;
}

.software-actions a {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  min-height: 53px;
  color: #fff;
  background: var(--brand);
  font-size: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.software-actions a::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.software-actions a:hover {
  background: var(--brand-dark);
  box-shadow: 0 15px 32px rgba(0, 154, 158, 0.24);
  transform: perspective(680px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-4px) scale(1.075);
}

.software-actions a:hover::after {
  animation: buttonSheen 720ms ease;
}

.article-block {
  padding-top: 36px;
}

.article-block {
  border-bottom: 1px solid rgba(0, 154, 158, 0.08);
}

.article-block h2 {
  position: relative;
}

.article-block h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 76px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 520ms ease;
}

.article-block.is-visible h2::after {
  transform: translateX(-50%) scaleX(1);
}

.article-block h2 {
  margin: 38px 0 22px;
  color: #202020;
  font-size: 24px;
  line-height: 1.45;
  text-align: center;
}

.article-block strong {
  color: #202020;
}

.status-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding: 22px 26px;
  color: #fff;
  background: #4f4f4f;
  overflow: hidden;
}

.status-strip::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(0, 154, 158, 0.7);
}

.status-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(0, 154, 158, 0.18), transparent);
  pointer-events: none;
}

.site-page .status-strip.is-visible::after {
  animation: statusSweep 3.8s ease-in-out infinite;
}

.status-strip div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.status-strip strong {
  font-size: 18px;
}

.status-strip span {
  color: #e8ffff;
  font-size: 16px;
}

code {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 3px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.service-band {
  position: relative;
  margin-top: 68px;
  padding: 62px 0 68px;
  color: #fff;
  background: #6f6f6f;
  overflow: hidden;
}

.service-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 154, 158, 0.28), transparent 28%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.11) 50%, transparent 58% 100%);
  opacity: 0.85;
}

.site-page .service-band.is-visible::before {
  animation: serviceGlow 8s ease-in-out infinite alternate;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.service-grid article {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 190px;
  padding: 34px 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
}

.service-grid article:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  transform: perspective(760px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-7px) scale(1.045);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.service-grid article:hover::after {
  animation: buttonSheen 840ms ease;
}

.service-grid h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.service-grid p {
  margin: 22px auto 0;
  max-width: 300px;
  color: #f2f2f2;
  font-size: 17px;
  line-height: 32px;
}

.contact-band {
  position: relative;
  min-height: 278px;
  margin-top: 0;
  color: #fff;
  background: #59cccf;
  overflow: hidden;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 117, 121, 0.28), transparent 36%, rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 96px);
  opacity: 0.35;
}

.site-page .contact-band.is-visible::before {
  animation: contactGrid 7s linear infinite;
}

.contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-inner h2 {
  margin: 0;
  padding-top: 63px;
  font-size: 30px;
  font-weight: 500;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 53px;
}

.contact-items div {
  min-height: 72px;
  font-size: 18px;
  line-height: 36px;
  transition: transform 220ms ease;
}

.contact-items div:hover {
  transform: translateY(-3px) scale(1.03);
}

.contact-items span,
.contact-items strong {
  display: block;
}

.contact-items strong {
  font-weight: 500;
}

.float-tools {
  position: fixed;
  top: 143px;
  right: 18px;
  z-index: 20;
  display: grid;
  width: 73px;
  overflow: hidden;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.site-page.is-ready .float-tools {
  animation: floatTools 5.8s ease-in-out infinite;
}

.float-tools button,
.float-tools a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.float-tools > button:first-child {
  min-height: 32px;
  background: var(--brand-dark);
  font-size: 18px;
}

.float-tools a:hover {
  background: rgba(0, 0, 0, 0.12);
}

.float-tools button:hover {
  background: rgba(0, 0, 0, 0.12);
  transform: translateX(2px) scale(1.05);
}

.float-tools > button:first-child:hover {
  background: var(--brand-dark);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.46);
  animation: modalFade 180ms ease both;
}

.modal-backdrop[hidden] {
  display: none;
}

.auth-dialog {
  position: relative;
  width: min(430px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  animation: modalRise 220ms ease both;
}

.auth-dialog h2 {
  margin: 0 0 18px;
  color: #172536;
  font-size: 24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 4px;
  color: #667085;
  background: #f2f5f6;
  font-size: 22px;
  cursor: pointer;
}

.qr-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.qr-panel img {
  width: min(280px, 100%);
  border: 1px solid var(--light-line);
  border-radius: 8px;
}

.qr-panel.compact img {
  width: min(220px, 100%);
}

.auth-message {
  margin: 12px 0;
  color: #4b5b66;
  font-size: 15px;
  line-height: 1.7;
}

.auth-message.small {
  color: #7a8790;
  font-size: 13px;
}

.auth-message.success {
  color: #08795f;
  font-weight: 800;
}

.wechat-login-box {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.register-form {
  display: grid;
  gap: 13px;
}

.register-form label span {
  display: block;
  margin-bottom: 6px;
  color: #667085;
  font-size: 13px;
}

.register-form input,
.register-form select {
  width: 100%;
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid var(--light-line);
  border-radius: 4px;
  color: #172536;
  background: #fff;
}

.site-page.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.site-page.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms ease var(--reveal-delay, 0ms);
}

@keyframes bannerDrift {
  0% {
    transform: scale(1.018) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.055) translate3d(-18px, 0, 0);
  }
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateY(-50%) perspective(1200px) rotateX(0deg) rotateY(0deg) translate3d(0, 0, 0);
  }
  50% {
    transform: translateY(-50%) perspective(1200px) rotateX(1.2deg) rotateY(-1.8deg) translate3d(-8px, -9px, 18px);
  }
}

@keyframes heroOverlayPulse {
  0% {
    opacity: 0.48;
  }
  100% {
    opacity: 0.68;
  }
}

@keyframes heroLightSweep {
  0%,
  24% {
    transform: translateX(-84%);
  }
  74%,
  100% {
    transform: translateX(250%);
  }
}

@keyframes heroFrameSheen {
  0%,
  46% {
    opacity: 0;
    transform: skewX(-14deg) translateX(-130%);
  }
  58% {
    opacity: 0.85;
  }
  76%,
  100% {
    opacity: 0;
    transform: skewX(-14deg) translateX(620%);
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scaleX(0.78);
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.006);
  }
}

@keyframes panelScan {
  0% {
    transform: translateX(-28%);
  }
  100% {
    transform: translateX(78%);
  }
}

@keyframes frameGlow {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(0, 154, 158, 0.12);
  }
  50% {
    box-shadow: 0 0 42px rgba(0, 154, 158, 0.26);
  }
}

@keyframes buttonSheen {
  0% {
    transform: translateX(-120%) skewX(-18deg);
  }
  46%,
  100% {
    transform: translateX(130%) skewX(-18deg);
  }
}

@keyframes imageSheen {
  0% {
    transform: translateX(-110%) skewX(-16deg);
  }
  60%,
  100% {
    transform: translateX(118%) skewX(-16deg);
  }
}

@keyframes featureLineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes featureCardRise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes navPulse {
  0%,
  100% {
    box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.24);
  }
  50% {
    box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.54);
  }
}

@keyframes statusSweep {
  0%,
  28% {
    transform: translateX(-100%);
  }
  72%,
  100% {
    transform: translateX(100%);
  }
}

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

@keyframes serviceGlow {
  0% {
    transform: translateX(-2%) scale(1);
  }
  100% {
    transform: translateX(2%) scale(1.04);
  }
}

@keyframes contactGrid {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 0, 192px 0;
  }
}

@keyframes modalFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalRise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 76px;
  padding: 16px 20px;
  color: #bebebe;
  background: #5c5c5c;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.footer-records {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  color: #d7d7d7;
  font-size: 13px;
}

.footer-records a {
  color: #f2f2f2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-page {
  min-height: 100vh;
  color: var(--admin-ink);
  background:
    linear-gradient(135deg, rgba(0, 154, 158, 0.08), rgba(46, 111, 206, 0.08)),
    var(--admin-bg);
}

.admin-page [hidden] {
  display: none !important;
}

.admin-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.admin-topbar {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

.admin-command {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.admin-session {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--admin-muted);
  font-size: 13px;
}

.admin-command label span,
.login-card label span,
.form-grid label span,
.table-tools label span {
  display: block;
  margin-bottom: 7px;
  color: var(--admin-muted);
  font-size: 13px;
}

.field-hint {
  display: block;
  margin-top: 6px;
  color: var(--admin-muted);
  font-size: 12px;
  line-height: 1.4;
}

.admin-page input,
.admin-page select {
  width: 100%;
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid var(--admin-line);
  border-radius: 4px;
  color: var(--admin-ink);
  background: #fff;
  font-size: 14px;
}

.admin-login-panel {
  display: grid;
  justify-items: center;
  margin-top: 32px;
}

.login-copy {
  max-width: 760px;
  margin-bottom: 18px;
  text-align: center;
}

.login-copy h1 {
  margin: 0;
  color: var(--admin-ink);
  font-size: 34px;
  line-height: 1.2;
}

.login-copy p {
  margin: 12px 0 0;
  color: var(--admin-muted);
  font-size: 15px;
  line-height: 1.7;
}

.login-carousel {
  width: min(520px, 100%);
  max-width: 100%;
  overflow: hidden;
  contain: layout paint;
}

.login-switcher {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.login-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--admin-line);
  border-radius: 4px;
  color: var(--admin-ink);
  background: #fff;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

.login-method-title {
  display: grid;
  justify-items: center;
  gap: 3px;
  color: var(--admin-ink);
}

.login-method-title strong {
  font-size: 18px;
}

.login-method-title span {
  color: var(--admin-muted);
  font-size: 12px;
}

.login-track-viewport {
  overflow: hidden;
  border-radius: 8px;
  clip-path: inset(0);
  contain: paint;
}

.login-track {
  display: flex;
  transition: transform 240ms ease;
  will-change: transform;
}

.login-card.admin-panel {
  flex: 0 0 100%;
  display: grid;
  align-content: start;
  gap: 13px;
  width: 100%;
  min-width: 100%;
  min-height: 286px;
}

.login-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.login-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b9c8ce;
  cursor: pointer;
}

.login-dots button.current {
  width: 24px;
  background: var(--brand);
}

.admin-login-message {
  min-height: 28px;
  margin-top: 14px;
  color: var(--admin-muted);
  font-size: 14px;
}

.admin-login-message.is-error {
  color: #963030;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--admin-line);
  border-radius: 4px;
  color: var(--admin-ink);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.button.secondary {
  color: var(--admin-ink);
  border-color: var(--admin-line);
  background: #fff;
}

.site-page .button {
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-page .button:hover {
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(0, 154, 158, 0.16);
  transform: perspective(680px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-2px) scale(1.055);
}

.site-page .button.primary:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

.admin-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 36px;
  border: 1px solid rgba(0, 154, 158, 0.16);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #132238, #0b777c);
}

.admin-hero h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.admin-hero p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #dff6f7;
  font-size: 16px;
  line-height: 1.8;
}

.admin-health {
  min-width: 130px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.admin-health span,
.admin-health strong {
  display: block;
}

.admin-health span {
  color: #c9eef0;
  font-size: 12px;
}

.admin-health strong {
  margin-top: 6px;
  font-size: 20px;
}

.is-ok {
  color: #8ff3c2;
}

.is-bad {
  color: #ffb4a8;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.metric-grid article,
.admin-panel {
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.07);
}

.metric-grid article {
  min-height: 100px;
  padding: 22px 24px;
}

.metric-grid span {
  display: block;
  color: var(--admin-muted);
  font-size: 13px;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--admin-ink);
  font-size: 30px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.admin-panel {
  padding: 22px;
}

.panel-heading {
  margin-bottom: 18px;
}

.panel-heading h2 {
  margin: 0;
  color: var(--admin-ink);
  font-size: 20px;
  line-height: 1.3;
}

.panel-heading p {
  margin: 8px 0 0;
  color: var(--admin-muted);
  font-size: 13px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
}

.admin-manager {
  margin-top: 16px;
}

.admin-manager-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.check-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--admin-muted);
  font-size: 14px;
}

.check-row input {
  width: auto;
  min-height: auto;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.form-actions.compact {
  margin-top: 10px;
}

.alipay-bind-panel {
  padding: 12px;
  border: 1px solid var(--admin-line);
  border-radius: 6px;
  background: #f8fbfc;
}

.field-label {
  display: block;
  color: var(--admin-muted);
  font-size: 12px;
  font-weight: 800;
}

.bind-status {
  margin-top: 8px;
  color: var(--admin-ink);
  font-size: 13px;
  line-height: 1.5;
}

.message {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--admin-muted);
  font-size: 13px;
}

.table-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.table-message {
  min-height: 32px;
  margin-top: 10px;
  color: var(--admin-muted);
  font-size: 13px;
}

.table-message.is-success {
  color: #04624f;
}

.table-message.is-error {
  color: #963030;
}

.inline-confirm {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--admin-line);
  border-radius: 6px;
  background: #f8fbfc;
}

.inline-confirm.danger {
  border-color: #f0b8b2;
  background: #fff7f5;
}

.table-tools {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 120px 120px;
  gap: 10px;
  min-width: 480px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--admin-line);
  text-align: left;
  white-space: nowrap;
  font-size: 14px;
}

th {
  color: var(--admin-muted);
  font-size: 12px;
  font-weight: 800;
}

tbody tr {
  cursor: pointer;
}

tbody tr:hover {
  background: #f4fbfb;
}

.status-chip,
.bind-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
}

.status-chip.active {
  color: #04624f;
  background: #dbf8ee;
}

.status-chip.disabled {
  color: #963030;
  background: #ffe3e0;
}

.status-chip.pending {
  color: #87600f;
  background: #fff0c7;
}

.status-chip.rejected,
.status-chip.expired {
  color: #87600f;
  background: #fff0c7;
}

.status-chip.enterprise {
  color: #174ea6;
  background: #e3edff;
}

.bind-chip {
  color: #245fb4;
  background: #e3edff;
}

.bind-chip.empty {
  color: #667085;
  background: #eef2f4;
}

.muted-cell {
  color: var(--admin-muted);
  font-size: 12px;
}

.machine-cell {
  display: grid;
  gap: 6px;
  min-width: 260px;
  white-space: normal;
}

.machine-card {
  display: grid;
  gap: 2px;
  max-width: 320px;
  padding: 7px 8px;
  border: 1px solid var(--admin-line);
  border-radius: 5px;
  background: #f8fbfc;
}

.machine-card strong,
.machine-card span,
.machine-card code,
.machine-card em {
  overflow-wrap: anywhere;
}

.machine-card strong {
  color: var(--admin-ink);
  font-size: 12px;
}

.machine-card span,
.machine-card em {
  color: var(--admin-muted);
  font-size: 11px;
  font-style: normal;
}

.machine-card code {
  color: #245fb4;
  font-size: 11px;
  font-family: Consolas, "SFMono-Regular", monospace;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 210px;
}

.mini-button {
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid var(--admin-line);
  border-radius: 4px;
  color: var(--admin-ink);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.mini-button:disabled,
.mini-button.is-busy {
  cursor: progress;
  opacity: 0.55;
}

.mini-button:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.mini-button.danger {
  color: #963030;
}

.mini-button.danger:hover {
  border-color: #c43d3d;
  background: #fff2f0;
}

@media (max-width: 1100px) {
  .top-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 0;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 26px;
    overflow-x: auto;
  }

  .site-lang {
    display: none;
  }

  .soft-banner {
    --copy-panel-width: 40vw;
    --banner-copy-left: clamp(34px, 4vw, 56px);
    height: 560px;
  }

  .hero-product-card {
    top: 50%;
    right: clamp(22px, 3vw, 38px);
    left: calc(var(--copy-panel-width) + 32px);
    width: auto;
    height: auto;
    max-height: min(470px, calc(100% - 80px));
    padding: clamp(8px, 1vw, 12px);
  }

  .banner-copy::before {
    width: auto;
  }

  .banner-copy h1 {
    max-width: none;
    font-size: clamp(30px, 3vw, 38px);
  }

  .banner-copy p {
    max-width: none;
    font-size: clamp(17px, 1.7vw, 20px);
  }

  .banner-copy div {
    max-width: none;
    gap: 12px;
    margin-top: 34px;
  }

  .banner-copy a {
    width: 100%;
  }

  .software-showcase {
    grid-template-columns: 1fr;
  }

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

  .software-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-top: 0;
  }

  .software-actions a {
    width: 100%;
  }

  .admin-topbar,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-command {
    grid-template-columns: 1fr auto auto;
  }
}

@media (max-width: 760px) {
  .site-wrap {
    width: min(100% - 24px, 1281px);
  }

  .site-logo strong,
  .brand strong {
    font-size: 20px;
  }

  .site-nav {
    gap: 18px;
    font-size: 15px;
  }

  .soft-banner {
    height: auto;
    min-height: 0;
    margin-top: 12px;
    padding: 8px 0 24px;
    overflow: visible;
    background: #f8fbfb;
  }

  .soft-banner::before,
  .soft-banner::after {
    display: none;
  }

  .hero-bottom-line {
    display: none;
  }

  .soft-banner img {
    height: auto;
    object-position: center;
    opacity: 1;
  }

  .hero-product-card {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    transform: none;
    animation: none !important;
  }

  .hero-product-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    transform: none;
  }

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

  .soft-banner:hover .banner-visual {
    transform: none;
  }

  .hero-product-card:hover {
    transform: none;
  }

  .banner-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    background: transparent;
  }

  .banner-copy::before,
  .banner-copy::after {
    display: none;
  }

  .banner-copy h1 {
    max-width: none;
    font-size: 30px;
    line-height: 1.22;
  }

  .banner-copy p {
    max-width: none;
    font-size: 17px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .banner-copy div {
    gap: 10px;
    margin-top: 32px;
  }

  .banner-copy a {
    width: calc(50% - 5px);
    padding: 0 8px;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

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

  .product-nav a {
    min-height: 64px;
    font-size: 16px;
  }

  .feature-showcase {
    padding: 36px 0 46px;
  }

  .feature-showcase-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .feature-showcase-head h2 {
    font-size: 28px;
  }

  .feature-showcase-head p {
    font-size: 15px;
    line-height: 1.7;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card h3 {
    font-size: 19px;
  }

  .software-image {
    padding-left: 0;
  }

  .software-image::after,
  .software-image::before,
  .software-showcase::before {
    display: none;
  }

  .software-actions {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .contact-items,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .status-strip,
  .status-strip div,
  .table-heading,
  .admin-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .float-tools {
    display: none;
  }

  .admin-command,
  .table-tools {
    grid-template-columns: 1fr;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .site-page.is-ready .banner-visual,
  .site-page .software-showcase.is-visible .software-image img {
    animation: none;
  }

  .software-image:hover img,
  .feature-card:hover,
  .feature-card:hover img,
  .feature-card:hover h3,
  .product-nav a:hover,
  .software-actions a:hover,
  .service-grid article:hover,
  .contact-items div:hover,
  .site-page .button:hover {
    transform: none;
  }
}

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

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

  .site-page.motion-ready .banner-copy h1,
  .site-page.motion-ready .banner-copy p,
  .site-page.motion-ready .banner-copy div,
  .site-page.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
