.page-home {
  --home-hero-title-size: clamp(3rem, 7vw, 5.5rem);
  --home-gold-glow: rgba(255, 215, 0, 0.18);
  --home-orange-glow: rgba(255, 107, 53, 0.14);
  --home-card-bg: rgba(255, 255, 255, 0.06);
  --home-border-light: rgba(255, 255, 255, 0.12);
  --home-border-dark: rgba(11, 30, 58, 0.1);
  --home-radius-lg: 18px;
  --home-radius-md: 12px;
  --home-square: 24px;
}

.page-home .container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ===== 首屏 ===== */
.page-home .home-hero {
  position: relative;
  background: linear-gradient(135deg, #0B1E3A 0%, #1A2D5A 60%, #15305A 100%);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 72px;
}

.page-home .home-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  z-index: 0;
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 30, 58, 0.92) 0%, rgba(11, 30, 58, 0.42) 45%, rgba(26, 45, 90, 0.55) 100%),
    radial-gradient(circle at 70% 30%, var(--home-gold-glow), transparent 55%),
    radial-gradient(circle at 20% 80%, var(--home-orange-glow), transparent 50%);
}

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

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.page-home .home-hero__crumb-override {
  margin-bottom: 16px;
}

.page-home .home-hero__copy {
  max-width: 720px;
}

.page-home .home-hero__title {
  font-family: var(--font-disp);
  font-size: var(--home-hero-title-size);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 12px 0 16px;
  text-transform: uppercase;
}

.page-home .home-hero__ver {
  display: inline-block;
  background: linear-gradient(120deg, var(--gold) 20%, var(--orange) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-left: 0.12em;
}

.page-home .home-hero__lead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(244, 246, 250, 0.88);
  max-width: 560px;
  margin: 0 0 28px;
}

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

.page-home .home-hero__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  padding-left: 32px;
}

.page-home .home-hero__collage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 72%;
  transform: translateY(-50%) skewY(-12deg);
  background: linear-gradient(180deg, var(--gold), var(--orange));
  border-radius: 2px;
  opacity: 0.8;
}

.page-home .home-hero__stat {
  padding: 22px 18px;
  border-radius: var(--home-radius-md);
  background: var(--home-card-bg);
  border: 1px solid var(--home-border-light);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-hero__stat--speed {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 107, 53, 0.08));
  border-color: rgba(255, 215, 0, 0.3);
}

.page-home .home-hero__stat--rounds {
  grid-column: 1 / 2;
}

.page-home .home-hero__stat--report {
  grid-column: 2 / 3;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.page-home .home-hero__stat-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(244, 246, 250, 0.75);
}

.page-home .home-hero__stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold);
}

.page-home .home-hero__stat--speed .home-hero__stat-value {
  font-size: 2.8rem;
  color: var(--white);
}

.page-home .home-hero__stat--report .home-hero__stat-value {
  color: var(--orange);
}

.page-home .home-hero__badge {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
}

.page-home .skew-accent {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  transform: skewX(-12deg);
  border-radius: 2px;
}

.page-home .skew-accent > span {
  display: inline-block;
  transform: skewX(12deg);
}

/* ===== 版本亮点 ===== */
.page-home .home-highlights {
  padding: 88px 0 80px;
  background: var(--bg-mist);
  color: var(--ink);
}

.page-home .section-title {
  margin-bottom: 40px;
}

.page-home .section-title__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}

.page-home .section-title__main {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.page-home .home-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.page-home .home-highlights__visual .img-frame {
  margin: 0;
}

.page-home .img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--home-radius-lg);
  background: linear-gradient(145deg, rgba(11, 30, 58, 0.06), rgba(255, 215, 0, 0.05));
}

.page-home .img-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.page-home .img-frame--4x3 {
  aspect-ratio: 4 / 3;
}

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

.page-home .home-highlight-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--home-border-dark);
  border-radius: var(--home-radius-md);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.page-home .home-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 30, 58, 0.08);
}

.page-home .home-highlight-card__num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-deep);
  background: rgba(255, 215, 0, 0.12);
  border-radius: 8px;
  text-align: center;
  padding: 6px 0;
  align-self: start;
}

.page-home .home-highlight-card__title {
  font-family: var(--font-disp);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--ink);
}

.page-home .home-highlight-card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ===== 赛事轮次安排 ===== */
.page-home .home-rounds {
  position: relative;
  padding: 88px 0 84px;
  background: linear-gradient(160deg, #0B1E3A 0%, #12264A 55%, #1A2D5A 100%);
  color: var(--white);
  overflow: hidden;
}

.page-home .home-rounds::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--home-gold-glow), transparent 65%);
  pointer-events: none;
}

.page-home .home-rounds::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--home-orange-glow), transparent 65%);
  pointer-events: none;
}

.page-home .home-rounds__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.page-home .section-title--light .section-title__main {
  color: var(--white);
}

.page-home .home-rounds__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}

.page-home .home-rounds__notice {
  padding: 22px 24px;
  border-radius: var(--home-radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--home-border-light);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.page-home .tag-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.page-home .tag-pill--orange {
  background: rgba(255, 107, 53, 0.18);
  color: #FFB49A;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.page-home .home-rounds__notice-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(244, 246, 250, 0.92);
}

.page-home .home-rounds__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page-home .data-chip {
  padding: 18px 14px;
  border-radius: var(--home-radius-md);
  background: var(--home-card-bg);
  border: 1px solid var(--home-border-light);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .data-chip__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(244, 246, 250, 0.68);
}

.page-home .data-chip__value {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.page-home .home-rounds__guide {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(244, 246, 250, 0.85);
  margin: 0;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}

/* ===== 红黄牌记录 ===== */
.page-home .home-cards {
  position: relative;
  padding: 88px 0 84px;
  background: var(--bg-mist);
  overflow: hidden;
}

.page-home .home-cards__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  z-index: 0;
}

.page-home .home-cards__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(244, 246, 250, 0.92) 0%, rgba(244, 246, 250, 0.55) 55%, var(--bg-mist) 100%);
}

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

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

.page-home .home-cards__main {
  max-width: 720px;
}

.page-home .home-cards__lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 28px;
}

.page-home .home-cards__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.page-home .home-cards__stat-item {
  padding: 22px 18px;
  border-radius: var(--home-radius-md);
  background: var(--white);
  border: 1px solid var(--home-border-dark);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform var(--t-fast) var(--ease);
}

.page-home .home-cards__stat-item:hover {
  transform: translateY(-3px);
}

.page-home .home-cards__stat-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--muted);
}

.page-home .home-cards__stat-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}

.page-home .home-cards__stat-item:nth-child(2) .home-cards__stat-num {
  color: var(--orange);
}

.page-home .home-cards__stat-item:nth-child(3) .home-cards__stat-num {
  color: var(--gold-deep);
}

.page-home .home-cards__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== 快速访问与收藏 ===== */
.page-home .home-favorites {
  padding: 88px 0 84px;
  background: var(--white);
  color: var(--ink);
}

.page-home .home-favorites__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.page-home .home-favorites__copy {
  max-width: 600px;
}

.page-home .home-favorites__lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 28px;
}

.page-home .spec-sheet {
  margin-bottom: 32px;
  border: 1px solid var(--home-border-dark);
  border-radius: var(--home-radius-md);
  overflow: hidden;
}

.page-home .spec-row {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-mist);
}

.page-home .spec-row + .spec-row {
  border-top: 1px solid var(--home-border-dark);
}

.page-home .spec-row__key {
  flex: 0 0 90px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

.page-home .spec-row__val {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

.page-home .home-favorites__steps {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(145deg, #0B1E3A 0%, #1A2D5A 100%);
  border-radius: var(--home-radius-lg);
  color: var(--white);
}

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

.page-home .home-favorites__steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  counter-reset: fav-step;
}

.page-home .home-favorites__step-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.page-home .home-favorites__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.16);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .home-favorites__step-item p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 4px 0 0;
  color: rgba(244, 246, 250, 0.88);
}

/* ===== 新访客指南 ===== */
.page-home .home-guide {
  padding: 88px 0 84px;
  background: linear-gradient(160deg, #0B1E3A 0%, #142B52 100%);
  color: var(--white);
}

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

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

.page-home .home-guide__visual .img-frame {
  margin: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.page-home .home-guide__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(244, 246, 250, 0.92);
  margin: 0 0 28px;
}

.page-home .home-guide__tips {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.page-home .home-guide__tip {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--home-border-light);
  border-radius: var(--home-radius-md);
}

.page-home .home-guide__tip-icon {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.16);
  border-radius: 6px;
  text-align: center;
  padding: 6px 0;
}

.page-home .home-guide__tip-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 2px 0 0;
  color: rgba(244, 246, 250, 0.85);
}

/* ===== 品牌数据带 ===== */
.page-home .home-trust {
  padding: 48px 0;
  background: var(--navy);
  border-top: 1px solid var(--home-border-light);
}

.page-home .home-trust__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-home .home-trust .data-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  text-align: center;
}

.page-home .home-trust .data-chip__value {
  font-size: 1.1rem;
}

/* ===== 响应式 ===== */
@media (max-width: 640px) {
  .page-home .home-hero {
    padding: 72px 0 56px;
  }

  .page-home .home-hero__bg {
    width: 100%;
  }

  .page-home .home-hero__bg::after {
    background:
      linear-gradient(180deg, rgba(11, 30, 58, 0.92) 0%, rgba(11, 30, 58, 0.7) 60%, rgba(11, 30, 58, 0.85) 100%),
      radial-gradient(circle at 20% 80%, var(--home-gold-glow), transparent 50%);
  }

  .page-home .home-hero__collage {
    padding-left: 0;
    padding-top: 20px;
  }

  .page-home .home-hero__collage::before {
    top: 0;
    left: 18px;
    width: 60%;
    height: 3px;
    transform: skewX(-18deg);
  }

  .page-home .home-hero__stat-value {
    font-size: 1.6rem;
  }

  .page-home .home-hero__stat--speed .home-hero__stat-value {
    font-size: 2rem;
  }

  .page-home .home-highlights,
  .page-home .home-rounds,
  .page-home .home-cards,
  .page-home .home-favorites,
  .page-home .home-guide {
    padding: 64px 0 60px;
  }

  .page-home .home-rounds__meta,
  .page-home .home-cards__stats {
    grid-template-columns: 1fr;
  }

  .page-home .home-trust__inner {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .page-home .home-hightlight-card {
    grid-template-columns: 40px 1fr;
    padding: 16px;
  }

  .page-home .home-highlight-card__num {
    font-size: 1.25rem;
  }

  .page-home .home-cards__bg {
    width: 100%;
    opacity: 0.12;
  }

  .page-home .home-cards__bg::after {
    background: var(--bg-mist);
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .page-home .home-hero__collage {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-highlights__grid,
  .page-home .home-guide__grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-favorites__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (min-width: 1025px) {
  .page-home .home-hero {
    padding: 120px 0 96px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: 1fr 0.85fr;
    gap: 24px;
  }

  .page-home .home-hero__collage {
    grid-template-columns: 1fr 1fr;
    padding-left: 48px;
  }

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

  .page-home .home-rounds__inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }

  .page-home .home-favorites__inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 64px;
    align-items: center;
  }

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

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