:root {
  --bg: #06122a;
  --bg2: #0a1d44;
  --panel: rgba(13, 28, 59, 0.62);
  --panel-2: rgba(20, 43, 92, 0.55);
  --line: rgba(126, 182, 255, 0.14);
  --line-strong: rgba(149, 196, 255, 0.22);
  --text: #eef6ff;
  --muted: #b8cae6;
  --dim: rgba(184, 202, 230, 0.65);
  --cyan: #5ee9ff;
  --blue: #71a8ff;
  --violet: #ae7cff;
  --pink: #ff67b8;
  --green: #65ffc8;
  --shadow: 0 24px 60px rgba(4, 10, 27, 0.45);
  --shadow-lg: 0 40px 100px rgba(4, 10, 27, 0.55);
  --radius: 24px;
  --radius-lg: 32px;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body { position: relative; }
@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: #04091a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; height: auto; }

::selection {
  background: rgba(126, 240, 255, 0.35);
  color: #fff;
}

.cy-shell-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 8%, rgba(94, 233, 255, 0.18), transparent 38%),
    radial-gradient(ellipse at 88% 14%, rgba(184, 122, 255, 0.20), transparent 32%),
    radial-gradient(ellipse at 50% 110%, rgba(94, 233, 255, 0.10), transparent 50%),
    linear-gradient(180deg, #050c22 0%, #04091c 60%, #02060f 100%);
}

#bgWebgl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
  will-change: transform;
  transform: translateZ(0);
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 0.6px, transparent 0.6px);
  background-size: 12px 12px;
  opacity: 0.045;
  mix-blend-mode: screen;
}

.scan-line {
  position: fixed;
  left: 0;
  right: 0;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(126, 240, 255, 0.55), transparent);
  box-shadow: 0 0 22px rgba(126, 240, 255, 0.45);
  pointer-events: none;
  opacity: 0;
}

.cy-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: var(--max);
  z-index: 60;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(8, 18, 40, 0.55);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: var(--shadow);
  transition: padding .3s ease, background .3s ease;
}

.cy-header.scrolled {
  padding: 8px 18px;
  background: rgba(6, 14, 32, 0.78);
}

.cy-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.cy-brand .mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(94, 233, 255, 0.35), rgba(174, 124, 255, 0.35));
  border: 1px solid rgba(126, 182, 255, 0.28);
  color: white;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 0 18px rgba(94, 233, 255, 0.22),
    0 0 24px rgba(94, 233, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.cy-brand .mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: brand-shine 4s ease-in-out infinite;
}

@keyframes brand-shine {
  0%, 70% { transform: translateX(-100%); }
  85%, 100% { transform: translateX(100%); }
}

.cy-brand .text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cy-brand strong {
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.cy-brand em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.cy-brand--text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #ffffff 0%, #b8e6ff 60%, #7ef0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(94, 233, 255, 0.25));
  transition: filter .25s ease, letter-spacing .25s ease;
}

.cy-brand--text:hover {
  filter: drop-shadow(0 0 24px rgba(94, 233, 255, 0.5));
  letter-spacing: 0.22em;
}

.cy-nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.cy-nav a {
  padding: 9px 11px;
  border-radius: 10px;
  color: #d9e7ff;
  font-size: 13.5px;
  position: relative;
  transition: color .2s ease, background .25s ease;
}

.cy-nav a:hover {
  color: #fff;
  background: rgba(126, 182, 255, 0.08);
}

.cy-nav a.active {
  color: #fff;
  background: rgba(126, 182, 255, 0.12);
}

.cy-cta {
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #5fdcff, #8a8dff 55%, #cf76ff);
  color: #07122a;
  box-shadow: 0 10px 30px rgba(112, 174, 255, 0.32);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cy-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(112, 174, 255, 0.4);
}

.cy-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s ease;
}

.cy-cta:hover::after {
  transform: translateX(120%);
}

.cy-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(20, 42, 89, 0.75);
  color: white;
}

.cy-menu span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: white;
  margin: 5px auto;
  transition: transform .25s ease, opacity .25s ease;
}

.cy-menu[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.cy-menu[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-7px) rotate(-45deg);
}

.cy-mobile-nav {
  display: none;
  position: fixed;
  top: 88px;
  left: 16px;
  right: 16px;
  z-index: 55;
  background: rgba(8, 18, 40, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.cy-mobile-nav a {
  display: block;
  padding: 14px 12px;
  color: var(--text);
  border-radius: 10px;
  font-size: 15px;
}

.cy-mobile-nav a:hover {
  background: rgba(126, 182, 255, 0.1);
}

.cy-mobile-nav.open {
  display: block;
}

.section, .section-lite {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 24px;
  position: relative;
}

.section-lite {
  padding-top: 18px;
  padding-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span:first-child {
  width: 44px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 12px rgba(94, 233, 255, 0.45);
  flex: none;
}

.section-head {
  max-width: 880px;
  margin-bottom: 60px;
}

.section-head h2, .copy h2, .contact-copy h2, .pressure-intro h2, .product-feature .copy h2 {
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.06;
  margin: 0 0 18px;
  letter-spacing: -0.035em;
  text-wrap: balance;
  font-weight: 800;
}

.section-head p, .section-lead {
  color: var(--muted);
  line-height: 1.85;
  font-size: 17px;
  max-width: 760px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #59dcff, #8a8dff 55%, #cf76ff);
  color: #07122a;
  box-shadow: 0 10px 32px rgba(94, 233, 255, 0.28);
}

.btn-primary:hover { box-shadow: 0 16px 42px rgba(94, 233, 255, 0.4); }

.btn-ghost {
  border-color: rgba(152, 196, 255, 0.24);
  color: #eaf5ff;
  background: rgba(13, 28, 59, 0.42);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(13, 28, 59, 0.72);
  border-color: rgba(152, 196, 255, 0.4);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .9s ease;
  pointer-events: none;
}

.btn:hover::after { transform: translateX(130%); }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.2;
  letter-spacing: -0.045em;
  max-width: 13ch;
  text-wrap: balance;
  font-weight: 800;
  padding-bottom: 12px;
}

.hero-copy h1 .word {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 0%, #c8e0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.18em;
  line-height: 1.05;
}

.hero-copy h1 .accent {
  background: linear-gradient(135deg, #7ef0ff 0%, #b890ff 60%, #ff8fc1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  display: inline-block;
  padding-bottom: 0.18em;
  line-height: 1.05;
}

.hero-copy h1 .word {
  white-space: nowrap;
}

.hero .lead {
  color: var(--muted);
  line-height: 1.85;
  font-size: 17px;
  max-width: 580px;
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.hero-metrics div {
  background: linear-gradient(180deg, rgba(20, 40, 86, 0.5), rgba(10, 22, 49, 0.5));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 26px 24px 22px;
  backdrop-filter: blur(14px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.hero-metrics div:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 240, 255, 0.4);
  box-shadow: 0 22px 50px rgba(94, 233, 255, 0.1);
}

.hero-metrics strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 64px;
  margin-bottom: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 0 32px rgba(94, 233, 255, 0.25);
}

.hero-metrics strong span[data-count] {
  background: linear-gradient(135deg, #ffffff 0%, #cde6ff 50%, #7ef0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(126, 240, 255, 0.25));
}

.hero-metrics strong em {
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
  color: var(--cyan);
  filter: drop-shadow(0 0 6px rgba(94, 233, 255, 0.4));
}

.hero-metrics > div > span {
  color: var(--muted);
  font-size: 14.5px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.hero-stage {
  width: 100%;
  position: relative;
}

.hero-stage-frame {
  width: min(100%, 720px);
  border-radius: 32px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(22, 43, 91, 0.72), rgba(11, 24, 51, 0.65));
  border: 1px solid var(--line-strong);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(116, 171, 255, 0.08),
    0 0 80px rgba(94, 233, 255, 0.06);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.hero-stage-frame::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 50%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 124, 255, 0.32), transparent 65%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 14px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-dots { display: flex; gap: 7px; }
.window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(203, 221, 255, 0.32);
}
.window-dots i:first-child { background: rgba(255, 124, 124, 0.55); }
.window-dots i:nth-child(2) { background: rgba(255, 215, 124, 0.55); }
.window-dots i:nth-child(3) { background: rgba(124, 255, 188, 0.55); }

.hero-stage-body {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(9, 18, 44, 0.85), rgba(8, 18, 42, 0.7));
  border: 1px solid rgba(149, 196, 255, 0.12);
}

.hero-stage-body img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-stage-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.hero-stage-foot span {
  display: grid;
  place-items: center;
  padding: 12px 8px;
  border-radius: 13px;
  background: rgba(7, 18, 42, 0.68);
  border: 1px solid rgba(149, 196, 255, 0.14);
  font-size: 13px;
  color: #d4e6ff;
  position: relative;
  overflow: hidden;
}

.hero-stage-foot span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(126, 240, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-120%);
}

.hero-stage-foot span.active::before {
  animation: pill-shine 1.6s ease;
}

@keyframes pill-shine {
  to { transform: translateX(120%); }
}

.float-tag {
  position: absolute;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 29, 60, 0.92), rgba(9, 20, 44, 0.92));
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 40px rgba(7, 14, 36, 0.45);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.float-tag b {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff, #c8e0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.float-tag small { color: var(--muted); font-size: 12px; }

.tag-a { left: -3%; top: 12%; }
.tag-b { right: -4%; top: 8%; }
.tag-c { right: -8%; top: 50%; }
.tag-d { left: -4%; top: 64%; }

.hero-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(126, 240, 255, 0.6);
  border-style: solid;
  border-width: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-corner.tl { top: -10px; left: -10px; border-top-width: 2px; border-left-width: 2px; }
.hero-corner.tr { top: -10px; right: -10px; border-top-width: 2px; border-right-width: 2px; }
.hero-corner.bl { bottom: -10px; left: -10px; border-bottom-width: 2px; border-left-width: 2px; }
.hero-corner.br { bottom: -10px; right: -10px; border-bottom-width: 2px; border-right-width: 2px; }

.strip {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  contain: paint;
  border-block: 0;
  background: transparent;
  position: relative;
}

.strip::before,
.strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  z-index: 2;
}

.strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(4, 9, 26, 0.85) 30%, transparent 100%);
}

.strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg) 0%, rgba(4, 9, 26, 0.85) 30%, transparent 100%);
}

.strip-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  color: rgba(223, 237, 255, 0.55);
  font-size: 14px;
  letter-spacing: 0.04em;
  animation: marquee 36s linear infinite;
  padding: 22px 0;
  width: max-content;
}

.strip:hover .strip-track {
  animation-play-state: paused;
}

.strip-track a {
  display: inline-flex;
  align-items: center;
  color: rgba(223, 237, 255, 0.85);
  text-decoration: none;
  transition: color .25s ease;
  cursor: pointer;
}

.strip-track a:hover {
  color: #fff;
}

.strip-track a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 10px rgba(94, 233, 255, 0.4);
  vertical-align: middle;
  transition: transform .25s ease, box-shadow .25s ease;
}

.strip-track a:hover::before {
  transform: scale(1.4);
  box-shadow: 0 0 16px rgba(94, 233, 255, 0.8);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.strip::before, .strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.strip::before { left: 0; background: linear-gradient(90deg, rgba(4, 9, 26, 1), transparent); }
.strip::after { right: 0; background: linear-gradient(-90deg, rgba(4, 9, 26, 1), transparent); }

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

.value-card {
  background: linear-gradient(180deg, rgba(18, 37, 78, 0.55), rgba(10, 21, 47, 0.55));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(126, 240, 255, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 240, 255, 0.34);
  box-shadow: 0 32px 70px rgba(7, 14, 36, 0.6), 0 0 40px rgba(94, 233, 255, 0.1);
}

.value-card:hover::before { opacity: 1; }

.value-card b {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(94, 233, 255, 0.08);
  border: 1px solid rgba(94, 233, 255, 0.2);
}

.value-card h3 {
  font-size: 22px;
  margin: 18px 0 12px;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.value-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 50px;
  align-items: center;
}

.copy .section-lead {
  margin-top: 12px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.feature-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(11, 23, 49, 0.5);
  border: 1px solid var(--line);
  font-size: 15px;
  color: #dde9fb;
  line-height: 1.7;
  transition: border-color .25s ease, background .25s ease;
}

.feature-list div:hover {
  border-color: rgba(126, 240, 255, 0.3);
  background: rgba(14, 29, 60, 0.62);
}

.feature-list i {
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 12px rgba(94, 233, 255, 0.5);
  flex-shrink: 0;
}

.dashboard {
  background: linear-gradient(180deg, rgba(18, 37, 78, 0.5), rgba(10, 21, 47, 0.5));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.dashboard-head em { font-style: normal; opacity: 0.9; }

.dashboard img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.dashboard-stats div {
  background: rgba(11, 23, 49, 0.5);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}

.dashboard-stats small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.dashboard-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
}

.pressure-showcase-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 50px;
  align-items: center;
}

.pressure-intro h2 { max-width: 11em; }

.pressure-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pressure-feature-tags span {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(14, 27, 56, 0.7);
  border: 1px solid var(--line-strong);
  color: #dfeeff;
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 8px 20px rgba(4, 10, 27, 0.18);
  transition: border-color .25s ease, transform .25s ease;
}

.pressure-feature-tags span:hover {
  border-color: rgba(126, 240, 255, 0.45);
  transform: translateY(-2px);
}

.pressure-feature-tags span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 10px rgba(94, 233, 255, 0.35);
  vertical-align: middle;
}

.pressure-demo { min-width: 0; }

.pressure-window {
  border-radius: 28px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(11, 22, 52, 0.72), rgba(5, 12, 31, 0.86));
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(4, 10, 27, 0.48);
}

.pressure-window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  padding: 4px 4px 14px;
  opacity: 0.78;
}

.pressure-screen {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #020511;
  border: 1px solid var(--line);
}

#pressureCanvas {
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 700;
  display: block;
}

.pressure-metrics-wide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.pressure-metrics-wide div {
  background: linear-gradient(180deg, rgba(20, 40, 86, 0.6), rgba(10, 22, 49, 0.6));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 14px 16px;
  min-height: 106px;
  transition: border-color .25s ease;
}

.pressure-metrics-wide div:hover { border-color: rgba(126, 240, 255, 0.3); }

.pressure-metrics-wide span {
  font-size: 13px;
  color: var(--muted);
}

.pressure-metrics-wide strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin: 14px 0 8px;
  background: linear-gradient(135deg, #fff, #c8e0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.pressure-metrics-wide em {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}

.products {
  position: relative;
}

.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.product-feature:last-of-type { border-bottom: none; }

.product-feature.reverse { direction: rtl; }
.product-feature.reverse > * { direction: ltr; }

.product-feature h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.product-feature p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
  max-width: 540px;
}

.product-feature .feature-list { margin-top: 24px; }

.product-feature .visual {
  position: relative;
}

.product-feature .visual-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(22, 43, 91, 0.4), rgba(11, 24, 51, 0.4));
  box-shadow: 0 30px 80px rgba(4, 10, 27, 0.45);
  position: relative;
}

.product-feature .visual-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .8s ease;
}

.product-feature .visual:hover .visual-frame img {
  transform: scale(1.04);
}

.product-feature .visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(126, 240, 255, 0.12));
  pointer-events: none;
}

.product-feature .visual-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(126, 240, 255, 0.7);
  border-style: solid;
  border-width: 0;
}

.product-feature .visual-corner.tl { top: -8px; left: -8px; border-top-width: 2px; border-left-width: 2px; }
.product-feature .visual-corner.br { bottom: -8px; right: -8px; border-bottom-width: 2px; border-right-width: 2px; }

.product-feature .visual-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(6, 14, 32, 0.85);
  border: 1px solid var(--line-strong);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cyan);
  backdrop-filter: blur(10px);
  z-index: 2;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  text-transform: uppercase;
}

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

.product-card {
  background: linear-gradient(180deg, rgba(18, 37, 78, 0.55), rgba(10, 21, 47, 0.55));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.product-card.soft {
  background: linear-gradient(180deg, rgba(38, 24, 78, 0.45), rgba(20, 14, 47, 0.5));
  border-color: rgba(184, 144, 255, 0.22);
}

.product-card.soft:hover {
  border-color: rgba(184, 144, 255, 0.45);
  box-shadow: 0 28px 60px rgba(7, 14, 36, 0.55), 0 0 36px rgba(174, 124, 255, 0.12);
}

.product-card span.violet {
  color: var(--violet);
}

.eyebrow.violet {
  color: var(--violet);
}

.eyebrow.violet span:first-child {
  background: linear-gradient(90deg, var(--violet), var(--pink));
  box-shadow: 0 0 12px rgba(184, 144, 255, 0.5);
}

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

.products-grid-title {
  margin: 70px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.products-grid-title .eyebrow {
  margin: 0;
}

.products-grid-title h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 4px 0 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-feature.product-feature .pressure-window {
  margin: 0;
  border-radius: 22px;
}

.product-feature .pressure-visual {
  padding: 0;
}

.product-feature .pressure-visual .pressure-window {
  background: linear-gradient(180deg, rgba(11, 22, 52, 0.72), rgba(5, 12, 31, 0.86));
  border: 1px solid var(--line-strong);
  padding: 14px;
  box-shadow: 0 30px 80px rgba(4, 10, 27, 0.48);
}

.product-feature .pressure-visual .pressure-metrics-wide {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 12px;
}

.product-feature .pressure-visual .pressure-metrics-wide div {
  padding: 12px 14px;
  min-height: 90px;
}

.product-feature .pressure-visual .pressure-metrics-wide strong {
  font-size: 24px;
  margin: 10px 0 6px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(126, 240, 255, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 240, 255, 0.34);
  box-shadow: 0 28px 60px rgba(7, 14, 36, 0.55), 0 0 36px rgba(94, 233, 255, 0.08);
}

.product-card:hover::before { opacity: 1; }

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: contain;
  border-radius: 14px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: rgba(7, 17, 40, 0.9);
  padding: 10px;
}

.product-card span {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "SF Mono", Menlo, Consolas, monospace;
}

.product-card h3 {
  font-size: 18px;
  margin: 12px 0 10px;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.3;
}

.product-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 14px;
}

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

.customer-card {
  background: linear-gradient(180deg, rgba(18, 37, 78, 0.55), rgba(10, 21, 47, 0.55));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: transform .35s ease, border-color .35s ease;
}

.customer-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 240, 255, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}

.customer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 240, 255, 0.34);
}

.customer-card:hover::before { opacity: 1; }

.customer-card span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(94, 233, 255, 0.08);
  border: 1px solid rgba(94, 233, 255, 0.22);
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.customer-card h3 {
  font-size: 20px;
  margin: 18px 0 12px;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.customer-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
  margin: 0;
}

.contact-wrap {
  background: linear-gradient(180deg, rgba(18, 37, 78, 0.55), rgba(10, 21, 47, 0.55));
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.contact-wrap::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 240, 255, 0.16), transparent 65%);
  pointer-events: none;
}

.contact-wrap::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 124, 255, 0.16), transparent 65%);
  pointer-events: none;
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-copy p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
  margin-top: 14px;
}

.contact-card {
  background: rgba(6, 14, 32, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 24px;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.contact-card div {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(11, 23, 49, 0.5);
  border: 1px solid var(--line);
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
}

.cy-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 50px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(220, 236, 255, 0.6);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.cy-footer .links {
  display: flex;
  gap: 18px;
}

.cy-footer .links a:hover { color: var(--cyan); }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.show, .reveal-right.show { transform: translateX(0); }

.delay-1 { --reveal-delay: 80ms; }
.delay-2 { --reveal-delay: 160ms; }
.delay-3 { --reveal-delay: 240ms; }
.delay-4 { --reveal-delay: 320ms; }

[data-tilt] {
  will-change: transform, box-shadow;
  transition: transform .18s ease, box-shadow .22s ease;
}

[data-tilt].is-tilting {
  box-shadow:
    0 34px 80px rgba(4, 10, 27, 0.5),
    0 0 0 1px rgba(112, 170, 255, 0.12),
    0 0 36px rgba(94, 233, 255, 0.1);
}

.mouse-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(circle, rgba(94, 233, 255, 0.13) 0%, rgba(94, 233, 255, 0.05) 30%, rgba(174, 124, 255, 0.04) 50%, transparent 70%);
  mix-blend-mode: screen;
  filter: blur(18px);
  opacity: 0.9;
  transform: translate(-50%, -50%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 100;
  background: rgba(126, 240, 255, 0.06);
}

.scroll-progress::before {
  content: "";
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  box-shadow: 0 0 12px rgba(126, 240, 255, 0.5);
  transition: width .12s ease;
}

@media (max-width: 1180px) {
  .hero, .two-col, .pressure-showcase-grid, .product-feature, .contact-wrap {
    grid-template-columns: 1fr;
  }
  .product-feature.reverse { direction: ltr; }
  .hero { padding-top: 110px; gap: 30px; min-height: auto; }
  .hero-copy h1 { max-width: 16ch; }
  .hero-visual { min-height: 460px; }
  .float-tag { transform: scale(0.92); }
  .tag-b { right: 0; }
  .tag-c { right: 2%; }
  .products-grid, .products-grid.grid-4 { grid-template-columns: repeat(3, 1fr); }
  .customers-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { padding: 38px; }
}

.promise-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.promise-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: linear-gradient(135deg, rgba(94, 233, 255, 0.10), rgba(174, 124, 255, 0.10));
  border: 1px solid rgba(126, 240, 255, 0.28);
  border-radius: 22px;
  padding: 4px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.promise-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(126, 240, 255, 0.12) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: promise-shine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes promise-shine {
  0%, 80% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  position: relative;
  z-index: 1;
}

.promise-item + .promise-item {
  border-left: 1px solid rgba(126, 240, 255, 0.18);
}

.promise-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(94, 233, 255, 0.22), rgba(174, 124, 255, 0.22));
  border: 1px solid rgba(126, 240, 255, 0.34);
  color: var(--cyan);
}

.promise-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promise-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  color: #fff;
}

.promise-text span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

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

.numbers-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.numbers-grid-3 .number-card {
  padding: 56px 28px;
}

.numbers-grid-3 .number-card .num {
  font-size: clamp(54px, 5.6vw, 84px);
}

.numbers-grid-3 .number-card .label {
  font-size: 15px;
  margin-top: 22px;
  letter-spacing: 0.06em;
}

.number-card {
  text-align: center;
  padding: 36px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 37, 78, 0.55), rgba(10, 21, 47, 0.55));
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}

.number-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 240, 255, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}

.number-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 240, 255, 0.4);
}

.number-card:hover::before { opacity: 1; }

.number-card .num {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #c8e0ff 60%, #7ef0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  position: relative;
  z-index: 1;
}

.number-card .num em {
  font-style: normal;
  font-size: 0.5em;
  color: var(--cyan);
  -webkit-text-fill-color: var(--cyan);
  margin-left: 4px;
  font-weight: 700;
}

.number-card .label {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.process {
  position: relative;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.process-flow::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(126, 240, 255, 0.4) 10%, rgba(126, 240, 255, 0.5) 50%, rgba(174, 124, 255, 0.4) 90%, transparent);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 4px;
}

.process-node {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(20, 40, 86, 0.95), rgba(10, 22, 49, 0.95));
  border: 1px solid rgba(126, 240, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(6, 14, 32, 1), 0 12px 30px rgba(4, 10, 27, 0.5), 0 0 24px rgba(126, 240, 255, 0.15);
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.process-node b {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  background: linear-gradient(135deg, #7ef0ff, #b890ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.process-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.process-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 8px;
}

.process-equip {
  font-size: 10.5px;
  color: var(--cyan);
  font-family: "SF Mono", Menlo, Consolas, monospace;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.process-step:hover .process-node {
  transform: scale(1.08);
  border-color: rgba(126, 240, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(6, 14, 32, 1), 0 16px 36px rgba(4, 10, 27, 0.55), 0 0 36px rgba(126, 240, 255, 0.3);
}

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

.testimonial-card {
  background: linear-gradient(180deg, rgba(18, 37, 78, 0.55), rgba(10, 21, 47, 0.55));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  right: 18px;
  font-size: 120px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(126, 240, 255, 0.12);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 240, 255, 0.35);
  box-shadow: 0 28px 60px rgba(7, 14, 36, 0.55), 0 0 36px rgba(94, 233, 255, 0.08);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #ffd166, #ff8fc1);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-quote {
  flex: 1;
  font-size: 15px;
  line-height: 1.75;
  color: #e0ecff;
  margin: 0 0 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(126, 240, 255, 0.12);
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-author .who strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.testimonial-author .who span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.testimonial-author .tag {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(94, 233, 255, 0.1);
  border: 1px solid rgba(94, 233, 255, 0.24);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cyan);
  font-family: "SF Mono", Menlo, Consolas, monospace;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(180deg, rgba(18, 37, 78, 0.45), rgba(10, 21, 47, 0.45));
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color .3s ease;
}

.faq-item.open {
  border-color: rgba(126, 240, 255, 0.4);
  background: linear-gradient(180deg, rgba(22, 45, 92, 0.55), rgba(12, 26, 56, 0.55));
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background .25s ease;
  letter-spacing: -0.01em;
}

.faq-q:hover {
  background: rgba(126, 240, 255, 0.04);
}

.faq-q-num {
  flex-shrink: 0;
  color: var(--cyan);
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.faq-q-text {
  flex: 1;
}

.faq-toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(126, 240, 255, 0.08);
  border: 1px solid rgba(126, 240, 255, 0.3);
  display: grid;
  place-items: center;
  position: relative;
  transition: background .25s ease, transform .35s ease;
}

.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--cyan);
  border-radius: 1px;
}

.faq-toggle::before {
  width: 12px;
  height: 2px;
}

.faq-toggle::after {
  width: 2px;
  height: 12px;
  transition: transform .3s ease;
}

.faq-item.open .faq-toggle {
  background: rgba(174, 124, 255, 0.15);
  border-color: rgba(174, 124, 255, 0.45);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 26px 24px;
}

.faq-a p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  padding-left: 50px;
}

.faq-a .highlight {
  color: #fff;
  font-weight: 700;
}

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

.adv-card {
  background: linear-gradient(180deg, rgba(18, 37, 78, 0.55), rgba(10, 21, 47, 0.55));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 28px 24px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.adv-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 233, 255, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.adv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 240, 255, 0.4);
  box-shadow: 0 28px 60px rgba(7, 14, 36, 0.55), 0 0 36px rgba(94, 233, 255, 0.12);
}

.adv-card:hover::before { opacity: 1; }

.adv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(94, 233, 255, 0.22), rgba(174, 124, 255, 0.22));
  border: 1px solid rgba(126, 240, 255, 0.34);
  color: var(--cyan);
  position: relative;
  z-index: 1;
}

.adv-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adv-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.adv-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

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

.benefit-card {
  background: linear-gradient(180deg, rgba(38, 24, 78, 0.5), rgba(20, 14, 47, 0.5));
  border: 1px solid rgba(184, 144, 255, 0.22);
  border-radius: 22px;
  padding: 30px 24px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 124, 255, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 144, 255, 0.5);
  box-shadow: 0 28px 60px rgba(7, 14, 36, 0.55), 0 0 36px rgba(174, 124, 255, 0.12);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(174, 124, 255, 0.26), rgba(255, 143, 193, 0.18));
  border: 1px solid rgba(184, 144, 255, 0.4);
  color: var(--violet);
  position: relative;
  z-index: 1;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.trust-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 30px;
}

.trust-bar {
  background: linear-gradient(180deg, rgba(16, 33, 70, 0.4), rgba(8, 18, 40, 0.4));
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 36px 38px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 233, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.trust-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--cyan);
  text-transform: uppercase;
}

.trust-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.trust-lead {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
  text-align: right;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(8, 18, 40, 0.4);
  border: 1px solid rgba(126, 240, 255, 0.12);
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}

.trust-item:hover {
  border-color: rgba(126, 240, 255, 0.34);
  transform: translateY(-3px);
  background: rgba(11, 23, 49, 0.55);
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(94, 233, 255, 0.18), rgba(174, 124, 255, 0.18));
  border: 1px solid rgba(126, 240, 255, 0.26);
  color: var(--cyan);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.trust-item span {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.cy-footer {
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.footer-main > :first-child {
  justify-self: start;
}

.footer-main .footer-beian-inline {
  justify-self: center;
  text-align: center;
}

.footer-compliance {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.7;
  color: rgba(184, 202, 230, 0.42);
  letter-spacing: 0.02em;
}

.footer-beian-inline {
  color: rgba(184, 202, 230, 0.55);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-beian-inline:hover {
  color: var(--cyan);
}

@media (max-width: 920px) {
  .cy-nav, .cy-cta { display: none; }
  .cy-menu { display: block; margin-left: auto; }
  .section, .section-lite { padding: 56px 18px; }
  .intro-grid, .products-grid, .products-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-metrics, .pressure-metrics-wide, .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
  .product-feature { gap: 24px; padding: 48px 0; }
  .pressure-metrics-wide { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .numbers-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow { grid-template-columns: repeat(4, 1fr); row-gap: 40px; }
  .process-flow::before { display: none; }
  .promise-bar { grid-template-columns: 1fr; }
  .promise-item + .promise-item { border-left: 0; border-top: 1px solid rgba(126, 240, 255, 0.18); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trust-lead { text-align: left; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > :first-child,
  .footer-main .footer-beian-inline { justify-self: start; }
}

@media (max-width: 680px) {
  .cy-header { top: 10px; padding: 10px 14px; }
  .cy-brand em { display: none; }
  .cy-brand .mark { width: 36px; height: 36px; font-size: 13px; }
  .cy-brand strong { font-size: 15px; }
  .cy-brand--text { font-size: 20px; letter-spacing: 0.14em; }

  .section, .section-lite { padding: 44px 16px; }
  .section-head { margin-bottom: 28px; }
  .section-head h2,
  .copy h2,
  .contact-copy h2,
  .pressure-intro h2,
  .product-feature .copy h2 {
    font-size: clamp(24px, 6.6vw, 32px);
    line-height: 1.16;
    margin-bottom: 12px;
  }
  .section-head p, .section-lead { font-size: 14.5px; line-height: 1.7; }
  .eyebrow { font-size: 12px; margin-bottom: 16px; }
  .eyebrow span:first-child { width: 28px; }

  .hero {
    padding-top: 90px;
    padding-bottom: 36px;
    gap: 24px;
  }
  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.2;
    max-width: 100%;
    padding-bottom: 8px;
  }
  .hero-copy h1 .word,
  .hero-copy h1 .accent { padding-bottom: 0.18em; }
  .hero .lead { font-size: 14.5px; line-height: 1.72; margin-top: 18px; }
  .hero-actions { gap: 10px; margin-top: 24px; }
  .hero-actions .btn { padding: 13px 20px; font-size: 14px; }
  .hero-metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 24px; }
  .hero-metrics div { padding: 12px 8px; border-radius: 14px; }
  .hero-metrics strong { font-size: 22px; gap: 2px; }
  .hero-metrics strong em { font-size: 13px; }
  .hero-metrics > div > span { font-size: 11px; }
  .hero-visual { min-height: auto; }
  .hero-stage-frame { padding: 10px; border-radius: 20px; }
  .hero-stage-foot { grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 10px; }
  .hero-stage-foot span { padding: 8px 4px; font-size: 11px; border-radius: 10px; }

  .float-tag { padding: 8px 12px; border-radius: 12px; }
  .float-tag b { font-size: 12px; margin-bottom: 2px; }
  .float-tag small { font-size: 10.5px; }
  .tag-a { left: 0; top: 6%; }
  .tag-b { right: 0; top: 4%; }
  .tag-c { right: 0; top: 48%; }
  .tag-d { left: 0; top: 70%; }

  .promise-strip { padding: 0 16px; }
  .promise-bar { padding: 2px; border-radius: 16px; }
  .promise-item { padding: 14px 16px; gap: 12px; }
  .promise-icon { width: 36px; height: 36px; border-radius: 10px; }
  .promise-icon svg { width: 18px; height: 18px; }
  .promise-text strong { font-size: 14px; margin-bottom: 2px; }
  .promise-text span { font-size: 12px; }

  .strip-track { padding: 12px 0; font-size: 12.5px; gap: 28px; }

  .intro-grid, .products-grid, .products-grid.grid-4, .customers-grid, .pressure-metrics-wide, .dashboard-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .adv-grid, .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .adv-card, .benefit-card {
    padding: 18px 14px;
    border-radius: 16px;
  }
  .adv-card h3, .benefit-card h3 {
    font-size: 14px;
    margin: 10px 0 6px;
    line-height: 1.3;
  }
  .adv-card p, .benefit-card p {
    font-size: 12px;
    line-height: 1.55;
  }
  .adv-icon, .benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 12px;
  }
  .adv-icon svg, .benefit-icon svg { width: 18px; height: 18px; }
  .value-card, .customer-card, .product-card {
    padding: 22px 20px;
    border-radius: 18px;
  }
  .value-card h3, .customer-card h3 { font-size: 17px; margin: 12px 0 8px; }
  .value-card p, .customer-card p { font-size: 14px; line-height: 1.7; }
  .value-card b { font-size: 11.5px; }

  .products-grid-title { margin: 24px 0 14px; }
  .products-grid-title h3 { font-size: 17px; margin: 4px 0 0; }
  .product-card { padding: 16px; }
  .product-card img { margin-bottom: 14px; border-radius: 12px; }
  .product-card h3 { font-size: 16px; margin: 10px 0 6px; }
  .product-card p { font-size: 13px; line-height: 1.6; }

  .product-feature { gap: 20px; padding: 36px 0; }
  .product-feature .visual-frame { border-radius: 18px; }
  .product-feature .feature-list { margin-top: 18px; gap: 8px; }
  .product-feature .feature-list div { padding: 12px 14px; font-size: 14px; }
  .product-feature .visual-tag { font-size: 10px; padding: 6px 10px; }

  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .numbers-grid-3 { grid-template-columns: 1fr; gap: 10px; }
  .numbers-grid-3 .number-card { padding: 28px 20px; }
  .numbers-grid-3 .number-card .num { font-size: clamp(40px, 12vw, 56px); }
  .numbers-grid-3 .number-card .label { font-size: 13px; margin-top: 12px; }
  .number-card { padding: 22px 12px; border-radius: 16px; }
  .number-card .num { font-size: clamp(30px, 9vw, 40px); }
  .number-card .label { font-size: 12px; margin-top: 10px; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 22px 20px; border-radius: 18px; }
  .testimonial-quote { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
  .testimonial-author img { width: 40px; height: 40px; }
  .testimonial-author .who strong { font-size: 14px; }
  .testimonial-author .who span { font-size: 11.5px; }
  .testimonial-author .tag { padding: 3px 8px; font-size: 10px; }

  .process-flow { grid-template-columns: 1fr; row-gap: 18px; }
  .process-flow::before { display: none; }
  .process-step { display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: center; text-align: left; padding: 14px 16px; background: linear-gradient(180deg, rgba(18, 37, 78, 0.4), rgba(10, 21, 47, 0.4)); border: 1px solid var(--line); border-radius: 14px; }
  .process-node { width: 52px; height: 52px; margin: 0; box-shadow: none; }
  .process-node b { font-size: 11px; }
  .process-title { font-size: 15px; margin-bottom: 4px; }
  .process-desc { font-size: 12.5px; margin: 0 0 4px; line-height: 1.5; }
  .process-equip { font-size: 10.5px; }
  .process-step > .process-title,
  .process-step > .process-desc,
  .process-step > .process-equip { grid-column: 2; }

  .faq-q { padding: 16px; font-size: 14.5px; gap: 12px; }
  .faq-q-num { font-size: 12px; }
  .faq-a p { padding-left: 0; font-size: 13.5px; line-height: 1.75; }
  .faq-item.open .faq-a { padding: 0 16px 16px; }
  .faq-toggle { width: 26px; height: 26px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-bar { padding: 22px 18px; border-radius: 18px; }
  .trust-strip { padding: 0 16px 18px; }
  .trust-item { padding: 14px 12px; }
  .trust-item strong { font-size: 13px; }
  .trust-item span { font-size: 11.5px; line-height: 1.5; }
  .trust-icon { width: 32px; height: 32px; border-radius: 8px; }
  .trust-icon svg { width: 16px; height: 16px; }
  .trust-eyebrow { font-size: 11px; }
  .trust-lead { font-size: 13px; }

  .contact-wrap { padding: 24px 20px; border-radius: 22px; gap: 24px; }
  .contact-card { padding: 18px; border-radius: 16px; gap: 10px; }
  .contact-card div { padding: 10px 12px; border-radius: 10px; }

  .cy-footer { padding: 30px 16px; }
  .footer-main { gap: 10px; }
  .footer-compliance { font-size: 10px; padding-top: 14px; line-height: 1.65; }
  .footer-compliance, .cy-footer span, .cy-footer .links { width: 100%; }
  .cy-footer .links { flex-wrap: wrap; gap: 12px; }

  .mouse-glow { display: none; }
  .pressure-window { padding: 12px; border-radius: 18px; }
  .pressure-metrics-wide { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pressure-metrics-wide div { min-height: 0; padding: 12px 14px; border-radius: 12px; }
  .pressure-metrics-wide span { font-size: 12px; }
  .pressure-metrics-wide strong { font-size: 22px; margin-top: 8px; white-space: nowrap; }
  .pressure-feature-tags { gap: 8px; }
  .pressure-feature-tags span { padding: 7px 12px; font-size: 12.5px; }

  .product-feature h2 { font-size: clamp(22px, 6.4vw, 30px); }
}

.hero-stage-body {
  position: relative;
  overflow: hidden;
}

.hero-rider-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-fx-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12%;
  background: linear-gradient(180deg, rgba(126,240,255,0) 0%, rgba(126,240,255,0.45) 50%, rgba(126,240,255,0) 100%);
  animation: hero-fx-scan 4.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes hero-fx-scan {
  0%   { transform: translateY(-100%); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(900%); opacity: 0; }
}

.hero-fx-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(126, 240, 255, 0.7);
}

.hero-fx-corner.tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; border-top-left-radius: 6px; }
.hero-fx-corner.tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; border-top-right-radius: 6px; }
.hero-fx-corner.bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; border-bottom-left-radius: 6px; }
.hero-fx-corner.br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; border-bottom-right-radius: 6px; }

.hero-fx-status {
  position: absolute;
  top: 18px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(126, 240, 255, 0.75);
}

.hero-fx-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ef0ff;
  box-shadow: 0 0 8px #7ef0ff;
  animation: hero-fx-blink 1.3s ease-in-out infinite;
}

@keyframes hero-fx-blink {
  0%, 45%, 55%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.hero-fx-tag {
  position: absolute;
  bottom: 18px;
  left: 22px;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(184, 202, 230, 0.6);
}

.hero-fx-tag::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, rgba(126,240,255,0.7), transparent);
  animation: hero-fx-flow 3.2s ease-in-out infinite;
}

@keyframes hero-fx-flow {
  0%, 100% { opacity: 0.3; transform: scaleX(0.6); transform-origin: left; }
  50% { opacity: 0.9; transform: scaleX(1.2); transform-origin: left; }
}

html[data-motion="reduce"] .hero-fx-scan,
html[data-motion="reduce"] .hero-fx-dot,
html[data-motion="reduce"] .hero-fx-tag::after {
  animation: none;
}

.eyebrow,
h1, h2, h3, h4,
.hero-copy h1,
.section-head h2,
.contact-copy h2,
.testimonial-quote,
.faq-q-text,
.feature-list span,
.adv-card p,
.benefit-card p,
.product-card p {
  word-spacing: 0.05em;
}

.eyebrow-stat {
  font-style: normal;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-head h2 {
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.018em;
}

.section-head--xl h2 {
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.022em;
}

.section-head--sm h2 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.012em;
}

.numbers {
  position: relative;
}

.numbers::before {
  content: "";
  position: absolute;
  inset: 40px 8% auto 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 240, 255, 0.25), transparent);
  pointer-events: none;
}

.numbers-grid-3 .number-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%, rgba(126, 240, 255, 0.03) 100%),
    linear-gradient(180deg, rgba(28, 52, 102, 0.7), rgba(12, 24, 56, 0.7));
  border: 1px solid rgba(184, 220, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(94, 233, 255, 0.06),
    0 24px 48px rgba(4, 10, 27, 0.5);
  position: relative;
  overflow: hidden;
}

.numbers-grid-3 .number-card::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 240, 255, 0.35), transparent);
  pointer-events: none;
}

.numbers-grid-3 .number-card .num {
  background: linear-gradient(180deg, #ffffff 0%, #cde6ff 40%, #7ef0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(126, 240, 255, 0.18));
}

.numbers-grid-3 .number-card .num em {
  margin-left: 10px;
  filter: none;
  -webkit-text-fill-color: var(--cyan);
  color: var(--cyan);
  opacity: 0.85;
}

.numbers-grid-3 .number-card:hover {
  border-color: rgba(184, 220, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(94, 233, 255, 0.1),
    0 32px 64px rgba(4, 10, 27, 0.6),
    0 0 50px rgba(126, 240, 255, 0.12);
}

.num-mono-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
}

.adv-mono-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-size: 9.5px;
  padding: 3px 7px;
}

.adv-card {
  position: relative;
}

.adv-card .scan-line {
  position: absolute;
  left: -100%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(126, 240, 255, 0.08) 45%, rgba(174, 124, 255, 0.06) 55%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  transition: none;
}

.adv-card:hover .scan-line {
  animation: scan-sweep 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes scan-sweep {
  to { left: 140%; }
}

.adv-card .scan-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.adv-card:hover .scan-bar {
  opacity: 1;
  animation: scan-pulse 1.6s ease-in-out infinite;
}

@keyframes scan-pulse {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.testimonials {
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 193, 0.06), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.testimonial-card {
  background:
    linear-gradient(180deg, rgba(46, 28, 80, 0.5), rgba(20, 14, 47, 0.55)),
    radial-gradient(ellipse at 80% 0%, rgba(255, 143, 193, 0.12), transparent 60%);
  border: 1px solid rgba(184, 144, 255, 0.18);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 143, 193, 0.18), rgba(174, 124, 255, 0.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-card::before {
  color: rgba(255, 143, 193, 0.14);
}

.trust-bar {
  background:
    linear-gradient(180deg, rgba(10, 20, 44, 0.7), rgba(6, 14, 32, 0.85));
  border: 1px solid rgba(126, 240, 255, 0.16);
  position: relative;
}

.trust-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.trust-item {
  background: rgba(4, 9, 24, 0.5);
  border: 1px solid rgba(126, 240, 255, 0.08);
  position: relative;
}

.trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 240, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trust-item:hover::before {
  opacity: 1;
}

.mono-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(126, 240, 255, 0.6);
  padding: 4px 8px;
  border-radius: 5px;
  background: rgba(94, 233, 255, 0.04);
  border: 1px solid rgba(126, 240, 255, 0.14);
  white-space: nowrap;
}

.mono-tag::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.mono-tag.violet { color: rgba(184, 144, 255, 0.65); border-color: rgba(184, 144, 255, 0.18); background: rgba(174, 124, 255, 0.05); }
.mono-tag.violet::before { background: var(--violet); box-shadow: 0 0 8px var(--violet); }

.number-card .num em {
  margin-left: 8px;
}

@media (max-width: 680px) {
  .section-head--xl h2 { font-size: clamp(28px, 7.5vw, 36px); }
  .section-head--sm h2 { font-size: clamp(22px, 6vw, 28px); }
  .numbers::before { display: none; }
  .testimonials::before { width: 280px; height: 280px; }
  .trust-bar::after { background-size: 24px 24px; }
}

.adv-card, .benefit-card, .customer-card, .product-card, .value-card {
  position: relative;
}

.adv-card::before,
.benefit-card::before,
.customer-card::before,
.product-card::before {

}

.cy-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(94, 233, 255, 0.06);
  border: 1px solid var(--line);
  margin-right: 8px;
}

.cy-lang button {
  background: transparent;
  border: 0;
  color: rgba(217, 231, 255, 0.65);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: color .2s ease, background .25s ease;
  font-family: inherit;
}

.cy-lang button:hover {
  color: #fff;
}

.cy-lang button.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(94, 233, 255, 0.25), rgba(174, 124, 255, 0.18));
  box-shadow: 0 0 0 1px rgba(126, 240, 255, 0.4) inset;
}

.video-demo {
  position: relative;
}

.video-frame {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 37, 78, 0.55), rgba(10, 21, 47, 0.55));
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 70px rgba(4, 10, 27, 0.55), 0 0 60px rgba(94, 233, 255, 0.06);
}

.video-frame--inline {
  margin-bottom: 60px;
}

.video-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--cyan);
  z-index: 3;
  pointer-events: none;
}

.video-corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; border-top-left-radius: 8px; }
.video-corner.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; border-top-right-radius: 8px; }
.video-corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; border-bottom-left-radius: 8px; }
.video-corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; border-bottom-right-radius: 8px; }

.video-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050b1d;
  overflow: hidden;
}

.video-stage video,
.video-stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image:
    linear-gradient(180deg, rgba(4, 10, 27, 0.55), rgba(4, 10, 27, 0.75)),
    var(--video-cover-image, linear-gradient(135deg, #0b1735, #050b1d)),
    linear-gradient(135deg, #0b1735, #050b1d);
  background-position: center, center, center;
  background-size: auto, cover, cover;
  background-repeat: repeat, no-repeat, no-repeat;
  z-index: 2;
  cursor: pointer;
  transition: opacity .4s ease;
}

.video-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.6;
}

.video-cover.is-playing {
  opacity: 0;
  pointer-events: none;
}

.video-iframe-prewarm {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.video-cover-meta {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
}

.video-mono-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(126, 240, 255, 0.75);
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(94, 233, 255, 0.06);
  border: 1px solid rgba(126, 240, 255, 0.22);
}

.video-mono-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: status-blink 1.5s ease-in-out infinite;
}

.video-cover-corner {
  position: absolute;
  z-index: 2;
}

.video-cover-corner.br {
  bottom: 28px;
  right: 28px;
}

.vp-corner-label {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(184, 202, 230, 0.55);
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(126, 240, 255, 0.12);
}

.video-play-btn {
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: #fff;
  z-index: 2;
  transition: transform .25s ease;
  font-family: inherit;
}

.video-play-btn svg {
  width: 88px;
  height: 88px;
  color: #fff;
  filter: drop-shadow(0 0 30px rgba(94, 233, 255, 0.5));
}

.video-play-btn .vp-ring {
  fill: none;
  stroke: rgba(126, 240, 255, 0.7);
  stroke-width: 1.5;
}

.video-play-btn .vp-ring-2 {
  stroke: rgba(126, 240, 255, 0.35);
  stroke-dasharray: 4 6;
  transform-origin: center;
  animation: vp-rotate 12s linear infinite;
}

@keyframes vp-rotate {
  to { transform: rotate(360deg); }
}

.video-play-btn:hover {
  transform: scale(1.06);
}

.video-play-btn:hover svg {
  filter: drop-shadow(0 0 40px rgba(94, 233, 255, 0.9));
}

.video-play-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(217, 231, 255, 0.85);
}

@media (max-width: 920px) {
  .cy-lang:not(.cy-lang-mobile) { display: none; }
  .cy-lang-mobile {
    margin-right: 0;
    margin-top: 18px;
    width: 100%;
    justify-content: space-between;
    padding: 6px;
  }
  .cy-lang-mobile button {
    flex: 1;
    padding: 12px 8px;
    font-size: 14px;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .video-frame { border-radius: 18px; }
  .video-corner { width: 16px; height: 16px; }
  .video-corner.tl, .video-corner.tr { top: 10px; }
  .video-corner.bl, .video-corner.br { bottom: 10px; }
  .video-corner.tl, .video-corner.bl { left: 10px; }
  .video-corner.tr, .video-corner.br { right: 10px; }
  .video-cover-meta { top: 16px; left: 16px; }
  .video-cover-corner.br { bottom: 16px; right: 16px; }
  .video-mono-tag, .vp-corner-label { font-size: 10px; padding: 4px 8px; }
  .video-play-btn svg { width: 64px; height: 64px; }
  .video-play-label { font-size: 12px; letter-spacing: 0.1em; }
}

html[data-motion="reduce"] *,
html[data-motion="reduce"] *::before,
html[data-motion="reduce"] *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

html[data-motion="reduce"] .reveal {
  opacity: 1;
  transform: none;
}

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(126, 240, 255, 0.32);
  background: linear-gradient(135deg, rgba(20, 40, 86, 0.72), rgba(10, 22, 49, 0.72));
  color: var(--cyan);
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(4, 10, 27, 0.5), 0 0 24px rgba(94, 233, 255, 0.12);
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  font-family: inherit;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: rgba(126, 240, 255, 0.55);
  background: linear-gradient(135deg, rgba(30, 60, 120, 0.85), rgba(15, 32, 70, 0.85));
  box-shadow: 0 14px 36px rgba(4, 10, 27, 0.6), 0 0 32px rgba(94, 233, 255, 0.25);
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  transition: transform .25s ease;
}

@media (max-width: 680px) {
  .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; border-radius: 12px; }
  .back-to-top svg { width: 18px; height: 18px; }
}

@media (max-width: 680px) {
  .cy-header {
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
    transform: none;
    gap: 10px;
  }
  .cy-brand--text {
    white-space: nowrap;
    min-width: 0;
    flex-shrink: 1;
  }
  .cy-menu {
    flex-shrink: 0;
  }
  .strip {
    padding-left: 0;
    padding-right: 0;
  }
  .reveal-left,
  .reveal-right {
    transform: translateY(24px);
  }
  .reveal-left.show,
  .reveal-right.show {
    transform: translateY(0);
  }
  .back-to-top {
    right: 12px;
  }
}

html {
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 680px) {
  html {
    scroll-behavior: auto;
  }

  .cy-header,
  .cy-mobile-nav,
  .back-to-top {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  #bgWebgl,
  .bg-noise,
  body > .scan-line {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 .word,
  .hero-copy h1 .accent {
    white-space: normal;
  }

  .strip {
    contain: paint;
  }

  .strip-track {
    width: max-content;
    white-space: nowrap;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 28px;
    animation: marquee 36s linear infinite;
  }

  .pressure-metrics-wide strong,
  .hero-metrics strong {
    font-variant-numeric: tabular-nums;
  }

  .video-play-btn .vp-ring-2,
  .video-mono-tag::before {
    animation: none;
  }
}

@media (max-width: 920px) {
  [data-tilt] {
    transform: none !important;
  }
}

@media (min-width: 681px) and (max-width: 1180px) {
  .hero-visual {
    width: min(100%, 720px);
    justify-self: center;
    margin-inline: auto;
    min-height: auto;
  }

  .hero-stage,
  .hero-stage-frame {
    width: 100%;
    margin-inline: auto;
  }

  .tag-a { left: -18px; top: 12%; }
  .tag-b { right: -18px; top: 8%; }
  .tag-c { right: -18px; top: 50%; }
  .tag-d { left: -18px; top: 64%; }
}

@media (min-width: 681px) and (max-width: 1180px) {
  .hero {
    padding-top: clamp(156px, 16vw, 190px);
    align-items: start;
  }

  .hero-copy {
    padding-top: 0;
  }

  .cy-header {
    top: 14px;
  }
}

@media (min-width: 681px) and (max-width: 1180px) and (orientation: landscape) {
  .hero {
    padding-top: 150px;
  }
}

@media (max-width: 680px) {
  .product-feature .pressure-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .product-feature .pressure-visual .visual-corner.tl {
    top: 0;
    left: 0;
  }

  .product-feature .pressure-visual .visual-corner.br {
    right: 0;
    bottom: 0;
  }

  .product-feature .pressure-visual .pressure-window {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 18px;
    overflow: hidden;
  }

  .product-feature .pressure-visual .pressure-window-head {
    gap: 8px;
    padding: 2px 2px 10px;
  }

  .product-feature .pressure-visual .pressure-window-head span {
    min-width: 0;
    max-width: calc(100% - 64px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: right;
    font-size: 12px;
  }

  .product-feature .pressure-visual .pressure-screen {
    border-radius: 16px;
  }

  .product-feature .pressure-visual .pressure-metrics-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-feature .pressure-visual .pressure-metrics-wide div {
    min-width: 0;
    min-height: 0;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .product-feature .pressure-visual .pressure-metrics-wide strong {
    font-size: 22px;
    margin: 8px 0 6px;
    white-space: nowrap;
  }
}


/* 移动端压力模块低负载动态模式：保留动态热力图，降低合成层和文字重排抖动。 */
@media (hover: none), (pointer: coarse), (max-width: 920px) {
  .product-feature .pressure-visual,
  .product-feature .pressure-visual .pressure-window,
  .product-feature .pressure-visual .pressure-screen,
  .product-feature .pressure-visual #pressureCanvas {
    transform: none !important;
    will-change: auto !important;
  }

  .product-feature .pressure-visual .pressure-screen {
    contain: paint;
    isolation: isolate;
  }

  .product-feature .pressure-visual .pressure-metrics-wide div {
    contain: layout paint;
  }

  .product-feature .pressure-visual .pressure-metrics-wide strong {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
  }
}
