.page-home {
  --home-section-pad: clamp(56px, 8vw, 112px);
  background: var(--navy-950);
  color: var(--cream-50);
  line-height: 1.7;
}

.page-home .hero-plaque {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(40px, 7vw, 76px) clamp(20px, 4vw, 60px);
  isolation: isolate;
}

.page-home .hero-plaque__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-home .hero-plaque__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.75) contrast(1.06);
}

.page-home .hero-plaque__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, var(--navy-950) 0%, rgba(11, 27, 45, 0.92) 42%, rgba(16, 42, 67, 0.62) 100%);
}

.page-home .hero-plaque__gold-line {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 52%;
  width: 2px;
  background: linear-gradient(180deg, transparent 8%, var(--gold-500) 34%, var(--gold-500) 66%, transparent 94%);
  transform: rotate(19deg);
  opacity: 0.4;
  box-shadow: 0 0 30px 2px rgba(212, 175, 55, 0.24);
  z-index: 0;
}

.page-home .hero-plaque__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 30px;
  grid-template-areas:
    "heading"
    "card"
    "actions";
  width: 100%;
}

.page-home .hero-plaque__heading {
  grid-area: heading;
}

.page-home .hero-plaque__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.page-home .hero-plaque__marker {
  width: 24px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.page-home .hero-plaque__heading h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(34px, 6.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 18px;
  color: var(--cream-50);
  transform: skewX(-1.5deg);
}

.page-home .hero-plaque__heading h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--gold-500) 0%, rgba(212, 175, 55, 0) 100%);
}

.page-home .hero-plaque__lead {
  max-width: 36em;
  font-size: 16px;
  line-height: 1.85;
  color: var(--slate-400);
  margin: 0 0 22px;
}

.page-home .hero-plaque__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .data-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 8px 16px;
  background: rgba(16, 42, 67, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  font-size: 14px;
  color: var(--cream-50);
}

.page-home .data-chip__num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-500);
}

.page-home .hero-schedule-card {
  grid-area: card;
  position: relative;
  background: linear-gradient(148deg, rgba(16, 42, 67, 0.96) 0%, rgba(9, 25, 45, 0.99) 100%);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: var(--radius-md);
  padding: 26px 22px 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(212, 175, 55, 0.08);
  transform: rotate(-1deg);
}

.page-home .hero-schedule-card__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.page-home .hero-schedule-card__bar .live-badge {
  white-space: nowrap;
}

.page-home .hero-schedule-card__date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate-400);
  white-space: nowrap;
}

.page-home .hero-schedule-card__match {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.page-home .hero-schedule-card__team {
  font-weight: 700;
  font-size: 15px;
  color: var(--cream-50);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.page-home .hero-schedule-card__team--right {
  text-align: right;
}

.page-home .hero-schedule-card__score {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 28px;
  color: var(--gold-500);
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

.page-home .hero-schedule-card__filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
}

.page-home .hero-schedule-card__filter-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-right: 4px;
}

.page-home .hero-schedule-card__filter-chip {
  font-size: 13px;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold-300);
}

.page-home .hero-plaque__actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  padding-top: 4px;
}

.page-home .hero-plaque__actions .btn {
  min-width: 116px;
  justify-content: center;
}

.page-home .hero-plaque__sync {
  font-size: 13px;
  color: var(--slate-400);
}

.page-home .schedule-focus,
.page-home .version-note,
.page-home .rules-guide,
.page-home .replay-section,
.page-home .services-index {
  padding: var(--home-section-pad) 0;
}

.page-home .schedule-focus {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.page-home .section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: start;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);
}

.page-home .section-head__num {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--gold-500);
  line-height: 1.2;
  padding-top: 6px;
}

.page-home .section-head__text {
  min-width: 0;
}

.page-home .section-head__text h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--cream-50);
}

.page-home .section-head__desc {
  margin: 0;
  color: var(--slate-400);
  max-width: 50em;
  font-size: 15px;
}

.page-home .section-head .text-link,
.page-home .replay-section__sync-badge {
  grid-column: 2;
  justify-self: start;
}

.page-home .text-link {
  display: inline-block;
  color: var(--gold-500);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

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

.page-home .schedule-focus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .match-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--navy-800);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.page-home .match-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-500);
  background: #142F4C;
}

.page-home .match-card__tag {
  align-self: flex-start;
}

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

.page-home .match-card__team {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--cream-50);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .match-card__team:last-child {
  text-align: right;
}

.page-home .match-card__score {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-500);
  white-space: nowrap;
  margin: 0 4px;
}

.page-home .match-card__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-400);
  padding-top: 8px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.page-home .version-note {
  background: var(--cream-50);
  color: var(--ink-900);
}

.page-home .version-note .section-head__text h2 {
  color: var(--ink-900);
}

.page-home .version-note .section-head__desc {
  color: var(--slate-400);
}

.page-home .version-note .text-link {
  color: var(--ink-900);
  border-color: rgba(28, 31, 38, 0.4);
}

.page-home .version-note .text-link:hover {
  color: var(--gold-500);
  border-color: var(--gold-500);
}

.page-home .version-note__grid {
  display: grid;
  gap: 36px;
}

.page-home .version-note__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(28, 31, 38, 0.16);
}

.page-home .version-note__guide {
  margin-bottom: 24px;
  padding: 18px 20px;
  background: #F3EBDD;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.page-home .version-note__guide p,
.page-home .replay-section__guide p {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.page-home .version-note__guide-tag,
.page-home .replay-section__guide-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.page-home .version-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .version-timeline__item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(28, 31, 38, 0.1);
}

.page-home .version-timeline__item:last-child {
  border-bottom: none;
}

.page-home .version-timeline__no {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--gold-500);
}

.page-home .version-timeline__desc {
  font-size: 15px;
  color: var(--ink-900);
}

.page-home .tag--gold {
  font-size: 12px;
  color: var(--gold-500);
  border-color: rgba(212, 175, 55, 0.5);
  white-space: nowrap;
}

.page-home .rules-guide {
  background: var(--navy-800);
}

.page-home .rules-guide__grid {
  display: grid;
  gap: 36px;
}

.page-home .rules-guide__lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--cream-50);
  max-width: 44em;
  margin: 0;
}

.page-home .rules-guide__stats {
  display: flex;
  gap: 14px;
  margin: 28px 0;
}

.page-home .rules-guide__stat {
  flex: 1;
  padding: 18px;
  background: rgba(11, 27, 45, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-sm);
}

.page-home .rules-guide__stat-num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 32px;
  color: var(--gold-500);
}

.page-home .rules-guide__stat-label {
  display: block;
  font-size: 13px;
  color: var(--slate-400);
  margin-top: 4px;
}

.page-home .rules-guide__topics {
  display: grid;
  gap: 10px;
}

.page-home .rules-topic {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(11, 27, 45, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius-sm);
  color: var(--cream-50);
  font-size: 14px;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.page-home .rules-topic:hover {
  background: rgba(11, 27, 45, 0.74);
  border-color: var(--gold-500);
  transform: translateX(4px);
}

.page-home .rules-topic__mark {
  color: var(--gold-500);
  font-size: 12px;
}

.page-home .rules-guide__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.24);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  transform: rotate(-1.6deg);
}

.page-home .replay-section {
  background: var(--cream-50);
  color: var(--ink-900);
}

.page-home .replay-section .section-head__text h2 {
  color: var(--ink-900);
}

.page-home .replay-section .section-head__desc {
  color: var(--slate-400);
}

.page-home .replay-section__sync-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-900);
  border: 1px solid rgba(28, 31, 38, 0.24);
  border-radius: 999px;
  padding: 6px 13px;
  white-space: nowrap;
}

.page-home .replay-section__grid {
  display: grid;
  gap: 34px;
}

.page-home .replay-section__chart img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(28, 31, 38, 0.12);
}

.page-home .replay-section__guide {
  padding: 16px 18px;
  margin-bottom: 22px;
  background: #F3EBDD;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.page-home .replay-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.page-home .replay-list__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(28, 31, 38, 0.1);
}

.page-home .replay-list__item:last-child {
  border-bottom: none;
}

.page-home .replay-list__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-500);
  font-weight: 700;
}

.page-home .replay-list__match {
  font-size: 14px;
  color: var(--ink-900);
  overflow-wrap: break-word;
}

.page-home .replay-list__action {
  font-size: 13px;
  color: var(--blue-400);
  font-weight: 600;
  white-space: nowrap;
}

.page-home .replay-section .text-link {
  color: var(--ink-900);
  border-color: rgba(28, 31, 38, 0.4);
}

.page-home .replay-section .text-link:hover {
  color: var(--gold-500);
  border-color: var(--gold-500);
}

.page-home .services-index {
  background: var(--navy-950);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
}

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

.page-home .service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  background: var(--navy-800);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius-sm);
  color: var(--cream-50);
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.page-home .service-tile::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, transparent 48%, rgba(212, 175, 55, 0.22) 50%);
  pointer-events: none;
}

.page-home .service-tile:hover {
  transform: translateY(-5px);
  border-color: var(--gold-500);
  background: #142F4C;
}

.page-home .service-tile__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-500);
}

.page-home .service-tile__name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
}

.page-home .service-tile__desc {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.65;
}

.page-home .services-index__legal {
  margin: 28px 0 0;
  font-size: 13px;
  color: var(--slate-400);
}

.page-home .services-index__legal a {
  color: var(--gold-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 720px) {
  .page-home .schedule-focus__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-home .version-note__grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 48px;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .page-home .hero-plaque__content {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas:
      "heading card"
      "actions card";
    column-gap: clamp(44px, 8vw, 120px);
    align-items: center;
  }

  .page-home .hero-schedule-card {
    transform: rotate(2deg) translateY(12px);
  }

  .page-home .section-head {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .page-home .section-head .text-link,
  .page-home .replay-section__sync-badge {
    grid-column: 3;
    justify-self: end;
  }

  .page-home .rules-guide__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
    align-items: center;
    gap: 60px;
  }

  .page-home .replay-section__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .page-home .services-index__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .version-note__grid {
    gap: 64px;
  }
}

@media (min-width: 1080px) {
  .page-home .schedule-focus__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
