.page-products {
  --p-red: #E63946;
  --p-orange: #F4A261;
  --p-navy: #1D3557;
  --p-charcoal: #121212;
  --p-fluo: #06D6A0;
  --p-gold: #FFD700;
  --p-cream: #F1FAEE;
  --p-gray: #8D99AE;
  --p-line: rgba(241, 250, 238, 0.12);
  --p-line-light: rgba(29, 53, 87, 0.14);
  --p-bg-panel: rgba(241, 250, 238, 0.06);
  --p-border-radius: 4px;
  --p-font-head: "Oswald", Impact, "Arial Black", sans-serif;
  --p-font-body: "Roboto", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --p-container: 1320px;
  --p-gutter: clamp(1.25rem, 4vw, 3rem);
  --p-section-space: clamp(3.5rem, 8vw, 6rem);
  max-width: 100%;
  overflow-x: hidden;
}

.page-products .container {
  width: min(var(--p-container), 100% - var(--p-gutter) * 2);
  margin-inline: auto;
}

.page-products .section {
  padding-block: var(--p-section-space);
}

.page-products .section-tight {
  padding-block: clamp(2rem, 5vw, 4rem) clamp(2.5rem, 6vw, 5rem);
}

.page-products .section-deep {
  background: var(--p-charcoal);
  position: relative;
  overflow: hidden;
}

.page-products .section-deep::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--p-red), var(--p-orange), var(--p-fluo), var(--p-gold));
  opacity: 0.8;
}

.page-products .section-cream {
  background: var(--p-cream);
}

.page-products .breadcrumbs-wrap {
  padding-top: clamp(1rem, 3vw, 2rem);
}

.page-products .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--p-gray);
}

.page-products .breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-products .breadcrumbs li::after {
  content: "/";
  color: var(--p-gray);
  opacity: 0.6;
}

.page-products .breadcrumbs li:last-child::after {
  display: none;
}

.page-products .breadcrumbs a {
  color: var(--p-gray);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4,0,0.2,1);
}

.page-products .breadcrumbs a:hover {
  color: var(--p-fluo);
}

.page-products .breadcrumbs li[aria-current="page"] {
  color: var(--p-cream);
  font-weight: 500;
}

.page-products .hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.page-products .hero-copy {
  position: relative;
}

.page-products .hero-copy .chapter-no {
  font-family: var(--p-font-head);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--p-red);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.page-products .page-hero-title {
  font-family: var(--p-font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--p-cream);
  margin: 0.25rem 0 1rem;
  letter-spacing: 0.01em;
  max-width: 12ch;
}

.page-products .page-hero-title .title-line {
  display: block;
  color: var(--p-orange);
  font-size: 0.55em;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

.page-products .page-hero-desc {
  font-family: var(--p-font-body);
  color: var(--p-text-body);
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.page-products .hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.page-products .hero-stat-card {
  background: var(--p-bg-panel);
  border-left: 3px solid var(--p-fluo);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  position: relative;
  backdrop-filter: blur(4px);
}

.page-products .hero-stat-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, transparent 50%, var(--p-navy) 50%);
  border-radius: 0 0 4px 0;
}

.page-products .stat-number {
  font-family: var(--p-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--p-fluo);
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
}

.page-products .stat-label {
  font-size: 0.82rem;
  color: var(--p-text-muted);
  margin-top: 0.3rem;
  display: block;
}

.page-products .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.page-products .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-products .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--p-font-head);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  color: var(--p-cream);
  line-height: 1.2;
  background: transparent;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.page-products .btn-primary {
  background: var(--p-red);
  border-color: var(--p-red);
}

.page-products .btn-primary:hover {
  background: #d32f3c;
  border-color: #d32f3c;
  transform: translateY(-2px);
}

.page-products .btn-secondary {
  background: var(--p-orange);
  border-color: var(--p-orange);
  color: var(--p-navy);
}

.page-products .btn-secondary:hover {
  background: #e89350;
  border-color: #e89350;
  transform: translateY(-2px);
}

.page-products .btn-ghost {
  border-color: var(--p-line);
  background: transparent;
  color: var(--p-cream);
}

.page-products .btn-ghost:hover {
  border-color: var(--p-orange);
  color: var(--p-orange);
  transform: translateY(-2px);
}

.page-products .btn-sm {
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
}

.page-products .btn-lg {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.page-products .btn-icon {
  display: inline-flex;
  align-items: center;
}

.page-products .version-note {
  font-family: var(--p-font-body);
  color: var(--p-gray);
  font-size: 0.85rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.page-products .phone-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-products .phone-frame {
  position: relative;
  width: 280px;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(241,250,238,0.08), rgba(18,18,18,0.4));
  border: 1px solid rgba(241,250,238,0.2);
  padding: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), inset 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
}

.page-products .phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background: var(--p-navy);
  overflow: hidden;
  padding: 1rem 0.85rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.page-products .screen-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  pointer-events: none;
}

.page-products .screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-products .screen-time {
  color: var(--p-cream);
  font-size: 0.75rem;
  font-family: var(--p-font-body);
}

.page-products .screen-title {
  font-family: var(--p-font-head);
  color: var(--p-cream);
  font-size: 1.15rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin: 0.25rem 0;
  letter-spacing: 0.04em;
}

.page-products .screen-panel {
  position: relative;
  z-index: 1;
  background: rgba(18,18,18,0.7);
  border-radius: 12px;
  border: 1px solid rgba(241,250,238,0.12);
  padding: 0.6rem 0.7rem;
  backdrop-filter: blur(3px);
}

.page-products .screen-panel.small {
  margin-top: auto;
}

.page-products .screen-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: var(--p-cream);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(241,250,238,0.06);
  padding-block: 0.45rem;
  font-variant-numeric: tabular-nums;
}

.page-products .screen-row:last-child {
  border-bottom: none;
}

.page-products .screen-row.row-head {
  color: var(--p-gray);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-products .card-chip {
  display: inline-block;
  width: 12px;
  height: 10px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
}

.page-products .chip-red {
  background: var(--p-red);
}

.page-products .chip-yellow {
  background: var(--p-gold);
}

.page-products .tag-orange-mini,
.page-products .tag-blue-mini,
.page-products .tag-red-mini {
  font-size: 0.62rem;
  display: inline-block;
  padding: 2px 5px;
  border-radius: 3px;
  text-align: center;
  color: var(--p-cream);
  font-family: var(--p-font-body);
}

.page-products .tag-orange-mini {
  background: var(--p-orange);
  color: var(--p-navy);
}

.page-products .tag-blue-mini {
  background: var(--p-fluo);
  color: var(--p-navy);
}

.page-products .tag-red-mini {
  background: var(--p-red);
}

.page-products .screen-label {
  color: var(--p-gray);
  font-size: 0.65rem;
  margin: 0 0 0.2rem;
  letter-spacing: 0.03em;
}

.page-products .screen-value {
  color: var(--p-cream);
  font-size: 0.9rem;
  margin: 0 0 0.35rem;
  font-family: var(--p-font-body);
}

.page-products .screen-value strong {
  color: var(--p-gold);
}

.page-products .minibar {
  height: 4px;
  background: rgba(241,250,238,0.12);
  border-radius: 2px;
  overflow: hidden;
}

.page-products .minibar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--p-fluo), var(--p-gold));
  border-radius: 2px;
}

.page-products .phone-glow {
  position: absolute;
  inset: -20% -30%;
  background: radial-gradient(circle, rgba(6,214,160,0.14), transparent 60%);
  z-index: -1;
}

.page-products .visual-caption {
  color: var(--p-gray);
  font-size: 0.8rem;
  text-align: center;
  max-width: 30ch;
  line-height: 1.5;
  margin: 0;
}

.page-products .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.75rem;
  border-radius: 3px;
  font-size: 0.78rem;
  font-family: var(--p-font-body);
  font-weight: 500;
  color: var(--p-cream);
  background: rgba(241,250,238,0.1);
  border: 1px solid rgba(241,250,238,0.14);
}

.page-products .tag-primary {
  background: var(--p-red);
  border-color: var(--p-red);
}

.page-products .tag-live {
  background: rgba(6,214,160,0.15);
  border-color: rgba(6,214,160,0.4);
  color: var(--p-fluo);
}

.page-products .tag-hot {
  background: rgba(255,215,0,0.12);
  border-color: rgba(255,215,0,0.35);
  color: var(--p-gold);
}

.page-products .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p-fluo);
  animation: pulse-animation 1.8s infinite;
  display: inline-block;
}

@keyframes pulse-animation {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(6,214,160,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(6,214,160,0); }
}

.page-products .section-head {
  margin-bottom: 2rem;
}

.page-products .split-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem 2rem;
}

.page-products .chapter-no {
  font-family: var(--p-font-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--p-red);
  line-height: 0.85;
  display: block;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.page-products .section-head-meta {
  font-family: var(--p-font-body);
  color: var(--p-red);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-products .section-title {
  font-family: var(--p-font-head);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--p-cream);
  margin: 0 0 0.5rem;
}

.page-products .section-title-cream {
  color: var(--p-cream);
}

.page-products .section-title-dark {
  color: var(--p-navy);
}

.page-products .section-subtitle {
  font-family: var(--p-font-body);
  color: var(--p-gray);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.page-products .section-subtitle-light {
  color: var(--p-text-muted);
}

.page-products .section-subtitle-dark {
  color: var(--p-text-dark-muted);
}

.page-products .head-note {
  color: var(--p-gray);
  font-family: var(--p-font-head);
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin: 0;
  padding: 0.25rem 0;
}

.page-products .compat-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.page-products .compat-table-wrap {
  position: relative;
  background: rgba(18,18,18,0.35);
  border-radius: 8px;
  border: 1px solid var(--p-line);
  overflow: hidden;
}

.page-products .compat-table-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--p-red);
}

.page-products .table-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--p-line);
}

.page-products .table-scroll {
  overflow-x: auto;
  max-width: 100%;
}

.page-products .compat-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--p-font-body);
  font-size: 0.9rem;
  min-width: 620px;
}

.page-products .compat-table th {
  text-align: left;
  padding: 0.9rem 1.25rem;
  color: var(--p-gray);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--p-line);
  white-space: nowrap;
}

.page-products .compat-table td {
  padding: 0.9rem 1.25rem;
  color: var(--p-cream);
  border-bottom: 1px solid rgba(241,250,238,0.06);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.page-products .compat-table tbody tr {
  transition: background-color 0.2s ease;
}

.page-products .compat-table tbody tr:hover {
  background: rgba(6,214,160,0.06);
}

.page-products .compat-table tbody tr:last-child td {
  border-bottom: none;
}

.page-products .league-name {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.page-products .league-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--p-gray);
}

.page-products .dot-red { background: var(--p-red); }
.page-products .dot-blue { background: #4D7CFE; }
.page-products .dot-green { background: var(--p-fluo); }
.page-products .dot-navy { background: var(--p-navy); }
.page-products .dot-gold { background: var(--p-gold); }
.page-products .dot-orange { background: var(--p-orange); }

.page-products .compat-thumb-img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  margin: 0.25rem 0 0 auto;
  opacity: 0.55;
  border-top: 1px solid var(--p-line);
  padding-top: 0.5rem;
}

.page-products .compat-aside {
  display: grid;
  gap: 1.25rem;
  align-content: start;
  grid-template-columns: 1fr;
}

.page-products .mini-panel {
  background: rgba(241,250,238,0.05);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--p-line);
  position: relative;
  overflow: hidden;
}

.page-products .mini-panel::after {
  content: "清单";
  position: absolute;
  right: -10px;
  bottom: -16px;
  font-family: var(--p-font-head);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(241,250,238,0.04);
  pointer-events: none;
}

.page-products .panel-title {
  font-family: var(--p-font-head);
  color: var(--p-cream);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: 0.03em;
}

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

.page-products .panel-list li {
  color: var(--p-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 0.75rem;
  border-left: 2px solid var(--p-fluo);
  font-family: var(--p-font-body);
}

.page-products .panel-list .num {
  color: var(--p-fluo);
  font-weight: 600;
}

.page-products .platform-icons {
  text-align: center;
  padding: 1rem;
}

.page-products .platform-icon-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.85;
  border: 1px solid var(--p-line);
}

.page-products .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.page-products .feature-card {
  background: var(--p-bg-panel);
  border-radius: 8px;
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--p-line);
  border-left: 3px solid var(--p-fluo);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.page-products .feature-card:nth-child(1) {
  border-left-color: var(--p-red);
}

.page-products .feature-card:nth-child(2) {
  border-left-color: var(--p-fluo);
}

.page-products .feature-card:nth-child(3) {
  border-left-color: var(--p-orange);
}

.page-products .feature-card:nth-child(4) {
  border-left-color: var(--p-gold);
}

.page-products .feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(241,250,238,0.2);
}

.page-products .feature-card::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, transparent 50%, rgba(241,250,238,0.06) 50%);
}

.page-products .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(241,250,238,0.08);
  margin-bottom: 0.25rem;
}

.page-products .feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.page-products .feature-title {
  font-family: var(--p-font-head);
  color: var(--p-cream);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
}

.page-products .feature-desc {
  color: var(--p-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
  font-family: var(--p-font-body);
  max-width: 40ch;
}

.page-products .dashboard-strip {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  background: rgba(241,250,238,0.04);
  border-radius: 12px;
  border: 1px solid rgba(241,250,238,0.1);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  position: relative;
  overflow: hidden;
}

.page-products .dashboard-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(6,214,160,0.06) 50%, transparent 70%);
  animation: strip-shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes strip-shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.page-products .dashboard-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(255,215,0,0.3);
}

.page-products .dashboard-strip-text {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.page-products .strip-label {
  color: var(--p-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.page-products .strip-value {
  color: var(--p-cream);
  font-size: 1rem;
  font-family: var(--p-font-body);
  margin: 0 0 0.4rem;
}

.page-products .strip-value .num {
  color: var(--p-fluo);
  font-weight: 700;
}

.page-products .changelog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.page-products .timeline {
  position: relative;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

.page-products .timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--p-red), var(--p-orange), var(--p-fluo));
  opacity: 0.5;
  border-radius: 2px;
}

.page-products .timeline-item {
  position: relative;
}

.page-products .timeline-marker {
  position: absolute;
  left: -1.5rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--p-red);
  border: 2px solid var(--p-navy);
  box-shadow: 0 0 0 2px rgba(230,57,70,0.4);
}

.page-products .timeline-item:nth-child(2) .timeline-marker {
  background: var(--p-fluo);
  box-shadow: 0 0 0 2px rgba(6,214,160,0.4);
}

.page-products .timeline-item:nth-child(3) .timeline-marker {
  background: var(--p-gold);
  box-shadow: 0 0 0 2px rgba(255,215,0,0.4);
}

.page-products .timeline-card {
  background: rgba(241,250,238,0.05);
  border-radius: 8px;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid var(--p-line);
}

.page-products .timeline-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.8rem;
  margin-bottom: 0.85rem;
}

.page-products .timeline-date {
  color: var(--p-gray);
  font-size: 0.8rem;
  margin-left: auto;
}

.page-products .version-badge {
  font-family: var(--p-font-head);
  color: var(--p-cream);
  background: var(--p-navy);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.page-products .timeline-title {
  font-family: var(--p-font-head);
  color: var(--p-cream);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

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

.page-products .timeline-list li {
  color: var(--p-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1rem;
  font-family: var(--p-font-body);
}

.page-products .timeline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  background: var(--p-orange);
  border-radius: 1px;
  transform: rotate(45deg);
}

.page-products .timeline-list .num {
  color: var(--p-fluo);
  font-weight: 600;
}

.page-products .changelog-aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-products .changelog-note {
  background: rgba(241,250,238,0.05);
  padding: 1.4rem;
  border-radius: 8px;
}

.page-products .panel-copy {
  font-family: var(--p-font-body);
  color: var(--p-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.page-products .help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.page-products .help-item {
  background: rgba(241,250,238,0.05);
  border-radius: 6px;
  border: 1px solid var(--p-line);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.page-products .help-item:hover {
  border-color: rgba(244,162,97,0.5);
}

.page-products .help-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.page-products .help-item summary::-webkit-details-marker {
  display: none;
}

.page-products .help-q {
  color: var(--p-cream);
  font-size: 0.98rem;
  font-weight: 500;
  font-family: var(--p-font-body);
}

.page-products .help-arrow {
  color: var(--p-orange);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.page-products .help-item[open] .help-arrow {
  transform: rotate(45deg);
}

.page-products .help-a {
  padding: 0 1.4rem 1rem;
  font-family: var(--p-font-body);
  color: var(--p-text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.page-products .help-a .num {
  color: var(--p-fluo);
  font-weight: 600;
}

.page-products .help-footer {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(241,250,238,0.04);
  border-radius: 8px;
  border: 1px solid var(--p-line);
  padding: 1.2rem 1.5rem;
}

.page-products .help-footer p {
  color: var(--p-cream);
  font-family: var(--p-font-head);
  font-size: 1rem;
  margin: 0;
  letter-spacing: 0.03em;
}

.page-products .download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: clamp(1.25rem, 4vw, 2rem);
}

.page-products .download-platform-card {
  background: var(--p-bg-panel);
  border: 1px solid var(--p-line);
  border-radius: 8px;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  scroll-margin-top: 5rem;
  transition: border-color 0.3s ease, transform 0.2s ease;
  position: relative;
}

.page-products .download-platform-card:nth-child(1) {
  border-left: 3px solid var(--p-fluo);
}

.page-products .download-platform-card:nth-child(2) {
  border-left: 3px solid var(--p-orange);
}

.page-products .download-platform-card:hover {
  border-color: rgba(241,250,238,0.24);
  transform: translateY(-2px);
}

.page-products .platform-card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.page-products .platform-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(241,250,238,0.08);
  border: 1px solid var(--p-line);
  color: var(--p-cream);
  flex-shrink: 0;
}

.page-products .download-platform-card:nth-child(1) .platform-icon-svg {
  color: var(--p-fluo);
}

.page-products .download-platform-card:nth-child(2) .platform-icon-svg {
  color: var(--p-orange);
}

.page-products .platform-card-title {
  font-family: var(--p-font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--p-cream);
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.page-products .platform-card-version {
  font-family: var(--p-font-body);
  color: var(--p-gray);
  font-size: 0.82rem;
  margin: 0.2rem 0 0;
}

.page-products .platform-card-desc {
  color: var(--p-text-muted);
  font-family: var(--p-font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0.85rem 0 0;
}

.page-products .platform-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .page-products .hero-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .page-products .compat-aside {
    grid-template-columns: 1fr 120px;
    align-items: center;
  }

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

  .page-products .platform-icon-img {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .page-products .hero-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  }

  .page-products .compat-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 1.5rem;
  }

  .page-products .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .page-products .changelog-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .page-products .compat-aside {
    grid-template-columns: 1fr;
    position: sticky;
    top: 2rem;
  }

  .page-products .page-hero-title {
    max-width: 14ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .pulse-dot,
  .page-products .dashboard-strip::after,
  .page-products .btn,
  .page-products .btn-primary,
  .page-products .btn-secondary,
  .page-products .btn-ghost,
  .page-products .feature-card,
  .page-products .compat-table tbody tr,
  .page-products .download-platform-card {
    animation: none;
    transition: none;
  }
}

.page-products {
  --p-text-body: currentColor;
  --p-text-dark-muted: currentColor;
  --p-text-muted: currentColor;
}
