.page-products {
  --products-gap: 1.25rem;
  --products-radius: 20px;
  --products-glow: 0 0 18px rgba(255, 215, 0, 0.28);
  position: relative;
  overflow-x: hidden;
}

/* ===== 面包屑 ===== */
.page-products .breadcrumb {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
}

/* ===== 首屏 Hero ===== */
.page-products .product-hero {
  position: relative;
  padding: 3rem 0 2.5rem;
}

.page-products .product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 215, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-products .product-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

.page-products .hero-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.45;
  pointer-events: none;
}

.page-products .hero-deco--one {
  width: 120px;
  height: 120px;
  background: #FFD700;
  top: -20px;
  right: -30px;
}

.page-products .hero-deco--two {
  width: 80px;
  height: 80px;
  background: #00E5FF;
  bottom: 10%;
  left: 30%;
}

.page-products .hero-copy {
  flex: 1;
  position: relative;
  z-index: 1;
}

.page-products .hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: var(--glow-secondary);
}

.page-products .page-title {
  font-size: 2.2rem;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: var(--color-text);
  text-shadow: var(--glow-text);
}

.page-products .page-abstract {
  color: var(--color-text-dim);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 44rem;
}

/* 下载区域 */
.page-products .download-zone {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
}

.page-products .download-entry {
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: var(--radius-lg);
  background: var(--color-card);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.page-products .download-entry:hover {
  border-color: rgba(255, 215, 0, 0.55);
  box-shadow: var(--products-glow);
}

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

.page-products .platform-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.page-products .download-platform {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.page-products .download-meta {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--color-text-dim);
}

.page-products .download-card-summary {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--gradient-accent);
  color: #0D0221;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-mono);
  cursor: pointer;
  list-style: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.page-products .download-card-summary::-webkit-details-marker {
  display: none;
}

.page-products .download-card-summary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.35);
}

.page-products .download-card[open] .download-card-summary {
  box-shadow: 0 4px 18px rgba(0, 229, 255, 0.3);
}

.page-products .download-card-body {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  color: var(--color-text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

.page-products .download-card-body p + p {
  margin-top: 0.5rem;
}

/* 首屏统计 */
.page-products .hero-stat {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.page-products .hero-stat-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--color-text-dim);
}

.page-products .mono-chip {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Hero 手机图 */
.page-products .hero-figure {
  position: relative;
  margin: 0;
  z-index: 1;
}

.page-products .hero-figure::after {
  content: "";
  position: absolute;
  inset: 1rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.14), rgba(0, 229, 255, 0.1));
  border-radius: 40px;
  filter: blur(30px);
  z-index: -1;
}

.page-products .hero-figure img {
  display: block;
  width: calc(100% - 2rem);
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-products .hero-figure figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-top: 0.85rem;
  font-family: var(--font-mono);
}

/* ===== 导出工具区 ===== */
.page-products .tool-spotlight {
  position: relative;
  padding: 3.5rem 0;
}

.page-products .tool-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.6), rgba(0, 229, 255, 0.04));
  pointer-events: none;
}

.page-products .spotlight-heading,
.page-products .spotlight-body,
.page-products .spotlight-note {
  position: relative;
}

.page-products .section-kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  text-shadow: var(--glow-secondary);
}

.page-products .spotlight-heading h2,
.page-products .login-copy h2,
.page-products .features-heading h2,
.page-products .section-heading h2 {
  font-size: 1.75rem;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.page-products .section-desc {
  color: var(--color-text-dim);
  font-size: 0.98rem;
  line-height: 1.6;
}

.page-products .spotlight-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.page-products .spotlight-figure {
  margin: 0;
}

.page-products .spotlight-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid rgba(0, 229, 255, 0.16);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.08);
}

.page-products .spotlight-figure figcaption,
.page-products .login-figure figcaption,
.page-products .features-figure figcaption,
.page-products .version-figure figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-text-dim);
  text-align: center;
}

.page-products .spotlight-steps {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.page-products .step-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.page-products .step-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
}

.page-products .step-copy h3 {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.page-products .step-copy p {
  font-size: 0.92rem;
  color: var(--color-text-dim);
  line-height: 1.65;
}

.page-products .spotlight-note {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.18);
}

.page-products .spotlight-note p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

.page-products .spotlight-note .mono-chip {
  margin-right: 0.4rem;
}

/* ===== 登录入口优化区 ===== */
.page-products .login-optimize {
  padding: 3rem 0;
  position: relative;
}

.page-products .login-optimize::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(0, 229, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.page-products .login-optimize-inner {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.page-products .login-figure {
  margin: 0;
  order: 1;
}

.page-products .login-figure img {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid rgba(255, 215, 0, 0.16);
}

.page-products .login-copy {
  order: 2;
}

.page-products .login-copy .section-desc {
  margin-bottom: 1.75rem;
}

.page-products .login-path-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.page-products .login-path-steps li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.page-products .path-index {
  flex: 0 0 auto;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #00E5FF);
  color: #0D0221;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-products .path-copy strong {
  display: block;
  color: var(--color-text);
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.page-products .path-copy p {
  font-size: 0.92rem;
  color: var(--color-text-dim);
  line-height: 1.6;
}

/* ===== 功能特性总览 ===== */
.page-products .features-section {
  padding: 3.5rem 0;
  position: relative;
}

.page-products .features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 215, 0, 0.07), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(0, 229, 255, 0.05), transparent 55%);
  pointer-events: none;
}

.page-products .features-heading {
  position: relative;
}

.page-products .features-figure {
  margin: 2rem 0 2.5rem;
}

.page-products .features-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid rgba(255, 215, 0, 0.14);
  box-shadow: 0 0 28px rgba(255, 215, 0, 0.07);
}

.page-products .features-matrix {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.page-products .feature-card {
  position: relative;
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--color-card);
  border: 1px solid rgba(255, 215, 0, 0.14);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
}

.page-products .feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0.5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.page-products .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--products-glow);
}

.page-products .feature-card:hover::after {
  transform: scaleX(1);
}

.page-products .feature-card--featured {
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(26, 11, 46, 1) 60%);
  border-color: rgba(255, 215, 0, 0.34);
  padding: 1.75rem;
}

.page-products .feature-card--accent {
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.08), rgba(26, 11, 46, 1) 60%);
  border-color: rgba(0, 229, 255, 0.25);
}

.page-products .feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--color-primary);
  font-size: 1.3rem;
}

.page-products .feature-card--accent .feature-card-icon {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.2);
  color: var(--color-secondary);
}

.page-products .feature-card h3 {
  font-size: 1.12rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.page-products .feature-card p {
  font-size: 0.92rem;
  color: var(--color-text-dim);
  line-height: 1.65;
}

.page-products .feature-card-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--gradient-accent);
  color: #0D0221;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

/* ===== 版本演进 ===== */
.page-products .version-section {
  padding: 3.5rem 0;
  position: relative;
}

.page-products .version-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(26, 11, 46, 0.7), transparent);
  pointer-events: none;
}

.page-products .version-figure {
  margin: 2rem 0 2.5rem;
}

.page-products .version-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid rgba(0, 229, 255, 0.16);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.06);
}

.page-products .version-timeline {
  position: relative;
  padding-left: 1.75rem;
}

.page-products .version-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

.page-products .version-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.page-products .version-item:last-child {
  margin-bottom: 0;
}

.page-products .version-dot {
  position: absolute;
  left: -1.75rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
  animation: pageProductsPulse 2.4s ease-in-out infinite;
}

@keyframes pageProductsPulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.85);
    transform: scale(1.12);
  }
}

.page-products .version-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--color-card);
  border: 1px solid rgba(255, 215, 0, 0.12);
  box-shadow: var(--shadow-card);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.page-products .version-card:hover {
  border-color: rgba(255, 215, 0, 0.38);
  box-shadow: var(--products-glow);
}

.page-products .version-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.page-products .version-num {
  font-family: var(--font-mono);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-primary);
}

.page-products .version-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--color-secondary);
  font-size: 0.72rem;
  font-family: var(--font-mono);
}

.page-products .version-card p {
  font-size: 0.9rem;
  color: var(--color-text-dim);
  line-height: 1.65;
}

/* ===== 支持引导 ===== */
.page-products .support-bridge {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.8), rgba(0, 229, 255, 0.05));
}

.page-products .support-bridge-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.page-products .support-bridge-inner h2 {
  font-size: 1.7rem;
  color: var(--color-text);
  text-shadow: var(--glow-text);
}

.page-products .support-bridge-inner > p {
  color: var(--color-text-dim);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 45rem;
}

.page-products .support-bridge-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.page-products .support-bridge-links .btn {
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* ===== Tablet 768px ===== */
@media (min-width: 768px) {
  .page-products .product-hero {
    padding: 4rem 0 3rem;
  }

  .page-products .product-hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .page-products .hero-copy {
    flex: 1 1 56%;
  }

  .page-products .hero-figure {
    flex: 0 0 300px;
  }

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

  .page-products .login-optimize-inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .page-products .login-figure {
    flex: 1 1 46%;
    order: 2;
  }

  .page-products .login-figure img {
    max-width: none;
  }

  .page-products .login-copy {
    flex: 1 1 54%;
    order: 1;
  }

  .page-products .spotlight-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
  }

  .page-products .features-matrix {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .page-products .feature-card {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .page-products .feature-card--featured {
    flex: 1 1 100%;
  }
}

/* ===== Desktop 1024px ===== */
@media (min-width: 1024px) {
  .page-products .product-hero-inner {
    gap: 3.5rem;
  }

  .page-products .hero-deco--one {
    width: 180px;
    height: 180px;
    right: 12%;
  }

  .page-products .hero-deco--two {
    left: auto;
    right: 26%;
    bottom: 5%;
  }

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

  .page-products .page-abstract {
    font-size: 1.05rem;
  }

  .page-products .download-zone {
    flex-direction: row;
    max-width: none;
  }

  .page-products .download-entry {
    flex: 1 1 50%;
  }

  .page-products .tool-spotlight {
    padding: 5rem 0;
  }

  .page-products .spotlight-heading h2,
  .page-products .login-copy h2,
  .page-products .features-heading h2,
  .page-products .section-heading h2 {
    font-size: 2.1rem;
  }

  .page-products .features-matrix {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }

  .page-products .feature-card {
    grid-column: span 2;
    margin: 0;
  }

  .page-products .feature-card--featured {
    grid-column: span 3;
    grid-row: span 2;
    margin: 0;
  }

  .page-products .feature-card--accent {
    grid-column: span 3;
    margin: 0;
  }

  .page-products .version-timeline {
    display: flex;
    gap: 1.4rem;
    padding-left: 0;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.3) transparent;
  }

  .page-products .version-timeline::-webkit-scrollbar {
    height: 5px;
  }

  .page-products .version-timeline::-webkit-scrollbar-track {
    background: transparent;
  }

  .page-products .version-timeline::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 4px;
  }

  .page-products .version-timeline::before {
    left: 0;
    right: 0;
    top: 6px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  }

  .page-products .version-item {
    flex: 0 0 300px;
    margin-bottom: 0;
    padding-top: 1.75rem;
  }

  .page-products .version-dot {
    left: 0;
    top: 0;
  }

  .page-products .support-bridge {
    padding: 4.5rem 0;
  }

  .page-products .support-bridge-inner {
    align-items: center;
    text-align: center;
  }

  .page-products .support-bridge-links {
    justify-content: center;
  }
}
