.page-home {
  --home-radius: 16px;
  --cream-soft: rgba(247, 243, 232, 0.82);
  --cream-softer: rgba(247, 243, 232, 0.72);
  --ink-soft: rgba(26, 26, 26, 0.72);
  --ink-softer: rgba(26, 26, 26, 0.68);
  --navy-glass: rgba(10, 31, 68, 0.78);
  --gold-line: rgba(201, 162, 39, 0.28);
  background: var(--cream);
  overflow-x: hidden;
}

.page-home .home-hero {
  position: relative;
  background: linear-gradient(135deg, #0A1F44 0%, #102F6B 58%, #123A7D 100%);
  color: var(--cream);
  padding: calc(var(--header-total) + 48px) 0 110px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 42px), 0 100%);
}

.page-home .home-hero__crumb {
  margin-bottom: 4px;
}

.page-home .home-hero__content {
  display: grid;
  gap: 36px;
  margin-top: 44px;
}

.page-home .home-hero__tag {
  color: var(--soft-gold);
  letter-spacing: 0.14em;
}

.page-home .home-hero__intro h1 {
  font-family: var(--font-title);
  font-size: clamp(30px, 4.8vw, 56px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0.01em;
  margin: 10px 0 18px;
}

.page-home .home-hero__lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-soft);
  max-width: 560px;
  margin-bottom: 26px;
}

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

.page-home .home-hero__visual {
  position: relative;
  min-height: 430px;
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.page-home .home-hero__photo {
  position: absolute;
  inset: 0;
}

.page-home .home-hero__photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.page-home .hero-archive {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 20px 18px;
  border: 1px solid rgba(245, 211, 110, 0.35);
  border-radius: calc(var(--home-radius) - 4px);
  background: var(--navy-glass);
}

.page-home .hero-archive__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--soft-gold);
  margin: 0;
}

.page-home .hero-archive__title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 900;
  margin: 8px 0 6px;
  color: var(--cream);
}

.page-home .hero-archive__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--cream-softer);
  margin: 0 0 14px;
}

.page-home .hero-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--soft-gold);
  margin-bottom: 14px;
}

.page-home .hero-archive__link {
  display: block;
  text-align: center;
}

.page-home .today-section {
  background: var(--cream);
  padding: 72px 0 80px;
  position: relative;
}

.page-home .section-heading {
  max-width: 640px;
  margin-bottom: 24px;
}

.page-home .section-heading h2 {
  font-family: var(--font-title);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.2;
  margin: 8px 0 10px;
}

.page-home .section-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

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

.page-home .section-heading--light .section-desc {
  color: var(--cream-softer);
}

.page-home .match-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.page-home .match-filter {
  appearance: none;
  border: 1px solid rgba(201, 162, 39, 0.55);
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-home .match-filter.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

.page-home .match-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.page-home .match-card {
  position: relative;
  background: var(--warm-gray);
  border: 1px solid var(--gold-line);
  border-radius: var(--home-radius);
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .match-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  width: 42px;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 3px 3px;
}

.page-home .match-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(10, 31, 68, 0.12);
}

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

.page-home .match-card__league {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--red);
}

.page-home .match-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue-gray);
}

.page-home .match-card__teams {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 14px;
}

.page-home .team-name {
  flex: 1;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--navy);
}

.page-home .team-name:last-child {
  text-align: right;
}

.page-home .match-score {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  min-width: 70px;
  justify-content: center;
  font-family: var(--font-mono);
}

.page-home .score-sep {
  font-size: 18px;
  color: var(--gold);
  font-weight: 700;
}

.page-home .match-card__note {
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(45, 90, 147, 0.3);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-softer);
}

.page-home .timeline-section {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 0 72px;
  position: relative;
}

.page-home .timeline-curve {
  display: block;
  width: 100%;
  height: 54px;
  margin: 20px 0 12px;
}

.page-home .timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.page-home .timeline-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  box-sizing: border-box;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 211, 110, 0.22);
  border-radius: var(--home-radius);
  color: var(--cream);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-home .timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 211, 110, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.page-home .timeline-card__num {
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--soft-gold);
}

.page-home .timeline-card__label {
  font-size: 16px;
  font-weight: 900;
}

.page-home .timeline-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--cream-softer);
}

.page-home .timeline-photo {
  margin: 30px 0 0;
  border-radius: var(--home-radius);
  overflow: hidden;
}

.page-home .timeline-photo__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--home-radius);
}

.page-home .timeline-photo figcaption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cream-softer);
}

.page-home .databoard-section {
  background: var(--warm-gray);
  padding: 80px 0;
}

.page-home .databoard-layout {
  display: grid;
  gap: 28px;
  margin-top: 24px;
}

.page-home .databoard-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.page-home .stat-card {
  background: var(--cream);
  border: 1px solid var(--gold-line);
  border-radius: var(--home-radius);
  padding: 22px 12px;
  text-align: center;
  transition: transform 0.2s ease;
}

.page-home .stat-card:hover {
  transform: translateY(-2px);
}

.page-home .stat-card__label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-gray);
}

.page-home .databoard-figure {
  margin: 0;
  background: var(--navy);
  border-radius: var(--home-radius);
  padding: 10px;
}

.page-home .databoard-figure__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: calc(var(--home-radius) - 6px);
}

.page-home .databoard-figure figcaption {
  padding: 10px 6px 4px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--cream-softer);
}

.page-home .expert-section {
  background: var(--cream);
  padding: 80px 0;
}

.page-home .expert-layout {
  display: grid;
  gap: 28px;
  margin-top: 24px;
}

.page-home .expert-photo {
  margin: 0;
  position: relative;
  min-height: 280px;
  border-radius: var(--home-radius);
  overflow: hidden;
}

.page-home .expert-photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .expert-posts {
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-home .expert-post {
  background: var(--warm-gray);
  border-left: 3px solid var(--gold);
  border-radius: calc(var(--home-radius) - 6px);
  padding: 16px 18px;
}

.page-home .expert-post__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
}

.page-home .expert-post h3 {
  font-family: var(--font-title);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
  margin: 6px 0 6px;
  color: var(--navy);
}

.page-home .expert-post p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 10px;
  color: var(--ink-soft);
}

.page-home .post-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}

.page-home .home-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 68px 0;
  position: relative;
  overflow: hidden;
}

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

.page-home .home-cta__tag {
  color: var(--soft-gold);
}

.page-home .home-cta h2 {
  font-family: var(--font-title);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  margin: 8px 0 14px;
}

.page-home .home-cta p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--cream-soft);
  margin: 0;
}

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

@media (min-width: 760px) {
  .page-home .match-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-home .home-hero__content {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 48px;
  }

  .page-home .databoard-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
  }

  .page-home .expert-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }

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

@media (min-width: 1050px) {
  .page-home .timeline-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .page-home .match-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .match-card--feature {
    grid-column: span 2;
  }
}
