.page-home {
  --home-green-glow: rgba(182, 255, 63, 0.35);
  --home-blue-glow: rgba(0, 224, 255, 0.25);
  --home-orange-glow: rgba(255, 77, 46, 0.3);
  background: var(--c-bg);
  color: var(--c-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .breadcrumbs {
  padding-top: 16px;
  padding-bottom: 0;
}

.page-home .breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .breadcrumbs__item::after {
  content: '/';
  margin-left: 8px;
  color: var(--c-gray);
}

.page-home .breadcrumbs__item:last-child::after {
  display: none;
}

.page-home .breadcrumbs__link {
  color: var(--c-gray);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.page-home .breadcrumbs__link:hover,
.page-home .breadcrumbs__link[aria-current='page'] {
  color: var(--c-green);
}

.page-home .section-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--c-blue);
  text-transform: uppercase;
}

.page-home .section-title {
  margin: 0 0 16px;
}

.page-home .tag--blue {
  background: rgba(0, 224, 255, 0.12);
  color: var(--c-blue);
  border-color: rgba(0, 224, 255, 0.4);
}

.page-home .btn--blue {
  background: transparent;
  border: 1px solid var(--c-blue);
  color: var(--c-blue);
}

.page-home .btn--blue:hover,
.page-home .btn--blue:focus-visible {
  background: rgba(0, 224, 255, 0.1);
  color: var(--c-blue);
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 88px;
}

.page-home .home-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 224, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.page-home .home-hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.page-home .home-hero__versionline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.page-home .home-hero__kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-blue);
  text-transform: uppercase;
}

.page-home .home-hero__version {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.page-home .home-hero__version-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 100px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
  color: var(--c-green);
  text-shadow:
    0 0 18px var(--home-green-glow),
    0 0 46px rgba(182, 255, 63, 0.25);
  letter-spacing: 0.02em;
}

.page-home .home-hero__version-tag {
  font-size: 14px;
  color: var(--c-gray);
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-green);
  padding: 6px 12px;
  white-space: nowrap;
}

.page-home .home-hero__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 50px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--c-white);
}

.page-home .home-hero__lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-gray);
  max-width: 560px;
}

.page-home .home-hero__lead strong {
  color: var(--c-green);
  font-weight: 600;
}

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

.page-home .home-hero__notice {
  margin: 0;
  font-size: 13px;
  color: var(--c-gray);
  border-left: 3px solid var(--c-orange);
  padding-left: 12px;
  line-height: 1.6;
}

.page-home .home-hero__stage {
  position: relative;
  min-height: 520px;
}

.page-home .home-hero__stage-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 88%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 4px;
  opacity: 0.85;
  filter: saturate(1.2) contrast(1.05);
}

.page-home .score-card {
  position: absolute;
  z-index: 2;
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-green);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  padding: 12px 14px;
  min-width: 184px;
  max-width: calc(100% - 8px);
}

.page-home .score-card--one {
  top: 12px;
  left: 0;
}

.page-home .score-card--two {
  top: 190px;
  right: 4%;
  border-left-color: var(--c-blue);
}

.page-home .score-card--three {
  bottom: 0;
  left: 4%;
  border-left-color: var(--c-orange);
}

.page-home .score-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.page-home .score-card__round {
  font-size: 12px;
  color: var(--c-gray);
}

.page-home .score-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.page-home .score-card__team {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-white);
}

.page-home .score-card__nums {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  color: var(--c-green);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.page-home .score-card--two .score-card__nums {
  color: var(--c-blue);
}

.page-home .score-card--three .score-card__nums {
  color: var(--c-orange);
}

.page-home .score-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--c-gray);
}

.page-home .score-card__link {
  color: var(--c-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 0;
}

.page-home .score-card__link:hover,
.page-home .score-card__link:focus-visible {
  color: var(--c-white);
  text-decoration: underline;
}

.page-home .home-hero__cut {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  background: linear-gradient(105deg, transparent 8%, var(--c-green) 8% 42%, transparent 42%);
  opacity: 0.9;
  pointer-events: none;
}

.page-home .home-results {
  position: relative;
  padding: 64px 0;
  background-color: var(--c-bg);
  background-image:
    repeating-linear-gradient(0deg, rgba(42, 52, 64, 0.4) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(42, 52, 64, 0.4) 0 1px, transparent 1px 80px);
}

.page-home .home-results__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

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

.page-home .home-results__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--c-line);
  box-shadow: 0 0 32px rgba(182, 255, 63, 0.1);
}

.page-home .home-results__desc {
  margin: 0 0 20px;
  color: var(--c-gray);
  font-size: 15px;
  line-height: 1.7;
}

.page-home .home-results__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.page-home .home-results__item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-line);
}

.page-home .home-results__text {
  color: var(--c-gray);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .home-leagues {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  background: var(--c-panel);
}

.page-home .home-leagues::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -20px;
  width: 58%;
  height: 32px;
  background: var(--c-green);
  transform: skewX(-18deg);
  opacity: 0.7;
  pointer-events: none;
}

.page-home .home-leagues__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
}

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

.page-home .home-leagues__wrap {
  position: relative;
  z-index: 1;
}

.page-home .home-leagues__desc {
  margin: 0 0 24px;
  color: var(--c-gray);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
}

.page-home .home-leagues__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.page-home .home-leagues__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  min-height: 44px;
  background: var(--c-bg);
  color: var(--c-white);
  border: 1px solid var(--c-line);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-home .home-leagues__tag:nth-child(3n + 2) {
  transform: translateY(6px);
}

.page-home .home-leagues__tag:nth-child(3n) {
  transform: translateY(-3px);
}

.page-home .home-leagues__tag:hover,
.page-home .home-leagues__tag:focus-visible {
  border-color: var(--c-green);
  color: var(--c-green);
  background: rgba(182, 255, 63, 0.08);
}

.page-home .home-leagues__note {
  margin: 0;
  font-size: 13px;
  color: var(--c-gray);
  border-left: 3px solid var(--c-blue);
  padding-left: 12px;
  line-height: 1.6;
}

.page-home .home-ios {
  position: relative;
  padding: 64px 0;
  background: var(--c-bg);
}

.page-home .home-ios__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.page-home .home-ios__desc {
  margin: 0 0 20px;
  color: var(--c-gray);
  font-size: 15px;
  line-height: 1.7;
}

.page-home .home-ios__desc strong {
  color: var(--c-white);
  font-weight: 600;
}

.page-home .home-ios__steps {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: iosStep;
}

.page-home .home-ios__steps li {
  counter-increment: iosStep;
  position: relative;
  padding: 10px 0 10px 40px;
  color: var(--c-gray);
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid var(--c-line);
}

.page-home .home-ios__steps li::before {
  content: counter(iosStep);
  position: absolute;
  left: 0;
  top: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 46, 0.14);
  color: var(--c-orange);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  border-radius: 2px;
}

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

.page-home .home-ios__img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--c-line);
  box-shadow: 0 0 36px rgba(0, 224, 255, 0.1);
}

.page-home .home-filter {
  position: relative;
  padding: 64px 0;
  background:
    linear-gradient(135deg, rgba(0, 224, 255, 0.06), transparent 60%),
    var(--c-bg);
}

.page-home .home-filter__desc {
  margin: 0 0 28px;
  color: var(--c-gray);
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
}

.page-home .home-filter__steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.page-home .home-filter__step {
  background: var(--c-panel);
  border-left: 4px solid var(--c-blue);
  padding: 24px;
  position: relative;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-home .home-filter__step:hover {
  transform: translateY(-4px);
  border-left-color: var(--c-green);
}

.page-home .home-filter__num {
  font-family: var(--font-display);
  font-size: 42px;
  font-style: italic;
  color: var(--c-blue);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.page-home .home-filter__step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--c-white);
  font-weight: 600;
}

.page-home .home-filter__step p {
  margin: 0;
  font-size: 14px;
  color: var(--c-gray);
  line-height: 1.6;
}

.page-home .home-switch {
  padding: 64px 0;
  background: var(--c-panel);
}

.page-home .home-switch__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.page-home .home-switch__card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.page-home .home-switch__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--c-green);
}

.page-home .home-switch__card:nth-child(2)::before {
  background: var(--c-blue);
}

.page-home .home-switch__card:nth-child(3)::before {
  background: var(--c-orange);
}

.page-home .home-switch__card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--c-white);
  font-weight: 600;
}

.page-home .home-switch__card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--c-gray);
  line-height: 1.6;
}

.page-home .home-about {
  padding: 64px 0 88px;
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
}

.page-home .home-about__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.page-home .home-about__intro p:not(.section-kicker) {
  margin: 0 0 20px;
  color: var(--c-gray);
  font-size: 15px;
  line-height: 1.7;
}

.page-home .home-about__trust {
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-top: 4px solid var(--c-green);
  padding: 24px;
}

.page-home .home-about__trust h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--c-white);
  font-weight: 600;
}

.page-home .home-about__trust p {
  margin: 0;
  color: var(--c-gray);
  font-size: 14px;
  line-height: 1.7;
}

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeTagPulse {
  0% {
    opacity: 0.4;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .score-card {
    animation: homeFadeUp 0.5s var(--ease) both;
  }

  .page-home .score-card--two {
    animation-delay: 0.08s;
  }

  .page-home .score-card--three {
    animation-delay: 0.16s;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag {
    animation: homeTagPulse var(--dur) var(--ease) both;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag:nth-child(1) {
    animation-delay: 0ms;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag:nth-child(2) {
    animation-delay: 60ms;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag:nth-child(3) {
    animation-delay: 120ms;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag:nth-child(4) {
    animation-delay: 180ms;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag:nth-child(5) {
    animation-delay: 240ms;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag:nth-child(6) {
    animation-delay: 300ms;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag:nth-child(7) {
    animation-delay: 360ms;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag:nth-child(8) {
    animation-delay: 420ms;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag:nth-child(9) {
    animation-delay: 480ms;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag:nth-child(10) {
    animation-delay: 540ms;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag:nth-child(11) {
    animation-delay: 600ms;
  }

  .page-home .home-leagues__cloud[data-visible='true'] .home-leagues__tag:nth-child(12) {
    animation-delay: 660ms;
  }
}

@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 48px 0 104px;
  }

  .page-home .home-hero__container {
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 56px;
  }

  .page-home .home-hero__stage {
    min-height: 580px;
  }

  .page-home .home-hero__stage-img {
    width: 74%;
    height: 90%;
  }

  .page-home .score-card {
    padding: 14px 16px;
  }

  .page-home .score-card--one {
    top: 24px;
    left: 0;
  }

  .page-home .score-card--two {
    top: 224px;
    right: 6%;
  }

  .page-home .score-card--three {
    bottom: 16px;
    left: 8%;
  }

  .page-home .score-card__nums {
    font-size: 30px;
  }

  .page-home .home-results,
  .page-home .home-leagues,
  .page-home .home-ios,
  .page-home .home-filter,
  .page-home .home-switch {
    padding: 76px 0;
  }

  .page-home .home-results__wrap {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 56px;
  }

  .page-home .home-ios__wrap {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 56px;
  }

  .page-home .home-filter__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

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

  .page-home .home-about {
    padding: 76px 0 96px;
  }

  .page-home .home-about__wrap {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 48px;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .page-home .home-hero__container {
    grid-template-columns: minmax(0, 1fr) 520px;
  }

  .page-home .home-hero__stage {
    min-height: 620px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
  }
}
