.page-home {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-off-white);
  overflow-x: hidden;
}

.page-home .home-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-primary-dark);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

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

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(104deg, rgba(6, 33, 23, .94) 0%, rgba(6, 33, 23, .78) 58%, rgba(212, 175, 55, .16) 100%);
}

.page-home .home-hero__gold {
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: polygon(78% 0, 100% 0, 100% 100%, 64% 100%);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  opacity: .92;
}

.page-home .home-hero__lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .14;
  transition: opacity .6s ease;
}

.page-home .home-hero__lines path {
  fill: none;
  stroke: var(--color-off-white);
  stroke-width: 2;
}

.page-home .home-hero:hover .home-hero__lines {
  opacity: .26;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 110px;
  padding-bottom: 84px;
}

.page-home .home-hero__copy {
  max-width: 620px;
}

.page-home .home-hero__overline {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.page-home .home-hero__title {
  margin: 0 0 18px;
  font-size: clamp(38px, 8vw, 76px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: .01em;
  color: var(--color-off-white);
}

.page-home .home-hero__title-line {
  display: block;
}

.page-home .home-hero__title-line--gold {
  color: var(--color-gold);
}

.page-home .home-hero__title-line--small {
  font-size: .32em;
  letter-spacing: .4em;
  opacity: .7;
  margin-left: .2em;
}

.page-home .home-hero__lead {
  margin: 0 0 10px;
  font-size: clamp(17px, 3vw, 22px);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--color-off-white);
}

.page-home .home-hero__desc {
  margin: 0;
  max-width: 36em;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(248, 249, 250, .72);
}

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

.page-home .home-hero__entries {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .home-hero__entry {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 2px;
  background: rgba(6, 33, 23, .82);
  border: 1px solid rgba(212, 175, 55, .5);
  color: var(--color-off-white);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.page-home .home-hero__entry:hover,
.page-home .home-hero__entry:focus-visible {
  transform: translateY(-2px);
  background: rgba(6, 33, 23, .96);
  box-shadow: 0 12px 28px rgba(6, 33, 23, .35);
}

.page-home .home-hero__entry--primary {
  background: var(--color-gold);
  border-color: var(--color-gold-light);
  color: var(--color-primary-dark);
}

.page-home .home-hero__entry--primary:hover,
.page-home .home-hero__entry--primary:focus-visible {
  background: var(--color-gold-light);
  color: var(--color-primary-dark);
}

.page-home .home-hero__entry-index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--color-gold);
}

.page-home .home-hero__entry--primary .home-hero__entry-index {
  color: var(--color-primary-dark);
}

.page-home .home-hero__entry-name {
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .06em;
}

.page-home .home-hero__entry-note {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(248, 249, 250, .6);
}

.page-home .home-hero__entry--primary .home-hero__entry-note {
  color: rgba(6, 33, 23, .68);
}

.page-home .home-data {
  padding: 72px 0;
  background: var(--color-off-white);
}

.page-home .home-data__head {
  margin-bottom: 40px;
}

.page-home .home-data__sub {
  margin: 12px 0 0;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(26, 26, 26, .72);
}

.page-home .home-data__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .home-data__board {
  padding: 26px 28px;
  border-top: 4px solid var(--color-gold);
  border-radius: 2px;
  position: relative;
}

.page-home .home-data__board .data-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-smoke);
}

.page-home .home-data__board .data-row:last-of-type {
  border-bottom: 0;
}

.page-home .home-data__status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--color-primary-light);
}

.page-home .home-data__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pageHomePulse 2s ease-in-out infinite;
}

@keyframes pageHomePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, .55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.page-home .home-data__more {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px dashed var(--color-smoke);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--color-primary-light);
}

.page-home .home-data__aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .home-data__aside p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

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

.page-home .home-replay {
  padding: 72px 0;
  background: var(--color-primary);
  color: var(--color-off-white);
}

.page-home .home-replay__head {
  margin-bottom: 40px;
}

.page-home .home-replay__head .section-head__eyebrow {
  color: var(--color-gold);
}

.page-home .home-replay__head .section-head__title {
  color: var(--color-off-white);
}

.page-home .home-replay__sub {
  margin: 12px 0 0;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(248, 249, 250, .72);
}

.page-home .home-replay__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .home-replay__card {
  padding: 28px 30px;
}

.page-home .home-replay__match {
  margin: 12px 0 18px;
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary-dark);
}

.page-home .home-replay__card .data-row {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-smoke);
}

.page-home .home-replay__card .data-row:last-of-type {
  border-bottom: 0;
}

.page-home .home-replay__btn {
  margin-top: 20px;
  display: inline-block;
}

.page-home .home-fix {
  padding: 72px 0;
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-smoke);
}

.page-home .home-fix__head {
  margin-bottom: 40px;
}

.page-home .home-fix__sub {
  margin: 12px 0 0;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(26, 26, 26, .72);
}

.page-home .home-fix__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .home-fix__steps {
  margin: 4px 0 0 6px;
  padding-left: 12px;
  border-left: 2px solid var(--color-smoke);
}

.page-home .home-fix__step {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 16px 0 16px 16px;
}

.page-home .home-fix__step::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 28px;
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  transform: rotate(45deg);
}

.page-home .home-fix__step-num {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.8;
}

.page-home .home-fix__step h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
}

.page-home .home-fix__step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(26, 26, 26, .72);
}

.page-home .home-fix__alert {
  color: var(--color-red);
  font-weight: 700;
}

.page-home .home-fix__aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.page-home .home-fix__btn {
  margin-top: 4px;
}

.page-home .home-trust {
  padding: 72px 0;
  background: var(--color-primary-dark);
  color: var(--color-off-white);
}

.page-home .home-trust__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 24px;
  margin-bottom: 40px;
}

.page-home .home-trust__value {
  display: block;
  font-size: clamp(34px, 6vw, 54px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-gold);
  letter-spacing: -.01em;
}

.page-home .home-trust__label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: .08em;
  color: rgba(248, 249, 250, .66);
}

.page-home .home-trust__note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-top: 1px solid rgba(212, 175, 55, .32);
  padding-top: 28px;
}

.page-home .home-trust__note p {
  margin: 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(248, 249, 250, .8);
}

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

.page-home .home-news {
  padding: 72px 0;
  background: var(--color-smoke);
}

.page-home .home-news__head {
  margin-bottom: 40px;
}

.page-home .home-news__sub {
  margin: 12px 0 0;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(26, 26, 26, .72);
}

.page-home .home-news__grid {
  row-gap: 24px;
}

.page-home .home-news .card__title a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color .25s ease;
}

.page-home .home-news .card__title a:hover,
.page-home .home-news .card__title a:focus-visible {
  color: var(--color-gold);
}

.page-home .home-news__more {
  margin-top: 36px;
  text-align: center;
}

@media (min-width: 768px) {
  .page-home .home-trust__inner {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 900px) {
  .page-home .home-hero {
    min-height: 92vh;
  }

  .page-home .home-hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }

  .page-home .home-hero__copy {
    flex: 0 1 55%;
  }

  .page-home .home-hero__entries {
    flex: 0 1 38%;
    margin-left: auto;
  }

  .page-home .home-hero__note {
    display: block;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    writing-mode: vertical-rl;
    color: var(--color-primary-dark);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .22em;
    opacity: .85;
  }

  .page-home .home-hero__bg {
    clip-path: polygon(0 0, 62% 0, 38% 100%, 0 100%);
  }

  .page-home .home-hero__gold {
    clip-path: polygon(68% 0, 100% 0, 100% 100%, 48% 100%);
  }

  .page-home .home-data__layout {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
  }

  .page-home .home-replay__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-fix__layout {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
  }

  .page-home .home-trust__note {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
