.page-products {
  --pd-gold: #E6C04C;
  --pd-gold-deep: #C99022;
  --pd-neon: #39FF88;
  --pd-blue: #0A1C3A;
  --pd-blue-2: #1E3A6E;
  --pd-blue-3: #1C2B4A;
  --pd-light: #F0F2F5;
  --pd-ink: #0A1C3A;
  --pd-muted: #F0F2F5;
  --pd-line: rgba(230, 192, 76, .28);
  --pd-line-blue: rgba(255, 255, 255, .14);
  --pd-font-mono: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  --pd-font-head: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--pd-blue);
  color: var(--pd-muted);
  overflow-x: hidden;
}

.page-products .container {
  width: min(1280px, 100% - 40px);
  margin-inline: auto;
}

.page-products h1 {
  font-family: var(--pd-font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
}

.page-products h2 {
  font-family: var(--pd-font-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.25;
  color: var(--pd-blue);
  margin: 0;
}

.page-products h3 {
  font-family: var(--pd-font-head);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--pd-blue);
  margin: 0 0 6px;
}

.page-products p {
  font-family: var(--pd-font-head);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #243856;
  margin: 0;
}

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

.page-products img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .index-label {
  font-family: var(--pd-font-mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-products .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--pd-font-mono);
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--pd-neon);
  background: rgba(57, 255, 136, .1);
  border: 1px solid rgba(57, 255, 136, .35);
  border-radius: 999px;
  padding: 4px 12px;
}

.page-products .chip--neon {
  color: #06231a;
  background: var(--pd-neon);
  border-color: var(--pd-neon);
}

.page-products .breadcrumb {
  max-width: min(1280px, 100% - 40px);
  margin: 0 auto;
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--pd-font-mono);
  font-size: .78rem;
  color: rgba(255, 255, 255, .65);
  position: relative;
  z-index: 2;
}

.page-products .breadcrumb a {
  color: var(--pd-gold);
}

.page-products .breadcrumb__sep {
  color: rgba(255, 255, 255, .4);
}

.page-products .breadcrumb__current {
  color: #fff;
}

.page-products .prod-hero {
  position: relative;
  padding: 44px 0 40px;
  background:
    radial-gradient(ellipse at 82% 20%, rgba(230, 192, 76, .16), transparent 55%),
    radial-gradient(circle at 18% 80%, rgba(57, 255, 136, .07), transparent 38%),
    linear-gradient(135deg, #0A1C3A 0%, #1E3A6E 100%);
  border-bottom: 1px solid rgba(230, 192, 76, .28);
  overflow: hidden;
}

.page-products .prod-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230, 192, 76, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 192, 76, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 80% 50%, #000 5%, transparent 70%);
  pointer-events: none;
}

.page-products .prod-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-products .prod-hero__panel {
  max-width: 720px;
}

.page-products .prod-hero__index {
  display: inline-block;
  color: var(--pd-gold);
  border-left: 2px solid var(--pd-gold);
  padding-left: 12px;
  margin-bottom: 18px;
  letter-spacing: .16em;
}

.page-products .prod-hero__lead {
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 640px;
}

.page-products .prod-hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pd-font-head);
  font-weight: 700;
  font-size: .92rem;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background .25s, color .25s, border-color .25s;
}

.page-products .btn--gold {
  background: linear-gradient(135deg, #E6C04C, #C99022);
  color: #0A1C3A;
}

.page-products .btn--gold:hover {
  background: linear-gradient(135deg, #f0d271, #c99022);
}

.page-products .btn--ghost {
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
}

.page-products .btn--ghost:hover {
  border-color: var(--pd-neon);
  color: var(--pd-neon);
}

.page-products .prod-hero__map {
  position: relative;
  height: 280px;
  display: none;
}

.page-products .prod-hero__emblem {
  position: absolute;
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--pd-line);
  border-radius: 50%;
}

.page-products .prod-hero__emblem:after {
  content: '';
  position: absolute;
  width: 84px;
  height: 84px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(135deg, #E6C04C, #C99022);
  opacity: .85;
}

.page-products .prod-hero__emblem-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--pd-neon);
  border-radius: 50%;
  top: 14px;
  right: 34px;
  box-shadow: 0 0 18px rgba(57, 255, 136, .9);
}

.page-products .prod-hero__emblem-ring {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--pd-gold);
  border-radius: 50%;
  left: 24px;
  bottom: 34px;
  animation: pd-pulse 3s ease-in-out infinite;
}

@keyframes pd-pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.25); opacity: 1; }
}

.page-products .prod-hero__emblem-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--pd-gold);
  border-style: solid;
}

.page-products .prod-hero__emblem-corner--tl {
  top: -1px; left: -1px; border-width: 2px 0 0 2px;
}

.page-products .prod-hero__emblem-corner--tr {
  top: -1px; right: -1px; border-width: 2px 2px 0 0;
}

.page-products .prod-hero__emblem-corner--bl {
  bottom: -1px; left: -1px; border-width: 0 0 2px 2px;
}

.page-products .prod-hero__emblem-corner--br {
  bottom: -1px; right: -1px; border-width: 0 2px 2px 0;
}

.page-products .prod-hero__coord {
  position: absolute;
  color: rgba(255, 255, 255, .5);
  font-size: .68rem;
}

.page-products .prod-hero__coord--1 {
  top: 12px;
  left: 0;
}

.page-products .prod-hero__coord--2 {
  bottom: 12px;
  right: 0;
}

.page-products .prod-hero__grid-line {
  position: absolute;
  pointer-events: none;
}

.page-products .prod-hero__grid-line--v1 {
  left: 12%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(rgba(230, 192, 76, .3), transparent 60%);
}

.page-products .prod-hero__grid-line--v2 {
  right: 18%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(transparent, rgba(230, 192, 76, .24) 70%);
}

.page-products .prod-hero__grid-line--h1 {
  top: 22%; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 192, 76, .2), transparent);
}

.page-products .prod-hero__grid-line--h2 {
  bottom: 16%; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 192, 76, .22), transparent);
}

.page-products .prod-statusbar {
  background: #0e2240;
  border-bottom: 1px solid rgba(230, 192, 76, .2);
}

.page-products .prod-statusbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 18px 0;
}

.page-products .prod-statusbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pd-font-mono);
  font-size: .78rem;
  color: #fff;
}

.page-products .prod-statusbar__label {
  color: rgba(255, 255, 255, .5);
  font-size: .68rem;
}

.page-products .prod-statusbar__item strong {
  font-weight: 600;
  color: var(--pd-neon);
}

.page-products .prod-section {
  padding: 72px 0;
}

.page-products .prod-section--dark {
  background: #0e2240;
  border-top: 1px solid rgba(230, 192, 76, .18);
  border-bottom: 1px solid rgba(230, 192, 76, .18);
}

.page-products .prod-section--light {
  background: var(--pd-light);
  border-top: 1px solid rgba(10, 28, 58, .1);
  border-bottom: 1px solid rgba(10, 28, 58, .1);
}

.page-products .prod-section--deep {
  background: #0A1C3A;
}

.page-products .section-head {
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 4px solid var(--pd-gold);
}

.page-products .section-head__index {
  color: var(--pd-gold-deep);
  margin-bottom: 8px;
}

.page-products .section-head__desc {
  margin-top: 10px;
  max-width: 620px;
}

.page-products .section-head--light h2 {
  color: #fff;
}

.page-products .section-head--light .section-head__desc {
  color: rgba(255, 255, 255, .7);
}

.page-products .prod-sync-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

.page-products .prod-sync-visual {
  border: 1px solid rgba(230, 192, 76, .25);
  background: #102546;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.page-products .prod-sync-visual:before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 5px;
  background: var(--pd-gold);
  opacity: .5;
}

.page-products .prod-sync-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.page-products .prod-sync-node {
  border: 1px solid var(--pd-line);
  padding: 20px 20px;
  background: rgba(230, 192, 76, .04);
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-products .prod-sync-node__icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--pd-gold);
  color: var(--pd-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: rotate(-2deg);
}

.page-products .prod-sync-node__label {
  color: #fff;
  font-size: .8rem;
}

.page-products .prod-sync-node__sub {
  font-family: var(--pd-font-mono);
  font-size: .66rem;
  color: rgba(255, 255, 255, .45);
  display: block;
  letter-spacing: .1em;
}

.page-products .prod-sync-node--hub {
  border-color: var(--pd-neon);
  background: rgba(57, 255, 136, .06);
  justify-content: center;
}

.page-products .prod-sync-node--hub .prod-sync-node__ring {
  width: 18px;
  height: 18px;
  border: 2px solid var(--pd-neon);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(57, 255, 136, .6);
}

.page-products .prod-sync-node--arrow {
  border: 0;
  background: transparent;
  justify-content: center;
  padding: 0;
  gap: 8px;
}

.page-products .prod-sync-node__line {
  width: 60px;
  height: 1px;
  background: var(--pd-line);
  display: inline-block;
}

.page-products .prod-sync-node__head {
  color: var(--pd-gold);
  font-size: .8rem;
}

.page-products .prod-sync-visual__hint {
  margin-top: 28px;
  text-align: center;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .22em;
  font-size: .68rem;
}

.page-products .prod-sync-list {
  display: grid;
  gap: 16px;
}

.page-products .prod-sync-card {
  background: #fff;
  border: 1px solid rgba(10, 28, 58, .08);
  padding: 22px 22px;
  box-shadow: 0 10px 30px rgba(10, 28, 58, .1);
}

.page-products .prod-sync-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.page-products .prod-sync-card__status {
  font-size: .68rem;
  color: var(--pd-gold-deep);
}

.page-products .prod-sync-card h3 {
  margin-bottom: 8px;
}

.page-products .prod-sync-card p {
  color: #3b4a6a;
}

.page-products .prod-sync-figure {
  margin: 40px 0 0;
}

.page-products .prod-sync-figure__img {
  display: block;
  width: 100%;
  height: auto;
}

.page-products .prod-sync-figure__cap {
  margin-top: 10px;
  color: rgba(10, 28, 58, .55);
  text-align: right;
}

.page-products .prod-engine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-products .prod-engine-visual {
  position: relative;
  background: #102546;
}

.page-products .prod-engine-visual__img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(230, 192, 76, .25);
}

.page-products .prod-engine-visual__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--pd-neon);
  background: rgba(10, 28, 58, .85);
  padding: 6px 12px;
  font-size: .68rem;
  letter-spacing: .16em;
}

.page-products .prod-engine-panels {
  display: grid;
  gap: 20px;
}

.page-products .prod-engine-panel {
  border: 1px solid rgba(230, 192, 76, .2);
  background: #10294c;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
}

.page-products .prod-engine-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .55);
}

.page-products .prod-engine-panel__num {
  font-family: var(--pd-font-mono);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--pd-gold);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.page-products .prod-engine-panel__num span {
  font-size: .9rem;
}

.page-products .prod-engine-panel p {
  color: rgba(255, 255, 255, .75);
  margin-top: 14px;
}

.page-products .prod-scorer-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.page-products .prod-scorer-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.page-products .prod-scorer-cat {
  flex: 1 1 calc(33.333% - 10px);
  min-width: 140px;
  border: 1px solid rgba(10, 28, 58, .1);
  padding: 16px;
  background: #f8fafc;
}

.page-products .prod-scorer-cat .index-label {
  color: var(--pd-gold-deep);
  display: block;
  font-size: .7rem;
  margin-bottom: 6px;
}

.page-products .prod-scorer-cat strong {
  font-family: var(--pd-font-head);
  font-size: 1.8rem;
  color: var(--pd-blue);
  display: block;
}

.page-products .prod-scorer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-products .prod-scorer-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(10, 28, 58, .08);
  box-shadow: 0 6px 20px rgba(10, 28, 58, .06);
}

.page-products .prod-scorer-item__mark {
  font-family: var(--pd-font-mono);
  font-size: .85rem;
  color: var(--pd-gold-deep);
  border: 1px solid rgba(201, 144, 34, .35);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.page-products .prod-scorer-item h3 {
  font-size: 1rem;
}

.page-products .prod-scorer-item p {
  color: #3b4a6a;
  font-size: .9rem;
}

.page-products .prod-scorer-visual {
  border: 1px solid rgba(10, 28, 58, .1);
  background: #fff;
  padding: 18px;
}

.page-products .prod-scorer-visual__img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.page-products .prod-scorer-visual__bar {
  border-top: 1px solid rgba(10, 28, 58, .12);
  padding-top: 14px;
}

.page-products .prod-scorer-visual__bar-label {
  color: var(--pd-blue);
  font-size: .68rem;
  margin-bottom: 10px;
  display: block;
}

.page-products .prod-scorer-visual__bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 96px;
}

.page-products .prod-scorer-visual__bars i {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  height: 100%;
  background: rgba(230, 192, 76, .06);
  position: relative;
}

.page-products .prod-scorer-visual__bars i:after {
  content: '';
  display: block;
  width: 100%;
  height: var(--bar-h);
  background: linear-gradient(180deg, #E6C04C, #C99022);
}

.page-products .prod-scorer-visual__bars i b {
  font-family: var(--pd-font-mono);
  font-size: .72rem;
  color: var(--pd-blue);
  font-weight: 500;
  position: absolute;
  bottom: -12px;
}

.page-products .prod-subs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.page-products .prod-subs-tabs {
  background: #fff;
  border: 1px solid rgba(10, 28, 58, .08);
  box-shadow: 0 10px 30px rgba(10, 28, 58, .1);
}

.page-products .prod-subs-tabs__bar {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(10, 28, 58, .1);
  background: #f8fafc;
}

.page-products .prod-subs-tabs__item {
  padding: 15px 20px;
  font-family: var(--pd-font-head);
  font-weight: 800;
  font-size: .88rem;
  color: #3b4a6a;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}

.page-products .prod-subs-tabs__item.is-active {
  color: var(--pd-blue);
  border-bottom-color: var(--pd-gold);
}

.page-products .prod-subs-tabs__body {
  padding: 26px 24px;
}

.page-products .prod-subs-tabs__list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-products .prod-subs-tabs__list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: #243856;
  font-size: .92rem;
}

.page-products .prod-subs-tabs__list li:before {
  content: '◈';
  color: var(--pd-gold);
  font-size: .75rem;
}

.page-products .prod-subs-figure {
  border: 1px solid rgba(10, 28, 58, .1);
  background: #fff;
}

.page-products .prod-subs-figure__img {
  display: block;
  width: 100%;
  height: auto;
}

.page-products .prod-subs-figure__cap {
  display: block;
  padding: 12px 16px;
  color: var(--pd-blue);
  text-align: right;
  font-size: .68rem;
  letter-spacing: .1em;
}

.page-products .prod-scene-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.page-products .prod-scene-card {
  background: #fff;
  border: 1px solid rgba(10, 28, 58, .08);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}

.page-products .prod-scene-card:before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(#E6C04C, #C99022);
}

.page-products .prod-scene-card__num {
  color: var(--pd-gold-deep);
  font-size: .7rem;
  margin-bottom: 14px;
  letter-spacing: .16em;
}

.page-products .prod-scene-figure {
  margin: 0;
}

.page-products .prod-scene-figure__img {
  display: block;
  width: 100%;
  height: auto;
}

.page-products .prod-scene-figure__cap {
  margin-top: 10px;
  color: rgba(10, 28, 58, .55);
  text-align: right;
  font-size: .72rem;
}

.page-products .prod-next-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.page-products .prod-next-card h2 {
  color: #fff;
  margin-bottom: 8px;
}

.page-products .prod-next-card p {
  color: rgba(255, 255, 255, .65);
}

.page-products .prod-next-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.page-products .prod-next-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(230, 192, 76, .25);
  background: #102546;
  color: #fff;
  transition: background .2s, border-color .2s;
}

.page-products .prod-next-link span {
  color: var(--pd-gold);
  font-size: .68rem;
  letter-spacing: .14em;
}

.page-products .prod-next-link strong {
  font-family: var(--pd-font-head);
  font-weight: 800;
  font-size: 1.02rem;
}

.page-products .prod-next-link:hover {
  border-color: var(--pd-neon);
  background: #173052;
}

.page-products .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}

.page-products .reveal.is-revealed {
  opacity: 1;
  transform: none;
}

.page-products .reveal--delay-1 {
  transition-delay: .1s;
}

.page-products .reveal--delay-2 {
  transition-delay: .2s;
}

@media (min-width: 768px) {
  .page-products .prod-sync-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-products .prod-engine-grid {
    grid-template-columns: .85fr 1.15fr;
  }

  .page-products .prod-scorer-layout {
    grid-template-columns: 1.2fr .8fr;
  }

  .page-products .prod-subs-grid {
    grid-template-columns: 1.1fr .9fr;
  }

  .page-products .prod-hero {
    padding: 60px 0 56px;
  }

  .page-products .prod-hero__map {
    display: block;
  }

  .page-products .prod-hero__inner {
    grid-template-columns: 1.4fr .6fr;
    gap: 32px;
  }

  .page-products .prod-sync-flow {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .page-products .prod-sync-node--arrow {
    flex-direction: column;
    padding: 0 8px;
  }

  .page-products .prod-sync-node__line {
    width: 1px;
    height: 50px;
  }

  .page-products .prod-sync-node__head {
    transform: rotate(90deg);
  }

  .page-products .prod-scene-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-products .prod-next-grid {
    grid-template-columns: .8fr 1.2fr;
  }
}

@media (min-width: 1024px) {
  .page-products .prod-section {
    padding: 100px 0;
  }

  .page-products .prod-hero {
    padding: 80px 0;
  }

  .page-products .prod-hero__inner {
    grid-template-columns: 1.3fr .7fr;
  }

  .page-products .prod-engine-panels {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .prod-scorer-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .prod-statusbar__inner {
    flex-wrap: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-products .prod-hero__emblem-ring {
    animation: none;
  }
}

.page-products {
  --bar-h: 1rem;
}
