.page-home {
  --home-rail: 292px;
  --home-gap: clamp(18px, 2.4vw, 34px);
  --home-soft: rgba(244, 237, 223, 0.68);
  --home-hair: rgba(62, 107, 94, 0.42);
  --home-card: rgba(12, 58, 45, 0.72);
  display: block;
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

.page-home .home-stage {
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: clamp(18px, 2.6vw, 36px) var(--shell-pad) clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-gap);
}

.page-home .home-flow {
  min-width: 0;
}

.page-home .home-flow > section {
  margin-top: clamp(48px, 6vw, 88px);
}

.page-home .home-flow > section:first-child {
  margin-top: 0;
}

/* ---------- 左侧索引栏 ---------- */

.page-home .home-rail__inner {
  border: 1px solid var(--home-hair);
  border-radius: var(--r-lg);
  background: rgba(20, 81, 63, 0.36);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 20px 18px 22px;
  display: grid;
  gap: 14px;
}

.page-home .home-rail__status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .home-rail__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-cyan);
  box-shadow: 0 0 0 4px rgba(44, 230, 192, 0.16);
}

.page-home .home-rail__status-text {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-cyan);
}

.page-home .home-rail__eyebrow {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-mist);
}

.page-home .home-rail__season {
  margin: 0;
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.3;
  color: var(--c-paper);
}

.page-home .home-rail__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 12px 16px;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--home-hair);
}

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

.page-home .home-rail__item dt {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--c-mist);
}

.page-home .home-rail__item dd {
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-paper);
  line-height: 1.5;
}

.page-home .home-rail__item dd.is-num {
  font-family: var(--f-num);
  font-size: 17px;
  color: var(--c-cyan);
  letter-spacing: 0.02em;
}

.page-home .home-rail__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.page-home .home-rail__nav a {
  display: block;
  padding: 8px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--home-hair);
  color: var(--c-paper);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.page-home .home-rail__nav a:hover,
.page-home .home-rail__nav a:focus-visible {
  background: rgba(44, 230, 192, 0.14);
  border-color: rgba(44, 230, 192, 0.5);
  color: var(--c-cyan);
  outline: none;
}

.page-home .home-rail__cta {
  margin-top: 2px;
}

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

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4.4vw, 62px) clamp(20px, 3.6vw, 56px) clamp(76px, 8vw, 116px);
  background: linear-gradient(155deg, #0C3A2D 0%, #06231C 58%, #06231C 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
}

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

.page-home .home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.72) contrast(1.08);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(103deg, rgba(6, 35, 28, 0.95) 0%, rgba(6, 35, 28, 0.8) 46%, rgba(6, 35, 28, 0.4) 100%);
  pointer-events: none;
}

.page-home .home-hero__body {
  position: relative;
  z-index: 2;
}

.page-home .eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-cyan);
}

.page-home .home-hero h1 {
  margin: 14px 0 0;
  font-family: var(--f-display);
  font-size: clamp(30px, 5.2vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--c-paper);
  max-width: 20ch;
}

.page-home .home-hero__lede {
  margin: 18px 0 0;
  max-width: 54ch;
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.9;
  color: var(--home-soft);
}

.page-home .home-hero__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.page-home .home-hero__ver {
  font-family: var(--f-num);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--c-mist);
}

.page-home .home-hero__fav {
  padding: 8px 16px;
  font-size: 13px;
}

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

.page-home .home-hero__paths {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  max-width: 640px;
}

.page-home .home-hero__paths a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--home-hair);
  background: rgba(6, 35, 28, 0.52);
  color: var(--c-paper);
  font-size: 14px;
  text-decoration: none;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

.page-home .home-hero__paths a:hover,
.page-home .home-hero__paths a:focus-visible {
  border-color: rgba(44, 230, 192, 0.52);
  background: rgba(20, 81, 63, 0.6);
  outline: none;
}

.page-home .home-hero__path-k {
  font-family: var(--f-num);
  font-size: 13px;
  color: var(--c-cyan);
  letter-spacing: 0.04em;
}

/* ---------- 章节头 ---------- */

.page-home .section__head h2 {
  margin: 12px 0 0;
  font-family: var(--f-display);
  font-size: clamp(24px, 3.3vw, 40px);
  line-height: 1.14;
  color: var(--c-paper);
  max-width: 26ch;
}

.page-home .section__head .lede {
  margin: 14px 0 0;
  max-width: 62ch;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--home-soft);
}

/* ---------- 规模总览 ---------- */

.page-home .home-scale__stats {
  margin-top: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 14px;
}

.page-home .home-scale__stat {
  position: relative;
  border: 1px solid var(--home-hair);
  border-radius: var(--r-md);
  background: var(--home-card);
  padding: 20px 16px 18px;
  outline: none;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

.page-home .home-scale__stat:hover,
.page-home .home-scale__stat:focus-visible {
  border-color: rgba(44, 230, 192, 0.5);
  background: rgba(20, 81, 63, 0.74);
}

.page-home .home-scale__num {
  margin: 0;
  font-family: var(--f-num);
  font-size: clamp(32px, 4.2vw, 46px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-cyan);
}

.page-home .home-scale__unit {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--c-mist);
  margin-left: 4px;
}

.page-home .home-scale__label {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--c-paper);
}

.page-home .home-scale__tip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 6;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(44, 230, 192, 0.32);
  background: rgba(6, 35, 28, 0.97);
  color: var(--c-paper);
  font-size: 13px;
  line-height: 1.7;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
}

.page-home .home-scale__stat:hover .home-scale__tip,
.page-home .home-scale__stat:focus-visible .home-scale__tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-home .home-scale__figure {
  margin: clamp(24px, 3vw, 36px) 0 0;
  border: 1px solid var(--home-hair);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(12, 58, 45, 0.52);
}

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

.page-home .home-scale__figure figcaption {
  padding: 14px 20px 18px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--home-soft);
  border-top: 1px solid var(--home-hair);
}

/* ---------- 三条主线 ---------- */

.page-home .home-lines {
  position: relative;
  overflow: hidden;
}

.page-home .home-lines__wash {
  position: absolute;
  top: 4%;
  right: -12%;
  width: min(460px, 62%);
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.page-home .home-lines__wash img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-lines .section__head,
.page-home .home-lines__grid {
  position: relative;
  z-index: 1;
}

.page-home .home-lines__grid {
  margin-top: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-home .line-card {
  border: 1px solid var(--home-hair);
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, rgba(12, 58, 45, 0.92), rgba(6, 35, 28, 0.88));
  padding: clamp(20px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .line-card__tag {
  align-self: flex-start;
  margin: 0;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--home-hair);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-mist);
}

.page-home .line-card h3 {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.2;
  color: var(--c-paper);
}

.page-home .line-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.88;
  color: var(--home-soft);
}

.page-home .line-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.page-home .line-card li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--c-paper);
}

.page-home .line-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 2px;
  background: var(--c-cyan);
}

.page-home .line-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.page-home .line-card__shot {
  margin: 0;
  border: 1px solid var(--home-hair);
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(6, 35, 28, 0.7);
}

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

/* ---------- 变动留档 ---------- */

.page-home .home-changes__list {
  list-style: none;
  margin: clamp(24px, 3vw, 36px) 0 0;
  padding: 0;
  border-top: 1px solid var(--home-hair);
}

.page-home .home-changes__item {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--home-hair);
}

.page-home .home-changes__time {
  font-family: var(--f-num);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--c-cyan);
}

.page-home .home-changes__body {
  min-width: 0;
}

.page-home .home-changes__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-paper);
}

.page-home .home-changes__text {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--home-soft);
}

.page-home .home-changes__link {
  justify-self: start;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 122, 51, 0.45);
  padding-bottom: 2px;
}

.page-home .home-changes__link:hover,
.page-home .home-changes__link:focus-visible {
  border-bottom-color: var(--c-orange);
  outline: none;
}

.page-home .home-changes__save {
  margin-top: clamp(22px, 2.6vw, 30px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 122, 51, 0.32);
  background: rgba(20, 81, 63, 0.42);
}

.page-home .home-changes__save p {
  margin: 0;
  flex: 1 1 320px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--c-paper);
}

/* ---------- 最近动态 ---------- */

.page-home .home-latest__list {
  list-style: none;
  margin: clamp(24px, 3vw, 36px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.page-home .home-latest__item a {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid var(--home-hair);
  border-radius: var(--r-md);
  background: rgba(12, 58, 45, 0.58);
  text-decoration: none;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

.page-home .home-latest__item a:hover,
.page-home .home-latest__item a:focus-visible {
  border-color: rgba(44, 230, 192, 0.46);
  background: rgba(20, 81, 63, 0.68);
  outline: none;
}

.page-home .home-latest__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-num);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--c-mist);
}

.page-home .home-latest__tag {
  font-family: var(--f-body);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--home-hair);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--c-cyan);
}

.page-home .home-latest__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--c-paper);
}

.page-home .home-latest__text {
  font-size: 14px;
  line-height: 1.78;
  color: var(--home-soft);
}

.page-home .home-latest__more {
  margin-top: clamp(20px, 2.4vw, 28px);
}

/* ---------- 服务入口 ---------- */

.page-home .home-reach__grid {
  margin-top: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 14px;
}

.page-home .reach-tile {
  display: grid;
  gap: 8px;
  padding: 22px 20px;
  border: 1px solid var(--home-hair);
  border-radius: var(--r-lg);
  background: rgba(12, 58, 45, 0.6);
  text-decoration: none;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

.page-home .reach-tile:hover,
.page-home .reach-tile:focus-visible {
  border-color: rgba(44, 230, 192, 0.48);
  background: rgba(20, 81, 63, 0.72);
  outline: none;
}

.page-home .reach-tile__num {
  font-family: var(--f-num);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-cyan);
}

.page-home .reach-tile__name {
  font-family: var(--f-display);
  font-size: 21px;
  line-height: 1.25;
  color: var(--c-paper);
}

.page-home .reach-tile__hint {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--home-soft);
}

.page-home .home-reach__contact {
  margin-top: clamp(24px, 3vw, 36px);
  padding: 22px;
  border: 1px solid var(--home-hair);
  border-radius: var(--r-lg);
  background: rgba(6, 35, 28, 0.62);
  display: grid;
  gap: 14px;
}

.page-home .home-reach__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.page-home .home-reach__key {
  flex: 0 0 auto;
  min-width: 72px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-mist);
}

.page-home .home-reach__val {
  font-family: var(--f-num);
  font-size: 15px;
  color: var(--c-paper);
  word-break: break-word;
}

.page-home .home-reach__note {
  margin: 4px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--home-hair);
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--home-soft);
}

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

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

  .page-home .home-hero__paths li:last-child {
    grid-column: 1 / -1;
  }

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

@media (min-width: 1000px) {
  .page-home .home-stage {
    grid-template-columns: var(--home-rail) minmax(0, 1fr);
    align-items: start;
  }

  .page-home .home-rail {
    position: sticky;
    top: calc(var(--header-h) + 18px);
  }

  .page-home .home-rail__nav {
    flex-direction: column;
  }

  .page-home .home-rail__nav a {
    text-align: left;
  }

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

  .page-home .home-hero__paths li:last-child {
    grid-column: auto;
  }

  .page-home .home-hero__paths a {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 18px;
    font-size: 13.5px;
    line-height: 1.6;
  }
}

@media (min-width: 900px) {
  .page-home .home-lines__grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .page-home .line-card--schedule {
    grid-column: 1;
    grid-row: 1;
  }

  .page-home .line-card--saves {
    grid-column: 1;
    grid-row: 2;
  }

  .page-home .line-card--panel {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .page-home .home-changes__item {
    grid-template-columns: 200px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 26px;
  }

  .page-home .home-changes__link {
    justify-self: end;
  }
}

@media (max-width: 380px) {
  .page-home .home-hero {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-home .home-scale__stats {
    grid-template-columns: minmax(0, 1fr);
  }
}
<<<END>>>
