/* =========================================================
   page-home · 首页专属样式
   所有选择器限定在 .page-home 作用域内
   ========================================================= */

/* ---------- 页面上下文 ---------- */
.page-home .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--slate-500);
}

.page-home .breadcrumb > span[aria-current="page"] {
  color: var(--text-900);
  font-weight: 500;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  padding: 22px 0 0;
  background: linear-gradient(180deg, var(--mist-100) 0%, var(--paper) 58%);
}

.page-home .hero__head {
  max-width: 780px;
}

.page-home .hero .eyebrow {
  margin: 0;
}

.page-home .hero__title {
  margin: 10px 0 16px;
  font-size: clamp(30px, 7.2vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--text-900);
}

.page-home .hero__lede {
  max-width: 660px;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate-500);
}

.page-home .hero__split {
  display: grid;
  gap: 40px;
  margin-top: 36px;
}

/* ---------- 三步走廊：纵向时间轴 ---------- */
.page-home .hero__steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 34px;
}

.page-home .timeline__item {
  position: relative;
  isolation: isolate;
}

.page-home .timeline__item::after {
  content: "";
  position: absolute;
  left: 20px;
  top: calc(100% + 4px);
  height: 26px;
  border-left: 1px dashed var(--slate-300);
}

.page-home .timeline__item:last-child::after {
  display: none;
}

.page-home .step-numeral {
  position: relative;
  isolation: isolate;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: clamp(56px, 15vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--brand-600);
}

.page-home .step-numeral::before {
  content: attr(data-num);
  position: absolute;
  left: 6px;
  top: 8px;
  z-index: -1;
  color: var(--brand-100);
}

.page-home .step-title {
  margin: 8px 0 6px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-900);
}

.page-home .step-result {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate-500);
}

.page-home .step-visual {
  margin: 16px 0 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--paper);
}

.page-home .step-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* 折叠面板：轻描边，展开后补一段说明 */
.page-home .accordion {
  margin-top: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-s);
  overflow: hidden;
  background: var(--paper);
}

.page-home .accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: var(--brand-600);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background var(--dur-1) var(--ease);
}

.page-home .accordion__trigger:hover {
  background: var(--brand-100);
}

.page-home .accordion__trigger:focus-visible {
  outline: 2px solid var(--brand-400);
  outline-offset: -2px;
}

.page-home .accordion__icon {
  position: relative;
  flex: none;
  width: 12px;
  height: 12px;
}

.page-home .accordion__icon::before,
.page-home .accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--brand-600);
  border-radius: 1px;
}

.page-home .accordion__icon::before {
  left: 0;
  top: 5px;
  width: 12px;
  height: 2px;
}

.page-home .accordion__icon::after {
  left: 5px;
  top: 0;
  width: 2px;
  height: 12px;
  transition: opacity var(--dur-1) var(--ease);
}

.page-home .accordion__trigger[aria-expanded="true"] .accordion__icon::after {
  opacity: 0;
}

.page-home .accordion__panel {
  overflow: hidden;
  transition: height var(--dur-2) var(--ease);
}

.page-home .accordion__body {
  padding: 0 14px 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-500);
}

.page-home .accordion__body p {
  margin: 0;
}

/* ---------- 首屏右侧演示 ---------- */
.page-home .hero__demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.page-home .phone-mock {
  position: relative;
  width: 100%;
  max-width: 350px;
  padding: 16px 14px 20px;
  border: 1px solid var(--line-mid);
  border-radius: 32px;
  background: var(--ink-900);
  box-shadow: 0 34px 70px -42px rgba(7, 11, 20, 0.6);
}

.page-home .phone-mock__bar {
  display: block;
  width: 74px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(232, 237, 246, 0.26);
}

.page-home .phone-mock__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 18px;
  object-fit: cover;
  background: var(--ink-800);
}

.page-home .phone-mock::after {
  content: "";
  position: absolute;
  inset: 35px 14px 20px;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(79, 139, 255, 0.08) 40%, transparent 72%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.page-home .hero__caption {
  max-width: 320px;
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
  color: var(--slate-500);
}

/* ---------- 首屏底部安全提示带 ---------- */
.page-home .hero__safety {
  margin-top: 52px;
  background: var(--ink-900);
  border-top: 1px solid var(--on-dark-line);
}

.page-home .safe-note--dark {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 0;
  background: transparent;
  border: 0;
  color: var(--on-dark);
}

.page-home .safe-note__icon {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid var(--teal-500);
  border-radius: 50%;
}

.page-home .safe-note__icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--teal-500);
  border-bottom: 1.5px solid var(--teal-500);
  transform: rotate(42deg);
}

.page-home .safe-note__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--on-dark);
}

/* ---------- 回访用户镜像对照 ---------- */
.page-home .mirror-section .section-head {
  max-width: 720px;
}

.page-home .mirror {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.page-home .mirror__col {
  padding: 22px 20px;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-l);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}

.page-home .mirror__col[data-active="true"] {
  border-color: rgba(79, 139, 255, 0.45);
  box-shadow: inset 0 0 0 1px rgba(79, 139, 255, 0.16);
}

.page-home .mirror__title {
  margin: 0 0 14px;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--on-dark-strong);
  border-bottom: 1px solid var(--on-dark-line-strong);
}

.page-home .mirror__row {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--on-dark-line);
}

.page-home .mirror__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-home .mirror__label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--on-dark-muted);
}

.page-home .mirror__value {
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-dark);
}

.page-home .mirror-figure {
  margin: 30px 0 0;
}

.page-home .mirror-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-home .mirror-figure .media-frame__label {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--on-dark-muted);
}

/* ---------- 地址校验徽标 ---------- */
.page-home .badge-board {
  display: grid;
  gap: 16px;
}

.page-home .badge-board__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  background: var(--paper);
}

.page-home .badge-board__title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-900);
}

.page-home .badge-board__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-500);
}

/* ---------- 示例地址面板 ---------- */
.page-home .addr-panel {
  display: grid;
  gap: 22px;
  margin-top: 26px;
  padding: 22px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  background: var(--mist-100);
}

.page-home .addr-panel__label {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--slate-500);
}

.page-home .addr {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-s);
  background: var(--paper);
}

.page-home .addr__text {
  flex: 1 1 200px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text-900);
}

.page-home .addr[data-expanded="true"] .addr__text {
  white-space: normal;
  word-break: break-all;
}

.page-home .addr__toggle {
  flex: none;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: var(--brand-600);
  background: var(--brand-100);
  border: 0;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: background var(--dur-1) var(--ease);
}

.page-home .addr__toggle:hover {
  background: rgba(79, 139, 255, 0.22);
}

.page-home .addr__toggle:focus-visible {
  outline: 2px solid var(--brand-400);
  outline-offset: 2px;
}

.page-home .addr-panel__hint {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--slate-500);
}

.page-home .verify-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .verify-visual img {
  display: block;
  width: 120px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ---------- 路径分流 ---------- */
.page-home .route-split {
  display: grid;
  gap: 18px;
}

.page-home .route-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 26px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  background: var(--paper);
}

.page-home .route-card--accent {
  border-color: rgba(18, 86, 224, 0.24);
  background: linear-gradient(158deg, var(--brand-100) 0%, var(--paper) 64%);
}

.page-home .route-card__tag {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate-500);
}

.page-home .route-card__title {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-900);
}

.page-home .route-card__text {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-500);
}

.page-home .route-card .btn {
  margin-top: auto;
}

/* ---------- 最近更新 ---------- */
.page-home .section-head--row {
  display: grid;
  gap: 16px;
  align-items: end;
}

.page-home .section-head--row .section-title {
  margin-bottom: 0;
}

.page-home .update-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.page-home .update-list__item {
  display: grid;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}

.page-home .update-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-home .update-list__time {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--slate-500);
}

.page-home .update-list__tag {
  padding: 3px 9px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--brand-600);
  background: var(--brand-100);
  border-radius: 999px;
}

.page-home .update-list__title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-900);
}

.page-home .update-list__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-500);
}

/* ---------- 客服与备案 ---------- */
.page-home .service-band {
  display: grid;
  gap: 26px;
  padding: 26px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  background: var(--paper);
}

.page-home .service-band__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-900);
}

.page-home .service-band__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-500);
}

.page-home .service-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.page-home .service-list__row {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-soft);
}

.page-home .service-list__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-home .service-list dt {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate-500);
}

.page-home .service-list dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-900);
}

.page-home .home-legal {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  line-height: 1.75;
  color: var(--slate-500);
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-home .bridge /* 占位，不生成 */ {
    display: none;
  }
}

@media (min-width: 760px) {
  .page-home .badge-board {
    grid-template-columns: 1.05fr 0.95fr 1.15fr;
    align-items: start;
  }

  .page-home .badge-board__item:nth-child(2) {
    margin-top: 22px;
  }

  .page-home .addr-panel {
    grid-template-columns: minmax(0, 1fr) 150px;
    align-items: center;
  }

  .page-home .verify-visual img {
    width: 140px;
  }

  .page-home .route-split {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-home .service-band {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 40px;
    padding: 30px 28px;
  }

  .page-home .update-list__item {
    grid-template-columns: 150px minmax(0, 1fr);
    column-gap: 28px;
    align-items: start;
  }

  .page-home .update-list__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .page-home .section-head--row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 900px) {
  .page-home .hero__split {
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: start;
  }

  .page-home .mirror {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-home .mirror__row {
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: baseline;
    gap: 12px;
  }

  .page-home .mirror__label {
    text-align: left;
  }
}

@media (min-width: 1100px) {
  .page-home .hero__head {
    max-width: 820px;
  }

  .page-home .phone-mock {
    max-width: 380px;
  }
}

/* ---------- 动效收敛 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home .step-numeral::before {
    left: 0;
    top: 0;
  }

  .page-home .accordion__panel,
  .page-home .accordion__trigger,
  .page-home .addr__toggle,
  .page-home .mirror__col {
    transition: none;
  }
}
<<<END>>>

/* =========================================================
   page-home · 首页专属样式
   所有页面专属选择器均限定在 .page-home 作用域内
   ========================================================= */

/* ---------- 页面上下文条 ---------- */
.page-home .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--slate-500);
}

.page-home .breadcrumb > span[aria-current="page"] {
  color: var(--text-900);
  font-weight: 500;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  padding: 8px 0 0;
  background:
    radial-gradient(120% 90% at 82% 12%, rgba(79, 139, 255, 0.12) 0%, rgba(79, 139, 255, 0) 58%),
    linear-gradient(180deg, var(--mist-100) 0%, var(--paper) 62%);
}

.page-home .hero__head {
  max-width: 760px;
  padding: 26px 0 0;
}

.page-home .hero__title {
  margin: 12px 0 16px;
  font-size: clamp(30px, 7.4vw, 56px);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0.01em;
  color: var(--text-900);
}

.page-home .hero__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 22px;
  background: var(--brand-600);
}

.page-home .hero__lede {
  max-width: 640px;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate-500);
}

.page-home .hero__split {
  display: grid;
  gap: 44px;
  margin-top: 36px;
}

/* ---------- 三步走廊：纵向时间轴 ---------- */
.page-home .hero__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.page-home .timeline__item {
  position: relative;
  isolation: isolate;
  padding-bottom: 42px;
}

.page-home .timeline__item:last-child {
  padding-bottom: 0;
}

.page-home .timeline__item::before {
  content: "";
  position: absolute;
  left: 21px;
  top: calc(clamp(56px, 15vw, 112px) * 0.85);
  bottom: 6px;
  width: 0;
  border-left: 1px dashed var(--slate-300);
  z-index: -2;
}

.page-home .timeline__item:last-child::before {
  display: none;
}

.page-home .step-numeral {
  position: relative;
  isolation: isolate;
  display: block;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: clamp(56px, 15vw, 112px);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--brand-600);
}

.page-home .step-numeral::before {
  content: attr(data-num);
  position: absolute;
  left: 7px;
  top: 8px;
  z-index: -1;
  color: var(--brand-100);
}

.page-home .timeline__body {
  margin-top: 14px;
  padding-left: 0;
}

.page-home .step-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-900);
}

.page-home .step-result {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate-500);
}

.page-home .step-visual {
  margin: 18px 0 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  background: var(--paper);
  overflow: hidden;
}

.page-home .step-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- 折叠面板（首屏内的小型说明） ---------- */
.page-home .accordion {
  margin-top: 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-s);
  background: var(--mist-100);
  overflow: hidden;
}

.page-home .accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: var(--brand-600);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background var(--dur-1) var(--ease);
}

.page-home .accordion__trigger:hover {
  background: var(--brand-100);
}

.page-home .accordion__trigger:focus-visible {
  outline: 2px solid var(--brand-400);
  outline-offset: -2px;
}

.page-home .accordion__icon {
  position: relative;
  flex: none;
  width: 12px;
  height: 12px;
}

.page-home .accordion__icon::before,
.page-home .accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--brand-600);
  border-radius: 1px;
}

.page-home .accordion__icon::before {
  left: 0;
  top: 5px;
  width: 12px;
  height: 2px;
}

.page-home .accordion__icon::after {
  left: 5px;
  top: 0;
  width: 2px;
  height: 12px;
  transition: opacity var(--dur-1) var(--ease);
}

.page-home .accordion__trigger[aria-expanded="true"] .accordion__icon::after {
  opacity: 0;
}

.page-home .accordion__panel {
  overflow: hidden;
  height: 0;
  transition: height var(--dur-2) var(--ease);
}

.page-home .accordion__panel[data-open="true"] {
  height: auto;
}

.page-home .accordion__body {
  padding: 0 14px 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-500);
}

.page-home .accordion__body p {
  margin: 0;
}

/* ---------- 首屏右侧演示 ---------- */
.page-home .hero__demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-home .phone-mock {
  position: relative;
  width: 100%;
  max-width: 340px;
  padding: 16px 14px 22px;
  border: 1px solid var(--on-dark-line-strong);
  border-radius: 34px;
  background: var(--ink-900);
  box-shadow: 0 34px 70px -42px rgba(7, 11, 20, 0.55);
}

.page-home .phone-mock__bar {
  display: block;
  width: 76px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(232, 237, 246, 0.26);
}

.page-home .phone-mock__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 18px;
  object-fit: cover;
  background: var(--ink-800);
}

.page-home .phone-mock::after {
  content: "";
  position: absolute;
  inset: 36px 14px 22px;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.16) 0%, rgba(79, 139, 255, 0.09) 40%, rgba(7, 11, 20, 0) 72%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.page-home .hero__caption {
  max-width: 320px;
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
  color: var(--slate-500);
}

/* ---------- 首屏底部安全提示带 ---------- */
.page-home .hero__safety {
  margin-top: 48px;
  background: var(--ink-900);
  border-top: 1px solid var(--on-dark-line);
}

.page-home .hero__safety .safe-note--dark {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 0;
  margin: 0;
  background: transparent;
  border: 0;
}

.page-home .hero__safety .safe-note__icon {
  position: relative;
  flex: none;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  border: 1.5px solid var(--teal-500);
  border-radius: 50%;
}

.page-home .hero__safety .safe-note__icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--teal-500);
  border-bottom: 1.5px solid var(--teal-500);
  transform: rotate(42deg);
}

.page-home .hero__safety .safe-note__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--on-dark);
}

/* ---------- 回访用户镜像对照 ---------- */
.page-home .mirror-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.page-home .mirror-section .section-head {
  max-width: 720px;
}

.page-home .mirror {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.page-home .mirror__col {
  padding: 24px 20px;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-l);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}

.page-home .mirror__col[data-active="true"] {
  border-color: rgba(79, 139, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(79, 139, 255, 0.16);
}

.page-home .mirror__title {
  margin: 0 0 4px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--on-dark-strong);
  border-bottom: 1px solid var(--on-dark-line-strong);
}

.page-home .mirror__row {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--on-dark-line);
}

.page-home .mirror__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-home .mirror__label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--on-dark-muted);
}

.page-home .mirror__value {
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-dark);
}

.page-home .mirror-figure {
  margin: 32px 0 0;
}

.page-home .mirror-figure .media-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-home .mirror-figure .media-frame__label {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--on-dark-muted);
}

/* ---------- 地址校验徽标板 ---------- */
.page-home .badge-board {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.page-home .badge-board__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  background: var(--paper);
}

.page-home .badge-board__title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-900);
}

.page-home .badge-board__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-500);
}

/* ---------- 示例地址面板 ---------- */
.page-home .addr-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 24px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  background: var(--mist-100);
}

.page-home .addr-panel__label {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--slate-500);
}

.page-home .addr {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-s);
  background: var(--paper);
}

.page-home .addr__text {
  flex: 1 1 180px;
  min-width: 0;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--text-900);
}

.page-home .addr[data-expanded="false"] .addr__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .addr[data-expanded="true"] .addr__text {
  white-space: normal;
  word-break: break-all;
}

.page-home .addr__toggle {
  flex: none;
  padding: 6px 14px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--brand-600);
  background: var(--brand-100);
  border: 0;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: background var(--dur-1) var(--ease);
}

.page-home .addr__toggle:hover {
  background: rgba(79, 139, 255, 0.24);
}

.page-home .addr__toggle:focus-visible {
  outline: 2px solid var(--brand-400);
  outline-offset: 2px;
}

.page-home .addr-panel__hint {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--slate-500);
}

.page-home .verify-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-home .verify-visual img {
  display: block;
  width: 132px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ---------- 路径分流 ---------- */
.page-home .route-split {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.page-home .route-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 26px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  background: var(--paper);
}

.page-home .route-card--accent {
  border-color: rgba(18, 86, 224, 0.26);
  background: linear-gradient(158deg, var(--brand-100) 0%, var(--paper) 64%);
}

.page-home .route-card__tag {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate-500);
}

.page-home .route-card__title {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-900);
}

.page-home .route-card__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--slate-500);
}

.page-home .route-card .btn {
  margin-top: auto;
}

/* ---------- 最近更新 ---------- */
.page-home .section-head--row {
  display: grid;
  gap: 18px;
  align-items: end;
}

.page-home .section-head--row .section-title {
  margin-bottom: 0;
}

.page-home .update-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.page-home .update-list__item {
  display: grid;
  gap: 10px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}

.page-home .update-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-home .update-list__time {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--slate-500);
}

.page-home .update-list__tag {
  padding: 3px 10px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--brand-600);
  background: var(--brand-100);
  border-radius: 999px;
}

.page-home .update-list__title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-900);
}

.page-home .update-list__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-500);
}

/* ---------- 客服与备案 ---------- */
.page-home .service-band {
  display: grid;
  gap: 26px;
  padding: 26px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  background: var(--paper);
}

.page-home .service-band__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-900);
}

.page-home .service-band__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--slate-500);
}

.page-home .service-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.page-home .service-list__row {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-soft);
}

.page-home .service-list__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-home .service-list dt {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate-500);
}

.page-home .service-list dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-900);
}

.page-home .home-legal {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  line-height: 1.8;
  color: var(--slate-500);
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-home .badge-board {
    grid-template-columns: 1.05fr 0.94fr 1.16fr;
    align-items: start;
  }

  .page-home .badge-board__item:nth-child(2) {
    margin-top: 22px;
  }

  .page-home .addr-panel {
    grid-template-columns: minmax(0, 1fr) 160px;
    padding: 28px 26px;
  }

  .page-home .verify-visual img {
    width: 150px;
  }

  .page-home .route-split {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-home .service-band {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    padding: 32px 30px;
  }

  .page-home .section-head--row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .page-home .update-list__item {
    grid-template-columns: 158px minmax(0, 1fr);
    column-gap: 30px;
    align-items: start;
  }

  .page-home .update-list__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (min-width: 900px) {
  .page-home .hero__split {
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: start;
  }

  .page-home .hero__head {
    padding-top: 36px;
  }

  .page-home .timeline__body {
    padding-left: 4px;
  }

  .page-home .mirror {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-home .mirror__row {
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: baseline;
    gap: 14px;
  }

  .page-home .mirror-figure .media-frame__label {
    max-width: 780px;
  }
}

@media (min-width: 1100px) {
  .page-home .phone-mock {
    max-width: 366px;
  }

  .page-home .hero__caption {
    max-width: 340px;
  }
}

/* ---------- 动效收敛 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home .accordion__panel,
  .page-home .accordion__trigger,
  .page-home .accordion__icon::after,
  .page-home .addr__toggle,
  .page-home .mirror__col {
    transition: none;
  }
}
<<<END>>>
