.page-home {
  --home-max: var(--max-w);
  --home-gap: 22px;
  --home-radius: 12px;
  --home-card: #16233A;
  --home-card-2: #1C2D4C;
  --home-divider: rgba(216, 203, 181, 0.14);
  --home-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  display: block;
  width: 100%;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

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

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

.page-home .home-section {
  position: relative;
  padding-block: clamp(56px, 8vw, 96px);
  scroll-margin-top: 120px;
}

.page-home .home-section + .home-section {
  border-top: 1px solid var(--home-divider);
}

.page-home .home-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(115deg, transparent 72%, rgba(198, 255, 0, 0.1) 73%, transparent 76%);
  pointer-events: none;
}

.page-home .home-kicker {
  margin: 0 0 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.page-home .home-title {
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.16;
  color: var(--c-text);
}

.page-home .home-sub {
  margin: 0 0 28px;
  max-width: 680px;
  color: var(--c-sand);
  font-size: 15px;
  line-height: 1.7;
}

.page-home .text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--c-neon);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-home .home-breadcrumb {
  display: flex;
  align-items: center;
  padding-top: 18px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-sand);
}

.page-home .crumb-sep {
  margin-inline: 8px;
  color: var(--c-accent);
}

.page-home .crumb-current {
  color: var(--c-accent);
}

/* ===== 入口拼贴 ===== */
.page-home .entry-section {
  background:
    radial-gradient(ellipse at 82% 2%, rgba(30, 90, 169, 0.28), transparent 52%),
    linear-gradient(180deg, rgba(15, 26, 44, 0.95), var(--c-bg));
  overflow: hidden;
}

.page-home .entry-head {
  max-width: 960px;
  margin-bottom: 28px;
}

.page-home .entry-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.page-home .entry-prefix {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--c-sand);
}

.page-home .entry-title {
  margin: 0;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 960px;
}

.page-home .entry-title::after {
  content: "";
  display: block;
  width: 132px;
  height: 8px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--c-accent) 0 60%, var(--c-neon) 60% 100%);
}

.page-home .entry-lead {
  margin: 22px 0 0;
  max-width: 800px;
  color: var(--c-sand);
  font-size: 16px;
  line-height: 1.75;
}

.page-home .home-index {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 30px;
  padding-bottom: 8px;
}

.page-home .index-chip {
  flex: none;
  padding: 8px 14px;
  border: 1px solid rgba(216, 203, 181, 0.24);
  border-radius: 999px;
  color: var(--c-sand);
  font-family: var(--f-mono);
  font-size: 12px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.page-home .index-chip:hover {
  border-color: var(--c-neon);
  color: var(--c-neon);
}

.page-home .entry-grid {
  display: grid;
  gap: var(--home-gap);
}

.page-home .hero-panel {
  display: grid;
  gap: var(--home-gap);
}

.page-home .hero-snap {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--home-card);
  box-shadow: var(--home-shadow);
}

.page-home .hero-snap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .heatmap-card {
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(22, 35, 58, 0.96), rgba(28, 45, 76, 0.9)),
    var(--home-card);
  box-shadow: var(--home-shadow);
}

.page-home .heatmap-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.page-home .hm-title {
  color: var(--c-accent);
  font-weight: 700;
  font-size: 15px;
}

.page-home .hm-badge {
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--c-neon);
  color: var(--c-ink);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
}

.page-home .hm-svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .hm-pitch {
  fill: rgba(216, 203, 181, 0.05);
  stroke: rgba(216, 203, 181, 0.2);
  stroke-width: 1.5;
}

.page-home .hm-lines {
  stroke: rgba(216, 203, 181, 0.24);
  stroke-width: 1.5;
}

.page-home .hm-cell {
  cursor: crosshair;
  stroke: rgba(15, 26, 44, 0.6);
  stroke-width: 2;
  transition: opacity 0.2s, stroke 0.2s;
}

.page-home .c-max {
  fill: var(--c-neon);
  opacity: 0.92;
}

.page-home .c-high {
  fill: var(--c-accent);
  opacity: 0.85;
}

.page-home .c-mid {
  fill: var(--c-teal);
  opacity: 0.7;
}

.page-home .c-low {
  fill: var(--c-blue);
  opacity: 0.48;
}

.page-home .hm-cell:hover {
  opacity: 1;
  stroke: var(--c-text);
  stroke-width: 2.5;
}

.page-home .hm-axis text {
  font-family: var(--f-mono);
  font-size: 13px;
  fill: var(--c-sand);
}

.page-home .hm-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--c-sand);
}

.page-home .hm-legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  border-radius: 2px;
  vertical-align: middle;
}

.page-home .legend-low {
  background: var(--c-blue);
  opacity: 0.6;
}

.page-home .legend-mid {
  background: var(--c-teal);
  opacity: 0.8;
}

.page-home .legend-high {
  background: var(--c-accent);
  opacity: 0.9;
}

.page-home .legend-max {
  background: var(--c-neon);
}

.page-home .hm-note {
  margin: 10px 0 0;
  color: var(--c-sand);
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.82;
}

.page-home .hero-side {
  display: flex;
  flex-direction: column;
  gap: var(--home-gap);
}

.page-home .hero-mood {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--home-shadow);
}

.page-home .hero-mood img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

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

.page-home .stat-item {
  position: relative;
  padding: 16px 14px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--home-card);
  border-left: 4px solid var(--c-accent);
}

.page-home .stat-item::after {
  content: "";
  position: absolute;
  right: -16px;
  top: -16px;
  width: 52px;
  height: 52px;
  background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(198, 255, 0, 0.14) 10px 12px);
}

.page-home .stat-num {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  color: var(--c-neon);
  line-height: 1;
}

.page-home .stat-unit {
  margin-left: 4px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--c-sand);
}

.page-home .stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--c-sand);
  letter-spacing: 0.04em;
}

.page-home .price-strip {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  border-left: 6px solid var(--c-accent);
  background: linear-gradient(115deg, var(--home-card) 0%, rgba(30, 90, 169, 0.28) 100%);
}

.page-home .price-strip::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 180px;
  height: 180px;
  background: repeating-linear-gradient(135deg, transparent 0 12px, rgba(198, 255, 0, 0.1) 12px 14px);
  pointer-events: none;
}

.page-home .price-strip-copy {
  position: relative;
  z-index: 1;
}

.page-home .strip-title {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.25;
  font-weight: 800;
}

.page-home .price-strip p {
  margin: 0;
  color: var(--c-sand);
  font-size: 15px;
  line-height: 1.65;
}

.page-home .price-strip .btn {
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

/* ===== 赛程中心 ===== */
.page-home .feature-section {
  background: linear-gradient(120deg, rgba(30, 90, 169, 0.18), transparent 46%), var(--c-bg);
}

.page-home .feature-head {
  margin-bottom: 30px;
}

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

.page-home .apps-copy h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.page-home .apps-copy p {
  color: var(--c-sand);
  line-height: 1.7;
  font-size: 15px;
}

.page-home .feature-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.page-home .feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--c-sand);
  line-height: 1.6;
  font-size: 15px;
}

.page-home .feature-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--c-accent);
}

.page-home .apps-visual {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--home-card);
  box-shadow: var(--home-shadow);
}

.page-home .timeline-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.page-home .tl-item {
  position: relative;
  flex: 1;
  min-width: 74px;
  padding: 92px 8px 12px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--c-bg);
  font-family: var(--f-mono);
}

.page-home .tl-bar {
  position: absolute;
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%);
  width: 26px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--c-accent), var(--c-blue));
}

.page-home .tl-highlight .tl-bar {
  background: linear-gradient(180deg, var(--c-neon), var(--c-accent));
}

.page-home .tl-accent .tl-bar {
  background: linear-gradient(180deg, var(--c-gold), var(--c-teal));
}

.page-home .tl-meta {
  display: block;
  font-size: 12px;
  color: var(--c-sand);
}

.page-home .tl-num {
  display: block;
  margin-top: 5px;
  font-weight: 700;
  font-size: 13px;
  color: var(--c-text);
}

.page-home .tl-highlight .tl-num {
  color: var(--c-neon);
}

.page-home .tl-accent .tl-num {
  color: var(--c-accent);
}

.page-home .visual-caption {
  margin: 14px 0 0;
  color: var(--c-sand);
  font-size: 13px;
  line-height: 1.6;
}

/* ===== 场馆信息 ===== */
.page-home .venue-section {
  background: linear-gradient(115deg, rgba(46, 139, 139, 0.16), transparent 55%), var(--c-bg);
}

.page-home .venue-head {
  margin-bottom: 30px;
}

.page-home .venue-grid {
  display: grid;
  gap: var(--home-gap);
}

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

.page-home .venue-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 26, 44, 0.52));
}

.page-home .venue-figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.page-home .venue-regions {
  background: var(--home-card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--home-shadow);
}

.page-home .venue-regions h3 {
  margin: 0 0 18px;
  font-size: 18px;
}

.page-home .region-list {
  display: grid;
  gap: 12px;
}

.page-home .region-row {
  display: grid;
  grid-template-columns: 56px 1fr 46px;
  align-items: center;
  gap: 10px;
}

.page-home .region-name {
  color: var(--c-text);
  font-size: 14px;
}

.page-home .region-track {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(216, 203, 181, 0.14);
}

.page-home .region-bar {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-accent));
}

.page-home .region-num {
  text-align: right;
  font-family: var(--f-mono);
  font-weight: 700;
  color: var(--c-neon);
}

.page-home .region-note {
  margin: 18px 0 0;
  color: var(--c-sand);
  font-size: 13px;
  line-height: 1.6;
}

/* ===== 订阅价格 ===== */
.page-home .pricing-section {
  background: radial-gradient(ellipse at 8% 42%, rgba(255, 107, 53, 0.16), transparent 46%), var(--c-bg);
  overflow: hidden;
}

.page-home .pricing-wrap {
  display: grid;
  gap: 30px;
}

.page-home .pricing-copy {
  max-width: 520px;
}

.page-home .pricing-visual {
  margin: 18px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--home-shadow);
}

.page-home .pricing-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

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

.page-home .plans-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--c-sand);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.page-home .flip-card {
  height: 360px;
  perspective: 1100px;
}

.page-home .flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.2, 0.6, 0.3, 1);
}

.page-home .flip-card:hover .flip-inner,
.page-home .flip-card:focus-within .flip-inner {
  transform: rotateY(180deg);
}

.page-home .flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--home-card);
  box-shadow: var(--home-shadow);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.page-home .flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--home-card) 0%, rgba(30, 90, 169, 0.48) 100%);
}

.page-home .plan-tag {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-accent);
}

.page-home .plan-title {
  margin: 8px 0 14px;
  font-size: 22px;
  font-weight: 800;
}

.page-home .plan-price {
  font-family: var(--f-mono);
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-neon);
}

.page-home .plan-price em {
  margin-left: 6px;
  font-size: 15px;
  font-style: normal;
  color: var(--c-sand);
}

.page-home .plan-note {
  margin-top: 12px;
  color: var(--c-sand);
  font-size: 13px;
}

.page-home .flip-back ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.75;
}

.page-home .flip-back .btn {
  margin-top: auto;
}

/* ===== 关注球队 ===== */
.page-home .focus-section {
  background: linear-gradient(315deg, rgba(198, 255, 0, 0.08), transparent 42%), var(--c-bg);
}

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

.page-home .focus-copy .home-sub {
  margin-bottom: 16px;
}

.page-home .focus-benefits {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-home .focus-benefits li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--c-sand);
  line-height: 1.6;
  font-size: 15px;
}

.page-home .focus-benefits li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: var(--c-neon);
}

.page-home .focus-pop {
  align-self: start;
  display: block;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--home-card);
  box-shadow: var(--home-shadow);
}

.page-home .popover-title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.page-home .popover-title::before {
  content: "★ ";
  color: var(--c-gold);
}

.page-home .popover-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .popover-tag {
  padding: 9px 14px;
  border: 1px solid rgba(216, 203, 181, 0.24);
  border-radius: 999px;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}

.page-home .popover-tag:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.page-home .popover-note {
  margin: 16px 0 0;
  color: var(--c-sand);
  font-size: 13px;
  line-height: 1.6;
}

/* ===== 信任体系 ===== */
.page-home .trust-section {
  background:
    linear-gradient(rgba(15, 26, 44, 0.72), rgba(15, 26, 44, 0.72)),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(216, 203, 181, 0.06) 22px 24px);
}

.page-home .trust-head {
  margin-bottom: 30px;
}

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

.page-home .trust-item {
  padding: 22px;
  border-radius: var(--radius);
  border-top: 3px solid var(--c-accent);
  background: var(--home-card);
  transition: transform 0.3s;
}

.page-home .trust-item:hover {
  transform: translateY(-4px) rotate(-0.5deg);
}

.page-home .trust-icon {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(198, 255, 0, 0.14);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-neon);
}

.page-home .trust-item h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.4;
}

.page-home .trust-item p {
  margin: 0;
  color: var(--c-sand);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.page-home .trust-stat {
  padding: 18px 12px;
  text-align: center;
  border: 1px solid rgba(216, 203, 181, 0.2);
  border-radius: var(--radius);
  background: var(--c-bg);
}

.page-home .ts-num {
  font-family: var(--f-mono);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
}

.page-home .ts-unit {
  margin-left: 4px;
  font-size: 14px;
  color: var(--c-sand);
}

.page-home .ts-label {
  display: block;
  margin-top: 8px;
  color: var(--c-sand);
  font-size: 13px;
}

.page-home .trust-foot {
  margin-top: 22px;
  color: var(--c-sand);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .trust-foot a {
  color: var(--c-neon);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== 桌面增强 ===== */
@media (min-width: 768px) {
  .page-home .side-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .page-home .plans-note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .page-home .home-container {
    width: min(100% - 48px, var(--home-max));
  }

  .page-home .entry-grid {
    grid-template-columns: minmax(0, 7.2fr) minmax(0, 4.8fr);
    grid-template-areas:
      "panel side"
      "strip strip";
    align-items: stretch;
  }

  .page-home .hero-panel {
    grid-area: panel;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    align-items: start;
  }

  .page-home .hero-side {
    grid-area: side;
  }

  .page-home .price-strip {
    grid-area: strip;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .page-home .price-strip .btn {
    flex: none;
  }

  .page-home .hero-mood img {
    height: 360px;
  }

  .page-home .side-stats {
    flex: 1;
    grid-template-columns: 1fr;
    align-content: stretch;
  }

  .page-home .stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-home .apps-grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    align-items: center;
  }

  .page-home .venue-grid {
    grid-template-columns: minmax(0, 5.5fr) minmax(0, 6.5fr);
    align-items: stretch;
  }

  .page-home .pricing-wrap {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    align-items: center;
  }

  .page-home .focus-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: center;
  }

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

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

  .page-home .entry-title {
    font-size: clamp(42px, 5vw, 64px);
  }

  .page-home .hero-snap {
    transform: rotate(-1.4deg) translateY(8px);
  }

  .page-home .heatmap-card {
    transform: rotate(1.1deg) translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    transition: none !important;
    animation: none !important;
  }
}
