.page-products {
  --pp-spacing: clamp(40px, 6vw, 88px);
  --pp-side-w: 264px;
  --pp-cut: 18px;
  --pp-gold-glow: rgba(255, 196, 0, 0.4);
  --pp-blue-glow: rgba(0, 229, 255, 0.35);
  --pp-panel-deep: rgba(13, 20, 45, 0.72);
  --pp-panel-soft: rgba(21, 29, 53, 0.66);
  --pp-line-blue: rgba(0, 229, 255, 0.16);
  color: var(--silver-mist);
}

.page-products__layout {
  position: relative;
  padding: 24px 0 72px;
  min-width: 0;
}

.page-products__layout::before {
  content: "";
  position: absolute;
  top: 140px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.page-products__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.page-products__side {
  display: none;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.page-products__side-label {
  margin-bottom: 14px;
}

.page-products__command {
  background: linear-gradient(160deg, var(--panel-dark) 0%, rgba(13, 20, 45, 0.72) 100%);
  border: 1px solid var(--pp-line-blue);
  clip-path: polygon(0 0, calc(100% - var(--pp-cut)) 0, 100% var(--pp-cut), 100% 100%, var(--pp-cut) 100%, 0 calc(100% - var(--pp-cut)));
  padding: 22px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.page-products__command-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--electric-blue);
  text-transform: uppercase;
  padding: 0 8px 14px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.24);
  margin-bottom: 8px;
}

.page-products__command-link {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 10px;
  border-bottom: 1px solid rgba(200, 208, 224, 0.1);
  color: var(--silver-mist);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease, background 0.3s ease, padding-left 0.3s ease, border-color 0.3s ease;
}

.page-products__command-link:last-of-type {
  border-bottom: none;
}

.page-products__command-link:hover {
  color: var(--starlight-gold);
  padding-left: 16px;
  background: rgba(255, 196, 0, 0.05);
}

.page-products__command-link.is-active {
  color: var(--starlight-gold);
  background: rgba(255, 196, 0, 0.08);
  border-left: 3px solid var(--starlight-gold);
  padding-left: 10px;
}

.page-products__command-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--metallic-gray);
  transition: color 0.3s ease;
}

.page-products__command-link.is-active .page-products__command-index,
.page-products__command-link:hover .page-products__command-index {
  color: var(--electric-blue);
}

.page-products__command-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--metallic-gray);
  line-height: 1.6;
  padding-left: 8px;
}

.page-products__main {
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 7vw, 88px);
  min-width: 0;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  margin-bottom: -12px;
}

.page-products__hero {
  padding-top: 20px;
}

.page-products__hero-label {
  font-size: 14px;
}

.page-products__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  transform: skew(-2deg);
  color: #ffffff;
  margin-top: 14px;
  margin-bottom: 18px;
  max-width: 14em;
  position: relative;
}

.page-products__title::after {
  content: "●";
  display: inline-block;
  color: var(--starlight-gold);
  font-size: 0.42em;
  vertical-align: super;
  margin-left: 0.18em;
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 196, 0, 0.55);
}

.page-products__lead {
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.7;
  max-width: 56em;
  color: var(--silver-mist);
  padding-left: 20px;
  border-left: 3px solid var(--electric-blue);
}

.page-products__mobile-menu {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--electric-blue) transparent;
}

.page-products__mobile-menu-link {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--silver-mist);
  text-decoration: none;
  background: var(--panel-dark);
  padding: 10px 16px;
  border: 1px solid var(--pp-line-blue);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-products__mobile-menu-link:hover {
  color: var(--starlight-gold);
  border-color: rgba(255, 196, 0, 0.5);
}

.page-products__section {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.page-products__section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.page-products__section-chapter {
  align-items: flex-start;
}

.page-products__section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1.15;
  color: #ffffff;
  margin-top: 6px;
  transform: skew(-1deg);
}

.page-products__section-desc {
  max-width: 46em;
  color: var(--metallic-gray);
  line-height: 1.7;
}

.page-products__feature {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 28px 20px;
  margin-top: 32px;
  background: linear-gradient(180deg, var(--pp-panel-soft) 0%, rgba(13, 20, 45, 0.45) 100%);
  border: 1px solid var(--pp-line-blue);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.page-products__feature-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.page-products__feature-index {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--starlight-gold);
  letter-spacing: 0.08em;
}

.page-products__feature-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
  color: #ffffff;
  transform: skew(-1deg);
  margin: 0 0 4px;
}

.page-products__feature-desc {
  line-height: 1.72;
  max-width: 42em;
  color: var(--silver-mist);
}

.page-products__feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-products__feature-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.65;
  color: var(--silver-mist);
}

.page-products__feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 3px;
  background: var(--electric-blue);
  transform: skew(-24deg);
}

.page-products__feature-visual {
  min-width: 0;
  display: flex;
  align-items: center;
}

.page-products__feature-visual img,
.page-products__coverage-media img,
.page-products__upgrade-media img,
.page-products__scenes-lead img,
.page-products__feature-visual--img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  border: 1px solid rgba(0, 229, 255, 0.14);
}

.page-products__feature-visual--stack {
  display: grid;
  gap: 20px;
}

.page-products__entry-orb {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
}

.page-products__entry-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--electric-blue);
  border-radius: 50%;
}

.page-products__entry-ring--mid {
  inset: 28px;
  border-color: var(--starlight-gold);
  border-style: dashed;
  animation: page-products-spin 16s linear infinite;
}

.page-products__entry-ring--outer {
  inset: 54px;
  border-color: rgba(0, 229, 255, 0.35);
}

.page-products__entry-core {
  position: absolute;
  inset: 102px;
  background: var(--starlight-gold);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 196, 0, 0.6);
}

.page-products__entry-arrow {
  position: absolute;
  right: -12px;
  top: 50%;
  font-size: 30px;
  color: var(--electric-blue);
  transform: translateY(-50%);
  z-index: 2;
}

.page-products__entry-label {
  position: absolute;
  top: -34px;
  left: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--electric-blue);
  letter-spacing: 0.14em;
}

.page-products__entry-label--sub {
  top: auto;
  bottom: -34px;
  left: auto;
  right: 0;
  color: var(--metallic-gray);
}

@keyframes page-products-spin {
  to { transform: rotate(360deg); }
}

.page-products__lineup-panel {
  position: relative;
  width: 100%;
  padding: 18px 20px 14px;
  background: linear-gradient(150deg, var(--panel-dark), rgba(13, 20, 45, 0.8));
  border: 1px solid rgba(0, 229, 255, 0.16);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.page-products__lineup-status {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--positive-green);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.65);
}

.page-products__lineup-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(200, 208, 224, 0.12);
}

.page-products__lineup-side {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
}

.page-products__lineup-formation {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--starlight-gold);
}

.page-products__lineup-graph {
  position: relative;
  height: 190px;
  margin-top: 12px;
  background-image:
    radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0, transparent 62%),
    linear-gradient(180deg, rgba(0, 229, 255, 0.06) 0, transparent 30%, transparent 70%, rgba(0, 229, 255, 0.06) 100%);
}

.page-products__lineup-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--electric-blue);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
  transform: translate(-50%, -50%) rotate(45deg);
}

.page-products__lineup-dot--1 { left: 50%; top: 86%; }
.page-products__lineup-dot--2 { left: 12%; top: 72%; }
.page-products__lineup-dot--3 { left: 36%; top: 74%; }
.page-products__lineup-dot--4 { left: 64%; top: 74%; }
.page-products__lineup-dot--5 { left: 88%; top: 72%; }
.page-products__lineup-dot--6 { left: 20%; top: 50%; }
.page-products__lineup-dot--7 { left: 44%; top: 50%; }
.page-products__lineup-dot--8 { left: 68%; top: 50%; }
.page-products__lineup-dot--9 { left: 88%; top: 48%; }
.page-products__lineup-dot--10 { left: 36%; top: 26%; }
.page-products__lineup-dot--11 { left: 64%; top: 26%; }

.page-products__lineup-time {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--metallic-gray);
  letter-spacing: 0.08em;
}

.page-products__radar-wrap {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
}

.page-products__radar {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.2));
}

.page-products__radar-grid {
  fill: none;
  stroke: rgba(0, 229, 255, 0.26);
  stroke-width: 1;
}

.page-products__radar-grid--mid { stroke: rgba(0, 229, 255, 0.16); }
.page-products__radar-grid--inner { stroke: rgba(0, 229, 255, 0.1); }

.page-products__radar-axis line {
  stroke: rgba(200, 208, 224, 0.2);
  stroke-width: 1;
}

.page-products__radar-area {
  fill: rgba(0, 229, 255, 0.18);
  stroke: var(--electric-blue);
  stroke-width: 2;
}

.page-products__radar-node {
  cursor: default;
}

.page-products__radar-node circle {
  fill: var(--starlight-gold);
  stroke: var(--electric-blue);
  stroke-width: 2;
  transition: r 0.3s ease;
}

.page-products__radar-node:hover circle,
.page-products__radar-node:focus-visible circle {
  fill: var(--electric-blue);
}

.page-products__radar-val {
  font-family: var(--font-mono);
  font-size: 12px;
  fill: var(--electric-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-products__radar-node:hover .page-products__radar-val,
.page-products__radar-node:focus-visible .page-products__radar-val {
  opacity: 1;
}

.page-products__rules-map {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

@media (min-width: 560px) {
  .page-products__rules-map {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
}

.page-products__rules-node {
  flex: 1;
  text-align: center;
  padding: 22px 12px;
  background: linear-gradient(160deg, var(--panel-dark), rgba(13, 20, 45, 0.7));
  border: 1px solid rgba(200, 208, 224, 0.16);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--silver-mist);
  font-size: 15px;
  line-height: 1.5;
}

.page-products__rules-node b {
  display: block;
  color: var(--starlight-gold);
  font-size: 13px;
  font-family: var(--font-mono);
  margin-top: 4px;
}

.page-products__rules-line {
  width: 2px;
  height: 22px;
  background: var(--starlight-gold);
  margin: 0 auto;
}

@media (min-width: 560px) {
  .page-products__rules-line {
    width: 22px;
    height: 2px;
    margin: 0;
  }
}

.page-products__coverage {
  display: grid;
  gap: 28px;
  margin-bottom: 36px;
}

.page-products__coverage-desc {
  line-height: 1.75;
  color: var(--silver-mist);
  max-width: 44em;
}

.page-products__league-chips {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-products__league-chip {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--electric-blue);
  background: rgba(0, 229, 255, 0.07);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 7px 14px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.page-products__coverage-media {
  margin: 0;
}

.page-products__stats {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.page-products__stat {
  padding: 22px 20px;
  background: linear-gradient(160deg, var(--panel-dark) 0%, rgba(13, 20, 45, 0.72) 100%);
  border-left: 3px solid var(--starlight-gold);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-products__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.page-products__stat:nth-child(2) { border-left-color: var(--electric-blue); }
.page-products__stat:nth-child(3) { border-left-color: var(--positive-green); }
.page-products__stat:nth-child(4) { border-left-color: var(--warning-orange); }

.page-products__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-products__stat-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--metallic-gray);
  line-height: 1.5;
}

.page-products__update-rule {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 16px 20px;
  background: rgba(255, 196, 0, 0.06);
  border: 1px solid rgba(255, 196, 0, 0.22);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.page-products__update-rule-item {
  font-size: 15px;
  color: var(--silver-mist);
}

.page-products__update-rule-item b {
  color: var(--starlight-gold);
  font-family: var(--font-mono);
  font-weight: 700;
}

.page-products__upgrade {
  display: grid;
  gap: 28px;
  margin-bottom: 28px;
}

.page-products__upgrade-desc {
  line-height: 1.75;
  color: var(--silver-mist);
  max-width: 48em;
}

.page-products__upgrade-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.page-products__upgrade-list li {
  position: relative;
  padding-left: 24px;
  color: var(--silver-mist);
  line-height: 1.65;
}

.page-products__upgrade-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--starlight-gold);
  font-size: 12px;
}

.page-products__speed-compare {
  padding: 24px;
  background: linear-gradient(160deg, var(--panel-dark), rgba(13, 20, 45, 0.78));
  border: 1px solid rgba(0, 229, 255, 0.18);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  align-self: center;
}

.page-products__speed-compare-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--metallic-gray);
}

.page-products__speed-compare-badge {
  font-size: 12px;
  color: var(--electric-blue);
  border: 1px solid rgba(0, 229, 255, 0.32);
  background: rgba(0, 229, 255, 0.06);
  padding: 5px 10px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.page-products__speed-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.page-products__speed-bar-label {
  width: 44px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--metallic-gray);
}

.page-products__speed-bar-track {
  flex: 1;
  height: 10px;
  background: rgba(200, 208, 224, 0.12);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.page-products__speed-bar-fill {
  display: block;
  height: 100%;
  width: var(--pp-speed-w, 100%);
}

.page-products__speed-bar-fill--old {
  --pp-speed-w: 100%;
  background: var(--metallic-gray);
}

.page-products__speed-bar-fill--new {
  --pp-speed-w: 60%;
  background: linear-gradient(90deg, var(--electric-blue), var(--positive-green));
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.4);
}

.page-products__speed-bar-val {
  width: 48px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--silver-mist);
}

.page-products__speed-result {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 208, 224, 0.14);
  font-size: 14px;
  color: var(--metallic-gray);
  line-height: 1.6;
}

.page-products__speed-result b {
  color: var(--positive-green);
  font-family: var(--font-heading);
  font-size: 20px;
}

.page-products__upgrade-media {
  margin: 0;
}

.page-products__platform-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.16);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.page-products__platform-note-icon {
  font-size: 22px;
  color: var(--electric-blue);
  line-height: 1;
}

.page-products__platform-note p {
  margin: 0;
  color: var(--silver-mist);
  line-height: 1.7;
}

.page-products__platform-note a {
  color: var(--starlight-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-products__scenes-lead {
  margin: 28px 0 0;
}

.page-products__scenes {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.page-products__scene {
  position: relative;
  padding: 26px 22px 28px;
  background: linear-gradient(160deg, var(--pp-panel-soft), rgba(13, 20, 45, 0.6));
  border: 1px solid rgba(200, 208, 224, 0.14);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.page-products__scene::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 4px;
  background: var(--starlight-gold);
}

.page-products__scene--commute::before { background: var(--electric-blue); }
.page-products__scene--prematch::before { background: var(--starlight-gold); }
.page-products__scene--postmatch::before { background: var(--positive-green); }

.page-products__scene-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--electric-blue);
  letter-spacing: 0.14em;
}

.page-products__scene-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: #ffffff;
  margin: 10px 0 6px;
  transform: skew(-1deg);
}

.page-products__scene-desc {
  line-height: 1.72;
  color: var(--silver-mist);
}

.page-products__trust {
  align-items: flex-start;
}

.page-products__trust-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--positive-green);
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.6);
}

.page-products__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

@media (min-width: 768px) {
  .page-products__layout {
    padding: 32px 0 96px;
  }

  .page-products__feature {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: 32px;
    padding: 34px 30px;
    align-items: center;
  }

  .page-products__feature--reverse .page-products__feature-visual {
    order: -1;
  }

  .page-products__feature-visual--stack {
    grid-template-columns: 1fr;
  }

  .page-products__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products__coverage {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .page-products__upgrade {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .page-products__upgrade-media {
    grid-column: 1 / -1;
  }

  .page-products__scenes {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products__section-head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .page-products__section-desc {
    justify-self: end;
  }
}

@media (min-width: 960px) {
  .page-products__side {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 32px);
  }

  .page-products__mobile-menu {
    display: none;
  }

  .page-products__split {
    grid-template-columns: var(--pp-side-w) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 84px);
  }

  .page-products__feature-visual--stack {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .page-products__split {
    grid-template-columns: var(--pp-side-w) minmax(0, 1fr);
    gap: clamp(48px, 6vw, 96px);
  }

  .page-products__upgrade {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.8fr);
  }

  .page-products__upgrade-media {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products__entry-ring--mid {
    animation: none;
  }

  .page-products__feature,
  .page-products__stat,
  .page-products__scene {
    transition: none;
  }

  .page-products__command-link,
  .page-products__radar-val {
    transition: none;
  }
}
