.page-home {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ---------- 首屏：不对称三栏 ---------- */
.page-home .hero-board {
  position: relative;
  padding: 104px 0 56px;
  background:
    radial-gradient(120% 90% at 88% 6%, rgba(56, 242, 198, 0.18), transparent 58%),
    radial-gradient(90% 70% at 4% 98%, rgba(255, 138, 61, 0.13), transparent 62%),
    linear-gradient(168deg, var(--ink) 0%, var(--ink-deep) 100%);
  overflow: hidden;
}

.page-home .hero-board::after {
  content: "";
  position: absolute;
  left: 44%;
  right: -12%;
  bottom: -34%;
  height: 66%;
  background: linear-gradient(135deg, rgba(18, 63, 54, 0.92), rgba(11, 43, 38, 0) 72%);
  transform: skewY(-7deg);
  pointer-events: none;
}

.page-home .hero-board__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
}

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

.page-home .hero-board__inner {
  position: relative;
  z-index: 1;
}

.page-home .hero-board__crumb {
  margin-bottom: 20px;
}

.page-home .hero-board__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* 左侧入口面板 */
.page-home .entry-panel {
  position: relative;
  padding: 24px 20px 22px;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(18, 63, 54, 0.94), rgba(7, 28, 25, 0.82));
  box-shadow: var(--shadow-card);
}

.page-home .entry-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--cyan), rgba(56, 242, 198, 0));
}

.page-home .entry-panel__title {
  margin: 14px 0 12px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.14;
  font-size: clamp(28px, 6.4vw, 42px);
  color: var(--paper);
}

.page-home .entry-panel__lede {
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--text-soft);
}

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

.page-home .entry-link {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-areas:
    "idx label"
    "idx hint";
  gap: 2px 10px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(7, 28, 25, 0.55);
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.page-home .entry-link:hover,
.page-home .entry-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: rgba(56, 242, 198, 0.09);
}

.page-home .entry-link__idx {
  grid-area: idx;
  align-self: center;
  font-size: 13px;
  color: var(--cyan);
}

.page-home .entry-link__label {
  grid-area: label;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-home .entry-link__hint {
  grid-area: hint;
  font-size: 12.5px;
  color: var(--cool);
}

/* 中间轮次卡片流 */
.page-home .round-stream {
  padding: 20px 16px;
  border-radius: var(--radius-l);
  border: 1px solid var(--line-soft);
  background: rgba(7, 28, 25, 0.46);
}

.page-home .round-stream__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.page-home .round-stream__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-home .round-stream__more {
  font-size: 13px;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(56, 242, 198, 0.4);
}

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

.page-home .round-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .round-card {
  padding: 13px 15px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(150deg, rgba(18, 63, 54, 0.92), rgba(11, 43, 38, 0.62));
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.page-home .round-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-card);
}

.page-home .round-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.page-home .round-card__no {
  font-size: 13px;
  color: var(--cyan);
}

.page-home .round-card__score {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange);
}

.page-home .round-card__teams {
  margin: 4px 0 10px;
  font-size: 14px;
  color: var(--text-soft);
}

.page-home .round-card__more summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 12.5px;
  color: var(--cyan);
  list-style: none;
}

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

.page-home .round-card__more summary::after {
  content: "+";
  font-family: var(--font-data);
  font-size: 14px;
  line-height: 1;
}

.page-home .round-card__more[open] summary::after {
  content: "–";
}

.page-home .round-card__more p {
  margin: 9px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-faint);
  border-left: 2px solid rgba(56, 242, 198, 0.35);
  padding-left: 10px;
}

/* 右侧进失球分布与面板入口 */
.page-home .hero-aside {
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-home .dist-panel {
  padding: 18px 16px 16px;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  background: linear-gradient(200deg, rgba(18, 63, 54, 0.72), rgba(7, 28, 25, 0.9));
}

.page-home .dist-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.page-home .dist-panel__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
}

.page-home .dist-panel__meta {
  font-size: 12px;
  color: var(--cool);
}

.page-home .dist-chart {
  display: block;
  width: 100%;
  height: auto;
}

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

.page-home .dist-legend li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-soft);
}

.page-home .dist-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex: none;
}

.page-home .dist-dot--cyan {
  background: var(--cyan);
}

.page-home .dist-dot--orange {
  background: var(--orange);
}

.page-home .dist-dot--cyan-soft {
  background: rgba(56, 242, 198, 0.5);
}

.page-home .dist-dot--orange-soft {
  background: rgba(255, 138, 61, 0.5);
}

.page-home .dist-legend__label {
  flex: 1;
}

.page-home .dist-legend__num {
  color: var(--paper);
  font-size: 12.5px;
}

.page-home .panel-link {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 44px 16px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 138, 61, 0.45);
  background: linear-gradient(120deg, rgba(255, 138, 61, 0.16), rgba(7, 28, 25, 0.72));
  color: inherit;
  text-decoration: none;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.page-home .panel-link:hover,
.page-home .panel-link:focus-visible {
  transform: translateY(-3px);
  border-color: var(--orange);
}

.page-home .panel-link__kicker {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-transform: uppercase;
}

.page-home .panel-link__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--paper);
}

.page-home .panel-link__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--orange);
}

/* ---------- 2025 服务清单面板（浅色纸面） ---------- */
.page-home .panel-section {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--ink-text);
}

.page-home .kicker {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-ink);
  background: rgba(11, 43, 38, 0.06);
  font-family: var(--font-data);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: #0E6B57;
}

.page-home .panel-intro {
  max-width: 720px;
  margin-bottom: 32px;
}

.page-home .panel-intro__title {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: clamp(26px, 5.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.page-home .panel-intro__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-text-soft);
}

.page-home .panel-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-home .module-stack {
  display: grid;
  gap: 10px;
  align-content: start;
}

.page-home .module {
  border-radius: var(--radius);
  border: 1px solid var(--line-ink);
  background: #FFFFFF;
  overflow: hidden;
}

.page-home .module[open] {
  border-color: rgba(14, 107, 87, 0.5);
  box-shadow: 0 18px 34px -28px rgba(11, 43, 38, 0.7);
}

.page-home .module__head {
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
}

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

.page-home .module__idx {
  font-size: 12.5px;
  color: #0E6B57;
}

.page-home .module__name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-home .module__sign {
  position: relative;
  width: 14px;
  height: 14px;
  justify-self: end;
}

.page-home .module__sign::before,
.page-home .module__sign::after {
  content: "";
  position: absolute;
  background: #0E6B57;
  transition: transform 0.28s var(--ease);
}

.page-home .module__sign::before {
  left: 0;
  top: 6px;
  width: 14px;
  height: 2px;
}

.page-home .module__sign::after {
  left: 6px;
  top: 0;
  width: 2px;
  height: 14px;
}

.page-home .module[open] .module__sign::after {
  transform: scaleY(0);
}

.page-home .module__body {
  padding: 0 16px 16px 64px;
  border-top: 1px solid rgba(11, 43, 38, 0.08);
  margin-top: 0;
}

.page-home .module__body p {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink-text-soft);
}

/* ---------- 历史数据翻阅 ---------- */
.page-home .archive-section {
  position: relative;
  padding: 64px 0;
  background:
    radial-gradient(80% 70% at 92% 12%, rgba(56, 242, 198, 0.14), transparent 60%),
    var(--ink-deep);
}

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

.page-home .archive-copy .section-title {
  color: var(--paper);
}

.page-home .archive-copy .section-desc {
  color: var(--text-soft);
}

.page-home .filter-chips {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .filter-chip {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px dashed rgba(56, 242, 198, 0.45);
  background: rgba(56, 242, 198, 0.07);
  font-size: 13px;
  color: var(--cyan-soft);
}

.page-home .archive-media {
  max-width: 420px;
  justify-self: center;
  width: 100%;
}

/* ---------- 第一次访问三步 ---------- */
.page-home .visit-section {
  padding: 64px 0;
  background: var(--ink);
}

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

.page-home .visit-copy .section-title {
  color: var(--paper);
}

.page-home .step-list {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: grid;
  gap: 14px;
  counter-reset: none;
}

.page-home .step-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(18, 63, 54, 0.42);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.page-home .step-item:hover {
  border-color: rgba(56, 242, 198, 0.55);
  transform: translateX(3px);
}

.page-home .step-item__no {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(56, 242, 198, 0.14);
  color: var(--cyan);
  font-size: 12.5px;
}

.page-home .step-item__body h3 {
  margin: 2px 0 6px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-home .step-item__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-soft);
}

/* ---------- 长期在线 ---------- */
.page-home .trust-section {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--ink-deep), var(--ink));
  border-top: 1px solid var(--line-soft);
}

.page-home .trust-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.page-home .trust-head .section-title {
  color: var(--paper);
}

.page-home .trust-head .section-desc {
  color: var(--text-soft);
}

.page-home .fact-strip {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(56, 242, 198, 0.16);
  border: 1px solid rgba(56, 242, 198, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-home .fact {
  display: grid;
  gap: 6px;
  padding: 18px 16px;
  background: var(--ink-deep);
}

.page-home .fact__num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cyan);
}

.page-home .fact__label {
  font-size: 13px;
  color: var(--text-soft);
}

.page-home .trust-note {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-faint);
}

.page-home .trust-note a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(56, 242, 198, 0.4);
}

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

/* ---------- 开始接入 ---------- */
.page-home .start-section {
  padding: 26px 0 72px;
  background: var(--ink);
}

.page-home .start-card {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 30px 24px;
  border-radius: var(--radius-l);
  border: 1px solid rgba(255, 138, 61, 0.4);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255, 138, 61, 0.2), transparent 58%),
    linear-gradient(150deg, rgba(18, 63, 54, 0.94), rgba(7, 28, 25, 0.96));
  box-shadow: var(--shadow-float);
  overflow: hidden;
}

.page-home .start-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 138, 61, 0));
}

.page-home .start-card__title {
  margin: 12px 0 12px;
  font-family: var(--font-head);
  font-size: clamp(24px, 4.8vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--paper);
}

.page-home .start-card__desc {
  margin: 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
}

.page-home .start-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-home .hero-board {
    padding: 112px 0 64px;
  }

  .page-home .entry-panel {
    padding: 28px 26px 26px;
  }

  .page-home .dist-legend {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-home .start-card {
    padding: 36px 34px;
  }
}

@media (min-width: 900px) {
  .page-home .panel-section,
  .page-home .archive-section,
  .page-home .visit-section,
  .page-home .trust-section {
    padding: 80px 0;
  }

  .page-home .panel-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 30px;
    align-items: start;
  }

  .page-home .archive-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 40px;
  }

  .page-home .archive-media {
    justify-self: end;
  }

  .page-home .visit-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
  }

  .page-home .start-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
  }

  .page-home .start-card__actions {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-board {
    padding: 126px 0 76px;
  }

  .page-home .hero-board__grid {
    grid-template-columns: minmax(272px, 1.02fr) minmax(300px, 1.22fr) minmax(238px, 0.92fr);
    gap: 22px;
    align-items: start;
  }

  .page-home .fact-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .page-home .dist-legend {
    grid-template-columns: 1fr;
  }

  .page-home .round-card__score {
    font-size: 22px;
  }
}
