.page-products{
  --p-rule: repeating-linear-gradient(90deg, var(--cabbage-300) 0 8px, transparent 8px 16px);
  background: var(--cabbage-050);
  color: var(--ink-900);
  overflow-x: hidden;
}
.page-products .product-hero{
  padding: 48px 0 64px;
  border-bottom: 1px solid var(--cabbage-300);
  background:
    radial-gradient(circle at 88% 18%, rgba(230,196,90,0.24) 0 90px, transparent 91px),
    linear-gradient(160deg, var(--cabbage-100) 0%, var(--cabbage-050) 58%, #FDFDF8 100%);
  position: relative;
}
.page-products .product-hero::after{
  content: "";
  position: absolute;
  right: 8%;
  bottom: -1px;
  width: 160px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 4px 4px 0 0;
}
.page-products .breadcrumb{
  margin-bottom: 36px;
}
.page-products .hero-frame{
  position: relative;
  max-width: 900px;
  border: 1px solid var(--cabbage-300);
  background: rgba(255,255,255,0.58);
  padding: 32px 22px 28px;
  box-shadow: var(--shadow-md);
}
.page-products .hero-frame::before{
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--cabbage-300);
  pointer-events: none;
}
.page-products .hero-frame-meta{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-headline);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold-600);
  border-bottom: 1px solid var(--cabbage-100);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.page-products .hero-kicker{
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cabbage-700);
  margin-bottom: 12px;
}
.page-products .hero-frame h1{
  font-family: var(--font-headline);
  font-size: clamp(26px, 5.2vw, 44px);
  font-weight: 900;
  line-height: 1.22;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.page-products .hero-desc{
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-500);
  max-width: 620px;
  margin-bottom: 20px;
}
.page-products .hero-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 14px 0 0;
  border-top: 1px solid var(--cabbage-100);
  margin-bottom: 22px;
}
.page-products .hero-meta-item{
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-500);
  position: relative;
  padding-left: 16px;
}
.page-products .hero-meta-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  transform: translateY(-50%);
}
.page-products .hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.page-products .section-download{
  padding: 68px 0 72px;
}
.page-products .section-head{
  margin-bottom: 36px;
}
.page-products .section-label{
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-headline);
  letter-spacing: 0.08em;
  color: var(--cabbage-700);
  margin-bottom: 14px;
}
.page-products .label-num{
  font-size: 46px;
  font-weight: 900;
  color: var(--gold-600);
  line-height: 0.9;
  font-family: var(--font-headline);
}
.page-products .section-title{
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(24px, 4.6vw, 36px);
  line-height: 1.24;
  margin: 0 0 12px;
}
.page-products .section-desc{
  font-family: var(--font-body);
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.75;
  max-width: 580px;
  margin: 0;
}
.page-products .download-grid{
  display: grid;
  gap: 36px;
}
.page-products .dl-card{
  position: relative;
  background: var(--paper);
  border: 1px solid var(--cabbage-300);
  border-top: 0;
  padding: 24px 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
  overflow: hidden;
}
.page-products .dl-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--p-rule);
  opacity: 0.72;
}
.page-products .dl-card::after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border-right: 3px solid var(--gold-400);
  border-bottom: 3px solid var(--gold-400);
}
.page-products .dl-card:hover{
  box-shadow: var(--shadow-md);
  border-color: var(--cabbage-500);
}
.page-products .dl-index{
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-headline);
  font-size: 34px;
  font-weight: 900;
  color: var(--cabbage-300);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
}
.page-products .dl-card--featured{
  background: var(--cabbage-700);
  border-color: var(--cabbage-700);
  color: #F7FBF7;
}
.page-products .dl-card--featured::before{
  opacity: 0.5;
}
.page-products .dl-media{
  border: 1px solid var(--cabbage-100);
  background: var(--cabbage-050);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.page-products .dl-card--featured .dl-media{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.page-products .dl-media img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-products .dl-body{
  position: relative;
  z-index: 1;
}
.page-products .dl-version{
  font-family: var(--font-headline);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold-600);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.page-products .dl-body h3{
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 8px;
}
.page-products .dl-desc{
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.page-products .dl-card--featured .dl-desc,
.page-products .dl-card--featured .dl-points,
.page-products .dl-card--featured .dl-version{
  color: rgba(255,255,255,0.92);
}
.page-products .dl-desc,
.page-products .dl-points{
  transition: color var(--transition-fast);
}
.page-products .dl-points{
  list-style: none;
  margin: 14px 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-products .dl-points li{
  position: relative;
  padding-left: 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-500);
}
.page-products .dl-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--cabbage-300);
  border-radius: 50%;
}
.page-products .dl-card--featured .dl-points li::before{
  background: var(--gold-400);
}
.page-products .dl-card--featured .btn--primary{
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--ink-900);
}
.page-products .dl-card--featured .btn--primary:hover{
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--paper);
}
.page-products .btn{
  position: relative;
}
.page-products .btn-tip{
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold-600);
  background: rgba(255,255,255,0.85);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  opacity: 0.6;
}
.page-products .btn:hover .btn-tip,
.page-products .btn:focus-visible .btn-tip{
  opacity: 1;
  color: var(--cabbage-700);
  background: var(--gold-400);
}
.page-products .section-compare{
  background: var(--navy-800);
  color: var(--paper);
  padding: 68px 0 76px;
}
.page-products .section-head--on-dark .label-text{
  color: var(--cabbage-300);
}
.page-products .section-head--on-dark .label-num{
  color: var(--gold-400);
}
.page-products .section-head--on-dark .section-title{
  color: var(--paper);
}
.page-products .section-head--on-dark .section-desc{
  color: rgba(255,255,255,0.74);
}
.page-products .compare-board{
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.page-products .compare-col{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 24px 20px;
  transition: background var(--transition-base), outline var(--transition-base), transform var(--transition-base);
}
.page-products .compare-col:hover,
.page-products .compare-col:target{
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}
.page-products .compare-col:target{
  outline: 3px solid var(--gold-400);
}
.page-products .compare-col-head{
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.page-products .compare-index{
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-400);
  line-height: 1;
}
.page-products .compare-name{
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
}
.page-products .compare-version{
  margin-left: auto;
  font-family: var(--font-headline);
  font-size: 12px;
  color: var(--cabbage-300);
  letter-spacing: 0.06em;
}
.page-products .compare-spec{
  margin: 0;
}
.page-products .compare-row{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.14);
}
.page-products .compare-row:last-child{
  border-bottom: 0;
}
.page-products .compare-row dt{
  font-family: var(--font-headline);
  font-size: 13px;
  color: var(--cabbage-300);
}
.page-products .compare-row dd{
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--paper);
  margin: 0;
}
.page-products .section-updates{
  padding: 68px 0 72px;
  background: var(--paper);
}
.page-products .timeline{
  position: relative;
  padding-left: 32px;
  margin-top: 34px;
}
.page-products .timeline::before{
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--cabbage-300);
  border-radius: 2px;
}
.page-products .update-item{
  position: relative;
  padding: 0 0 36px;
}
.page-products .update-item:last-child{
  padding-bottom: 0;
}
.page-products .timeline-dot{
  position: absolute;
  left: -34px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 3px var(--paper);
}
.page-products .update-card{
  background: var(--cabbage-050);
  border: 1px solid var(--cabbage-100);
  padding: 20px 20px 18px;
}
.page-products .update-tag{
  font-family: var(--font-headline);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-600);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.page-products .update-card h3{
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
}
.page-products .update-card p{
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 0;
}
.page-products .updates-more{
  margin-top: 26px;
  text-align: right;
}
.page-products .section-archive{
  padding: 68px 0 76px;
  background: var(--olive);
  color: var(--paper);
}
.page-products .section-head--on-olive .label-text{
  color: rgba(255,255,255,0.88);
}
.page-products .section-head--on-olive .label-num{
  color: var(--gold-400);
}
.page-products .section-head--on-olive .section-title{
  color: var(--paper);
}
.page-products .section-head--on-olive .section-desc{
  color: rgba(255,255,255,0.85);
}
.page-products .archive-wrap{
  margin-top: 34px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.24);
  padding: 24px;
  display: grid;
  gap: 20px;
}
.page-products .archive-visual{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-products .archive-visual img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-products .archive-panel summary{
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.3);
  list-style: none;
  transition: color var(--transition-fast);
}
.page-products .archive-panel summary::-webkit-details-marker{
  display: none;
}
.page-products .archive-panel summary:hover{
  color: var(--gold-400);
}
.page-products .archive-panel[open] summary{
  border-bottom-color: var(--gold-400);
}
.page-products .archive-panel-body{
  padding-top: 16px;
}
.page-products .archive-panel-body p{
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.94);
  margin: 0 0 12px;
}
.page-products .archive-panel .btn--ghost{
  border-color: rgba(255,255,255,0.7);
  color: var(--paper);
}
.page-products .archive-panel .btn--ghost:hover{
  background: rgba(255,255,255,0.12);
  border-color: var(--gold-400);
  color: var(--gold-400);
}
.page-products .section-install{
  padding: 68px 0 80px;
  background: linear-gradient(180deg, var(--cabbage-050) 0%, var(--cabbage-100) 100%);
}
.page-products .install-grid{
  margin-top: 34px;
  display: grid;
  gap: 28px;
}
.page-products .install-figure{
  border: 1px solid var(--cabbage-300);
  background: var(--paper);
  padding: 12px;
  display: block;
  max-width: 100%;
}
.page-products .install-figure img{
  display: block;
  width: 100%;
  height: auto;
  max-width: 280px;
}
.page-products .figure-note{
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-500);
  margin: 10px 0 0;
}
.page-products .install-steps{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.page-products .install-steps li{
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.62);
  border-left: 4px solid var(--cabbage-500);
  padding: 16px;
}
.page-products .step-num{
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--ink-900);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-products .install-steps h3{
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 800;
  margin: 2px 0 6px;
}
.page-products .install-steps p{
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 0;
}
.page-products .install-note{
  margin-top: 26px;
  border: 1px dashed var(--gold-600);
  background: rgba(230,196,90,0.12);
  padding: 20px;
  display: grid;
  gap: 14px;
}
.page-products .install-note p{
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-900);
  margin: 0;
}

@media (min-width: 640px){
  .page-products .hero-frame{
    padding: 40px 36px 32px;
  }
  .page-products .dl-card{
    padding: 28px 24px 24px;
  }
  .page-products .download-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .page-products .dl-card:nth-child(3){
    transform: translateX(24px);
  }
  .page-products .archive-wrap{
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 28px;
  }
  .page-products .install-grid{
    grid-template-columns: 280px 1fr;
    align-items: start;
    gap: 28px;
  }
}

@media (min-width: 760px){
  .page-products .product-hero{
    padding: 64px 0 80px;
  }
  .page-products .hero-desc{
    font-size: 16px;
  }
  .page-products .section-download,
  .page-products .section-updates,
  .page-products .section-install{
    padding: 76px 0 84px;
  }
  .page-products .section-compare,
  .page-products .section-archive{
    padding: 76px 0 88px;
  }
  .page-products .compare-board{
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(255,255,255,0.14);
  }
  .page-products .compare-col{
    border: 0;
    border-left: 1px solid rgba(255,255,255,0.14);
  }
  .page-products .compare-col:first-child{
    border-left: 0;
  }
}

@media (min-width: 960px){
  .page-products .download-grid{
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: start;
  }
  .page-products .dl-card:nth-child(2){
    transform: translateY(-28px);
    box-shadow: var(--shadow-md);
  }
  .page-products .dl-card:nth-child(3){
    transform: translateY(28px) translateX(0);
  }
  .page-products .dl-card:nth-child(2):hover{
    box-shadow: var(--shadow-md);
  }
  .page-products .install-steps{
    gap: 18px;
  }
}
