.page-home {
  --ph-warn: #E2779A;
  --ph-shadow: rgba(0, 0, 0, .36);
  display: block;
  position: relative;
  overflow-x: hidden;
  background: var(--galaxy);
  color: var(--ink);
  font-family: var(--font-sans);
}

.page-home .ph-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- 首屏 ---------- */

.page-home .hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 44px 0 0;
  border-bottom: 2px solid var(--line);
  background:
    radial-gradient(760px 420px at 84% -8%, rgba(108, 75, 216, .42), transparent 62%),
    radial-gradient(520px 380px at 2% 94%, rgba(34, 211, 197, .14), transparent 62%),
    var(--galaxy);
}

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(36, 48, 102, .42) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(36, 48, 102, .42) 1px, transparent 1px);
  background-size: 96px 96px;
}

.page-home .hero::after {
  content: "";
  position: absolute;
  left: 5%;
  bottom: 8%;
  width: 44%;
  height: 1px;
  z-index: 1;
  pointer-events: none;
  display: none;
  transform: rotate(-14deg);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(127, 240, 228, 0), rgba(127, 240, 228, .55) 42%, rgba(230, 180, 85, .8));
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}

.page-home .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(178deg, rgba(10, 18, 48, .4) 0%, rgba(10, 18, 48, .86) 58%, var(--galaxy) 100%);
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}

.page-home .hero-copy {
  max-width: 40em;
}

.page-home .eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pulse);
}

.page-home h1 {
  margin: 0 0 18px;
  font-size: clamp(1.72rem, 5.2vw, 2.85rem);
  line-height: 1.24;
  letter-spacing: .055em;
  font-weight: 700;
  color: #fff;
}

.page-home .hero-lede {
  margin: 0 0 26px;
  max-width: 37em;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 价格刻度带 */

.page-home .price-band {
  position: relative;
  padding: 18px 18px 20px;
  border: 2px solid var(--line);
  background: linear-gradient(155deg, rgba(20, 28, 66, .96), rgba(10, 18, 48, .96));
  box-shadow: 8px 8px 0 var(--ph-shadow);
}

.page-home .price-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--pulse);
}

.page-home .price-band-key {
  margin: 0;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--muted);
}

.page-home .price-band-title {
  margin: 4px 0 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #fff;
}

.page-home .price-ruler {
  position: relative;
  height: 46px;
  margin: 16px 0 6px;
}

.page-home .price-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--pulse) 0%, var(--nebula) 52%, var(--gold) 100%);
}

.page-home .price-tick {
  position: absolute;
  top: 12px;
  width: 2px;
  height: 22px;
  background: var(--line);
  transform: translateX(-50%);
}

.page-home .price-tick--end {
  top: 9px;
  height: 28px;
  background: var(--gold);
}

.page-home .price-ends {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
}

.page-home .price-end {
  display: grid;
  gap: 3px;
}

.page-home .price-end--top {
  text-align: right;
  justify-items: end;
}

.page-home .price-num {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--gold);
}

.page-home .price-text {
  max-width: 15em;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--muted);
}

.page-home .price-foot {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--muted);
}

.page-home .price-foot b {
  font-weight: 700;
  color: var(--ph-warn);
}

/* ---------- 通用章节 ---------- */

.page-home .section {
  position: relative;
  padding: 52px 0;
  border-bottom: 1px solid var(--line-soft);
}

.page-home .section--tint {
  background:
    radial-gradient(620px 320px at 90% 0%, rgba(108, 75, 216, .18), transparent 62%),
    var(--deep);
}

.page-home .section-head {
  max-width: 48em;
  margin-bottom: 30px;
}

.page-home .section-title {
  margin: 0 0 12px;
  font-size: clamp(1.32rem, 3.6vw, 1.82rem);
  line-height: 1.36;
  letter-spacing: .05em;
  font-weight: 700;
  color: #fff;
}

.page-home .section-note {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--muted);
}

/* ---------- 行业网格 ---------- */

.page-home .ind-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.page-home .ind-card {
  border: 2px solid var(--line);
  background: linear-gradient(160deg, rgba(20, 28, 66, .92), rgba(10, 18, 48, .92));
  box-shadow: 6px 6px 0 var(--ph-shadow);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.page-home .ind-card:hover,
.page-home .ind-card:focus-within {
  transform: translateY(-2px);
  border-color: var(--nebula);
  box-shadow: 6px 10px 0 rgba(0, 0, 0, .44);
}

.page-home .ind-link {
  display: grid;
  gap: 7px;
  height: 100%;
  padding: 18px 18px 20px;
  color: inherit;
  text-decoration: none;
}

.page-home .ind-idx {
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--violet);
}

.page-home .ind-name {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #fff;
}

.page-home .ind-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
}

/* ---------- 通栏图 ---------- */

.page-home .ph-figure {
  margin: 0;
}

.page-home .ph-shot {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--deep);
  box-shadow: 8px 8px 0 var(--ph-shadow);
}

.page-home .ph-shot img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.page-home .ph-shot--banner img {
  aspect-ratio: 14 / 9;
}

.page-home .ph-shot--meter img {
  aspect-ratio: 3 / 2;
}

.page-home .ph-shot--map img {
  aspect-ratio: 5 / 4;
}

.page-home .media-caption {
  margin: 12px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--dim);
}

/* ---------- 价格与保修 ---------- */

.page-home .pw-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.page-home .panel {
  border: 2px solid var(--line);
  background: linear-gradient(160deg, rgba(20, 28, 66, .94), rgba(10, 18, 48, .94));
  box-shadow: 8px 8px 0 var(--ph-shadow);
}

.page-home .panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 2px solid var(--line);
  background: rgba(10, 18, 48, .58);
}

.page-home .pw-head-num {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--gold);
}

.page-home .panel-body {
  padding: 18px;
}

.page-home .pw-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-home .pw-list li {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.page-home .pw-key {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--gold);
}

.page-home .pw-value {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink);
}

.page-home .pw-hint {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .pw-figure {
  margin: 0;
}

/* ---------- 季度时间线 ---------- */

.page-home .timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 30px;
  display: grid;
  gap: 26px;
}

.page-home .timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  opacity: .7;
  background: linear-gradient(180deg, var(--pulse) 0%, var(--nebula) 55%, var(--gold) 100%);
}

.page-home .tl-node {
  position: relative;
}

.page-home .tl-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--deep);
  border: 2px solid var(--nebula);
}

.page-home .tl-node--now .tl-dot {
  border-color: var(--pulse);
  background: var(--pulse);
  animation: ph-node-pulse 2.6s var(--ease) infinite;
}

@keyframes ph-node-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 197, .5); }
  70% { box-shadow: 0 0 0 14px rgba(34, 211, 197, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 197, 0); }
}

.page-home .tl-key {
  margin: 0 0 5px;
  font-size: 11.5px;
  letter-spacing: .18em;
  color: var(--pulse);
}

.page-home .tl-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .05em;
  color: #fff;
}

.page-home .tl-text {
  margin: 0;
  max-width: 46em;
  font-size: 14px;
  line-height: 1.82;
  color: var(--muted);
}

.page-home .tl-more,
.page-home .voice-more {
  margin: 28px 0 0;
}

/* ---------- 服务区域 ---------- */

.page-home .region-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}

.page-home .region-figure {
  margin: 0;
}

.page-home .region-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-home .region-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(20, 28, 66, .62);
  font-size: 13.5px;
}

.page-home .region-id {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--dim);
}

.page-home .region-name {
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
}

.page-home .region-item .status-dot {
  display: inline-block;
  flex: none;
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--pulse);
  box-shadow: 0 0 0 3px rgba(34, 211, 197, .14);
}

.page-home .region-foot {
  margin: 20px 0 0;
  max-width: 46em;
  font-size: 13.5px;
  line-height: 1.82;
  color: var(--muted);
}

.page-home .region-foot .arrow-link {
  display: inline-block;
  margin-top: 8px;
}

/* ---------- 使用反馈 ---------- */

.page-home .voice-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.page-home .voice-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px;
  border-left: 3px solid var(--nebula);
  background: linear-gradient(120deg, rgba(20, 28, 66, .88), rgba(10, 18, 48, .7));
}

.page-home .voice-card .tag {
  justify-self: start;
}

.page-home .voice-quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
}

.page-home .voice-meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--dim);
}

/* ---------- 下一步 ---------- */

.page-home .cta {
  background:
    radial-gradient(700px 400px at 12% 8%, rgba(34, 211, 197, .12), transparent 62%),
    var(--galaxy);
}

.page-home .cta-title {
  margin: 0 0 28px;
  font-size: clamp(1.32rem, 3.6vw, 1.82rem);
  line-height: 1.36;
  letter-spacing: .05em;
  font-weight: 700;
  color: #fff;
}

.page-home .cta-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.page-home .cta-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px;
  border: 2px solid var(--line);
  background: rgba(20, 28, 66, .74);
  box-shadow: 6px 6px 0 var(--ph-shadow);
}

.page-home .cta-card--primary {
  border-color: var(--gold);
  background: linear-gradient(150deg, rgba(230, 180, 85, .14), rgba(20, 28, 66, .9));
}

.page-home .cta-idx {
  margin: 0;
  font-size: 11.5px;
  letter-spacing: .2em;
  color: var(--pulse);
}

.page-home .cta-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .05em;
  color: #fff;
}

.page-home .cta-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .cta-card .btn {
  justify-self: start;
  margin-top: 6px;
}

.page-home .cta-note {
  margin: 26px 0 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--muted);
}

/* ---------- 核验条 ---------- */

.page-home .verify {
  padding: 22px 0;
  border-bottom: 2px solid var(--gold);
  background: var(--deep);
}

.page-home .verify-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 28px;
}

.page-home .verify-inner p {
  margin: 0;
  font-size: 12.5px;
  letter-spacing: .08em;
  color: var(--muted);
}

/* ---------- 响应式 ---------- */

@media (min-width: 640px) {
  .page-home .ind-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .page-home .region-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  .page-home .section {
    padding: 68px 0;
  }

  .page-home .pw-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
  }

  .page-home .pw-warranty {
    margin-top: 48px;
  }

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

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

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

  .page-home .cta-card:nth-child(2) {
    margin-top: 26px;
  }

  .page-home .cta-card:nth-child(3) {
    margin-top: 52px;
  }
}

@media (min-width: 960px) {
  .page-home .hero {
    padding-top: 72px;
  }

  .page-home .hero::after {
    display: block;
  }

  .page-home .hero-inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: 56px;
    padding-bottom: 76px;
  }
}

@media (min-width: 1000px) {
  .page-home .ind-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .page-home .ind-card:nth-child(3n + 2) {
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .tl-node--now .tl-dot {
    animation: none;
  }

  .page-home .ind-card {
    transition: none;
  }
}
