.page-home {
  --home-frame: rgba(38, 247, 208, 0.32);
  --home-tick: rgba(157, 184, 176, 0.36);
  --home-soft: rgba(157, 184, 176, 0.14);
  color: var(--ink);
  font-family: var(--font-body);
}

/* ---------------- 首屏：框景 ---------------- */
.page-home .home-hero {
  padding: 0 var(--gutter) clamp(36px, 6vw, 80px);
}

.page-home .home-hero__frame {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  border: 1px solid var(--home-frame);
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 8% 0%, rgba(38, 247, 208, 0.14) 0%, transparent 55%),
    radial-gradient(120% 120% at 110% 100%, rgba(27, 42, 91, 0.5) 0%, transparent 60%),
    linear-gradient(160deg, #0B1F1A 0%, #071512 58%, #0D231E 100%);
  isolation: isolate;
}

.page-home .home-hero__ticks {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
  z-index: 4;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to right,
    var(--home-tick) 0 1px,
    transparent 1px 24px
  );
  opacity: 0.55;
}

.page-home .home-hero__bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .home-hero__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-home .home-hero__scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    var(--scan) 0 1px,
    transparent 1px 5px
  );
  opacity: 0.18;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 3;
  padding: clamp(34px, 6vw, 76px) clamp(20px, 5vw, 64px) clamp(28px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .home-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 7.4vw, 84px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--ink);
}

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

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

.page-home .home-hero__counters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: clamp(18px, 3vw, 34px) 0 0;
  padding: 0;
}

.page-home .home-hero__counter {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px 14px;
  background: rgba(7, 21, 18, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .home-hero__counter dt {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
}

.page-home .home-hero__counter dd {
  margin: 0;
  font-family: var(--font-num);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.page-home .home-hero__counter--amber dd {
  color: var(--amber);
}

.page-home .home-hero__unit {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-muted);
}

/* ---------------- 非对称分栏：时间轴 + 数据流 ---------------- */
.page-home .home-stage {
  padding: 0 var(--gutter) clamp(40px, 6vw, 84px);
}

.page-home .home-stage__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  max-width: var(--shell);
  margin: 0 auto;
}

.page-home .home-stage__rail {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.page-home .home-stage__rail-label {
  margin: 0 0 14px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.page-home .home-stage__rail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-stage__rail-link {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 13px;
  transition: border-color var(--t) ease, color var(--t) ease;
}

.page-home .home-stage__rail-link:hover,
.page-home .home-stage__rail-link:focus-visible {
  border-color: var(--cyan);
  color: var(--ink);
}

.page-home .home-stage__rail-num {
  color: var(--amber);
  font-size: 12px;
}

.page-home .home-stage__rail-note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-muted);
}

.page-home .home-stage__head {
  margin-bottom: clamp(18px, 3vw, 28px);
}

.page-home .home-stage__title {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  color: var(--ink);
}

.page-home .home-stage__lede {
  margin: 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
}

/* ---------------- Bento 数据板 ---------------- */
.page-home .home-bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.page-home .home-bento__cell {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 20px;
  border-radius: var(--r-lg);
  transition: border-color var(--t) ease, transform var(--t) ease;
}

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

.page-home .home-bento__cell--signup {
  grid-column: span 6;
}
.page-home .home-bento__cell--scorers {
  grid-column: span 6;
}
.page-home .home-bento__cell--shirt {
  grid-column: span 3;
}
.page-home .home-bento__cell--away {
  grid-column: span 3;
}
.page-home .home-bento__cell--offside {
  grid-column: span 6;
}

.page-home .home-bento__figure {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}

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

.page-home .home-bento__figure--square img {
  aspect-ratio: 1 / 1;
}

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

.page-home .home-bento__rank {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line-soft);
}

.page-home .home-bento__rank:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-home .home-bento__rank-pos {
  font-family: var(--font-num);
  font-size: 22px;
  color: var(--amber);
}

.page-home .home-bento__rank-unit {
  font-size: 12px;
  color: var(--ink-muted);
  margin-left: 2px;
}

.page-home .home-bento__rank-meta {
  font-family: var(--font-num);
  font-size: 13px;
  color: var(--ink-muted);
}

.page-home .home-bento__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .home-bento__stat .arena-stat__value {
  font-family: var(--font-num);
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1;
  color: var(--amber);
}

.page-home .home-bento__stat .arena-stat__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.page-home .home-bento__stat--inline {
  flex-direction: row;
  align-items: baseline;
  gap: 12px;
}

/* ---------------- 刷新与索引 ---------------- */
.page-home .home-refresh {
  padding: 0 var(--gutter) clamp(40px, 6vw, 84px);
}

.page-home .home-refresh__inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(13, 35, 30, 0.9) 0%, rgba(10, 27, 23, 0.9) 100%);
}

.page-home .home-refresh__title {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.2;
  color: var(--ink);
}

.page-home .home-refresh__lede {
  margin: 0 0 20px;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
}

.page-home .home-refresh__details {
  border-top: 1px solid var(--line-soft);
  padding: 14px 0;
}

.page-home .home-refresh__details:last-of-type {
  border-bottom: 1px solid var(--line-soft);
}

.page-home .home-refresh__details summary {
  cursor: pointer;
  font-size: 15px;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--t) ease;
}

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

.page-home .home-refresh__details summary::before {
  content: "+";
  font-family: var(--font-num);
  color: var(--cyan);
  font-size: 16px;
  line-height: 1;
  width: 14px;
  display: inline-block;
  transition: transform var(--t) ease;
}

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

.page-home .home-refresh__details summary:hover {
  color: var(--cyan);
}

.page-home .home-refresh__details .arena-details__body {
  margin-top: 10px;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-muted);
}

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

.page-home .home-refresh__band > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
}

.page-home .home-refresh__index {
  display: flex;
  flex-direction: column;
}

/* ---------------- 收藏常用页 ---------------- */
.page-home .home-bookmark {
  padding: 0 var(--gutter) clamp(40px, 6vw, 84px);
}

.page-home .home-bookmark__inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.page-home .home-bookmark__title {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(26px, 3.8vw, 42px);
  line-height: 1.15;
  color: var(--ink);
}

.page-home .home-bookmark__lede {
  margin: 0;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
}

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

.page-home .home-bookmark__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  text-decoration: none;
  background: rgba(13, 35, 30, 0.5);
  transition: border-color var(--t) ease, background-color var(--t) ease, transform var(--t) ease;
}

.page-home .home-bookmark__link:hover,
.page-home .home-bookmark__link:focus-visible {
  border-color: var(--cyan);
  background: rgba(14, 143, 122, 0.14);
  transform: translateY(-1px);
}

.page-home .home-bookmark__num {
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 20px;
  color: var(--amber);
}

.page-home .home-bookmark__name {
  font-size: 16px;
  color: var(--ink);
}

.page-home .home-bookmark__desc {
  font-size: 13px;
  color: var(--ink-muted);
}

/* ---------------- 品牌与支持 ---------------- */
.page-home .home-brand {
  padding: 0 var(--gutter) clamp(48px, 7vw, 96px);
}

.page-home .home-brand__inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3.5vw, 36px);
}

.page-home .home-brand__title {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.2;
  color: var(--ink);
}

.page-home .home-brand__body {
  margin: 0 0 14px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-muted);
}

.page-home .home-brand__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 6px;
}

.page-home .home-brand__contact {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: var(--r-lg);
}

.page-home .home-brand__fields {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-brand__field dt {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
}

.page-home .home-brand__field dd {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
  word-break: break-word;
}

.page-home .home-brand__note {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-muted);
}

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

  .page-home .home-stage__rail-list {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 6px;
  }

  .page-home .home-stage__rail-link {
    border-radius: var(--r-sm);
  }

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

  .page-home .home-bookmark__link {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    row-gap: 6px;
  }

  .page-home .home-bookmark__num {
    grid-row: auto;
    align-self: auto;
  }
}

@media (min-width: 960px) {
  .page-home .home-stage__inner {
    grid-template-columns: 232px minmax(0, 1fr);
    align-items: start;
  }

  .page-home .home-stage__rail {
    position: sticky;
    top: 132px;
    border-top: none;
    border-left: 1px solid var(--line);
    padding-top: 0;
    padding-left: 18px;
  }

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

  .page-home .home-bento__cell--signup {
    grid-column: span 5;
    grid-row: span 2;
  }
  .page-home .home-bento__cell--scorers {
    grid-column: span 4;
  }
  .page-home .home-bento__cell--shirt {
    grid-column: span 3;
    grid-row: span 2;
  }
  .page-home .home-bento__cell--away {
    grid-column: span 4;
  }
  .page-home .home-bento__cell--offside {
    grid-column: span 12;
  }

  .page-home .home-refresh__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-home .home-bookmark__inner {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .page-home .home-brand__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: start;
  }
}
<<<END>>>
