.page-home {
  position: relative;
  color: var(--c-text);
  background: var(--c-deep-gray);
  overflow: hidden;
}

.page-home .container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
  z-index: 2;
}

/* 首屏氛围背景层 */
.page-home .home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.page-home .home-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: saturate(0.8) brightness(0.6);
}

.page-home .home-bg__grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 30% 40%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 30% 40%, black, transparent 80%);
  z-index: 1;
}

/* 首屏拼贴区 */
.page-home .home-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

.page-home .home-hero__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.page-home .page-head__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-left: 2px solid var(--c-gold);
  padding-left: 0.75rem;
  margin-bottom: 0.5rem;
}

.page-home .home-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
  color: var(--c-off-white);
  margin: 0;
  font-weight: 500;
}

.page-home .home-hero__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--c-text);
  max-width: 54ch;
  margin: 0;
}

.page-home .home-hero__cta {
  margin-top: 0.5rem;
}

/* 首屏右侧入口卡片 */
.page-home .home-hero__entries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-home .entry-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(74, 14, 78, 0.9), rgba(123, 31, 162, 0.4));
  border: 1px solid var(--gold-rule);
  border-radius: 0;
  padding: 0.75rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.page-home .entry-card:hover,
.page-home .entry-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.08);
  outline: none;
}

.page-home .entry-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--c-mid-gray);
}

.page-home .entry-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-right: 0.25rem;
}

.page-home .entry-card__index {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  margin: 0;
}

.page-home .entry-card__title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--c-off-white);
  margin: 0;
}

.page-home .entry-card__text {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--c-text);
  margin: 0;
}

/* 品牌宣言 */
.page-home .home-manifesto {
  margin-top: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
  border-top: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
}

.page-home .home-manifesto__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--c-light-grape);
  margin: 0 0 0.75rem 0;
}

.page-home .home-manifesto__quote {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--c-off-white);
  margin: 0 auto;
  max-width: 70ch;
  line-height: 1.5;
}

/* 数据一览 */
.page-home .home-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.page-home .home-stat {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid var(--gold-rule);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}

.page-home .home-stat__num {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--c-gold);
  line-height: 1;
}

.page-home .home-stat__label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--c-text);
  letter-spacing: 0.05em;
}

/* 区块共用头 */
.page-home .home-section-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.page-home .home-section-head__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin: 0;
}

.page-home .home-section-head__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--c-off-white);
  margin: 0;
}

.page-home .home-section-head__link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--c-gold);
  text-decoration: none;
}

.page-home .home-section-head__link:hover {
  text-decoration: underline;
}

/* 最新动态 */
.page-home .home-news {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.page-home .home-news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-home .news-card {
  border: 1px solid var(--gold-rule);
  background: rgba(30, 30, 30, 0.7);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.page-home .news-card__tag {
  align-self: flex-start;
}

.page-home .news-card__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--c-off-white);
  margin: 0;
}

.page-home .news-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text);
  margin: 0;
}

.page-home .news-card__link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--c-gold);
  text-decoration: none;
  margin-top: auto;
}

.page-home .news-card__link:hover {
  underline: 1px;
}

/* 探索更多 */
.page-home .home-explore {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.page-home .home-explore__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-home .explore-card {
  position: relative;
  min-height: 220px;
  padding: 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  border: 1px solid transparent;
  transition: transform var(--ease), border-color var(--ease);
}

.page-home .explore-card:hover,
.page-home .explore-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  outline: none;
}

.page-home .explore-card--about {
  background: linear-gradient(135deg, rgba(74, 14, 78, 0.9), rgba(30, 30, 30, 0.8));
}

.page-home .explore-card--solutions {
  background: linear-gradient(135deg, rgba(123, 31, 162, 0.8), rgba(30, 30, 30, 0.8));
}

.page-home .explore-card__index {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  margin: 0;
}

.page-home .explore-card__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--c-off-white);
  margin: 0;
}

.page-home .explore-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text);
  max-width: 45ch;
  margin: 0;
}

/* 桌面端布局适配 */
@media (min-width: 900px) {
  .page-home .home-hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    gap: 2rem;
    min-height: calc(100vh - 2rem);
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .page-home .home-hero__intro {
    justify-content: center;
  }

  .page-home .home-hero__entries {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 0.9fr;
    align-items: stretch;
  }

  .page-home .entry-card--primary {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: 0.7fr 1.3fr;
  }

  .page-home .entry-card--primary .entry-card__title {
    font-size: 1.5rem;
  }

  .page-home .entry-card {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .page-home .entry-card__img {
    aspect-ratio: 16 / 9;
  }

  .page-home .entry-card--primary .entry-card__img {
    aspect-ratio: 16 / 9;
  }

  .page-home .home-stats {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

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

  .page-home .home-explore__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-explore-card {
    min-height: 300px;
  }
}

/* 动效减弱适配 */
@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
