.page-products {
  --pp-line-green: rgba(0, 255, 163, 0.55);
  --pp-line-orange: rgba(255, 107, 53, 0.5);
  --pp-panel-line: rgba(192, 200, 208, 0.16);
  --pp-glow-green: 0 0 26px rgba(0, 255, 163, 0.12);
  --pp-glow-orange: 0 0 22px rgba(255, 107, 53, 0.1);
  position: relative;
  overflow-x: clip;
  background-color: var(--c-deep);
}

.page-products .pp-breadcrumb {
  position: relative;
  z-index: 1;
  margin-block: 18px 0;
}

.page-products .pp-hero {
  position: relative;
  z-index: 1;
  padding-top: 18px;
}

.page-products .pp-hero-frame {
  position: relative;
  border: 1px solid rgba(192, 200, 208, 0.22);
  background:
    linear-gradient(rgba(18, 34, 74, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 34, 74, 0.32) 1px, transparent 1px);
  background-size: 26px 26px;
  clip-path: var(--clip-cut);
  padding: 28px 18px 34px;
  overflow: hidden;
}

.page-products .pp-frame-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}

.page-products .pp-frame-corner--tl {
  top: 22px;
  left: 22px;
  border-width: 2px 0 0 2px;
  border-color: var(--c-orange);
}

.page-products .pp-frame-corner--br {
  bottom: 22px;
  right: 22px;
  border-width: 0 2px 2px 0;
  border-color: var(--c-green);
}

.page-products .pp-hero-inner {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-products .pp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-products .pp-hero-meta-code {
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--c-silver);
  opacity: 0.7;
}

.page-products .pp-hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 5.6vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--c-white);
}

.page-products .pp-hero-lead {
  max-width: 60ch;
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-silver);
}

.page-products .pp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.page-products .pp-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px 0;
  border-block: 1px solid rgba(192, 200, 208, 0.12);
}

.page-products .pp-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-products .pp-hero-stat dt {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--c-silver);
  opacity: 0.72;
}

.page-products .pp-hero-stat dd {
  margin: 0;
  font-family: var(--font-data);
}

.page-products .pp-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
}

.page-products .pp-browser-window {
  width: 100%;
  border: 1px solid rgba(192, 200, 208, 0.38);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(26, 42, 74, 0.9), rgba(10, 17, 40, 0.96));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.page-products .pp-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(10, 17, 40, 0.66);
  border-bottom: 1px solid rgba(192, 200, 208, 0.1);
}

.page-products .pp-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-orange);
  opacity: 0.85;
}

.page-products .pp-browser-dot:nth-child(2) {
  background: rgba(192, 200, 208, 0.4);
}

.page-products .pp-browser-dot:nth-child(3) {
  background: var(--c-green);
}

.page-products .pp-browser-url {
  flex: 1;
  margin-left: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(18, 34, 74, 0.9);
  border: 1px solid rgba(192, 200, 208, 0.12);
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--c-silver);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-products .pp-browser-body {
  display: flex;
  flex-direction: column;
  min-height: 192px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 32px 22px;
  background:
    radial-gradient(ellipse at 20% 92%, rgba(0, 255, 163, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 86% 8%, rgba(255, 107, 53, 0.1) 0%, transparent 46%);
}

.page-products .pp-browser-brand {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--c-white);
}

.page-products .pp-browser-tagline {
  font-size: 0.82rem;
  color: var(--c-silver);
  opacity: 0.82;
}

.page-products .pp-browser-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 255, 163, 0.24);
  border-radius: 999px;
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--c-green);
  background: rgba(0, 255, 163, 0.05);
}

.page-products .pp-browser-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 10px var(--c-green);
}

.page-products .pp-float-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(192, 200, 208, 0.2);
  background: rgba(10, 17, 40, 0.88);
  box-shadow: var(--pp-glow-green);
  backdrop-filter: blur(6px);
}

.page-products .pp-float-chip--live {
  top: 10px;
  right: -4px;
  animation: pp-float-a 5s ease-in-out infinite;
}

.page-products .pp-float-chip--speed {
  bottom: 8px;
  left: -6px;
  animation: pp-float-b 6s ease-in-out infinite;
}

.page-products .pp-chip-code {
  font-family: var(--font-data);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--c-orange);
}

.page-products .pp-float-chip--live .pp-chip-code {
  color: var(--c-green);
}

.page-products .pp-chip-text {
  font-size: 0.78rem;
  color: var(--c-white);
}

.page-products .pp-section {
  position: relative;
  z-index: 1;
  padding-block: 56px;
}

.page-products .pp-section-header {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.page-products .pp-heading-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-products .pp-section-header .section-title {
  margin: 0;
}

.page-products .pp-section-header .section-sub {
  margin: 0;
  max-width: 66ch;
  line-height: 1.7;
}

.page-products .pp-access-grid {
  display: grid;
  gap: 20px;
}

.page-products .pp-access-card {
  position: relative;
  border: 1px solid var(--pp-panel-line);
  background: linear-gradient(150deg, rgba(26, 42, 74, 0.52), rgba(10, 17, 40, 0.36));
  clip-path: var(--clip-cut);
  padding: 24px 20px 26px;
}

.page-products .pp-access-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 255, 163, 0.12) 50%);
  pointer-events: none;
}

.page-products .pp-step-list {
  margin: 0 0 20px;
  padding-left: 22px;
  display: grid;
  gap: 12px;
  counter-reset: pp-step;
}

.page-products .pp-step-list li {
  position: relative;
  padding-left: 6px;
  padding-block: 6px;
  color: var(--c-silver);
  line-height: 1.65;
  border-bottom: 1px dashed rgba(192, 200, 208, 0.12);
}

.page-products .pp-step-list li::marker {
  color: var(--c-green);
  font-family: var(--font-data);
  font-weight: 700;
}

.page-products .pp-access-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(18, 34, 74, 0.5);
  border-left: 2px solid var(--c-orange);
}

.page-products .pp-access-note p {
  margin: 0;
  flex: 1 1 260px;
  color: var(--c-silver);
  line-height: 1.7;
  font-size: 0.92rem;
}

.page-products .pp-access-figure img,
.page-products .pp-highlight-figure img {
  max-width: 100%;
  height: auto;
}

.page-products .pp-access-figure figcaption,
.page-products .pp-highlight-figure figcaption {
  text-align: center;
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--c-silver);
  opacity: 0.75;
  margin-top: 8px;
}

.page-products .pp-device-section {
  background: linear-gradient(180deg, rgba(18, 34, 74, 0.28), transparent 46%);
}

.page-products .pp-device-section::before,
.page-products .pp-compare-section::before {
  content: "";
  position: absolute;
  top: 26%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pp-line-green), transparent);
  opacity: 0.5;
  pointer-events: none;
  animation: pp-horizontal-drift 12s ease-in-out infinite alternate;
  z-index: 0;
}

.page-products .pp-device-section::after {
  content: "";
  position: absolute;
  top: 72%;
  left: -10%;
  width: 110%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pp-line-orange), transparent);
  opacity: 0.36;
  pointer-events: none;
  animation: pp-horizontal-drift 16s ease-in-out infinite alternate-reverse;
  z-index: 0;
}

.page-products .pp-device-tabs,
.page-products .pp-compare-tabs {
  position: relative;
  z-index: 1;
}

.page-products .pp-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.page-products .pp-device-card {
  position: relative;
  display: grid;
  gap: 24px;
  margin-top: 4px;
  padding: 22px 18px 26px;
  border: 1px solid var(--pp-panel-line);
  background: linear-gradient(145deg, rgba(26, 42, 74, 0.5), rgba(10, 17, 40, 0.34));
  clip-path: var(--clip-cut);
  overflow: hidden;
}

.page-products .pp-device-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(225deg, transparent 50%, rgba(255, 107, 53, 0.16) 50%);
  pointer-events: none;
}

.page-products .pp-phone-mockup {
  position: relative;
  width: 196px;
  max-width: 82%;
  aspect-ratio: 9 / 19;
  margin: 0 auto;
  border: 2px solid rgba(192, 200, 208, 0.55);
  border-radius: 32px;
  background: var(--c-deep);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    0 0 0 6px rgba(18, 34, 74, 0.7);
  padding: 12px;
}

.page-products .pp-phone-mockup img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  border-radius: 20px;
}

.page-products .pp-phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 16px;
  z-index: 3;
  border-radius: 999px;
  background: var(--c-deep);
  border: 1px solid rgba(192, 200, 208, 0.22);
}

.page-products .pp-tablet-mockup {
  position: relative;
  width: min(460px, 92%);
  aspect-ratio: 3 / 2;
  margin: 0 auto;
  border-radius: 26px;
  border: 2px solid rgba(192, 200, 208, 0.5);
  background: var(--c-deep);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  padding: 10px;
}

.page-products .pp-tablet-mockup::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.page-products .pp-tablet-mockup img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  border-radius: 18px;
}

.page-products .pp-desktop-mockup-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-products .pp-desktop-mockup {
  position: relative;
  width: min(560px, 94%);
  aspect-ratio: 16 / 10;
  border-radius: 16px 16px 0 0;
  border: 2px solid rgba(192, 200, 208, 0.5);
  border-bottom: none;
  background: var(--c-deep);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  padding: 10px;
  overflow: hidden;
}

.page-products .pp-desktop-mockup img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  border-radius: 8px;
}

.page-products .pp-desktop-stand {
  width: 128px;
  height: 22px;
  margin-top: -2px;
  background: linear-gradient(145deg, #c6ced6, #6e7888);
  border-radius: 0 0 12px 12px;
  position: relative;
}

.page-products .pp-desktop-stand::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(145deg, #b8c2cc, #66727e);
}

.page-products .pp-device-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.page-products .pp-device-info h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px;
  font-size: 1.45rem;
  color: var(--c-white);
}

.page-products .pp-device-info p {
  margin: 0 0 6px;
  color: var(--c-silver);
  line-height: 1.75;
  font-size: 0.95rem;
}

.page-products .pp-device-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.page-products .pp-compare-wrap {
  border: 1px solid var(--pp-panel-line);
  background: rgba(26, 42, 74, 0.34);
  overflow: hidden;
}

.page-products .pp-cmp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(192, 200, 208, 0.1);
}

.page-products .pp-cmp-row:last-child {
  border-bottom: 0;
}

.page-products .pp-cmp-head {
  background: rgba(10, 17, 40, 0.6);
  font-family: var(--font-data);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-products .pp-cmp-metric {
  grid-column: 1 / -1;
  padding: 11px 14px;
  font-weight: 700;
  color: var(--c-white);
  background: rgba(18, 34, 74, 0.36);
  border-bottom: 1px solid rgba(192, 200, 208, 0.08);
}

.page-products .pp-cmp-head .pp-cmp-metric {
  background: transparent;
  color: var(--c-silver);
  border-bottom: 0;
}

.page-products .pp-cmp-old,
.page-products .pp-cmp-new {
  padding: 11px 14px;
  color: var(--c-silver);
  line-height: 1.6;
  font-size: 0.92rem;
}

.page-products .pp-cmp-old {
  border-right: 1px solid rgba(192, 200, 208, 0.08);
  color: rgba(192, 200, 208, 0.68);
}

.page-products .pp-cmp-new {
  color: var(--c-green);
  font-weight: 600;
}

.page-products .pp-highlight-grid {
  display: grid;
  gap: 20px;
}

.page-products .pp-highlight-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.page-products .pp-highlight-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 14px;
  border: 1px solid rgba(0, 255, 163, 0.22);
  background: rgba(0, 255, 163, 0.04);
  clip-path: var(--clip-cut);
}

.page-products .pp-highlight-num {
  font-family: var(--font-data);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--c-green);
  line-height: 1.1;
}

.page-products .pp-highlight-label {
  font-size: 0.8rem;
  color: var(--c-silver);
}

.page-products .pp-highlight-copy {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 14px;
  border-left: 2px solid var(--c-orange);
  background: rgba(18, 34, 74, 0.42);
  color: var(--c-silver);
  line-height: 1.7;
  font-size: 0.92rem;
}

.page-products .pp-require-grid {
  display: grid;
  gap: 16px;
}

.page-products .pp-require-card {
  position: relative;
  border: 1px solid var(--pp-panel-line);
  background: linear-gradient(150deg, rgba(26, 42, 74, 0.46), rgba(10, 17, 40, 0.32));
  padding: 22px 20px;
  clip-path: var(--clip-cut);
}

.page-products .pp-require-card::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--c-orange);
  border-right: 1px solid var(--c-orange);
  opacity: 0.6;
}

.page-products .pp-require-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--grad-silver);
  color: var(--c-deep);
  font-family: var(--font-data);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.page-products .pp-require-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: var(--c-white);
}

.page-products .pp-require-card p {
  margin: 0;
  color: var(--c-silver);
  line-height: 1.7;
  font-size: 0.92rem;
}

.page-products .pp-require-card--wide {
  grid-column: 1 / -1;
}

.page-products .pp-browser-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
  padding: 0;
  list-style: none;
}

.page-products .pp-browser-list li {
  padding: 7px 14px;
  border: 1px solid rgba(192, 200, 208, 0.24);
  border-radius: 999px;
  font-family: var(--font-data);
  font-size: 0.8rem;
  color: var(--c-silver);
  background: rgba(10, 17, 40, 0.38);
}

.page-products .pp-require-note {
  font-size: 0.85rem;
  opacity: 0.85;
}

.page-products .pp-archive-panel {
  position: relative;
  border: 1px solid var(--pp-panel-line);
  background:
    linear-gradient(rgba(18, 34, 74, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 34, 74, 0.28) 1px, transparent 1px);
  background-size: 24px 24px;
  clip-path: var(--clip-cut);
  padding: 28px 20px 26px;
  overflow: hidden;
}

.page-products .pp-archive-tl {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 0 4px;
}

.page-products .pp-tl-start,
.page-products .pp-tl-end {
  font-family: var(--font-data);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-orange);
  padding: 4px 8px;
  border: 1px solid rgba(255, 107, 53, 0.36);
  border-radius: 6px;
  white-space: nowrap;
}

.page-products .pp-tl-end {
  color: var(--c-green);
  border-color: rgba(0, 255, 163, 0.38);
}

.page-products .pp-tl-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.7), rgba(0, 255, 163, 0.7));
  position: relative;
}

.page-products .pp-tl-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14%;
  widtH: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  transform: translateY(-50%);
  box-shadow: 0 0 10px var(--c-green);
}

.page-products .pp-archive-content {
  display: grid;
  gap: 18px;
}

.page-products .pp-archive-copy {
  display: grid;
  gap: 12px;
}

.page-products .pp-archive-copy p {
  margin: 0;
  color: var(--c-silver);
  line-height: 1.75;
}

.page-products .pp-archive-copy p:first-child {
  font-size: 0.95rem;
}

.page-products .pp-archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-products .pp-next-grid {
  display: grid;
  gap: 16px;
}

.page-products .pp-next-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 22px 24px;
  border: 1px solid var(--pp-panel-line);
  background: linear-gradient(150deg, rgba(26, 42, 74, 0.5), rgba(10, 17, 40, 0.36));
  clip-path: var(--clip-cut);
  text-decoration: none;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.page-products .pp-next-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-top: 2px solid var(--c-green);
  border-right: 2px solid var(--c-green);
  opacity: 0.65;
  transition: opacity 0.24s ease;
}

.page-products .pp-next-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 163, 0.36);
  box-shadow: var(--pp-glow-green);
}

.page-products .pp-next-card:hover::before {
  opacity: 1;
}

.page-products .pp-next-index {
  font-family: var(--font-data);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-products .pp-next-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--c-white);
}

.page-products .pp-next-card p {
  margin: 0;
  color: var(--c-silver);
  line-height: 1.7;
  font-size: 0.92rem;
}

.page-products .btn-primary:active,
.page-products .btn-ghost:active,
.page-products .pp-next-card:active {
  transform: translateY(1px) scale(0.985);
}

@keyframes pp-float-a {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-8px) translateX(4px); }
}

@keyframes pp-float-b {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(7px) translateX(-3px); }
}

@keyframes pp-horizontal-drift {
  0% { transform: translateX(-18px); opacity: 0.18; }
  50% { opacity: 0.6; }
  100% { transform: translateX(28px); opacity: 0.2; }
}

@media (min-width: 768px) {
  .page-products .pp-hero-frame {
    padding: 36px 34px 42px;
  }

  .page-products .pp-hero-inner {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 40px;
  }

  .page-products .pp-access-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-products .pp-device-card {
    grid-template-columns: minmax(210px, 0.9fr) 1.1fr;
    align-items: center;
    padding: 28px 26px 30px;
  }

  .page-products .pp-cmp-row {
    grid-template-columns: 1.1fr 1fr 1.4fr;
  }

  .page-products .pp-cmp-metric {
    grid-column: auto;
    border-bottom: 0;
    text-align: left;
  }

  .page-products .pp-cmp-head .pp-cmp-old {
    color: rgba(192, 200, 208, 0.66);
  }

  .page-products .pp-require-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-products .pp-archive-content {
    grid-template-columns: 1.4fr 0.6fr;
    align-items: center;
  }

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

@media (min-width: 1024px) {
  .page-products .pp-section {
    padding-block: 76px;
  }

  .page-products .pp-highlight-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

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

  .page-products .pp-require-card--wide {
    grid-column: span 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .pp-float-chip,
  .page-products .pp-device-section::before,
  .page-products .pp-device-section::after,
  .page-products .pp-compare-section::before {
    animation: none;
  }

  .page-products .pp-next-card {
    transition: none;
  }
}
