.page-home {
  --section-gap: 48px;
  background: var(--light-gray);
  overflow-x: hidden;
}

.page-home .cut-corner {
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.page-home .hero-kicker,
.page-home .section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--accent-font);
  font-size: var(--font-index);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-sub);
  font-weight: 600;
}

.page-home .hero-index,
.page-home .section-index {
  font-size: 13px;
  font-weight: 700;
  color: var(--deep-blue);
}

.page-home .hero-label,
.page-home .section-label {
  color: var(--green);
}

.page-home .hero-line,
.page-home .section-line {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--orange);
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  padding: 40px 0 8px;
  position: relative;
}

.page-home .home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 92%;
  background: linear-gradient(135deg, var(--green) 0%, var(--deep-blue) 100%);
  transform: skewX(-14deg);
  opacity: 0.07;
  pointer-events: none;
}

.page-home .hero-intro {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.page-home .hero-intro h1 {
  font-family: var(--heading-font);
  font-size: 32px;
  line-height: 1.2;
  margin: 12px 0 10px;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.page-home .hero-lead {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
}

.page-home .hero-bento {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .hero-match {
  position: relative;
  min-height: 340px;
  background: var(--deep-blue);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-home .hero-match-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .hero-match-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30, 63, 102, 0.92), rgba(46, 139, 87, 0.6));
  z-index: 1;
}

.page-home .hero-trajectory {
  position: absolute;
  bottom: 12px;
  left: 8px;
  width: 55%;
  height: 40%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.75;
}

.page-home .hero-match-body {
  position: relative;
  z-index: 3;
  padding: 24px;
  width: 100%;
}

.page-home .match-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .match-league {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

.page-home .match-live {
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: auto;
}

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

.page-home .team-side {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.page-home .team-name {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.page-home .team-score {
  font-family: var(--accent-font);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.22);
}

.page-home .match-colon {
  font-family: var(--accent-font);
  font-size: 42px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

.page-home .match-caption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .hero-focus {
  background: var(--card-white);
  border: 1px solid var(--border-line);
  border-radius: 12px;
  padding: 20px;
}

.page-home .hero-focus h2 {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--text-main);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

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

.page-home .focus-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--border-line);
}

.page-home .focus-time {
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  min-width: 46px;
}

.page-home .focus-teams {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
}

.page-home .focus-teams b {
  color: var(--orange);
  font-weight: 700;
  margin: 0 4px;
}

.page-home .focus-league {
  font-size: 12px;
  color: var(--text-sub);
}

.page-home .focus-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--deep-blue);
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.page-home .focus-more:hover {
  color: var(--orange);
}

.page-home .hero-download {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--green), var(--deep-blue));
  border-radius: 12px;
  padding: 18px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.page-home .hero-download::after {
  content: '';
  position: absolute;
  right: -28px;
  top: -12px;
  width: 70px;
  height: 120%;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(18deg);
}

.page-home .download-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.page-home .download-text {
  flex: 1;
}

.page-home .download-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.page-home .download-text small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.page-home .download-arrow {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  transition: transform var(--transition-standard);
}

.page-home .hero-download:hover .download-arrow {
  transform: translateX(5px);
}

.page-home .hero-benefit {
  background: var(--card-white);
  border: 1px solid var(--border-line);
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.page-home .benefit-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.page-home .benefit-title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 6px;
  padding-right: 30px;
  color: var(--text-main);
}

.page-home .benefit-desc {
  color: var(--text-sub);
  font-size: 14px;
  margin-bottom: 12px;
}

.page-home .hero-benefit a {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.page-home .hero-stats {
  background: var(--card-white);
  border: 1px solid var(--border-line);
  border-radius: 12px;
  padding: 18px 14px;
}

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

.page-home .stats-row li {
  text-align: center;
}

.page-home .stats-row strong {
  display: block;
  font-family: var(--accent-font);
  font-size: 22px;
  line-height: 1.1;
  color: var(--deep-blue);
}

.page-home .stats-row span {
  font-size: 12px;
  color: var(--text-sub);
  display: block;
  margin-top: 4px;
}

/* ---------- 通用章节头 ---------- */
.page-home .section-head {
  margin-bottom: 24px;
}

.page-home .section-head--shift {
  margin-left: auto;
  max-width: 620px;
  text-align: right;
}

.page-home .section-head h2 {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  margin: 10px 0 8px;
}

.page-home .section-desc {
  color: var(--text-sub);
  font-size: 14px;
  max-width: 520px;
}

.page-home .section-head--shift .section-desc {
  margin-left: auto;
}

/* ---------- 比分速递 ---------- */
.page-home .score-section {
  padding: var(--section-gap) 0 16px;
}

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

.page-home .score-card {
  background: var(--card-white);
  border: 1px solid var(--border-line);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition-standard), border-color var(--transition-standard);
}

.page-home .score-card:hover {
  border-color: rgba(46, 139, 87, 0.45);
  box-shadow: 0 6px 18px rgba(22, 33, 45, 0.06);
}

.page-home .score-card summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  cursor: pointer;
}

.page-home .score-card summary::-webkit-details-marker {
  display: none;
}

.page-home .score-round {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.page-home .score-core {
  font-family: var(--accent-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-blue);
  white-space: nowrap;
}

.page-home .score-core small {
  display: block;
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  text-align: right;
}

.page-home .score-expand-icon {
  font-size: 18px;
  color: var(--green);
  transition: transform 0.3s;
  width: 18px;
  text-align: center;
}

.page-home .score-card[open] .score-expand-icon {
  transform: rotate(45deg);
}

.page-home .score-detail {
  padding: 4px 18px 14px;
  border-top: 1px dashed var(--border-line);
}

.page-home .score-detail ul {
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-home .score-detail li {
  font-size: 13px;
  color: var(--text-sub);
}

.page-home .score-detail strong {
  color: var(--text-main);
}

.page-home .score-heatmap {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 24px;
  background: var(--card-white);
  border: 1px solid var(--border-line);
  border-radius: 12px;
  padding: 18px;
  align-items: center;
}

.page-home .heatmap-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  max-height: 320px;
}

.page-home .heatmap-note h3 {
  font-family: var(--heading-font);
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--text-main);
}

.page-home .heatmap-note p {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 14px;
  line-height: 1.6;
}

.page-home .heatmap-note a {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.page-home .heatmap-note a:hover {
  color: var(--green);
}

/* ---------- 赛程日历 ---------- */
.page-home .cal-section {
  padding: var(--section-gap) 0 36px;
}

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

.page-home .cal-visual {
  position: relative;
  border-radius: 12px;
  overflow-x: auto;
  min-height: 380px;
  background: var(--deep-blue);
  box-shadow: 0 18px 40px rgba(30, 63, 102, 0.14);
}

.page-home .cal-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 0;
}

.page-home .cal-week {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, 130px);
  min-height: 380px;
}

.page-home .cal-day {
  padding: 18px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .cal-day:last-child {
  border-right: 0;
}

.page-home .cal-day-name {
  font-family: var(--accent-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.page-home .cal-matches li {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 8px 6px;
  font-size: 12px;
  color: #fff;
  line-height: 1.3;
}

.page-home .cal-side {
  background: var(--card-white);
  border: 1px solid var(--border-line);
  border-radius: 12px;
  padding: 22px;
}

.page-home .cal-side h3 {
  font-family: var(--heading-font);
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--text-main);
}

.page-home .cal-side p {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 14px;
}

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

.page-home .cal-feature-list li {
  font-size: 14px;
  color: var(--text-main);
  padding-left: 20px;
  position: relative;
}

.page-home .cal-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--green);
  transform: rotate(45deg);
}

/* ---------- 看球赛评 ---------- */
.page-home .essay-section {
  padding: var(--section-gap) 0 36px;
}

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

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

.page-home .essay-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--green), var(--deep-blue));
}

.page-home .essay-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(22, 33, 45, 0.08);
}

.page-home .essay-tag {
  display: inline-block;
  background: var(--light-gray);
  color: var(--green);
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.page-home .essay-card h3 {
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--text-main);
}

.page-home .essay-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
  margin: 0 0 14px;
}

.page-home .essay-card a {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.page-home .essay-card a:hover {
  color: var(--green);
}

/* ---------- 下载聊球 ---------- */
.page-home .download-sec {
  background: linear-gradient(135deg, var(--deep-blue), #16325a);
  padding: 52px 0;
  margin-top: 12px;
}

.page-home .section-head--invert h2 {
  color: #fff;
}

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

.page-home .section-head--invert .section-index {
  color: var(--orange);
}

.page-home .section-head--invert .section-label {
  color: rgba(255, 255, 255, 0.78);
}

.page-home .section-head--invert .section-line {
  background: var(--orange);
}

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

.page-home .download-info {
  color: rgba(255, 255, 255, 0.85);
}

.page-home .download-info .download-version {
  font-family: var(--accent-font);
  font-size: 18px;
  color: var(--orange);
  letter-spacing: 0.06em;
}

.page-home .download-points {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .download-points li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  padding-left: 28px;
  position: relative;
}

.page-home .download-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.page-home .download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 10px;
}

.page-home .download-note {
  font-size: 13px;
  opacity: 0.65;
}

.page-home .download-phone {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--deep-blue);
  max-width: 260px;
  margin: 0 auto;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.3);
}

.page-home .download-phone img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}

.page-home .phone-swoosh {
  position: absolute;
  right: -20px;
  top: 10%;
  width: 90px;
  height: 80%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(46, 139, 87, 0.16));
  transform: rotate(18deg);
  pointer-events: none;
}

/* ---------- 新用户福利 ---------- */
.page-home .benefit-sec {
  padding: 36px 0 56px;
}

.page-home .benefit-card {
  background: linear-gradient(135deg, var(--orange), #ffa940);
  color: #fff;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(255, 140, 0, 0.2);
}

.page-home .benefit-card::before {
  content: 'GOAL';
  position: absolute;
  right: -20px;
  top: 32%;
  font-family: var(--accent-font);
  font-size: 120px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  transform: rotate(-18deg);
  line-height: 1;
  pointer-events: none;
}

.page-home .benefit-card h2 {
  font-family: var(--heading-font);
  font-size: 26px;
  color: #fff;
  margin: 10px 0 8px;
  position: relative;
  z-index: 1;
}

.page-home .benefit-card .section-index,
.page-home .benefit-card .section-label {
  color: var(--deep-blue);
}

.page-home .benefit-card .section-line {
  background: var(--deep-blue);
}

.page-home .benefit-card-head {
  position: relative;
  z-index: 1;
}

.page-home .benefit-lead {
  font-size: 18px;
  margin-bottom: 14px;
  color: #fff;
}

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

.page-home .benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.page-home .benefit-list li {
  color: #fff;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
}

.page-home .benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--deep-blue);
  transform: rotate(45deg);
}

.page-home .benefit-card .btn-accent {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
}

/* ---------- 桌面增强 ---------- */
@media (min-width: 768px) {
  .page-home {
    --section-gap: 64px;
  }

  .page-home .home-hero {
    padding: 60px 0 16px;
  }

  .page-home .hero-intro h1 {
    font-size: var(--font-h1);
    max-width: 720px;
  }

  .page-home .hero-lead {
    font-size: 16px;
  }

  .page-home .hero-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  .page-home .hero-match {
    grid-column: span 8;
    grid-row: span 2;
    min-height: 440px;
  }

  .page-home .hero-focus {
    grid-column: span 4;
    grid-row: span 2;
  }

  .page-home .hero-download {
    grid-column: span 4;
  }

  .page-home .hero-benefit {
    grid-column: span 4;
  }

  .page-home .hero-stats {
    grid-column: span 4;
  }

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

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

  .page-home .cal-bento {
    grid-template-columns: 1.6fr 1fr;
  }

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

  .page-home .download-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }

  .page-home .download-phone {
    max-width: 100%;
  }

  .page-home .benefit-card {
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 30px;
    align-items: center;
  }

  .page-home .benefit-card h2 {
    font-size: 30px;
  }

  .page-home .benefit-lead {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .page-home .cal-week {
    grid-template-columns: repeat(7, 1fr);
  }

  .page-home .cal-visual {
    overflow: hidden;
  }

  .page-home .team-name {
    font-size: 24px;
  }

  .page-home .team-score {
    font-size: 64px;
  }

  .page-home .match-colon {
    font-size: 48px;
  }
}
