.page-home {
  --home-gap: 20px;
  --home-gap-lg: 36px;
  --home-hero-min-h: 680px;
  background: var(--color-bg);
  overflow-x: clip;
}

.page-home .home-hero {
  position: relative;
  isolation: isolate;
  min-height: var(--home-hero-min-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-gold-line);
  background:
    radial-gradient(ellipse at 78% 22%, rgba(232, 184, 63, 0.14), transparent 46%),
    radial-gradient(ellipse at 12% 84%, rgba(198, 255, 61, 0.08), transparent 42%),
    var(--color-bg);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-block: 56px 44px;
}

.page-home .home-hero__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(217, 164, 39, 0.35);
  border-radius: var(--radius);
  background: var(--color-glass);
  backdrop-filter: blur(12px);
}

.page-home .home-hero__rail-note {
  width: 100%;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-family: var(--font-numeric);
}

.page-home .home-hero__rail a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-text);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color var(--duration) var(--ease-out), background var(--duration) var(--ease-out), color var(--duration) var(--ease-out);
}

.page-home .home-hero__rail a:hover {
  border-color: var(--color-gold-line);
  background: rgba(232, 184, 63, 0.1);
}

.page-home .home-hero__rail b {
  font-family: var(--font-numeric);
  color: var(--color-gold);
  font-size: 0.9em;
}

.page-home .home-hero__crumb {
  margin: 0 0 8px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--color-mute);
}

.page-home .home-hero__title {
  margin: 0;
}

.page-home .home-hero__title span {
  display: block;
  font-size: 0.34em;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-top: 0.5em;
}

.page-home .home-hero__lede {
  max-width: 640px;
  margin-top: 20px;
}

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

.page-home .filter-console {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(217, 164, 39, 0.3);
  border-radius: var(--radius);
  background: var(--color-glass);
  backdrop-filter: blur(12px);
}

.page-home .home-hero__quickfilter {
  margin-top: 24px;
}

.page-home .filter-console__label {
  padding: 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold);
}

.page-home .filter-console__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.page-home .filter-console__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-home .filter-console__input:focus-visible {
  outline: none;
}

.page-home .filter-console__input:focus-visible + .filter-console__chip {
  outline: 2px solid var(--color-flash);
  outline-offset: 2px;
}

.page-home .filter-console__input:checked + .filter-console__chip {
  background: var(--color-flash);
  border-color: var(--color-flash);
  color: var(--color-bg);
  font-weight: 700;
}

.page-home .filter-console__chip {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--color-mute);
  border: 1px solid rgba(167, 176, 194, 0.35);
  border-radius: 999px;
  background: rgba(11, 14, 20, 0.4);
  transition: all var(--duration) var(--ease-out);
  user-select: none;
}

.page-home .filter-console__list {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .filter-console__list li {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(11, 14, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--color-text);
}

.page-home .filter-console__list li.is-dom {
  border-left: 3px solid var(--color-flash);
}

.page-home .filter-console__sport {
  font-weight: 700;
  color: var(--color-gold);
}

.page-home .filter-console__list i {
  font-style: normal;
  font-family: var(--font-numeric);
  font-size: 0.82rem;
  color: var(--color-mute);
}

.page-home .filter-console:has(#home-filter-dom:checked) .filter-console__list li:not(.is-dom) {
  display: none;
}

.page-home .home-hero__aside {
  padding: 16px;
  border: 1px solid rgba(217, 164, 39, 0.32);
  border-radius: var(--radius);
  background: var(--color-glass);
  backdrop-filter: blur(12px);
}

.page-home .home-hero__aside-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-gold);
}

.page-home .home-hero__live {
  border-bottom: 1px solid rgba(167, 176, 194, 0.16);
}

.page-home .home-hero__live:last-of-type {
  border-bottom: 0;
}

.page-home .home-hero__live summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: baseline;
  padding: 12px 28px 12px 0;
  font-weight: 600;
  color: var(--color-text);
}

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

.page-home .home-hero__live summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-numeric);
  color: var(--color-gold);
  font-size: 1.1rem;
  line-height: 1;
}

.page-home .home-hero__live[open] summary::after {
  content: "–";
}

.page-home .home-hero__live time {
  font-family: var(--font-numeric);
  font-size: 0.72rem;
  color: var(--color-mute);
}

.page-home .home-hero__live p {
  margin: 0 0 12px;
  padding-right: 8px;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--color-mute);
}

.page-home .home-hero__live-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--color-success);
}

.page-home .home-hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  animation: home-pulse-ripple 2s var(--ease-out) infinite;
}

@keyframes home-pulse-ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 214, 143, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 214, 143, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 214, 143, 0);
  }
}

.page-home .home-section {
  position: relative;
  padding-block: 64px 56px;
  border-bottom: 1px solid rgba(217, 164, 39, 0.22);
}

.page-home .home-section__head {
  max-width: 760px;
  margin-bottom: 40px;
}

.page-home .home-section__head .eyebrow {
  margin-bottom: 8px;
}

.page-home .home-section__head .section-title {
  margin: 0 0 12px;
}

.page-home .home-section__head .lede {
  margin: 0;
}

.page-home .home-filter__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .home-filter__copy h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.page-home .home-filter__copy p {
  color: var(--color-mute);
  line-height: 1.75;
}

.page-home .home-filter__points {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-home .home-filter__points li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text);
  line-height: 1.6;
}

.page-home .home-filter__points li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--color-flash);
  transform: rotate(45deg);
}

.page-home .home-filter__points b {
  color: var(--color-gold);
}

.page-home .home-filter__media {
  position: relative;
}

.page-home .home-filter__media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(217, 164, 39, 0.28);
  border-radius: var(--radius);
}

.page-home .home-filter__caption {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: var(--color-mute);
  text-align: right;
}

.page-home .home-desktop {
  background: linear-gradient(180deg, rgba(18, 23, 36, 0.5), rgba(11, 14, 20, 0) 240px);
}

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

.page-home .home-desktop__step {
  position: relative;
  padding: 28px 22px 22px;
  background: var(--color-panel);
  border: 1px solid rgba(167, 176, 194, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.page-home .home-desktop__step:hover {
  border-color: var(--color-gold-line);
  transform: translateY(-4px);
}

.page-home .home-desktop__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-flash));
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform var(--duration) var(--ease-out);
}

.page-home .home-desktop__step:hover::before {
  transform: scaleX(1);
}

.page-home .home-desktop__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border: 1px solid var(--color-gold-line);
  border-radius: 50%;
  font-family: var(--font-numeric);
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(232, 184, 63, 0.08);
}

.page-home .home-desktop__step h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.page-home .home-desktop__step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-mute);
  line-height: 1.7;
}

.page-home .home-desktop__promo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(217, 164, 39, 0.3);
}

.page-home .home-desktop__promo h3 {
  margin: 0 0 6px;
  color: var(--color-gold);
  font-size: 1.2rem;
}

.page-home .home-desktop__promo p {
  margin: 0;
  color: var(--color-mute);
  line-height: 1.7;
}

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

.page-home .home-report__feature {
  position: relative;
  margin: 0;
}

.page-home .home-report__feature img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(217, 164, 39, 0.3);
  border-radius: var(--radius);
}

.page-home .home-report__feature figcaption {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--color-mute);
}

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

.page-home .home-report__item {
  position: relative;
  padding: 20px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition: border-color var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
}

.page-home .home-report__item:hover {
  border-color: var(--color-gold-line);
  background: rgba(18, 23, 36, 0.9);
}

.page-home .home-report__item h3 {
  margin: 10px 0 6px;
  font-size: 1.02rem;
  color: var(--color-text);
}

.page-home .home-report__item p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-mute);
}

.page-home .home-report__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-home .home-report__refresh {
  display: inline-flex;
  color: var(--color-flash);
  animation: home-spin 2.4s linear infinite;
}

.page-home .home-report__refresh svg {
  display: block;
}

@keyframes home-spin {
  to {
    transform: rotate(360deg);
  }
}

.page-home .home-data__panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(217, 164, 39, 0.28);
}

.page-home .home-data__chartbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 0;
}

.page-home .home-data__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
}

.page-home .home-data__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 14px;
  background: rgba(11, 14, 20, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
}

.page-home .home-data__stat .stat__label {
  font-size: 0.82rem;
  color: var(--color-mute);
}

.page-home .home-data__stat .stat__value {
  font-family: var(--font-numeric);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
}

.page-home .home-data__stat .stat__value span {
  font-size: 0.62em;
  color: var(--color-flash);
  margin-left: 2px;
  font-weight: 400;
}

.page-home .home-data__note {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 0.88rem;
  color: var(--color-mute);
  line-height: 1.75;
}

.page-home .home-explore {
  padding-block: 64px 72px;
}

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

.page-home .home-explore__row3,
.page-home .home-explore__row2 {
  display: grid;
  gap: 20px;
}

.page-home .home-explore__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px;
  background: var(--color-panel);
  border: 1px solid rgba(167, 176, 194, 0.14);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-text);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: border-color var(--duration) var(--ease-out), transform var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
}

.page-home .home-explore__card:hover {
  border-color: var(--color-gold-line);
  background: rgba(18, 23, 36, 0.85);
  transform: translateY(-4px);
}

.page-home .home-explore__card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.page-home .home-explore__card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--color-mute);
}

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

@media (min-width: 960px) {
  .page-home .home-hero__inner {
    grid-template-columns: 180px minmax(0, 1fr) 280px;
    gap: 40px;
    align-items: start;
    padding-block: 80px 64px;
  }

  .page-home .home-hero__rail {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: var(--radius);
  }

  .page-home .home-hero__rail-note {
    width: auto;
    margin-bottom: 8px;
  }

  .page-home .home-hero__rail a {
    display: flex;
    justify-content: flex-start;
  }

  .page-home .home-filter__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
  }

  .page-home .home-desktop__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-home .home-desktop__promo {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 26px 28px;
  }

  .page-home .home-report__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
  }

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

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

@media (min-width: 1280px) {
  .page-home .home-hero__inner {
    grid-template-columns: 200px minmax(0, 1fr) 300px;
    gap: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__pulse,
  .page-home .home-report__refresh {
    animation: none;
  }
}
