.page-home {
  --home-gap: 40px;
  background: var(--bg-deep);
  overflow-x: clip;
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  background: #0B0E11;
  border-bottom: 1px solid var(--line-soft);
}

.page-home .home-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .home-hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.page-home .home-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(11, 14, 17, 0.45) 0%, rgba(11, 14, 17, 0.86) 55%, var(--bg-deep) 100%);
}

.page-home .home-hero__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 10px;
  background: var(--accent);
  transform: skewX(-18deg);
  transform-origin: top right;
  z-index: 2;
}

.page-home .home-hero__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 86px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent 68%);
  opacity: 0.7;
  z-index: 2;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 148px 20px 64px;
}

.page-home .home-hero__content {
  max-width: 760px;
}

.page-home .home-hero__kicker {
  margin: 14px 0 0;
  color: var(--brand);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-home .home-hero h1 {
  margin: 14px 0 0;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
}

.page-home .home-hero__abstract {
  margin: 20px 0 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-dim);
}

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

.page-home .home-hero__stats {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.page-home .home-hero__stats li {
  background: rgba(11, 14, 17, 0.56);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  backdrop-filter: blur(4px);
}

.page-home .home-hero__stats .mono {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

.page-home .home-hero__stats-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-dim);
}

.page-home .home-hero__marquee {
  position: relative;
  z-index: 1;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 14, 17, 0.72);
  color: var(--brand);
  font-size: 13px;
  letter-spacing: 0.28em;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}

.page-home .home-entries,
.page-home .home-standings,
.page-home .home-membership,
.page-home .home-download,
.page-home .home-news,
.page-home .home-trust {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  margin-bottom: var(--home-gap);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  padding: 28px 20px;
}

.page-home .section-head {
  margin-bottom: 24px;
}

.page-home .section-head h2,
.page-home .home-membership__head h2,
.page-home .home-download__content h2,
.page-home .home-news__head h2,
.page-home .home-trust__head h2 {
  margin: 4px 0;
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
}

.page-home .section-head p,
.page-home .home-membership__head p,
.page-home .home-news__head p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 640px;
}

.page-home .home-entries__grid {
  display: grid;
  gap: 14px;
}

.page-home .entry-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 20px 20px;
  background: var(--bg-panel-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.page-home .entry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  transform: skewX(-16deg);
  background: var(--brand);
}

.page-home .entry-card--orange::before {
  background: var(--accent);
}

.page-home .entry-card--blue::before {
  background: var(--blue);
}

.page-home .entry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 230, 118, 0.5);
}

.page-home .entry-card--orange:hover {
  border-color: rgba(255, 61, 0, 0.6);
}

.page-home .entry-card--blue:hover {
  border-color: rgba(0, 176, 255, 0.6);
}

.page-home .entry-card__num {
  color: var(--text-muted);
  font-size: 12px;
}

.page-home .entry-card__title {
  font-family: var(--heading-font);
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.page-home .entry-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
}

.page-home .entry-card__more {
  margin-top: auto;
  color: var(--brand);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.page-home .home-standings__intro h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  color: var(--white);
}

.page-home .home-standings__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
  margin: 0;
  max-width: 440px;
}

.page-home .home-standings__visual {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
}

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

.page-home .home-standings__panel {
  position: relative;
  overflow: hidden;
  background: #0E151B;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.page-home .home-standings__panel::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.18), transparent 70%);
  pointer-events: none;
}

.page-home .home-standings__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--white);
}

.page-home .home-standings__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: var(--data-font);
  color: var(--brand);
}

.page-home .standings-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.page-home .standings-item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .standings-item:last-child {
  border-bottom: 0;
}

.page-home .standings-item__rank {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.page-home .standings-item--first .standings-item__rank {
  color: var(--gold);
}

.page-home .standings-item__main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .standings-item__team {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.page-home .standings-item__record {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.page-home .standings-item__pts {
  min-width: 44px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.18);
  border-radius: 8px;
  padding: 6px 8px;
}

.page-home .standings-note {
  margin: 10px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--line-soft);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: right;
}

.page-home .home-membership__head {
  margin-bottom: 24px;
}

.page-home .home-membership__grid {
  display: grid;
  gap: 20px;
  align-items: center;
}

.page-home .home-membership__card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--bg-panel-2);
}

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

.page-home .member-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .member-benefits li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: var(--bg-panel-2);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-md);
}

.page-home .member-benefits li:nth-child(2) {
  border-left-color: var(--gold);
}

.page-home .member-benefits li:nth-child(3) {
  border-left-color: var(--blue);
}

.page-home .member-benefits li:nth-child(4) {
  border-left-color: var(--violet);
}

.page-home .member-benefits strong {
  font-size: 15px;
  color: var(--white);
}

.page-home .member-benefits span {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

.page-home .home-download__grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.page-home .home-download__content p {
  margin: 12px 0 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.8;
}

.page-home .home-download__points {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-download__points li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .home-download__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  transform: rotate(45deg);
  border-radius: 2px;
}

.page-home .home-download__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}

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

.page-home .home-news__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.page-home .news-grid {
  display: grid;
  gap: 14px;
}

.page-home .news-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--bg-panel-2);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(179, 136, 255, 0.5);
}

.page-home .news-card__tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--data-font);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #0B0E11;
  background: var(--violet);
}

.page-home .news-card--green .news-card__tag {
  background: var(--brand);
}

.page-home .news-card--orange .news-card__tag {
  background: var(--accent);
}

.page-home .news-card--blue .news-card__tag {
  background: var(--blue);
}

.page-home .news-card h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
}

.page-home .news-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
}

.page-home .news-card a {
  color: var(--brand);
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.page-home .home-trust__head p {
  margin: 8px 0 24px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.8;
  max-width: 680px;
}

.page-home .home-trust__grid {
  display: grid;
  gap: 14px;
}

.page-home .trust-card {
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--bg-panel-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .trust-card__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.page-home .trust-card:nth-child(2) .trust-card__num {
  color: var(--gold);
}

.page-home .trust-card:nth-child(3) .trust-card__num {
  color: var(--blue);
}

.page-home .trust-card:nth-child(4) .trust-card__num {
  color: var(--accent);
}

.page-home .trust-card:nth-child(5) .trust-card__num {
  color: var(--violet);
}

.page-home .trust-card strong {
  color: var(--white);
  font-size: 14px;
}

.page-home .trust-card p {
  margin: 0;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

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

.page-home .home-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 20px;
  padding: 14px 18px;
  border: 1px dashed var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-dim);
  font-size: 13px;
}

.page-home .home-contact-strip span::before {
  content: "◆";
  color: var(--brand);
  margin-right: 8px;
  font-size: 10px;
}

@media (min-width: 1024px) {
  .page-home {
    --home-gap: 56px;
  }

  .page-home .home-hero__inner {
    padding-top: 184px;
    padding-bottom: 96px;
  }

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

  .page-home .home-hero__marquee {
    text-align: left;
    padding-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
    letter-spacing: 0.4em;
  }

  .page-home .home-entries,
  .page-home .home-standings,
  .page-home .home-membership,
  .page-home .home-download,
  .page-home .home-news,
  .page-home .home-trust {
    padding: 56px 44px;
    margin-bottom: var(--home-gap);
  }

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

  .page-home .home-standings__layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: start;
  }

  .page-home .home-standings__intro {
    grid-column: 1;
    grid-row: 1;
  }

  .page-home .home-standings__visual {
    grid-column: 1;
    grid-row: 2;
  }

  .page-home .home-standings__panel {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 100%;
  }

  .page-home .home-standings__panel .standings-list {
    flex: 1;
  }

  .page-home .home-membership__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
  }

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

  .page-home .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home .entry-card,
  .page-home .news-card,
  .page-home .standings-item {
    transition: none;
  }
}
