.page-home {
  --p-home-gutter: 20px;
  --p-home-max: 1200px;
  --p-home-shadow: 0 18px 44px -26px rgba(26, 26, 26, 0.5);
  display: block;
  width: 100%;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
}

.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-home a:focus-visible,
.page-home button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.page-home section[id] {
  scroll-margin-top: 72px;
}

/* ===== 首屏：左叙事 + 右仪表板 ===== */
.page-home .home-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  border-bottom: 4px solid var(--orange);
}

.page-home .home-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(22, 50, 74, 0.96) 0%, rgba(22, 50, 74, 0.84) 32%, rgba(22, 50, 74, 0.46) 62%, rgba(228, 69, 43, 0.3) 100%);
}

.page-home .home-hero__frame {
  position: absolute;
  z-index: 3;
  inset: 12px;
  border: 1px solid rgba(244, 237, 228, 0.35);
  pointer-events: none;
}

.page-home .home-hero__frame::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 68%;
  height: 10px;
  background: repeating-linear-gradient(90deg, rgba(244, 237, 228, 0.85) 0 3px, transparent 3px 10px);
}

.page-home .home-hero__frame::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 46%;
  height: 10px;
  background: repeating-linear-gradient(90deg, rgba(245, 184, 46, 0.9) 0 4px, transparent 4px 12px);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--p-home-max);
  margin: 0 auto;
  padding: 56px var(--p-home-gutter);
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.page-home .home-crumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(244, 237, 228, 0.82);
}

.page-home .home-crumb__sep {
  color: var(--orange);
}

.page-home .home-hero__kicker {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 12px 4px 14px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}

.page-home .home-hero h1 {
  margin: 0 0 16px;
  max-width: 12em;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-home .home-hero__lead {
  margin: 0 0 24px;
  max-width: 33em;
  color: rgba(244, 237, 228, 0.92);
  font-size: 15px;
  line-height: 1.85;
}

.page-home .home-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.page-home .home-hero .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 2px;
  box-shadow: 0 12px 24px -14px rgba(228, 69, 43, 0.95);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.page-home .home-hero .btn-download:hover {
  box-shadow: 0 16px 28px -14px rgba(228, 69, 43, 0.95);
}

.page-home .home-hero .btn-download:active {
  transform: translateY(2px);
}

.page-home .btn-download__arrow {
  font-size: 18px;
  line-height: 1;
}

.page-home .home-hero__link {
  color: rgba(244, 237, 228, 0.85);
  border-bottom: 1px solid rgba(244, 237, 228, 0.4);
  padding-bottom: 2px;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .home-hero__link:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

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

.page-home .home-hero__points li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: rgba(244, 237, 228, 0.8);
}

.page-home .home-hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  background: var(--orange);
  transform: rotate(45deg);
}

/* ===== 首屏仪表板 ===== */
.page-home .home-dash {
  position: relative;
  background: rgba(244, 237, 228, 0.96);
  border: 1px solid rgba(214, 203, 185, 0.7);
  padding: 22px 18px;
  box-shadow: var(--p-home-shadow);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

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

.page-home .home-dash__note {
  font-size: 12px;
  color: var(--gray);
}

.page-home .home-dash .status-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 999px;
}

.page-home .home-dash .status-chip--solid {
  background: var(--navy);
  color: var(--paper);
}

.page-home .home-dash__value {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.page-home .home-dash__num {
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--orange);
}

.page-home .home-dash__pct {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
}

.page-home .home-dash__label {
  margin: 10px 0 14px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray);
}

.page-home .home-dash .freq-bar {
  display: block;
  width: 100%;
  height: 8px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.page-home .home-dash .freq-bar__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #f97c4a);
}

.page-home .home-dash__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-home .home-dash__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}

.page-home .home-dash__list em {
  margin-left: auto;
  font-style: normal;
  font-family: var(--font-num);
  font-size: 13px;
  color: var(--navy);
  background: rgba(46, 79, 107, 0.12);
  padding: 2px 10px;
  border-radius: 999px;
}

.page-home .pulse-dot {
  display: inline-block;
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(228, 69, 43, 0.2);
}

.page-home .home-dash__metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.page-home .metric-item {
  border-left: 2px solid var(--bai-blue);
  padding: 4px 0 2px 10px;
}

.page-home .metric-item__num {
  display: block;
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
}

.page-home .metric-item__label {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--gray);
}

/* ===== 本页栏目索引 ===== */
.page-home .home-index {
  position: relative;
  z-index: 6;
  max-width: calc(var(--p-home-max) - 40px);
  margin: -26px auto 0;
  padding: 0 10px;
}

.page-home .home-index__track {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--navy);
  border: 1px solid rgba(214, 203, 185, 0.5);
  padding: 10px 12px;
  box-shadow: var(--p-home-shadow);
}

.page-home .home-index__track a {
  font-size: 13px;
  color: rgba(244, 237, 228, 0.85);
  text-decoration: none;
  padding: 6px 12px;
  border-left: 2px solid var(--orange);
  transition: background 0.2s ease, color 0.2s ease;
}

.page-home .home-index__track a:hover {
  background: var(--orange);
  color: #fff;
}

/* ===== 通用标题组件 ===== */
.page-home .section-kicker {
  margin: 0 0 8px;
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.page-home .section-title {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(24px, 4.4vw, 40px);
  line-height: 1.25;
  color: var(--ink);
}

.page-home .section-subtitle {
  margin: 0;
  max-width: 38em;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}

/* ===== 最新版入口更新说明 ===== */
.page-home .home-update__inner {
  max-width: var(--p-home-max);
  margin: 0 auto;
  padding: 52px var(--p-home-gutter);
}

.page-home .home-update__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 30px;
}

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

.page-home .home-update__notice {
  background: linear-gradient(135deg, rgba(245, 184, 46, 0.22), rgba(245, 184, 46, 0.06));
  border: 1px solid rgba(245, 184, 46, 0.55);
  border-left: 4px solid var(--yellow);
  padding: 18px;
}

.page-home .home-update__notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.page-home .home-update__notice a {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 69, 43, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .home-update__notice a:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.page-home .home-update__entry {
  position: relative;
  background: var(--orange);
  color: #fff;
  padding: 18px;
}

.page-home .home-update__entry::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-bottom: 16px solid var(--paper);
  border-left: 16px solid transparent;
}

.page-home .home-update__entry h3 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 18px;
  color: #fff;
}

.page-home .home-update__entry p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.94);
}

.page-home .home-update__entry .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 16px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.page-home .home-update__entry .btn-download:hover {
  background: var(--ink);
}

/* ===== 入口变更对照表 ===== */
.page-home .home-update__table {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.page-home .home-update__row {
  display: grid;
  grid-template-areas: "name state" "old old" "new new";
  grid-template-columns: 1fr auto;
  row-gap: 3px;
  column-gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.page-home .home-update__row:last-child {
  border-bottom: 0;
}

.page-home .home-update__row--head {
  display: none;
}

.page-home .home-update__cell--name {
  grid-area: name;
  font-weight: 700;
  color: var(--ink);
}

.page-home .home-update__cell--state {
  grid-area: state;
  justify-self: end;
  align-self: center;
}

.page-home .home-update__cell--old {
  grid-area: old;
  color: var(--gray);
}

.page-home .home-update__cell--old::before {
  content: "旧入口：";
  color: var(--gray);
}

.page-home .home-update__cell--new {
  grid-area: new;
  color: var(--ink);
  font-weight: 600;
}

.page-home .home-update__cell--new::before {
  content: "新入口：";
  color: var(--orange);
  font-weight: 800;
}

.page-home .home-update__row .status-chip {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 999px;
  white-space: nowrap;
}

/* ===== 全站栏目修复进展 ===== */
.page-home .home-fix {
  background: var(--navy);
  color: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 5px solid var(--yellow);
}

.page-home .home-fix__inner {
  max-width: var(--p-home-max);
  margin: 0 auto;
  padding: 52px var(--p-home-gutter);
}

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

.page-home .home-fix .section-subtitle {
  color: rgba(244, 237, 228, 0.82);
}

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

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

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

.page-home .home-fix__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 14px;
  color: rgba(244, 237, 228, 0.9);
}

.page-home .home-fix__meta em {
  font-style: normal;
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 14px;
  color: var(--yellow);
}

.page-home .home-fix .freq-bar {
  display: block;
  width: 100%;
  height: 6px;
  background: rgba(244, 237, 228, 0.16);
  border-radius: 2px;
  overflow: hidden;
}

.page-home .home-fix .freq-bar__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #f97c4a);
}

.page-home .home-fix__bar--last .freq-bar__fill {
  background: linear-gradient(90deg, var(--yellow), #f6c95d);
}

.page-home .home-fix__aside {
  background: rgba(244, 237, 228, 0.07);
  border: 1px solid rgba(244, 237, 228, 0.16);
  padding: 22px 18px;
}

.page-home .home-fix__big {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--yellow);
}

.page-home .home-fix__big span {
  font-size: 20px;
  color: rgba(244, 237, 228, 0.7);
}

.page-home .home-fix__aside p {
  margin: 12px 0 18px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(244, 237, 228, 0.86);
}

.page-home .home-fix__aside .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 16px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.page-home .home-fix__aside .btn-download:active {
  transform: translateY(2px);
}

.page-home .home-fix__ghost {
  display: block;
  margin-top: 12px;
  width: fit-content;
  font-size: 14px;
  color: rgba(244, 237, 228, 0.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 237, 228, 0.4);
  padding-bottom: 2px;
}

/* ===== 中文站帮助文档入口变更 ===== */
.page-home .home-help {
  background: var(--paper-cool);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-home .home-help__inner {
  max-width: var(--p-home-max);
  margin: 0 auto;
  padding: 52px var(--p-home-gutter);
}

.page-home .home-help__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 30px;
}

.page-home .home-help__shot {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px;
  box-shadow: var(--p-home-shadow);
}

.page-home .home-help__shot img {
  width: 100%;
  height: auto;
}

.page-home .home-help__shot figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 4px 2px;
  font-size: 13px;
  color: var(--gray);
}

.page-home .home-help__shot figcaption::before {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.page-home .home-help__steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(46, 79, 107, 0.08);
  border: 1px solid var(--line);
  padding: 22px 18px;
}

.page-home .home-help__steps ol {
  counter-reset: help-step;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.page-home .home-help__steps li {
  counter-increment: help-step;
  position: relative;
  padding: 9px 0 9px 42px;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px dashed var(--line);
}

.page-home .home-help__steps li:last-child {
  border-bottom: 0;
}

.page-home .home-help__steps li::before {
  content: counter(help-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 7px;
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  color: var(--orange);
}

.page-home .home-help__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--paper);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.page-home .home-help__cta:hover {
  background: var(--orange);
}

.page-home .home-help__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.page-home .home-help__compare > div {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px;
  font-size: 13px;
  color: var(--ink);
  text-align: center;
}

.page-home .home-help__compare span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-home .home-help__compare > div:first-child span {
  color: var(--gray);
}

.page-home .home-help__compare > div:last-child {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.page-home .home-help__compare > div:last-child span {
  color: var(--orange);
}

/* ===== 球队收藏与战报摘要优势 ===== */
.page-home .home-feat__inner {
  max-width: var(--p-home-max);
  margin: 0 auto;
  padding: 52px var(--p-home-gutter);
}

.page-home .home-feat__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 30px;
}

.page-home .home-feat__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px 18px;
  box-shadow: 0 12px 26px -24px rgba(26, 26, 26, 0.45);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-home .home-feat__card:hover {
  border-color: var(--orange);
  box-shadow: var(--p-home-shadow);
}

.page-home .home-feat__card--shot {
  padding: 0;
  gap: 0;
}

.page-home .home-feat__img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line);
}

.page-home .home-feat__text {
  padding: 18px;
}

.page-home .home-feat__card h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
}

.page-home .home-feat__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray);
}

.page-home .home-feat__num {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--orange);
}

.page-home .home-feat__num span {
  font-size: 22px;
  color: var(--ink);
}

.page-home .home-feat__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 69, 43, 0.4);
  padding-bottom: 2px;
}

/* ===== 品牌概念带 ===== */
.page-home .home-brand {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-top: 5px solid var(--orange);
}

.page-home .home-brand__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-brand__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 50, 74, 0.08) 0%, rgba(22, 50, 74, 0.9) 100%);
}

.page-home .home-brand__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--p-home-max);
  margin: 0 auto;
  padding: 60px var(--p-home-gutter) 40px;
  color: var(--paper);
}

.page-home .home-brand h2 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 4vw, 36px);
  color: var(--paper);
}

.page-home .home-brand p {
  max-width: 34em;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(244, 237, 228, 0.9);
}

.page-home .home-brand a {
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 184, 46, 0.5);
  padding-bottom: 2px;
}

/* ===== 联系入口 ===== */
.page-home .home-contact {
  border-top: 1px solid var(--line);
  background: var(--paper-cool);
}

.page-home .home-contact__inner {
  max-width: var(--p-home-max);
  margin: 0 auto;
  padding: 40px var(--p-home-gutter);
  text-align: center;
}

.page-home .home-contact h2 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  color: var(--ink);
}

.page-home .home-contact p {
  max-width: 42em;
  margin: 0 auto 14px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray);
}

.page-home .home-contact__mail {
  display: inline-block;
  padding: 0 0 2px;
  background: none;
  border: 0;
  border-bottom: 1px dashed rgba(46, 79, 107, 0.55);
  font-family: var(--font-num);
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .home-contact__mail:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.page-home .home-contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  background: var(--navy);
  color: var(--paper);
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.page-home .home-contact__cta:hover {
  background: var(--orange);
}

/* ===== 频率条入场动画与动效偏好 ===== */
.page-home .home-dash .freq-bar__fill,
.page-home .home-fix .freq-bar__fill {
  transform-origin: left center;
  animation: home-bar-grow 0.9s ease-out both;
}

@keyframes home-bar-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-dash .freq-bar__fill,
  .page-home .home-fix .freq-bar__fill {
    animation: none;
  }
}

/* ===== 平板与桌面端 ===== */
@media (min-width: 768px) {
  .page-home .home-hero {
    min-height: 660px;
  }

  .page-home .home-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 52px;
    align-items: center;
    padding: 72px var(--p-home-gutter);
  }

  .page-home .home-hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .page-home .home-hero__actions .btn-download--block {
    width: auto;
  }

  .page-home .home-update__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: stretch;
  }

  .page-home .home-update__row--head {
    display: grid;
    grid-template-areas: "name old new state";
    grid-template-columns: 1.3fr 1fr 1fr 0.75fr;
    font-family: var(--font-num);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gray);
    text-transform: uppercase;
    background: rgba(22, 50, 74, 0.05);
  }

  .page-home .home-update__row {
    grid-template-areas: "name old new state";
    grid-template-columns: 1.3fr 1fr 1fr 0.75fr;
    align-items: center;
    column-gap: 12px;
    row-gap: 0;
    padding: 14px;
  }

  .page-home .home-update__cell--old::before,
  .page-home .home-update__cell--new::before {
    display: none;
  }

  .page-home .home-update__cell--state {
    justify-self: start;
  }

  .page-home .home-fix__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 44px;
    align-items: start;
  }

  .page-home .home-fix__aside {
    margin-top: 0;
  }

  .page-home .home-help__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
  }

  .page-home .home-feat__grid {
    grid-template-areas: "shot time" "shot league";
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: stretch;
  }

  .page-home .home-feat__card--shot {
    grid-area: shot;
  }

  .page-home .home-feat__card--time {
    grid-area: time;
  }

  .page-home .home-feat__card--league {
    grid-area: league;
  }

  .page-home .home-feat__img {
    border-bottom: 1px solid var(--line);
  }

  .page-home .home-brand {
    min-height: 420px;
  }
}

@media (min-width: 1080px) {
  .page-home .home-hero__inner {
    padding: 88px var(--p-home-gutter);
  }

  .page-home .home-hero h1 {
    font-size: 48px;
  }

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

  .page-home .home-update__inner,
  .page-home .home-fix__inner,
  .page-home .home-help__inner,
  .page-home .home-feat__inner {
    padding: 68px var(--p-home-gutter);
  }
}
