.page-home {
  background: var(--paper);
  color: var(--text-dark);
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-home .section-head {
  margin: 0 0 clamp(20px, 4vw, 32px);
}

.page-home .section-head--split {
  display: grid;
  gap: 14px;
}

.page-home .section-kicker {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 8px;
}

.page-home .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  margin: 0;
  text-wrap: balance;
}

.page-home .section-head__note {
  margin: 10px 0 0;
  max-width: 52ch;
  line-height: 1.65;
}

.page-home .band-deep {
  background: var(--deep-blue);
  color: var(--text-light);
}

.page-home .band-ink {
  background: var(--ink);
  color: var(--text-light);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(224, 230, 237, 0.55);
}

.page-home .btn--ghost:hover {
  background: var(--neon);
  border-color: var(--neon);
  color: var(--ink);
}

.page-home .btn--white {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
}

.page-home .btn--white:hover {
  background: var(--ink);
  color: var(--paper);
}

.page-home .home-hero {
  background: var(--deep-blue);
  color: var(--text-light);
  padding: clamp(28px, 5vw, 56px) 0 0;
}

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

.page-home .home-hero .breadcrumbs {
  color: var(--neon);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-home .home-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0.015em;
  margin: 14px 0 18px;
  text-wrap: balance;
}

.page-home .home-hero__lead {
  margin: 0 0 24px;
  max-width: 66ch;
  line-height: 1.82;
  color: var(--text-light);
}

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

.page-home .home-hero__status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(224, 230, 237, 0.18);
}

.page-home .home-hero__status > div {
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--orange);
  padding: 12px 14px;
}

.page-home .home-hero__status dt {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(224, 230, 237, 0.68);
}

.page-home .home-hero__status dd {
  font-family: var(--font-number);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--neon);
  margin: 4px 0 0;
}

.page-home .home-hero__slash {
  height: 40px;
  margin-top: 36px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%);
}

.page-home .home-dashboard {
  padding: clamp(40px, 7vw, 76px) 0;
}

.page-home .home-dash-grid {
  display: grid;
  gap: clamp(16px, 3vw, 28px);
}

.page-home .home-dash-photo {
  margin: 0;
  background: var(--deep-blue);
  border: var(--bd-lg) solid var(--ink);
  box-shadow: var(--shadow-hard);
}

.page-home .home-dash-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.page-home .home-dash-chart {
  grid-column: 1 / -1;
  width: 100%;
  height: auto;
  margin-top: 4px;
  background: var(--slate);
  border: var(--bd-sm) solid var(--ink);
}

.page-home .home-dash-chart .chart-line--a,
.page-home .home-dash-chart .chart-line--b {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .home-dash-chart .chart-line--a {
  stroke: var(--orange);
  stroke-width: 4;
}

.page-home .home-dash-chart .chart-line--b {
  stroke: var(--neon);
  stroke-width: 2.5;
}

.page-home .home-dash-aside {
  background: var(--deep-blue);
  color: var(--text-light);
  padding: 24px;
  border-left: 6px solid var(--neon);
}

.page-home .home-dash-aside h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}

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

.page-home .home-dash-aside li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.6;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .home-dash-aside li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-home .home-dash-aside li span {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-home .home-dash-aside__note {
  margin: 18px 0 0;
  padding: 10px 12px;
  background: rgba(198, 249, 31, 0.14);
  border-left: 3px solid var(--neon);
  font-family: var(--font-number);
  font-size: 0.85rem;
}

.page-home .home-toc {
  display: none;
}

.page-home .home-slash {
  height: 44px;
}

.page-home .home-slash--neon {
  background: var(--neon);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 46%);
}

.page-home .home-previews {
  padding: clamp(40px, 7vw, 80px) 0;
}

.page-home .home-previews .section-kicker {
  color: var(--neon);
}

.page-home .home-previews .section-head__note {
  color: rgba(224, 230, 237, 0.82);
}

.page-home .home-previews__grid {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
}

.page-home .home-previews__leagues h3 {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 14px;
}

.page-home .league-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.page-home .league-list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  color: var(--text-light);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid transparent;
  padding: 13px 14px;
}

.page-home .league-list a:hover {
  background: var(--orange);
  color: var(--ink);
  border-left-color: var(--neon);
}

.page-home .league-list em {
  font-style: normal;
  font-family: var(--font-number);
  font-size: 0.76rem;
  opacity: 0.6;
}

.page-home .home-previews__map {
  margin: 0;
  background: var(--ink);
  border: var(--bd-lg) solid var(--ink);
  box-shadow: var(--shadow-hard);
}

.page-home .home-previews__map img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-home .home-previews__map figcaption {
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-home .home-matches {
  padding: clamp(40px, 7vw, 80px) 0;
}

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

.page-home .match-list li {
  padding: clamp(18px, 3vw, 28px) 0;
  border-top: 2px solid var(--ink);
  display: grid;
  gap: 10px;
}

.page-home .match-list li:last-of-type {
  border-bottom: 2px solid var(--ink);
}

.page-home .match-list__league {
  font-family: var(--font-number);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 800;
}

.page-home .match-list h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 0;
  letter-spacing: 0.03em;
}

.page-home .match-list p {
  margin: 0;
  max-width: 68ch;
  line-height: 1.7;
}

.page-home .match-list a {
  justify-self: start;
  font-weight: 700;
  color: var(--deep-blue);
  text-underline-offset: 4px;
}

.page-home .match-list a::after {
  content: " \2192";
  color: var(--orange);
}

.page-home .home-matches__more {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.page-home .home-download {
  padding: clamp(40px, 7vw, 80px) 0;
}

.page-home .home-download__grid {
  display: grid;
  gap: clamp(20px, 4vw, 34px);
}

.page-home .home-download__lead {
  max-width: 62ch;
  line-height: 1.75;
  margin: 16px 0 22px;
}

.page-home .v4-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .v4-features li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--orange);
  padding: 14px 16px;
  font-weight: 600;
}

.page-home .v4-features span {
  color: var(--neon);
  font-weight: 800;
  white-space: nowrap;
}

.page-home .home-download__shot {
  margin: 0;
  background: var(--ink);
  border: var(--bd-lg) solid var(--ink);
  box-shadow: var(--shadow-hard);
  order: -1;
}

.page-home .home-download__shot img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .home-follow {
  padding: clamp(40px, 7vw, 80px) 0;
}

.page-home .home-follow__grid {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
}

.page-home .home-follow__photo {
  margin: 0;
  border: var(--bd-lg) solid var(--orange);
  box-shadow: var(--shadow-hard);
}

.page-home .home-follow__photo img {
  aspect-ratio: 5 / 7;
  object-fit: cover;
}

.page-home .home-follow .section-kicker {
  color: var(--neon);
}

.page-home .home-follow__lead {
  max-width: 68ch;
  line-height: 1.8;
  margin: 14px 0 22px;
}

.page-home .follow-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .follow-features li {
  padding-left: 40px;
  position: relative;
  font-weight: 600;
}

.page-home .follow-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 28px;
  height: 10px;
  background: var(--orange);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

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

.page-home .home-updates {
  padding: clamp(40px, 7vw, 80px) 0;
}

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

.page-home .feed-list li {
  border-left: 4px solid var(--ink);
  padding: 4px 0 4px clamp(16px, 3vw, 26px);
  margin-left: 4px;
}

.page-home .feed-list__tag {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-number);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-home .feed-list h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.page-home .feed-list h3 a {
  color: var(--text-dark);
  text-decoration: none;
}

.page-home .feed-list h3 a:hover {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-home .feed-list p {
  margin: 0;
  max-width: 78ch;
  line-height: 1.7;
}

.page-home .home-updates__more {
  margin-top: 28px;
}

.page-home .home-support {
  background: var(--orange);
  color: var(--ink);
  padding: clamp(40px, 7vw, 76px) 0;
}

.page-home .home-support .section-kicker {
  color: var(--deep-blue);
}

.page-home .home-support h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  margin: 0 0 10px;
}

.page-home .home-support p {
  max-width: 62ch;
  line-height: 1.75;
}

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

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

.page-home .home-support .btn-primary {
  background: var(--ink);
  color: var(--text-light);
  border-color: var(--ink);
}

.page-home .home-support .btn-primary:hover {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
  color: var(--neon);
}

@keyframes home-stat-flash {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.page-home .home-dash-main .stat-block__num {
  animation: home-stat-flash 5s var(--ease) infinite;
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 768px) {
  .page-home .section-head--split {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .page-home .section-head__note {
    text-align: right;
  }

  .page-home .home-hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .page-home .home-hero__status {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .home-hero h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
  }

  .page-home .home-dash-grid {
    grid-template-columns: 5fr 7fr;
  }

  .page-home .home-dash-photo {
    grid-row: span 2;
  }

  .page-home .home-dash-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .home-dash-aside {
    grid-column: 2;
  }

  .page-home .home-previews__grid {
    grid-template-columns: 5fr 7fr;
    align-items: start;
  }

  .page-home .home-download__grid {
    grid-template-columns: 7fr 5fr;
    align-items: center;
  }

  .page-home .home-download__shot {
    order: 2;
  }

  .page-home .home-follow__grid {
    grid-template-columns: 4fr 6fr;
    align-items: center;
  }

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

  .page-home .home-support__actions {
    justify-content: flex-end;
  }
}

@media (min-width: 1280px) {
  .page-home .home-hero h1 {
    font-size: 5rem;
  }

  .page-home .home-dash-main {
    gap: 18px;
  }
}

@media (min-width: 1600px) {
  .page-home .home-toc {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    left: calc((100vw - var(--max-w)) / 2 - 148px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
    width: 128px;
    background: var(--ink);
    color: var(--text-light);
    border: var(--bd-sm) solid var(--ink);
    box-shadow: var(--shadow-hard);
    padding: 16px 14px;
  }

  .page-home .home-toc__label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--neon);
    margin-bottom: 6px;
  }

  .page-home .home-toc a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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