/* ================= 首页专属样式 · 作用域 .page-home ================= */

.page-home {
  --gh-accent: var(--gx-brand);
  --gh-hair: 1px solid var(--gx-line);
  --gh-radius: 2px;
  display: block;
  background: var(--gx-void);
  color: var(--gx-silver);
  overflow-x: hidden;
}

.page-home .gx-section {
  padding-block: clamp(56px, 8vw, 108px);
}

.page-home .gh-head {
  max-width: 56rem;
}

/* ---------- 框景首屏 ---------- */

.page-home .gh-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 12vw, 146px) 0 clamp(48px, 6vw, 88px);
}

.page-home .gh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg,
      transparent 0 40%,
      rgba(23, 28, 63, 0.55) 40.2%,
      rgba(11, 16, 36, 0.24) 60%,
      transparent 60.2%);
  pointer-events: none;
}

.page-home .gh-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-home .gh-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 46%;
  opacity: 0.4;
}

.page-home .gh-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(88% 68% at 16% 22%, rgba(91, 75, 255, 0.36), transparent 60%),
    radial-gradient(58% 58% at 88% 80%, rgba(160, 108, 255, 0.18), transparent 64%),
    linear-gradient(180deg,
      rgba(5, 6, 13, 0.12) 0%,
      rgba(5, 6, 13, 0.76) 66%,
      var(--gx-void) 100%);
}

.page-home .gh-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  padding: clamp(32px, 4.4vw, 62px) clamp(20px, 3.4vw, 54px);
  border: 1px solid var(--gx-line);
  border-radius: var(--gh-radius);
  background: linear-gradient(168deg, rgba(11, 16, 36, 0.88) 0%, rgba(5, 6, 13, 0.72) 100%);
}

.page-home .gh-hero__inner::before,
.page-home .gh-hero__inner::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 8px;
  background-image: repeating-linear-gradient(90deg,
    rgba(35, 42, 82, 0.95) 0 1px,
    transparent 1px 13px);
  pointer-events: none;
}

.page-home .gh-hero__inner::before { top: 7px; }
.page-home .gh-hero__inner::after { bottom: 7px; }

.page-home .gh-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 clamp(20px, 3vw, 32px);
  font-family: var(--gx-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gx-mute);
}

.page-home .gh-hero__title {
  margin: 0 0 clamp(18px, 2.6vw, 30px);
  font-family: var(--gx-font-display);
  font-weight: 200;
  font-size: clamp(34px, 6.4vw, 82px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--gx-silver);
}

.page-home .gh-hero__title em {
  font-style: normal;
  color: var(--gx-gold);
}

.page-home .gh-hero__lead {
  max-width: 38rem;
  margin: 0 0 clamp(24px, 3.2vw, 38px);
  font-size: 16px;
  line-height: 1.78;
  color: var(--gx-silver);
}

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

.page-home .gh-hero__stats {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: var(--gh-hair);
}

.page-home .gh-stat {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  grid-template-areas:
    "num label"
    "note note";
  column-gap: 14px;
  align-items: baseline;
  padding: 14px 2px 13px;
  border-bottom: var(--gh-hair);
  transition: background 0.3s var(--gx-ease);
}

.page-home .gh-stat:hover,
.page-home .gh-stat:focus-within {
  background: rgba(91, 75, 255, 0.07);
}

.page-home .gh-stat:focus-visible {
  outline: 2px solid var(--gx-gold);
  outline-offset: 2px;
}

.page-home .gh-stat__num {
  grid-area: num;
  font-family: var(--gx-font-mono);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--gx-silver);
}

.page-home .gh-stat--gold .gh-stat__num {
  color: var(--gx-gold);
}

.page-home .gh-stat__label {
  grid-area: label;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gx-mute);
}

.page-home .gh-stat__note {
  grid-area: note;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  font-family: var(--gx-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gx-signal);
  transition: max-height 0.32s var(--gx-ease),
              opacity 0.32s var(--gx-ease),
              margin-top 0.32s var(--gx-ease);
}

.page-home .gh-stat:hover .gh-stat__note,
.page-home .gh-stat:focus-within .gh-stat__note {
  max-height: 5em;
  margin-top: 7px;
  opacity: 1;
}

/* ---------- 01 交付排期 ---------- */

.page-home .gh-deliver__grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  margin-top: clamp(28px, 4vw, 52px);
}

.page-home .gh-zones {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: var(--gh-hair);
}

.page-home .gh-zone {
  position: relative;
  padding: 24px 0 26px 22px;
  border-bottom: var(--gh-hair);
}

.page-home .gh-zone::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 8px;
  height: 1px;
  background: var(--gx-brand);
}

.page-home .gh-zone__code {
  display: block;
  margin-bottom: 10px;
  font-family: var(--gx-font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gx-mute);
}

.page-home .gh-zone__name {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gx-silver);
}

.page-home .gh-zone__time {
  margin: 0 0 10px;
  font-family: var(--gx-font-mono);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 500;
  line-height: 1;
  color: var(--gx-gold);
  letter-spacing: 0.01em;
}

.page-home .gh-zone__time small {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gx-mute);
}

.page-home .gh-zone__desc {
  margin: 0;
  max-width: 34rem;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gx-mute);
}

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

.page-home .gh-figure .gx-media {
  border: 1px solid var(--gx-line);
}

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

/* ---------- 02 到货速度 ---------- */

.page-home .gh-speed {
  background:
    linear-gradient(180deg, rgba(11, 16, 36, 0.55) 0%, rgba(5, 6, 13, 0) 100%);
}

.page-home .gh-speed__grid {
  display: grid;
  gap: clamp(30px, 4.4vw, 56px);
}

.page-home .gh-lanes {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .gh-lane {
  position: relative;
  padding: 20px 22px 22px;
  border: 1px solid var(--gx-line);
  border-left: 3px solid var(--gx-brand);
  background: linear-gradient(150deg, rgba(23, 28, 63, 0.7) 0%, rgba(11, 16, 36, 0.42) 100%);
}

.page-home .gh-lane:nth-child(2) { border-left-color: var(--gx-violet); }
.page-home .gh-lane:nth-child(3) { border-left-color: var(--gx-line); }

.page-home .gh-lane__tier {
  display: block;
  margin-bottom: 8px;
  font-family: var(--gx-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gx-mute);
}

.page-home .gh-lane__name {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 500;
  color: var(--gx-silver);
}

.page-home .gh-lane__time {
  margin: 0 0 8px;
  font-family: var(--gx-font-mono);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--gx-gold);
}

.page-home .gh-lane__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gx-mute);
}

.page-home .gh-factors {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: var(--gh-hair);
}

.page-home .gh-factor {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: var(--gh-hair);
}

.page-home .gh-factor__key {
  min-width: 7.5em;
  font-family: var(--gx-font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gx-signal);
}

.page-home .gh-factor__val {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gx-mute);
}

.page-home .gh-speed__figure {
  margin: 0;
}

.page-home .gh-speed__figure .gx-media {
  border: 1px solid var(--gx-line);
}

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

/* ---------- 03 城市索引带 ---------- */

.page-home .gh-cities__grid {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 4vw, 52px);
}

.page-home .gh-city {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 24px 28px;
  border: 1px solid var(--gx-line);
  background: linear-gradient(158deg, rgba(23, 28, 63, 0.74) 0%, rgba(11, 16, 36, 0.5) 100%);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.3s var(--gx-ease),
              transform 0.3s var(--gx-ease),
              background 0.3s var(--gx-ease);
}

.page-home .gh-city::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gx-brand), transparent 82%);
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 0.36s var(--gx-ease);
}

.page-home .gh-city:hover,
.page-home .gh-city:focus-visible {
  border-color: var(--gx-brand);
  background: linear-gradient(158deg, rgba(32, 38, 82, 0.82) 0%, rgba(11, 16, 36, 0.58) 100%);
}

.page-home .gh-city:hover::after,
.page-home .gh-city:focus-visible::after {
  transform: scaleX(1);
}

.page-home .gh-city:focus-visible {
  outline: 2px solid var(--gx-gold);
  outline-offset: 3px;
}

.page-home .gh-city__code {
  font-family: var(--gx-font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gx-mute);
}

.page-home .gh-city__name {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--gx-silver);
}

.page-home .gh-city__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gx-mute);
}

.page-home .gh-city__cta {
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--gx-font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gx-signal);
}

.page-home .gh-city:hover .gh-city__cta,
.page-home .gh-city:focus-visible .gh-city__cta {
  color: var(--gx-gold);
}

/* ---------- 04 业务入口 ---------- */

.page-home .gh-services__grid {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 4vw, 52px);
}

.page-home .gh-svc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px 28px;
  border: 1px solid var(--gx-line);
  border-top-width: 2px;
  background: rgba(11, 16, 36, 0.55);
}

.page-home .gh-svc--a { border-top-color: var(--gx-brand); }
.page-home .gh-svc--b { border-top-color: var(--gx-violet); }
.page-home .gh-svc--c { border-top-color: var(--gx-gold); }

.page-home .gh-svc__code {
  font-family: var(--gx-font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gx-mute);
}

.page-home .gh-svc__name {
  margin: 0;
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 400;
  color: var(--gx-silver);
}

.page-home .gh-svc__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: var(--gx-silver);
}

.page-home .gh-svc__fit {
  margin: 0;
  padding: 12px 0 0;
  border-top: var(--gh-hair);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--gx-mute);
}

.page-home .gh-svc__link {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--gx-font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--gx-signal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.26s var(--gx-ease), border-color 0.26s var(--gx-ease);
}

.page-home .gh-svc__link:hover,
.page-home .gh-svc__link:focus-visible {
  color: var(--gx-gold);
  border-bottom-color: var(--gx-gold);
}

.page-home .gh-svc__link:focus-visible {
  outline: 2px solid var(--gx-gold);
  outline-offset: 3px;
}

/* ---------- 05 山东枢纽 ---------- */

.page-home .gh-shandong {
  background:
    linear-gradient(180deg, rgba(5, 6, 13, 0) 0%, rgba(11, 16, 36, 0.6) 52%, rgba(5, 6, 13, 0) 100%);
}

.page-home .gh-shandong__grid {
  display: grid;
  gap: clamp(30px, 4.4vw, 56px);
  align-items: start;
}

.page-home .gh-shandong__figure {
  margin: 0;
}

.page-home .gh-shandong__figure .gx-media {
  border: 1px solid var(--gx-line);
}

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

.page-home .gh-shandong__copy .gx-section__index {
  margin-bottom: 12px;
}

.page-home .gh-shandong__copy .gx-section__title {
  margin-bottom: 18px;
}

.page-home .gh-sdstats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  border-top: var(--gh-hair);
}

.page-home .gh-sdstat {
  padding: 16px 14px 16px 0;
  border-bottom: var(--gh-hair);
}

.page-home .gh-sdstat:first-child { border-right: var(--gh-hair); }
.page-home .gh-sdstat:nth-child(2) { padding-left: 16px; border-right: none; }
.page-home .gh-sdstat:nth-child(3) { border-right: var(--gh-hair); }

.page-home .gh-sdstat dt {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gx-mute);
}

.page-home .gh-sdstat dd {
  margin: 0;
  font-family: var(--gx-font-mono);
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1;
  color: var(--gx-silver);
}

.page-home .gh-sdstat dd span {
  margin-left: 4px;
  font-family: var(--gx-font-body);
  font-size: 13px;
  color: var(--gx-mute);
}

.page-home .gh-shandong__note {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.78;
  color: var(--gx-mute);
}

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

/* ---------- 06 当季更新 ---------- */

.page-home .gh-updates__list {
  margin-top: clamp(26px, 3.6vw, 46px);
  border-top: var(--gh-hair);
}

.page-home .gh-update {
  border-bottom: var(--gh-hair);
}

.page-home .gh-update__h {
  margin: 0;
}

.page-home .gh-update__trigger {
  display: flex;
  align-items: baseline;
  gap: 16px;
  width: 100%;
  padding: 20px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition: background 0.28s var(--gx-ease);
}

.page-home .gh-update__trigger:hover,
.page-home .gh-update__trigger:focus-visible {
  background: rgba(91, 75, 255, 0.08);
}

.page-home .gh-update__trigger:focus-visible {
  outline: 2px solid var(--gx-gold);
  outline-offset: -2px;
}

.page-home .gh-update__trigger .gx-panel__code {
  flex: 0 0 auto;
  font-family: var(--gx-font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gx-mute);
}

.page-home .gh-update__title {
  flex: 1 1 auto;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--gx-silver);
}

.page-home .gh-update__trigger .gx-panel__sign {
  flex: 0 0 auto;
  font-family: var(--gx-font-mono);
  font-size: 18px;
  line-height: 1;
  color: var(--gx-brand);
  transition: transform 0.3s var(--gx-ease), color 0.3s var(--gx-ease);
}

.page-home .gh-update__trigger[aria-expanded="true"] .gx-panel__sign {
  color: var(--gx-gold);
  transform: rotate(45deg);
}

.page-home .gh-update .gx-panel__body {
  padding: 0 4px 22px;
}

.page-home .gh-update .gx-panel__body p {
  max-width: 42rem;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gx-mute);
}

.page-home .gh-updates__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.page-home .gh-updates__link {
  font-family: var(--gx-font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gx-signal);
  text-decoration: none;
  border-bottom: 1px solid var(--gx-line);
  padding-bottom: 2px;
  transition: color 0.26s var(--gx-ease), border-color 0.26s var(--gx-ease);
}

.page-home .gh-updates__link:hover,
.page-home .gh-updates__link:focus-visible {
  color: var(--gx-gold);
  border-bottom-color: var(--gx-gold);
}

.page-home .gh-updates__link:focus-visible {
  outline: 2px solid var(--gx-gold);
  outline-offset: 3px;
}

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

@media (min-width: 720px) {
  .page-home .gh-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    border-top: 0;
  }

  .page-home .gh-stat {
    border-top: var(--gh-hair);
  }
}

@media (min-width: 900px) {
  .page-home .gh-hero__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
    align-items: start;
  }

  .page-home .gh-hero__stats {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .page-home .gh-deliver__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
  }

  .page-home .gh-speed__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }

  .page-home .gh-cities__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .page-home .gh-city:nth-child(1) { grid-column: 1 / 6; grid-row: 1; }
  .page-home .gh-city:nth-child(2) { grid-column: 7 / 13; grid-row: 1; margin-top: 54px; }
  .page-home .gh-city:nth-child(3) { grid-column: 4 / 11; grid-row: 2; margin-top: 4px; }

  .page-home .gh-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .page-home .gh-shandong__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .page-home .gh-shandong__figure {
    position: sticky;
    top: calc(var(--gx-header-h) + 24px);
  }
}

@media (min-width: 1180px) {
  .page-home .gh-hero__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
    gap: 64px;
  }
}

/* ---------- 动效降级 ---------- */

@media (prefers-reduced-motion: reduce) {
  .page-home .gh-stat,
  .page-home .gh-stat__note,
  .page-home .gh-city,
  .page-home .gh-city::after,
  .page-home .gh-svc__link,
  .page-home .gh-update__trigger,
  .page-home .gh-update__trigger .gx-panel__sign,
  .page-home .gh-updates__link {
    transition: none;
  }

  .page-home .gh-stat__note {
    max-height: none;
    margin-top: 7px;
    opacity: 1;
  }

  .page-home .gh-city:hover,
  .page-home .gh-city:focus-visible {
    transform: none;
  }
}
<<<END>>>
</main>
