.page-home {
  --home-glass-strong: rgba(255, 255, 255, .11);
  --home-line: rgba(224, 225, 221, .14);
  position: relative;
  color: var(--silver);
  background:
    radial-gradient(900px 480px at 82% -5%, rgba(155, 93, 229, .2), transparent 62%),
    radial-gradient(760px 420px at 12% 18%, rgba(255, 107, 53, .1), transparent 55%),
    var(--space-blue);
}

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

.page-home a {
  color: inherit;
}

.page-home .hero {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
}

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

.page-home .hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.page-home .hero__glow--violet {
  width: 260px;
  height: 260px;
  left: 52%;
  top: -70px;
  opacity: .65;
}

.page-home .hero__glow--orange {
  width: 200px;
  height: 200px;
  right: -50px;
  bottom: 6%;
  opacity: .5;
}

.page-home .breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
  font-size: .875rem;
  color: rgba(224, 225, 221, .72);
}

.page-home .breadcrumbs a {
  color: var(--orange);
  text-decoration: none;
}

.page-home .hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.page-home .hero__lead {
  max-width: 34rem;
  margin-top: 1rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
  color: rgba(224, 225, 221, .92);
}

.page-home .hero__lead .num {
  margin: 0 .1rem;
  font-weight: 700;
}

.page-home .hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  max-width: 28rem;
  margin-top: 1.75rem;
}

.page-home .hero__metric {
  display: grid;
  gap: .25rem;
  padding: .8rem .9rem;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
}

.page-home .hero__metric .num {
  font-size: 1.4rem;
  color: var(--orange);
}

.page-home .hero__metric span:last-child {
  font-size: .8rem;
  color: rgba(224, 225, 221, .72);
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

.page-home .hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
}

.page-home .hero__orbit {
  width: min(100%, 520px);
  height: auto;
  overflow: visible;
}

.page-home .hero__countdown {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -44%);
  display: grid;
  gap: .15rem;
  justify-items: center;
  text-align: center;
  pointer-events: none;
}

.page-home .hero__countdown-label {
  font-size: .78rem;
  letter-spacing: .18em;
  color: rgba(224, 225, 221, .75);
}

.page-home .hero__countdown-digits {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .04em;
  animation: homeDigitsPulse 2.4s ease-in-out infinite;
}

.page-home .hero__countdown-meta {
  font-size: .82rem;
  color: var(--violet);
}

.page-home .lineup {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.page-home .lineup__head {
  max-width: 46rem;
}

.page-home .lineup__cards {
  margin-top: 2rem;
  align-items: stretch;
}

.page-home .lineup__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  backdrop-filter: blur(12px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.page-home .lineup__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.page-home .lineup__num {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--violet);
}

.page-home .lineup__card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--paper);
}

.page-home .lineup__card p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(224, 225, 221, .82);
}

.page-home .lineup__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--home-line);
  font-size: .85rem;
  color: rgba(224, 225, 221, .68);
}

.page-home .countdown {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.page-home .countdown__inner {
  display: grid;
  gap: 1.5rem;
}

.page-home .countdown__clock-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(255, 107, 53, .14), rgba(155, 93, 229, .08)), rgba(255, 255, 255, .05);
  background-blend-mode: screen;
  backdrop-filter: blur(12px);
}

.page-home .countdown__digits {
  display: block;
  margin: 1rem 0 .25rem;
  font-size: clamp(2.6rem, 10vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
  color: var(--orange);
  text-shadow: 0 0 34px rgba(255, 107, 53, .4);
}

.page-home .countdown__match {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--paper);
}

.page-home .countdown__weather {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 14, 39, .5);
  font-size: .9rem;
  color: rgba(224, 225, 221, .85);
}

.page-home .countdown__sync {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 1rem 0 0;
  font-size: .85rem;
  color: rgba(224, 225, 221, .7);
}

.page-home .countdown__context {
  align-self: center;
}

.page-home .countdown__context h3 {
  margin: .4rem 0 1rem;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--paper);
}

.page-home .countdown__context p {
  max-width: 34rem;
  line-height: 1.75;
  color: rgba(224, 225, 221, .82);
}

.page-home .countdown__list {
  display: grid;
  gap: .6rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.page-home .countdown__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: .95rem;
  color: rgba(224, 225, 221, .85);
}

.page-home .countdown__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
}

.page-home .history {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.page-home .history__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.page-home .history__panel {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(12px);
}

.page-home .history__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.page-home .history__table {
  display: grid;
  gap: .4rem;
}

.page-home .history__row {
  display: grid;
  grid-template-columns: 1fr auto minmax(56px, auto) auto;
  gap: .35rem .6rem;
  align-items: center;
  padding: .55rem .65rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 14, 39, .5);
  font-size: .85rem;
}

.page-home .history__row--head {
  background: transparent;
  font-size: .75rem;
  letter-spacing: .06em;
  color: rgba(224, 225, 221, .62);
  text-transform: uppercase;
}

.page-home .history__row .num {
  font-weight: 700;
}

.page-home .history__summary {
  margin: 1rem 0 0;
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(224, 225, 221, .75);
}

.page-home .history__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--home-line);
  background: rgba(155, 93, 229, .08);
}

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

.page-home .matches {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  overflow: hidden;
}

.page-home .matches__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .16;
}

.page-home .matches .site-container,
.page-home .matches .section-head,
.page-home .matches .matches__board,
.page-home .matches .matches__tip {
  position: relative;
  z-index: 1;
}

.page-home .matches__board {
  display: grid;
  gap: .8rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  background: rgba(10, 14, 39, .66);
  backdrop-filter: blur(14px);
}

.page-home .match-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  align-items: center;
  padding: .9rem 1rem;
  border: 1px solid rgba(224, 225, 221, .14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .04);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.page-home .match-row:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 245, 160, .4);
  background: rgba(255, 255, 255, .07);
}

.page-home .match-row__handle {
  display: inline-flex;
  align-items: center;
  align-self: start;
  padding-top: .1rem;
  color: rgba(224, 225, 221, .55);
  font-size: 1.1rem;
  letter-spacing: -0.08em;
  cursor: grab;
  user-select: none;
}

.page-home .match-row__time {
  color: var(--silver);
  font-weight: 700;
}

.page-home .match-row__event {
  display: grid;
  gap: .15rem;
  flex: 1 1 140px;
}

.page-home .match-row__event strong {
  font-size: .95rem;
  color: var(--paper);
}

.page-home .match-row__event em {
  font-style: normal;
  font-size: .78rem;
  color: rgba(224, 225, 221, .6);
}

.page-home .match-row__score {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
}

.page-home .matches__tip {
  margin: 1rem 0 0;
  font-size: .85rem;
  color: rgba(224, 225, 221, .68);
}

.page-home .mobile-dl {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  overflow: hidden;
}

.page-home .mobile-dl::before {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -20%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, .22), transparent 70%);
  pointer-events: none;
}

.page-home .mobile-dl__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.page-home .mobile-dl__phone-wrap {
  display: grid;
  justify-items: center;
}

.page-home .phone-frame {
  position: relative;
  width: min(272px, 68vw);
  padding: .65rem .65rem 1.1rem;
  border-radius: 2.2rem;
  background: linear-gradient(160deg, #2a2a44, #0a0e27 55%, #1a1a2e);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, .1), 0 28px 60px rgba(0, 0, 0, .5);
}

.page-home .phone-frame__speaker {
  display: block;
  width: 78px;
  height: 5px;
  margin: 0 auto .7rem;
  border-radius: 999px;
  background: rgba(224, 225, 221, .28);
}

.page-home .phone-frame__screen {
  display: block;
  width: 100%;
  aspect-ratio: .9 / 1;
  object-fit: cover;
  border-radius: 1.5rem;
}

.page-home .mobile-dl__copy .section-lead {
  color: rgba(224, 225, 221, .9);
}

.page-home .mobile-dl__copy > p:not(.section-lead) {
  max-width: 36rem;
  gap: 1rem;
  line-height: 1.75;
  color: rgba(224, 225, 221, .82);
}

.page-home .mobile-dl__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

.page-home .trust {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.page-home .trust__intro {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(155, 93, 229, .14), rgba(255, 107, 53, .07)), rgba(255, 255, 255, .05);
  backdrop-filter: blur(12px);
}

.page-home .trust__intro p {
  max-width: 46rem;
  line-height: 1.75;
  color: rgba(224, 225, 221, .84);
}

.page-home .trust__stats {
  margin-top: .5rem;
}

.page-home .trust__stats > div {
  display: grid;
  gap: .3rem;
  padding: 1rem;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-sm);
  background: rgba(10, 14, 39, .5);
}

.page-home .trust__stats .num {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--orange);
}

.page-home .trust__stats span:last-child {
  font-size: .8rem;
  color: rgba(224, 225, 221, .72);
}

.page-home .trust__links {
  display: grid;
  gap: .9rem;
  margin-top: 1.5rem;
}

.page-home .trust__link {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .4rem;
  padding: 1.05rem 1.2rem;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.page-home .trust__link span:first-child {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--paper);
}

.page-home .trust__link span:last-child {
  font-size: .82rem;
  color: rgba(224, 225, 221, .68);
}

.page-home .trust__link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, .5);
  background: rgba(255, 255, 255, .07);
}

.page-home .trust__contact {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--home-line);
  font-size: .82rem;
  color: rgba(224, 225, 221, .68);
  text-align: center;
}

@keyframes homeDigitsPulse {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 107, 53, .35);
  }
  50% {
    opacity: .88;
    text-shadow: 0 0 44px rgba(255, 107, 53, .65);
  }
}

@media (hover: hover) {
  .page-home .lineup__card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, .4);
    box-shadow: 0 22px 44px rgba(0, 0, 0, .3);
  }
}

@media (min-width: 720px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 3rem;
  }

  .page-home .hero__visual {
    min-height: 380px;
  }

  .page-home .countdown__inner {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 2rem;
  }

  .page-home .history__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 2rem;
  }

  .page-home .mobile-dl__grid {
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: 2.5rem;
  }

  .page-home .mobile-dl__phone-wrap {
    order: -1;
  }

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

@media (min-width: 960px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  }

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

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