.page-home {
  --home-line: rgba(168, 178, 209, 0.16);
  --home-tag-bg: rgba(255, 215, 0, 0.08);
  --home-glow: rgba(0, 255, 135, 0.08);
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 28px;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  right: -12%;
  top: -20%;
  width: 58%;
  height: 62%;
  background: radial-gradient(circle, var(--home-glow), transparent 64%);
  pointer-events: none;
}

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

.page-home .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-home .hero-title {
  max-width: 12em;
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.page-home .hero-lead {
  max-width: 40em;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-home .hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .hero-points li {
  position: relative;
  padding-left: 20px;
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--accent-cyan);
}

.page-home .hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--accent);
}

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

.page-home .hero-img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
}

.page-home .hero-score {
  position: absolute;
  right: 14px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 12px 16px;
  background: rgba(10, 25, 47, 0.84);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.page-home .hero-score-label {
  font-family: var(--font-data);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.page-home .hero-score-num {
  font-size: 1.7rem;
  line-height: 1.1;
}

.page-home .hero-score-meta {
  font-size: 0.72rem;
  color: var(--text-body);
}

.page-home .hero-badge {
  position: absolute;
  left: 14px;
  top: 14px;
}

.page-home .home-slash {
  display: block;
  width: 100%;
  max-width: var(--container);
  height: 3px;
  margin: 0 auto;
  border: 0;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-cyan) 42%, transparent 98%);
  transform: skewX(-14deg);
}

.page-home .home-slash-reverse {
  background: linear-gradient(270deg, var(--accent) 0%, var(--accent-cyan) 42%, transparent 98%);
}

.page-home .section-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.page-home .section-head-body {
  flex: 1;
  min-width: 0;
}

.page-home .section-index {
  flex-shrink: 0;
  min-width: 38px;
  padding: 5px 9px;
  font-family: var(--font-data);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--bg-deep);
  background: var(--accent);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.page-home .section-title {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 3.4vw, 2.1rem);
  line-height: 1.18;
  color: var(--text-primary);
}

.page-home .section-desc {
  max-width: 42em;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-body);
}

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

.page-home .schedule-panel {
  padding: 0 0 24px;
  overflow: hidden;
}

.page-home .schedule-banner {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.page-home .schedule-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.page-home .schedule-panel:hover .schedule-banner-img {
  transform: scale(1.02);
}

.page-home .schedule-banner .tag {
  position: absolute;
  top: 14px;
  right: 14px;
}

.page-home .schedule-list {
  margin: 0;
  padding: 0 18px;
  list-style: none;
}

.page-home .schedule-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--home-line);
}

.page-home .schedule-item:last-child {
  border-bottom: 0;
}

.page-home .match-league {
  font-family: var(--font-data);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.page-home .match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--text-primary);
}

.page-home .match-score {
  font-size: 1.18rem;
  color: var(--accent);
}

.page-home .match-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-body);
}

.page-home .match-link {
  font-family: var(--font-data);
  font-size: 0.74rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: color var(--transition), border-color var(--transition);
}

.page-home .match-link:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.page-home .schedule-foot {
  padding: 20px 18px 0;
  text-align: center;
}

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

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

.page-home .quick-intro {
  padding: 24px;
}

.page-home .quick-intro p {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-body);
}

.page-home .quick-intro .btn {
  margin-top: 6px;
}

.page-home .quick-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
  padding: 8px 0;
}

.page-home .quick-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-family: var(--font-data);
  font-size: 0.82rem;
  color: var(--accent-gold);
  background: var(--home-tag-bg);
  border: 1px solid rgba(255, 215, 0, 0.32);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.page-home .quick-tag:hover {
  background: var(--accent-gold);
  color: var(--bg-deep);
  transform: translateY(-2px);
}

.page-home .quick-note {
  margin: 18px 0 0;
  padding: 12px 14px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-body);
  background: rgba(100, 255, 218, 0.06);
  border-left: 3px solid var(--accent-cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

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

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

.page-home .intel-main {
  padding: 24px;
}

.page-home .intel-main > p {
  margin: 0 0 20px;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--text-body);
}

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

.page-home .intel-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 8px;
  background: rgba(29, 52, 97, 0.6);
  border-radius: var(--radius-sm);
  text-align: center;
}

.page-home .stat-num {
  font-family: var(--font-data);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.page-home .stat-label {
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text-body);
}

.page-home .intel-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--accent-cyan);
}

.page-home .intel-media {
  display: flex;
  flex-direction: column;
}

.page-home .intel-media-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
}

.page-home .intel-media p {
  margin: 14px 0 12px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
}

.page-home .home-subscribe {
  padding: 30px 0 48px;
}

.page-home .subscribe-panel {
  position: relative;
  padding: 28px 20px 24px;
  overflow: hidden;
}

.page-home .subscribe-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-cyan));
}

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

.page-home .subscribe-copy .section-head {
  margin-bottom: 14px;
}

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

.page-home .subscribe-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-body);
}

.page-home .subscribe-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent);
  transform: rotate(45deg);
}

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

.page-home .subscribe-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .subscribe-media-img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
}

@media (min-width: 640px) {
  .page-home .schedule-item {
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 18px;
  }

  .page-home .match-meta {
    justify-content: flex-end;
    gap: 18px;
  }

  .page-home .intel-stats {
    gap: 14px;
  }

  .page-home .intel-stat {
    padding: 16px 12px;
  }

  .page-home .stat-num {
    font-size: 1.6rem;
  }
}

@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 52px 0 40px;
  }

  .page-home .hero-grid {
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 46px;
  }

  .page-home .hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
  }

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

  .page-home .hero-score {
    right: 18px;
    bottom: 22px;
  }

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

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

  .page-home .section-head-body {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 14px;
  }

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

  .page-home .schedule-list {
    padding: 0 26px;
  }

  .page-home .schedule-item {
    grid-template-columns: 128px 1fr auto;
    gap: 22px;
    padding: 15px 0;
  }

  .page-home .match-teams {
    justify-content: center;
    font-size: 1.04rem;
  }

  .page-home .match-score {
    margin: 0 6px;
  }

  .page-home .schedule-foot {
    padding: 22px 26px 0;
  }

  .page-home .quick-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .page-home .intel-grid {
    grid-template-columns: 1fr 0.92fr;
    align-items: start;
  }

  .page-home .subscribe-panel {
    padding: 36px 34px 30px;
  }

  .page-home .subscribe-grid {
    grid-template-columns: 1fr 0.82fr;
    align-items: center;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 64px 0 48px;
  }

  .page-home .hero-grid {
    gap: 64px;
  }

  .page-home .hero-title {
    font-size: clamp(2.8rem, 5.4vw, 4.4rem);
  }

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

  .page-home .hero-points {
    gap: 28px;
  }

  .page-home .schedule-panel {
    padding: 0 0 28px;
  }

  .page-home .quick-intro {
    padding: 30px;
  }

  .page-home .intel-main {
    padding: 30px;
  }
}
