.page-home {
  --home-line: rgba(29, 58, 92, .75);
  --home-card: rgba(10, 23, 48, .94);
  display: block;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  padding: clamp(24px, 4vw, 48px) 0 clamp(48px, 6vw, 84px);
  border-bottom: 1px solid var(--c-grid);
  background: linear-gradient(165deg, var(--c-deep) 0%, var(--c-abyss) 60%, var(--c-deep) 100%);
}

.page-home .hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.page-home .hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(29, 58, 92, .5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29, 58, 92, .5) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: .5;
  -webkit-mask-image: radial-gradient(130% 90% at 70% 0%, #000 15%, transparent 100%);
  mask-image: radial-gradient(130% 90% at 70% 0%, #000 15%, transparent 100%);
}

.page-home .hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 26, .70) 0%, rgba(5, 11, 26, .88) 60%, var(--c-deep) 100%);
}

.page-home .hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}

.page-home .hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
}

.page-home .hero__main,
.page-home .home-console {
  min-width: 0;
}

.page-home .hero__title {
  margin: 14px 0 0;
  font-size: clamp(2rem, 6.4vw, 3.7rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--c-text);
}

.page-home .hero__lead {
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: var(--t-body);
  line-height: 1.85;
  color: var(--c-dim);
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

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

.page-home .hero__stat {
  position: relative;
  padding: 18px 18px 16px;
  border: 1px solid var(--c-grid);
  border-top: 3px solid var(--c-cyan);
  border-radius: var(--r-a) var(--r-b) var(--r-a) var(--r-b);
  background: linear-gradient(150deg, rgba(16, 36, 61, .92), rgba(10, 23, 48, .86));
}

.page-home .hero__stat--warm {
  border-top-color: var(--c-warm);
}

.page-home .hero__stat-label {
  margin: 0;
  font-size: var(--t-label);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-faint);
}

.page-home .hero__stat-value {
  margin: 8px 0 4px;
  font-size: clamp(1.45rem, 5.6vw, 2rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--c-cyan);
  white-space: nowrap;
}

.page-home .hero__stat--warm .hero__stat-value {
  color: var(--c-warm);
}

.page-home .hero__stat-note {
  margin: 0;
  font-size: var(--t-sm);
  color: var(--c-dim);
}

.page-home .hero__stamp {
  margin: 20px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--c-cyan);
  font-size: var(--t-sm);
  color: var(--c-faint);
}

/* ---------- 首屏左侧查询面板 ---------- */
.page-home .home-console {
  padding: 20px;
  border: 1px solid var(--c-grid);
  border-radius: var(--r-a) var(--r-b) var(--r-a) var(--r-b);
  background: linear-gradient(165deg, rgba(16, 36, 61, .95), rgba(10, 23, 48, .95));
  box-shadow: var(--glow-cyan);
  align-self: start;
}

.page-home .home-console__head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--home-line);
}

.page-home .home-console__state {
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--c-text);
}

.page-home .home-console__meta {
  margin: 12px 0 0;
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--c-dim);
}

.page-home .home-console .anchor-index {
  margin-top: 16px;
}

.page-home .home-console .anchor-index__title {
  margin: 0 0 8px;
  font-size: var(--t-label);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-faint);
}

.page-home .home-console .anchor-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.page-home .home-console .anchor-index__link {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 10px;
  border-left: 2px solid transparent;
  border-radius: var(--r-b);
  font-size: var(--t-sm);
  color: var(--c-dim);
  text-decoration: none;
  transition: color .16s ease, background-color .16s ease, border-color .16s ease;
}

.page-home .home-console .anchor-index__link .num {
  color: var(--c-faint);
  font-size: var(--t-label);
}

.page-home .home-console .anchor-index__link:hover,
.page-home .home-console .anchor-index__link:focus-visible,
.page-home .home-console .anchor-index__link[aria-current="location"] {
  color: var(--c-text);
  background: rgba(30, 107, 255, .14);
  border-left-color: var(--c-cyan);
  outline: none;
}

.page-home .home-console .anchor-index__link[aria-current="location"] .num {
  color: var(--c-cyan);
}

.page-home .home-console__cta {
  display: block;
  margin-top: 18px;
  text-align: center;
}

.page-home .home-console__stamp {
  margin: 12px 0 0;
  font-size: var(--t-label);
  color: var(--c-faint);
  letter-spacing: .04em;
}

/* ---------- 通用章节带 ---------- */
.page-home .home-band {
  position: relative;
  padding: clamp(52px, 8vw, 100px) 0;
  border-top: 1px solid var(--home-line);
}

.page-home .home-band--abyss {
  background: var(--c-abyss);
}

.page-home .home-band--deep {
  background: linear-gradient(180deg, var(--c-deep) 0%, var(--c-abyss) 100%);
}

.page-home .home-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(29, 58, 92, .42) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29, 58, 92, .42) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: .4;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(140% 95% at 50% 0%, #000 18%, transparent 100%);
  mask-image: radial-gradient(140% 95% at 50% 0%, #000 18%, transparent 100%);
}

.page-home .home-band > .wrap {
  position: relative;
  z-index: 1;
}

/* ---------- 01 服务运行总览 ---------- */
.page-home .overview__grid {
  display: grid;
  gap: 28px;
}

.page-home .overview__figure {
  margin: 0;
}

.page-home .overview__figure .media-frame__inner img,
.page-home .plans__figure .media-frame__inner img,
.page-home .region__figure .media-frame__inner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .overview__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--home-line);
  border: 1px solid var(--c-grid);
  border-radius: var(--r-a) var(--r-b) var(--r-a) var(--r-b);
  overflow: hidden;
}

.page-home .overview__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 15px 16px;
  background: var(--home-card);
}

.page-home .overview__k {
  font-size: var(--t-sm);
  color: var(--c-dim);
}

.page-home .overview__v {
  margin-left: auto;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
}

.page-home .overview__assure {
  list-style: none;
  margin: 30px 0 0;
  padding: 20px 0 0;
  border-top: 1px dashed var(--home-line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}

.page-home .overview__assure li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-sm);
  color: var(--c-dim);
}

.page-home .overview__assure li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  background: var(--c-cyan);
  border-radius: 1px;
}

/* ---------- 02 价格与额度 ---------- */
.page-home .plans__grid {
  display: grid;
  gap: 26px;
}

.page-home .plans__figure {
  margin: 0;
}

.page-home .plans__table-wrap {
  min-width: 0;
  overflow-x: auto;
  padding: 4px 18px 14px;
}

.page-home .plans__caption {
  padding: 16px 4px 6px;
  text-align: left;
  font-size: var(--t-label);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-warm);
}

.page-home .plans__table,
.page-home .access__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.page-home .plans__table th,
.page-home .plans__table td {
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--home-line);
  font-size: var(--t-sm);
  color: var(--c-dim);
}

.page-home .plans__table thead th {
  font-size: var(--t-label);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-faint);
  font-weight: 600;
}

.page-home .plans__table tbody th {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
}

.page-home .plans__table tbody tr:hover td,
.page-home .plans__table tbody tr:hover th {
  background: rgba(30, 107, 255, .1);
}

.page-home .plans__num {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-cyan);
  white-space: nowrap;
}

.page-home .plans__cycle {
  white-space: nowrap;
}

.page-home .plans__notes {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 2px solid var(--c-warm);
  border-radius: var(--r-b);
  background: rgba(255, 138, 61, .07);
}

.page-home .plans__notes p {
  margin: 0;
  font-size: var(--t-sm);
  line-height: 1.8;
  color: var(--c-dim);
}

.page-home .plans__cta {
  margin-top: 24px;
}

/* ---------- 03 接入状态 ---------- */
.page-home .access__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--home-line);
  border: 1px solid var(--c-grid);
  border-radius: var(--r-a) var(--r-b) var(--r-a) var(--r-b);
  overflow: hidden;
}

.page-home .access__card {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 20px;
  background: var(--home-card);
  border-top: 2px solid var(--c-grid);
}

.page-home .access__card--ok {
  border-top-color: var(--c-ok);
}

.page-home .access__card--warn {
  border-top-color: var(--c-warn);
}

.page-home .access__card--info {
  border-top-color: var(--c-blue);
}

.page-home .access__name {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--c-text);
}

.page-home .access__desc {
  margin: 0;
  font-size: var(--t-sm);
  line-height: 1.75;
  color: var(--c-dim);
}

.page-home .access__fee {
  margin-top: 26px;
  padding: 22px 20px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--c-grid);
  border-radius: var(--r-b) var(--r-a) var(--r-b) var(--r-a);
  background: linear-gradient(150deg, rgba(16, 36, 61, .9), rgba(10, 23, 48, .9));
  min-width: 0;
  overflow-x: auto;
}

.page-home .access__fee-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--c-text);
}

.page-home .access__table th,
.page-home .access__table td {
  padding: 12px 12px 12px 0;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--home-line);
  font-size: var(--t-sm);
}

.page-home .access__table thead th {
  font-size: var(--t-label);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-faint);
  font-weight: 600;
}

.page-home .access__table tbody th {
  font-weight: 400;
  color: var(--c-dim);
  white-space: nowrap;
}

.page-home .access__table tbody td:last-child {
  color: var(--c-faint);
}

.page-home .access__cta {
  justify-self: start;
}

/* ---------- 04 回访记录时间线 ---------- */
.page-home .records__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  border-top: 1px solid var(--home-line);
}

.page-home .records__item {
  position: relative;
  padding: 24px 0 22px;
  border-bottom: 1px solid var(--home-line);
}

.page-home .records__item::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-cyan);
  box-shadow: 0 0 12px rgba(34, 224, 255, .7);
}

.page-home .records__timeline .timeline__date {
  margin: 0 0 10px;
  font-size: var(--t-label);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-cyan);
}

.page-home .records__name {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
}

.page-home .records__desc {
  margin: 0;
  max-width: 46ch;
  font-size: var(--t-sm);
  line-height: 1.8;
  color: var(--c-dim);
}

.page-home .records__stats {
  margin-top: 30px;
  padding: 22px 20px;
  display: grid;
  gap: 18px;
  border-left: 2px solid var(--c-cyan);
  background: rgba(34, 224, 255, .05);
  border-radius: var(--r-b);
}

.page-home .records__stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .records__stat-label {
  font-size: var(--t-sm);
  color: var(--c-dim);
}

.page-home .records__stat-value {
  font-size: clamp(1.6rem, 6vw, 2.3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-cyan);
}

.page-home .records__note {
  margin: 0;
  font-size: var(--t-sm);
  line-height: 1.8;
  color: var(--c-faint);
}

.page-home .records__cta {
  margin-top: 24px;
}

/* ---------- 05 河南服务与联络 ---------- */
.page-home .region__grid {
  display: grid;
  gap: 28px;
}

.page-home .region__figure {
  margin: 0;
}

.page-home .region__text {
  margin: 0;
  font-size: var(--t-body);
  line-height: 1.85;
  color: var(--c-dim);
}

.page-home .region__contact {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--home-line);
  border: 1px solid var(--c-grid);
  border-radius: var(--r-b);
  overflow: hidden;
}

.page-home .region__contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 14px 16px;
  background: var(--home-card);
}

.page-home .region__contact .contact-list__k {
  min-width: 68px;
  font-size: var(--t-label);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-faint);
}

.page-home .region__contact .contact-list__v {
  font-family: var(--f-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1rem;
  color: var(--c-text);
  text-decoration: none;
  word-break: break-all;
}

.page-home .region__contact .contact-list__v--text {
  font-family: var(--f-sans);
  word-break: break-word;
}

.page-home .region__contact .contact-list__v:hover {
  color: var(--c-cyan);
}

.page-home .region__contact .copy-btn {
  margin-left: auto;
  padding: 5px 12px;
  font-family: var(--f-sans);
  font-size: var(--t-label);
  color: var(--c-dim);
  background: transparent;
  border: 1px solid var(--c-grid);
  border-radius: var(--r-b);
  cursor: pointer;
  transition: color .16s ease, border-color .16s ease;
}

.page-home .region__contact .copy-btn:hover,
.page-home .region__contact .copy-btn:focus-visible {
  color: var(--c-cyan);
  border-color: var(--c-cyan);
  outline: none;
}

.page-home .region__contact .copy-btn[data-copied] {
  color: var(--c-ok);
  border-color: var(--c-ok);
}

.page-home .region__hint {
  margin: 16px 0 0;
  font-size: var(--t-sm);
  line-height: 1.8;
  color: var(--c-faint);
}

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

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

  .page-home .access__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .records__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .page-home .records__note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .page-home .overview__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 40px;
    align-items: start;
  }

  .page-home .region__grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 40px;
    align-items: start;
  }

  .page-home .records__timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top-color: var(--c-cyan);
  }

  .page-home .records__item {
    padding: 26px 22px 24px 0;
    border-bottom: none;
    border-right: 1px solid var(--home-line);
  }

  .page-home .records__item:last-child {
    border-right: none;
    padding-right: 0;
  }
}

@media (min-width: 1024px) {
  .page-home .hero__grid {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 46px;
    align-items: start;
  }

  .page-home .home-console {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 96px;
  }

  .page-home .hero__main {
    grid-column: 2;
    grid-row: 1;
  }

  .page-home .hero__stats {
    gap: 16px;
  }

  .page-home .plans__grid {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-console .anchor-index__link,
  .page-home .region__contact .copy-btn {
    transition: none;
  }
}
</style>>>
