.page-home {
  --home-gap: 28px;
  --home-radius-lg: 28px;
  background: var(--cream);
  color: var(--stone-gray);
  font-family: var(--font-body);
  overflow-x: clip;
}

.page-home .breadcrumb {
  padding-top: 16px;
}

.page-home .breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-home .breadcrumb__item {
  font-size: 13px;
  color: var(--metal-gray);
}

.page-home .breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  margin-right: 6px;
  color: var(--metal-gray);
  opacity: .6;
}

.page-home .breadcrumb__item a {
  color: var(--green-light);
  text-decoration: none;
}

.page-home .breadcrumb__item a:hover {
  color: var(--vibrant-orange);
}

.page-home .home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92svh;
  padding: 56px 0;
  background-color: var(--green-deep);
  background-image:
    linear-gradient(155deg, transparent 58%, rgba(230, 106, 51, .35) 58%, rgba(230, 106, 51, .35) 60%, transparent 60%),
    linear-gradient(108deg, transparent 46%, rgba(180, 106, 78, .4) 46%, rgba(180, 106, 78, .4) 49%, transparent 49%);
  color: var(--white);
  overflow: hidden;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: 8%;
  width: 260px;
  height: 260px;
  border: 40px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .home-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: center;
}

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

.page-home .home-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--sand-gold);
  text-transform: uppercase;
}

.page-home .home-hero__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(40px, 8.5vw, 72px);
  line-height: 1.02;
  color: var(--white);
  letter-spacing: .01em;
}

.page-home .home-hero__lead {
  max-width: 54ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .84);
}

.page-home .home-hero__note {
  max-width: 50ch;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 241, 234, .72);
  border-left: 3px solid var(--vibrant-orange);
  padding-left: 14px;
}

.page-home .home-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.page-home .home-hero .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}

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

.page-home .home-hero__caption {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .62);
  text-align: center;
}

.page-home .match-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  color: var(--stone-gray);
  box-shadow: 0 24px 56px rgba(6, 20, 14, .28);
}

.page-home .match-card__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(74, 124, 99, .25);
}

.page-home .match-card__league {
  font-size: 13px;
  font-weight: 800;
  color: var(--green-deep);
}

.page-home .match-card__live {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--vibrant-orange);
  background: rgba(232, 106, 51, .12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.page-home .match-card__body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 26px 0;
}

.page-home .match-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.page-home .match-card__pin {
  color: var(--sand-gold);
  font-size: 18px;
  line-height: 1;
}

.page-home .match-card__team-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--green-deep);
}

.page-home .match-card__team-tag {
  font-size: 11px;
  color: var(--vibrant-orange);
  background: rgba(232, 106, 51, .1);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.page-home .match-card__score {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  background: var(--green-deep);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 16px;
}

.page-home .match-card__num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.page-home .match-card__split {
  color: var(--sand-gold);
  font-size: 20px;
}

.page-home .match-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(74, 124, 99, .25);
  padding-top: 14px;
}

.page-home .match-card__time {
  font-size: 13px;
  color: var(--metal-gray);
}

.page-home .home-hero__field {
  margin: 36px 0 0;
}

.page-home .home-hero__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(6, 20, 14, .3);
}

.page-home .home-section {
  padding: 56px 0 64px;
}

.page-home .home-section--alt {
  background: var(--white);
}

.page-home .home-section--tint {
  background: #ECF2EC;
}

.page-home .home-section--dark {
  background: var(--dark-green);
  color: rgba(255, 255, 255, .82);
}

.page-home .section-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.page-home .section-heading__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--vibrant-orange);
  border: 2px solid currentColor;
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  white-space: nowrap;
}

.page-home .section-heading h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 30px;
  line-height: 1.15;
  color: var(--green-deep);
}

.page-home .home-section--dark .section-heading h2 {
  color: var(--white);
}

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

.page-home .home-grid__text p {
  line-height: 1.8;
  margin: 0 0 16px;
}

.page-home .home-grid__media figure {
  margin: 0;
}

.page-home .home-grid__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 14px 30px rgba(6, 20, 14, .1);
}

.page-home .home-steps {
  list-style: none;
  counter-reset: homeStep;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-steps li {
  counter-increment: homeStep;
  position: relative;
  padding-left: 42px;
  font-size: 15px;
  line-height: 1.6;
}

.page-home .home-steps li::before {
  content: counter(homeStep, decimal-leading-zero);
  position: absolute;
  top: -2px;
  left: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  border-radius: 50%;
}

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

.page-home .home-live-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 2px;
  border-bottom: 1px dashed rgba(74, 124, 99, .3);
  font-size: 15px;
}

.page-home .home-live-list__mono {
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--green-deep);
}

.page-home .side-note {
  background: rgba(74, 124, 99, .08);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin: 4px 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--green-deep);
}

.page-home .side-note__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--vibrant-orange);
  margin-bottom: 4px;
}

.page-home .home-section--dark .side-note {
  background: rgba(255, 255, 255, .07);
  color: var(--white);
}

.page-home .editorial-note {
  background: var(--cream);
  border-left: 4px solid var(--vibrant-orange);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--stone-gray);
}

.page-home .editorial-note strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vibrant-orange);
  margin-bottom: 4px;
}

.page-home .home-section--dark .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}

.page-home .home-banner {
  display: grid;
  gap: 28px;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-deep) 70%);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}

.page-home .home-banner__text p {
  margin: 0 0 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .9);
}

.page-home .home-banner .section-heading h2 {
  color: var(--white);
}

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

.page-home .home-banner__index {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-md);
  padding: 20px;
}

.page-home .home-index-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-home .home-index-stack__key {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--vibrant-orange);
  background: rgba(232, 106, 51, .18);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.page-home .home-index-stack__value {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}

.page-home .home-index-stack__arrow {
  color: var(--sand-gold);
  font-size: 20px;
  font-weight: 800;
}

.page-home .home-banner__note {
  margin: 16px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-mono);
}

.page-home .home-league-demo {
  margin-top: 24px;
  background: var(--white);
  border: 1px solid rgba(74, 124, 99, .3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-home .home-league-demo__item {
  border-bottom: 1px solid rgba(74, 124, 99, .2);
}

.page-home .home-league-demo__item:last-child {
  border-bottom: 0;
}

.page-home .home-league-demo__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-weight: 800;
  font-size: 16px;
  color: var(--green-deep);
}

.page-home .home-league-demo__item summary::-webkit-details-marker {
  display: none;
}

.page-home .home-league-demo__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--vibrant-orange);
  transition: transform .2s ease;
}

.page-home .home-league-demo__item[open] summary::after {
  content: "−";
}

.page-home .home-league-demo__match {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 18px 16px;
  font-size: 14px;
  color: var(--metal-gray);
}

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

@media (min-width: 900px) {
  .page-home .home-hero__layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
  }

  .page-home .home-hero__title {
    font-size: 76px;
  }

  .page-home .home-hero__img {
    max-height: 340px;
    height: 340px;
  }

  .page-home .home-section {
    padding: 84px 0 96px;
  }

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

  .page-home .home-grid--reverse .home-grid__media {
    order: 2;
  }

  .page-home .home-grid--reverse .home-grid__text {
    order: 1;
  }

  .page-home .section-heading h2 {
    font-size: 40px;
  }

  .page-home .home-banner {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 40px;
  }
}

@media (min-width: 1200px) {
  .page-home .home-hero__layout {
    gap: 80px;
  }
}
