/* ================= 产品与档位（/platform/）页面专属样式 ================= */

.page-products {
  --ph-gold-deep: #9C6B1C;
  display: block;
  background: var(--ink);
  color: var(--silver);
  overflow-x: clip;
}

.page-products a {
  color: var(--moon);
}

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

/* ---------- 首屏 ---------- */

.page-products .ph-hero {
  position: relative;
  padding: clamp(1.25rem, 4vw, 2rem) 0 clamp(2.25rem, 6vw, 4.5rem);
  background:
    radial-gradient(112% 72% at 82% 0%, rgba(168, 198, 232, .17), transparent 62%),
    linear-gradient(180deg, var(--ink) 0%, var(--night) 100%);
  border-bottom: 1px solid var(--line);
}

.page-products .ph-hero .breadcrumbs {
  margin-bottom: clamp(1rem, 3vw, 1.75rem);
}

.page-products .ph-rail {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 3px;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.page-products .ph-rail span {
  position: relative;
  height: 28px;
  border-left: 1px solid var(--line-strong);
}

.page-products .ph-rail span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.page-products .ph-rail span:nth-child(9) {
  border-left: 2px solid var(--gold);
}

.page-products .ph-rail span:nth-child(9)::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.page-products .ph-hero__grid {
  display: grid;
  gap: clamp(1.75rem, 5vw, 3rem);
  align-items: end;
}

.page-products .ph-eyebrow {
  margin: 0 0 .85rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--moon);
}

.page-products .ph-hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 800;
  font-size: clamp(2rem, 6.2vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--silver);
}

.page-products .ph-lede {
  max-width: 46ch;
  margin: 0 0 1.6rem;
  font-size: clamp(.95rem, 1.6vw, 1.05rem);
  line-height: 1.8;
  color: rgba(230, 237, 246, .82);
}

.page-products .ph-acts {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.page-products .ph-hero__side {
  display: grid;
  gap: .85rem;
  padding-left: clamp(0rem, 3vw, 1.75rem);
  border-left: 1px solid var(--line);
}

.page-products .ph-fact {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num label"
    "num desc";
  column-gap: .9rem;
  align-items: baseline;
}

.page-products .ph-fact__num {
  grid-area: num;
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  letter-spacing: .06em;
  color: var(--gold);
  line-height: 1;
}

.page-products .ph-fact__label {
  grid-area: label;
  font-size: .95rem;
  font-weight: 600;
  color: var(--silver);
}

.page-products .ph-fact__desc {
  grid-area: desc;
  margin-top: .25rem;
  font-size: .8rem;
  line-height: 1.6;
  color: var(--mist);
}

/* ---------- 通用区块骨架 ---------- */

.page-products .ph-block {
  padding: clamp(2.5rem, 7vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.page-products .ph-block.ph-night {
  background: var(--night);
}

.page-products .ph-block.ph-paper {
  background: var(--paper);
  color: var(--brown);
  border-bottom-color: var(--line-paper);
}

.page-products .ph-block.ph-paper a {
  color: var(--ph-gold-deep);
}

.page-products .ph-block.ph-paper a:hover {
  color: var(--brown);
}

.page-products .ph-block.ph-paper .section__num {
  color: var(--ph-gold-deep);
}

.page-products .ph-block.ph-paper .section__title {
  color: var(--brown);
}

.page-products .ph-block.ph-paper .section__note {
  color: rgba(36, 28, 20, .72);
}

.page-products .section__head {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.page-products .section__note {
  max-width: 62ch;
}

/* ---------- 图片容器 ---------- */

.page-products .figure {
  margin: clamp(1.5rem, 4vw, 2.25rem) 0;
}

.page-products .figure__frame {
  overflow: hidden;
  border-radius: var(--radius-l);
  border: 1px solid var(--line-strong);
  background: var(--ink);
}

.page-products .ph-paper .figure__frame {
  border-color: var(--line-paper);
  background: rgba(36, 28, 20, .06);
}

.page-products .figure__frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-products .ph-figure--square .figure__frame img {
  aspect-ratio: 1 / 1;
}

.page-products .figure__caption {
  margin-top: .7rem;
  font-size: .82rem;
  line-height: 1.65;
  color: var(--mist);
}

.page-products .ph-paper .figure__caption {
  color: rgba(36, 28, 20, .62);
}

/* ---------- 01 系列总览 ---------- */

.page-products .ph-series {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(.9rem, 2.5vw, 1.25rem);
}

.page-products .ph-series__card {
  position: relative;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(168, 198, 232, .08), rgba(16, 30, 66, .5));
}

.page-products .ph-series__code {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  line-height: .9;
  letter-spacing: .1em;
  color: var(--moon);
}

.page-products .ph-series__name {
  margin: .35rem 0 .2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--silver);
}

.page-products .ph-series__tiers {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: .95rem;
  letter-spacing: .14em;
  color: var(--gold);
}

.page-products .ph-series__spec {
  margin: 0;
  display: grid;
  gap: .5rem;
  font-size: .86rem;
}

.page-products .ph-series__spec dt {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--mist);
}

.page-products .ph-series__spec dd {
  margin: 0 0 .6rem;
  line-height: 1.65;
  color: rgba(230, 237, 246, .84);
}

/* ---------- 02 档位对照表 ---------- */

.page-products .ph-tiers-wrap {
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.page-products .ph-tiers-wrap .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.page-products .ph-tablewrap {
  overflow-x: auto;
  border: 1px solid var(--line-paper);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, .5);
  -webkit-overflow-scrolling: touch;
}

.page-products .ph-tiers {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: .88rem;
}

.page-products .ph-tiers caption {
  text-align: left;
}

.page-products .ph-tiers th,
.page-products .ph-tiers td {
  padding: .7rem .75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-paper);
  line-height: 1.55;
  color: var(--brown);
}

.page-products .ph-tiers thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .12em;
  background: var(--brown);
  color: var(--paper);
  border-bottom: none;
  white-space: nowrap;
}

.page-products .ph-tiers tbody tr:nth-child(even) {
  background: rgba(36, 28, 20, .045);
}

.page-products .ph-tiers tbody tr:hover {
  background: rgba(168, 198, 232, .26);
}

.page-products .ph-tiers tbody tr[hidden] {
  display: none;
}

.page-products .ph-tier-code {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: .14em;
  color: var(--ph-gold-deep);
  white-space: nowrap;
}

.page-products .ph-mono {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  white-space: nowrap;
}

/* ---------- 03 序列号 ---------- */

.page-products .ph-serial-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 5vw, 3rem);
}

.page-products .serial {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 5px;
  margin-bottom: 1.5rem;
}

.page-products .ph-serial-main .serial__digit {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1.25;
  border-radius: var(--radius-s);
  border: 1px solid var(--line-strong);
  background: rgba(168, 198, 232, .07);
  font-family: var(--font-mono);
  font-size: clamp(.9rem, 3.4vw, 1.35rem);
  letter-spacing: .08em;
  color: var(--silver);
}

.page-products .ph-serial-main .serial__digit--key {
  border-color: var(--gold);
  background: rgba(217, 164, 65, .18);
  color: var(--gold);
  box-shadow: 0 0 0 1px rgba(217, 164, 65, .45) inset;
}

.page-products .ph-serial-legend {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .7rem;
  font-size: .87rem;
  line-height: 1.7;
  color: rgba(230, 237, 246, .84);
}

.page-products .ph-serial-legend li {
  padding-left: 1rem;
  border-left: 2px solid var(--line-strong);
}

.page-products .ph-serial-legend li:has(.ph-seg--key) {
  border-left-color: var(--gold);
}

.page-products .ph-seg {
  display: block;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .14em;
  color: var(--moon);
}

.page-products .ph-seg--key {
  color: var(--gold);
}

.page-products .ph-serial-note {
  padding: clamp(1.25rem, 3.5vw, 1.85rem);
  border-radius: var(--radius-l);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(168, 198, 232, .09), rgba(11, 22, 51, .4));
}

.page-products .ph-serial-note__title {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  color: var(--silver);
}

.page-products .ph-serial-note__desc {
  margin: 0 0 1.1rem;
  font-size: .84rem;
  line-height: 1.65;
  color: var(--mist);
}

.page-products .ph-symbol-map {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
}

.page-products .ph-symbol-map li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  padding: .4rem .3rem;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .06em;
}

.page-products .ph-symbol {
  color: var(--gold);
}

.page-products .ph-arrow {
  color: var(--mist);
  font-size: .7rem;
}

.page-products .ph-tier {
  color: var(--moon);
}

.page-products .ph-serial-note__tip {
  margin: 0;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  line-height: 1.65;
  color: var(--mist);
}

/* ---------- 04 两端读取 ---------- */

.page-products .ph-readout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.page-products .ph-readout__figure {
  margin: 0;
}

.page-products .ph-readout__panel {
  display: grid;
  gap: 1rem;
}

.page-products .ph-readout__card {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  background: rgba(168, 198, 232, .06);
}

.page-products .ph-readout__card--alt {
  border-color: rgba(217, 164, 65, .35);
  background: rgba(217, 164, 65, .07);
}

.page-products .ph-readout__tag {
  margin: 0 0 .4rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--mist);
}

.page-products .ph-readout__card h3 {
  margin: 0 0 .5rem;
  font-size: 1.15rem;
  color: var(--silver);
}

.page-products .ph-readout__card p {
  margin: 0 0 .9rem;
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(230, 237, 246, .82);
}

.page-products .ph-readout__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
  font-size: .84rem;
  line-height: 1.6;
  color: rgba(230, 237, 246, .78);
}

.page-products .ph-readout__list li {
  position: relative;
  padding-left: 1.05rem;
}

.page-products .ph-readout__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- 05 供货流程 ---------- */

.page-products .ph-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.page-products .ph-flow__track {
  padding: clamp(1.15rem, 3vw, 1.75rem);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  background: rgba(168, 198, 232, .05);
}

.page-products .ph-flow__track--auth {
  border-color: rgba(217, 164, 65, .3);
  background: rgba(217, 164, 65, .06);
}

.page-products .ph-flow__prefix {
  margin: 0 0 .3rem;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  letter-spacing: .2em;
  color: var(--gold);
}

.page-products .ph-flow__head h3 {
  margin: 0 0 .35rem;
  font-size: 1.15rem;
  color: var(--silver);
}

.page-products .ph-flow__sub {
  margin: 0 0 1.25rem;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--mist);
}

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

.page-products .ph-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}

.page-products .ph-steps li:first-child {
  padding-top: 0;
  border-top: none;
}

.page-products .ph-steps__no {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--moon);
}

.page-products .ph-steps strong {
  display: block;
  font-size: .94rem;
  color: var(--silver);
}

.page-products .ph-steps p {
  margin: .2rem 0 0;
  font-size: .82rem;
  line-height: 1.65;
  color: rgba(230, 237, 246, .74);
}

.page-products .ph-flow__shared {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
  border-top: 1px solid var(--line);
}

.page-products .ph-flow__shared-title {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  color: var(--silver);
}

.page-products .ph-flow__shared-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-products .ph-shared-item {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  background: rgba(11, 22, 51, .45);
}

.page-products .ph-shared-item__no {
  display: inline-block;
  margin-bottom: .5rem;
  padding: .1rem .5rem;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
}

.page-products .ph-shared-item strong {
  display: block;
  margin-bottom: .35rem;
  font-size: .95rem;
  color: var(--silver);
}

.page-products .ph-shared-item p {
  margin: 0;
  font-size: .83rem;
  line-height: 1.7;
  color: rgba(230, 237, 246, .74);
}

/* ---------- 06 验收清单 ---------- */

.page-products .ph-accgroup {
  display: grid;
  gap: .7rem;
}

.page-products .ph-acc {
  border: 1px solid var(--line-paper);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, .55);
  overflow: hidden;
}

.page-products .ph-acc[open] {
  border-color: rgba(156, 107, 28, .4);
  box-shadow: 0 10px 26px -20px rgba(36, 28, 20, .5);
}

.page-products .ph-acc summary {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .95rem 1.1rem;
  cursor: pointer;
  list-style: none;
  color: var(--brown);
}

.page-products .ph-acc summary::-webkit-details-marker {
  display: none;
}

.page-products .ph-acc summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--ph-gold-deep);
}

.page-products .ph-acc[open] summary::after {
  content: "−";
}

.page-products .ph-acc__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: var(--radius-pill);
  background: var(--brown);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: .78rem;
}

.page-products .ph-acc__name {
  font-weight: 700;
  font-size: .98rem;
}

.page-products .ph-acc__count {
  margin-left: .2rem;
  padding: .15rem .55rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-paper);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  color: rgba(36, 28, 20, .65);
}

.page-products .ph-check {
  margin: 0;
  padding: .2rem 1.1rem 1.15rem;
  list-style: none;
  counter-reset: ph-check;
  display: grid;
  gap: .5rem;
}

.page-products .ph-check li {
  counter-increment: ph-check;
  display: grid;
  grid-template-columns: 1.9rem 1fr;
  gap: .55rem;
  font-size: .86rem;
  line-height: 1.65;
  color: rgba(36, 28, 20, .84);
}

.page-products .ph-check li::before {
  content: counter(ph-check, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .08em;
  color: var(--ph-gold-deep);
}

.page-products .ph-accept-foot {
  margin: 1.6rem 0 0;
  font-size: .86rem;
  line-height: 1.7;
  color: rgba(36, 28, 20, .74);
}

/* ---------- 07 选型建议 ---------- */

.page-products .ph-selector {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.page-products .ph-selector__step {
  position: relative;
  padding: clamp(1.05rem, 3vw, 1.55rem) clamp(1.05rem, 3vw, 1.55rem) clamp(1.05rem, 3vw, 1.55rem) clamp(1.6rem, 4vw, 2.4rem);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  background: rgba(168, 198, 232, .05);
}

.page-products .ph-selector__step::before {
  content: "";
  position: absolute;
  left: clamp(.6rem, 2vw, .95rem);
  top: 1.4rem;
  bottom: 1.4rem;
  width: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--gold), rgba(168, 198, 232, .25));
}

.page-products .ph-selector__no {
  display: block;
  margin-bottom: .4rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--gold);
}

.page-products .ph-selector__step h3 {
  margin: 0 0 .5rem;
  font-size: 1.1rem;
  color: var(--silver);
}

.page-products .ph-selector__step p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(230, 237, 246, .8);
}

.page-products .ph-selector__result {
  display: grid;
  gap: .85rem;
  padding: clamp(1.2rem, 3.5vw, 1.85rem);
  border-radius: var(--radius-l);
  border: 1px solid rgba(217, 164, 65, .35);
  background: linear-gradient(140deg, rgba(217, 164, 65, .12), rgba(168, 198, 232, .05));
}

.page-products .ph-selector__result-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--gold);
}

.page-products .ph-selector__result-text {
  margin: 0;
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(230, 237, 246, .84);
}

.page-products .ph-selector__result .btn {
  justify-self: start;
}

/* ---------- 08 场景与收束 ---------- */

.page-products .ph-scenes {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1.35rem;
}

.page-products .ph-scenes::before {
  content: "";
  position: absolute;
  left: 0;
  top: .4rem;
  bottom: .4rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(168, 198, 232, .3), transparent);
}

.page-products .ph-scene {
  position: relative;
  padding: clamp(1.05rem, 3vw, 1.5rem);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  background: rgba(168, 198, 232, .045);
}

.page-products .ph-scene::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 1.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.page-products .ph-scene__idx {
  margin: 0 0 .35rem;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .16em;
  color: var(--mist);
}

.page-products .ph-scene h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  color: var(--silver);
}

.page-products .ph-scene__tier {
  margin: 0 0 .65rem;
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .12em;
  color: var(--gold);
}

.page-products .ph-scene p:last-child {
  margin: 0;
  font-size: .86rem;
  line-height: 1.72;
  color: rgba(230, 237, 246, .78);
}

.page-products .ph-outro {
  display: grid;
  gap: 1.25rem;
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
  border-top: 1px solid var(--line);
}

.page-products .ph-outro__title {
  margin: 0 0 .6rem;
  font-family: var(--font-display);
  font-stretch: condensed;
  font-size: clamp(1.4rem, 3.6vw, 2.1rem);
  line-height: 1.2;
  color: var(--silver);
}

.page-products .ph-outro__text {
  margin: 0;
  max-width: 52ch;
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(230, 237, 246, .78);
}

.page-products .ph-outro__acts {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

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

@media (min-width: 600px) {
  .page-products .serial {
    grid-template-columns: repeat(16, minmax(0, 1fr));
  }

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

  .page-products .ph-flow__shared-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-products .ph-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-products .ph-scenes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 1.5rem;
  }

  .page-products .ph-outro {
    grid-template-columns: minmax(0, 1.4fr) auto;
    align-items: end;
  }

  .page-products .ph-outro__acts {
    justify-content: flex-end;
  }
}

@media (min-width: 900px) {
  .page-products .ph-hero__grid {
    grid-template-columns: minmax(0, 1.32fr) minmax(0, .68fr);
  }

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

  .page-products .ph-serial-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, .55fr);
    align-items: start;
  }

  .page-products .ph-readout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: start;
  }

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

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

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

  .page-products .ph-selector__result .btn {
    justify-self: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products *,
  .page-products *::before,
  .page-products *::after {
    transition: none !important;
    animation: none !important;
  }
}
