.page-home {
  --home-glow: rgba(47, 243, 200, 0.2);
  --home-shadow: rgba(0, 0, 0, 0.42);
  background: var(--ink-green);
  color: var(--bone);
  overflow-x: hidden;
}

.page-home .num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

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

.page-home .hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: calc(var(--head-h) + 40px) 0 clamp(34px, 5vw, 66px);
  overflow: hidden;
  isolation: isolate;
}

.page-home .hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.page-home .hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.7) contrast(1.2);
}

.page-home .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 26, 0.5) 0%, rgba(11, 31, 26, 0.86) 46%, var(--ink-green) 84%);
}

.page-home .hero__wedge {
  position: absolute;
  inset: -6% -14% -10% -8%;
  z-index: -2;
  background: linear-gradient(140deg, rgba(18, 58, 49, 0.94) 0%, rgba(24, 69, 58, 0.62) 52%, rgba(11, 31, 26, 0) 100%);
  clip-path: polygon(0 50%, 100% 14%, 100% 100%, 0 100%);
}

.page-home .hero__beam {
  position: absolute;
  inset: -6% -14% -10% -8%;
  z-index: -1;
  background: linear-gradient(90deg, rgba(47, 243, 200, 0.85), rgba(47, 243, 200, 0.15) 72%, rgba(47, 243, 200, 0));
  clip-path: polygon(0 49.3%, 100% 13.3%, 100% 14.4%, 0 50.5%);
  opacity: 0.75;
}

.page-home .hero__contour {
  bottom: -8%;
  top: auto;
  height: 42%;
  opacity: 0.22;
}

.page-home .hero__grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: end;
}

.page-home .hero__eyebrow {
  color: var(--cyan);
}

.page-home .hero__title {
  margin: 14px 0 18px;
  font-size: clamp(38px, 7.4vw, 92px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.page-home .hero__title-em {
  display: block;
  color: var(--cyan);
}

.page-home .hero__lede {
  max-width: 56ch;
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
  color: rgba(255, 253, 247, 0.84);
}

.page-home .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .hero-fact {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-left: 12px;
  border-left: 2px solid var(--home-glow);
}

.page-home .hero-fact__value {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  color: var(--bone);
}

.page-home .hero-fact__unit {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--karst);
}

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

/* 首屏对比卡 */

.page-home .hero__card {
  position: relative;
}

.page-home .compare-card {
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(18, 58, 49, 0.9);
  border: 1px solid var(--hair);
  border-radius: var(--radius-l);
  box-shadow: 0 28px 64px var(--home-shadow);
}

.page-home .compare-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .compare-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.page-home .compare-head,
.page-home .compare-rows li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px 52px;
  gap: 10px;
  align-items: center;
}

.page-home .compare-head {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hair);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--karst);
}

.page-home .compare-head span:not(:first-child) {
  text-align: right;
}

.page-home .compare-rows {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .compare-rows li {
  padding: 11px 0;
  border-bottom: 1px dashed var(--hair-soft);
}

.page-home .compare-rows__key {
  font-size: 14px;
  color: rgba(255, 253, 247, 0.82);
}

.page-home .compare-rows__home,
.page-home .compare-rows__away {
  text-align: right;
  font-size: 19px;
}

.page-home .compare-rows__home {
  color: var(--cyan);
}

.page-home .compare-rows__away {
  color: var(--amber);
}

.page-home .compare-card__note {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--karst);
}

.page-home .round-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
}

.page-home .round-tabs__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--karst);
}

.page-home .round-tab {
  padding: 4px 10px;
  font-size: 12.5px;
  color: var(--bone);
  text-decoration: none;
  border: 1px solid var(--hair);
  border-radius: 999px;
  transition: border-color 180ms var(--ease), color 180ms var(--ease);
}

.page-home .round-tab:hover,
.page-home .round-tab:focus-visible {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* ---------- 覆盖版图 ---------- */

.page-home .map-band {
  position: relative;
  overflow: hidden;
}

.page-home .map-band__contour {
  top: 8%;
  left: -12%;
  width: 62%;
  height: 84%;
  opacity: 0.16;
}

.page-home .map-band .shell {
  position: relative;
  z-index: 1;
}

.page-home .map-band__title {
  margin: 12px 0 16px;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-home .map-band__lede {
  max-width: 62ch;
  margin: 0 0 clamp(28px, 4vw, 46px);
  font-size: 17px;
  line-height: 1.78;
  color: rgba(255, 253, 247, 0.8);
}

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

.page-home .map-cell {
  position: relative;
  overflow: hidden;
  padding: 24px 22px 26px;
  background: rgba(11, 31, 26, 0.6);
  border: 1px solid var(--hair);
  border-radius: var(--radius-l);
}

.page-home .map-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--cyan);
}

.page-home .map-cell--as::before {
  background: var(--amber);
}

.page-home .map-cell--sa::before {
  background: var(--violet);
}

.page-home .map-cell--af::before {
  background: var(--gold);
}

.page-home .map-cell__no {
  margin: 0;
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1;
  color: var(--bone);
}

.page-home .map-cell__name {
  margin: 10px 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-home .map-cell__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(255, 253, 247, 0.74);
}

/* ---------- 两条主线 ---------- */

.page-home .main-lines__title {
  margin: 12px 0 clamp(28px, 4vw, 44px);
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-home .main-lines__split {
  align-items: start;
}

.page-home .main-lines__sub {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cyan);
}

.page-home .main-lines__side .main-lines__sub {
  color: var(--violet);
}

.page-home .main-lines__text {
  margin: 0;
  max-width: 60ch;
  font-size: 16.5px;
  line-height: 1.78;
  color: rgba(255, 253, 247, 0.8);
}

.page-home .main-lines__hint {
  margin: 12px 0 0;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--karst);
}

.page-home .main-lines__cta {
  margin-top: 22px;
}

.page-home .round-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 76%);
  gap: 14px;
  margin-top: 24px;
  padding-bottom: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--karst) transparent;
}

.page-home .round-card {
  scroll-snap-align: start;
  padding: 18px 18px 20px;
  background: rgba(18, 58, 49, 0.78);
  border: 1px solid var(--hair);
  border-radius: var(--radius-m);
}

.page-home .round-card__head {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--hair-soft);
}

.page-home .round-card__no {
  font-size: 34px;
  line-height: 1;
  color: var(--cyan);
}

.page-home .round-card__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--karst);
}

.page-home .round-card__list {
  margin: 12px 0 0;
}

.page-home .round-card__list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
}

.page-home .round-card__list dt {
  font-size: 13.5px;
  color: rgba(255, 253, 247, 0.74);
}

.page-home .round-card__list dd {
  margin: 0;
  font-size: 16px;
  color: var(--bone);
}

.page-home .main-lines__side {
  margin-top: clamp(32px, 5vw, 0px);
}

.page-home .main-lines__media {
  position: relative;
  margin: 20px 0 22px;
  border-radius: var(--radius-m);
  overflow: hidden;
}

.page-home .main-lines__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- 赛季曲线 ---------- */

.page-home .run-band {
  position: relative;
}

.page-home .run-band__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-bottom: clamp(24px, 3.4vw, 40px);
}

.page-home .run-band__title {
  margin: 12px 0 0;
  font-size: clamp(27px, 4.2vw, 48px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-home .run-band__lede {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.78;
  color: rgba(255, 253, 247, 0.78);
}

.page-home .run-band__media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--hair);
}

.page-home .run-band__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .run-band__switch {
  margin-top: 20px;
}

.page-home .run-band__table {
  margin-top: 22px;
  overflow-x: auto;
}

.page-home .run-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.page-home .run-table th,
.page-home .run-table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--hair-soft);
}

.page-home .run-table thead th {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--karst);
  border-bottom-color: var(--hair);
}

.page-home .run-table tbody th {
  font-weight: 600;
  color: var(--cyan);
}

.page-home .run-table td {
  color: rgba(255, 253, 247, 0.86);
}

.page-home .run-table td:not(:first-child) {
  text-align: right;
}

/* ---------- 自由专页 ---------- */

.page-home .pro-band {
  color: var(--ink);
}

.page-home .pro-band__eyebrow {
  color: var(--violet-deep);
}

.page-home .pro-band__title {
  margin: 12px 0 clamp(26px, 3.6vw, 42px);
  font-size: clamp(27px, 4.2vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

.page-home .pro-card {
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius-l);
}

.page-home .pro-card--club {
  background: linear-gradient(160deg, rgba(138, 92, 246, 0.22), rgba(138, 92, 246, 0.06));
  border: 1px solid rgba(91, 54, 176, 0.35);
}

.page-home .pro-card--odds {
  background: linear-gradient(160deg, rgba(217, 195, 122, 0.42), rgba(217, 195, 122, 0.12));
  border: 1px solid rgba(163, 101, 26, 0.3);
}

.page-home .pro-card__no {
  margin: 0;
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1;
  color: var(--ink);
}

.page-home .pro-card__name {
  margin: 10px 0 10px;
  font-size: 19px;
  font-weight: 700;
}

.page-home .pro-card__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.76;
  color: rgba(10, 12, 11, 0.78);
}

.page-home .pro-card__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--violet-deep);
  padding-bottom: 2px;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}

.page-home .pro-card--odds .pro-card__link {
  border-bottom-color: var(--amber-deep);
}

.page-home .pro-card__link:hover,
.page-home .pro-card__link:focus-visible {
  color: var(--violet-deep);
  border-color: var(--violet);
}

.page-home .pro-card--odds .pro-card__link:hover,
.page-home .pro-card--odds .pro-card__link:focus-visible {
  color: var(--amber-deep);
  border-color: var(--amber);
}

.page-home .pro-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--ink-green);
}

.page-home .pro-figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.page-home .pro-figure__cap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 4px 10px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--bone);
  background: rgba(11, 31, 26, 0.78);
  border-radius: 999px;
}

/* ---------- 纠错与合作 ---------- */

.page-home .fix-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: start;
}

.page-home .fix-band__title {
  margin: 12px 0 16px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-home .fix-band__text {
  margin: 0;
  max-width: 58ch;
  font-size: 16.5px;
  line-height: 1.78;
  color: rgba(255, 253, 247, 0.8);
}

.page-home .fix-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-home .fix-contact {
  margin: 0;
  padding: clamp(20px, 2.6vw, 28px);
  background: rgba(18, 58, 49, 0.7);
  border: 1px solid var(--hair);
  border-radius: var(--radius-l);
}

.page-home .fix-contact__item {
  padding: 12px 0;
  border-bottom: 1px dashed var(--hair-soft);
}

.page-home .fix-contact__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.page-home .fix-contact__key {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--karst);
}

.page-home .fix-contact__val {
  margin: 6px 0 0;
  font-size: 15.5px;
  color: var(--bone);
  word-break: break-word;
}

.page-home .fix-contact__val a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 243, 200, 0.4);
}

.page-home .fix-contact__val a:hover,
.page-home .fix-contact__val a:focus-visible {
  border-bottom-color: var(--cyan);
}

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

@media (min-width: 700px) {
  .page-home .map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .page-home .map-cell--eu {
    grid-row: span 2;
    padding-bottom: 32px;
  }

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

  .page-home .pro-figure {
    grid-column: 1 / -1;
    max-height: 320px;
  }

  .page-home .round-track {
    grid-auto-columns: minmax(200px, 46%);
  }
}

@media (min-width: 960px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.86fr);
  }

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

  .page-home .map-cell--eu {
    grid-row: auto;
    padding-bottom: 26px;
  }

  .page-home .map-cell--as {
    margin-top: -18px;
  }

  .page-home .map-cell--sa {
    margin-top: 22px;
  }

  .page-home .map-cell--af {
    margin-top: 6px;
  }

  .page-home .run-band__head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: end;
  }

  .page-home .pro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: stretch;
  }

  .page-home .pro-figure {
    grid-column: auto;
    max-height: none;
  }

  .page-home .fix-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  }

  .page-home .round-track {
    grid-auto-columns: minmax(190px, 33%);
  }
}
<<<END>>>
