/* ===== 页面级设计变量 ===== */
.page-home {
  --home-orange: var(--phn-orange);
  --home-orange-dark: var(--phn-orange-dark);
  --home-navy: var(--phn-navy);
  --home-cream: var(--phn-cream);
  --home-stone: var(--phn-stone);
  --home-ink: var(--phn-ink);
  --home-moss: var(--phn-moss);
  --home-gold: var(--phn-gold);
  --home-gray: var(--phn-gray);
  --home-font-heading: var(--phn-font-heading);
  --home-font-body: var(--phn-font-body);
  --home-font-mono: var(--phn-font-mono);
  --home-radius: var(--phn-radius);
  --home-container: var(--phn-container);
  background: var(--home-cream);
  overflow-x: hidden;
}

/* ===== 全局区块节奏 ===== */
.page-home .section {
  padding: 64px 0;
  position: relative;
}

.page-home .container {
  max-width: min(var(--home-container), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-home .grid {
  display: grid;
  gap: 24px;
}

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

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

/* ===== 区块标题体系 ===== */
.page-home .section-heading {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .section-heading--center {
  text-align: center;
  align-items: center;
}

.page-home .section-title-index {
  font-family: var(--home-font-mono);
  font-size: 0.9rem;
  color: var(--home-orange);
  letter-spacing: 0.15em;
  font-weight: 700;
  display: inline-block;
  background: rgba(242, 92, 5, 0.09);
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
}

.page-home .section-title-index--light {
  background: rgba(247, 242, 233, 0.12);
  color: var(--home-cream);
}

.page-home .section-title {
  font-family: var(--home-font-heading);
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--home-ink);
  margin: 0;
  text-transform: uppercase;
}

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

.page-home .lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--home-gray);
  margin: 0;
  max-width: 640px;
}

.page-home .section-lead--light {
  color: rgba(247, 242, 233, 0.85);
}

/* ===== 首页首屏：海报式分层 ===== */
.page-home .hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--home-navy);
  overflow: hidden;
  padding: 120px 0 80px;
}

.page-home .hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  z-index: 1;
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(27, 29, 29, 0.95) 0%, rgba(43, 58, 66, 0.78) 46%, rgba(242, 92, 5, 0.32) 100%);
  z-index: 2;
}

.page-home .speed-line {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0.16;
}

.page-home .speed-line--one {
  top: 18%;
  right: -10%;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--home-cream));
  transform: rotate(-12deg);
}

.page-home .speed-line--two {
  top: 52%;
  right: -12%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--home-orange), transparent);
  transform: rotate(7deg);
}

.page-home .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-home .hero-copy {
  max-width: 100%;
}

.page-home .hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.page-home .hero-title {
  font-family: var(--home-font-heading);
  font-size: 3rem;
  line-height: 1.05;
  color: var(--home-cream);
  font-weight: 700;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-home .hero-title span {
  color: var(--home-orange);
  font-size: 2rem;
  display: block;
  margin-top: 4px;
}

.page-home .hero-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(247, 242, 233, 0.9);
  max-width: 560px;
  margin-bottom: 32px;
}

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

.page-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--home-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--home-radius);
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  line-height: 1;
}

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

.page-home .btn-primary:hover {
  background: var(--home-orange-dark);
  border-color: var(--home-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 92, 5, 0.35);
}

.page-home .hero-link {
  background: transparent;
  color: var(--home-cream);
  border-color: rgba(247, 242, 233, 0.4);
}

.page-home .hero-link:hover {
  border-color: var(--home-cream);
  background: rgba(247, 242, 233, 0.1);
}

/* ===== 首屏数据卡堆叠 ===== */
.page-home .hero-data-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.page-home .board-panel {
  background: rgba(247, 242, 233, 0.96);
  border-radius: var(--home-radius);
  padding: 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.page-home .hero-score-card {
  max-width: 100%;
}

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

.page-home .score-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-orange);
  box-shadow: 0 0 0 0 rgba(242, 92, 5, 0.6);
  animation: home-pulse 2s infinite;
}

@keyframes home-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 92, 5, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(242, 92, 5, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 92, 5, 0);
  }
}

.page-home .score-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.page-home .score-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 4px;
}

.page-home .score-team--away {
  align-items: center;
}

.page-home .score-team-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--home-ink);
  text-align: center;
}

.page-home .score-team-short {
  font-family: var(--home-font-mono);
  font-size: 0.75rem;
  color: var(--home-gray);
}

.page-home .score-middle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--home-font-mono);
}

.page-home .score-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--home-ink);
}

.page-home .score-colon {
  font-size: 1.8rem;
  color: var(--home-orange);
}

.page-home .score-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  border-top: 1px solid rgba(26, 29, 28, 0.1);
  padding-top: 16px;
}

.page-home .stat-cell {
  text-align: center;
}

.page-home .stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--home-gray);
  margin-bottom: 4px;
  font-family: var(--home-font-mono);
  letter-spacing: 0.06em;
}

.page-home .stat-value {
  font-family: var(--home-font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--home-navy);
}

.page-home .hero-floating-card {
  padding: 20px 24px;
  max-width: 100%;
  border-radius: var(--home-radius);
}

.page-home .board-panel--dark {
  background: var(--home-navy);
  color: var(--home-cream);
  border-radius: var(--home-radius);
  padding: 24px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.page-home .floating-card-index {
  margin-bottom: 8px;
}

.page-home .floating-card-text {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--home-cream);
}

.page-home .floating-card-link {
  color: var(--home-orange);
  text-decoration: none;
  font-family: var(--home-font-mono);
  font-size: 0.85rem;
  font-weight: 700;
}

.page-home .floating-card-link:hover {
  color: var(--home-gold);
}

.page-home .hero-bottom-meta {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 5;
}

.page-home .hero-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.page-home .hero-meta-line {
  font-size: 0.8rem;
  color: rgba(247, 242, 233, 0.6);
  font-family: var(--home-font-mono);
  letter-spacing: 0.04em;
}

/* ===== 区块 02：实时战报 ===== */
.page-home .live-report-section {
  background: var(--home-cream);
}

.page-home .live-report-grid {
  align-items: center;
}

.page-home .live-viz {
  padding: 12px;
  position: relative;
  background: #fff;
}

.page-home .live-viz img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--home-radius) - 2px);
  display: block;
  object-fit: cover;
}

.page-home .viz-caption {
  padding: 10px 4px 4px;
}

.page-home .live-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(110, 110, 106, 0.25);
}

.page-home .feature-item:last-of-type {
  border-bottom: none;
}

.page-home .feature-index {
  font-family: var(--home-font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--home-orange);
  background: rgba(242, 92, 5, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.page-home .feature-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--home-ink);
}

.page-home .feature-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--home-gray);
  margin: 0;
}

.page-home .btn-outline {
  background: transparent;
  color: var(--home-orange-dark);
  border-color: var(--home-orange);
  align-self: flex-start;
}

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

/* ===== 区块 03：V3 板块 ===== */
.page-home .v3-section {
  background: var(--home-navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-home .speed-line--three {
  top: 30%;
  left: -10%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(242, 92, 5, 0.5), transparent);
  transform: rotate(14deg);
  opacity: 0.3;
}

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

.page-home .v3-content {
  color: var(--home-cream);
}

.page-home .v3-content .section-title {
  margin-bottom: 12px;
}

.page-home .v3-point-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .v3-point-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: rgba(247, 242, 233, 0.85);
}

.page-home .v3-chip {
  background: rgba(122, 139, 111, 0.25);
  color: var(--home-cream);
  font-family: var(--home-font-mono);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.page-home .v3-chip i {
  font-style: normal;
  color: var(--home-gold);
}

.page-home .btn-gold-outline {
  background: transparent;
  color: var(--home-gold);
  border-color: rgba(212, 175, 55, 0.65);
}

.page-home .btn-gold-outline:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--home-gold);
}

.page-home .v3-visual {
  position: relative;
  padding: 16px;
  overflow: hidden;
}

.page-home .v3-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--home-radius) - 2px);
  object-fit: cover;
}

.page-home .v3-version-tag {
  position: absolute;
  top: 28px;
  left: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .v3-version-tag .data-chip {
  background: var(--home-orange);
  color: #fff;
  font-family: var(--home-font-mono);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.82rem;
}

.page-home .version-year {
  font-family: var(--home-font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--home-cream);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  line-height: 1;
}

.page-home .v3-tree {
  position: absolute;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(43, 58, 66, 0.85);
  padding: 16px;
  border-radius: var(--home-radius);
  backdrop-filter: blur(6px);
}

.page-home .tree-node {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
}

.page-home .tree-node .data-chip {
  background: rgba(247, 242, 233, 0.14);
  color: var(--home-cream);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.72rem;
}

.page-home .tree-node em {
  font-style: normal;
  font-family: var(--home-font-mono);
  font-size: 0.65rem;
  color: rgba(247, 242, 233, 0.5);
}

.page-home .tree-node--highlight .data-chip {
  background: var(--home-gold);
  color: var(--home-navy);
}

/* ===== 区块 04：会员权益 ===== */
.page-home .vip-section {
  background: var(--home-cream);
}

.page-home .vip-card-grid {
  margin-bottom: 32px;
}

.page-home .vip-card {
  background: #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .vip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 29, 28, 0.1);
}

.page-home .vip-card--gold {
  background: linear-gradient(145deg, #fff 80%, rgba(212, 175, 55, 0.12));
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.page-home .vip-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(242, 92, 5, 0.1);
  color: var(--home-orange);
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-home .vip-card--gold .vip-card-icon {
  background: rgba(212, 175, 55, 0.15);
  color: var(--home-gold);
}

.page-home .vip-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--home-ink);
  margin: 0 0 8px;
}

.page-home .vip-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--home-gray);
  margin-bottom: 16px;
}

.page-home .vip-card .tag {
  display: inline-block;
  background: var(--home-moss);
  color: #fff;
  font-family: var(--home-font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.page-home .vip-download-banner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 32px;
}

.page-home .vip-banner-copy {
  flex: 1;
}

.page-home .vip-banner-copy .data-chip {
  background: rgba(247, 242, 233, 0.12);
  color: var(--home-cream);
  margin-bottom: 12px;
}

.page-home .vip-banner-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(247, 242, 233, 0.88);
  margin: 0;
}

/* ===== 区块 05：赛事回访 ===== */
.page-home .revisit-section {
  background: var(--home-stone);
}

.page-home .revisit-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.page-home .revisit-visual {
  position: relative;
}

.page-home .revisit-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--home-radius);
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(26, 29, 28, 0.18);
}

.page-home .revisit-time-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--home-navy);
  color: var(--home-cream);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.page-home .time-badge-num {
  font-family: var(--home-font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--home-orange);
  line-height: 1;
}

.page-home .time-badge-unit {
  font-size: 0.88rem;
  color: var(--home-cream);
  line-height: 1.5;
  font-weight: 600;
}

.page-home .revisit-content .section-title-index {
  margin-bottom: 12px;
}

.page-home .revisit-content .section-title {
  margin-bottom: 12px;
}

.page-home .revisit-steps {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .revisit-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.page-home .step-num {
  background: var(--home-navy);
  color: var(--home-cream);
  font-family: var(--home-font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.page-home .revisit-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--home-gray);
}

.page-home .revisit-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-home .stat-pill {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(26, 29, 28, 0.08);
  font-size: 0.8rem;
  color: var(--home-gray);
}

.page-home .stat-pill-num {
  font-family: var(--home-font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--home-orange);
}

/* ===== 区块：信任数据 ===== */
.page-home .trust-section {
  background: var(--home-cream);
}

.page-home .trust-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
}

.page-home .trust-copy h2 {
  font-family: var(--home-font-heading);
  font-size: 1.6rem;
  color: var(--home-cream);
  margin: 12px 0 0;
}

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

.page-home .trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .trust-num {
  font-family: var(--home-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--home-orange);
  line-height: 1;
}

.page-home .trust-item span:last-child {
  font-size: 0.82rem;
  color: rgba(247, 242, 233, 0.65);
}

/* ===== 区块：导航门 ===== */
.page-home .nav-gate-section {
  background: var(--home-navy);
}

.page-home .nav-gate-section .section-heading--center {
  color: var(--home-cream);
}

.page-home .nav-gate-section .lead {
  color: rgba(247, 242, 233, 0.7);
}

.page-home .gate-grid {
  margin-top: 32px;
}

.page-home .gate-card {
  background: rgba(247, 242, 233, 0.06);
  color: var(--home-cream);
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.page-home .gate-card:hover {
  background: rgba(242, 92, 5, 0.18);
  transform: translateY(-4px);
}

.page-home .gate-card--accent {
  background: rgba(242, 92, 5, 0.14);
}

.page-home .gate-index {
  background: transparent;
  color: var(--home-orange);
  font-size: 0.78rem;
  padding: 0;
  margin-bottom: 6px;
  font-weight: 700;
}

.page-home .gate-card h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--home-cream);
}

.page-home .gate-card p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(247, 242, 233, 0.65);
  margin: 0;
  flex: 1;
}

.page-home .gate-arrow {
  font-size: 1.2rem;
  color: var(--home-orange);
  font-weight: 700;
  margin-top: 8px;
}

/* ===== 面包屑 ===== */
.page-home .breadcrumb {
  padding: 16px 24px;
  max-width: min(var(--home-container), calc(100% - 48px));
  margin: 0 auto;
  background: var(--home-cream);
}

.page-home .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
}

.page-home .breadcrumb-item {
  color: var(--home-gray);
  font-family: var(--home-font-mono);
}

.page-home .breadcrumb-item + .breadcrumb-item::before {
  content: "//";
  margin-right: 8px;
  color: var(--home-orange);
}

.page-home .breadcrumb-item a {
  color: var(--home-orange-dark);
  text-decoration: none;
}

.page-home .breadcrumb-item[aria-current="page"] {
  color: var(--home-ink);
  font-weight: 600;
}

/* ===== data-reveal 滚动显现 ===== */
.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: 0.1s;
}

.page-home [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.page-home [data-reveal-delay="100"].is-revealed {
  transition-delay: 0.1s;
}

.page-home [data-reveal-delay="150"].is-revealed {
  transition-delay: 0.15s;
}

.page-home [data-reveal-delay="200"].is-revealed {
  transition-delay: 0.2s;
}

.page-home [data-reveal-delay="250"].is-revealed {
  transition-delay: 0.25s;
}

/* ===== 桌面端适配 ===== */
@media (min-width: 768px) {
  .page-home .section {
    padding: 88px 0;
  }

  .page-home .grid-2 {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
  }

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

  .page-home .section-heading {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .page-home .section-heading--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-home .section-title-index {
    margin-top: 8px;
  }

  .page-home .section-title {
    font-size: 2.3rem;
  }

  .page-home .lead {
    font-size: 1.05rem;
  }

  .page-home .hero-section {
    min-height: 100vh;
    padding: 140px 0 90px;
  }

  .page-home .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .page-home .hero-copy {
    flex: 0 0 55%;
  }

  .page-home .hero-title {
    font-size: 4.6rem;
  }

  .page-home .hero-title span {
    font-size: 3rem;
  }

  .page-home .hero-lead {
    font-size: 1.15rem;
  }

  .page-home .hero-data-stack {
    flex: 0 0 38%;
  }

  .page-home .hero-score-card {
    max-width: 420px;
    margin-left: auto;
  }

  .page-home .hero-floating-card {
    max-width: 340px;
    margin-left: auto;
  }

  .page-home .score-stats {
    gap: 4px;
  }

  .page-home .score-num {
    font-size: 2.8rem;
  }

  .page-home .v3-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .page-home .v3-content {
    padding-left: 20px;
  }

  .page-home .vip-download-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .revisit-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
  }

  .page-home .trust-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .trust-list {
    grid-template-columns: repeat(4, auto);
    gap: 32px;
  }

  .page-home .trust-copy {
    flex-shrink: 0;
  }

  .page-home .breadcrumb {
    padding: 20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-home .score-live-dot {
    animation: none;
  }

  .page-home .btn,
  .page-home .vip-card,
  .page-home .gate-card {
    transition: none;
  }
}
