.page-home {
  background: var(--wd-paper);
  color: var(--wd-text);
  overflow-x: hidden;
}

.page-home .hm-digit {
  font-family: var(--wd-font-mono);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

/* ---------- 首屏封面 ---------- */
.page-home .hm-cover {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--wd-teal);
  color: var(--wd-white);
  padding: clamp(26px, 5vw, 54px) 0 clamp(38px, 5vw, 66px);
}

.page-home .hm-cover__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hm-cover__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
}

.page-home .hm-cover__dots {
  position: absolute;
  inset: 0;
  display: block;
  background-image: radial-gradient(circle, rgba(220, 169, 75, 0.6) 1.4px, transparent 1.6px);
  background-size: 32px 32px;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(155deg, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 0) 68%);
  mask-image: linear-gradient(155deg, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 0) 68%);
}

.page-home .hm-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(125deg, rgba(12, 58, 51, 0.95) 0%, rgba(12, 58, 51, 0.74) 48%, rgba(10, 15, 14, 0.92) 100%);
}

.page-home .hm-cover__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(26px, 4vw, 44px);
}

.page-home .hm-crumbs {
  margin-bottom: 14px;
  color: rgba(245, 241, 232, 0.62);
  font-size: 13px;
}

.page-home .hm-cover .wd-eyebrow {
  color: var(--wd-gold);
}

.page-home .hm-cover__title {
  margin: 12px 0 0;
  max-width: 16ch;
  color: var(--wd-white);
}

.page-home .hm-cover__lead {
  margin: 20px 0 0;
  max-width: 44ch;
  color: rgba(245, 241, 232, 0.86);
}

.page-home .hm-cover__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-home .hm-cover__index {
  border: 1px solid rgba(127, 181, 170, 0.34);
  border-radius: var(--wd-radius);
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 22px 22px 20px;
}

.page-home .hm-index__title {
  margin: 0 0 16px;
  font-family: var(--wd-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--wd-gold);
}

.page-home .hm-index {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .hm-index li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(127, 181, 170, 0.28);
}

.page-home .hm-index li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-home .hm-index__num {
  min-width: 3.6em;
  font-size: 25px;
  color: var(--wd-white);
}

.page-home .hm-index__label {
  font-size: 14px;
  color: rgba(245, 241, 232, 0.78);
}

.page-home .hm-index__note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.7);
}

.page-home .hm-index__note .hm-digit {
  color: var(--wd-gold);
}

/* ---------- 覆盖总览 ---------- */
.page-home .hm-reach {
  background: var(--wd-paper);
}

.page-home .hm-reach__head {
  align-items: start;
}

.page-home .hm-reach__body .wd-text:first-child {
  margin-top: 0;
}

.page-home .hm-reach__more {
  margin-bottom: 0;
}

.page-home .hm-link {
  color: var(--wd-teal-mid);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--wd-teal-soft);
  padding-bottom: 2px;
  transition: color 160ms var(--wd-ease), border-color 160ms var(--wd-ease);
}

.page-home .hm-link:hover,
.page-home .hm-link:focus-visible {
  color: var(--wd-teal);
  border-bottom-color: var(--wd-gold);
}

.page-home .hm-map {
  position: relative;
  overflow: hidden;
  margin-top: clamp(26px, 4vw, 44px);
  padding: clamp(18px, 3vw, 32px);
  border-radius: var(--wd-radius);
  background: linear-gradient(160deg, var(--wd-teal) 0%, var(--wd-teal-mid) 58%, #0a2b26 100%);
}

.page-home .hm-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(127, 181, 170, 0.2) 1px, transparent 1.4px);
  background-size: 26px 26px;
  pointer-events: none;
}

.page-home .hm-map__svg {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.page-home .hm-node--sw circle {
  fill: var(--wd-gold);
}

.page-home .hm-node--cn circle {
  fill: var(--wd-teal-soft);
}

.page-home .hm-node--ov circle {
  fill: none;
  stroke: var(--wd-gold);
  stroke-width: 2.4;
}

.page-home .hm-map__legend {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: rgba(245, 241, 232, 0.8);
}

.page-home .hm-map__legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-home .hm-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.page-home .hm-dot--sw {
  background: var(--wd-gold);
}

.page-home .hm-dot--cn {
  background: var(--wd-teal-soft);
}

.page-home .hm-dot--ov {
  box-sizing: border-box;
  border: 2px solid var(--wd-gold);
}

/* ---------- 服务索引 ---------- */
.page-home .hm-cats {
  background: var(--wd-white);
}

.page-home .hm-cats__head {
  max-width: 64ch;
}

.page-home .hm-cats__intro {
  margin-bottom: 0;
}

.page-home .hm-chips {
  margin-top: 22px;
}

.page-home .hm-group {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(30px, 4vw, 48px);
  scroll-margin-top: 90px;
}

.page-home .hm-group__aside .wd-h3 {
  margin-top: 0;
}

.page-home .hm-group__media {
  margin: 18px 0 0;
}

.page-home .hm-group__bar {
  padding-top: 18px;
  border-top: 2px solid var(--wd-teal);
}

.page-home .hm-group__bar .wd-h3 {
  margin-top: 0;
}

.page-home .hm-group__bar .wd-text {
  margin-bottom: 0;
}

.page-home .hm-items {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .hm-item {
  padding: 18px 20px;
  border: 1px solid var(--wd-line);
  border-left: 3px solid var(--wd-teal-soft);
  border-radius: var(--wd-radius-sm);
  background: var(--wd-paper);
  transition: border-color 160ms var(--wd-ease);
}

.page-home .hm-item:hover,
.page-home .hm-item:focus-within {
  border-left-color: var(--wd-gold);
}

.page-home .hm-item__title {
  margin: 0 0 8px;
}

.page-home .hm-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--wd-muted);
}

.page-home .hm-item__meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--wd-teal-mid);
}

.page-home .hm-item__meta .hm-digit {
  font-size: 15px;
  color: var(--wd-teal);
}

/* ---------- 时段轨道 ---------- */
.page-home .hm-slots {
  background: var(--wd-paper);
}

.page-home .hm-slots__head {
  max-width: 62ch;
}

.page-home .hm-track {
  margin-top: clamp(26px, 4vw, 40px);
}

.page-home .hm-track__scale {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--wd-line);
  font-family: var(--wd-font-mono);
  font-size: 12px;
  color: var(--wd-muted);
}

.page-home .hm-track__scale::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--wd-gold) 0%, var(--wd-teal-soft) 100%);
}

.page-home .hm-slots__grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.page-home .hm-slot {
  padding: 22px 22px 18px;
  border: 1px solid var(--wd-line);
  border-radius: var(--wd-radius);
  background: var(--wd-white);
}

.page-home .hm-slot__title {
  margin: 14px 0 8px;
}

.page-home .hm-slot .wd-text {
  margin-bottom: 0;
  font-size: 15px;
}

.page-home .hm-slot .hm-fold {
  background: var(--wd-paper);
}

.page-home .hm-holiday {
  display: grid;
  gap: 12px;
  margin-top: clamp(30px, 5vw, 58px);
  padding: 22px clamp(20px, 3vw, 32px);
  border-radius: var(--wd-radius);
  background: var(--wd-teal-mid);
  color: var(--wd-paper);
}

.page-home .hm-holiday .wd-h4 {
  margin: 0;
  color: var(--wd-white);
}

.page-home .hm-holiday p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 241, 232, 0.84);
}

/* ---------- 可展开条目 ---------- */
.page-home .hm-fold {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--wd-line);
  border-radius: var(--wd-radius-sm);
  background: var(--wd-white);
}

.page-home .hm-fold > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wd-teal);
  cursor: pointer;
  list-style: none;
}

.page-home .hm-fold > summary::-webkit-details-marker {
  display: none;
}

.page-home .hm-fold > summary::after {
  content: "+";
  font-family: var(--wd-font-mono);
  font-size: 18px;
  line-height: 1;
  color: var(--wd-gold);
}

.page-home .hm-fold[open] > summary::after {
  content: "−";
}

.page-home .hm-fold__body {
  margin: 0;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--wd-line-soft);
  font-size: 14px;
  line-height: 1.8;
  color: var(--wd-muted);
}

/* ---------- 规则与保障 ---------- */
.page-home .hm-rules {
  background: var(--wd-paper);
}

.page-home .hm-rules__lead {
  border-left: 3px solid var(--wd-coral);
  padding-left: 18px;
}

.page-home .hm-rules__lead .wd-h2 {
  margin-top: 10px;
}

.page-home .hm-rules__list .hm-fold:first-child {
  margin-top: 0;
}

/* ---------- 回访与履约 ---------- */
.page-home .hm-review {
  padding: clamp(44px, 6vw, 78px) 0;
  background: var(--wd-teal);
  color: var(--wd-paper);
}

.page-home .hm-review__inner {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
}

.page-home .hm-review .wd-eyebrow {
  color: var(--wd-gold);
}

.page-home .hm-review .wd-h2 {
  margin-top: 10px;
  color: var(--wd-white);
}

.page-home .hm-review .wd-text {
  color: rgba(245, 241, 232, 0.86);
}

.page-home .hm-kv {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
}

.page-home .hm-kv > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(127, 181, 170, 0.3);
}

.page-home .hm-kv > div:last-child {
  border-bottom: 0;
}

.page-home .hm-kv dt {
  font-size: 14px;
  color: rgba(245, 241, 232, 0.72);
}

.page-home .hm-kv dd {
  margin: 0;
  font-family: var(--wd-font-mono);
  font-size: 15px;
  text-align: right;
  color: var(--wd-gold);
}

.page-home .hm-review__link {
  margin: 20px 0 0;
}

.page-home .hm-link--dark {
  color: var(--wd-gold);
  border-bottom-color: rgba(220, 169, 75, 0.5);
}

.page-home .hm-link--dark:hover,
.page-home .hm-link--dark:focus-visible {
  color: var(--wd-white);
  border-bottom-color: var(--wd-white);
}

.page-home .hm-review__media {
  margin: 0;
  border-radius: var(--wd-radius);
  overflow: hidden;
}

.page-home .hm-review__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .hm-review__media .wd-media__cap {
  color: rgba(245, 241, 232, 0.72);
}

/* ---------- 下一步 ---------- */
.page-home .hm-next {
  background: var(--wd-paper);
}

.page-home .hm-next__grid {
  display: grid;
  gap: 18px;
  margin-top: clamp(24px, 4vw, 36px);
}

.page-home .hm-next__primary {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--wd-radius);
  background: var(--wd-teal);
  color: var(--wd-paper);
}

.page-home .hm-next__primary .wd-h3 {
  margin-top: 0;
  color: var(--wd-white);
}

.page-home .hm-next__primary .wd-text {
  color: rgba(245, 241, 232, 0.86);
}

.page-home .hm-next__primary .wd-btn {
  margin-top: 24px;
}

.page-home .hm-next__side {
  display: grid;
  gap: 16px;
}

.page-home .hm-next__item {
  padding: 20px 22px;
  border: 1px solid var(--wd-line);
  border-radius: var(--wd-radius-sm);
  background: var(--wd-white);
}

.page-home .hm-next__item .wd-h4 {
  margin-top: 0;
}

.page-home .hm-next__item p {
  margin: 8px 0 16px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--wd-muted);
}

.page-home .hm-next__hours {
  margin: 22px 0 0;
  font-family: var(--wd-font-mono);
  font-size: 13px;
  color: var(--wd-muted);
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-home .hm-items--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-home .hm-cover__inner {
    grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
    align-items: end;
  }

  .page-home .hm-group {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
  }

  .page-home .hm-group--fix {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .page-home .hm-group--fix .hm-group__aside {
    order: 2;
  }

  .page-home .hm-group--fix .hm-items {
    order: 1;
  }

  .page-home .hm-group--care {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-home .hm-slots__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 46px;
  }

  .page-home .hm-slot--mid {
    transform: translateY(22px);
  }

  .page-home .hm-slot--pm {
    transform: translateY(44px);
  }

  .page-home .hm-holiday {
    grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
    align-items: center;
  }

  .page-home .hm-review__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    align-items: center;
  }

  .page-home .hm-next__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .page-home .hm-reach__head {
    padding-left: 26px;
  }

  .page-home .hm-slots__head {
    padding-left: 52px;
  }

  .page-home .hm-holiday {
    margin-left: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hm-item,
  .page-home .hm-link {
    transition: none;
  }

  .page-home .hm-slot--mid,
  .page-home .hm-slot--pm {
    transform: none;
  }

  .page-home .hm-slots__grid {
    padding-bottom: 0;
  }
}
