.page-home {
  --home-panel-bg: rgba(13, 28, 58, 0.88);
  --home-grid-line: rgba(58, 90, 140, 0.22);
  --home-grid-line-soft: rgba(58, 90, 140, 0.12);
  --home-highlight: rgba(200, 255, 0, 0.1);
}

.page-home .home-context {
  background: var(--c-deep);
  border-bottom: 1px solid rgba(58, 90, 140, 0.2);
  padding: 10px 0;
}

.page-home .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--c-dim);
}

.page-home .breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  margin-right: 8px;
  color: rgba(176, 196, 222, 0.5);
}

.page-home .breadcrumb__link {
  color: var(--c-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-home .breadcrumb__link:hover {
  color: var(--c-lime);
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 107, 53, 0.18), transparent 36%),
    linear-gradient(150deg, var(--c-deep) 0%, var(--c-electric) 62%, var(--c-deep) 100%);
  padding: 48px 0 56px;
}

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

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--home-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 42%;
  width: 120%;
  height: 140%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(200, 255, 0, 0.08) 42%,
    rgba(255, 107, 53, 0.16) 46%,
    transparent 50%
  );
  transform: rotate(-8deg);
  z-index: 0;
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-home .home-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.16em;
  color: var(--c-lime);
}

.page-home .home-hero__tag::before {
  content: "";
  width: 32px;
  height: 2px;
  display: inline-block;
  background: var(--c-lime);
  transform: skewX(-20deg);
}

.page-home .home-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  color: var(--c-white);
  text-transform: uppercase;
}

.page-home .home-hero__title-em {
  display: block;
  color: var(--c-orange);
}

.page-home .home-hero__lead {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-dim);
}

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

.page-home .home-hero__foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-left: 12px;
  border-left: 2px solid rgba(200, 255, 0, 0.6);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-dim);
}

.page-home .home-hero__foot-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-lime);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.18);
}

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

.page-home .home-hero__panel::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 44px;
  height: 44px;
  border-top: 2px solid var(--c-lime);
  border-right: 2px solid var(--c-lime);
  opacity: 0.8;
  z-index: 3;
}

.page-home .home-hero__panel-inner {
  position: relative;
  background: var(--home-panel-bg);
  border: 1px solid rgba(176, 196, 222, 0.28);
  clip-path: var(--clip-corner);
  padding: 22px 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.page-home .home-panel-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(58, 90, 140, 0.5);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-dim);
}

.page-home .home-panel-top__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .home-panel-top__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-lime);
  box-shadow: 0 0 10px rgba(200, 255, 0, 0.8);
}

.page-home .home-panel-top__coord {
  color: var(--c-lime);
}

.page-home .home-panel-list {
  display: grid;
  gap: 10px;
  padding: 14px 0;
}

.page-home .home-panel-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 10px;
  background: rgba(30, 58, 138, 0.28);
  border-left: 2px solid rgba(58, 90, 140, 0.6);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.page-home .home-panel-row:hover {
  border-left-color: var(--c-lime);
  background: rgba(30, 58, 138, 0.42);
}

.page-home .home-panel-row__time {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-white);
}

.page-home .home-panel-row__main {
  min-width: 0;
}

.page-home .home-panel-row__league {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--c-dim);
}

.page-home .home-panel-row__score {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--c-white);
}

.page-home .home-panel-row__score b {
  font-family: var(--font-heading);
  color: var(--c-orange);
}

.page-home .home-panel-row__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  border: 1px solid rgba(200, 255, 0, 0.3);
  border-radius: 2px;
  background: var(--home-highlight);
  font-size: 11px;
  color: var(--c-lime);
  white-space: nowrap;
}

.page-home .home-panel-row__badge--live {
  border-color: rgba(255, 107, 53, 0.34);
  background: rgba(255, 107, 53, 0.12);
  color: var(--c-orange);
}

.page-home .home-panel-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(58, 90, 140, 0.5);
  font-size: 12px;
}

.page-home .home-panel-foot__code {
  color: var(--c-dim);
}

.page-home .home-panel-foot__link {
  color: var(--c-lime);
  font-weight: 600;
  text-decoration: none;
}

.page-home .home-hero__btn svg,
.page-home .btn svg {
  width: 16px;
  height: 16px;
}

.page-home .section {
  position: relative;
  padding: 64px 0;
}

.page-home .section-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.page-home .section-head__index {
  flex: 0 0 auto;
  padding-top: 2px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: var(--c-lime);
}

.page-home .section-head__body {
  padding-top: 4px;
}

.page-home .section-head__title {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--c-white);
}

.page-home .section-head__note {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--c-dim);
}

.page-home .home-schedule {
  background:
    linear-gradient(135deg, rgba(30, 58, 138, 0.06), rgba(11, 27, 58, 0.1)),
    var(--c-light);
  color: var(--c-ink);
}

.page-home .home-schedule .section-head__title {
  color: var(--c-deep);
}

.page-home .home-schedule .section-head__index {
  color: var(--c-orange);
}

.page-home .home-schedule .section-head__note {
  color: var(--c-soft);
}

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

.page-home .home-schedule__scroll {
  display: grid;
  gap: 16px;
}

.page-home .home-schedule__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.page-home .home-schedule__tab {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-soft);
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, 0.16);
  cursor: default;
  transition: all 0.3s var(--ease-out);
}

.page-home .home-schedule__tab--active {
  color: var(--c-white);
  background: var(--c-deep);
  border-color: var(--c-deep);
}

.page-home .home-schedule-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, 0.14);
  clip-path: var(--clip-corner);
  box-shadow: 0 10px 32px rgba(11, 27, 58, 0.08);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.page-home .home-schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 27, 58, 0.14);
}

.page-home .home-schedule-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.page-home .home-schedule-card__sport {
  padding: 3px 8px;
  background: rgba(255, 107, 53, 0.1);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-orange);
}

.page-home .home-schedule-card__code {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 13px;
  color: var(--c-dim);
}

.page-home .home-schedule-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-deep);
}

.page-home .home-schedule-card__meta {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-soft);
}

.page-home .home-schedule-card__vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin: 4px 0;
  padding: 12px;
  background: rgba(30, 58, 138, 0.05);
}

.page-home .home-schedule-card__team {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-deep);
  overflow-wrap: anywhere;
}

.page-home .home-schedule-card__divider {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-orange);
}

.page-home .home-schedule-card__link {
  justify-self: start;
  color: var(--c-deep);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-home .home-schedule-card__link:hover {
  color: var(--c-orange);
}

.page-home .home-schedule__aside {
  display: grid;
  gap: 20px;
  align-content: start;
}

.page-home .home-schedule__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 22px 20px;
  background: var(--c-deep);
  clip-path: var(--clip-corner);
  color: var(--c-white);
}

.page-home .home-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: start;
}

.page-home .home-step__num {
  grid-row: span 2;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--c-lime);
}

.page-home .home-step__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .home-step__text {
  grid-column: 2;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-dim);
}

.page-home .home-step__line {
  width: 2px;
  height: 24px;
  margin-left: 17px;
  background: linear-gradient(to bottom, rgba(200, 255, 0, 0.7), rgba(200, 255, 0, 0.1));
}

.page-home .home-reports {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 107, 53, 0.14), transparent 28%),
    linear-gradient(160deg, var(--c-dark) 0%, var(--c-deep) 70%);
  color: var(--c-white);
}

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

.page-home .home-reports__list {
  display: grid;
  gap: 4px;
}

.page-home .home-report {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0 14px;
  border-left: 2px solid transparent;
  border-bottom: 1px solid rgba(58, 90, 140, 0.3);
  transition: border-left-color 0.3s ease;
}

.page-home .home-report:hover {
  border-left-color: var(--c-lime);
}

.page-home .home-report__tag {
  align-self: flex-start;
  padding: 3px 7px;
  border: 1px solid rgba(255, 107, 53, 0.45);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--c-orange);
}

.page-home .home-report__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--c-white);
}

.page-home .home-report__excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-dim);
}

.page-home .home-report__time {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-lime);
}

.page-home .home-reports__aside {
  display: grid;
  gap: 20px;
  align-content: start;
}

.page-home .home-reports__promo {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--c-electric);
  clip-path: var(--clip-corner);
  color: var(--c-white);
}

.page-home .home-reports__promo-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-lime);
}

.page-home .home-reports__promo-value {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  color: var(--c-white);
}

.page-home .home-reports__promo-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-dim);
}

.page-home .home-download {
  background:
    linear-gradient(180deg, rgba(30, 58, 138, 0.04), rgba(11, 27, 58, 0.08)),
    var(--c-light);
  color: var(--c-ink);
}

.page-home .home-download .section-head__title {
  color: var(--c-deep);
}

.page-home .home-download .section-head__index {
  color: var(--c-orange);
}

.page-home .home-download .section-head__note {
  color: var(--c-soft);
}

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

.page-home .home-download__media {
  display: grid;
  gap: 12px;
  align-content: start;
}

.page-home .home-download__media-frame {
  overflow: hidden;
  background: var(--c-deep);
  clip-path: var(--clip-corner);
}

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

.page-home .home-download__media-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-soft);
}

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

.page-home .home-download-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, 0.16);
  clip-path: var(--clip-corner);
  box-shadow: 0 6px 22px rgba(11, 27, 58, 0.06);
  color: var(--c-ink);
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.page-home .home-download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(11, 27, 58, 0.14);
}

.page-home .home-download-card__code {
  grid-row: span 2;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--c-orange);
}

.page-home .home-download-card__title {
  grid-column: 2;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-deep);
}

.page-home .home-download-card__text {
  grid-column: 2;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-soft);
}

.page-home .home-trust {
  background:
    linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.46) 100%),
    var(--c-deep);
}

.page-home .home-trust .section-head__title {
  color: var(--c-white);
}

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

.page-home .home-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 18px;
  background: rgba(30, 58, 138, 0.42);
  border: 1px solid rgba(58, 90, 140, 0.45);
  clip-path: var(--clip-corner);
}

.page-home .home-stat__num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: var(--c-lime);
}

.page-home .home-stat__label {
  font-size: 13px;
  color: var(--c-dim);
}

.page-home .home-trust__panels {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.page-home .home-trust-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 20px;
  background: rgba(11, 27, 58, 0.6);
  border: 1px solid rgba(58, 90, 140, 0.4);
  clip-path: var(--clip-corner);
}

.page-home .home-trust-panel--lime {
  border-color: rgba(200, 255, 0, 0.3);
}

.page-home .home-trust-panel__index {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--c-orange);
}

.page-home .home-trust-panel__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .home-trust-panel__text {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-dim);
}

.page-home .home-trust-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .home-trust__promise {
  margin: 24px 0 0;
  padding: 20px 22px;
  border-left: 3px solid var(--c-orange);
  background: rgba(255, 107, 53, 0.08);
  clip-path: var(--clip-corner);
}

.page-home .home-trust__promise-quote {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--c-white);
}

.page-home .home-trust__promise-source {
  margin: 8px 0 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-orange);
}

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

.page-home a:focus-visible {
  outline: 2px solid var(--c-lime);
  outline-offset: 2px;
}

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

@media (min-width: 768px) {
  .page-home .section {
    padding: 80px 0;
  }

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

  .page-home .section-head__title {
    font-size: 36px;
  }

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

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

  .page-home .home-reports__layout {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 72px 0 96px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
    gap: 64px;
    align-items: center;
  }

  .page-home .home-hero__lead {
    max-width: 58ch;
    font-size: 17px;
  }

  .page-home .home-schedule__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 48px;
    align-items: center;
  }

  .page-home .home-download__grid {
    grid-template-columns: 260px 1fr;
    gap: 44px;
    align-items: start;
  }

  .page-home .home-trust__panels {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .page-home .home-trust__promise {
    margin-top: 32px;
    padding: 24px 32px;
  }
}
