.page-home {
  display: block;
  background: var(--paper);
  color: var(--text-ink);
  overflow-x: hidden;
}

/* ============ 首屏 ============ */
.page-home .hero {
  background: linear-gradient(180deg, var(--night) 0%, var(--wine-deep) 100%);
  padding: clamp(20px, 4vw, 44px) 0 clamp(28px, 4vw, 48px);
}

.page-home .hero-grid {
  width: min(100% - 32px, var(--wrap));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 60px -40px rgba(0, 0, 0, 0.85);
}

.page-home .hero-panel {
  background: linear-gradient(158deg, var(--wine) 0%, var(--wine-deep) 78%, var(--night) 100%);
  padding: clamp(28px, 5vw, 58px) clamp(22px, 4vw, 46px) clamp(32px, 5vw, 52px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 22px);
}

.page-home .hero-eyebrow {
  margin: 0;
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--amber-light);
}

.page-home .hero-panel h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.1rem, 8vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--paper);
  text-wrap: balance;
}

.page-home .hero-lede {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(245, 240, 230, 0.86);
  max-width: 46ch;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.page-home .hero-visual {
  position: relative;
  margin: 0;
  min-height: 240px;
  background: linear-gradient(135deg, var(--lake) 0%, var(--wine-deep) 100%);
}

.page-home .hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(31, 111, 139, 0.34) 0%, rgba(23, 17, 15, 0.62) 100%),
    radial-gradient(120% 86% at 82% 8%, rgba(31, 111, 139, 0.46), transparent 62%);
}

.page-home .hero-visual__note {
  position: absolute;
  left: clamp(14px, 2vw, 22px);
  bottom: clamp(12px, 1.6vw, 18px);
  z-index: 2;
  font-family: var(--font-data);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--amber-light);
}

/* ---- 比分牌 ---- */
.page-home .hero-board {
  width: min(100% - 32px, var(--wrap));
  margin: clamp(18px, 2.6vw, 28px) auto 0;
}

.page-home .hstat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(201, 162, 39, 0.32);
  border: 1px solid rgba(201, 162, 39, 0.32);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-home .hstat__item {
  background: linear-gradient(180deg, #2b1418 0%, var(--wine-deep) 100%);
  padding: clamp(16px, 2.4vw, 24px) clamp(16px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .hstat__num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.page-home .hstat__label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 230, 0.72);
}

.page-home .hstat__scale {
  display: block;
  height: 5px;
  margin-top: 6px;
  border-radius: 3px;
  background:
    repeating-linear-gradient(90deg, rgba(201, 162, 39, 0.7) 0 2px, transparent 2px 12px);
}

/* ============ 通用章节 ============ */
.page-home .section {
  padding: clamp(48px, 7vw, 92px) 0;
}

.page-home .section-head {
  max-width: 68ch;
  margin-bottom: clamp(24px, 3.4vw, 42px);
}

.page-home .section-head .eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--lake);
}

.page-home .section-head h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.6rem, 4.4vw, 2.5rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--wine-deep);
}

.page-home .section-sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(36, 30, 31, 0.82);
}

.page-home .text-link {
  color: var(--lake);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.page-home .text-link:hover {
  color: var(--wine);
}

/* ============ 分区索引 ============ */
.page-home .section--index {
  background: var(--paper-dim);
}

.page-home .index-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 34px);
}

.page-home .index-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(150deg, var(--lake) 0%, var(--wine-deep) 100%);
}

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

.page-home .index-photo .media-frame__caption {
  font-size: 0.74rem;
  line-height: 1.5;
  color: rgba(36, 30, 31, 0.7);
}

.page-home .zone-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-home .zone-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(74, 17, 25, 0.1);
  box-shadow: var(--shadow-panel);
  text-decoration: none;
  color: inherit;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.page-home .zone-card:hover,
.page-home .zone-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--amber);
  box-shadow: 0 1px 0 rgba(74, 17, 25, 0.06), 0 22px 38px -28px rgba(74, 17, 25, 0.7);
}

.page-home .zone-card:focus-visible {
  outline: 2px solid var(--amber-light);
  outline-offset: 2px;
}

.page-home .zone-lamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 4px;
  background: radial-gradient(circle at 50% 28%, #33161b 0%, var(--night) 100%);
  color: var(--amber);
  font-family: var(--font-data);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    inset 0 0 0 1px rgba(201, 162, 39, 0.5),
    inset 0 -10px 18px rgba(201, 162, 39, 0.14);
}

.page-home .zone-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.page-home .zone-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--wine-deep);
}

.page-home .zone-code {
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--lake);
}

.page-home .zone-count {
  font-size: 0.84rem;
  color: rgba(36, 30, 31, 0.78);
}

.page-home .zone-count .num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--wine);
  font-size: 0.98rem;
}

.page-home .zone-go {
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
}

/* ============ 赛季时间线 ============ */
.page-home .section--timeline {
  background: var(--paper);
}

.page-home .season-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-home .season-node {
  --fill: 60%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 14px 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(31, 111, 139, 0.07) 0%, rgba(31, 111, 139, 0.02) 100%);
  border: 1px solid rgba(31, 111, 139, 0.16);
}

.page-home .season-node::before {
  content: "";
  display: block;
  height: 6px;
  width: var(--fill);
  min-width: 26px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--lake) 0%, var(--amber) 100%);
}

.page-home .season-node:nth-child(1) { --fill: 30%; }
.page-home .season-node:nth-child(2) { --fill: 45%; }
.page-home .season-node:nth-child(3) { --fill: 57%; }
.page-home .season-node:nth-child(4) { --fill: 70%; }
.page-home .season-node:nth-child(5) { --fill: 82%; }
.page-home .season-node:nth-child(6) { --fill: 100%; }
.page-home .season-node:nth-child(7) { --fill: 66%; }

.page-home .season-year {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--wine-deep);
}

.page-home .season-tag {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: var(--lake);
}

.page-home .season-new {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(36, 30, 31, 0.8);
}

.page-home .season-new .num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--wine);
}

.page-home .season-foot {
  margin: clamp(22px, 3vw, 34px) 0 0;
  max-width: 74ch;
  font-size: 0.96rem;
  line-height: 1.85;
  color: rgba(36, 30, 31, 0.82);
  padding-left: 16px;
  border-left: 3px solid var(--amber);
}

/* ============ 速查区 ============ */
.page-home .section--lookup {
  background: linear-gradient(180deg, var(--paper-dim) 0%, var(--paper) 100%);
}

.page-home .lookup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}

.page-home .lookup-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .lookup-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(140deg, var(--amber) 0%, var(--wine-deep) 100%);
}

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

.page-home .lookup-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.6vw, 1.32rem);
  color: var(--wine-deep);
}

.page-home .step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.page-home .step-no {
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--amber);
  background: var(--wine-deep);
  border-radius: 3px;
  padding: 4px 7px;
  line-height: 1;
}

.page-home .step-text {
  font-size: 0.94rem;
  line-height: 1.72;
  color: rgba(36, 30, 31, 0.86);
}

.page-home .lookup-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .table-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(74, 17, 25, 0.12);
  background: var(--paper);
}

.page-home .ledger {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}

.page-home .ledger th,
.page-home .ledger td {
  padding: 11px 14px;
  text-align: left;
  font-size: 0.86rem;
  white-space: nowrap;
}

.page-home .ledger thead th {
  background: var(--lake);
  color: var(--paper);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.page-home .ledger tbody tr:nth-child(even) {
  background: rgba(228, 222, 210, 0.55);
}

.page-home .ledger tbody tr + tr th,
.page-home .ledger tbody tr + tr td {
  border-top: 1px solid rgba(74, 17, 25, 0.08);
}

.page-home .ledger .num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--wine);
}

.page-home .table-note {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(36, 30, 31, 0.72);
  padding-left: 14px;
  border-left: 2px solid var(--lake);
}

/* ============ 规则摘录 ============ */
.page-home .section--notes {
  background: var(--paper);
}

.page-home .notes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-home .notes-grid .disclosure {
  border: 1px solid rgba(74, 17, 25, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.page-home .notes-grid .disclosure summary {
  cursor: pointer;
  list-style: none;
  padding: 15px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--wine-deep);
  border-left: 4px solid var(--amber);
  background: rgba(31, 111, 139, 0.05);
}

.page-home .notes-grid .disclosure summary::-webkit-details-marker {
  display: none;
}

.page-home .notes-grid .disclosure[open] summary {
  background: rgba(31, 111, 139, 0.11);
}

.page-home .notes-grid .disclosure__body {
  padding: 14px 18px 18px;
  font-size: 0.92rem;
  line-height: 1.82;
  color: rgba(36, 30, 31, 0.86);
}

.page-home .notes-grid .disclosure__body p {
  margin: 0;
}

.page-home .notes-foot {
  margin: clamp(20px, 3vw, 30px) 0 0;
  font-size: 0.94rem;
  line-height: 1.8;
  color: rgba(36, 30, 31, 0.82);
}

/* ============ 收束 ============ */
.page-home .section--closing {
  padding-bottom: 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-dim) 100%);
}

.page-home .closing-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius);
  background: linear-gradient(142deg, var(--lake) 0%, #14556c 62%, var(--wine-deep) 100%);
  color: var(--paper);
  box-shadow: 0 26px 54px -38px rgba(31, 111, 139, 0.9);
}

.page-home .closing-eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--amber-light);
}

.page-home .closing-copy h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.45rem, 3.8vw, 2.1rem);
  line-height: 1.24;
  color: var(--paper);
}

.page-home .closing-copy p {
  margin: 0 0 18px;
  font-size: 0.96rem;
  line-height: 1.82;
  color: rgba(245, 240, 230, 0.9);
  max-width: 58ch;
}

.page-home .closing-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .closing-facts li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 14px;
  border-left: 2px solid rgba(201, 162, 39, 0.6);
}

.page-home .closing-facts .contact-key {
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-light);
}

.page-home .closing-facts .contact-val {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--paper);
}

.page-home .closing-banner {
  margin: clamp(34px, 5vw, 60px) 0 0;
  display: block;
  line-height: 0;
  background: linear-gradient(90deg, var(--lake) 0%, var(--amber) 100%);
}

.page-home .closing-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}

/* ============ 响应式 ============ */
@media (min-width: 560px) {
  .page-home .hero-grid {
    width: min(100% - 48px, var(--wrap));
  }
  .page-home .hero-board {
    width: min(100% - 48px, var(--wrap));
  }
  .page-home .zone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .season-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .page-home .hstat {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-home .lookup-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    align-items: start;
  }
  .page-home .season-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-home .closing-strip {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  }
}

@media (min-width: 980px) {
  .page-home .hero-grid {
    grid-template-columns: 32fr 68fr;
  }
  .page-home .hero-visual {
    min-height: 480px;
  }
  .page-home .hero-panel h1 {
    font-size: clamp(2.3rem, 3.2vw, 3.2rem);
  }
  .page-home .index-layout {
    grid-template-columns: 236px minmax(0, 1fr);
  }
  .page-home .zone-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-home .season-track {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .page-home .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .zone-card {
    transition: none;
  }
  .page-home .zone-card:hover {
    transform: none;
  }
}
<<<END>>>
