.page-home {
  --home-container-w: min(1200px, 100% - 3rem);
  --home-container-slim-w: min(960px, 100% - 3rem);
  --home-radius: 20px;
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
}

.page-home .home-container {
  width: var(--home-container-w);
  margin-inline: auto;
}

.page-home .home-container-slim {
  width: var(--home-container-slim-w);
  margin-inline: auto;
}

/* ===== 首屏：海报式杂志封面 ===== */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: calc(var(--header-h, 76px) + 3.5rem);
  padding-bottom: clamp(4rem, 8vh, 6rem);
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, transparent 45%), var(--c-bg);
}

.page-home .home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background: linear-gradient(160deg, rgba(255,106,0,0.18), transparent 70%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

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

.page-home .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.22;
}

.page-home .hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0A192F 0%, rgba(10,25,47,0.86) 45%, rgba(10,25,47,0.5) 100%);
}

.page-home .hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    repeating-linear-gradient(115deg, transparent 0 14px, rgba(255,106,0,0.05) 14px 15px),
    repeating-linear-gradient(25deg, transparent 0 22px, rgba(29,78,216,0.08) 22px 23px);
  pointer-events: none;
}

.page-home .hero-inner {
  position: relative;
  z-index: 3;
  width: var(--home-container-w);
  margin-inline: auto;
}

.page-home .home-crumb {
  margin-bottom: 0.5rem;
}

.page-home .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: end;
  margin-top: 2.5rem;
}

.page-home .hero-issue {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.page-home .hero-issue i {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--c-accent);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.page-home .hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
}

.page-home .hero-title span {
  font-size: 0.42em;
  font-weight: 700;
  color: var(--c-gold);
  vertical-align: super;
  margin-right: 0.15em;
}

.page-home .hero-deck {
  margin-top: 1.4rem;
  max-width: 34em;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-muted);
}

.page-home .hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--c-border);
  max-width: 34em;
}

.page-home .hero-metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.page-home .hero-metric-num {
  font-family: var(--font-data);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
}

.page-home .hero-metric-label {
  font-size: 0.75rem;
  color: var(--c-muted);
  letter-spacing: 0.06em;
}

.page-home .hero-index {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.25rem;
  max-width: 34em;
}

.page-home .hero-index a {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.68rem 0.2rem;
  border-bottom: 1px solid rgba(35,53,84,0.8);
  color: var(--c-text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-home .hero-index a:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
  transform: translateX(4px);
}

.page-home .hero-index-num {
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--c-gold);
  flex: 0 0 auto;
}

.page-home .hero-aside {
  position: relative;
}

.page-home .hero-aside-card {
  position: relative;
  padding: 1.9rem;
  background: linear-gradient(160deg, #112240 0%, #0D1B33 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--home-radius);
  overflow: hidden;
}

.page-home .hero-aside-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, transparent 50%, rgba(255,106,0,0.2) 50%);
}

.page-home .hero-aside-card::after {
  content: '38';
  position: absolute;
  right: 0.6rem;
  bottom: -1rem;
  font-family: var(--font-data);
  font-size: 6rem;
  font-weight: 800;
  color: rgba(255,106,0,0.08);
  line-height: 1;
  pointer-events: none;
}

.page-home .hero-aside-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-family: var(--font-data);
  margin: 0 0 0.6rem;
}

.page-home .hero-aside-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 0.6rem;
}

.page-home .hero-aside-text {
  color: var(--c-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.page-home .hero-aside-foot {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--c-muted);
  font-family: var(--font-data);
  letter-spacing: 0.06em;
  text-align: right;
}

/* ===== 第38轮数据章节 ===== */
.page-home .home-round {
  padding: 4.5rem 0;
  position: relative;
}

.page-home .home-round::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--c-border), transparent 70%);
}

.page-home .section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.page-home .section-head .eyebrow {
  margin-bottom: 0.8rem;
}

.page-home .section-head h2,
.page-home .split-copy h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.8rem;
}

.page-home .section-head .lead,
.page-home .split-copy .lead {
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.page-home .round-tabs {
  position: relative;
}

.page-home .round-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-home .round-tab-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.page-home .round-tab {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  user-select: none;
}

.page-home #round-latest:checked ~ .round-tab-labels .round-tab[for="round-latest"],
.page-home #round-history:checked ~ .round-tab-labels .round-tab[for="round-history"] {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}

.page-home .round-panel-latest {
  display: block;
}

.page-home .round-panel-history {
  display: none;
}

.page-home #round-history:checked ~ .round-panel-latest {
  display: none;
}

.page-home #round-history:checked ~ .round-panel-history {
  display: block;
}

.page-home .round-panel {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--home-radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.page-home .chart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.page-home .chart-title,
.page-home .dimension-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.page-home .chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.page-home .chart-svg text {
  font-family: var(--font-data), monospace;
}

.page-home .chart-note {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--c-muted);
  font-family: var(--font-data);
}

.page-home .dimension-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.page-home .dimension-list li {
  background: var(--c-panel);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.page-home .dimension-list span {
  font-size: 0.75rem;
  color: var(--c-muted);
}

.page-home .dimension-list strong {
  font-family: var(--font-data);
  font-size: 1.5rem;
  color: var(--c-accent);
  line-height: 1;
}

.page-home .dimension-note {
  margin-top: 0.9rem;
  font-size: 0.75rem;
  color: var(--c-muted);
  font-family: var(--font-data);
}

.page-home .round-panel-history .history-note {
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 46em;
  margin: 0 0 1.4rem;
}

.page-home .history-facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
}

.page-home .fact-item {
  background: var(--c-panel);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.page-home .fact-item span {
  font-size: 0.75rem;
  color: var(--c-muted);
}

.page-home .fact-item strong {
  font-family: var(--font-data);
  font-size: 1.1rem;
  color: var(--c-gold);
}

/* ===== V3 栏目章节 ===== */
.page-home .home-v3 {
  padding: 4.5rem 0;
  background: var(--c-bg-alt);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.page-home .home-v3::after {
  content: 'V3';
  position: absolute;
  right: -1rem;
  top: 0.5rem;
  font-family: var(--font-data);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 800;
  color: rgba(29,78,216,0.08);
  pointer-events: none;
  line-height: 1;
}

.page-home .split-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.page-home .split-copy {
  position: relative;
  z-index: 1;
}

.page-home .split-copy .eyebrow {
  margin-bottom: 0.8rem;
}

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

.page-home .feature-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--c-text);
  line-height: 1.5;
}

.page-home .feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  transform: rotate(45deg);
}

.page-home .split-media {
  margin: 0;
  position: relative;
}

.page-home .split-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 14px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
}

.page-home .split-media figcaption {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--c-muted);
  font-family: var(--font-data);
}

/* ===== 按球队名检索章节 ===== */
.page-home .home-search {
  padding: 4.5rem 0;
}

.page-home .search-demo {
  margin: 1.6rem 0;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  overflow: hidden;
}

.page-home .search-demo-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-panel);
}

.page-home .search-demo-icon {
  font-size: 1.1rem;
  color: var(--c-accent);
  line-height: 1;
}

.page-home .search-demo-text {
  font-size: 0.82rem;
  color: var(--c-muted);
  font-family: var(--font-data);
}

.page-home .search-demo-results {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
}

.page-home .search-demo-results li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(35,53,84,0.6);
}

.page-home .search-demo-results li:last-child {
  border-bottom: none;
}

.page-home .search-demo-results span {
  font-weight: 600;
  font-size: 0.92rem;
}

.page-home .search-demo-results strong {
  font-family: var(--font-data);
  font-size: 0.82rem;
  color: var(--c-gold);
}

/* ===== 苹果设备产品线章节 ===== */
.page-home .home-apple {
  padding: 4.5rem 0;
  background:
    linear-gradient(180deg, rgba(29,78,216,0.1), transparent 40%),
    var(--c-bg);
  border-top: 1px solid var(--c-border);
}

.page-home .product-line-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.page-home .product-card {
  position: relative;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 1.5rem 1.3rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-home .product-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
  box-shadow: var(--shadow);
}

.page-home .product-num {
  position: absolute;
  right: 0.8rem;
  top: 0.4rem;
  font-family: var(--font-data);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(255,106,0,0.14);
  line-height: 1;
}

.page-home .product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.4rem 0 0.5rem;
}

.page-home .product-card p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0;
}

.page-home .product-line-media {
  margin: 2.2rem 0 0;
  text-align: center;
}

.page-home .product-line-media img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--c-border);
}

.page-home .product-line-media figcaption {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--c-muted);
  font-family: var(--font-data);
}

/* ===== 浏览索引与信任声明 ===== */
.page-home .home-browse {
  padding: 4.5rem 0;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
}

.page-home .browse-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
}

.page-home .browse-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--c-panel);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  text-decoration: none;
  color: var(--c-text);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.page-home .browse-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-gold);
  background: var(--c-bg-alt);
}

.page-home .browse-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-gold);
}

.page-home .browse-text {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--c-muted);
}

.page-home .browse-arrow {
  align-self: flex-end;
  font-size: 1.2rem;
  color: var(--c-accent);
  line-height: 1;
  transition: transform 0.2s ease;
}

.page-home .browse-card:hover .browse-arrow {
  transform: translateX(4px);
}

.page-home .home-trust {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-muted);
  font-family: var(--font-data);
  letter-spacing: 0.02em;
  border-top: 1px solid var(--c-border);
  padding-top: 1.5rem;
}

/* ===== 响应式增强 ===== */
@media (min-width: 640px) {
  .page-home .hero-index {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (min-width: 860px) {
  .page-home .split-block {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }

  .page-home .split-reverse .split-copy {
    order: 2;
  }

  .page-home .split-reverse .split-media {
    order: 1;
  }
}

@media (min-width: 900px) {
  .page-home .chart-row {
    grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.7fr);
    align-items: start;
  }
}

@media (min-width: 992px) {
  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 3rem;
  }

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

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