.page-home {
  --home-navy-deep: #0B223A;
  --home-border-light: rgba(248, 244, 236, 0.16);
  --home-kicker-gold: #C9AD66;
}

/* ===== Hero 首屏 ===== */
.page-home .home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 88vh, 780px);
  overflow: hidden;
  padding: 3rem 0 4rem;
  background: linear-gradient(115deg, var(--home-navy-deep) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--paper-light);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.32;
}

.page-home .home-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 34, 58, 0.9) 0%, rgba(16, 42, 67, 0.72) 48%, rgba(16, 42, 67, 0.18) 100%);
}

.page-home .home-hero__slash {
  position: absolute;
  right: -60px;
  bottom: -80px;
  z-index: 2;
  width: min(480px, 60vw);
  height: min(480px, 60vw);
  opacity: 0.9;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 2.5rem;
  width: 100%;
}

.page-home .home-hero__content {
  max-width: 720px;
}

.page-home .home-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-light);
}

.page-home .home-hero__crumb,
.page-home .home-hero__crumb-sep {
  color: rgba(248, 244, 236, 0.58);
}

.page-home .home-hero h1 {
  margin: 0 0 1.4rem;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-home .home-hero__lead {
  margin: 0 0 2.1rem;
  max-width: 34em;
  font-family: var(--font-editorial);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.85;
  color: rgba(248, 244, 236, 0.82);
}

.page-home .home-hero__primary-btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.page-home .home-hero__primary-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 93, 38, 0.28);
}

.page-home .home-hero__index {
  width: 100%;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--home-border-light);
  border-radius: 4px;
  background: rgba(11, 34, 58, 0.62);
  backdrop-filter: blur(8px);
}

.page-home .home-hero__index-label {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--home-kicker-gold);
}

.page-home .home-hero__index ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-hero__index li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(248, 244, 236, 0.1);
}

.page-home .home-hero__index li:first-child {
  border-top: 0;
}

.page-home .home-hero__index li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0.6rem;
  width: 3px;
  height: 20px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease);
}

.page-home .home-hero__index li:hover::before {
  transform: scaleY(1);
}

.page-home .home-hero__index-num {
  min-width: 1.6em;
  font-family: var(--font-editorial);
  font-size: 0.8rem;
  color: var(--orange-light);
}

.page-home .home-hero__index a {
  color: var(--paper-light);
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.page-home .home-hero__index a:hover {
  color: var(--orange-light);
  padding-left: 3px;
}

/* ===== 通用分节头部 ===== */
.page-home .home-section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  align-items: end;
  margin-bottom: 2.75rem;
}

.page-home .home-section-head__no {
  grid-row: 1;
  font-family: var(--font-editorial);
  font-size: 2.4rem;
  line-height: 0.9;
  color: var(--orange);
}

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

.page-home .home-overline {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.page-home .home-section-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-home .home-section-head__desc,
.page-home .home-news__more {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 42em;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ===== 01 认准进站路径 ===== */
.page-home .home-path {
  padding: 4rem 0 4.5rem;
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}

.page-home .home-path__grid {
  border-top: 2px solid var(--ink);
}

.page-home .home-path__item {
  position: relative;
  display: flex;
  gap: 1.2rem;
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}

.page-home .home-path__item:hover {
  background: rgba(16, 42, 67, 0.03);
}

.page-home .home-path__item::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.page-home .home-path__item:hover::after {
  transform: scaleX(1);
}

.page-home .home-path__num {
  min-width: 1.4em;
  font-family: var(--font-editorial);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--orange);
}

.page-home .home-path__content h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ink);
}

.page-home .home-path__content p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* ===== 02 服务全景索引 ===== */
.page-home .home-directory {
  padding: 4rem 0 4.5rem;
  background: var(--paper-dark);
  border-bottom: 1px solid var(--line);
}

.page-home .home-directory__list {
  display: grid;
}

.page-home .home-directory__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(26, 24, 21, 0.16);
  transition: background 0.25s var(--ease);
}

.page-home .home-directory__list .home-directory__row:last-child {
  border-bottom: 1px solid rgba(26, 24, 21, 0.16);
}

.page-home .home-directory__row:hover {
  background: rgba(248, 244, 236, 0.42);
}

.page-home .home-directory__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.page-home .home-directory__num {
  font-family: var(--font-editorial);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--orange);
}

.page-home .home-directory__tag {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(16, 42, 67, 0.08);
  border-radius: 2px;
}

.page-home .home-directory__body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.3;
  color: var(--ink);
}

.page-home .home-directory__body p {
  margin: 0 0 0.8rem;
  max-width: 38em;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.page-home .home-directory__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .home-directory__link:hover {
  color: var(--orange);
}

.page-home .home-directory__link span {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}

.page-home .home-directory__link:hover span {
  transform: translateX(4px);
}

.page-home .home-directory__thumb {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-light);
  box-shadow: 0 6px 18px var(--shadow);
}

.page-home .home-directory__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.page-home .home-directory__row:hover .home-directory__thumb img {
  transform: scale(1.03);
}

/* ===== 03 最新动态 ===== */
.page-home .home-news {
  padding: 4rem 0 4.5rem;
  background: var(--navy);
  color: var(--paper-light);
}

.page-home .home-news .home-section-head h2 {
  color: var(--paper-light);
}

.page-home .home-news .home-overline {
  color: var(--home-kicker-gold);
}

.page-home .home-news__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-self: start;
  color: var(--orange-light);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.page-home .home-news__more:hover {
  color: #fff;
  gap: 0.65rem;
}

.page-home .home-news__list {
  display: grid;
  border-top: 1px solid rgba(248, 244, 236, 0.16);
}

.page-home .home-news__item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.8rem 1.1rem;
  align-items: baseline;
  padding: 1.4rem 0.5rem;
  border-bottom: 1px solid rgba(248, 244, 236, 0.16);
  text-decoration: none;
  transition: background 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.page-home .home-news__item:hover {
  background: rgba(248, 244, 236, 0.04);
  padding-left: 1rem;
}

.page-home .home-news__relative {
  font-family: var(--font-editorial);
  font-size: 0.85rem;
  white-space: nowrap;
  color: var(--accent-gold);
}

.page-home .home-news__cat {
  padding: 0.18rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--orange-light);
  border: 1px solid rgba(232, 93, 38, 0.4);
  border-radius: 2px;
}

.page-home .home-news__item h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--paper-light);
}

/* ===== 04 数据速览 ===== */
.page-home .home-stats {
  padding: 4.5rem 0 5rem;
  background: var(--paper-light);
}

.page-home .home-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.page-home .home-stats__cell {
  padding: 1.9rem 1.4rem 1.6rem;
  text-align: center;
  background: var(--paper-light);
}

.page-home .home-stats__cell strong {
  display: block;
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}

.page-home .home-stats__cell strong::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin: 0.6rem auto 0.4rem;
  background: var(--orange);
  border-radius: 2px;
}

.page-home .home-stats__cell span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.page-home .home-stats__figure {
  margin: 3rem 0 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px var(--shadow);
}

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

.page-home .home-stats__figure figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--paper-dark);
}

.page-home .home-stats__honor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.2rem;
  margin-top: 2.5rem;
  padding: 1.1rem 1.4rem;
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 6px 6px 0;
  background: rgba(180, 154, 75, 0.12);
}

.page-home .home-stats__honor-mark {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.page-home .home-stats__honor p {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink);
}

.page-home .home-stats__honor-link {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .home-stats__honor-link:hover {
  color: var(--orange);
}

/* ===== 桌面端增强 ===== */
@media (min-width: 820px) {
  .page-home .home-section-head {
    grid-template-columns: 76px 1fr minmax(260px, 320px);
    gap: 0 1.5rem;
  }

  .page-home .home-section-head__no {
    grid-row: 1;
  }

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

  .page-home .home-section-head__desc,
  .page-home .home-news__more {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    text-align: right;
  }

  .page-home .home-news__more {
    align-self: end;
  }
}

@media (min-width: 860px) {
  .page-home .home-path__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-path__item {
    display: block;
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .page-home .home-path__item:last-child {
    border-right: 0;
  }

  .page-home .home-path__item::after {
    left: 1.75rem;
    right: 1.75rem;
  }

  .page-home .home-path__num {
    display: block;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 880px) {
  .page-home .home-directory__row {
    grid-template-columns: 96px minmax(0, 1fr) minmax(240px, 360px);
    gap: 2rem;
    align-items: center;
  }

  .page-home .home-directory__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .page-home .home-directory__thumb {
    height: 176px;
  }
}

@media (min-width: 800px) {
  .page-home .home-stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 920px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 7fr) minmax(240px, 3fr);
    gap: 3rem;
    align-items: end;
  }

  .page-home .home-hero {
    padding: 5rem 0 6rem;
  }
}
