.page-home {
  --hero-title: clamp(3rem, 9.5vw, 7.6rem);
  --hero-slogan: clamp(1.05rem, 2.4vw, 1.7rem);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .page-home__hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 7rem 0 4.5rem;
  background: var(--cobalt);
  overflow: hidden;
}

.page-home .page-home__hero::before {
  content: "";
  position: absolute;
  right: -2vw;
  top: 13%;
  width: 18vw;
  min-width: 140px;
  height: 14px;
  background: var(--volt);
  transform: rotate(-8deg);
  z-index: 2;
  opacity: .9;
}

.page-home .page-home__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 245, 240, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 240, .07) 1px, transparent 1px),
    linear-gradient(115deg, rgba(15, 42, 74, .94) 0%, rgba(15, 42, 74, .7) 48%, rgba(26, 26, 26, .58) 100%);
  background-size: 56px 56px, 56px 56px, 100% 100%;
  z-index: 1;
  pointer-events: none;
}

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

.page-home .hero__container {
  position: relative;
  z-index: 3;
}

.page-home .hero__edition {
  margin: 0 0 1.25rem;
  padding-left: .8rem;
  border-left: 3px solid var(--flame);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-home .hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--hero-title);
  line-height: .92;
  letter-spacing: .02em;
  color: var(--paper);
}

.page-home .hero__brand {
  display: block;
}

.page-home .hero__slogan {
  display: inline-block;
  margin-top: 1rem;
  background: var(--flame);
  padding: .5rem 1.15rem;
  box-shadow: .45rem .45rem 0 var(--volt);
  font-family: var(--font-body);
  font-size: var(--hero-slogan);
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--paper);
  transform: skewX(-8deg);
}

.page-home .hero__lede {
  max-width: 34rem;
  margin: 1.75rem 0 2.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 245, 240, .88);
}

.page-home .hero__lede strong {
  color: var(--volt);
  font-weight: 700;
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.page-home .page-home__hero .btn--primary,
.page-home .page-home__philosophy .btn--primary {
  background: var(--deep-cyan);
  border: 1px solid var(--deep-cyan);
  color: #ffffff;
}

.page-home .page-home__hero .btn--ghost,
.page-home .page-home__news .btn--ghost,
.page-home .page-home__data .btn--ghost {
  background: transparent;
  border: 1px solid rgba(245, 245, 240, .5);
  color: var(--paper);
}

.page-home .page-home__quick {
  padding: 4.5rem 0 5rem;
  background: var(--paper-deep);
}

.page-home .page-home__quick .section__lede {
  max-width: 40rem;
}

.page-home .quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 2.6rem;
}

.page-home .quick-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.4rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.page-home .quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(20, 20, 20, .12);
}

.page-home .quick-card__num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--muted);
}

.page-home .quick-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  transition: transform .3s var(--ease);
}

.page-home .quick-card:hover .quick-card__icon {
  transform: scale(1.05);
}

.page-home .quick-card__icon svg {
  width: 46px;
  height: 46px;
}

.page-home .quick-card--schedule .quick-card__icon {
  background: var(--cobalt);
  color: var(--cyan);
}

.page-home .quick-card--member .quick-card__icon {
  background: var(--flame);
  color: #ffffff;
}

.page-home .quick-card--subscribe .quick-card__icon {
  background: var(--volt);
  color: var(--cobalt);
}

.page-home .quick-card--subscribe .quick-card__icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(204, 255, 0, .6);
  border-radius: 50%;
  animation: page-home-pulse 2.4s var(--ease) infinite;
}

.page-home .quick-card__name {
  margin-bottom: .45rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: .04em;
}

.page-home .quick-card__desc {
  max-width: 12rem;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--muted);
}

@keyframes page-home-pulse {
  0% {
    transform: scale(.88);
    opacity: .8;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.page-home .page-home__matches {
  padding: 5rem 0 5.5rem;
  background: var(--paper);
}

.page-home .matches__head {
  max-width: 52rem;
  margin-bottom: 2.5rem;
}

.page-home .matches__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-home .match-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--card);
  transition: transform .3s var(--ease);
}

.page-home .match-card:hover {
  transform: translateY(-4px);
}

.page-home .match-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--flame);
  z-index: 1;
}

.page-home .match-card--city::before {
  background: var(--deep-cyan);
}

.page-home .match-card--lake::before {
  background: var(--flame);
}

.page-home .match-card__img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.page-home .match-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.page-home .match-card--side .match-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  height: 100%;
}

.page-home .match-card__tag {
  display: inline-block;
  margin-bottom: .75rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--flame-dark);
}

.page-home .match-card__title {
  margin: 0 0 .4rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1.2;
}

.page-home .match-card__meta {
  margin: 0 0 1rem;
  font-size: .92rem;
  color: var(--muted);
}

.page-home .match-card--side .match-card__meta {
  margin-bottom: .2rem;
}

.page-home .match-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.page-home .match-stat {
  border-radius: 4px;
  background: var(--paper-deep);
  padding: .45rem .7rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--muted);
}

.page-home .match-stat strong {
  color: var(--cobalt);
  font-weight: 700;
}

.page-home .page-home__news {
  padding: 5rem 0;
  background: var(--cobalt);
  color: var(--paper);
}

.page-home .page-home__news .section__kicker,
.page-home .page-home__data .section__kicker {
  color: var(--cyan);
}

.page-home .page-home__news .section__title,
.page-home .page-home__data .section__title {
  color: var(--paper);
}

.page-home .page-home__news .section__lede,
.page-home .page-home__data .section__lede {
  color: rgba(245, 245, 240, .72);
}

.page-home .news__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.page-home .news__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .news__item {
  border: 1px solid rgba(245, 245, 240, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.page-home .news__item:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-3px);
}

.page-home .news__link {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  height: 100%;
  padding: 1.4rem;
  color: inherit;
  text-decoration: none;
}

.page-home .news__meta {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-home .news__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.4;
}

.page-home .news__read {
  margin-top: auto;
  font-size: .85rem;
  color: var(--volt);
}

.page-home .page-home__philosophy {
  padding: 5rem 0;
  background: var(--paper);
}

.page-home .philosophy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-home .philosophy__lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--ink);
}

.page-home .philosophy__points {
  list-style: none;
  margin: 1.6rem 0 1.8rem;
  padding: 0;
  display: grid;
  gap: .85rem;
}

.page-home .philosophy__point {
  border-left: 3px solid var(--flame);
  padding-left: .85rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}

.page-home .philosophy__cta {
  margin-top: .4rem;
}

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

.page-home .philosophy__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.page-home .philosophy__stamp {
  position: absolute;
  left: 1rem;
  bottom: -1rem;
  padding: .5rem 1.1rem;
  background: var(--volt);
  color: var(--cobalt);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  transform: rotate(-2deg);
  box-shadow: .4rem .4rem 0 var(--flame);
}

.page-home .page-home__data {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: var(--cobalt);
  color: var(--paper);
}

.page-home .page-home__data::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 74, .72);
  z-index: 1;
  pointer-events: none;
}

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

.page-home .data__container {
  position: relative;
  z-index: 2;
}

.page-home .data__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
}

.page-home .data-panel {
  padding: 1.4rem 1rem 1.25rem;
  border: 1px solid rgba(245, 245, 240, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  text-align: center;
}

.page-home .data-label {
  display: block;
  margin-bottom: .45rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, .62);
  line-height: 1.4;
}

.page-home .display-number {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.45rem, 3.4vw, 2.3rem);
  line-height: 1.1;
  color: var(--volt);
  white-space: nowrap;
}

.page-home .data-panel:nth-child(even) .display-number {
  color: var(--cyan);
}

.page-home .data__trust {
  max-width: 46rem;
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--volt);
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, .78);
}

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

@media (max-width: 799px) {
  .page-home .data-panel:last-child {
    grid-column: span 2;
  }
}

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

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

@media (min-width: 800px) {
  .page-home .data__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
  }
}

@media (min-width: 880px) {
  .page-home .matches__grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .page-home .match-card--feature {
    grid-column: span 6;
  }

  .page-home .match-card--side {
    grid-column: span 3;
  }
}

@media (min-width: 900px) {
  .page-home .philosophy__grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
  }
}
