.page-home {
  --home-gap: clamp(3rem, 7vw, 5.5rem);
  --home-radius: var(--r-lg);
  display: block;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  overflow-x: clip;
}

.page-home .mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.page-home .page-top {
  padding-top: calc(var(--bar-h) + 1rem);
}

.page-home .section {
  padding: var(--home-gap) 0;
}

.page-home .section-head {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.page-home .section-num {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: var(--grass);
}

.page-home .section-head h2,
.page-home .calls-copy h2,
.page-home .insights-col h2,
.page-home .contact-copy h2 {
  margin: 0;
  font-size: clamp(1.45rem, 4.6vw, 2.3rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.page-home .section-desc {
  margin: 0;
  max-width: 62ch;
  color: var(--mist);
  line-height: 1.75;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 var(--home-gap);
  isolation: isolate;
}

.page-home .hero-figure {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: -1;
}

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

.page-home .hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18, 16, 12, 0.78), rgba(18, 16, 12, 0.95) 62%, var(--ink));
}

.page-home .hero-inner {
  position: relative;
  display: grid;
  gap: 1.75rem;
}

.page-home .hero-nums {
  display: flex;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .hero-nums a {
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--grass-soft);
  text-decoration: none;
  padding: 0.35rem 0.1rem;
  border-left: 2px solid var(--grass);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-home .hero-nums a:hover {
  color: var(--paper);
  border-color: var(--yellow-card);
}

.page-home .eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  color: var(--grass-soft);
  text-transform: uppercase;
}

.page-home .hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 8.2vw, 4.4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.page-home .hero-lede {
  margin: 0 0 1.6rem;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--paper);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.page-home .hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-home .hero-facts > div {
  background: rgba(22, 32, 43, 0.86);
  padding: 1rem 1.1rem;
}

.page-home .hero-facts dt {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--mist);
  margin-bottom: 0.35rem;
}

.page-home .hero-facts dd {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--paper);
}

/* ---------- 四条数据线 ---------- */
.page-home .line-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

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

.page-home .line-card {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: 1.5rem 1.4rem;
  background: var(--tone);
  border: 1px solid var(--line);
  border-radius: var(--home-radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.page-home .line-card:hover {
  border-color: var(--grass);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.page-home .line-idx {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--grass-soft);
}

.page-home .line-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
}

.page-home .line-text {
  margin: 0;
  color: var(--mist);
  font-size: 0.94rem;
  line-height: 1.75;
}

.page-home .line-meta {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  border-top: 1px dashed var(--line);
  padding-top: 0.85rem;
}

.page-home .line-meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.84rem;
}

.page-home .line-meta span {
  color: var(--mist);
  flex: none;
}

.page-home .line-meta b {
  font-weight: 500;
  color: var(--paper);
  text-align: right;
}

.page-home .line-link {
  justify-self: start;
  margin-top: 0.4rem;
  color: var(--grass);
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 164, 95, 0.45);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-home .line-link:hover {
  color: var(--grass-soft);
  border-color: var(--grass-soft);
}

/* ---------- 本周摘要（奶油色带） ---------- */
.page-home .band-section {
  background: var(--cream);
  color: var(--ink);
}

.page-home .band-section .section-num {
  color: #1f7a45;
}

.page-home .band-section .section-desc {
  color: rgba(18, 16, 12, 0.72);
}

.page-home .band-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1px;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  background: var(--sand);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-home .band-list li {
  background: var(--cream);
  padding: 1.1rem 0.9rem;
  display: grid;
  gap: 0.4rem;
}

.page-home .band-num {
  font-size: clamp(1.6rem, 5.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.page-home .band-label {
  font-size: 0.8rem;
  color: rgba(18, 16, 12, 0.72);
  letter-spacing: 0.04em;
}

.page-home .band-figure {
  margin: 0;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--sand);
  background: var(--tone);
}

.page-home .band-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .band-figure figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.8rem;
  color: rgba(18, 16, 12, 0.68);
  background: var(--cream);
}

/* ---------- 判罚 ---------- */
.page-home .calls-grid {
  display: grid;
  gap: 2rem;
}

.page-home .calls-copy p {
  line-height: 1.8;
  color: var(--mist);
  margin: 0.9rem 0 0;
  max-width: 60ch;
}

.page-home .calls-copy h2 {
  color: var(--paper);
}

.page-home .field-list {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-home .field-list li {
  background: var(--tone);
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.page-home .field-key {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--yellow-card);
}

.page-home .field-val {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--paper);
}

.page-home .calls-figure {
  margin: 0;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--tone);
  position: relative;
}

.page-home .calls-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .calls-figure figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.8rem;
  color: var(--mist);
  border-top: 1px solid var(--line);
}

/* ---------- 主客场 ---------- */
.page-home .venue-figure {
  margin: 0 0 1.5rem;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.page-home .venue-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .venue-figure figcaption {
  padding: 0.8rem 1.1rem;
  font-size: 0.8rem;
  color: var(--mist);
  background: var(--tone);
}

.page-home .venue-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

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

.page-home .venue-card {
  padding: 1.35rem 1.3rem;
  border-radius: var(--home-radius);
  border: 1px solid var(--line);
  background: var(--tone);
  display: grid;
  gap: 1rem;
}

.page-home .venue-card--home {
  border-left: 4px solid var(--grass);
}

.page-home .venue-card--away {
  border-left: 4px solid var(--yellow-card);
}

.page-home .venue-card header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-home .venue-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.page-home .venue-stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
}

.page-home .venue-stats div {
  display: grid;
  gap: 0.25rem;
}

.page-home .venue-stats dt {
  font-size: 0.76rem;
  color: var(--mist);
  letter-spacing: 0.08em;
}

.page-home .venue-stats dd {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.page-home .venue-bar {
  height: 8px;
  border-radius: var(--r-pill);
  background: rgba(42, 53, 66, 0.9);
  overflow: hidden;
}

.page-home .venue-bar span {
  display: block;
  height: 100%;
  width: calc(var(--bar) * 1%);
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--grass), var(--grass-soft));
}

.page-home .venue-card--away .venue-bar span {
  background: linear-gradient(90deg, var(--yellow-card), var(--red-card));
}

.page-home .venue-track {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--tone);
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.page-home .venue-track svg {
  width: 100%;
  height: auto;
  max-width: 640px;
}

/* ---------- 裁判尺度 ---------- */
.page-home .ref-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-home .ref-cell {
  background: var(--ink);
  padding: 1.3rem 1.25rem;
  display: grid;
  gap: 0.55rem;
  transition: background 0.25s var(--ease);
}

.page-home .ref-cell:hover {
  background: var(--tone);
}

.page-home .ref-tag {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  color: var(--grass);
}

.page-home .ref-cell p:last-child {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--paper);
}

.page-home .ref-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ---------- 观察与疑问 ---------- */
.page-home .insights-grid {
  display: grid;
  gap: 2.5rem;
}

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

.page-home .post-list li {
  padding-left: 1.1rem;
  border-left: 2px solid var(--line);
  display: grid;
  gap: 0.4rem;
  transition: border-color 0.25s var(--ease);
}

.page-home .post-list li:hover {
  border-color: var(--grass);
}

.page-home .post-idx {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: var(--mist);
}

.page-home .post-list h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.page-home .post-list h3 a {
  color: var(--paper);
  text-decoration: none;
}

.page-home .post-list h3 a:hover {
  color: var(--grass-soft);
}

.page-home .post-list li > p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--mist);
}

.page-home .faq-title {
  margin: 0 0 1.1rem;
  font-size: 1.15rem;
  font-weight: 700;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--grass);
  display: inline-block;
}

.page-home .faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--tone);
  padding: 0.9rem 1rem;
  margin-bottom: 0.7rem;
}

.page-home .faq-item summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--paper);
  list-style: none;
}

.page-home .faq-item summary::-webkit-details-marker {
  display: none;
}

.page-home .faq-item summary::before {
  content: "+";
  font-family: var(--font-mono);
  color: var(--grass);
  margin-right: 0.6rem;
}

.page-home .faq-item[open] summary::before {
  content: "−";
}

.page-home .faq-item p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--mist);
}

.page-home .faq-col .btn {
  margin-top: 0.5rem;
}

/* ---------- 联系 ---------- */
.page-home .contact-block {
  background: var(--cream);
  color: var(--ink);
}

.page-home .contact-block .section-num {
  color: #1f7a45;
}

.page-home .contact-inner {
  display: grid;
  gap: 2rem;
}

.page-home .contact-copy h2 {
  margin: 0.4rem 0 0.9rem;
  color: var(--ink);
}

.page-home .contact-copy > p {
  margin: 0 0 1.5rem;
  max-width: 58ch;
  line-height: 1.8;
  color: rgba(18, 16, 12, 0.76);
}

.page-home .contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-home .contact-list li {
  background: var(--cream);
  padding: 0.85rem 1.1rem;
  display: grid;
  gap: 0.3rem;
}

.page-home .contact-key {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: rgba(18, 16, 12, 0.6);
}

.page-home .contact-val {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
}

.page-home .contact-cta {
  display: grid;
  gap: 1.1rem;
  align-content: start;
  padding: 1.5rem;
  border-radius: var(--home-radius);
  background: var(--ink);
  color: var(--paper);
}

.page-home .contact-cta-note {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--paper);
}

.page-home .contact-cta .btn {
  justify-self: start;
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-home .line-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .page-home .contact-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .page-home .hero {
    padding: 3.5rem 0 calc(var(--home-gap) * 1.1);
  }

  .page-home .hero-inner {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
  }

  .page-home .hero-nums {
    flex-direction: column;
    gap: 1.1rem;
  }

  .page-home .hero-nums a {
    font-size: 1.9rem;
    padding: 0.5rem 0.2rem;
  }

  .page-home .calls-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .page-home .insights-grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 3.5rem;
  }

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

  .page-home .band-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .line-card,
  .page-home .hero-nums a,
  .page-home .post-list li {
    transition: none;
  }

  .page-home .line-card:hover {
    transform: none;
  }
}

.page-home {
  --bar: 1rem;
}
