.page-home {
  --home-radius: var(--radius-lg);
  --home-surface: rgba(245, 247, 244, .07);
  --home-surface-strong: rgba(245, 247, 244, .13);
  --home-line: rgba(245, 247, 244, .2);
  --home-line-ink: rgba(16, 20, 24, .12);
  --home-gap: clamp(24px, 3.4vw, 44px);
  overflow-x: clip;
}

.page-home .section--deep,
.page-home .section--teal,
.page-home .section--indigo {
  color: var(--c-white);
}

.page-home .section--paper {
  color: var(--c-ink);
}

.page-home .section--deep .eyebrow,
.page-home .section--teal .eyebrow,
.page-home .section--indigo .eyebrow {
  color: var(--c-mist);
  opacity: .72;
}

.page-home .section--paper .eyebrow {
  color: var(--c-slate);
}

.page-home .home-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.3vw, 2.85rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.02em;
  margin: 14px 0 18px;
  max-width: 22ch;
}

/* ---------- 首屏 ---------- */

.page-home .home-hero {
  padding-block: clamp(76px, 11vw, 142px) clamp(64px, 9vw, 116px);
}

.page-home .home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 5.6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.025em;
  margin: 16px 0 24px;
  max-width: 14ch;
}

.page-home .home-hero__lede {
  max-width: 46ch;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.78;
  color: rgba(245, 247, 244, .82);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-home .home-hero__visual {
  position: relative;
  isolation: isolate;
  padding-right: clamp(0px, 3vw, 34px);
  padding-bottom: clamp(0px, 4vw, 40px);
}

.page-home .home-hero__media {
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(245, 247, 244, .1);
}

.page-home .home-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-home .home-hero__dial {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(132px, 22vw, 216px);
  height: auto;
  filter: drop-shadow(0 16px 34px rgba(11, 34, 57, .55));
}

.page-home .dial__bg { fill: var(--c-deep); }
.page-home .dial__ring { fill: none; stroke: rgba(245, 247, 244, .24); stroke-width: 1.4; }
.page-home .dial__ticks {
  fill: none;
  stroke: var(--c-green);
  stroke-width: 5;
  stroke-dasharray: 3 31.6;
}
.page-home .dial__hand {
  stroke: var(--c-orange);
  stroke-width: 4;
  stroke-linecap: round;
}
.page-home .dial__value {
  fill: var(--c-white);
  font-family: var(--font-num);
  font-size: 46px;
  font-weight: 700;
}
.page-home .dial__label {
  fill: rgba(245, 247, 244, .7);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
}

/* ---------- 升降级 ---------- */

.page-home .home-tier__head {
  max-width: 74ch;
  margin-bottom: clamp(34px, 5vw, 60px);
}

.page-home .home-tier__lede {
  max-width: 62ch;
  color: rgba(245, 247, 244, .82);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.78;
}

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

.page-home .home-tier__media .media-frame {
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid rgba(245, 247, 244, .1);
}

.page-home .home-tier__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .home-tier__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.page-home .home-tier__tab {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: var(--pill);
  border: 1px solid var(--home-line);
  font-size: 14px;
  letter-spacing: .05em;
  cursor: pointer;
  color: rgba(245, 247, 244, .8);
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}

.page-home .home-tier__tab:hover {
  background: rgba(31, 122, 76, .26);
  border-color: var(--c-green);
  color: var(--c-white);
}

.page-home #tier-a:checked ~ .home-tier__tabs label[for="tier-a"],
.page-home #tier-b:checked ~ .home-tier__tabs label[for="tier-b"],
.page-home #tier-c:checked ~ .home-tier__tabs label[for="tier-c"] {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-white);
}

.page-home .home-tier__panels {
  display: grid;
}

.page-home .home-tier__panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid) var(--ease), visibility 0s linear var(--t-mid);
}

.page-home #tier-a:checked ~ .home-tier__panels > .home-tier__panel:nth-child(1),
.page-home #tier-b:checked ~ .home-tier__panels > .home-tier__panel:nth-child(2),
.page-home #tier-c:checked ~ .home-tier__panels > .home-tier__panel:nth-child(3) {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.page-home .home-tier__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .home-tier__list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--home-surface);
  border-left: 4px solid var(--c-green);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.page-home .home-tier__list li:hover {
  transform: translateY(-2px);
  background: var(--home-surface-strong);
}

.page-home .home-tier__list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 247, 244, .86);
}

.page-home .home-tier__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
  margin-top: clamp(34px, 5vw, 62px);
}

.page-home .home-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: var(--radius-md);
  background: rgba(11, 34, 57, .42);
  border-left: 4px solid var(--c-orange);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.page-home .home-stat:hover {
  transform: translateY(-2px);
  background: rgba(11, 34, 57, .62);
}

.page-home .home-stat__num {
  font-family: var(--font-num);
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--c-white);
}

.page-home .home-stat__unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-mist);
}

.page-home .home-stat__label {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(245, 247, 244, .68);
}

/* ---------- 球迷组织 ---------- */

.page-home .home-stands__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-gap);
  align-items: center;
}

.page-home .home-stands__text {
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.8;
  max-width: 58ch;
  color: rgba(16, 20, 24, .78);
}

.page-home .home-stands__points {
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .home-stands__points li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 18px;
  border-left: 3px solid var(--c-green);
}

.page-home .home-stands__points strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.005em;
}

.page-home .home-stands__points span {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(16, 20, 24, .68);
}

.page-home .home-stands__media .media-frame {
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.page-home .home-stands__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ---------- 判罚档案 ---------- */

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

.page-home .home-penalty__text {
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.8;
  max-width: 56ch;
  color: rgba(245, 247, 244, .82);
  margin-bottom: 28px;
}

.page-home .home-penalty__cards {
  display: grid;
  gap: 16px;
}

.page-home .home-penalty__card {
  padding: clamp(20px, 2.6vw, 28px);
  border-radius: var(--radius-md);
  background: var(--home-surface);
  border-left: 4px solid var(--c-wine);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.page-home .home-penalty__card:hover {
  transform: translateY(-2px);
  background: var(--home-surface-strong);
}

.page-home .home-penalty__num {
  display: block;
  font-family: var(--font-num);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--c-orange);
}

.page-home .home-penalty__card h3 {
  margin: 8px 0 8px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--c-white);
}

.page-home .home-penalty__card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(245, 247, 244, .72);
}

/* ---------- 场馆信息 ---------- */

.page-home .home-venue__head {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.page-home .home-venue__text {
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.8;
  max-width: 66ch;
  color: rgba(16, 20, 24, .78);
}

.page-home .home-venue__media {
  border-radius: var(--home-radius);
  overflow: hidden;
  margin-bottom: clamp(28px, 4.4vw, 52px);
  box-shadow: var(--shadow-1);
}

.page-home .home-venue__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 3;
  object-fit: cover;
}

.page-home .home-venue__fields {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
}

.page-home .home-venue__fields li {
  position: relative;
  padding: 22px 22px 22px 66px;
  background: rgba(220, 232, 223, .5);
  border-left: 4px solid var(--c-mist);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}

.page-home .home-venue__fields li:hover {
  background: rgba(220, 232, 223, .92);
  border-left-color: var(--c-green);
}

.page-home .home-venue__fields li:first-child { border-top-left-radius: var(--radius-md); border-top-right-radius: var(--radius-md); }
.page-home .home-venue__fields li:last-child { border-bottom-left-radius: var(--radius-md); border-bottom-right-radius: var(--radius-md); }

.page-home .home-venue__no {
  position: absolute;
  left: 20px;
  top: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--c-green);
}

.page-home .home-venue__fields h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-ink);
}

.page-home .home-venue__fields p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(16, 20, 24, .7);
}

.page-home .home-venue__note {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-slate);
}

.page-home .home-venue__note a {
  color: var(--c-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast) var(--ease);
}

.page-home .home-venue__note a:hover { color: var(--c-orange); }

/* ---------- 数据词典 ---------- */

.page-home .home-dict__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-gap);
  align-items: center;
}

.page-home .home-dict__text {
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.8;
  max-width: 56ch;
  color: rgba(245, 247, 244, .84);
}

.page-home .home-dict__points {
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .home-dict__points li {
  position: relative;
  padding-left: 22px;
  font-size: 14.8px;
  line-height: 1.72;
  color: rgba(245, 247, 244, .78);
}

.page-home .home-dict__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 4px;
  border-radius: var(--pill);
  background: var(--c-orange);
}

.page-home .home-dict__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-dict__visual {
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--home-radius);
  background: rgba(11, 34, 57, .38);
  border: 1px solid rgba(245, 247, 244, .12);
}

.page-home .home-dict__strip {
  position: relative;
  height: 52px;
  border-radius: var(--pill);
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(245, 247, 244, .5) 0 2px, transparent 2px 38px),
    linear-gradient(90deg, rgba(31, 122, 76, .55), rgba(255, 106, 19, .5));
}

.page-home .home-dict__strip::after {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: 38%;
  width: 4px;
  border-radius: var(--pill);
  background: var(--c-orange);
}

.page-home .home-dict__strip-label {
  margin: 12px 0 24px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .12em;
  color: rgba(245, 247, 244, .62);
}

.page-home .home-dict__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-home .home-dict__fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-dict__fact-num {
  font-family: var(--font-num);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--c-white);
}

.page-home .home-dict__fact-label {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(245, 247, 244, .66);
}

/* ---------- 咨询 ---------- */

.page-home .home-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-gap);
  align-items: start;
}

.page-home .home-cta__text {
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.8;
  max-width: 58ch;
  color: rgba(16, 20, 24, .78);
  margin-bottom: 28px;
}

.page-home .home-cta__panel {
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--home-radius);
  background: var(--c-deep);
  color: var(--c-white);
  box-shadow: var(--shadow-1);
}

.page-home .home-cta__row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 247, 244, .14);
}

.page-home .home-cta__row:first-child { padding-top: 0; }

.page-home .home-cta__key {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: rgba(245, 247, 244, .58);
}

.page-home .home-cta__val {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: .01em;
  word-break: break-word;
  color: var(--c-white);
}

.page-home .home-cta__hint {
  margin: 20px 0 0;
  font-size: 13.5px;
  line-height: 1.72;
  color: rgba(245, 247, 244, .68);
}

/* ---------- 响应式 ---------- */

@media (min-width: 720px) {
  .page-home .home-penalty__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  }

  .page-home .home-tier__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
  }

  .page-home .home-stands__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  }

  .page-home .home-penalty__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: center;
  }

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

  .page-home .home-venue__fields li {
    border-radius: 0;
  }

  .page-home .home-venue__fields li:nth-child(1) { border-top-left-radius: var(--radius-md); }
  .page-home .home-venue__fields li:nth-child(2) { border-top-right-radius: var(--radius-md); }
  .page-home .home-venue__fields li:nth-child(3) { border-bottom-left-radius: var(--radius-md); }
  .page-home .home-venue__fields li:nth-child(4) { border-bottom-right-radius: var(--radius-md); }

  .page-home .home-dict__inner {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  }

  .page-home .home-cta__inner {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    align-items: center;
  }
}

@media (max-width: 719px) {
  .page-home .home-hero__visual {
    padding-right: 0;
    padding-bottom: 0;
  }

  .page-home .home-hero__dial {
    position: static;
    width: 168px;
    margin: 18px auto 0;
    display: block;
  }

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

  .page-home .home-venue__fields li {
    padding-left: 56px;
  }

  .page-home .home-dict__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home * {
    transition-duration: .01ms !important;
  }
}
