.page-products {
  --pdx-bg-deep: #0B1F1A;
  --pdx-bg-card: rgba(11, 31, 26, 0.82);
  --pdx-primary: #00E07C;
  --pdx-accent: #FF6C2F;
  --pdx-teal: #00B3A6;
  --pdx-wine: #B3375C;
  --pdx-purple: #7A4FFF;
  --pdx-text: #F2F7F2;
  --pdx-muted: #A0B0A8;
  --pdx-border: rgba(242, 247, 242, 0.14);
  --pdx-radius-lg: 28px;
  --pdx-radius-sm: 14px;
  --pdx-transition: 250ms cubic-bezier(0.2, 0.8, 0.2, 1);

  background: var(--pdx-bg-deep);
  color: var(--pdx-text);
  overflow-x: hidden;
}

/* 面包屑 */
.page-products .breadcrumb {
  position: relative;
  z-index: 5;
  padding-top: 22px;
  font-family: var(--font-body);
}

.page-products .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--pdx-muted);
}

.page-products .breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-products .breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: rgba(160, 176, 168, 0.55);
}

.page-products .breadcrumb__link {
  color: var(--pdx-text);
  text-decoration: none;
  transition: color var(--pdx-transition);
}

.page-products .breadcrumb__link:hover {
  color: var(--pdx-primary);
}

/* 章节标题体系 */
.page-products .section {
  position: relative;
  padding: var(--space-lg) 0;
}

.page-products .section-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--pdx-border);
  padding-bottom: var(--space-md);
}

.page-products .section-index {
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 224, 124, 0.55);
  flex-shrink: 0;
}

.page-products .section-header__inner {
  flex: 1;
}

.page-products .section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.15;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}

.page-products .section-description {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--pdx-muted);
  max-width: 620px;
}

/* 按钮 */
.page-products .btn-primary,
.page-products .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--pdx-radius-pill, 999px);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--pdx-transition), box-shadow var(--pdx-transition), background var(--pdx-transition);
}

.page-products .btn-primary {
  background: linear-gradient(120deg, var(--pdx-primary), var(--pdx-teal));
  color: #06130E;
  box-shadow: 0 10px 28px rgba(0, 224, 124, 0.25);
}

.page-products .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--pdx-text);
  border: 1px solid var(--pdx-border);
  backdrop-filter: blur(6px);
}

.page-products .btn-primary:hover,
.page-products .btn-secondary:hover {
  transform: translateY(-3px);
}

.page-products .text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--pdx-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--pdx-transition);
}

.page-products .text-link:hover {
  color: var(--pdx-accent);
}

/* 页面首屏 Hero */
.page-products .products-hero {
  position: relative;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 224, 124, 0.12), transparent 42%),
    radial-gradient(circle at 82% 70%, rgba(255, 108, 47, 0.14), transparent 46%),
    var(--pdx-bg-deep);
  padding: 42px 0 56px;
  overflow: hidden;
}

.page-products .products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 224, 124, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 224, 124, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.page-products .products-hero__flow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.page-products .products-hero__svg {
  width: 100%;
  height: 100%;
  min-height: 460px;
  opacity: 0.9;
}

.page-products .hero-line {
  animation: heroDashFlow 9s linear infinite;
}

.page-products .hero-line--two {
  animation-duration: 13s;
}

.page-products .hero-line--three {
  animation-duration: 17s;
  animation-direction: reverse;
}

@keyframes heroDashFlow {
  from { transform: translateX(0); }
  to { transform: translateX(24px); }
}

.page-products .products-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.page-products .products-hero__copy {
  max-width: 720px;
}

.page-products .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pdx-teal);
}

.page-products .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--pdx-accent);
}

.page-products .products-hero__copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.page-products .text-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
}

.page-products .products-hero__desc {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--pdx-muted);
  max-width: 560px;
}

.page-products .products-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-products .products-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-products .stat-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 20px 18px;
  border-radius: var(--pdx-radius-lg);
  background: rgba(11, 31, 26, 0.68);
  border: 1px solid var(--pdx-border);
  overflow: hidden;
  transition: transform var(--pdx-transition), border-color var(--pdx-transition);
}

.page-products .stat-block::after {
  content: "";
  position: absolute;
  inset-inline-end: -12px;
  top: -12px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 224, 124, 0.1);
  filter: blur(18px);
}

.page-products .stat-block--league::after { background: rgba(0, 224, 124, 0.14); }
.page-products .stat-block--match::after { background: rgba(0, 179, 166, 0.14); }
.page-products .stat-block--refresh::after { background: rgba(255, 108, 47, 0.16); }
.page-products .stat-block--acc::after { background: rgba(122, 79, 255, 0.18); }

.page-products .stat-block:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 224, 124, 0.4);
}

.page-products .stat-block__num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  color: var(--pdx-primary);
}

.page-products .stat-block--refresh .stat-block__num {
  color: var(--pdx-accent);
}

.page-products .stat-block--acc .stat-block__num {
  background: linear-gradient(110deg, #00E07C, #7A4FFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-products .stat-block__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--pdx-muted);
  letter-spacing: 0.05em;
}

.page-products .products-hero__scroll-hint {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--pdx-muted);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-products .products-hero__scroll-hint em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--pdx-border);
  color: var(--pdx-primary);
  font-style: normal;
  animation: scrollNudge 1.8s ease-in-out infinite;
}

@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* 功能矩阵瀑布流 */
.page-products .matrix-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: var(--space-md);
}

.page-products .matrix-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: var(--pdx-radius-lg);
  background: linear-gradient(140deg, rgba(18, 42, 36, 0.92), rgba(9, 25, 21, 0.9));
  border: 1px solid var(--pdx-border);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  transition:
    transform var(--pdx-transition),
    box-shadow var(--pdx-transition),
    border-color var(--pdx-transition);
}

.page-products .matrix-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--pdx-primary), var(--pdx-teal));
  z-index: 3;
}

.page-products .matrix-card--possession::before {
  background: linear-gradient(180deg, var(--pdx-accent), #FF8A5C);
}

.page-products .matrix-card--goals::before {
  background: linear-gradient(180deg, var(--pdx-purple), var(--pdx-teal));
}

.page-products .matrix-card--rounds::before {
  background: linear-gradient(180deg, var(--pdx-wine), var(--pdx-accent));
}

.page-products .matrix-card:hover {
  transform: translateY(-6px) rotate(0.3deg);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
  border-color: rgba(0, 224, 124, 0.35);
}

.page-products .matrix-card__visual {
  flex-shrink: 0;
  background: #071A15;
  overflow: hidden;
}

.page-products .matrix-card__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.page-products .matrix-card:hover .matrix-card__visual img {
  transform: scale(1.035);
}

.page-products .matrix-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 22px 22px;
}

.page-products .matrix-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-products .matrix-card__subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pdx-muted);
}

.page-products .matrix-card__content h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.page-products .matrix-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--pdx-muted);
}

.page-products .matrix-card__details {
  width: 100%;
  margin-top: 6px;
  border-top: 1px dashed rgba(242, 247, 242, 0.14);
  padding-top: 10px;
  font-size: 0.875rem;
}

.page-products .matrix-card__summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--pdx-primary);
  list-style: none;
  user-select: none;
}

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

.page-products .matrix-card__summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 224, 124, 0.14);
  color: var(--pdx-primary);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--pdx-transition);
}

.page-products .matrix-card__details[open] .matrix-card__summary::before {
  transform: rotate(45deg);
  background: var(--pdx-accent);
  color: #fff;
}

.page-products .matrix-card__list {
  margin: 8px 0 2px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-products .matrix-card__list li {
  position: relative;
  padding-left: 18px;
  color: var(--pdx-text);
  line-height: 1.6;
  font-size: 0.875rem;
}

.page-products .matrix-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pdx-primary);
}

.page-products .matrix-card--possession .matrix-card__list li::before { background: var(--pdx-accent); }
.page-products .matrix-card--goals .matrix-card__list li::before { background: var(--pdx-purple); }
.page-products .matrix-card--rounds .matrix-card__list li::before { background: var(--pdx-wine); }

/* 实时数据演示 */
.page-products .products-demo {
  background:
    radial-gradient(circle at 80% 10%, rgba(122, 79, 255, 0.09), transparent 50%),
    radial-gradient(circle at 12% 90%, rgba(255, 108, 47, 0.09), transparent 42%);
}

.page-products .demo-panel {
  position: relative;
  border-radius: var(--pdx-radius-lg);
  background: rgba(7, 22, 18, 0.82);
  border: 1px solid var(--pdx-border);
  box-shadow: var(--shadow-card);
  padding: 18px 16px 14px;
  overflow: hidden;
}

.page-products .demo-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pdx-primary), var(--pdx-accent), transparent);
}

.page-products .demo-panel__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.page-products .demo-panel__play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 9px 20px;
  border-radius: var(--pdx-radius-pill, 999px);
  border: 1px solid rgba(0, 224, 124, 0.5);
  background: rgba(0, 224, 124, 0.1);
  color: var(--pdx-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--pdx-transition), box-shadow var(--pdx-transition);
}

.page-products .demo-panel__play:hover {
  background: rgba(0, 224, 124, 0.22);
  box-shadow: 0 0 0 6px rgba(0, 224, 124, 0.06);
}

.page-products .demo-panel__play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pdx-primary);
  color: #06130E;
  font-size: 0.75rem;
  padding-left: 3px;
}

.page-products .demo-panel__legend {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--pdx-muted);
}

.page-products .demo-panel__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.page-products .demo-panel__legend-item::before {
  content: "";
  width: 18px;
  height: 4px;
  border-radius: 4px;
  background: var(--pdx-teal);
}

.page-products .demo-panel__legend-item--possession::before {
  background: linear-gradient(90deg, var(--pdx-teal), var(--pdx-primary), var(--pdx-accent));
}

.page-products .demo-panel__legend-item--goal::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pdx-accent);
}

.page-products .demo-panel__chart {
  width: 100%;
  overflow: hidden;
  border-radius: var(--pdx-radius-sm);
  background: rgba(242, 247, 242, 0.03);
}

.page-products .demo-panel__chart svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 240px;
}

.page-products .demo-panel__grid line {
  stroke: rgba(242, 247, 242, 0.07);
  stroke-width: 1;
}

.page-products .demo-panel__area {
  animation: demoAreaPulse 4s ease-in-out infinite;
}

@keyframes demoAreaPulse {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.page-products .demo-panel__line {
  filter: drop-shadow(0 4px 12px rgba(0, 224, 124, 0.28));
}

.page-products .demo-panel__goal-mark {
  animation: goalPulse 2.2s ease-in-out infinite;
}

.page-products .demo-panel__goal-mark--two {
  animation-delay: 0.9s;
}

@keyframes goalPulse {
  0%, 100% { opacity: 0.7; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

.page-products .demo-panel__axis {
  display: flex;
  justify-content: space-between;
  padding: 10px 4px 0;
  font-size: 0.75rem;
  color: var(--pdx-muted);
  font-variant-numeric: tabular-nums;
}

.page-products .demo-panel__note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: var(--pdx-radius-sm);
  background: rgba(255, 108, 47, 0.07);
  border-inline-start: 3px solid var(--pdx-accent);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--pdx-muted);
}

/* 版本与兼容性 */
.page-products .compat-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-products .compat-grid__visual {
  flex-shrink: 0;
  border-radius: var(--pdx-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pdx-border);
  background: #071A15;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

.page-products .compat-grid__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.page-products .compat-grid__entries {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-products .compat-entry {
  position: relative;
  padding: 22px 22px 20px 24px;
  border-radius: var(--pdx-radius-lg);
  background: linear-gradient(135deg, rgba(11, 31, 26, 0.9), rgba(20, 45, 38, 0.82));
  border: 1px solid var(--pdx-border);
  transition: border-color var(--pdx-transition), transform var(--pdx-transition);
}

.page-products .compat-entry:hover {
  border-color: rgba(255, 108, 47, 0.42);
  transform: translateX(5px);
}

.page-products .compat-entry__index {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 12px;
  border-radius: var(--pdx-radius-pill, 999px);
  background: rgba(0, 179, 166, 0.14);
  color: var(--pdx-teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-products .compat-entry:nth-child(2) .compat-entry__index {
  background: rgba(122, 79, 255, 0.16);
  color: #A98AFF;
}

.page-products .compat-entry:nth-child(3) .compat-entry__index {
  background: rgba(0, 224, 124, 0.14);
  color: var(--pdx-primary);
}

.page-products .compat-entry h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
}

.page-products .compat-entry p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--pdx-muted);
}

/* 服务支持 */
.page-products .products-support {
  background:
    linear-gradient(rgba(0, 224, 124, 0.06), transparent 60%),
    radial-gradient(circle at 50% 120%, rgba(0, 179, 166, 0.1), transparent 60%);
}

.page-products .support-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-products .support-panel__col {
  position: relative;
  flex: 1;
  padding: 28px 24px;
  border-radius: var(--pdx-radius-lg);
  background: rgba(11, 31, 26, 0.72);
  border: 1px solid var(--pdx-border);
  overflow: hidden;
}

.page-products .support-panel__col--accent {
  background: linear-gradient(140deg, rgba(255, 108, 47, 0.1), rgba(11, 31, 26, 0.86));
  border-color: rgba(255, 108, 47, 0.32);
}

.page-products .support-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 224, 124, 0.12);
  color: var(--pdx-primary);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.page-products .support-panel__col--accent .support-panel__icon {
  background: rgba(255, 108, 47, 0.14);
  color: var(--pdx-accent);
}

.page-products .support-panel h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
}

.page-products .support-panel__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-products .support-panel__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--pdx-text);
}

.page-products .support-panel__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--pdx-primary);
  transform: rotate(45deg);
}

.page-products .support-panel__col--accent .support-panel__list li::before {
  background: var(--pdx-accent);
}

/* 相关导航 */
.page-products .products-relnav {
  padding: 0 0 var(--space-lg);
}

.page-products .products-relnav__label {
  margin: 0 0 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pdx-muted);
}

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

.page-products .products-relnav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: var(--pdx-radius-pill, 999px);
  background: rgba(242, 247, 242, 0.04);
  border: 1px solid var(--pdx-border);
  color: var(--pdx-text);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--pdx-transition), border-color var(--pdx-transition), transform var(--pdx-transition);
}

.page-products .products-relnav__link:hover {
  background: rgba(0, 224, 124, 0.12);
  border-color: rgba(0, 224, 124, 0.45);
  transform: translateY(-2px);
}

/* 桌面端以上布局 */
@media (min-width: 768px) {
  .page-products .section {
    padding: var(--space-xl) 0;
  }

  .page-products .section-index {
    font-size: 3.75rem;
  }

  .page-products .section-title {
    font-size: 2.25rem;
  }

  .page-products .section-description {
    font-size: 1rem;
  }

  .page-products .products-hero {
    padding: 72px 0 72px;
  }

  .page-products .products-hero__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 56px;
  }

  .page-products .products-hero__copy {
    flex: 1.1;
  }

  .page-products .products-hero__stats {
    flex: 0.9;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 8px;
  }

  .page-products .matrix-stack {
    gap: 40px;
  }

  .page-products .matrix-card:nth-child(odd) {
    transform: translateX(-18px);
  }

  .page-products .matrix-card:nth-child(even) {
    transform: translateX(18px);
  }

  .page-products .matrix-card:nth-child(odd):hover {
    transform: translateX(-18px) translateY(-7px) rotate(0.3deg);
  }

  .page-products .matrix-card:nth-child(even):hover {
    transform: translateX(18px) translateY(-7px) rotate(-0.3deg);
  }

  .page-products .matrix-card {
    flex-direction: row;
    align-items: stretch;
  }

  .page-products .matrix-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .page-products .matrix-card__visual {
    flex: 0 0 42%;
    min-height: 340px;
  }

  .page-products .matrix-card--possession .matrix-card__visual {
    flex-basis: 44%;
  }

  .page-products .matrix-card__visual img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .page-products .matrix-card__content {
    flex: 1;
    justify-content: center;
    padding: 36px 40px;
  }

  .page-products .demo-panel {
    padding: 26px 24px 20px;
  }

  .page-products .compat-grid {
    flex-direction: row;
    align-items: center;
    gap: 44px;
  }

  .page-products .compat-grid__visual {
    flex: 0 0 42%;
  }

  .page-products .compat-grid__entries {
    flex: 1;
    gap: 20px;
  }

  .page-products .support-panel {
    flex-direction: row;
    gap: 24px;
  }

  .page-products .support-panel__col {
    padding: 36px 32px;
  }
}

@media (min-width: 1080px) {
  .page-products .products-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .page-products .matrix-card__visual {
    flex-basis: 44%;
  }

  .page-products .matrix-card__content {
    padding: 44px 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .hero-line,
  .page-products .demo-panel__area,
  .page-products .demo-panel__goal-mark,
  .page-products .products-hero__scroll-hint em,
  .page-products .matrix-card__visual img,
  .page-products .matrix-card:hover {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}

.page-products {
  --pdx-radius-pill: var(--pdx-radius-lg);
}
