.page-home {
  --home-wedge: linear-gradient(96deg, transparent 0 44%, rgba(47, 230, 200, .08) 44% 58%, transparent 58%);
  --home-line: rgba(244, 239, 230, .12);
}

/* ===== HERO ===== */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 56px) 0 clamp(40px, 7vw, 84px);
  background:
    radial-gradient(120% 90% at 88% 6%, rgba(47, 230, 200, .14), transparent 58%),
    radial-gradient(90% 70% at 4% 96%, rgba(182, 92, 58, .16), transparent 62%),
    var(--night);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(244, 239, 230, .04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244, 239, 230, .04) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.page-home .home-hero__lead {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .home-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 12vw, 96px);
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--cream);
  text-transform: none;
}

.page-home .home-hero__accent {
  display: inline-block;
  position: relative;
  color: var(--night);
  background: var(--cyan);
  padding: 0 .14em;
  border-radius: var(--r-sm);
  transform: rotate(-1.5deg);
}

.page-home .home-hero__lede {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  color: var(--text);
}

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

.page-home .home-hero__media {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--edge);
  background: var(--deep);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

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

.page-home .home-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: var(--deep);
  border: 1px solid var(--edge);
  border-left: 4px solid var(--cyan);
}

.page-home .home-hero__stat--narrow {
  border-left-color: var(--orange);
}

.page-home .home-hero__stat-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(40px, 9vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
}

.page-home .home-hero__stat--narrow .home-hero__stat-num {
  color: var(--orange);
}

.page-home .home-hero__stat-unit {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--cream);
}

.page-home .home-hero__stat-note {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-dim);
}

.page-home .home-hero__ticks {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--home-line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--stone);
}

@media (min-width: 760px) {
  .page-home .home-hero__inner {
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas:
      "lead lead lead lead lead lead media media media media media media"
      "stat1 stat1 stat1 stat1 stat2 stat2 stat2 stat2 stat2 stat2 stat2 stat2"
      "ticks ticks ticks ticks ticks ticks ticks ticks ticks ticks ticks ticks";
    align-items: start;
    gap: 22px 24px;
  }

  .page-home .home-hero__lead { grid-area: lead; }
  .page-home .home-hero__media { grid-area: media; aspect-ratio: 16 / 11; }
  .page-home .home-hero__stat--wide { grid-area: stat1; }
  .page-home .home-hero__stat--narrow { grid-area: stat2; }
  .page-home .home-hero__ticks { grid-area: ticks; }
}

@media (min-width: 1080px) {
  .page-home .home-hero__inner {
    grid-template-areas:
      "lead lead lead lead lead lead media media media media media media"
      "lead lead lead lead lead lead stat1 stat1 stat1 stat1 stat2 stat2"
      "stat3 stat3 stat3 stat3 stat3 stat2 stat2 stat2 stat2 stat2 stat2 stat2";
    grid-template-rows: auto auto auto;
  }

  .page-home .home-hero__stat--wide { grid-area: stat1; }
  .page-home .home-hero__stat--narrow { grid-area: stat2; }
  .page-home .home-hero__ticks { grid-area: stat3; border-top: 0; padding-top: 0; align-items: flex-end; }
}

/* ===== 六大板块 ===== */
.page-home .home-blocks {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(44px, 7vw, 80px);
  background: var(--night);
}

.page-home .home-blocks__wedge {
  height: clamp(48px, 8vw, 96px);
  margin-bottom: clamp(-48px, -8vw, -96px);
  background: var(--home-wedge);
  clip-path: polygon(0 0, 100% 0, 100% 62%, 0 100%);
  pointer-events: none;
}

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

.page-home .home-block {
  transition: transform .22s ease, border-color .22s ease;
}

.page-home .home-block .file-card__tab {
  transition: background-color .22s ease, color .22s ease;
}

.page-home .home-block:hover,
.page-home .home-block:focus-within {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.page-home .home-block:hover .file-card__tab,
.page-home .home-block:focus-within .file-card__tab {
  background: var(--cyan);
  color: var(--night);
}

.page-home .home-block__title {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.4;
  color: var(--cream);
}

.page-home .home-block__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
}

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

@media (min-width: 1024px) {
  .page-home .home-blocks__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ===== 赛区分布 ===== */
.page-home .home-regions {
  padding: clamp(48px, 8vw, 88px) 0;
  background:
    linear-gradient(180deg, var(--night) 0%, var(--deep) 42%, var(--night) 100%);
}

.page-home .home-regions__media {
  margin: 0 0 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--edge);
  overflow: hidden;
}

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

.page-home .home-regions__rail {
  position: relative;
  padding: 22px 20px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--edge);
  background: rgba(11, 27, 43, .6);
}

.page-home .home-regions__scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--home-line);
}

.page-home .home-regions__scale span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--stone);
  text-align: center;
  position: relative;
}

.page-home .home-regions__scale span::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .7;
}

.page-home .home-regions__scale span:nth-child(2)::before { background: var(--moss); }
.page-home .home-regions__scale span:nth-child(3)::before { background: var(--clay); }
.page-home .home-regions__scale span:nth-child(4)::before { background: var(--gold); }

.page-home .home-regions__tags {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.page-home .home-regions__note {
  margin: 0;
  max-width: 68ch;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}

@media (min-width: 900px) {
  .page-home .home-regions__rail {
    padding: 28px 32px 30px;
  }
}

/* ===== 一轮赛事 ===== */
.page-home .home-cycle {
  padding: clamp(48px, 8vw, 88px) 0;
  background: var(--night);
}

.page-home .home-cycle__scroller {
  padding-bottom: 12px;
}

.page-home .home-cycle__timeline {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 100%;
}

.page-home .home-cycle .timeline__node {
  position: relative;
  padding: 22px 18px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--edge);
  background: var(--deep);
  scroll-snap-align: start;
}

.page-home .home-cycle .timeline__node::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -12px;
  width: 12px;
  height: 1px;
  background: var(--edge);
}

.page-home .home-cycle .timeline__node:last-child::after {
  display: none;
}

.page-home .home-cycle .timeline__node--live {
  border-color: rgba(47, 230, 200, .55);
  background: linear-gradient(160deg, rgba(47, 230, 200, .1), var(--deep) 62%);
}

.page-home .home-cycle .timeline__year {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--cyan);
  text-transform: uppercase;
}

.page-home .home-cycle .timeline__node--live .timeline__year {
  color: var(--orange);
}

.page-home .home-cycle__step {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--cream);
  margin-bottom: 8px;
}

.page-home .home-cycle__step-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-dim);
}

.page-home .home-cycle__stats {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}

.page-home .home-cycle__stats .stat-card {
  background: var(--deep);
  border: 1px solid var(--edge);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-cycle__stats .stat-card__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 6vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: var(--cream);
}

.page-home .home-cycle__stats .stat-card:nth-child(2) .stat-card__value { color: var(--cyan); }
.page-home .home-cycle__stats .stat-card:nth-child(3) .stat-card__value { color: var(--orange); }

.page-home .home-cycle__stats .stat-card__label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
}

@media (min-width: 760px) {
  .page-home .home-cycle__stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 759px) {
  .page-home .home-cycle__scroller {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ===== 跨设备 ===== */
.page-home .home-multi {
  padding: clamp(48px, 8vw, 92px) 0;
  background:
    radial-gradient(80% 90% at 92% 10%, rgba(47, 230, 200, .1), transparent 60%),
    var(--deep);
}

.page-home .home-multi__inner {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  align-items: center;
}

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

.page-home .home-multi__lede {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  color: var(--text);
}

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

.page-home .home-multi__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
}

.page-home .home-multi__list strong {
  color: var(--cream);
  font-weight: 600;
}

.page-home .home-multi__mark {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border-radius: 4px;
  background: var(--cyan);
  transform: rotate(45deg);
}

.page-home .home-multi__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--deep);
  border-radius: 2px;
}

.page-home .home-multi__media {
  margin: 0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(47, 230, 200, .28);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

@media (min-width: 900px) {
  .page-home .home-multi__inner {
    grid-template-columns: 7fr 5fr;
    gap: 40px;
  }
}

/* ===== 使用场景 ===== */
.page-home .home-users {
  padding: clamp(48px, 8vw, 88px) 0;
  background: var(--night);
}

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

.page-home .home-user {
  background: rgba(19, 41, 63, .78);
  border: 1px solid var(--edge);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .22s ease, border-color .22s ease;
}

.page-home .home-user:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 230, 200, .5);
}

.page-home .home-user .entry-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.45;
  color: var(--cream);
}

.page-home .home-user .entry-card__meta {
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-dim);
}

@media (min-width: 640px) {
  .page-home .home-users__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
  .page-home .home-users__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== 开始查询与合作 ===== */
.page-home .home-start {
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 9vw, 110px);
  background:
    linear-gradient(0deg, rgba(47, 230, 200, .06), transparent 55%),
    var(--night);
  border-top: 1px solid var(--home-line);
}

.page-home .home-start__head {
  max-width: 70ch;
}

.page-home .home-start__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 26px;
}

.page-home .home-start__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--edge);
  background: var(--deep);
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease;
}

.page-home .home-start__card:hover,
.page-home .home-start__card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.page-home .home-start__card--primary {
  background: linear-gradient(150deg, rgba(255, 122, 41, .16), var(--deep) 62%);
  border-color: rgba(255, 122, 41, .5);
}

.page-home .home-start__index {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--stone);
}

.page-home .home-start__card--primary .home-start__index {
  color: var(--orange);
}

.page-home .home-start__card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.01em;
  color: var(--cream);
}

.page-home .home-start__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
}

.page-home .home-start__note {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
}

.page-home .home-start__note a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 230, 200, .4);
}

.page-home .home-start__note a:hover {
  border-bottom-color: var(--cyan);
}

@media (min-width: 760px) {
  .page-home .home-start__grid { grid-template-columns: repeat(3, 1fr); }
}
<<<END>>>
</main>
