.page-home {
  --home-line: var(--indigo-600);
  --home-panel: var(--indigo-800);
  --home-glow: rgba(63, 240, 216, .14);
  --home-glow-gold: rgba(245, 185, 74, .13);
  background: var(--indigo-950);
  color: var(--ink);
  overflow-x: hidden;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  display: grid;
  gap: 30px;
  padding: 34px 5vw 52px;
  overflow: hidden;
  isolation: isolate;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(29, 36, 86, .95) 0%, rgba(11, 16, 48, 0) 60%);
  clip-path: polygon(0 0, 52% 0, 24% 100%, 0 100%);
  z-index: -1;
  pointer-events: none;
}

.page-home .home-hero__aside {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
  border-left: 2px solid var(--home-line);
}

.page-home .home-hero__crumb {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--cyan);
}

.page-home .home-hero__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 30ch;
}

.page-home .home-hero__stamp {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--gold);
}

.page-home .home-hero__stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.page-home .home-hero__visual {
  position: relative;
  margin: 0;
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  background: var(--indigo-900);
  overflow: hidden;
}

.page-home .home-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-home .home-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 78% 14%, var(--home-glow) 0%, transparent 58%),
    linear-gradient(180deg, transparent 42%, rgba(11, 16, 48, .78) 100%);
  pointer-events: none;
}

.page-home .home-hero__copy {
  padding: 26px 0 0;
}

.page-home .home-hero__title {
  margin: 0 0 16px;
  font-family: var(--head);
  font-weight: 900;
  font-size: clamp(31px, 5.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}

.page-home .home-hero__accent {
  display: block;
  color: var(--cyan);
}

.page-home .home-hero__lede {
  margin: 0 0 24px;
  max-width: 40ch;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.8;
}

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

/* ---------- 节奏条 ---------- */
.page-home .home-beat {
  padding: 0 5vw 56px;
}

.page-home .home-beat__frame {
  position: relative;
  overflow: hidden;
  padding: 28px 20px 32px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  background: var(--indigo-900);
}

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

.page-home .home-beat__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}

.page-home .home-beat__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 16, 48, .94) 0%, rgba(11, 16, 48, .6) 52%, rgba(11, 16, 48, .94) 100%);
}

.page-home .home-beat__head {
  position: relative;
  z-index: 1;
}

.page-home .home-beat__title {
  margin: 8px 0 0;
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink);
}

.page-home .home-beat__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--home-line);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.page-home .home-beat__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 14px 22px;
  background: rgba(20, 26, 69, .92);
}

.page-home .home-beat__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  width: 30px;
  height: 2px;
  background: var(--cyan);
}

.page-home .home-beat__item:nth-child(2)::before,
.page-home .home-beat__item:nth-child(4)::before {
  background: var(--gold);
}

.page-home .home-beat__num {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--cyan);
}

.page-home .home-beat__item:nth-child(2) .home-beat__num,
.page-home .home-beat__item:nth-child(4) .home-beat__num {
  color: var(--gold);
}

.page-home .home-beat__small {
  font-size: .42em;
  margin-left: .18em;
  letter-spacing: .04em;
  color: var(--ink-2);
}

.page-home .home-beat__unit {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--ink-2);
}

.page-home .home-beat__label {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

/* ---------- 三类内容入口 ---------- */
.page-home .home-lanes {
  padding: 56px 5vw;
}

.page-home .home-lanes__head {
  max-width: 44ch;
}

.page-home .home-lanes__grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.page-home .home-lane {
  position: relative;
  overflow: hidden;
  padding: 24px 20px 28px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--home-panel) 0%, var(--indigo-900) 100%);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.page-home .home-lane:hover,
.page-home .home-lane:focus-within {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 3px 5px 0 rgba(63, 240, 216, .16);
}

.page-home .home-lane__figure {
  margin: -24px -20px 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--home-line);
}

.page-home .home-lane__figure img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.page-home .home-lane__idx {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--gold);
}

.page-home .home-lane__title {
  margin: 10px 0 12px;
  font-family: var(--head);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.page-home .home-lane__link {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--cyan), var(--cyan));
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: background-size .3s var(--ease), color .3s var(--ease);
}

.page-home .home-lane__link:hover,
.page-home .home-lane__link:focus-visible {
  color: var(--cyan);
  background-size: 100% 2px;
}

.page-home .home-lane__body {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--ink-2);
}

.page-home .home-lane__hint {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--cyan);
  transition: max-height .3s var(--ease), opacity .3s var(--ease), margin-top .3s var(--ease);
}

.page-home .home-lane:hover .home-lane__hint,
.page-home .home-lane:focus-within .home-lane__hint {
  max-height: 60px;
  margin-top: 12px;
  opacity: 1;
}

/* ---------- 六个区间 ---------- */
.page-home .home-zones {
  padding: 0 5vw 56px;
}

.page-home .home-zones__banner {
  position: relative;
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  background: var(--indigo-900);
}

.page-home .home-zones__banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-home .home-zones__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 16, 48, .94) 0%, rgba(11, 16, 48, .45) 62%, rgba(11, 16, 48, .1) 100%);
  pointer-events: none;
}

.page-home .home-zones__lead {
  position: absolute;
  inset: auto 20px 20px 20px;
  z-index: 1;
}

.page-home .home-zones__title {
  margin: 8px 0 8px;
  font-family: var(--head);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
}

.page-home .home-zones__sub {
  margin: 0;
  max-width: 46ch;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
}

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

.page-home .home-zone__link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  height: 100%;
  padding: 20px 18px 22px 22px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-sm);
  background: var(--indigo-900);
  color: inherit;
  text-decoration: none;
  transition: border-color .26s var(--ease), transform .26s var(--ease), background .26s var(--ease);
}

.page-home .home-zone__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: linear-gradient(180deg, var(--gold), var(--magenta));
}

.page-home .home-zone:nth-child(even) .home-zone__link::before {
  background: linear-gradient(180deg, var(--cyan), var(--violet));
}

.page-home .home-zone__link:hover,
.page-home .home-zone__link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: var(--home-panel);
}

.page-home .home-zone__idx {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ink-2);
}

.page-home .home-zone__name {
  font-family: var(--head);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
}

.page-home .home-zone__desc {
  font-size: 14px;
  line-height: 1.68;
  color: var(--ink-2);
}

/* ---------- 为什么留下来 ---------- */
.page-home .home-rationale {
  padding: 56px 5vw;
  background: linear-gradient(180deg, rgba(20, 26, 69, .55) 0%, rgba(11, 16, 48, 0) 100%);
}

.page-home .home-rationale__head {
  max-width: 42ch;
}

.page-home .home-rationale__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.page-home .home-reason {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 6px 16px;
  padding: 22px 0;
  border-top: 1px solid var(--home-line);
}

.page-home .home-reason:last-child {
  border-bottom: 1px solid var(--home-line);
}

.page-home .home-reason__no {
  grid-row: 1 / span 2;
  padding-top: 5px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--cyan);
}

.page-home .home-reason__title {
  margin: 0;
  font-family: var(--head);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--ink);
}

.page-home .home-reason__body {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--ink-2);
  max-width: 62ch;
}

.page-home .home-rationale__foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.page-home .home-rationale__more {
  color: var(--cyan);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.7;
  border-bottom: 1px solid rgba(63, 240, 216, .35);
  align-self: flex-start;
  transition: color .26s var(--ease), border-color .26s var(--ease);
}

.page-home .home-rationale__more:hover,
.page-home .home-rationale__more:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}

/* ---------- 常见疑问速答 ---------- */
.page-home .home-faq {
  padding: 56px 5vw;
}

.page-home .home-faq__head {
  max-width: 40ch;
}

.page-home .home-faq__list {
  margin: 26px 0 0;
}

.page-home .home-faq__item {
  padding: 20px 0 20px 18px;
  border-left: 2px solid var(--home-line);
  transition: border-color .26s var(--ease);
}

.page-home .home-faq__item + .home-faq__item {
  margin-top: 6px;
}

.page-home .home-faq__item:hover {
  border-left-color: var(--cyan);
}

.page-home .home-faq__q {
  margin: 0 0 8px;
  font-family: var(--head);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
}

.page-home .home-faq__a {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--ink-2);
  max-width: 62ch;
}

.page-home .home-faq__more {
  margin: 24px 0 0;
}

.page-home .home-faq__morelink {
  color: var(--gold);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.7;
  border-bottom: 1px solid rgba(245, 185, 74, .4);
  transition: color .26s var(--ease), border-color .26s var(--ease);
}

.page-home .home-faq__morelink:hover,
.page-home .home-faq__morelink:focus-visible {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* ---------- 咨询带 ---------- */
.page-home .home-cta {
  padding: 0 5vw 68px;
}

.page-home .home-cta__band {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 24px;
  padding: 32px 22px 34px;
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  background:
    radial-gradient(130% 120% at 88% 0%, var(--home-glow-gold) 0%, transparent 58%),
    linear-gradient(160deg, var(--home-panel) 0%, var(--indigo-950) 78%);
}

.page-home .home-cta__band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(63, 240, 216, .1) 0%, transparent 42%);
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 78% 100%);
  pointer-events: none;
}

.page-home .home-cta__text,
.page-home .home-cta__acts {
  position: relative;
  z-index: 1;
}

.page-home .home-cta__title {
  margin: 10px 0 10px;
  font-family: var(--head);
  font-weight: 900;
  font-size: clamp(23px, 3.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--ink);
}

.page-home .home-cta__sub {
  margin: 0;
  max-width: 40ch;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--ink-2);
}

.page-home .home-cta__acts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.page-home .home-cta__line {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .home-cta__key {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--ink-2);
}

.page-home .home-cta__val {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--cyan);
  word-break: break-all;
}

.page-home .home-cta__val--mail {
  font-size: 15px;
  color: var(--ink);
}

.page-home .home-cta__btn {
  margin-top: 6px;
}

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

  .page-home .home-cta__band {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: center;
    padding: 40px 34px 42px;
  }

  .page-home .home-rationale__foot {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero {
    grid-template-columns: minmax(170px, 3fr) minmax(0, 9fr);
    gap: 0 44px;
    padding: 68px 6vw 92px;
    align-items: start;
  }

  .page-home .home-hero__visual {
    clip-path: polygon(0 0, 100% 0, 100% 74%, 0 100%);
  }

  .page-home .home-hero__copy {
    position: relative;
    z-index: 2;
    margin-top: -74px;
    max-width: 640px;
    padding: 26px 32px 30px;
    background: linear-gradient(180deg, rgba(20, 26, 69, .95) 0%, var(--indigo-950) 84%);
    border-left: 2px solid var(--cyan);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }

  .page-home .home-beat {
    padding: 0 6vw 76px;
  }

  .page-home .home-beat__frame {
    padding: 34px 34px 38px;
  }

  .page-home .home-lanes,
  .page-home .home-rationale,
  .page-home .home-faq {
    padding: 84px 6vw;
  }

  .page-home .home-zones {
    padding: 0 6vw 84px;
  }

  .page-home .home-lanes__grid {
    grid-template-columns: 1.25fr 1fr 1fr;
    align-items: start;
    gap: 22px;
  }

  .page-home .home-lane:nth-child(2) {
    margin-top: 38px;
  }

  .page-home .home-lane:nth-child(3) {
    margin-top: 76px;
  }

  .page-home .home-zones__banner {
    margin-bottom: 34px;
  }

  .page-home .home-zones__lead {
    inset: auto 40px 34px 40px;
    max-width: 54%;
  }

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

  .page-home .home-reason {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: baseline;
  }

  .page-home .home-faq__item {
    padding-left: 24px;
  }

  .page-home .home-cta {
    padding: 0 6vw 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-lane,
  .page-home .home-lane__hint,
  .page-home .home-zone__link,
  .page-home .home-lane__link,
  .page-home .home-rationale__more,
  .page-home .home-faq__morelink,
  .page-home .home-faq__item {
    transition: none;
  }

  .page-home .home-lane:hover,
  .page-home .home-lane:focus-within,
  .page-home .home-zone__link:hover,
  .page-home .home-zone__link:focus-visible {
    transform: none;
  }
}
