.page-products {
  --pp-surface: rgba(8, 34, 56, 0.72);
  --pp-surface-2: rgba(14, 58, 92, 0.5);
  --pp-sonar-line: rgba(34, 227, 211, 0.45);
  position: relative;
  overflow-x: clip;
  color: var(--ice);
  background: linear-gradient(172deg, #04121F 0%, #04121F 24%, #082238 58%, #0E3A5C 100%);
  padding-bottom: clamp(3.5rem, 8vw, 7rem);
}

.page-products::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(31, 78, 112, 0.34) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 78, 112, 0.26) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.4) 48%, transparent 74%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.4) 48%, transparent 74%);
}

.page-products > * {
  position: relative;
  z-index: 1;
}

/* ---------- 头部与首屏 ---------- */

.page-products .pp-head {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 7vw, 5rem));
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.page-products .pp-hero {
  display: grid;
  gap: 2rem;
  margin-top: clamp(1.25rem, 3.5vw, 2.25rem);
}

.page-products .pp-hero__copy {
  max-width: 46rem;
}

.page-products .eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sonar);
  margin: 0 0 0.9rem;
}

.page-products h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.05rem, 5.6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
  color: var(--ice);
}

.page-products .lede {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.75;
  color: var(--sonar-soft);
  margin: 0;
}

.page-products .pp-status {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(14, 58, 92, 0.85), rgba(4, 18, 31, 0.72));
  padding: 1.3rem 1.4rem;
  box-shadow: 0 24px 60px -34px rgba(34, 227, 211, 0.5);
}

.page-products .pp-status__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--sonar);
}

.page-products .pp-status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sonar);
  box-shadow: 0 0 0 0 rgba(34, 227, 211, 0.6);
  animation: pp-pulse 3s ease-out infinite;
}

@keyframes pp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 227, 211, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(34, 227, 211, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 227, 211, 0); }
}

.page-products .pp-status__list {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.page-products .pp-status__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px dashed rgba(31, 78, 112, 0.7);
  padding-bottom: 0.55rem;
}

.page-products .pp-status__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-products .pp-status__row dt {
  font-size: 0.875rem;
  color: var(--steel);
}

.page-products .pp-status__row dd {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ice);
}

/* ---------- 工作台骨架 ---------- */

.page-products .workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.page-products .module-rail {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 0.9rem 0;
}

.page-products .module-rail__title {
  margin: 0 0 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.page-products .module-rail__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0.2rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.page-products .module-rail__link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.875rem;
  color: var(--sonar-soft);
  padding: 0.45rem 0.85rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: rgba(14, 58, 92, 0.6);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.page-products .module-rail__link:hover,
.page-products .module-rail__link:focus-visible {
  color: var(--abyss-900);
  background: var(--sonar);
  border-color: var(--sonar);
}

.page-products .module-rail__num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--pulse);
}

.page-products .module-rail__link:hover .module-rail__num,
.page-products .module-rail__link:focus-visible .module-rail__num {
  color: var(--abyss-900);
}

.page-products .workbench__stage {
  min-width: 0;
}

/* ---------- 章节通用 ---------- */

.page-products .pp-section {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.page-products .pp-section + .pp-section,
.page-products .rule-slant + .pp-section {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.page-products .pp-section__head {
  max-width: 52rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.4rem);
}

.page-products .section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  line-height: 1.16;
  letter-spacing: -0.015em;
  margin: 0 0 0.85rem;
  color: var(--ice);
}

.page-products .rule-slant {
  border: 0;
  height: 1px;
  margin: clamp(2.5rem, 6vw, 4.5rem) 0 0;
  background: linear-gradient(90deg, transparent, var(--blueprint) 22%, var(--sonar) 50%, var(--blueprint) 78%, transparent);
  transform: rotate(-1.1deg);
  opacity: 0.55;
}

/* ---------- 图片框 ---------- */

.page-products .pp-figure {
  margin: 0 0 clamp(1.5rem, 4vw, 2.2rem);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pp-surface-2);
}

.page-products .pp-figure .media-frame__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pp-figure .media-frame__caption {
  padding: 0.75rem 1.1rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--steel);
  border-top: 1px solid rgba(31, 78, 112, 0.55);
}

/* ---------- 模块卡 ---------- */

.page-products .pp-modules {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.page-products .pp-module {
  position: relative;
  padding: 1.35rem 1.2rem 1.4rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--pp-surface);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-products .pp-module::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sonar), transparent);
  opacity: 0.5;
}

.page-products .pp-module:hover {
  transform: translateY(-4px);
  border-color: var(--pp-sonar-line);
}

.page-products .pp-module__idx {
  margin: 0 0 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--sonar);
}

.page-products .pp-module__title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 1.1875rem;
  margin: 0 0 0.6rem;
  color: var(--ice);
}

.page-products .pp-module__gain {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--sonar-soft);
}

.page-products .pp-module__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.page-products .pp-module__facts li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--steel);
  padding-left: 0.9rem;
  position: relative;
}

.page-products .pp-module__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pulse);
}

/* ---------- 首发轮换 ---------- */

.page-products .pp-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.page-products .pp-split__text {
  min-width: 0;
}

.page-products .pp-steps {
  list-style: none;
  counter-reset: ppstep;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.page-products .pp-steps li {
  position: relative;
  padding-left: 3.1rem;
}

.page-products .pp-steps li::before {
  counter-increment: ppstep;
  content: counter(ppstep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--pulse);
  border: 1px solid rgba(255, 122, 47, 0.5);
  border-radius: 50%;
}

.page-products .pp-steps li::after {
  content: "";
  position: absolute;
  left: 1.06rem;
  top: 2.4rem;
  bottom: -1.25rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 122, 47, 0.4), transparent);
}

.page-products .pp-steps li:last-child::after {
  display: none;
}

.page-products .pp-steps__title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 1.0625rem;
  margin: 0 0 0.35rem;
  color: var(--ice);
}

.page-products .pp-steps li p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--steel);
}

.page-products .pp-fields {
  margin-top: 1.75rem;
  padding: 1.1rem 1.2rem;
  border-left: 2px solid var(--sonar);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(14, 58, 92, 0.45);
}

.page-products .pp-fields__label {
  margin: 0 0 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--sonar-soft);
}

.page-products .pp-fields__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.page-products .pp-fields__list li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ice);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(31, 78, 112, 0.9);
  border-radius: var(--radius-pill);
  background: rgba(4, 18, 31, 0.6);
}

.page-products .pp-split__figure {
  margin-bottom: 0;
}

/* ---------- 移动端 ---------- */

.page-products .pp-mobile {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.page-products .pp-mobile__sub {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0 0 0.6rem;
  color: var(--ice);
}

.page-products .pp-mobile__copy > p {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--steel);
}

.page-products .pp-metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.page-products .pp-metrics__item {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: linear-gradient(120deg, rgba(14, 58, 92, 0.75), rgba(4, 18, 31, 0.4));
}

.page-products .pp-metrics__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ice);
}

.page-products .pp-metrics__note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--sonar-soft);
}

.page-products .pp-mobile__figure {
  margin-bottom: 0;
  max-width: 26rem;
  justify-self: start;
}

/* ---------- 榜单 ---------- */

.page-products .pp-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.page-products .pp-board__figure {
  margin-bottom: 0;
}

.page-products .pp-board__panel {
  padding: 1.2rem 1.1rem 1.3rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(14, 58, 92, 0.9), rgba(4, 18, 31, 0.75));
}

.page-products .pp-board__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.page-products .pp-board__title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 1.0625rem;
  margin: 0;
  color: var(--ice);
}

.page-products .pp-table-wrap {
  overflow-x: auto;
}

.page-products .pp-board__table {
  width: 100%;
  min-width: 34rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.page-products .pp-board__table th {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: left;
  color: var(--steel);
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid var(--line-strong);
}

.page-products .pp-board__table td {
  padding: 0.65rem 0.6rem;
  border-bottom: 1px solid rgba(31, 78, 112, 0.45);
  color: var(--ice);
}

.page-products .pp-board__table tbody tr:nth-child(even) {
  background: rgba(14, 58, 92, 0.45);
}

.page-products .pp-board__table tbody tr:hover {
  background: rgba(34, 227, 211, 0.09);
}

.page-products .pp-board__table td.is-num {
  position: relative;
  font-family: var(--font-mono);
  color: var(--pulse);
  font-weight: 500;
}

.page-products .pp-peek {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 0.2rem);
  transform: translate(-50%, 6px);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--abyss-900);
  background: var(--sonar-soft);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-products .pp-board__table tbody tr:hover .pp-peek {
  opacity: 1;
  transform: translate(-50%, 0);
}

.page-products .pp-board__note {
  margin: 0.9rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--steel);
}

/* ---------- 组合筛选 ---------- */

.page-products .pp-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.3rem 1.1rem 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(4, 18, 31, 0.55);
}

.page-products .pp-filter__diagram {
  order: -1;
}

.page-products .filter-diagram {
  display: block;
  width: 100%;
  max-width: 40rem;
  height: auto;
}

.page-products .pp-filter__groups {
  display: grid;
  gap: 1.1rem;
  min-width: 0;
}

.page-products .pp-filter-group__label {
  margin: 0 0 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.page-products .pp-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.page-products .pp-chips .chip {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--sonar-soft);
  padding: 0.32rem 0.85rem;
  border: 1px solid rgba(31, 78, 112, 0.9);
  border-radius: var(--radius-pill);
  background: rgba(14, 58, 92, 0.55);
}

.page-products .pp-chips .chip--on {
  color: var(--abyss-900);
  background: var(--sonar);
  border-color: var(--sonar);
  font-weight: 500;
}

.page-products .pp-result {
  margin-top: 1.5rem;
  padding: 1.2rem 1.1rem 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 122, 47, 0.35);
  background: linear-gradient(140deg, rgba(255, 122, 47, 0.14), rgba(4, 18, 31, 0.6));
}

.page-products .pp-result__head {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--pulse);
}

.page-products .pp-result__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1rem;
}

.page-products .stat {
  display: grid;
  gap: 0.15rem;
}

.page-products .stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  line-height: 1.1;
  color: var(--ice);
  letter-spacing: -0.02em;
}

.page-products .stat__unit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--pulse);
}

.page-products .stat__label {
  font-size: 0.8125rem;
  color: var(--steel);
}

.page-products .pp-result__note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--sonar-soft);
}

/* ---------- 接入场景 ---------- */

.page-products .pp-scenes {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 2.2rem);
}

.page-products .pp-scene {
  padding: 1.15rem 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(14, 58, 92, 0.75), rgba(4, 18, 31, 0.45));
  border-top: 2px solid var(--sonar);
}

.page-products .pp-scene__idx {
  margin: 0 0 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--pulse);
}

.page-products .pp-scene__title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
  color: var(--ice);
}

.page-products .pp-scene p:last-child {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--steel);
}

.page-products .pp-access-note {
  margin-top: 1.5rem;
  padding: 1.2rem 1.2rem 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(34, 227, 211, 0.45);
  background: rgba(8, 34, 56, 0.6);
}

.page-products .pp-access-note__title {
  margin: 0 0 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: var(--sonar);
}

.page-products .pp-access-note__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.page-products .pp-access-note__list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ice);
}

.page-products .pp-access-note__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.8rem;
  height: 2px;
  background: var(--pulse);
}

/* ---------- 服务与支持 ---------- */

.page-products .pp-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
}

.page-products .pp-support__flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.page-products .pp-support__flow li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(14, 58, 92, 0.5);
  border-left: 2px solid var(--sonar);
}

.page-products .pp-support__num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--sonar);
  letter-spacing: 0.08em;
}

.page-products .pp-support__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ice);
}

.page-products .pp-faq__title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0 0 1rem;
  color: var(--ice);
}

.page-products .pp-faq__list {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.page-products .pp-faq__item {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(31, 78, 112, 0.6);
}

.page-products .pp-faq__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-products .pp-faq__item dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--sonar-soft);
  margin-bottom: 0.4rem;
}

.page-products .pp-faq__item dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--steel);
}

.page-products .pp-cta {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: 1.5rem 1.3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(130deg, rgba(34, 227, 211, 0.16), rgba(255, 122, 47, 0.12));
  border: 1px solid rgba(34, 227, 211, 0.35);
  display: grid;
  gap: 1.1rem;
}

.page-products .pp-cta__text {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: var(--ice);
}

.page-products .pp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- 响应式 ---------- */

@media (min-width: 640px) {
  .page-products .pp-modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-products .pp-scenes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-products .pp-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .page-products .pp-hero {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: 3rem;
    align-items: start;
  }

  .page-products .pp-split {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: 2.5rem;
  }

  .page-products .pp-mobile {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: 2.5rem;
    align-items: start;
  }

  .page-products .pp-mobile__figure {
    justify-self: end;
  }

  .page-products .pp-board {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 2rem;
    align-items: start;
  }

  .page-products .pp-filter {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 2rem;
    align-items: center;
    padding: 1.75rem 1.6rem;
  }

  .page-products .pp-filter__diagram {
    order: 0;
  }

  .page-products .pp-support {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1000px) {
  .page-products .workbench {
    grid-template-columns: 13.5rem minmax(0, 1fr);
    gap: 3rem;
  }

  .page-products .module-rail {
    position: sticky;
    top: calc(var(--header-h) + 1.75rem);
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid var(--line-soft);
    padding: 0.25rem 0 0.25rem 1.1rem;
  }

  .page-products .module-rail__list {
    flex-direction: column;
    overflow: visible;
    gap: 0.3rem;
  }

  .page-products .module-rail__link {
    width: 100%;
    justify-content: flex-start;
    background: transparent;
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.7rem;
  }

  .page-products .pp-modules {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-products .pp-scenes {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .pp-status__dot {
    animation: none;
  }

  .page-products .pp-module,
  .page-products .pp-peek {
    transition: none;
  }
}
<<<END>>>
