.page-products{
  --p-glow-a: rgba(155, 77, 255, 0.18);
  --p-glow-b: rgba(0, 229, 255, 0.12);
  --p-gold-soft: rgba(201, 162, 61, 0.14);
  --p-line: rgba(242, 237, 233, 0.08);
  --p-bg-deep: #080C1E;
  background:
    radial-gradient(circle at 15% 20%, rgba(155, 77, 255, 0.10), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(0, 229, 255, 0.06), transparent 35%),
    var(--midnight);
  overflow-x: clip;
}

/* 面包屑 */
.page-products .breadcrumb-products{
  position: relative;
  z-index: 30;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: calc(var(--header-h) + 20px) 24px 0;
}
.page-products .breadcrumb-products .breadcrumb-list{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-products .breadcrumb-products li{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--mist);
}
.page-products .breadcrumb-products li + li::before{
  content: "/";
  color: var(--neon);
  margin-right: 10px;
}
.page-products .breadcrumb-products a{
  color: var(--mist);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.page-products .breadcrumb-products a:hover{
  color: var(--cyan);
  border-color: var(--cyan);
}

/* 通用小标 */
.page-products .section-kicker{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-products .section-kicker::before{
  content: "";
  width: 34px;
  height: 1px;
  background: var(--neon);
  display: inline-block;
}

/* 双端方案总览 */
.page-products .dual-hero{
  position: relative;
  padding: 64px 0 88px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 12, 30, 0.52) 0%, rgba(11, 16, 38, 0.88) 100%);
}
.page-products .dual-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-products .dual-hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.5;
}
.page-products .dual-hero-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(155, 77, 255, 0.35), transparent 45%),
    linear-gradient(100deg, rgba(11, 16, 38, 0.92) 0%, rgba(11, 16, 38, 0.65) 55%, rgba(30, 18, 64, 0.35) 100%);
}
.page-products .dual-hero-inner{
  position: relative;
  z-index: 1;
}
.page-products .dual-hero .section-kicker{
  color: var(--cyan);
}
.page-products .dual-title{
  margin: 0 0 20px;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--smoke);
  text-wrap: balance;
}
.page-products .dual-lead{
  max-width: 660px;
  margin: 0 0 28px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #D8D2D9;
}
.page-products .dual-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* 双端入口卡片 */
.page-products .dual-entry-grid{
  margin-top: 56px;
  display: grid;
  gap: 18px;
}
.page-products .dual-entry{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 26px 30px;
  background: linear-gradient(135deg, rgba(30, 18, 64, 0.95) 0%, rgba(11, 16, 38, 0.85) 100%);
  border-left: 3px solid var(--neon);
  box-shadow: var(--shadow-card);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  text-decoration: none;
  color: var(--smoke);
  transform: rotate(0.4deg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.page-products .dual-entry:hover,
.page-products .dual-entry:focus-visible{
  transform: rotate(0deg) translateY(-4px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-glow);
  outline: none;
}
.page-products .dual-entry-mobile{
  border-left-color: var(--gold);
  transform: rotate(-0.4deg) translateY(0);
}
.page-products .dual-entry-mobile:hover,
.page-products .dual-entry-mobile:focus-visible{
  transform: rotate(0deg) translateY(-4px);
}
.page-products .entry-index{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--mist);
}
.page-products .entry-title{
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.page-products .entry-desc{
  font-size: 14px;
  color: var(--mist);
  margin-top: 6px;
}

/* 电脑版功能特性 */
.page-products .desktop-features{
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.page-products .desktop-features::before{
  content: "";
  position: absolute;
  left: -8%;
  top: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(120deg, var(--abyss), transparent 90%);
  clip-path: polygon(0 0, calc(100% - 70px) 0, 100% 100%, 0 100%);
  z-index: 0;
  pointer-events: none;
}
.page-products .desktop-features-grid{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
}
.page-products .media-frame{
  margin: 0;
  position: relative;
  overflow: hidden;
}
.page-products .media-frame img{
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.page-products .media-frame figcaption{
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mist);
}
.page-products .desktop-media{
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  filter: saturate(0.85) contrast(1.06);
}
.page-products .desktop-copy h2,
.page-products .mobile-copy h2,
.page-products .mapping-copy h2,
.page-products .compat-inner h2,
.page-products .milestones-inner h2{
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--smoke);
}
.page-products .section-lead{
  margin: 0 0 20px;
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--mist);
}

/* 功能列表 */
.page-products .feature-list{
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.page-products .feature-list li{
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 16px;
  background: rgba(30, 18, 64, 0.5);
  border-left: 2px solid var(--neon);
}
.page-products .feature-list .feature-name{
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--smoke);
}
.page-products .feature-list .feature-desc{
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--mist);
}
.page-products .inline-help{
  font-size: 0.92rem;
  color: var(--mist);
}
.page-products .inline-help a,
.page-products .inline-note a{
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.4);
  transition: border-color var(--transition);
}
.page-products .inline-help a:hover,
.page-products .inline-note a:hover{
  border-color: var(--cyan);
}

/* 移动端V3中国版特性 */
.page-products .mobile-features{
  position: relative;
  padding: 96px 0;
  background:
    linear-gradient(115deg, transparent 0%, transparent 20%, rgba(155, 77, 255, 0.06) 20%, rgba(155, 77, 255, 0.06) 100%);
  background-color: var(--abyss);
  overflow: hidden;
}
.page-products .mobile-features-grid{
  display: grid;
  gap: 40px;
  align-items: center;
}
.page-products .mobile-media{
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
}
.page-products .mobile-copy .section-kicker{
  color: var(--neon);
}

/* 黄漫歪歪mh对照表覆盖 */
.page-products .mapping-coverage{
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.page-products .mapping-cover{
  position: absolute;
  right: 0;
  top: 0;
  width: 76%;
  height: 100%;
  z-index: 0;
}
.page-products .mapping-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .mapping-cover::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(11, 16, 38, 0.92) 12%, rgba(11, 16, 38, 0.62) 100%);
}
.page-products .mapping-copy{
  position: relative;
  z-index: 1;
}
.page-products .mapping-copy .section-kicker{
  color: var(--gold);
}
.page-products .mapping-card-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.page-products .mapping-card{
  position: relative;
  padding: 22px 20px;
  background: rgba(11, 16, 38, 0.78);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-card);
}
.page-products .mapping-card h3{
  margin: 10px 0 8px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--smoke);
}
.page-products .mapping-card p{
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--mist);
}
.page-products .map-card-num{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--neon);
}
.page-products .mapping-stats{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin: 28px 0 20px;
  padding: 20px;
  background: rgba(201, 162, 61, 0.06);
  border: 1px solid rgba(201, 162, 61, 0.22);
  list-style: none;
}
.page-products .mapping-stats li{
  position: relative;
  padding-left: 18px;
  font-size: 0.94rem;
  color: #DFD8D2;
}
.page-products .mapping-stats li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3px), calc(100% - 3px) 100%, 0 100%);
}
.page-products .inline-note{
  font-size: 0.92rem;
  color: var(--mist);
}

/* 兼容性矩阵 */
.page-products .compatibility-section{
  padding: 96px 0;
  background:
    linear-gradient(0deg, rgba(155, 77, 255, 0.04), rgba(11, 16, 38, 0.4)),
    var(--midnight);
}
.page-products .compat-inner{
  max-width: 980px;
}
.page-products .compat-lead{
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--mist);
  margin: 0;
}
.page-products .compat-table-wrap{
  margin-top: 32px;
  border: 1px solid rgba(155, 77, 255, 0.3);
  background: rgba(11, 16, 38, 0.5);
}
.page-products .compat-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.page-products .compat-table th,
.page-products .compat-table td{
  padding: 14px 12px;
  border-bottom: 1px solid var(--p-line);
  text-align: left;
  vertical-align: middle;
}
.page-products .compat-table thead th{
  background: rgba(155, 77, 255, 0.1);
  color: var(--smoke);
  font-size: 13px;
  letter-spacing: .06em;
}
.page-products .compat-table tbody tr:last-child th,
.page-products .compat-table tbody tr:last-child td{
  border-bottom: none;
}
.page-products .compat-table tbody th{
  font-weight: 600;
  color: #E4DDE6;
}
.page-products .compat-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.page-products .compat-badge::before{
  content: "";
  width: 6px;
  height: 6px;
  background: currentColor;
}
.page-products .compat-full{
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.4);
}
.page-products .compat-sync{
  color: var(--gold);
  background: rgba(201, 162, 61, 0.1);
  border: 1px solid rgba(201, 162, 61, 0.38);
}
.page-products .compat-browse{
  color: var(--mist);
  background: rgba(169, 159, 173, 0.08);
  border: 1px solid rgba(169, 159, 173, 0.3);
}
.page-products .compat-moderate{
  color: var(--neon);
  background: rgba(155, 77, 255, 0.12);
  border: 1px solid rgba(155, 77, 255, 0.4);
}

/* 版本里程碑 */
.page-products .milestones{
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: var(--abyss);
}
.page-products .milestones-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}
.page-products .milestones-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-products .milestones-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 16, 38, 0.92), rgba(30, 18, 64, 0.74));
}
.page-products .milestones-inner{
  position: relative;
  z-index: 1;
}
.page-products .milestones-inner .section-kicker{
  color: var(--gold);
}
.page-products .milestone-list{
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.page-products .milestone-item{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: rgba(11, 16, 38, 0.78);
  border: 1px solid rgba(201, 162, 61, 0.24);
  box-shadow: var(--shadow-card);
}
.page-products .milestone-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--neon));
}
.page-products .milestone-item:nth-child(3)::before{
  background: linear-gradient(180deg, var(--gold), var(--cyan));
}
.page-products .milestone-version{
  font-family: var(--font-mono);
  font-size: 1.3rem;
  letter-spacing: .08em;
  color: var(--gold);
}
.page-products .milestone-time{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--cyan);
}
.page-products .milestone-desc{
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--mist);
}
.page-products .milestones-footer{
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* 底端支持条 */
.page-products .support-strip{
  padding: 72px 0 88px;
}
.page-products .support-inner{
  max-width: 880px;
}
.page-products .support-inner h2{
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--smoke);
}
.page-products .support-text{
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--mist);
}
.page-products .support-links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.page-products .support-links a{
  color: var(--neon);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.page-products .support-links a:hover{
  border-color: var(--neon);
}
.page-products .support-fineprint{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--p-line);
  font-size: 13px;
  color: #7C7384;
}
.page-products .support-fineprint a{
  color: #7C7384;
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 115, 132, 0.5);
  transition: color var(--transition), border-color var(--transition);
}
.page-products .support-fineprint a:hover{
  color: var(--smoke);
  border-color: var(--smoke);
}

/* 移动端窄屏调整 */
@media (max-width: 680px){
  .page-products .dual-hero-actions .btn{
    display: block;
    width: 100%;
    text-align: center;
  }
  .page-products .feature-list li{
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .page-products .mapping-stats{
    grid-template-columns: 1fr;
  }
  .page-products .compat-table thead{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .page-products .compat-table,
  .page-products .compat-table tbody,
  .page-products .compat-table tr,
  .page-products .compat-table td{
    display: block;
    width: 100%;
  }
  .page-products .compat-table tbody th{
    display: block;
    padding: 8px 0 4px;
    background: rgba(155, 77, 255, 0.12);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .1em;
    color: var(--cyan);
  }
  .page-products .compat-table tr{
    margin-bottom: 16px;
    padding: 8px 16px 16px;
    background: rgba(30, 18, 64, 0.55);
    border-left: 3px solid var(--neon);
  }
  .page-products .compat-table td{
    border: none;
    padding: 4px 0;
  }
  .page-products .compat-table td::before{
    content: attr(data-label);
    display: inline-block;
    min-width: 96px;
    padding-right: 12px;
    color: var(--mist);
    font-size: 12px;
  }
}

/* 平板及以上 */
@media (min-width: 700px){
  .page-products .mapping-stats{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 760px){
  .page-products .mapping-card-grid{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px){
  .page-products .desktop-features-grid{
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
  }
  .page-products .mobile-features-grid{
    grid-template-columns: 1fr 0.85fr;
    gap: 72px;
  }
  .page-products .milestone-list{
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
  }
  .page-products .milestone-list::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 61, 0.55), rgba(155, 77, 255, 0.4), transparent);
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
  }
  .page-products .milestone-item::before{
    width: 5px;
  }
  .page-products .milestone-item{
    padding: 36px 24px 28px;
  }
}

@media (min-width: 1000px){
  .page-products .dual-hero-inner{
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 72px;
    align-items: center;
  }
  .page-products .dual-entry-grid{
    margin-top: 0;
    gap: 24px;
    padding-top: 30px;
  }
  .page-products .dual-entry-mobile{
    transform: rotate(-1deg) translateX(8%) translateY(14px);
  }
  .page-products .dual-entry-desktop{
    transform: rotate(1deg) translateX(-4%);
  }
}
