.page-home {
  --home-gap: 1.25rem;
  --home-ink: #0B1E36;
  --home-gold-soft: rgba(201, 162, 39, .14);
  --home-gold-gradient: linear-gradient(135deg, #C9A227 0%, #F0D98C 100%);
  position: relative;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg-deep);
  font-family: var(--font-body);
}

.page-home .breadcrumb {
  padding-top: 1.25rem;
}

.page-home .hero-bento {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.page-home .hero-bento::before {
  content: "";
  position: absolute;
  top: 4.5rem;
  left: -20%;
  right: -20%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 22%, var(--cyan) 58%, transparent 100%);
  transform: rotate(-7deg);
  opacity: .45;
  pointer-events: none;
}

.page-home .hero-bento__item {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 1.5rem;
  overflow: hidden;
}

.page-home .hero-bento__item--clock {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(160deg, #132A4A 0%, #0B1E36 100%);
}

.page-home .hero-clock {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin: .5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.page-home .hero-clock__digit {
  background: var(--home-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .hero-clock__colon {
  color: var(--red);
  animation: home-blink 1.2s steps(2, start) infinite;
}

@keyframes home-blink {
  50% { opacity: .45; }
}

.page-home .hero-clock__label {
  margin: .75rem 0 0;
  color: var(--text-dim);
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-home .hero-clock__bar {
  height: 4px;
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.page-home .hero-clock__bar span {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.page-home .hero-bento__item--feature {
  padding: 0;
}

.page-home .hero-feature__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 0;
}

.page-home .hero-feature__anchor {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
  font-size: .9rem;
}

.page-home .hero-feature__title {
  max-width: 14ch;
  margin: .9rem 1.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.12;
  font-weight: 900;
}

.page-home .hero-feature__lead {
  max-width: 46ch;
  margin: .9rem 1.5rem;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.75;
}

.page-home .hero-feature__media {
  margin-top: .5rem;
  background: #10233D;
  aspect-ratio: 4 / 3;
}

.page-home .hero-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .hero-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1.25rem 1.5rem 1.5rem;
}

.page-home .hero-bento__item--standings {
  border-top: 3px solid var(--gold);
}

.page-home .hero-standings__title {
  margin: .4rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 800;
}

.page-home .hero-standings__img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.page-home .hero-standings__note {
  margin-top: .75rem;
  font-size: .85rem;
}

.page-home .standings-list {
  display: grid;
  gap: .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .standings-row {
  position: relative;
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  align-items: center;
  gap: .5rem;
  padding: .65rem .8rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, .22);
  overflow: hidden;
}

.page-home .standings-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar, 70%);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(201, 162, 39, .28), rgba(201, 162, 39, .02));
  pointer-events: none;
}

.page-home .standings-row > span {
  position: relative;
  z-index: 1;
}

.page-home .standings-row__rank {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--gold);
}

.page-home .standings-row__name {
  font-size: .95rem;
  font-weight: 600;
}

.page-home .standings-row__pts {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--cyan);
}

.page-home .chapter {
  margin-bottom: 2rem;
}

.page-home .chapter__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: .9;
  color: var(--gold);
}

.page-home .chapter__title {
  margin: .55rem 0 .5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.1;
  font-weight: 800;
}

.page-home .chapter__lead {
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 52ch;
}

.page-home .quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
}

.page-home .quick-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.5rem;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, .25);
  background: var(--bg-card);
  color: var(--text);
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.page-home .quick-card:hover,
.page-home .quick-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .35);
}

.page-home .quick-card__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}

.page-home .quick-card__title {
  margin-top: .35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 800;
}

.page-home .quick-card__desc {
  color: var(--text-dim);
  font-size: .9rem;
  line-height: 1.55;
}

.page-home .quick-card--gold {
  background: linear-gradient(150deg, rgba(201, 162, 39, .3), var(--bg-card) 55%);
}

.page-home .quick-card--red {
  border-color: rgba(211, 47, 47, .4);
}

.page-home .quick-card--red .quick-card__num {
  color: var(--red);
}

.page-home .quick-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 209, 178, .22);
  background: linear-gradient(120deg, #132A4A, var(--bg-card));
}

.page-home .quick-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.page-home .quick-banner__body h3 {
  margin-bottom: .35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.page-home .quick-banner__body p {
  margin-bottom: .75rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.page-home .latest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
}

.page-home .latest-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(160, 179, 204, .14);
  background: var(--bg-card);
}

.page-home .latest-card--primary {
  background: linear-gradient(145deg, #1E3A61, #162B4A);
  border-color: transparent;
}

.page-home .latest-card--pale {
  background: #11314D;
}

.page-home .latest-card__title {
  margin: .75rem 0 .45rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 800;
}

.page-home .latest-card__summary {
  margin-bottom: 1rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.page-home .latest-more {
  grid-column: 1 / -1;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(201, 162, 39, .45);
  background: var(--home-gold-soft);
  text-align: center;
}

.page-home .latest-more a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.page-home .latest-more a:hover {
  color: var(--cyan);
}

.page-home .category-section {
  padding: 4rem 0;
  color: var(--home-ink);
  background: var(--bg-pale);
}

.page-home .category-section .chapter__lead {
  color: rgba(11, 30, 54, .72);
}

.page-home .category-section .chapter__title {
  color: inherit;
}

.page-home .chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
}

.page-home .chip {
  padding: .5rem 1.25rem;
  border: 1px solid rgba(11, 30, 54, .14);
  border-radius: 999px;
  background: rgba(11, 30, 54, .06);
  color: var(--home-ink);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.page-home .chip:hover {
  background: var(--gold);
  color: #0B1E36;
}

.page-home .category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
}

.page-home .category-card {
  position: relative;
  display: block;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--bg-deep);
  color: var(--text);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 1.2rem) 0, 100% 1.2rem, 100% 100%, 0 100%);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.page-home .category-card:hover,
.page-home .category-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(11, 30, 54, .22);
}

.page-home .category-card__icon {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}

.page-home .category-card h3 {
  margin: .8rem 0 .5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.page-home .category-card p {
  color: var(--text-dim);
  font-size: .95rem;
  line-height: 1.65;
}

.page-home .category-card--full {
  border: 1px solid rgba(11, 30, 54, .12);
  background: rgba(11, 30, 54, .05);
  color: var(--home-ink);
  clip-path: none;
}

.page-home .category-card--full p {
  color: rgba(11, 30, 54, .72);
}

.page-home .category-card--full .category-card__icon {
  color: var(--red);
}

.page-home .standings-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
}

.page-home .standings-board__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
}

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

.page-home .standings-board__media figcaption {
  padding: .9rem 1.1rem;
  color: var(--text-dim);
  font-size: .85rem;
}

.page-home .standings-board__body {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-card);
}

.page-home .standings-chart {
  display: block;
  width: 100%;
  height: auto;
  margin: .35rem 0 1.25rem;
}

.page-home .standings-meta {
  margin-top: .9rem;
  font-size: .85rem;
}

.page-home .disclosure {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(160, 179, 204, .16);
}

.page-home .disclosure__inner {
  display: grid;
  gap: .5rem;
  padding-top: .85rem;
}

.page-home .mini-form {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: .6rem;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(160, 179, 204, .08);
}

.page-home .mini-form__label {
  font-size: .9rem;
  font-weight: 700;
}

.page-home .mini-form__marks {
  display: flex;
  gap: .3rem;
}

.page-home .mini-form__mark {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: .4rem;
  font-size: .7rem;
  font-weight: 800;
}

.page-home .mini-form__mark--win {
  background: rgba(0, 209, 178, .18);
  color: var(--cyan);
}

.page-home .mini-form__mark--draw {
  background: rgba(160, 179, 204, .2);
  color: var(--text-dim);
}

.page-home .mini-form__mark--loss {
  background: rgba(211, 47, 47, .2);
  color: var(--red);
}

.page-home .mini-form__pts {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--gold);
}

.page-home .update-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--home-gap);
}

.page-home .update-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
}

.page-home .update-card--stat {
  position: relative;
  overflow: hidden;
}

.page-home .update-card--stat::after {
  content: "";
  position: absolute;
  right: -1.4rem;
  bottom: -1.4rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(201, 162, 39, .12);
}

.page-home .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  background: var(--home-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .update-card--stat p {
  margin-top: .55rem;
  color: var(--text-dim);
  font-size: .85rem;
  line-height: 1.5;
}

.page-home .update-card--text {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.page-home .update-card--text img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.page-home .update-card--text h3 {
  margin-bottom: .5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
}

.page-home .update-card--text p {
  color: var(--text-dim);
  line-height: 1.7;
}

.page-home .update-card--text .btn {
  margin-top: .55rem;
}

.page-home .update-trust {
  margin: 3rem 0 0;
  padding: 1.75rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--home-gold-soft);
  color: var(--text-dim);
  line-height: 1.8;
  font-style: italic;
}

.page-home .back-top {
  margin-top: 2.5rem;
  text-align: center;
}

.page-home .back-top a {
  color: var(--text-dim);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

.page-home .back-top a:hover {
  color: var(--gold);
}

.page-home .skew-decor {
  position: relative;
  height: 4rem;
  margin: 1rem 0;
  overflow: hidden;
  pointer-events: none;
}

.page-home .skew-decor span {
  position: absolute;
  top: 50%;
  right: -6%;
  left: -6%;
  height: 2px;
  transform: skewX(-14deg);
  background: linear-gradient(90deg, transparent, var(--gold) 14%, var(--cyan) 46%, var(--red) 76%, transparent);
  opacity: .75;
}

.page-home .btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

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

  .page-home .quick-banner {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 40%) 1fr;
  }

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

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

  .page-home .update-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .update-card--text {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 220px) 1fr;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .page-home .hero-bento {
    grid-template-columns: repeat(12, 1fr);
    padding-top: 2rem;
  }

  .page-home .hero-bento__item--clock {
    grid-column: 1 / 5;
    grid-row: 1;
  }

  .page-home .hero-bento__item--feature {
    grid-column: 5 / 13;
    grid-row: 1 / 3;
  }

  .page-home .hero-bento__item--standings {
    grid-column: 1 / 5;
    grid-row: 2;
  }

  .page-home .hero-feature__media {
    margin-top: .75rem;
  }

  .page-home .quick-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .page-home .quick-card:nth-child(1) {
    grid-column: span 6;
  }

  .page-home .quick-card:nth-child(2),
  .page-home .quick-card:nth-child(3) {
    grid-column: span 3;
  }

  .page-home .quick-card:nth-child(4) {
    grid-column: span 7;
  }

  .page-home .quick-banner {
    grid-column: span 5;
    grid-template-columns: minmax(0, 44%) 1fr;
  }

  .page-home .latest-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .page-home .latest-card--primary {
    grid-column: span 7;
  }

  .page-home .latest-card:nth-child(2) {
    grid-column: span 5;
  }

  .page-home .latest-card:nth-child(3) {
    grid-column: span 5;
  }

  .page-home .latest-more {
    grid-column: span 7;
  }

  .page-home .category-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .page-home .category-card--hero {
    grid-column: span 7;
  }

  .page-home .category-card--standard {
    grid-column: span 5;
  }

  .page-home .category-card--full {
    grid-column: 1 / -1;
  }

  .page-home .standings-board {
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
  }

  .page-home .standings-board__media {
    grid-column: span 4;
  }

  .page-home .standings-board__body {
    grid-column: span 8;
  }

  .page-home .update-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .page-home .update-card--stat {
    grid-column: span 2;
  }

  .page-home .update-card--text {
    grid-column: span 6;
    grid-template-columns: minmax(0, 46%) 1fr;
  }
}

.page-home {
  --bar: 1rem;
}
