.page-home {
  --home-navy: #0A1F44;
  --home-navy-deep: #071731;
  --home-navy-offset: #132B5A;
  --home-navy-line: #1E3A6E;
  --home-orange: #FF6B35;
  --home-silver: #C0C0C0;
  --home-ash: #F5F7FA;
  --home-slate: #8A94A6;
  --home-white: #FFFFFF;
  --home-green: #2A9D8F;
  --home-yellow: #E9C46A;
  --home-font-display: "Oswald", "Arial Narrow", "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-body: "Inter", "Segoe UI", system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-mono: "Roboto Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --home-radius-lg: 30px;
  --home-radius-md: 18px;
  --home-radius-pill: 999px;
  --home-shadow: 0 12px 32px rgba(10, 31, 68, 0.08);
  --home-shadow-orange: 0 10px 24px rgba(255, 107, 53, 0.28);

  --home-accent-premier: #7DD3FC;
  --home-accent-laliga: #FDE047;
  --home-accent-seriea: #5EEAD4;
  --home-accent-bundes: #F87171;
  --home-accent-ligue1: #FB923C;
  --home-accent-csl: #A3E635;
  --home-accent-jleague: #A78BFA;
  --home-accent-kleague: #F9A8D4;

  font-family: var(--home-font-body);
  color: var(--home-navy);
  background: var(--home-ash);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-home a {
  color: inherit;
  text-decoration: none;
}

/* ============ 首屏 HERO ============ */

.page-home .home-hero {
  position: relative;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(255, 107, 53, 0.28), transparent 52%),
    radial-gradient(ellipse at 18% 88%, rgba(125, 211, 252, 0.16), transparent 46%),
    linear-gradient(140deg, var(--home-navy) 0%, var(--home-navy-deep) 72%);
  color: var(--home-white);
  overflow: hidden;
  padding: 52px 20px 68px;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 14px
    );
  pointer-events: none;
  z-index: 1;
}

.page-home .home-hero__lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--site-width, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.page-home .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--home-font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--home-orange);
  text-transform: uppercase;
  border: 1px solid rgba(255, 107, 53, 0.45);
  border-radius: var(--home-radius-pill);
  padding: 7px 14px;
  background: rgba(255, 107, 53, 0.08);
  margin-bottom: 22px;
}

.page-home .home-hero__title {
  font-family: var(--home-font-display);
  font-weight: 700;
  font-size: clamp(32px, 7vw, 58px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
  max-width: 12em;
}

.page-home .home-hero__lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 0 28px;
}

.page-home .home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 30px;
}

.page-home .home-hero__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-home .home-hero__stat-num {
  font-family: var(--home-font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--home-orange);
  line-height: 1;
}

.page-home .home-hero__stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.page-home .home-hero__toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--home-radius-md);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 32px;
  max-width: 640px;
}

.page-home .home-hero__toc-cap {
  font-family: var(--home-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--home-silver);
  text-transform: uppercase;
  margin-right: 8px;
}

.page-home .home-hero__toc a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.84);
  transition: color 0.28s ease;
}

.page-home .home-hero__toc a:hover {
  color: var(--home-orange);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.page-home .home-hero__visual {
  position: relative;
  min-height: 260px;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.16), transparent 40%),
    radial-gradient(circle at 74% 58%, rgba(255, 107, 53, 0.4), transparent 46%),
    linear-gradient(145deg, rgba(19, 43, 90, 0.82), rgba(7, 23, 49, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease;
}

.page-home .home-hero__visual:hover {
  transform: translateY(-4px);
}

.page-home .home-hero__img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.page-home .home-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  z-index: 0;
}

.page-home .home-hero__glow--one {
  width: 160px;
  height: 160px;
  background: rgba(255, 107, 53, 0.34);
  top: 8%;
  left: 10%;
}

.page-home .home-hero__glow--two {
  width: 100px;
  height: 100px;
  background: rgba(125, 211, 252, 0.22);
  bottom: 10%;
  right: 12%;
}

.page-home .home-hero__version {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  right: 18px;
  font-family: var(--home-font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--home-white);
  background: rgba(10, 31, 68, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--home-radius-pill);
  padding: 8px 14px;
  backdrop-filter: blur(6px);
}

/* ============ 通用 section 结构 ============ */

.page-home .home-leagues,
.page-home .home-schedule,
.page-home .home-squads,
.page-home .home-reviews,
.page-home .home-trust {
  padding: 60px 20px;
}

.page-home .home-leagues,
.page-home .home-schedule,
.page-home .home-reviews {
  background: var(--home-ash);
}

.page-home .home-section-head {
  max-width: var(--site-width, 1240px);
  margin: 0 auto 32px;
}

.page-home .home-section-eyebrow {
  font-family: var(--home-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-orange);
  margin-bottom: 8px;
}

.page-home .home-section-head h2 {
  font-family: var(--home-font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.14;
  margin: 0;
  color: var(--home-navy);
  letter-spacing: 0.02em;
}

.page-home .home-section-desc {
  margin-top: 12px;
  max-width: 680px;
  color: var(--home-slate);
  font-size: 15px;
  line-height: 1.75;
}

.page-home .home-section-head--light h2 {
  color: var(--home-white);
}

.page-home .home-section-head--light .home-section-desc {
  color: rgba(255, 255, 255, 0.68);
}

.page-home .home-section-head--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* ============ 联赛分组 ============ */

.page-home .home-league-strip {
  max-width: 720px;
  margin: 0 auto 36px;
  border-radius: var(--home-radius-md);
  overflow: hidden;
  box-shadow: var(--home-shadow);
}

.page-home .home-league-strip img {
  display: block;
  width: 100%;
}

.page-home .home-league-grid {
  max-width: var(--site-width, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .home-league-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  border-radius: var(--home-radius-md);
  background: var(--home-white);
  border: 1px solid transparent;
  box-shadow: 0 6px 18px rgba(10, 31, 68, 0.05);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.page-home .home-league-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--league-accent, var(--home-orange));
  border-radius: 0 6px 6px 0;
}

.page-home .home-league-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(10, 31, 68, 0.12);
}

.page-home .home-league-card__no {
  font-family: var(--home-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--home-slate);
  position: absolute;
  top: 18px;
  right: 20px;
}

.page-home .home-league-card__code {
  font-family: var(--home-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--league-accent, var(--home-orange));
  text-transform: uppercase;
}

.page-home .home-league-card__name {
  font-family: var(--home-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--home-navy);
  line-height: 1.1;
}

.page-home .home-league-card__meta {
  font-size: 13px;
  color: var(--home-slate);
}

.page-home .home-league-card__line {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: var(--home-radius-pill);
  background: linear-gradient(90deg, var(--league-accent, var(--home-orange)), transparent 88%);
  margin-top: 4px;
}

.page-home .home-league-card__arrow {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-size: 18px;
  color: var(--league-accent, var(--home-orange));
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.page-home .home-league-card:hover .home-league-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.page-home .home-league-card--premier { --league-accent: var(--home-accent-premier); }
.page-home .home-league-card--laliga { --league-accent: var(--home-accent-laliga); }
.page-home .home-league-card--seriea { --league-accent: var(--home-accent-seriea); }
.page-home .home-league-card--bundes { --league-accent: var(--home-accent-bundes); }
.page-home .home-league-card--ligue1 { --league-accent: var(--home-accent-ligue1); }
.page-home .home-league-card--csl { --league-accent: var(--home-accent-csl); }
.page-home .home-league-card--jleague { --league-accent: var(--home-accent-jleague); }
.page-home .home-league-card--kleague { --league-accent: var(--home-accent-kleague); }

/* ============ 赛程表 ============ */

.page-home .home-schedule {
  background: var(--home-white);
}

.page-home .home-schedule__progress {
  margin: 0;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--home-ash), var(--home-white));
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 220px;
}

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

.page-home .home-featured-grid {
  max-width: var(--site-width, 1240px);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .home-featurematch {
  padding: 24px;
  border-radius: var(--home-radius-lg);
  background: linear-gradient(140deg, var(--home-navy) 0%, var(--home-navy-deep) 80%);
  color: var(--home-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(10, 31, 68, 0.22);
}

.page-home .home-featurematch::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.28), transparent 70%);
}

.page-home .home-featurematch__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.page-home .home-featurematch__badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--home-navy);
  background: var(--home-orange);
  border-radius: var(--home-radius-pill);
  padding: 5px 12px;
  box-shadow: var(--home-shadow-orange);
}

.page-home .home-featurematch__league {
  font-family: var(--home-font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .home-featurematch__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.page-home .home-featurematch__team {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.page-home .home-featurematch__kick {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--home-silver);
  text-transform: uppercase;
}

.page-home .home-featurematch__name {
  font-family: var(--home-font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.page-home .home-featurematch__form {
  font-family: var(--home-font-mono);
  font-size: 13px;
  color: var(--home-orange);
}

.page-home .home-featurematch__core {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.page-home .home-featurematch__time {
  font-family: var(--home-font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--home-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--home-radius-pill);
  padding: 8px 14px;
}

.page-home .home-featurematch__round {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .home-featurematch__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  z-index: 1;
}

.page-home .home-collapse-list {
  max-width: var(--site-width, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-home .home-collapse {
  border: 1px solid #E3E8F0;
  border-radius: var(--home-radius-md);
  background: var(--home-ash);
  overflow: hidden;
  transition: border-color 0.28s ease;
}

.page-home .home-collapse:hover {
  border-color: rgba(255, 107, 53, 0.4);
}

.page-home .home-collapse__bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.6);
}

.page-home .home-collapse__name {
  font-family: var(--home-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--home-navy);
}

.page-home .home-collapse__count {
  font-family: var(--home-font-mono);
  font-size: 12px;
  color: var(--home-slate);
  background: var(--home-white);
  border: 1px solid #E3E8F0;
  border-radius: var(--home-radius-pill);
  padding: 4px 10px;
}

.page-home .home-collapse__toggle {
  font-family: var(--home-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--home-slate);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--home-radius-pill);
  padding: 6px 12px;
  cursor: pointer;
  margin-left: auto;
  transition: color 0.28s ease, border-color 0.28s ease;
}

.page-home .home-collapse__toggle:hover {
  color: var(--home-orange);
  border-color: rgba(255, 107, 53, 0.4);
}

.page-home .home-collapse[data-open="false"] .home-collapse__body {
  display: none;
}

.page-home .home-collapse__body {
  padding: 4px 18px 14px;
}

.page-home .home-mx-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 2px;
  border-bottom: 1px solid #E3E8F0;
}

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

.page-home .home-mx-row__time {
  font-family: var(--home-font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--home-orange);
  min-width: 52px;
}

.page-home .home-mx-row__club {
  font-size: 15px;
  font-weight: 600;
  color: var(--home-navy);
}

.page-home .home-mx-row__vs {
  font-family: var(--home-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--home-slate);
}

.page-home .home-mx-row__status {
  margin-left: auto;
  font-size: 12px;
  color: var(--home-slate);
  background: var(--home-white);
  border: 1px solid #E3E8F0;
  border-radius: var(--home-radius-pill);
  padding: 4px 10px;
  white-space: nowrap;
}

/* ============ 阵容与伤停 ============ */

.page-home .home-squads {
  background: linear-gradient(140deg, var(--home-navy) 0%, var(--home-navy-deep) 78%);
  color: var(--home-white);
}

.page-home .home-squad-grid {
  max-width: var(--site-width, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .home-squad-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--home-radius-lg);
  padding: 20px;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.page-home .home-squad-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.5);
}

.page-home .home-squad-card__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 16px;
}

.page-home .home-squad-card__sync {
  font-family: var(--home-font-mono);
  font-size: 12px;
  color: var(--home-green);
  background: rgba(42, 157, 143, 0.18);
  border: 1px solid rgba(42, 157, 143, 0.4);
  border-radius: var(--home-radius-pill);
  padding: 4px 12px;
}

.page-home .home-squad-card__duel {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.page-home .home-squad-team {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--home-radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-squad-team--away {
  background: rgba(255, 255, 255, 0.03);
}

.page-home .home-squad-team__tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.page-home .home-squad-team__name {
  font-family: var(--home-font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
}

.page-home .home-squad-team__form {
  font-family: var(--home-font-mono);
  font-size: 14px;
  color: var(--home-orange);
}

.page-home .home-squad-team__lines {
  list-style: none;
  margin: 8px 0 4px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.page-home .home-squad-team__lines li {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.page-home .home-squad-team__lines span {
  font-family: var(--home-font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--home-silver);
}

.page-home .home-squad-team__lines b {
  font-family: var(--home-font-display);
  font-size: 18px;
  color: var(--home-white);
}

.page-home .home-squad-team__injury {
  font-size: 12px;
  color: var(--home-yellow);
  background: rgba(233, 196, 106, 0.1);
  border-radius: 10px;
  padding: 8px 10px;
  margin: 8px 0 0;
}

.page-home .home-squad-card__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-home .home-squad-card__vs span {
  font-family: var(--home-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--home-orange);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.08);
}

.page-home .home-squads__note {
  max-width: var(--site-width, 1240px);
  margin: 28px auto 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* ============ 赛后复盘 ============ */

.page-home .home-reviews__wrap {
  max-width: var(--site-width, 1240px);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .home-reviews__timeline {
  margin: 0;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--home-navy-offset), var(--home-navy));
  box-shadow: var(--home-shadow);
}

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

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

.page-home .home-review-item {
  display: flex;
  gap: 16px;
  background: var(--home-white);
  border: 1px solid #E3E8F0;
  border-radius: var(--home-radius-md);
  padding: 18px 20px;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.page-home .home-review-item:hover {
  transform: translateX(6px);
  border-color: rgba(255, 107, 53, 0.45);
}

.page-home .home-review-item__no {
  font-family: var(--home-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--home-orange);
  background: rgba(255, 107, 53, 0.12);
  border-radius: var(--home-radius-pill);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-home .home-review-item__tag {
  font-family: var(--home-font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--home-slate);
  text-transform: uppercase;
  margin: 0 0 4px;
}

.page-home .home-review-item h3 {
  font-family: var(--home-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--home-navy);
  margin: 0 0 6px;
  line-height: 1.3;
}

.page-home .home-review-item__excerpt {
  font-size: 14px;
  color: var(--home-slate);
  line-height: 1.7;
  margin: 0;
}

.page-home .home-reviews__more {
  max-width: var(--site-width, 1240px);
  margin: 0 auto;
  text-align: center;
}

/* ============ 信任与联系 ============ */

.page-home .home-trust {
  background: linear-gradient(140deg, var(--home-navy) 0%, var(--home-navy-deep) 82%);
  color: var(--home-white);
}

.page-home .home-trust__grid {
  max-width: var(--site-width, 1240px);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .home-trust-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--home-radius-lg);
  padding: 22px;
}

.page-home .home-trust-card__label {
  font-family: var(--home-font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--home-silver);
  text-transform: uppercase;
  margin: 0 0 10px;
}

.page-home .home-trust-card__value {
  font-family: var(--home-font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--home-orange);
  word-break: break-all;
  margin: 0 0 16px;
  line-height: 1.25;
}

.page-home .home-trust-card__note {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.page-home .home-trust-card h3 {
  font-family: var(--home-font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}

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

.page-home .home-trust-card__list li {
  display: flex;
  gap: 10px;
  flex-direction: column;
  font-size: 14px;
}

.page-home .home-trust-card__list span {
  font-family: var(--home-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--home-silver);
  text-transform: uppercase;
}

.page-home .home-trust-card__list b {
  color: var(--home-white);
  font-weight: 600;
  word-break: break-all;
}

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

.page-home .home-trust-card__badges li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--home-radius-pill);
  padding: 6px 12px;
}

.page-home .home-trust__links {
  max-width: var(--site-width, 1240px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.page-home .home-trust__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--home-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--home-radius-pill);
  padding: 10px 22px;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

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

/* ============ 中等宽度 ============ */

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

  .page-home .home-collapse-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-home .home-trust-card--domain {
    grid-column: span 2;
  }

  .page-home .home-squad-card__duel {
    flex-direction: row;
  }
}

/* ============ 桌面宽度 ============ */

@media (min-width: 980px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 56px;
  }

  .page-home .home-hero {
    padding: 72px 24px 92px;
  }

  .page-home .home-hero__title {
    font-size: 56px;
  }

  .page-home .home-league-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .page-home .home-collapse-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .page-home .home-reviews__wrap {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: stretch;
  }

  .page-home .home-reviews__timeline {
    margin: 0;
  }

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

  .page-home .home-trust-card--domain {
    grid-column: span 1;
  }

  .page-home .home-section-head--split {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
  }

  .page-home .home-schedule__progress {
    margin: 0;
    order: 2;
  }

  .page-home .home-section-head__text {
    order: 1;
  }

  .page-home .home-mx-row {
    padding: 12px 8px;
  }
}

/* ============ 大屏微调 ============ */

@media (min-width: 1240px) {
  .page-home .home-squad-team__name {
    font-size: 26px;
  }

  .page-home .home-featurematch__name {
    font-size: 28px;
  }

  .page-home .home-hero__lead {
    font-size: 17px;
  }
}
