.page-products{
  --pd-shift:24px;
  background:var(--night);
  color:var(--f-white);
  font-family:var(--font-body);
  padding-top:calc(var(--nav-top-h) + var(--nav-main-h) + 26px);
  padding-bottom:var(--gap-md);
  overflow-x:hidden;
}

.page-products .breadcrumb{
  margin-bottom:18px;
}

/* ---------- 首屏 ---------- */
.pd-hero{
  padding-bottom:var(--gap-sm);
}
.pd-hero__inner{
  display:grid;
  gap:24px;
}
.pd-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 14px;
  font-size:12px;
  letter-spacing:.2em;
  color:var(--gold-soft);
}
.pd-kicker__bars{
  display:inline-flex;
  gap:3px;
}
.pd-kicker__bars i{
  display:block;
  width:5px;
  height:16px;
}
.pd-kicker__bars i.flag-blue{background:var(--f-blue);}
.pd-kicker__bars i.flag-white{background:var(--f-white);}
.pd-kicker__bars i.flag-red{background:var(--f-red);}
.pd-kicker__bars i.flag-green{background:var(--f-green);}
.pd-kicker__bars i.flag-yellow{background:var(--f-yellow);}

.pd-hero__title-wrap{
  border-left:6px solid var(--gold);
  padding:18px 16px 20px;
  background:linear-gradient(135deg,rgba(233,185,73,.18),rgba(11,18,48,0) 64%);
  clip-path:polygon(0 0,100% 0,100% calc(100% - 20px),calc(100% - 20px) 100%,0 100%);
}
.pd-hero h1{
  margin:0;
  font-family:var(--font-title);
  font-weight:900;
  font-size:clamp(1.85rem,6.2vw,3.4rem);
  line-height:1.12;
  letter-spacing:-.02em;
}
.pd-lede{
  margin:18px 0 0;
  font-size:17px;
  line-height:1.85;
  color:rgba(244,239,226,.88);
  max-width:64ch;
}
.pd-lede--sub{
  margin-top:12px;
  color:var(--gray);
  font-size:15px;
}
.pd-hero__fig{
  margin:0;
  border:var(--bd) solid var(--line);
  box-shadow:var(--hard);
  background:var(--night-2);
}
.pd-hero__fig img{
  display:block;
  width:100%;
  height:auto;
  max-width:100%;
  object-fit:cover;
}
.pd-hero__fig figcaption{
  padding:12px 16px;
  font-size:13px;
  line-height:1.7;
  color:var(--gray);
  border-top:1px solid var(--line);
}

/* ---------- 数字条带 ---------- */
.page-products .stat-band{
  display:grid;
  grid-template-columns:1fr;
  border:var(--bd) solid var(--line);
  background:var(--night-2);
  box-shadow:var(--hard);
  margin-top:var(--gap-sm);
}
.page-products .stat-band .stat{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:16px 18px;
  border-bottom:1px solid var(--line);
}
.page-products .stat-band .stat:last-child{
  border-bottom:0;
}
.page-products .stat-band .stat__num{
  font-family:var(--font-mono);
  font-variant-numeric:tabular-nums;
  font-size:30px;
  line-height:1;
  color:var(--gold);
}
.page-products .stat-band .stat__label{
  font-size:13px;
  line-height:1.7;
  color:var(--gray);
}

/* ---------- 目录 ---------- */
.pd-toc{
  position:sticky;
  top:calc(var(--nav-top-h) + var(--nav-main-h));
  z-index:6;
  margin:var(--gap-sm) 0 0;
  background:rgba(11,18,48,.95);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.pd-toc__inner{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding:10px 0;
}
.page-products .pd-toc .toc__link{
  flex:0 0 auto;
  display:inline-block;
  padding:6px 12px;
  border:2px solid var(--line);
  font-size:13px;
  color:rgba(244,239,226,.78);
  text-decoration:none;
  font-family:var(--font-mono);
  font-variant-numeric:tabular-nums;
  transition:border-color .12s linear,color .12s linear,background-color .12s linear;
}
.page-products .pd-toc .toc__link:hover,
.page-products .pd-toc .toc__link:focus-visible{
  border-color:var(--gold);
  color:var(--f-white);
}
.page-products .pd-toc .toc__link[aria-current="true"]{
  border-color:var(--gold);
  background:rgba(233,185,73,.14);
  color:var(--gold);
}

/* ---------- 章节骨架 ---------- */
.pd-flow{
  padding-top:var(--gap-sm);
}
.pd-chapter{
  padding:22px 16px 26px;
  margin-bottom:var(--gap-md);
}
.page-products .pd-chapter:last-of-type{
  margin-bottom:var(--gap-sm);
}
.page-products .chapter{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:10px;
}
.page-products .chapter__no{
  font-family:var(--font-mono);
  font-variant-numeric:tabular-nums;
  font-size:40px;
  line-height:1;
  color:var(--gold);
  letter-spacing:-.02em;
}
.page-products .vertical-note{
  writing-mode:vertical-rl;
  font-size:13px;
  letter-spacing:.35em;
  color:var(--gold-soft);
  margin:0;
  padding-top:4px;
  max-height:120px;
}
.pd-chapter h2{
  margin:6px 0 14px;
  font-family:var(--font-title);
  font-weight:900;
  font-size:clamp(1.3rem,4.4vw,2rem);
  line-height:1.24;
  letter-spacing:-.01em;
}
.page-products .chapter__body p{
  margin:0 0 1.4em;
  font-size:16px;
  line-height:1.85;
  color:rgba(244,239,226,.86);
}
.page-products .chapter__body p:last-child{
  margin-bottom:0;
}
.pd-chapter a,
.pd-closing a{
  color:var(--gold-soft);
  text-decoration:none;
  border-bottom:2px solid rgba(233,185,73,.45);
}
.pd-chapter a:hover,
.pd-closing a:hover{
  color:var(--gold);
  border-bottom-color:var(--gold);
}
.pd-note{
  margin:18px 0 0;
  padding:12px 14px;
  border-left:4px solid var(--gold);
  background:rgba(233,185,73,.08);
  font-size:14px;
  line-height:1.8;
  color:rgba(244,239,226,.82);
}
.pd-note--tight{
  margin-top:14px;
}

/* ---------- 三段阶梯 ---------- */
.pd-ladder{
  margin-top:22px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  padding-bottom:10px;
}
.pd-ladder__rail{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(236px,1fr);
  align-items:end;
  gap:16px;
  list-style:none;
  margin:0;
  padding:4px 8px 6px 2px;
}
.pd-step{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:24px 18px 20px;
  border:var(--bd) solid var(--line);
  background:var(--night-2);
  box-shadow:var(--hard);
  transition:border-color .12s linear,background-color .12s linear,transform .12s linear;
}
.pd-step::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:6px;
  background:var(--pd-flag,var(--gold));
}
.pd-step--1{--pd-flag:var(--f-blue);}
.pd-step--2{--pd-flag:var(--f-yellow);}
.pd-step--3{--pd-flag:var(--f-flame,var(--flame));}
.pd-step:hover,
.pd-step:focus-within{
  border-color:var(--gold);
  background:#1a2454;
  transform:translateY(-3px);
}
.pd-step__no{
  margin:0;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.2em;
  color:var(--gray);
}
.pd-step__title{
  margin:0;
  font-size:20px;
  font-weight:900;
  color:var(--gold);
}
.pd-step__text{
  margin:0;
  font-size:15px;
  line-height:1.8;
  color:rgba(244,239,226,.86);
}
.pd-step__who{
  margin:auto 0 0;
  padding-top:10px;
  border-top:1px dashed var(--line);
  font-size:13px;
  line-height:1.7;
  color:var(--gold-soft);
  opacity:.8;
  transition:opacity .12s linear;
}
.pd-step:hover .pd-step__who,
.pd-step:focus-within .pd-step__who{
  opacity:1;
}

/* ---------- 图片容器 ---------- */
.pd-figure{
  margin:22px 0;
}
.page-products .pd-figure .figure__media{
  border:var(--bd) solid var(--line);
  box-shadow:var(--hard-gold);
  background:var(--night-2);
  overflow:hidden;
}
.page-products .pd-figure .figure__media img{
  display:block;
  width:100%;
  height:auto;
  max-width:100%;
  object-fit:cover;
}
.page-products .pd-figure .figure__caption{
  margin-top:10px;
  font-size:13px;
  line-height:1.7;
  color:var(--gray);
}

/* ---------- 六层档位 ---------- */
.pd-tiers{
  list-style:none;
  margin:8px 0 0;
  padding:0;
  display:grid;
  gap:10px;
}
.pd-tier{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:6px 14px;
  align-items:start;
  padding:14px 16px;
  border:2px solid var(--line);
  background:var(--night-2);
  transition:border-color .12s linear,background-color .12s linear;
}
.pd-tier:hover{
  border-color:var(--gold);
  background:#1a2454;
}
.pd-tier__no{
  font-family:var(--font-mono);
  font-variant-numeric:tabular-nums;
  font-size:20px;
  line-height:1.4;
  color:var(--gold);
}
.pd-tier__name{
  font-size:17px;
  font-weight:900;
  padding-top:2px;
}
.pd-tier__who{
  grid-column:2;
  font-size:14px;
  line-height:1.8;
  color:rgba(244,239,226,.78);
}

/* ---------- 厅别比率 ---------- */
.pd-halls{
  margin-top:8px;
}
.pd-table-wrap{
  overflow-x:auto;
  border:var(--bd) solid var(--line);
  box-shadow:var(--hard);
  background:var(--night-2);
}
.pd-table{
  width:100%;
  min-width:520px;
  border-collapse:collapse;
  font-size:14px;
}
.pd-table caption{
  padding:12px 14px;
  text-align:left;
  font-size:12px;
  letter-spacing:.18em;
  color:var(--gray);
  border-bottom:1px solid var(--line);
}
.pd-table th,
.pd-table td{
  padding:12px 14px;
  text-align:left;
  vertical-align:top;
  border-bottom:1px solid var(--line);
  line-height:1.7;
}
.pd-table thead th{
  font-size:12px;
  letter-spacing:.16em;
  color:var(--gold-soft);
  background:rgba(42,53,112,.4);
  position:sticky;
  top:0;
}
.pd-table tbody th{
  position:sticky;
  left:0;
  z-index:2;
  background:var(--night-2);
  font-weight:700;
  white-space:nowrap;
}
.pd-table tbody tr:hover th,
.pd-table tbody tr:hover td{
  background:#1a2454;
}
.pd-table td.mono-num,
.pd-table .mono-num{
  font-family:var(--font-mono);
  font-variant-numeric:tabular-nums;
  color:var(--gold);
  white-space:nowrap;
}
.pd-dot{
  display:inline-block;
  width:10px;
  height:10px;
  margin-right:8px;
  vertical-align:middle;
}
.pd-dot.flag-blue{background:var(--f-blue);}
.pd-dot.flag-white{background:var(--f-white);}
.pd-dot.flag-red{background:var(--f-red);}
.pd-dot.flag-green{background:var(--f-green);}
.pd-dot.flag-yellow{background:var(--f-yellow);}
.pd-dot.flag-flame{background:var(--flame);}
.pd-figure--ring{
  margin-top:0;
}

/* ---------- 七日一轮 ---------- */
.pd-cycle{
  margin-top:20px;
}
.pd-week-rule{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:3px;
  margin-bottom:16px;
}
.pd-week-rule__cell{
  display:block;
  height:14px;
  border:2px solid var(--line);
}
.pd-week-rule__cell.flag-blue{background:var(--f-blue);}
.pd-week-rule__cell.flag-white{background:var(--f-white);}
.pd-week-rule__cell.flag-red{background:var(--f-red);}
.pd-week-rule__cell.flag-green{background:var(--f-green);}
.pd-week-rule__cell.flag-yellow{background:var(--f-yellow);}
.pd-week-rule__cell.flag-flame{background:var(--flame);}
.pd-week-rule__cell--gold{
  background:var(--gold);
  box-shadow:0 0 0 2px rgba(255,138,61,.5);
}
.pd-cycle__switch{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}
.pd-day-btn{
  font-family:var(--font-mono);
  font-variant-numeric:tabular-nums;
  font-size:13px;
  padding:8px 12px;
  border:2px solid var(--line);
  background:transparent;
  color:rgba(244,239,226,.8);
  cursor:pointer;
  transition:border-color .12s linear,background-color .12s linear,color .12s linear;
}
.pd-day-btn:hover{
  border-color:var(--gold);
  color:var(--f-white);
}
.pd-day-btn[aria-pressed="true"]{
  border-color:var(--gold);
  background:rgba(233,185,73,.16);
  color:var(--gold);
}
.pd-cycle__body{
  display:grid;
  gap:12px;
}
.pd-day{
  padding:16px;
  border:2px solid var(--line);
  border-left:6px solid var(--gold);
  background:var(--night-2);
  transition:border-color .12s linear,background-color .12s linear;
}
.pd-day:hover{
  border-color:var(--gold);
  background:#1a2454;
}
.pd-day__no{
  margin:0 0 6px;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.18em;
  color:var(--gray);
}
.pd-day h3{
  margin:0 0 8px;
  font-size:17px;
  font-weight:900;
  color:var(--f-white);
}
.pd-day p{
  margin:0;
  font-size:14px;
  line-height:1.8;
  color:rgba(244,239,226,.82);
}

/* ---------- 换厅对照 ---------- */
.pd-cmp{
  margin-top:8px;
  border:var(--bd) solid var(--line);
  box-shadow:var(--hard);
  background:var(--night-2);
}
.pd-cmp__head{
  display:none;
}
.pd-cmp__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-bottom:1px solid var(--line);
  transition:background-color .12s linear;
}
.pd-cmp__row:last-child{
  border-bottom:0;
}
.pd-cmp__row:hover{
  background:rgba(233,185,73,.09);
}
.pd-cmp__cell{
  padding:12px 14px;
  font-size:14px;
  line-height:1.7;
}
.pd-cmp__cell--label{
  grid-column:1 / -1;
  padding-bottom:4px;
  font-size:12px;
  letter-spacing:.16em;
  color:var(--gray);
}
.pd-cmp__cell--old{
  border-right:1px solid var(--line);
  color:rgba(244,239,226,.82);
}
.pd-cmp__cell--new{
  color:var(--f-white);
  font-weight:700;
}
.pd-cmp__row .mono-num{
  font-family:var(--font-mono);
  font-variant-numeric:tabular-nums;
  color:var(--gold);
}

/* ---------- 时间轴 ---------- */
.pd-timeline{
  display:flex;
  gap:0;
  list-style:none;
  margin:22px 0 0;
  padding:0 0 8px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.pd-timeline__tick{
  flex:0 0 auto;
  position:relative;
  min-width:62px;
  padding:26px 6px 8px;
  text-align:center;
  border-top:3px solid var(--line);
}
.pd-timeline__tick::before{
  content:"";
  position:absolute;
  top:-8px;
  left:50%;
  transform:translateX(-50%);
  width:12px;
  height:12px;
  background:var(--night);
  border:3px solid var(--line);
}
.pd-timeline__tick .mono-num{
  font-family:var(--font-mono);
  font-variant-numeric:tabular-nums;
  font-size:14px;
  color:var(--gray);
}
.pd-timeline__tag{
  display:block;
  margin-top:6px;
  font-size:11px;
  letter-spacing:.1em;
  color:var(--gold-soft);
}
.pd-timeline__tick--now{
  border-top-color:var(--gold);
}
.pd-timeline__tick--now::before{
  background:var(--flame);
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(255,138,61,.28);
}
.pd-timeline__tick--now .mono-num{
  color:var(--gold);
  font-size:17px;
}

/* ---------- 月度汇总 ---------- */
.pd-sum{
  display:grid;
  gap:12px;
  margin-top:8px;
}
.pd-sum__item{
  padding:18px 16px;
  border:var(--bd) solid var(--line);
  background:var(--night-2);
  box-shadow:var(--hard);
  transition:border-color .12s linear,background-color .12s linear;
}
.pd-sum__item:hover{
  border-color:var(--gold);
  background:#1a2454;
}
.pd-sum__no{
  margin:0 0 8px;
  font-family:var(--font-mono);
  font-size:26px;
  line-height:1;
  color:var(--gold);
}
.pd-sum__item h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
}
.pd-sum__item p{
  margin:0;
  font-size:14px;
  line-height:1.85;
  color:rgba(244,239,226,.82);
}

/* ---------- 三问三答 ---------- */
.pd-qa{
  margin-top:8px;
}
.pd-qa details{
  border:2px solid var(--line);
  background:var(--night-2);
  margin-bottom:10px;
  transition:border-color .12s linear,background-color .12s linear;
}
.pd-qa details[open]{
  border-color:var(--gold);
  background:#18224f;
}
.pd-qa summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  font-size:16px;
  font-weight:700;
  line-height:1.6;
}
.pd-qa summary::-webkit-details-marker{
  display:none;
}
.pd-qa__mark{
  flex:0 0 auto;
  font-family:var(--font-mono);
  font-size:20px;
  color:var(--gold);
}
.pd-qa details p{
  margin:0;
  padding:0 16px 18px;
  font-size:14px;
  line-height:1.85;
  color:rgba(244,239,226,.84);
  border-top:1px dashed var(--line);
  padding-top:14px;
}

/* ---------- 收束 ---------- */
.pd-closing{
  margin-top:var(--gap-sm);
  padding:24px 18px 28px;
  border:var(--bd) solid var(--gold);
  background:linear-gradient(135deg,rgba(233,185,73,.14),rgba(11,18,48,0) 60%),var(--night-2);
  box-shadow:var(--hard-gold);
}
.pd-closing h2{
  margin:0 0 12px;
  font-family:var(--font-title);
  font-weight:900;
  font-size:clamp(1.25rem,4.2vw,1.9rem);
  line-height:1.26;
}
.pd-closing p{
  margin:0 0 1.4em;
  font-size:16px;
  line-height:1.85;
  color:rgba(244,239,226,.86);
}
.pd-closing__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

/* ---------- 窄屏以上的排布 ---------- */
@media (min-width:640px){
  .page-products .stat-band{
    grid-template-columns:repeat(2,1fr);
  }
  .page-products .stat-band .stat{
    border-bottom:1px solid var(--line);
  }
  .pd-cycle__body{
    grid-template-columns:repeat(2,1fr);
  }
  .pd-sum{
    grid-template-columns:repeat(3,1fr);
  }
  .pd-tiers{
    gap:12px;
  }
  .pd-tier{
    grid-template-columns:64px 160px 1fr;
    align-items:center;
    padding:16px 18px;
  }
  .pd-tier__who{
    grid-column:3;
  }
  .pd-chapter{
    padding:30px 26px 34px;
  }
  .pd-closing{
    padding:32px 28px 36px;
  }
}

@media (min-width:900px){
  .pd-hero__inner{
    grid-template-columns:1.05fr .95fr;
    align-items:start;
    gap:32px;
  }
  .pd-hero__fig{
    margin-top:6px;
  }
  .page-products .stat-band{
    grid-template-columns:repeat(5,1fr);
  }
  .page-products .stat-band .stat{
    border-bottom:0;
    border-right:1px solid var(--line);
  }
  .page-products .stat-band .stat:last-child{
    border-right:0;
  }
  .pd-ladder__rail{
    grid-auto-columns:minmax(260px,1fr);
  }
  .pd-step--1{min-height:220px;}
  .pd-step--2{min-height:260px;}
  .pd-step--3{min-height:300px;}
  .pd-cycle__body{
    grid-template-columns:repeat(3,1fr);
  }
  .pd-cmp__head{
    display:grid;
    grid-template-columns:180px 1fr 1fr;
    background:rgba(42,53,112,.45);
    border-bottom:1px solid var(--line);
  }
  .pd-cmp__head .pd-cmp__cell{
    font-size:12px;
    letter-spacing:.18em;
    color:var(--gold-soft);
  }
  .pd-cmp__head .pd-cmp__cell--new{
    color:var(--gold);
  }
  .pd-cmp__row{
    grid-template-columns:180px 1fr 1fr;
  }
  .pd-cmp__cell--label{
    grid-column:auto;
    padding:16px 18px;
    font-size:14px;
    letter-spacing:0;
    color:rgba(244,239,226,.9);
    font-weight:700;
    border-right:1px solid var(--line);
  }
}

@media (min-width:1024px){
  .page-products .panel-shift{
    margin-left:var(--pd-shift);
  }
  .pd-hero__fig{
    margin-top:22px;
  }
  .pd-cycle__body{
    grid-template-columns:repeat(4,1fr);
  }
  .pd-day{
    padding:18px;
  }
}
<<<END>>>

.page-products {
  --f-flame: var(--flame);
}
