/* ============================================================
   page-bangzhu-zhongxin.css — 帮助中心 · 云朵拟态 (hz-*)
   与首页同系视觉，独立杂志式布局
   ============================================================ */

html.theme-pearl-elegance .pe-help-page {
  --hz-bg: #f6f1ec;
  --hz-surface: #fffdfb;
  --hz-ink: #1c1a17;
  --hz-muted: #7a736c;
  --hz-border: rgba(28, 26, 23, 0.1);
  --hz-border-strong: rgba(28, 26, 23, 0.2);
  --hz-shadow: 0 26px 60px -30px rgba(28, 26, 23, 0.24);
  --hz-shadow-sm: 0 14px 32px -18px rgba(28, 26, 23, 0.18);
  --hz-clay: #c98f6b;
  --hz-sage: #7f9a76;
  --hz-sky: #7f97b8;
  --hz-sun: #d9a53f;
  --hz-sans: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
  font-family: var(--hz-sans);
  background: var(--hz-bg);
  padding-bottom: 0;
}

.pe-help-page .container {
  max-width: 1360px;
}

/* —— 云朵 —— */
.hz-cloud {
  position: absolute;
  width: 76px;
  height: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #eee7e2 100%);
  border-radius: 999px;
  box-shadow: 0 16px 28px -12px rgba(28, 26, 23, 0.22);
  animation: hz-float 8s ease-in-out infinite;
  pointer-events: none;
}

.hz-cloud::before,
.hz-cloud::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.hz-cloud::before { width: 42px; height: 42px; top: -21px; left: 6px; }
.hz-cloud::after { width: 30px; height: 30px; top: -15px; left: 42px; }

.hz-cloud--sm { width: 44px; height: 18px; }
.hz-cloud--sm::before { width: 24px; height: 24px; top: -12px; left: 4px; }
.hz-cloud--sm::after { width: 17px; height: 17px; top: -8px; left: 24px; }

.hz-cloud--md { width: 62px; height: 24px; }
.hz-cloud--md::before { width: 34px; height: 34px; top: -17px; left: 5px; }
.hz-cloud--md::after { width: 24px; height: 24px; top: -12px; left: 34px; }

.hz-cloud--lg { width: 112px; height: 44px; }
.hz-cloud--lg::before { width: 62px; height: 62px; top: -31px; left: 10px; }
.hz-cloud--lg::after { width: 44px; height: 44px; top: -22px; left: 62px; }

@keyframes hz-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* —— 描边角标 —— */
.hz-frame {
  position: absolute;
  inset: -10px;
  pointer-events: none;
}

.hz-frame__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 0 solid var(--hz-border-strong);
}

.hz-frame__corner--tl { top: 0; left: 0; border-top-width: 1.5px; border-left-width: 1.5px; border-radius: 6px 0 0 0; }
.hz-frame__corner--tr { top: 0; right: 0; border-top-width: 1.5px; border-right-width: 1.5px; border-radius: 0 6px 0 0; }
.hz-frame__corner--bl { bottom: 0; left: 0; border-bottom-width: 1.5px; border-left-width: 1.5px; border-radius: 0 0 0 6px; }
.hz-frame__corner--br { bottom: 0; right: 0; border-bottom-width: 1.5px; border-right-width: 1.5px; border-radius: 0 0 6px 0; }

/* —— 通用排版 / 按钮 —— */
.hz-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 24px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--hz-ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--hz-border-strong);
}

.hz-head {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto clamp(32px, 5vw, 52px);
}

.hz-head--onlight::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hz-clay), var(--hz-sun));
}

.hz-head__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hz-clay);
}

.hz-head__title {
  margin: 0 0 14px;
  font-family: var(--hz-sans);
  font-weight: 800;
  font-size: clamp(26px, 3.8vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--hz-ink);
}

.hz-head__sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--hz-muted);
}

.hz-head__sub a,
.pe-help-page .hz-zone__sub a,
.pe-help-page .hz-faq__panel a,
.pe-help-page .hz-hero__sub a {
  color: var(--hz-clay);
  font-weight: 700;
}

.hz-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 15px 28px;
  border: none;
  border-radius: 999px;
  font-family: var(--hz-sans);
  font-weight: 700;
  font-size: 15px;
  color: #fffdfb;
  background: #18140f;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 34px -14px rgba(24, 20, 15, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hz-btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -16px rgba(24, 20, 15, 0.55);
  color: #fffdfb;
}

.hz-btn-dark--onlight {
  color: #1c1a17;
  background: #fffdfb;
  box-shadow: 0 16px 34px -14px rgba(0, 0, 0, 0.4);
}

.hz-btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--hz-ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--hz-border-strong);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hz-btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  color: var(--hz-ink);
}

.hz-btn-outline .hz-frame { inset: -7px; }

.hz-link-quiet {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 253, 251, 0.86);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hz-link-quiet:hover { color: #fffdfb; }

/* —— ① 首屏 —— */
.hz-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(92vh, 900px);
  padding: clamp(120px, 14vw, 150px) 0 clamp(64px, 8vw, 80px);
  background: radial-gradient(130% 100% at 50% -10%, #f3ebe6 0%, #ece3e2 45%, #ede7e3 75%, #f6f1ec 100%);
}

html.theme-pearl-elegance:has(#page-bangzhu) .pe-help-page .hz-hero {
  margin-top: calc(-1 * var(--nav-height));
}

.hz-hero__clouds { position: absolute; inset: 0; z-index: 0; }
.hz-hero__clouds .hz-cloud:nth-child(1) { top: 12%; left: 4%; animation-delay: 0s; }
.hz-hero__clouds .hz-cloud:nth-child(2) { top: 22%; left: 12%; animation-delay: 1.2s; }
.hz-hero__clouds .hz-cloud:nth-child(3) { top: 8%; right: 6%; animation-delay: 0.6s; }
.hz-hero__clouds .hz-cloud:nth-child(4) { top: 48%; right: 4%; animation-delay: 1.6s; }
.hz-hero__clouds .hz-cloud:nth-child(5) { top: 72%; left: 2%; animation-delay: 0.9s; }

.hz-hero__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding-inline: clamp(24px, 6vw, 88px);
}

.hz-hero__grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.hz-hero__col-text {
  flex: 0 0 auto;
  width: min(720px, 100%);
}

.hz-hero__col-panel {
  flex: 0 0 auto;
  width: 380px;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
}

.hz-hero__title {
  margin: 0 0 18px;
  font-family: var(--hz-sans);
  font-weight: 800;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--hz-ink);
}

.hz-hero__role {
  margin: 0 0 16px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  color: #46413b;
}

.hz-hero__sub {
  margin: 0 0 24px;
  max-width: 50ch;
  font-size: clamp(14.5px, 1.3vw, 16px);
  line-height: 1.8;
  color: var(--hz-muted);
}

.hz-hero__sub code {
  font-size: 0.9em;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--hz-border);
  color: #46413b;
  font-weight: 600;
}

.hz-hero__points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hz-hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hz-ink);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--hz-border);
}

.hz-hero__points i { width: 14px; height: 14px; color: var(--hz-sage); }

.hz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.hz-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 4vh, 36px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hz-muted);
  animation: hz-scroll-bounce 2.2s ease-in-out infinite;
}

.hz-hero__scroll i { width: 16px; height: 16px; }

@keyframes hz-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* —— 导航枢纽卡 —— */
.hz-hub {
  width: 100%;
  max-width: 380px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--hz-surface);
  border: 1px solid var(--hz-border);
  box-shadow: var(--hz-shadow);
}

.hz-hub__head {
  padding: clamp(20px, 2.8vw, 26px) clamp(22px, 3vw, 28px) clamp(14px, 2vw, 18px);
  border-bottom: 1px solid var(--hz-border);
  background: linear-gradient(180deg, #fff 0%, #faf6f2 100%);
}

.hz-hub__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hz-ink);
  background: var(--hz-sun);
}

.hz-hub__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--hz-ink);
}

.hz-hub__list {
  display: flex;
  flex-direction: column;
}

.hz-hub__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px clamp(20px, 2.8vw, 26px);
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--hz-border);
  transition: background 0.2s ease;
}

.hz-hub__item--last { border-bottom: none; }

.hz-hub__item:hover {
  background: #faf6f2;
}

.hz-hub__ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f6f2ee;
  border: 1px solid var(--hz-border);
  color: var(--hz-clay);
}

.hz-hub__ico i { width: 18px; height: 18px; }

.hz-hub__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hz-hub__text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--hz-ink);
}

.hz-hub__text small {
  font-size: 12px;
  color: var(--hz-muted);
}

.hz-hub__arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--hz-muted);
}

.hz-hub__foot {
  padding: 14px clamp(20px, 2.8vw, 26px);
  background: #1c1a17;
}

.hz-hub__foot a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 253, 251, 0.88);
  text-decoration: none;
}

.hz-hub__foot a:hover { color: #fffdfb; }
.hz-hub__foot i { width: 15px; height: 15px; }

/* —— ② 轨道导览 —— */
.hz-track {
  padding: clamp(48px, 8vw, 80px) 0;
  position: relative;
}

.hz-track::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 143, 107, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hz-track .container { position: relative; z-index: 1; }

.hz-track__rail {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(20px, 3vw, 28px) 0;
}

.hz-track__line {
  display: none;
}

.hz-track__stop {
  flex: 1 1 140px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: clamp(18px, 2.4vw, 24px) clamp(14px, 2vw, 18px);
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  background: var(--hz-surface);
  border: 1px solid var(--hz-border);
  box-shadow: var(--hz-shadow-sm);
  transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.hz-track__stop:hover {
  transform: translateY(-4px);
  border-color: var(--hz-border-strong);
  box-shadow: var(--hz-shadow);
}

.hz-track__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  color: #fffdfb;
  background: #1c1a17;
}

.hz-track__label {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--hz-ink);
}

@media (min-width: 900px) {
  .hz-track__rail {
    flex-wrap: nowrap;
    gap: 0;
    padding: 32px 0;
  }

  .hz-track__line {
    display: block;
    position: absolute;
    top: 54px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--hz-border-strong), transparent);
    pointer-events: none;
  }

  .hz-track__stop {
    flex: 1;
    max-width: none;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 8px;
  }

  .hz-track__stop:hover {
    transform: none;
    box-shadow: none;
    border: none;
  }

  .hz-track__stop:hover .hz-track__dot {
    transform: scale(1.08);
    background: var(--hz-clay);
  }

  .hz-track__dot {
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease, background 0.2s ease;
  }
}

/* —— ③ 杂志式 FAQ —— */
.hz-magazine {
  padding: clamp(40px, 6vw, 64px) 0 clamp(56px, 8vw, 88px);
}

.hz-magazine__wrap {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.hz-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  padding: clamp(18px, 2.4vw, 22px);
  border-radius: 20px;
  background: var(--hz-surface);
  border: 1px solid var(--hz-border);
  box-shadow: var(--hz-shadow-sm);
}

.hz-sidebar__label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hz-muted);
}

.hz-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hz-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--hz-ink);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.hz-sidebar__nav a i {
  width: 16px;
  height: 16px;
  color: var(--hz-clay);
  flex-shrink: 0;
}

.hz-sidebar__nav a:hover {
  background: #f6f2ee;
  color: var(--hz-clay);
}

.hz-body {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
}

.hz-zone {
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

.hz-zone__head {
  margin-bottom: clamp(20px, 3vw, 28px);
  padding-bottom: clamp(16px, 2.4vw, 22px);
  border-bottom: 2px solid var(--hz-border);
}

.hz-zone__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hz-clay);
  background: rgba(201, 143, 107, 0.1);
  border: 1px solid rgba(201, 143, 107, 0.2);
}

.hz-zone__title {
  margin: 0 0 10px;
  font-family: var(--hz-sans);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.25;
  color: var(--hz-ink);
}

.hz-zone__sub {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--hz-muted);
}

.hz-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hz-faq {
  scroll-margin-top: calc(var(--nav-height) + 16px);
  border-radius: 16px;
  background: var(--hz-surface);
  border: 1px solid var(--hz-border);
  box-shadow: var(--hz-shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

.hz-faq:hover { border-color: rgba(201, 143, 107, 0.25); }

.hz-faq[open] {
  border-color: var(--hz-border-strong);
  box-shadow: var(--hz-shadow);
}

.hz-faq__summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(16px, 2.2vw, 20px) clamp(44px, 5vw, 52px) clamp(16px, 2.2vw, 20px) clamp(18px, 2.4vw, 22px);
  cursor: pointer;
  font-size: clamp(15px, 1.45vw, 16px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--hz-ink);
  list-style: none;
  position: relative;
}

.hz-faq__summary::-webkit-details-marker { display: none; }

.hz-faq__summary::after {
  content: '';
  position: absolute;
  right: clamp(18px, 2.4vw, 22px);
  top: 1.4em;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--hz-clay);
  border-bottom: 2px solid var(--hz-clay);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}

.hz-faq[open] .hz-faq__summary::after {
  transform: translateY(-50%) rotate(-135deg);
}

.hz-faq__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #fffdfb;
  background: var(--hz-clay);
}

.hz-faq__panel {
  padding: 0 clamp(18px, 2.4vw, 22px) clamp(18px, 2.4vw, 22px);
  padding-left: calc(clamp(18px, 2.4vw, 22px) + 42px);
  border-top: 1px solid var(--hz-border);
}

.hz-faq__panel p {
  margin: 0;
  padding-top: 14px;
  font-size: 14px;
  line-height: 1.75;
  color: #5c5650;
}

.hz-faq__panel strong {
  color: var(--hz-ink);
  font-weight: 700;
}

/* —— ④ 便利贴快捷入口 —— */
.hz-notes {
  padding: clamp(48px, 8vw, 80px) 0;
  position: relative;
}

.hz-notes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(127, 154, 118, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hz-notes .container { position: relative; z-index: 1; }

.hz-notes__scatter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 22px);
}

.hz-note {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.6vw, 26px);
  border-radius: 18px;
  background: var(--hz-surface);
  border: 1px solid var(--hz-border);
  box-shadow: var(--hz-shadow-sm);
  transform: rotate(-1.5deg);
  transition: transform 0.25s ease;
}

.hz-note:nth-child(2) { transform: rotate(1.2deg); margin-top: 12px; }
.hz-note:nth-child(3) { transform: rotate(-0.8deg); }
.hz-note--wide { grid-column: span 3; transform: rotate(0); margin-top: 0; }

.hz-note:hover { transform: rotate(0) translateY(-3px); }
.hz-note:nth-child(2):hover { transform: translateY(-3px); }

.hz-note--sage { background: linear-gradient(165deg, #f8faf7 0%, #fffdfb 100%); }
.hz-note--sun { background: linear-gradient(165deg, #fffaf2 0%, #fffdfb 100%); }

.hz-note--wide {
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(135deg, #1c1a17 0%, #2a2621 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.hz-note--wide h3 { color: #fffdfb; }
.hz-note--wide p { color: rgba(255, 253, 251, 0.72); }
.hz-note--wide a { color: var(--hz-sun); }
.hz-note--wide .hz-note__ico {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--hz-sun);
}

.hz-note__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #f6f2ee;
  border: 1px solid var(--hz-border);
  color: var(--hz-clay);
  flex-shrink: 0;
}

.hz-note--wide .hz-note__ico { margin-bottom: 0; }

.hz-note__ico i { width: 20px; height: 20px; }

.hz-note h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--hz-ink);
}

.hz-note p {
  margin: 0 0 14px;
  flex: 1;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--hz-muted);
}

.hz-note a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--hz-clay);
  text-decoration: none;
}

.hz-note a i { width: 14px; height: 14px; }
.hz-note a:hover { color: #a86f4a; }

/* —— ⑤ 延伸阅读 —— */
.hz-more {
  padding: clamp(28px, 4vw, 40px) 0 clamp(32px, 5vw, 48px);
}

.hz-more__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hz-more-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--hz-ink);
  text-decoration: none;
  background: var(--hz-surface);
  border: 1px solid var(--hz-border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hz-more-pill:hover {
  transform: translateY(-2px);
  border-color: var(--hz-border-strong);
  color: var(--hz-ink);
}

.hz-more-pill i { width: 16px; height: 16px; color: var(--hz-clay); }

/* —— ⑥ 收束 CTA —— */
.hz-closing {
  position: relative;
  overflow: hidden;
  margin: 0 clamp(16px, 3vw, 24px) clamp(24px, 4vw, 40px);
  padding: clamp(56px, 9vw, 96px) 0;
  border-radius: 36px;
  background: radial-gradient(120% 100% at 50% -10%, #2a2621 0%, #1c1a17 60%);
}

.hz-closing__clouds { position: absolute; inset: 0; z-index: 0; opacity: 0.9; }
.hz-closing__clouds .hz-cloud { background: linear-gradient(180deg, #4a453d, #34302a); box-shadow: none; }
.hz-closing__clouds .hz-cloud::before,
.hz-closing__clouds .hz-cloud::after { background: inherit; }
.hz-closing__clouds .hz-cloud:nth-child(1) { top: 14%; left: 10%; }
.hz-closing__clouds .hz-cloud:nth-child(2) { top: 60%; left: 22%; animation-delay: 1s; }
.hz-closing__clouds .hz-cloud:nth-child(3) { top: 20%; right: 12%; animation-delay: 2s; }

.hz-closing__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.hz-closing__title {
  margin: 0 0 14px;
  font-family: var(--hz-sans);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.25;
  color: #fffdfb;
}

.hz-closing__sub {
  margin: 0 auto 30px;
  max-width: 46ch;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 253, 251, 0.72);
}

.hz-closing__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
}

/* —— fade-in —— */
#page-bangzhu .fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

#page-bangzhu .fade-in.visible {
  opacity: 1;
  transform: none;
}

/* —— 响应式 —— */
@media (max-width: 1080px) {
  .hz-hero__grid {
    flex-direction: column;
    gap: clamp(36px, 8vw, 48px);
  }

  .hz-hero__col-text { width: 100%; text-align: center; }
  .hz-hero__col-panel { width: 100%; justify-content: center; }
  .hz-hero__sub { margin-inline: auto; text-align: left; }
  .hz-hero__points { justify-content: center; }
  .hz-hero__actions { justify-content: center; }

  .hz-magazine__wrap {
    grid-template-columns: 1fr;
  }

  .hz-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 14px 16px;
  }

  .hz-sidebar__label {
    margin: 0;
    width: 100%;
  }

  .hz-sidebar__nav {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .hz-sidebar__nav a {
    flex: 1 1 auto;
    padding: 8px 12px;
    font-size: 12.5px;
  }
}

@media (max-width: 720px) {
  .hz-hero__clouds .hz-cloud:nth-child(2),
  .hz-hero__clouds .hz-cloud:nth-child(5) { display: none; }

  .hz-hero__scroll { display: none; }

  .hz-notes__scatter {
    grid-template-columns: 1fr;
  }

  .hz-note,
  .hz-note:nth-child(2),
  .hz-note:nth-child(3) {
    transform: none;
    margin-top: 0;
  }

  .hz-note--wide {
    flex-direction: column;
  }

  .hz-faq__panel {
    padding-left: clamp(18px, 2.4vw, 22px);
  }

  .hz-closing { margin-inline: 12px; border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  #page-bangzhu .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hz-cloud { animation: none; }
  .hz-hero__scroll { animation: none; }

  .hz-track__stop:hover,
  .hz-note:hover,
  .hz-btn-dark:hover,
  .hz-btn-outline:hover,
  .hz-more-pill:hover {
    transform: none;
  }

  .hz-faq__summary::after { transition: none; }
}
