/* ===== 首页专属样式 · 限定在 .page-home 内 ===== */
.page-home {
  --home-heading-font: "Rajdhani", "PingFang SC", "Noto Sans SC", sans-serif;
  --home-body-font: "Inter", "PingFang SC", "Noto Sans SC", sans-serif;
  --home-deep: #0A2540;
  --home-deep-2: #0B3B6E;
  --home-orange: #FF5A00;
  --home-orange-light: #FFE8D9;
  --home-pale: #F9FAFB;
  --home-white: #FFFFFF;
  --home-graphite: #2D3748;
  --home-fog: #A0AEC0;
  --home-line: #E2E8F0;
  --home-teal: #00A3A3;
  --home-ease: 0.2s ease-out;
  --home-radius: 8px;
  --home-shadow-sm: 0 10px 24px rgba(10,37,64,0.08);
  --home-shadow-md: 0 18px 40px rgba(10,37,64,0.12);
  position: relative;
  overflow-x: hidden;
  font-family: var(--home-body-font);
}

.page-home .container {
  width: min(1320px, 100% - 48px);
  margin-inline: auto;
}

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

/* --- 面包屑 --- */
.page-home .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(249,250,251,0.7);
}

.page-home .breadcrumbs a {
  color: rgba(249,250,251,0.85);
  text-decoration: none;
  position: relative;
  transition: color var(--home-ease);
}

.page-home .breadcrumbs a:hover,
.page-home .breadcrumbs a:focus-visible {
  color: #fff;
}

.page-home .breadcrumbs span:last-child {
  color: var(--home-orange);
  font-weight: 500;
}

/* --- 通用章节标题 --- */
.page-home .section-kicker {
  margin: 0 0 10px;
  font-family: var(--home-heading-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--home-orange);
}

.page-home .section-title {
  margin: 0;
  font-family: var(--home-heading-font);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--home-deep);
  letter-spacing: 0.01em;
}

.page-home .section {
  padding: 72px 0;
}

/* --- Hero 品牌宣言 --- */
.page-home .hero {
  position: relative;
  background: linear-gradient(118deg, #06172B 0%, var(--home-deep) 52%, var(--home-deep-2) 100%);
  color: #fff;
  overflow: hidden;
  margin-top: 0;
  padding-top: 78px;
}

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

.page-home .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.42) contrast(1.15) brightness(0.8);
  transform: scale(1.02);
}

.page-home .hero-bg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,37,64,0.96) 12%, rgba(10,37,64,0.68) 48%, rgba(11,59,110,0.34) 100%),
    linear-gradient(180deg, rgba(10,37,64,0.74) 0%, rgba(10,37,64,0.2) 100%);
  z-index: 1;
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 96px;
}

.page-home .hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .hero-kicker {
  margin: 0 0 14px;
  font-family: var(--home-heading-font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--home-orange);
  background: linear-gradient(90deg, var(--home-orange), #FFB37E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  width: fit-content;
}

.page-home .page-title {
  margin: 0 0 20px;
  font-family: var(--home-heading-font);
  font-size: clamp(32px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 9em;
  color: #fff;
}

.page-home .hero-lead {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(249,250,251,0.88);
  max-width: 33em;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 0;
  font-family: var(--home-heading-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--home-ease);
  cursor: pointer;
}

.page-home .btn-cta {
  background: var(--home-orange);
  color: #fff;
  border-color: var(--home-orange);
}

.page-home .btn-cta:hover,
.page-home .btn-cta:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--home-orange);
}

.page-home .btn-ghost {
  background: transparent;
  border-color: rgba(249,250,251,0.6);
  color: #fff;
}

.page-home .btn-ghost:hover,
.page-home .btn-ghost:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--home-deep);
}

.page-home .hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.page-home .tag-green {
  background: rgba(0,163,163,0.15);
  color: #5FE0E0;
  border: 1px solid rgba(0,163,163,0.4);
}

.page-home .tag-orange {
  background: var(--home-orange-light);
  color: var(--home-orange);
}

.page-home .tag-navy {
  background: var(--home-deep);
  color: #fff;
}

.page-home .hero-meta-text {
  font-size: 13px;
  color: rgba(249,250,251,0.72);
}

/* --- 赛事日历预览面板 --- */
.page-home .hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page-home .match-panel {
  width: 100%;
  max-width: 520px;
  background: rgba(255,255,255,0.96);
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.26);
  border-left: 4px solid var(--home-orange);
  position: relative;
  transition: transform var(--home-ease), box-shadow var(--home-ease);
  backdrop-filter: blur(10px);
}

.page-home .match-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--home-deep);
  color: #fff;
  padding: 20px 22px 16px;
}

.page-home .panel-overline {
  margin: 0;
  font-family: var(--home-heading-font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-home .panel-date {
  margin: 3px 0 0;
  font-size: 12px;
  color: rgba(249,250,251,0.66);
}

.page-home .live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #5FE0E0;
  background: rgba(0,163,163,0.16);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,163,163,0.4);
}

.page-home .live-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--home-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,163,163,0.6);
  animation: home-pulse 2s ease-out infinite;
}

@keyframes home-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,163,163,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(0,163,163,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,163,163,0); }
}

.page-home .match-card-group {
  padding: 14px 14px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .match-card {
  background: var(--home-white);
  border: 1px solid var(--home-line);
  border-radius: 6px;
  padding: 12px 14px 10px;
  transition: all var(--home-ease);
  position: relative;
}

.page-home .match-card:hover {
  transform: translateY(-2px);
  border-left: 3px solid var(--home-orange);
  box-shadow: var(--home-shadow-sm);
}

.page-home .match-league {
  font-size: 12px;
  font-weight: 600;
  color: var(--home-fog);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}

.page-home .match-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.page-home .team-side {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  font-size: 14px;
  color: var(--home-graphite);
  min-width: 0;
}

.page-home .team-side strong {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--home-heading-font);
  font-size: 16px;
  letter-spacing: 0.01em;
}

.page-home .team-side:last-child {
  justify-content: flex-end;
  text-align: right;
}

.page-home .team-rank {
  font-size: 11px;
  color: var(--home-fog);
  background: var(--home-pale);
  border: 1px solid var(--home-line);
  border-radius: 4px;
  padding: 2px 5px;
  font-weight: 600;
  flex-shrink: 0;
}

.page-home .match-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.page-home .match-time {
  font-family: var(--home-heading-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--home-deep);
}

.page-home .vs-mark {
  font-size: 10px;
  color: var(--home-fog);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.page-home .match-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  border-top: 1px dashed var(--home-line);
  padding-top: 7px;
}

.page-home .match-minute {
  font-size: 12px;
  color: var(--home-teal);
  font-weight: 600;
}

.page-home .next-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--home-orange);
  background: var(--home-orange-light);
  border-radius: 4px;
  padding: 3px 8px;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--home-ease);
}

.page-home .match-card:hover .next-tag,
.page-home .match-card:focus-within .next-tag {
  opacity: 1;
  transform: translateY(0);
}

.page-home .text-link {
  color: var(--home-orange);
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  position: relative;
  display: inline-block;
}

.page-home .text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 0 100%;
  transition: transform var(--home-ease);
}

.page-home .text-link:hover::after,
.page-home .text-link:focus-visible::after {
  transform: scaleX(1);
}

.page-home .match-panel-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px 14px;
  border-top: 1px solid var(--home-line);
  font-size: 12px;
  color: var(--home-fog);
}

.page-home .match-panel-foot svg {
  width: 14px;
  height: 14px;
}

.page-home .btn-cta-nav {
  background: var(--home-orange);
  color: #fff;
  border: 2px solid var(--home-orange);
  min-height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

/* --- Hero 橙色斜切色带 --- */
.page-home .hero-accent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 10px;
  z-index: 4;
  background: var(--home-orange);
  clip-path: polygon(0 0, 8.6% 0, 14.2% 100%, 0 100%);
}

/* ======= 连续观赛路径 ======= */
.page-home .pathway-section {
  background: var(--home-pale);
  padding: 84px 0 96px;
  position: relative;
}

.page-home .pathway-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44%;
  height: 6px;
  background: var(--home-orange);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
  z-index: 1;
}

.page-home .section-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 52px;
}

.page-home .section-side-note {
  margin: 0;
  font-size: 14px;
  color: var(--home-fog);
  border-left: 3px solid var(--home-orange);
  padding-left: 12px;
  max-width: 240px;
  line-height: 1.6;
}

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

.page-home .pathway-card {
  background: var(--home-white);
  border-radius: var(--home-radius);
  padding: 26px 24px 22px;
  border: 1px solid var(--home-line);
  position: relative;
  transition: transform var(--home-ease), box-shadow var(--home-ease);
  overflow: hidden;
}

.page-home .pathway-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--home-orange);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--home-ease);
}

.page-home .pathway-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--home-shadow-sm);
}

.page-home .pathway-card:hover::before {
  transform: scaleY(1);
}

.page-home .pathway-card-2 {
  margin-left: 12px;
}

.page-home .pathway-card-3 {
  margin-left: 24px;
}

.page-home .pathway-num {
  font-family: var(--home-heading-font);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--home-line);
  position: absolute;
  top: 14px;
  right: 18px;
  letter-spacing: -0.03em;
  transition: color var(--home-ease);
}

.page-home .pathway-card:hover .pathway-num {
  color: var(--home-orange);
}

.page-home .pathway-card h3 {
  margin: 0 0 10px;
  font-family: var(--home-heading-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--home-deep);
}

.page-home .pathway-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--home-graphite);
  max-width: 30em;
}

.page-home .pathway-media {
  margin: 0;
  position: relative;
  border-radius: var(--home-radius);
  overflow: hidden;
}

.page-home .pathway-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(1) contrast(1.08);
  display: block;
}

.page-home .pathway-media figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  background: rgba(10,37,64,0.82);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* ======= 球队置顶说明 ======= */
.page-home .pin-section {
  background: var(--home-white);
  padding: 84px 0 96px;
}

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

.page-home .pin-copy {
  max-width: 560px;
}

.page-home .pin-copy h2 {
  margin-bottom: 16px;
}

.page-home .pin-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--home-graphite);
  margin: 0 0 18px;
}

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

.page-home .pin-list li {
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--home-graphite);
}

.page-home .pin-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 8px;
  height: 8px;
  background: var(--home-orange);
  transform: rotate(45deg);
}

.page-home .pin-note {
  font-size: 13px;
  color: var(--home-fog);
  border-left: 3px solid var(--home-line);
  padding-left: 12px;
  line-height: 1.7 !important;
}

.page-home .pin-action {
  margin-top: 24px;
}

.page-home .pin-preview {
  background: var(--home-pale);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: var(--home-shadow-sm);
  max-width: 560px;
  width: 100%;
}

.page-home .pin-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--home-deep);
  color: #fff;
  padding: 16px 20px;
  font-family: var(--home-heading-font);
  font-weight: 700;
  font-size: 16px;
}

.page-home .pin-team-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--home-line);
  transition: background var(--home-ease);
  cursor: pointer;
  background: #fff;
}

.page-home .pin-team-row:hover {
  background: #FFF7F2;
}

.page-home .pin-team-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-home .pin-team-row svg {
  color: #C4CBD6;
  transition: color var(--home-ease);
  flex-shrink: 0;
}

.page-home .pin-team-row:has(input:checked) svg {
  color: var(--home-orange);
}

.page-home .pin-team-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--home-graphite);
  min-width: 90px;
  font-family: var(--home-heading-font);
  font-size: 16px;
  letter-spacing: 0.02em;
}

.page-home .pin-team-next {
  flex: 1;
  font-size: 12px;
  color: var(--home-fog);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .pin-pill {
  font-size: 11px;
  font-weight: 700;
  color: var(--home-orange);
  background: var(--home-orange-light);
  border-radius: 999px;
  padding: 4px 10px;
  flex-shrink: 0;
}

.page-home .pin-pill-off {
  color: var(--home-fog);
  background: #EDF0F4;
}

.page-home .pin-preview-note {
  padding: 12px 18px;
  margin: 0;
  font-size: 12px;
  color: var(--home-fog);
  text-align: center;
  background: #fff;
}

/* ======= 数据刷新与版本透明 ======= */
.page-home .refresh-section {
  background: var(--home-pale);
  padding: 84px 0;
  position: relative;
}

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

.page-home .refresh-copy {
  max-width: 560px;
}

.page-home .refresh-copy h2 {
  margin-bottom: 14px;
}

.page-home .refresh-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--home-graphite);
  margin-bottom: 24px;
}

.page-home .refresh-feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 26px;
}

.page-home .refresh-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  padding: 16px 18px;
  transition: border-color var(--home-ease), box-shadow var(--home-ease);
}

.page-home .refresh-feature:hover {
  border-color: rgba(255,90,0,0.5);
  box-shadow: var(--home-shadow-sm);
}

.page-home .refresh-feature-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--home-orange-light);
  color: var(--home-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .refresh-feature h3 {
  margin: 0 0 4px;
  font-family: var(--home-heading-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--home-deep);
}

.page-home .refresh-feature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--home-fog);
}

.page-home .refresh-panel {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--home-radius);
  padding: 26px 22px;
  box-shadow: var(--home-shadow-md);
  backdrop-filter: blur(12px);
  max-width: 580px;
  width: 100%;
}

.page-home .refresh-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.page-home .refresh-panel-title {
  font-family: var(--home-heading-font);
  font-size: 19px;
  font-weight: 700;
  color: var(--home-deep);
}

.page-home .refresh-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--home-deep);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--home-ease);
}

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

.page-home .refresh-btn svg {
  animation: home-spin 3s linear infinite;
}

@keyframes home-spin {
  to { transform: rotate(360deg); }
}

.page-home .refresh-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 22px;
}

.page-home .refresh-stat {
  background: var(--home-deep);
  border-radius: 6px;
  padding: 12px 8px 10px;
  text-align: center;
}

.page-home .refresh-stat dt {
  font-size: 11px;
  color: rgba(249,250,251,0.6);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.page-home .refresh-stat dd {
  margin: 0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  animation: home-flicker 3.2s ease-in-out infinite;
}

.page-home .refresh-stat:first-child dd {
  color: #5FE0E0;
}

.page-home .refresh-stat:nth-child(2) dd {
  color: var(--home-orange);
}

.refresh-btn:active + .refresh-stats dd {
  animation: home-blink 0.6s ease;
}

@keyframes home-flicker {
  0%, 100% { opacity: 1; }
  42% { opacity: 0.92; }
  46% { opacity: 1; }
  82% { opacity: 0.95; }
  86% { opacity: 1; }
}

@keyframes home-blink {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

.page-home .refresh-timeline {
  border-top: 1px solid var(--home-line);
  padding-top: 18px;
  margin-bottom: 8px;
}

.page-home .refresh-timeline-title {
  margin: 0 0 10px;
  font-family: var(--home-heading-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--home-deep);
}

.page-home .refresh-timeline-list {
  list-style: none;
  margin: 0;
  padding-left: 4px;
}

.page-home .refresh-timeline-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  color: var(--home-graphite);
  padding: 5px 0;
  border-left: 2px solid var(--home-line);
  padding-left: 14px;
  position: relative;
  transition: border-color var(--home-ease);
}

.page-home .refresh-timeline-list li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 2px solid var(--home-line);
  border-radius: 50%;
  transition: all var(--home-ease);
}

.page-home .refresh-timeline-list li:hover {
  border-color: var(--home-orange);
}

.page-home .refresh-timeline-list li:hover::before {
  border-color: var(--home-orange);
  background: var(--home-orange);
}

.page-home .refresh-timeline-list time {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  color: var(--home-fog);
  flex-shrink: 0;
}

.page-home .refresh-version-link {
  margin-left: 4px;
}

/* ======= CTA 区域 ======= */
.page-home .cta-section {
  position: relative;
  background: var(--home-deep);
  padding: 0;
  overflow: hidden;
}

.page-home .cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(0.5) contrast(1.15);
}

.page-home .cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(10,37,64,0.97) 0%, rgba(10,37,64,0.88) 58%, rgba(11,59,110,0.4) 100%);
}

.page-home .cta-inner {
  position: relative;
  z-index: 1;
  padding-top: 88px;
  padding-bottom: 88px;
}

.page-home .cta-card {
  max-width: 620px;
  color: #fff;
}

.page-home .cta-card .section-kicker {
  color: var(--home-orange);
}

.page-home .cta-card .section-title {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(28px, 4.4vw, 46px);
}

.page-home .cta-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(249,250,251,0.86);
  margin-bottom: 24px;
}

.page-home .cta-feature-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.page-home .cta-feature-list li {
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: rgba(249,250,251,0.92);
}

.page-home .cta-feature-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 8px;
  height: 8px;
  background: var(--home-orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.page-home .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .btn-ghost-light {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.page-home .btn-ghost-light:hover {
  background: var(--home-orange);
  border-color: var(--home-orange);
  color: #fff;
}

.page-home .cta-note {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(249,250,251,0.58);
}

/* ======= 信任声明 ======= */
.page-home .trust-section {
  background: var(--home-pale);
  padding: 84px 0 72px;
}

.page-home .trust-heading {
  margin-bottom: 44px;
}

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

.page-home .trust-badge {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-line);
  padding: 22px 20px;
  transition: all var(--home-ease);
}

.page-home .trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--home-shadow-sm);
  border-color: rgba(255,90,0,0.3);
}

.page-home .trust-badge-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--home-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .trust-badge h3 {
  margin: 0 0 6px;
  font-family: var(--home-heading-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--home-deep);
}

.page-home .trust-badge p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--home-fog);
}

.page-home .trust-statement {
  margin: 44px 0 0;
  padding: 28px 32px;
  background: var(--home-deep);
  color: rgba(249,250,251,0.86);
  font-size: 15px;
  line-height: 1.9;
  border-radius: var(--home-radius);
  position: relative;
  overflow: hidden;
}

.page-home .trust-statement::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--home-orange);
}

/* ======= 响应式 ======= */
@media (max-width: 639px) {
  .page-home .container {
    width: calc(100% - 40px);
  }

  .page-home .hero-inner {
    padding-top: 36px;
    padding-bottom: 76px;
  }

  .page-home .page-title {
    font-size: 30px;
  }

  .page-home .hero-bg-veil {
    background: linear-gradient(180deg, rgba(10,37,64,0.94) 0%, rgba(10,37,64,0.78) 100%);
  }

  .page-home .hero-actions {
    flex-direction: column;
  }

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

  .page-home .match-card-group {
    padding-inline: 10px;
  }

  .page-home .match-card {
    padding-inline: 12px;
  }

  .page-home .pathway-card-2,
  .page-home .pathway-card-3 {
    margin-left: 0;
  }

  .page-home .refresh-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .page-home .refresh-stat {
    padding-inline: 4px;
  }

  .page-home .refresh-stat dd {
    font-size: 14px;
  }

  .page-home .refresh-timeline-list li {
    flex-wrap: wrap;
    gap: 4px 10px;
  }

  .page-home .cta-actions {
    flex-direction: column;
  }

  .page-home .cta-actions .btn {
    width: 100%;
  }

  .page-home .trust-statement {
    padding: 22px 18px;
  }
}

@media (min-width: 720px) {
  .page-home .pathway-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .page-home .pathway-card-1 {
    grid-column: 1 / 2;
  }

  .page-home .pathway-media {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .page-home .pathway-card-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    margin-left: 0;
  }

  .page-home .pathway-card-3 {
    grid-column: 1 / 3;
    margin-left: 0;
  }

  .page-home .pin-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }

  .page-home .refresh-layout {
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 60px;
  }

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

  .page-home .trust-statement {
    padding-inline: 56px;
  }
}

@media (min-width: 1080px) {
  .page-home .hero-inner {
    grid-template-columns: 4.2fr 5.8fr;
    gap: 48px;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 120px;
  }

  .page-home .pathway-grid {
    grid-template-columns: 1fr 0.9fr 1fr 1fr;
    align-items: stretch;
  }

  .page-home .pathway-card-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .page-home .pathway-media {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .page-home .pathway-card-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .page-home .pathway-card-3 {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
  }

  .page-home .pin-layout {
    gap: 80px;
  }

  .page-home .refresh-layout {
    gap: 80px;
  }

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