.page-home {
  --home-pad: clamp(1.25rem, 4.5vw, 3rem);
  --home-section-pad: clamp(4rem, 9vw, 7rem);
  --home-max: var(--content-max);
  background: var(--ink-deep);
  color: var(--cream-text);
  overflow-x: clip;
}

/* ===== Hero 海报式首屏 ===== */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.46);
}

.page-home .home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 19, 12, 0.58) 0%, rgba(7, 19, 12, 0.78) 56%, var(--ink-deep) 100%),
    radial-gradient(1100px 500px at 16% 84%, rgba(31, 90, 68, 0.5), transparent 72%);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  z-index: 0;
  background: linear-gradient(95deg, var(--pitch-base) 0%, var(--pitch-light) 58%, transparent 80%);
  clip-path: polygon(0 46%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.92;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(1rem, 2.8vw, 2rem);
  width: min(100%, var(--home-max));
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 7rem) var(--home-pad) clamp(2.5rem, 5vw, 3.5rem);
}

.page-home .home-hero__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  font-family: var(--font-data);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
}

.page-home .home-hero__context {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(200, 164, 92, 0.42);
  border-radius: 999px;
  background: rgba(7, 19, 12, 0.42);
  color: var(--gold-soft);
}

.page-home .home-hero__edition {
  font-size: 0.72rem;
  color: var(--muted-green);
  letter-spacing: 0.16em;
}

.page-home .home-hero__title {
  margin: 0;
  max-width: 12em;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(3rem, 11vw, 8.25rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--cream-text);
}

.page-home .home-hero__title span {
  display: block;
}

.page-home .home-hero__title-accent {
  color: var(--gold-soft);
}

.page-home .home-hero__lead {
  max-width: 48ch;
  margin: 0;
  padding-left: 0.75rem;
  border-left: 2px solid var(--gold-accent);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1.0625rem);
  line-height: 1.78;
  color: var(--cream-text);
}

.page-home .home-hero__rule {
  width: min(260px, 60%);
  height: 1px;
  margin-top: 0.2rem;
  background: linear-gradient(90deg, var(--gold-accent), transparent);
}

.page-home .home-hero__catalog {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  width: min(100%, var(--home-max));
  margin: 0 auto;
  border-top: 1px solid rgba(200, 164, 92, 0.6);
  border-bottom: 1px solid rgba(200, 164, 92, 0.6);
  background: rgba(200, 164, 92, 0.3);
}

.page-home .home-catalog-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "idx name"
    "idx hint";
  column-gap: 0.9rem;
  row-gap: 0.35rem;
  padding: 1.15rem 1rem 1.15rem 1.2rem;
  text-decoration: none;
  color: var(--cream-text);
  background: rgba(15, 61, 46, 0.92);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: background 0.25s ease, color 0.25s ease;
}

.page-home .home-catalog-item:hover,
.page-home .home-catalog-item:focus-visible {
  background: var(--pitch-light);
  color: var(--gold-soft);
}

.page-home .home-catalog-item__index {
  grid-area: idx;
  font-family: var(--font-data);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--gold-accent);
  transform: translateY(2px);
}

.page-home .home-catalog-item__name {
  grid-area: name;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.3;
}

.page-home .home-catalog-item__hint {
  grid-area: hint;
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--muted-green);
  letter-spacing: 0.04em;
}

/* ===== 横向主题带 ===== */
.page-home .topic-strip {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  background: rgba(200, 164, 92, 0.28);
  border-bottom: 1px solid rgba(200, 164, 92, 0.4);
}

.page-home .topic-strip__item {
  flex: 0 0 86%;
  max-width: 340px;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.6rem 1.4rem;
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--cream-text);
  background: var(--pitch-base);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  transition: background 0.25s ease;
}

.page-home .topic-strip__item:hover,
.page-home .topic-strip__item:focus-visible {
  background: var(--pitch-light);
}

.page-home .topic-strip__index {
  font-family: var(--font-data);
  font-size: 0.85rem;
  color: var(--gold-accent);
}

.page-home .topic-strip__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.page-home .topic-strip__body strong {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
}

.page-home .topic-strip__body span {
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--muted-green);
}

/* ===== 通用板块 ===== */
.page-home .home-section {
  position: relative;
  width: min(100%, var(--home-max));
  margin: 0 auto;
  padding: var(--home-section-pad) var(--home-pad);
  border-top: 1px solid rgba(200, 164, 92, 0.14);
}

.page-home .home-section p {
  margin: 0 0 1.1rem;
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--cream-text);
}

.page-home .home-section__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
  padding-left: 1rem;
  border-left: 4px solid var(--gold-accent);
}

.page-home .home-section__index {
  flex: 0 0 auto;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(200, 164, 92, 0.42);
  font-family: var(--font-data);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-accent);
}

.page-home .home-section__title {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--cream-text);
}

.page-home .home-section__head-note {
  display: none;
}

/* ===== 图文结构 ===== */
.page-home .home-lineup__grid,
.page-home .home-reports__grid,
.page-home .home-rounds__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: center;
}

.page-home .home-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--pitch-light);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.page-home .home-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-home .home-figure:hover img {
  transform: scale(1.02);
}

.page-home .home-figure figcaption {
  position: relative;
  z-index: 1;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(200, 164, 92, 0.35);
  background: rgba(7, 19, 12, 0.82);
  font-family: var(--font-data);
  font-size: 0.74rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
}

.page-home .home-feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.6rem 0 0;
  padding: 1rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(200, 164, 92, 0.35);
}

.page-home .home-feature-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--cream-text);
}

.page-home .home-feature-list li span {
  font-family: var(--font-data);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.08em;
  color: var(--gold-accent);
}

.page-home .home-module-more {
  margin-top: 1.5rem;
  font-family: var(--font-data);
  font-size: 0.82rem;
  color: var(--muted-green);
}

.page-home .home-module-more a {
  color: var(--gold-accent);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.page-home .home-module-more a:hover {
  color: var(--gold-soft);
}

/* ===== 轮次对照 ===== */
.page-home .home-round-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1rem 0 0.9rem;
  scroll-snap-type: x proximity;
}

.page-home .home-round-strip__item {
  flex: 0 0 auto;
  min-width: 7.5rem;
  padding: 1rem;
  scroll-snap-align: start;
  border-left: 3px solid var(--gold-accent);
  background: rgba(15, 61, 46, 0.8);
}

.page-home .home-round-strip__num {
  display: block;
  font-family: var(--font-data);
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--gold-soft);
}

.page-home .home-round-strip__item em {
  display: block;
  margin-top: 0.4rem;
  font-style: normal;
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--muted-green);
}

/* ===== 小屏适配 ===== */
.page-home .home-mobile__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3.25rem);
  background:
    linear-gradient(115deg, rgba(15, 61, 46, 0.95) 0%, rgba(27, 90, 68, 0.88) 60%, rgba(15, 61, 46, 0.92) 100%),
    repeating-linear-gradient(45deg, rgba(200, 164, 92, 0.06) 0 1px, transparent 1px 14px);
  border-left: 4px solid var(--gold-accent);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 2% 100%, 0 96%);
}

.page-home .home-mobile__specs {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.page-home .home-mobile__specs li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border-left: 3px solid rgba(200, 164, 92, 0.5);
  background: rgba(7, 19, 12, 0.32);
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--cream-text);
}

.page-home .home-mobile__specs li span {
  font-family: var(--font-data);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-accent);
}

.page-home .home-mobile__demo {
  display: flex;
  justify-content: center;
}

.page-home .home-mobile__phone {
  width: min(100%, 310px);
  padding: 1.1rem 1rem 1.25rem;
  border: 1px solid rgba(200, 164, 92, 0.5);
  border-radius: 22px;
  background: var(--ink-deep);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}

.page-home .home-mobile__phone-status {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-data);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
}

.page-home .home-mobile__phone-row {
  margin-top: 0.55rem;
  padding: 0.8rem 0.9rem;
  border-left: 3px solid var(--muted-green);
  border-radius: 6px;
  background: rgba(15, 61, 46, 0.7);
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--cream-text);
}

.page-home .home-mobile__phone-row--solid {
  border-left-color: var(--gold-accent);
  background: var(--pitch-light);
}

.page-home .home-mobile__phone-row--gold {
  border-left-color: var(--gold-soft);
  background: rgba(200, 164, 92, 0.14);
  color: var(--gold-soft);
}

/* ===== 数据面板 ===== */
.page-home .home-data__band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid rgba(200, 164, 92, 0.42);
  background: rgba(200, 164, 92, 0.42);
}

.page-home .home-data__cell {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 138px;
  padding: 1.5rem 1.25rem;
  background: var(--pitch-base);
}

.page-home .home-data__num {
  font-family: var(--font-headline);
  font-size: clamp(1.15rem, 3.2vw, 1.85rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--gold-accent);
  overflow-wrap: anywhere;
}

.page-home .home-data__label {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--muted-green);
}

.page-home .home-data__meta {
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--gold-accent);
  background: rgba(15, 61, 46, 0.55);
}

.page-home .home-data__meta p {
  margin: 0 0 0.6rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--cream-text);
}

.page-home .home-data__meta p:last-child {
  margin: 0;
  font-family: var(--font-data);
  color: var(--gold-soft);
}

.page-home .home-data__meta a {
  color: var(--gold-accent);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.page-home .home-data__meta a:hover {
  color: var(--gold-soft);
}

/* ===== 桌面增强 ===== */
@media (min-width: 680px) {
  .page-home .home-section__head-note {
    display: block;
    margin-left: auto;
    white-space: nowrap;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-data);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    color: var(--muted-green);
  }

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

  .page-home .home-catalog-item {
    height: 100%;
  }

  .page-home .topic-strip {
    overflow: visible;
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .topic-strip__item {
    flex: 1 1 0;
    max-width: none;
  }

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

  .page-home .home-data__num {
    font-size: clamp(1.35rem, 2.6vw, 3.4rem);
  }
}

@media (min-width: 880px) {
  .page-home .home-lineup__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 3.5rem;
  }

  .page-home .home-rounds__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 3.5rem;
  }

  .page-home .home-reports__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 3.5rem;
  }

  .page-home .home-mobile__panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 3rem;
  }
}

/* ===== 动效与无障碍 ===== */
@media (prefers-reduced-motion: no-preference) {
  .page-home .home-hero__title {
    animation: homeTitleRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .page-home .home-hero__catalog .home-catalog-item {
    animation: homeFadeUp 0.5s ease both;
  }

  .page-home .home-hero__catalog .home-catalog-item:nth-child(2) {
    animation-delay: 0.12s;
  }

  .page-home .home-hero__catalog .home-catalog-item:nth-child(3) {
    animation-delay: 0.2s;
  }

  .page-home .home-hero__catalog .home-catalog-item:nth-child(4) {
    animation-delay: 0.28s;
  }
}

@keyframes homeTitleRise {
  from {
    opacity: 0;
    transform: translateY(18px) skewY(-0.5deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
  }
}
