.page-home {
  --home-space: 40px;
  --home-section-space: 40px;
  --home-gutter: 20px;
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: clip;
}

.page-home .page-head {
  padding: 48px 20px 36px;
  max-width: var(--content-w);
  margin-inline: auto;
}

.page-home .page-head .breadcrumb {
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.page-home .page-head .breadcrumb a {
  color: var(--c-teal);
  text-decoration: none;
}

.page-home .page-head .breadcrumb a:hover {
  color: var(--c-orange);
}

.page-home .page-head .page-index {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--c-orange);
}

.page-home .page-head .page-title {
  position: relative;
  padding-left: 14px;
  margin-top: 8px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 7vw, 52px);
  line-height: 1.18;
  color: var(--c-deep-blue);
}

.page-home .page-head .page-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15em;
  bottom: .15em;
  width: 5px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--c-gold), var(--c-orange));
}

.page-home .page-head .lead {
  margin-top: 16px;
  font-size: 16px;
  color: var(--c-ink);
}

.page-home .home-toc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}

.page-home .home-toc__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  background: var(--c-white);
  box-shadow: 0 2px 12px rgba(10, 31, 68, .06);
  color: var(--c-ink);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.page-home .home-toc__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 31, 68, .1);
}

.page-home .home-toc__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-deep-blue);
  color: var(--c-gold);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.page-home .home-section {
  position: relative;
  padding: var(--home-section-space) 0;
}

.page-home .home-section__head {
  position: relative;
  z-index: 1;
  max-width: var(--content-w);
  margin-inline: auto;
  padding-inline: var(--home-gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
}

.page-home .home-section__index {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--c-orange);
}

.page-home .home-section__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.25;
  color: var(--c-deep-blue);
}

.page-home .home-section__body {
  position: relative;
  z-index: 1;
  max-width: var(--content-w);
  margin-inline: auto;
  padding-inline: var(--home-gutter);
}

.page-home .home-section__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-ink);
}

.page-home .home-section--overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10, 31, 68, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 31, 68, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-home .home-overview {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}

.page-home .home-overview__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e9eef5;
}

.page-home .home-overview__text {
  font-size: 15px;
}

.page-home .home-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.page-home .home-stat {
  border-radius: var(--radius-md);
  padding: 16px 14px;
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 2px 10px rgba(10, 31, 68, .05);
}

.page-home .home-stat__num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 24px;
  color: var(--c-deep-blue);
  transform: rotate(-1deg);
}

.page-home .home-stat__label {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--c-gray);
}

.page-home .home-overview__footnote {
  margin-top: 16px;
  font-size: 13px;
  color: var(--c-gray);
}

.page-home .home-section--privilege {
  background:
    radial-gradient(circle at 80% 10%, rgba(123, 92, 230, .34) 0, transparent 42%),
    radial-gradient(circle at 8% 92%, rgba(15, 118, 110, .30) 0, transparent 36%),
    linear-gradient(135deg, var(--c-deep-blue) 0%, #0c2e68 100%);
  color: rgba(255, 255, 255, .88);
}

.page-home .home-section--privilege::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-home .home-section--privilege .home-section__title {
  color: #fff;
}

.page-home .home-section--privilege .home-section__lead {
  color: rgba(255, 255, 255, .78);
}

.page-home .home-section--privilege .home-section__index {
  color: var(--c-gold);
}

.page-home .benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.page-home .benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
}

.page-home .benefit-card--gold {
  background: linear-gradient(145deg, rgba(212, 175, 55, .20), rgba(212, 175, 55, .05));
  border-color: rgba(212, 175, 55, .45);
}

.page-home .benefit-card__icon {
  font-size: 24px;
  line-height: 1;
  color: var(--c-gold);
}

.page-home .benefit-card__title {
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  color: var(--c-gold);
}

.page-home .benefit-card__desc {
  margin-top: 6px;
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .72);
}

.page-home .benefit-card .btn {
  margin-top: 16px;
}

.page-home .home-section--privilege .benefit-card .btn--ghost {
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

.page-home .benefit-card .btn--gold {
  background: var(--c-gold);
  color: var(--c-deep-blue);
}

.page-home .home-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
  border-radius: var(--radius-xl);
  background: rgba(10, 31, 68, .38);
  padding: 24px;
}

.page-home .home-points__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-home .home-points__content h3 {
  font-family: var(--font-head);
  font-size: 21px;
  color: #fff;
}

.page-home .home-points__content p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .72);
}

.page-home .home-points__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}

.page-home .home-points__list li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
}

.page-home .home-points__list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-gold);
}

.page-home .home-section--replay {
  background: var(--c-white);
}

.page-home .home-replay {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
}

.page-home .home-replay__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e8edf5;
}

.page-home .home-replay__content h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: var(--c-deep-blue);
}

.page-home .home-replay__content p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--c-ink);
}

.page-home .home-replay__list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.page-home .home-replay__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-family: var(--font-head);
  color: var(--c-ink);
}

.page-home .home-replay__list .tag {
  flex: 0 0 auto;
}

.page-home .home-replay__content .btn {
  margin-top: 24px;
}

.page-home .home-section--help {
  background: var(--c-cream);
}

.page-home .home-help {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 28px;
}

.page-home .home-notices h3 {
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--c-deep-blue);
}

.page-home .home-notices__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .home-notices__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.page-home .home-notices__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-deep-blue);
  color: var(--c-gold);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.page-home .home-notices__card {
  border-radius: var(--radius-md);
  background: var(--c-white);
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(10, 31, 68, .05);
}

.page-home .home-notices__card h4 {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--c-ink);
}

.page-home .home-notices__card p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-gray);
}

.page-home .home-feedback {
  border-radius: var(--radius-xl);
  background: var(--c-deep-blue);
  padding: 28px 24px;
  color: rgba(255, 255, 255, .85);
  box-shadow: 0 18px 44px rgba(10, 31, 68, .3);
}

.page-home .home-feedback h3 {
  font-family: var(--font-head);
  font-size: 21px;
  color: var(--c-gold);
}

.page-home .home-feedback > p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .70);
}

.page-home .home-feedback__list {
  list-style: none;
  margin-top: 18px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .home-feedback__list li {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .07);
  font-size: 14px;
  font-family: var(--font-mono);
  color: var(--c-white);
}

.page-home .home-feedback__list span {
  display: block;
  font-size: 12px;
  font-family: var(--font-body);
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .5);
}

.page-home .home-feedback__address {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

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

.page-home .home-feedback__actions .btn--ghost {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.page-home .home-section--culture {
  background: var(--c-cream);
  border-top: 1px solid rgba(15, 118, 110, .14);
  overflow: hidden;
}

.page-home .home-section--culture::before {
  content: "赣";
  position: absolute;
  right: -20px;
  top: 10px;
  font-size: 240px;
  font-weight: 900;
  font-family: var(--font-head);
  color: rgba(15, 118, 110, .05);
  pointer-events: none;
  z-index: 0;
}

.page-home .home-culture {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.page-home .home-culture__lead {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--c-teal);
}

.page-home .home-culture__text {
  margin-top: 12px;
  font-size: 15px;
  color: var(--c-ink);
}

.page-home .home-culture__figure {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e5ecec;
}

.page-home .figure__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.page-home .figure--portrait .figure__img {
  aspect-ratio: 1 / 1;
}

.page-home .home-culture__figure .figure__img {
  aspect-ratio: 4 / 1;
}

.page-home .home-rail {
  position: fixed;
  right: 12px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.page-home .home-rail__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(10, 31, 68, .28);
  transition: transform .3s ease, box-shadow .3s ease;
}

.page-home .home-rail__btn--feedback {
  background: var(--c-orange);
  color: #fff;
}

.page-home .home-rail__btn--notice {
  background: var(--c-deep-blue);
  color: var(--c-gold);
}

@media (min-width: 768px) {
  .page-home {
    --home-gutter: 32px;
  }

  .page-home .home-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

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

  .page-home .home-rail {
    flex-direction: column;
    top: 50%;
    right: 20px;
    bottom: auto;
    transform: translateY(-50%);
  }

  .page-home .home-rail__btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .page-home .home-rail__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(10, 31, 68, .32);
  }
}

@media (min-width: 960px) {
  .page-home {
    --home-gutter: 40px;
    --home-space: 72px;
    --home-section-space: 64px;
  }

  .page-home .page-head {
    display: grid;
    grid-template-columns: 1fr 340px;
    grid-template-areas:
      "crumb crumb"
      "index toc"
      "title toc"
      "lead toc";
    column-gap: 48px;
    row-gap: 8px;
    align-items: start;
    padding-top: var(--home-space);
  }

  .page-home .page-head .breadcrumb {
    grid-area: crumb;
    margin-bottom: 24px;
  }

  .page-home .page-head .page-index {
    grid-area: index;
  }

  .page-home .page-head .page-title {
    grid-area: title;
  }

  .page-home .page-head .lead {
    grid-area: lead;
  }

  .page-home .page-head .home-toc {
    grid-area: toc;
    margin-top: 0;
    align-self: start;
  }

  .page-home .home-section__head {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .page-home .home-section__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--c-deep-blue);
    color: var(--c-gold);
  }

  .page-home .home-section--privilege .home-section__index {
    background: rgba(255, 255, 255, .12);
    color: var(--c-gold);
  }

  .page-home .home-overview {
    flex-direction: row;
    align-items: center;
    gap: 44px;
  }

  .page-home .home-overview__figure {
    flex: 1.1;
  }

  .page-home .home-overview__content {
    flex: 1;
  }

  .page-home .home-overview__text {
    font-size: 16px;
  }

  .page-home .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .page-home .home-points {
    grid-template-columns: 400px 1fr;
    align-items: center;
    padding: 32px 40px;
  }

  .page-home .home-replay {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .page-home .home-replay__figure {
    flex: 1.2;
  }

  .page-home .home-replay__content {
    flex: 1;
  }

  .page-home .home-help {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }
}

@media (min-width: 1200px) {
  .page-home .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
