.page-products {
  --pp-hair: rgba(126, 147, 137, .22);
  --pp-hair-strong: rgba(126, 147, 137, .44);
  --pp-band: clamp(2.75rem, 7vw, 5rem);
  display: block;
  background: var(--c-night);
  color: var(--c-mist);
  overflow-x: clip;
}

/* ---------- 通用区块 ---------- */
.page-products .band {
  position: relative;
  padding: var(--pp-band) 0;
  border-top: var(--edge);
}

.page-products .sec-head {
  margin: 0 0 clamp(1.4rem, 3.6vw, 2.2rem);
}

.page-products .sec-head__index {
  margin: 0 0 .7rem;
  color: var(--c-mute);
}

.page-products .sec-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 4.8vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: .01em;
  color: var(--c-mist);
  max-width: 24ch;
}

.page-products .sec-head__lead {
  margin: .95rem 0 0;
  max-width: 66ch;
  font-family: var(--font-body);
  font-size: .96rem;
  line-height: 1.82;
  color: rgba(235, 245, 236, .72);
}

/* ---------- 图片容器 ---------- */
.page-products .pp-figure {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: var(--edge);
  background: linear-gradient(150deg, var(--c-panel), var(--c-ink));
  box-shadow: var(--shadow-1);
}

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

.page-products .pp-figure__cap {
  padding: .72rem 1rem .82rem;
  font-size: .78rem;
  line-height: 1.62;
  color: var(--c-mute);
  border-top: var(--edge);
  background: rgba(3, 17, 10, .45);
}

/* ---------- 首屏 ---------- */
.page-products .sub-hero {
  position: relative;
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3.2rem);
  background:
    radial-gradient(120% 96% at 10% -14%, rgba(182, 255, 59, .14), transparent 58%),
    radial-gradient(96% 78% at 94% 4%, rgba(63, 201, 255, .13), transparent 62%),
    linear-gradient(180deg, var(--c-ink) 0%, var(--c-night) 66%);
  border-bottom: var(--edge);
  overflow: hidden;
}

.page-products .sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(60deg, rgba(126, 147, 137, .08) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(-60deg, rgba(126, 147, 137, .05) 0 1px, transparent 1px 88px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
}

.page-products .sub-hero__inner {
  position: relative;
  z-index: 1;
}

.page-products .sub-hero .breadcrumbs {
  margin: 0 0 1.3rem;
}

.page-products .sub-hero__eyebrow {
  margin: 0 0 .85rem;
  color: var(--c-mint);
}

.page-products .sub-hero__title {
  margin: 0;
  font-family: var(--font-impact);
  font-weight: 800;
  font-size: clamp(1.9rem, 7vw, 3.45rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--c-mist);
  max-width: 17ch;
}

.page-products .sub-hero__lead {
  margin: 1.15rem 0 0;
  max-width: 62ch;
  font-family: var(--font-body);
  font-size: clamp(.96rem, 2.5vw, 1.06rem);
  line-height: 1.82;
  color: rgba(235, 245, 236, .78);
}

.page-products .sub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.6rem;
}

.page-products .sub-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 2.1rem 0 0;
  padding: 0;
  list-style: none;
  background: var(--pp-hair);
  border: var(--edge);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-products .sub-hero__stats li {
  padding: .85rem 1rem .9rem;
  background: rgba(13, 42, 28, .68);
}

.page-products .sub-hero__stat-num {
  display: block;
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.3rem, 5vw, 1.7rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--c-lime);
}

.page-products .sub-hero__stat-cap {
  display: block;
  margin-top: .32rem;
  font-size: .76rem;
  letter-spacing: .06em;
  color: var(--c-mute);
}

/* ---------- 能力总览 ---------- */
.page-products .cap__figure {
  margin: 0 0 clamp(1.5rem, 4vw, 2.4rem);
}

.page-products .cap__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap, 1.25rem);
}

.page-products .cap__card {
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.page-products .cap__card .panel__title {
  margin: .55rem 0 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-mist);
}

.page-products .cap__card .panel__body {
  margin: .6rem 0 0;
  font-size: .9rem;
  line-height: 1.78;
  color: rgba(235, 245, 236, .74);
}

.page-products .cap__list {
  display: grid;
  gap: .5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.page-products .cap__list li {
  position: relative;
  padding-left: 1.05rem;
  font-size: .86rem;
  line-height: 1.68;
  color: rgba(235, 245, 236, .68);
}

.page-products .cap__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: .38rem;
  height: .38rem;
  border-radius: 50%;
  background: var(--c-mint);
}

.page-products .cap__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2), var(--glow-lime);
}

.page-products .cap__settings {
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
  padding: 1.2rem 1.1rem 1.25rem;
  border-radius: var(--r-lg);
  border: var(--edge);
  background: rgba(13, 42, 28, .55);
}

.page-products .cap__settings-title {
  margin: 0;
  color: var(--c-mute);
}

.page-products .toggle-list {
  display: grid;
  gap: .55rem;
  margin: .95rem 0 0;
  padding: 0;
  list-style: none;
}

.page-products .toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .58rem .8rem .58rem 1rem;
  border-radius: var(--r-pill);
  border: var(--edge);
  background: rgba(6, 23, 15, .62);
  font-size: .88rem;
  color: rgba(235, 245, 236, .82);
}

.page-products .toggle-row__name {
  min-width: 0;
}

.page-products .toggle {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex: 0 0 auto;
  padding: .28rem .72rem .28rem .42rem;
  border-radius: var(--r-pill);
  font-family: var(--font-data);
  font-size: .72rem;
  letter-spacing: .02em;
  white-space: nowrap;
}

.page-products .toggle__dot {
  width: .74rem;
  height: .74rem;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.page-products .toggle--on {
  color: var(--c-lime);
  background: rgba(182, 255, 59, .13);
  border: 1px solid rgba(182, 255, 59, .42);
}

.page-products .toggle--off {
  color: var(--c-mute);
  background: rgba(126, 147, 137, .1);
  border: 1px solid rgba(126, 147, 137, .3);
}

.page-products .cap__settings-note {
  margin: .95rem 0 0;
  font-size: .8rem;
  line-height: 1.7;
  color: var(--c-mute);
}

/* ---------- 赛程日历 ---------- */
.page-products .calendar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 4vw, 2.4rem);
}

.page-products .pp-table-scroll {
  overflow-x: auto;
  border-radius: var(--r-md);
  border: var(--edge);
  background: rgba(13, 42, 28, .5);
  -webkit-overflow-scrolling: touch;
}

.page-products .pp-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: .88rem;
}

.page-products .pp-table caption {
  padding: .85rem 1rem .6rem;
  text-align: left;
  font-size: .76rem;
  letter-spacing: .07em;
  color: var(--c-mute);
}

.page-products .pp-table th,
.page-products .pp-table td {
  padding: .74rem .9rem;
  text-align: left;
  vertical-align: top;
  border-bottom: var(--edge);
  line-height: 1.62;
}

.page-products .pp-table thead th {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .07em;
  color: var(--c-mute);
  border-bottom: 1px solid var(--pp-hair-strong);
  white-space: nowrap;
}

.page-products .pp-table tbody th {
  font-weight: 600;
  color: var(--c-mist);
  white-space: nowrap;
}

.page-products .pp-table tbody td {
  color: rgba(235, 245, 236, .74);
}

.page-products .pp-table tbody tr:last-child th,
.page-products .pp-table tbody tr:last-child td {
  border-bottom: 0;
}

.page-products .pp-table tbody tr:hover {
  background: rgba(182, 255, 59, .05);
}

.page-products .pp-table .num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  color: var(--c-mist);
  white-space: nowrap;
}

.page-products .pp-table--wide {
  min-width: 660px;
}

.page-products .calendar__note {
  margin: .95rem 0 0;
  font-size: .8rem;
  line-height: 1.72;
  color: var(--c-mute);
}

.page-products .calendar__railwrap {
  margin-top: clamp(1.8rem, 4.6vw, 2.6rem);
}

.page-products .calendar__railcap {
  margin: 0 0 .8rem;
  color: var(--c-mute);
}

.page-products .cal__rail {
  display: flex;
  gap: .8rem;
  overflow-x: auto;
  padding: .2rem .2rem .85rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(126, 147, 137, .45) transparent;
  -webkit-overflow-scrolling: touch;
}

.page-products .cal__rail::-webkit-scrollbar {
  height: 6px;
}

.page-products .cal__rail::-webkit-scrollbar-thumb {
  background: rgba(126, 147, 137, .45);
  border-radius: var(--r-pill);
}

.page-products .rnd {
  flex: 0 0 clamp(152px, 44vw, 208px);
  scroll-snap-align: start;
  display: grid;
  gap: .42rem;
  align-content: start;
  padding: .9rem 1rem 1rem;
  border-radius: var(--r-md);
  border: var(--edge);
  background: linear-gradient(160deg, rgba(13, 42, 28, .96), rgba(6, 23, 15, .86));
  box-shadow: var(--shadow-1);
  transition: transform .24s var(--ease), border-color .24s var(--ease);
}

.page-products .rnd:hover,
.page-products .rnd:focus-within {
  transform: translateY(-3px);
  border-color: rgba(182, 255, 59, .5);
}

.page-products .rnd__no {
  margin: 0;
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: .74rem;
  letter-spacing: .05em;
  color: var(--c-blue);
}

.page-products .rnd__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.38;
  color: var(--c-mist);
}

.page-products .rnd__meta {
  margin: 0;
  font-size: .76rem;
  line-height: 1.56;
  color: var(--c-mute);
}

.page-products .rnd .pill {
  justify-self: start;
  margin-top: .2rem;
}

/* ---------- 数据看板 ---------- */
.page-products .board__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 3.6vw, 2rem);
}

.page-products .board__chart {
  padding: 1.25rem 1.1rem 1.1rem;
  border-radius: var(--r-lg);
}

.page-products .board__chart-title {
  margin: 0 0 .9rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-mist);
}

.page-products .chart {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.page-products .chart__axis {
  stroke: rgba(126, 147, 137, .42);
  stroke-width: 1;
}

.page-products .chart__grid {
  stroke: rgba(126, 147, 137, .18);
  stroke-width: 1;
}

.page-products .chart__line {
  fill: none;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.page-products .chart__line--team {
  stroke: var(--c-lime);
  stroke-width: 2.6;
}

.page-products .chart__line--league {
  stroke: var(--c-blue);
  stroke-width: 2;
  stroke-dasharray: 6 6;
}

.page-products .chart__dot {
  fill: var(--c-night);
  stroke: var(--c-lime);
  stroke-width: 2.4;
}

.page-products .chart__label {
  fill: var(--c-mute);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: .04em;
}

.page-products .board__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin: .9rem 0 0;
  font-size: .78rem;
  color: var(--c-mute);
}

.page-products .board__legend-item {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
}

.page-products .board__legend-item::before {
  content: "";
  width: 1.1rem;
  height: 2px;
  border-radius: var(--r-pill);
  background: currentColor;
}

.page-products .board__legend-item--team {
  color: var(--c-lime);
}

.page-products .board__legend-item--league {
  color: var(--c-blue);
}

.page-products .board__media {
  margin: 0;
}

.page-products .board__metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
  margin: clamp(1.4rem, 3.6vw, 2rem) 0 0;
  padding: 0;
  list-style: none;
}

.page-products .metric {
  padding: 1rem 1.05rem 1.05rem;
  border-radius: var(--r-md);
  border: var(--edge);
  background: rgba(13, 42, 28, .7);
  transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
}

.page-products .metric:hover,
.page-products .metric:focus-within {
  transform: translateY(-3px);
  border-color: rgba(182, 255, 59, .45);
  box-shadow: var(--shadow-1);
}

.page-products .metric__name {
  margin: 0;
  font-size: .8rem;
  letter-spacing: .07em;
  color: var(--c-mute);
}

.page-products .metric__value {
  display: flex;
  align-items: baseline;
  gap: .18rem;
  margin: .5rem 0 0;
}

.page-products .metric__value .num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.7rem, 6vw, 2.15rem);
  font-weight: 600;
  line-height: 1;
  color: var(--c-lime);
}

.page-products .metric__unit {
  font-family: var(--font-data);
  font-size: .95rem;
  color: rgba(182, 255, 59, .72);
}

.page-products .metric__delta {
  margin: .55rem 0 0;
  font-size: .78rem;
  color: var(--c-mute);
}

.page-products .metric__up {
  color: var(--c-amber);
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.page-products .metric__spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
  margin: .8rem 0 0;
}

.page-products .metric__spark span {
  flex: 1 1 0;
  height: var(--v, 40%);
  min-height: 3px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--c-mint), rgba(75, 227, 155, .22));
}

.page-products .metric__tip {
  margin: .7rem 0 0;
  font-size: .78rem;
  line-height: 1.68;
  color: var(--c-mute);
}

.page-products .board__tablewrap {
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
}

.page-products .board__tablecap {
  margin: 0 0 .8rem;
  color: var(--c-mute);
}

.page-products .board__note {
  margin: .95rem 0 0;
  font-size: .8rem;
  line-height: 1.72;
  color: var(--c-mute);
}

/* ---------- 青训梯队 ---------- */
.page-products .academy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 4vw, 2.4rem);
}

.page-products .academy__media {
  margin: 0;
}

.page-products .academy__list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .academy__item {
  padding: 1rem 0 0;
  border-top: 1px solid var(--pp-hair);
}

.page-products .academy__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.page-products .academy__item-index {
  margin: 0 0 .4rem;
  color: var(--c-mint);
}

.page-products .academy__item-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-mist);
}

.page-products .academy__item-text {
  margin: .5rem 0 0;
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(235, 245, 236, .72);
}

.page-products .academy__note {
  margin: 1.3rem 0 0;
  padding: .9rem 1rem;
  border-radius: var(--r-md);
  border: var(--edge);
  background: rgba(63, 201, 255, .07);
  font-size: .82rem;
  line-height: 1.74;
  color: rgba(235, 245, 236, .76);
}

/* ---------- 版本迭代 ---------- */
.page-products .ver__stage {
  position: relative;
  padding: clamp(1.2rem, 3.4vw, 2rem);
  border-radius: var(--r-xl);
  isolation: isolate;
}

.page-products .ver__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  opacity: .26;
  pointer-events: none;
  z-index: -1;
}

.page-products .ver {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .ver__item {
  position: relative;
  padding-top: 1rem;
  border-top: 1px dashed var(--pp-hair-strong);
}

.page-products .ver__item::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-lime);
  box-shadow: 0 0 0 4px rgba(182, 255, 59, .16);
}

.page-products .ver__box {
  padding: .9rem 1rem;
  border-radius: var(--r-md);
  border: var(--edge);
  background: rgba(13, 42, 28, .76);
  transition: border-color .24s var(--ease), background .24s var(--ease);
}

.page-products .ver__box[open] {
  border-color: rgba(182, 255, 59, .38);
  background: rgba(13, 42, 28, .94);
}

.page-products .ver__sum {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .6rem;
  cursor: pointer;
  list-style: none;
}

.page-products .ver__sum::-webkit-details-marker {
  display: none;
}

.page-products .ver__sum::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-data);
  font-size: 1.05rem;
  line-height: 1;
  color: var(--c-lime);
}

.page-products .ver__box[open] .ver__sum::after {
  content: "–";
}

.page-products .ver__no {
  padding: .16rem .52rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(182, 255, 59, .32);
  background: rgba(182, 255, 59, .12);
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: .76rem;
  color: var(--c-lime);
}

.page-products .ver__name {
  font-family: var(--font-display);
  font-size: .96rem;
  font-weight: 700;
  color: var(--c-mist);
}

.page-products .ver__panel {
  margin-top: .7rem;
  padding-top: .7rem;
  border-top: 1px solid var(--pp-hair);
}

.page-products .ver__panel p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.76;
  color: rgba(235, 245, 236, .72);
}

/* ---------- 开通路径 ---------- */
.page-products .start__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.page-products .start__step {
  padding: 1.05rem 1.05rem 1.15rem;
  border-radius: var(--r-md);
  border: var(--edge);
  background: linear-gradient(160deg, rgba(13, 42, 28, .78), rgba(6, 23, 15, .72));
  transition: border-color .24s var(--ease), transform .24s var(--ease);
}

.page-products .start__step:hover {
  transform: translateY(-3px);
  border-color: rgba(182, 255, 59, .42);
}

.page-products .start__no {
  margin: 0 0 .55rem;
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-blue);
}

.page-products .start__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.42;
  color: var(--c-mist);
}

.page-products .start__text {
  margin: .5rem 0 0;
  font-size: .86rem;
  line-height: 1.76;
  color: rgba(235, 245, 236, .72);
}

.page-products .start__cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: center;
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
  padding: clamp(1.2rem, 3.4vw, 1.9rem);
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 130% at 0% 0%, rgba(182, 255, 59, .12), transparent 58%),
    linear-gradient(150deg, rgba(13, 42, 28, .95), rgba(6, 23, 15, .9));
}

.page-products .start__cta-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.42;
  color: var(--c-mist);
}

.page-products .start__cta-text p {
  margin: .7rem 0 0;
  font-size: .88rem;
  line-height: 1.78;
  color: rgba(235, 245, 236, .74);
}

.page-products .start__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-products .board__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 720px) {
  .page-products .sub-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 880px) {
  .page-products .cap__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .page-products .cap__card:nth-child(2) {
    margin-top: 1.75rem;
  }

  .page-products .cap__card:nth-child(3) {
    margin-top: 3.5rem;
  }

  .page-products .calendar__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
    align-items: start;
  }

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

  .page-products .board__grid {
    grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .page-products .board__media {
    height: 100%;
  }

  .page-products .board__media img {
    height: 100%;
    object-fit: cover;
  }

  .page-products .ver {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }

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

  .page-products .start__cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .page-products .cap__card,
  .page-products .rnd,
  .page-products .metric,
  .page-products .start__step,
  .page-products .ver__box {
    transition: none;
  }

  .page-products .cap__card:hover,
  .page-products .rnd:hover,
  .page-products .metric:hover,
  .page-products .start__step:hover {
    transform: none;
  }
}

.page-products {
  --v: 1rem;
}
