.page-home {
  --home-gap: 20px;
  --home-gap-lg: 32px;
  --home-pitch: rgba(192, 192, 192, 0.07);
  --home-line: rgba(57, 255, 20, 0.10);
  --home-card-bg: linear-gradient(135deg, rgba(14, 42, 92, 0.72), rgba(10, 31, 68, 0.92));
  background:
    repeating-linear-gradient(0deg, transparent 0 44px, var(--home-pitch) 44px 45px),
    repeating-linear-gradient(90deg, transparent 0 44px, var(--home-pitch) 44px 45px),
    var(--c-space);
  color: var(--c-light);
  overflow-x: hidden;
}

.page-home .home-context {
  padding-top: 20px;
}
.page-home .home-context .breadcrumb {
  border-left: 3px solid var(--c-neon);
  padding-left: 12px;
}
.page-home .home-context .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.page-home .home-context .breadcrumb-link {
  color: var(--c-silver);
  text-decoration: none;
  font-family: var(--font-data);
  font-size: 13px;
}
.page-home .home-context .breadcrumb-current {
  color: var(--c-neon);
  font-family: var(--font-data);
  font-size: 13px;
}

.page-home .home-hero {
  position: relative;
  padding: 28px 0 20px;
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 70%;
  height: 100%;
  background: linear-gradient(115deg, rgba(57, 255, 20, 0.14), transparent 55%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.page-home .home-hero__inner {
  display: grid;
  gap: var(--home-gap-lg);
  position: relative;
}
.page-home .home-hero__stage {
  position: relative;
}
.page-home .home-hero__stadium {
  display: block;
  width: 100%;
  height: auto;
  max-width: 640px;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  border: 1px solid var(--c-border);
}
.page-home .home-hero__player {
  position: absolute;
  right: 6px;
  bottom: -18px;
  width: 42%;
  max-width: 220px;
  border: 2px solid var(--c-neon);
  background: var(--c-deep-2);
  padding: 8px;
  transform: rotate(-2deg);
  box-shadow: 8px 8px 0 rgba(57, 255, 20, 0.12);
}
.page-home .home-hero__player img {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .home-hero__player .status-chip {
  display: inline-flex;
  margin-top: 8px;
}

.page-home .home-quick-dock {
  background: var(--home-card-bg);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-neon);
  padding: 22px 18px 18px;
  position: relative;
}
.page-home .home-eyebrow {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-neon);
  letter-spacing: 0.12em;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.page-home .home-quick-dock .page-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.06;
  margin: 0 0 12px;
  color: var(--c-light);
  letter-spacing: 0.01em;
}
.page-home .home-quick-dock__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-silver);
  margin: 0 0 18px;
}
.page-home .home-quick-dock__cards {
  display: grid;
  gap: 12px;
}
.page-home .home-dock-card {
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(6, 12, 24, 0.55);
  border: 1px solid var(--c-border);
  text-decoration: none;
  color: var(--c-light);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.page-home .home-dock-card:hover,
.page-home .home-dock-card:focus-visible {
  border-color: var(--c-neon);
  background: rgba(57, 255, 20, 0.08);
  transform: translateX(4px);
}
.page-home .home-dock-card__num {
  font-family: var(--font-data);
  font-size: 15px;
  color: var(--c-neon);
}
.page-home .home-dock-card__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.page-home .home-dock-card__body strong {
  font-size: 16px;
  line-height: 1.3;
}
.page-home .home-dock-card__preview {
  display: block;
  font-size: 13px;
  color: var(--c-cyan);
  font-family: var(--font-data);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity var(--transition), max-height var(--transition);
}
.page-home .home-dock-card:hover .home-dock-card__preview,
.page-home .home-dock-card:focus-visible .home-dock-card__preview {
  opacity: 1;
  max-height: 24px;
}
.page-home .home-dock-card__arrow {
  font-family: var(--font-data);
  font-size: 18px;
  color: var(--c-neon);
  text-align: right;
  transition: transform var(--transition);
}
.page-home .home-dock-card:hover .home-dock-card__arrow {
  transform: translate(2px, -2px);
}
.page-home .home-dock-rounds {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.page-home .home-dock-rounds__label {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-silver);
}
.page-home .home-round-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-light);
  text-decoration: none;
  background: rgba(10, 31, 68, 0.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.page-home .home-round-chip:hover,
.page-home .home-round-chip:focus-visible {
  border-color: var(--c-neon);
  color: var(--c-neon);
  background: rgba(57, 255, 20, 0.08);
}

.page-home .home-section {
  padding: 34px 0 8px;
  position: relative;
}
.page-home .home-section--standings,
.page-home .home-section--teams,
.page-home .home-section--homeaway,
.page-home .home-section--update,
.page-home .home-section--leagues,
.page-home .home-section--regular {
  padding-top: 40px;
}
.page-home .home-section__head {
  margin-bottom: 22px;
}
.page-home .home-section__head .section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 4.5vw, 34px);
  line-height: 1.12;
  margin: 0 0 8px;
  color: var(--c-light);
}
.page-home .home-section__head .lead {
  max-width: 640px;
  color: var(--c-silver);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.page-home .home-standings-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-home .home-table-card,
.page-home .home-meta-card,
.page-home .home-update-card {
  background: var(--home-card-bg);
  border: 1px solid var(--c-border);
  padding: 18px 16px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.page-home .home-table-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.page-home .home-table-card__head h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}
.page-home .home-table-scroll {
  overflow-x: auto;
}
.page-home .home-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-family: var(--font-data);
  font-size: 14px;
}
.page-home .home-table th,
.page-home .home-table td {
  padding: 9px 8px;
  border-bottom: 1px solid rgba(192, 192, 192, 0.14);
  text-align: left;
}
.page-home .home-table thead th {
  color: var(--c-silver);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-home .home-table tbody tr:hover {
  background: rgba(57, 255, 20, 0.06);
}
.page-home .home-table__rank {
  color: var(--c-neon);
  font-weight: 700;
}
.page-home .home-table__points {
  color: var(--c-cyan);
  font-weight: 700;
}
.page-home .home-table-card__note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--c-silver);
  line-height: 1.6;
}

.page-home .home-meta-card,
.page-home .home-update-card {
  display: grid;
  align-content: start;
  gap: 6px;
}
.page-home .home-meta-card .data-number,
.page-home .home-update-card .data-number {
  font-size: 44px;
  line-height: 1;
  color: var(--c-neon);
}
.page-home .home-meta-card__text {
  font-size: 14px;
  color: var(--c-silver);
  line-height: 1.6;
  margin: 4px 0 0;
}

.page-home .home-expand {
  margin-top: 12px;
  border: 1px dashed var(--c-border);
  padding: 10px 12px;
}
.page-home .home-expand summary {
  cursor: pointer;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-cyan);
  list-style: none;
}
.page-home .home-expand summary::-webkit-details-marker {
  display: none;
}
.page-home .home-expand summary::before {
  content: "▸ ";
  color: var(--c-neon);
}
.page-home .home-expand[open] summary::before {
  content: "▾ ";
}
.page-home .home-expand p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--c-light);
  line-height: 1.6;
}

.page-home .home-check-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.page-home .home-check-list li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--c-light);
}
.page-home .home-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-neon);
  font-family: var(--font-data);
}

.page-home .home-teams-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-home .home-team-card {
  background: var(--home-card-bg);
  border: 1px solid var(--c-border);
  padding: 18px 16px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.page-home .home-team-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.page-home .home-team-card__head h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  margin: 0;
}
.page-home .home-team-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.page-home .home-team-stat {
  display: grid;
  gap: 2px;
  border-left: 2px solid var(--c-neon);
  padding-left: 10px;
}
.page-home .home-team-stat__label {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--c-silver);
  letter-spacing: 0.08em;
}
.page-home .home-team-stat .data-number {
  font-size: 26px;
  color: var(--c-light);
}
.page-home .home-teams__more {
  margin: 18px 0 0;
}

.page-home .home-homeaway__grid {
  display: grid;
  gap: 18px;
}
.page-home .home-homeaway__content {
  background: var(--home-card-bg);
  border: 1px solid var(--c-border);
  padding: 22px 18px;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.page-home .home-bar-row {
  display: grid;
  grid-template-columns: 92px 1fr 52px;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.page-home .home-bar-row__label {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-silver);
}
.page-home .home-bar {
  height: 8px;
  background: rgba(6, 12, 24, 0.8);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.page-home .home-bar__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--c-neon), var(--c-cyan));
}
.page-home .home-bar__fill--away {
  background: linear-gradient(90deg, var(--c-cyan), var(--c-deep-2));
}
.page-home .home-homeaway__viz img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 600px;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  border: 1px solid var(--c-border);
}

.page-home .home-update-banner {
  background:
    linear-gradient(115deg, rgba(57, 255, 20, 0.10), transparent 45%),
    var(--home-card-bg);
  border: 1px solid var(--c-border);
  padding: 22px 18px;
  display: grid;
  gap: 16px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}
.page-home .home-update-banner__head .section-title {
  font-size: clamp(22px, 4vw, 30px);
  margin: 0;
}
.page-home .home-update-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-home .home-update-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-light);
}
.page-home .home-update-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--c-neon);
  font-family: var(--font-data);
  font-weight: 700;
}
.page-home .home-update-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-league-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.page-home .home-round-chip--lg {
  padding: 10px 18px;
  font-size: 15px;
}
.page-home .home-league-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border: 1px solid var(--c-border);
  background: rgba(10, 31, 68, 0.5);
  padding: 18px 14px;
}
.page-home .home-league-meta__item {
  display: grid;
  gap: 4px;
  text-align: center;
}
.page-home .home-league-meta .data-number {
  font-size: 34px;
  color: var(--c-neon);
  line-height: 1;
}
.page-home .home-league-meta .data-label {
  font-size: 13px;
  color: var(--c-silver);
}

.page-home .home-regular {
  background: var(--home-card-bg);
  border: 1px solid var(--c-border);
  padding: 24px 18px;
  display: grid;
  gap: 20px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}
.page-home .home-regular__content {
  display: grid;
  align-content: start;
}
.page-home .home-regular__content .lead {
  max-width: 520px;
  color: var(--c-silver);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 16px;
}
.page-home .home-regular__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-home .home-regular__list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-light);
}
.page-home .home-regular__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--c-neon), transparent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
}
.page-home .home-regular__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-regular__aside {
  border-top: 1px solid var(--c-border);
  padding-top: 18px;
}
.page-home .home-regular__aside-title {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-cyan);
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}
.page-home .home-regular__aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-home .home-regular__aside-list a {
  color: var(--c-light);
  text-decoration: none;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 6px;
  display: block;
  font-size: 15px;
  transition: color var(--transition), border-color var(--transition);
}
.page-home .home-regular__aside-list a:hover,
.page-home .home-regular__aside-list a:focus-visible {
  color: var(--c-neon);
  border-color: var(--c-neon);
}
.page-home .home-regular__note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--c-silver);
}

.page-home .home-download {
  padding: 40px 0 56px;
}
.page-home .home-download__inner {
  display: grid;
  gap: 20px;
  align-items: center;
}
.page-home .home-download__app {
  justify-self: center;
  max-width: 240px;
}
.page-home .home-download__app img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--c-border);
  box-shadow: 12px 12px 0 rgba(57, 255, 20, 0.10);
}
.page-home .home-download__content .section-title {
  font-size: clamp(24px, 4.5vw, 34px);
}
.page-home .home-download__content .lead {
  color: var(--c-silver);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.page-home .home-download__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.page-home .home-download__note {
  margin-top: 14px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-silver);
}

.page-home a:focus-visible {
  outline: 2px solid var(--c-neon);
  outline-offset: 2px;
}

@media (min-width: 720px) {
  .page-home .home-context {
    padding-top: 28px;
  }
  .page-home .home-hero {
    padding: 44px 0 30px;
  }
  .page-home .home-hero__inner {
    grid-template-columns: 44fr 56fr;
    align-items: center;
  }
  .page-home .home-quick-dock {
    padding: 28px 26px 24px;
  }
  .page-home .home-section {
    padding: 48px 0 12px;
  }
  .page-home .home-section--standings,
  .page-home .home-section--teams,
  .page-home .home-section--homeaway,
  .page-home .home-section--update,
  .page-home .home-section--leagues,
  .page-home .home-section--regular {
    padding-top: 56px;
  }
  .page-home .home-standings-grid {
    grid-template-columns: 2fr 1fr;
  }
  .page-home .home-table-card {
    grid-row: span 2;
  }
  .page-home .home-meta-card {
    grid-column: 2;
    grid-row: 1;
  }
  .page-home .home-update-card {
    grid-column: 2;
    grid-row: 2;
  }
  .page-home .home-teams-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .home-homeaway__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .page-home .home-update-banner {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
  .page-home .home-league-meta {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .home-regular {
    grid-template-columns: 1fr 0.8fr;
  }
  .page-home .home-regular__aside {
    border-top: 0;
    border-left: 1px solid var(--c-border);
    padding-top: 0;
    padding-left: 22px;
  }
  .page-home .home-download {
    padding: 60px 0 80px;
  }
  .page-home .home-download__inner {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }
}

@media (min-width: 1080px) {
  .page-home .home-hero__inner {
    gap: 48px;
  }
  .page-home .home-hero__stage {
    transform: translateY(12px);
  }
  .page-home .home-table-card {
    padding: 24px 22px;
  }
  .page-home .home-meta-card,
  .page-home .home-update-card {
    padding: 24px 22px;
  }
  .page-home .home-homeaway__content {
    padding: 30px 28px;
  }
  .page-home .home-update-banner {
    padding: 30px 28px;
  }
  .page-home .home-regular {
    padding: 30px 28px;
  }
}
