.page-products {
  --pp-line: rgba(51, 65, 92, 0.72);
  --pp-line-soft: rgba(51, 65, 92, 0.44);
  --pp-gap: clamp(20px, 2.6vw, 40px);
  --pp-pad: clamp(18px, 4vw, 40px);
  background: var(--ink);
  color: var(--text-soft);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
}

.page-products .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-products .mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" 1;
  letter-spacing: 0.02em;
}

/* ---------- 面包屑 ---------- */
.page-products .pp-crumbs {
  padding: 18px 0 0;
  background: var(--black);
}

.page-products .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mist);
}

.page-products .breadcrumbs__link {
  color: var(--mist);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-products .breadcrumbs__link:hover,
.page-products .breadcrumbs__link:focus-visible {
  color: var(--copper-lit);
  border-bottom-color: var(--copper-lit);
}

.page-products .breadcrumbs__sep {
  color: var(--steel);
}

.page-products .breadcrumbs__item {
  color: var(--text-soft);
}

/* ---------- 首屏 ---------- */
.page-products .prod-hero {
  position: relative;
  padding: clamp(30px, 6vw, 76px) 0 clamp(40px, 6vw, 84px);
  background:
    radial-gradient(120% 100% at 88% 0%, rgba(127, 209, 232, 0.1), transparent 58%),
    linear-gradient(180deg, var(--black) 0%, var(--ink) 62%);
  border-bottom: 1px solid var(--steel);
}

.page-products .prod-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: end;
}

.page-products .prod-hero__lead .eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 6px;
}

.page-products .prod-hero__title {
  display: grid;
  gap: 6px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-products .prod-hero__title-a {
  font-size: clamp(34px, 7.6vw, 78px);
}

.page-products .prod-hero__title-b {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(20px, 3.6vw, 34px);
  color: var(--copper-lit);
  letter-spacing: 0.01em;
}

.page-products .prod-hero__title-c {
  font-size: clamp(20px, 3.6vw, 34px);
  font-weight: 300;
  color: var(--ice);
}

.page-products .prod-hero__lede {
  max-width: 36em;
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-soft);
}

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

/* ---------- 价格刻度 ---------- */
.page-products .price-scale {
  border: 1px solid var(--copper);
  background: linear-gradient(180deg, rgba(27, 42, 74, 0.92), rgba(14, 23, 48, 0.95));
  border-radius: var(--radius);
  padding: 20px 18px 20px;
  box-shadow: inset 0 1px 0 rgba(184, 135, 58, 0.3), 0 22px 48px -34px rgba(0, 0, 0, 0.95);
}

.page-products .price-scale__caption {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.page-products .price-scale__track {
  position: relative;
  height: 18px;
  margin: 16px 0 10px;
  border: 1px solid var(--steel);
  background: rgba(8, 11, 18, 0.65);
}

.page-products .price-scale__track::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--steel) 1px, transparent 1px);
  background-size: 25% 100%;
  opacity: 0.55;
  pointer-events: none;
}

.page-products .price-scale__band {
  position: absolute;
  top: 2px;
  bottom: 2px;
  border-radius: 1px;
}

.page-products .price-scale__band--launch {
  left: 0%;
  width: 20%;
  background: var(--moss);
}

.page-products .price-scale__band--standard {
  left: 36.67%;
  width: 23.33%;
  background: var(--ice);
}

.page-products .price-scale__band--custom {
  left: 80%;
  width: 20%;
  background: var(--brick);
}

.page-products .price-scale__ticks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--mist);
  letter-spacing: 0.04em;
}

.page-products .price-scale__legend {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-products .price-scale__legend-item {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 2px;
  align-items: baseline;
  font-size: 14px;
}

.page-products .price-scale__swatch {
  width: 10px;
  height: 10px;
  align-self: center;
}

.page-products .price-scale__legend-item--launch .price-scale__swatch {
  background: var(--moss);
}

.page-products .price-scale__legend-item--standard .price-scale__swatch {
  background: var(--ice);
}

.page-products .price-scale__legend-item--custom .price-scale__swatch {
  background: var(--brick);
}

.page-products .price-scale__legend-name {
  color: var(--paper);
}

.page-products .price-scale__legend-val {
  grid-column: 2;
  font-size: 12px;
  color: var(--mist);
}

/* ---------- 区块骨架 ---------- */
.page-products .pp-section {
  padding: clamp(48px, 7vw, 96px) 0;
}

.page-products .pp-section + .pp-section {
  border-top: 1px solid var(--pp-line-soft);
}

.page-products .pp-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  align-items: baseline;
  margin-bottom: clamp(24px, 4vw, 46px);
}

.page-products .pp-head__idx {
  margin: 0;
  padding-top: 0.75em;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--copper);
}

.page-products .pp-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
  color: var(--paper);
}

.page-products .pp-head__note {
  grid-column: 2;
  margin: 12px 0 0;
  max-width: 44em;
  font-size: 15px;
  color: var(--mist);
}

/* ---------- 参数表 ---------- */
.page-products .tier-compare {
  margin-top: 8px;
}

.page-products .tswitch {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.page-products .tier-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 14px 0 16px;
  border-top: 1px solid var(--pp-line);
}

.page-products .tier-toolbar__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}

.page-products .tier-toolbar__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-products .tier-btn {
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  line-height: 1.4;
  padding: 6px 14px;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  color: var(--mist);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.page-products .tier-btn:hover {
  color: var(--paper);
  border-color: var(--copper);
}

.page-products .tswitch:focus-visible + .tswitch + .tswitch + .tswitch + .tier-toolbar .tier-btn {
  outline: 1px solid var(--ice);
  outline-offset: 2px;
}

.page-products #ts-all:checked ~ .tier-toolbar [for="ts-all"] {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--black);
}

.page-products #ts-launch:checked ~ .tier-toolbar [for="ts-launch"] {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--paper);
}

.page-products #ts-standard:checked ~ .tier-toolbar [for="ts-standard"] {
  background: var(--ice);
  border-color: var(--ice);
  color: var(--black);
}

.page-products #ts-custom:checked ~ .tier-toolbar [for="ts-custom"] {
  background: var(--brick);
  border-color: var(--brick);
  color: var(--paper);
}

.page-products .tier-scroll {
  margin-top: 20px;
  max-width: 100%;
  overflow-x: auto;
}

.page-products .tier-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: var(--text-soft);
}

.page-products .tier-table thead th {
  padding: 14px 14px 14px 0;
  text-align: left;
  vertical-align: bottom;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--paper);
  border-bottom: 1px solid var(--copper);
}

.page-products .tier-table thead th:first-child {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--mist);
  border-bottom-color: var(--steel);
}

.page-products .tier-table thead th.t-launch {
  border-bottom-color: var(--moss);
}

.page-products .tier-table thead th.t-standard {
  border-bottom-color: var(--ice);
}

.page-products .tier-table thead th.t-custom {
  border-bottom-color: var(--brick);
}

.page-products .tier-table tbody th {
  padding: 15px 14px 15px 0;
  text-align: left;
  vertical-align: top;
  font-weight: 500;
  font-size: 14px;
  color: var(--mist);
  border-bottom: 1px solid var(--pp-line);
}

.page-products .tier-table tbody td {
  padding: 15px 14px 15px 0;
  vertical-align: top;
  line-height: 1.62;
  border-bottom: 1px solid var(--pp-line);
  transition: opacity var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.page-products .tier-table tbody td::before {
  display: none;
}

.page-products .tier-table .num-price {
  font-size: 17px;
  color: var(--copper-lit);
}

.page-products .tier-table .num-days {
  font-size: 17px;
  color: var(--paper);
}

.page-products #ts-launch:checked ~ .tier-scroll .t-standard,
.page-products #ts-launch:checked ~ .tier-scroll .t-custom,
.page-products #ts-standard:checked ~ .tier-scroll .t-launch,
.page-products #ts-standard:checked ~ .tier-scroll .t-custom,
.page-products #ts-custom:checked ~ .tier-scroll .t-launch,
.page-products #ts-custom:checked ~ .tier-scroll .t-standard {
  opacity: 0.3;
}

.page-products #ts-launch:checked ~ .tier-scroll .t-launch {
  background: rgba(107, 138, 110, 0.14);
}

.page-products #ts-standard:checked ~ .tier-scroll .t-standard {
  background: rgba(127, 209, 232, 0.12);
}

.page-products #ts-custom:checked ~ .tier-scroll .t-custom {
  background: rgba(166, 75, 60, 0.14);
}

/* ---------- 表格下方配图 ---------- */
.page-products .pp-figure {
  margin: clamp(28px, 4vw, 48px) 0 0;
}

.page-products .pp-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  border: 1px solid var(--steel);
  filter: saturate(0.78) contrast(1.06);
}

.page-products .pp-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--mist);
  max-width: 52em;
}

/* ---------- 档位详解 ---------- */
.page-products .tier-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 40px);
}

.page-products .tier-detail__plate {
  position: relative;
  border: 1px solid var(--copper);
  border-left-width: 3px;
  border-radius: var(--radius);
  padding: 22px 18px 24px;
  background: linear-gradient(180deg, rgba(27, 42, 74, 0.88), rgba(14, 23, 48, 0.62));
  box-shadow: inset 0 1px 0 rgba(184, 135, 58, 0.24);
}

.page-products .tier-detail--launch .tier-detail__plate {
  border-color: var(--moss);
}

.page-products .tier-detail--standard .tier-detail__plate {
  border-color: var(--ice);
}

.page-products .tier-detail--custom .tier-detail__plate {
  border-color: var(--brick);
}

.page-products .tier-detail__code {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.page-products .tier-detail--launch .tier-detail__code {
  color: var(--moss);
}

.page-products .tier-detail--standard .tier-detail__code {
  color: var(--ice);
}

.page-products .tier-detail--custom .tier-detail__code {
  color: var(--brick);
}

.page-products .tier-detail__name {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 800;
  line-height: 1.32;
  color: var(--paper);
}

.page-products .tier-detail__price {
  margin: 16px 0 0;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--copper-lit);
}

.page-products .tier-detail--launch .tier-detail__price {
  color: #9BC29E;
}

.page-products .tier-detail--standard .tier-detail__price {
  color: var(--ice);
}

.page-products .tier-detail--custom .tier-detail__price {
  color: #C97A6B;
}

.page-products .tier-detail__cycle {
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--mist);
}

.page-products .tier-detail__body > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}

.page-products .tier-detail__body > p + p {
  margin-top: 16px;
}

.page-products .tier-detail__body ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-products .tier-detail__body li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.75;
}

.page-products .tier-detail__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 9px;
  height: 1px;
  background: var(--copper);
}

.page-products .tier-detail--launch .tier-detail__body li::before {
  background: var(--moss);
}

.page-products .tier-detail--standard .tier-detail__body li::before {
  background: var(--ice);
}

.page-products .tier-detail--custom .tier-detail__body li::before {
  background: var(--brick);
}

.page-products .tier-detail__body li strong {
  color: var(--paper);
  font-weight: 600;
}

.page-products .tier-detail__hint {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--pp-line);
  font-size: 14px;
  color: var(--mist);
}

/* ---------- 六阶段流程 ---------- */
.page-products .flow-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.page-products .flow-step {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 16px;
}

.page-products .flow-step__marker {
  position: relative;
}

.page-products .flow-step__marker::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--pp-line);
}

.page-products .flow-step:first-child .flow-step__marker::before {
  top: 24px;
}

.page-products .flow-step:last-child .flow-step__marker::before {
  bottom: auto;
  height: 24px;
}

.page-products .flow-step__marker::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--copper);
}

.page-products .flow-step__details {
  border-bottom: 1px solid var(--pp-line);
}

.page-products .flow-step__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding: 18px 0;
  transition: color var(--dur) var(--ease);
}

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

.page-products .flow-step__summary:hover .flow-step__name {
  color: var(--copper-lit);
}

.page-products .flow-step__num {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--copper);
}

.page-products .flow-step__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
  transition: color var(--dur) var(--ease);
}

.page-products .flow-step__dur {
  margin-left: auto;
  font-size: 13px;
  color: var(--mist);
}

.page-products .flow-step__toggle {
  position: relative;
  width: 11px;
  height: 11px;
  flex: none;
  align-self: center;
}

.page-products .flow-step__toggle::before,
.page-products .flow-step__toggle::after {
  content: "";
  position: absolute;
  background: var(--copper);
}

.page-products .flow-step__toggle::before {
  left: 0;
  top: 5px;
  width: 11px;
  height: 1px;
}

.page-products .flow-step__toggle::after {
  left: 5px;
  top: 0;
  width: 1px;
  height: 11px;
  transition: transform var(--dur) var(--ease);
}

.page-products .flow-step__details[open] .flow-step__toggle::after {
  transform: scaleY(0);
}

.page-products .flow-step__body {
  padding: 0 0 22px;
  animation: pp-fade-in var(--dur) var(--ease);
}

@keyframes pp-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-products .flow-step__meta {
  margin: 0;
  display: grid;
  gap: 10px;
}

.page-products .flow-step__meta > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}

.page-products .flow-step__meta dt {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--copper);
}

.page-products .flow-step__meta dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-soft);
}

/* ---------- 行业建议 ---------- */
.page-products .ind-list {
  display: grid;
  gap: 0;
}

.page-products .ind-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(24px, 4vw, 42px) 0;
  border-top: 1px solid var(--pp-line);
  align-items: start;
}

.page-products .ind-item:first-child {
  border-top-color: var(--copper);
}

.page-products .ind-item__media {
  margin: 0;
  position: relative;
}

.page-products .ind-item__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--steel);
  filter: saturate(0.78) contrast(1.05);
}

.page-products .ind-item__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(127, 209, 232, 0.06) 0 1px, transparent 1px 4px);
  border: 1px solid rgba(184, 135, 58, 0.2);
}

.page-products .ind-item__tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 3px 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  border-radius: var(--radius);
  border: 1px solid currentColor;
}

.page-products .ind-item__tag.tag--copper {
  color: var(--copper-lit);
}

.page-products .ind-item__tag.tag--ice {
  color: var(--ice);
}

.page-products .ind-item__tag.tag--moss {
  color: #9BC29E;
}

.page-products .ind-item__tag.tag--brick {
  color: #C97A6B;
}

.page-products .ind-item__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 700;
  line-height: 1.36;
  color: var(--paper);
}

.page-products .ind-item__body > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
}

.page-products .ind-item__body ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-products .ind-item__body li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

.page-products .ind-item__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 1px;
  background: var(--copper);
}

.page-products .ind-note {
  margin: 28px 0 0;
  padding: 16px 18px;
  border-left: 2px solid var(--copper);
  background: rgba(27, 42, 74, 0.5);
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist);
}

/* ---------- 后续支持 ---------- */
.page-products .support-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--pp-line);
  border: 1px solid var(--pp-line);
}

.page-products .support-item {
  background: var(--ink);
  padding: 22px 18px 24px;
}

.page-products .support-item__val {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: var(--copper-lit);
}

.page-products .support-item__name {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--paper);
}

.page-products .support-item__note {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist);
}

.page-products .pp-aside-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ---------- 行动入口 ---------- */
.page-products .pp-start {
  border-top: 1px solid var(--copper);
  background: linear-gradient(180deg, rgba(8, 11, 18, 0.96), rgba(14, 23, 48, 0.96));
}

.page-products .start-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.page-products .start-panel__text .pp-head__idx {
  padding-top: 0;
  margin: 0 0 12px;
}

.page-products .start-panel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  line-height: 1.26;
  color: var(--paper);
}

.page-products .start-panel__lede {
  margin: 16px 0 0;
  max-width: 40em;
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-soft);
}

.page-products .start-panel__meta {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--mist);
}

.page-products .start-panel__actions {
  display: grid;
  gap: 12px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-products .flow-step__meta > div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

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

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

  .page-products .ind-item {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }

  .page-products .ind-item:nth-child(even) .ind-item__media {
    order: 2;
  }

  .page-products .ind-item:nth-child(even) .ind-item__body {
    order: 1;
  }
}

@media (min-width: 880px) {
  .page-products .prod-hero__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.86fr);
  }

  .page-products .tier-detail {
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
    align-items: start;
  }

  .page-products .tier-detail__plate {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }

  .page-products .start-panel {
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  }
}

@media (min-width: 1100px) {
  .page-products .prod-hero__lede {
    font-size: 18px;
  }
}

@media (max-width: 759px) {
  .page-products .tier-table,
  .page-products .tier-table thead,
  .page-products .tier-table tbody,
  .page-products .tier-table tr,
  .page-products .tier-table th,
  .page-products .tier-table td {
    display: block;
    width: 100%;
  }

  .page-products .tier-table thead {
    display: none;
  }

  .page-products .tier-table {
    border-top: 1px solid var(--copper);
  }

  .page-products .tier-table tbody tr {
    padding: 18px 0;
    border-bottom: 1px solid var(--pp-line);
  }

  .page-products .tier-table tbody th {
    padding: 0 0 10px;
    border-bottom: 0;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--copper);
  }

  .page-products .tier-table tbody td {
    padding: 10px 0 0;
    border-bottom: 0;
  }

  .page-products .tier-table tbody td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--mist);
  }

  .page-products .tier-table .num-price,
  .page-products .tier-table .num-days {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .page-products .flow-step__dur {
    margin-left: 0;
    width: 100%;
  }

  .page-products .flow-step__toggle {
    position: absolute;
    right: 0;
    top: 22px;
  }

  .page-products .flow-step__details {
    position: relative;
    padding-right: 22px;
  }
}

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

  .page-products .tier-table tbody td,
  .page-products .flow-step__toggle::after,
  .page-products .tier-btn {
    transition: none;
  }
}
