.page-home {
  --home-import-line: rgba(255, 255, 255, 0.04);
  --home-import-line-strong: rgba(0, 229, 255, 0.28);
  --home-import-orange: rgba(255, 109, 0, 0.32);
  display: block;
  color: var(--color-text);
  background:
    linear-gradient(165deg, var(--color-navy) 0%, var(--color-navy-deep) 44%, var(--color-charcoal) 100%);
  overflow: hidden;
  perspective: 1200px;
}

.page-home .container {
  width: min(var(--container-w), 100% - 32px);
  margin-inline: auto;
}

.page-home .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.page-home .section-label::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-blue));
  border-radius: 2px;
}

.page-home .section-label--hero {
  color: var(--color-orange);
}

.page-home .section-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.page-home .section-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-muted);
  margin-top: 16px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--speed-fast) var(--ease-out), box-shadow var(--speed-fast) var(--ease-out), background var(--speed-fast) var(--ease-out);
  gap: 8px;
}

.page-home .btn:hover,
.page-home .btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.page-home .btn--primary {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-deep));
  color: #fff;
  box-shadow: var(--orange-glow);
}

.page-home .btn--primary:hover {
  box-shadow: 0 0 32px rgba(255, 109, 0, 0.6);
}

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

.page-home .btn--ghost:hover {
  box-shadow: var(--blue-glow);
}

.page-home .btn--login {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-deep));
  color: #fff;
  box-shadow: var(--orange-glow);
  padding: 0 28px;
}

.page-home .btn--login:hover {
  box-shadow: 0 0 36px rgba(255, 109, 0, 0.6);
}

.page-home .btn-login__long {
  display: inline;
}

.page-home .btn-login__short {
  display: none;
}

.page-home .home-hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  isolation: isolate;
}

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

.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: brightness(0.34) contrast(1.12) saturate(1.1);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.55), transparent 88%);
}

.page-home .home-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 22% 36%, rgba(255, 109, 0, 0.18), transparent 52%),
    linear-gradient(90deg, var(--color-navy) 0%, rgba(11, 27, 43, 0.72) 46%, rgba(6, 15, 24, 0.6) 100%);
}

.page-home .home-hero__speedlines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.page-home .home-hero__speedlines span {
  display: block;
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--home-import-line-strong), transparent);
  transform: rotate(-14deg);
  animation: home-speedline 7s linear infinite;
}

.page-home .home-hero__speedlines span:nth-child(1) {
  top: 20%;
  left: -10%;
  width: 52%;
  animation-delay: 0s;
}

.page-home .home-hero__speedlines span:nth-child(2) {
  top: 46%;
  left: -18%;
  width: 40%;
  animation-delay: 1.8s;
}

.page-home .home-hero__speedlines span:nth-child(3) {
  top: 72%;
  left: -6%;
  width: 60%;
  animation-delay: 3.4s;
}

.page-home .home-hero__speedlines span:nth-child(4) {
  top: 88%;
  left: -12%;
  width: 44%;
  animation-delay: 5s;
}

@keyframes home-speedline {
  0% {
    opacity: 0;
    transform: translateX(0) rotate(-14deg);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(130vw) rotate(-14deg);
  }
}

.page-home .home-hero__shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

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

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.015em;
  margin: 22px 0 0;
  max-width: 680px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.page-home .home-hero__lead {
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-muted);
  margin-top: 22px;
  max-width: 540px;
  border-left: 3px solid var(--color-orange);
  padding-left: 18px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.page-home .home-hero__timeline {
  position: relative;
  padding-left: 34px;
  border-left: 1px solid var(--home-import-line-strong);
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: rgba(11, 27, 43, 0.28);
  padding-block: 10px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.page-home .home-hero__timeline::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 7px;
  background: linear-gradient(180deg, var(--color-orange), var(--color-blue));
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
}

.page-home .home-hero__timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-right: 12px;
}

.page-home .home-hero__timeline-dot {
  position: absolute;
  left: -39px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(255, 109, 0, 0.2);
}

.page-home .home-hero__timeline-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .home-hero__timeline-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.page-home .home-hero__timeline-item strong {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-text);
}

.page-home .home-hero__stat {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: rgba(30, 42, 56, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border);
}

.page-home .home-hero__stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  color: var(--color-orange);
}

.page-home .home-hero__stat-num em {
  font-style: normal;
  font-size: 20px;
  color: var(--color-blue);
}

.page-home .home-hero__stat-label {
  font-size: 12px;
  color: var(--color-muted);
  padding-bottom: 3px;
}

.page-home .home-match {
  padding: 80px 0 90px;
}

.page-home .home-match__intro {
  max-width: 680px;
}

.page-home .home-match__card {
  margin-top: 42px;
  background: var(--color-glass);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: transform var(--speed-base) var(--ease-out), box-shadow var(--speed-base) var(--ease-out);
}

.page-home .home-match__card:hover {
  transform: translateY(-4px) rotateX(0.6deg);
  box-shadow: 0 0 0 1px var(--color-blue-soft), 0 22px 42px rgba(0, 0, 0, 0.3), var(--blue-glow);
}

.page-home .home-match__card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--home-import-orange), transparent 72%);
  pointer-events: none;
}

.page-home .home-match__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.page-home .home-match__meta {
  font-size: 14px;
  color: var(--color-muted);
}

.page-home .home-match__board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.page-home .home-match__team {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.page-home .home-match__team-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.page-home .home-match__team-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 10px;
  border-radius: 999px;
}

.page-home .home-match__scorebox {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-radius: var(--radius);
  background: rgba(11, 27, 43, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.page-home .home-match__score {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-text);
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.3);
}

.page-home .home-match__colon {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  color: var(--color-orange);
  animation: home-colon-pulse 1.6s ease-in-out infinite;
}

@keyframes home-colon-pulse {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 10px var(--color-orange);
  }
  50% {
    opacity: 0.35;
    text-shadow: 0 0 2px var(--color-orange);
  }
}

.page-home .home-match__board-meta {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 42px);
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--home-import-line);
}

.page-home .home-match__count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-muted);
}

.page-home .home-match__count svg {
  flex-shrink: 0;
}

.page-home .home-calendar {
  position: relative;
  padding: 90px 0;
  background:
    linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.7)),
    rgba(6, 15, 24, 0.6);
  border-top: 1px solid var(--home-import-line);
  border-bottom: 1px solid var(--home-import-line);
}

.page-home .home-calendar__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 48px;
}

.page-home .home-calendar__note {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 440px;
  justify-self: end;
  padding-bottom: 6px;
}

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

.page-home .home-calendar__col {
  background: rgba(30, 42, 56, 0.6);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform var(--speed-base) var(--ease-out), box-shadow var(--speed-base) var(--ease-out);
}

.page-home .home-calendar__col:hover,
.page-home .home-calendar__col:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.2), 0 16px 32px rgba(0, 0, 0, 0.24);
}

.page-home .home-calendar__col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-orange), var(--color-blue));
  opacity: 0.65;
}

.page-home .home-calendar__day {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-blue);
  text-transform: uppercase;
}

.page-home .home-calendar__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.page-home .home-calendar__sub {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
}

.page-home .home-calendar__list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .home-calendar__list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
}

.page-home .home-calendar__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--color-orange);
  transform: rotate(45deg);
}

.page-home .home-calendar__link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: none;
  padding-top: 18px;
}

.page-home .home-calendar__link::after {
  content: " →";
  transition: margin-left var(--speed-fast) var(--ease-out);
}

.page-home .home-calendar__link:hover::after,
.page-home .home-calendar__link:focus-visible::after {
  margin-left: 6px;
}

.page-home .home-calendar__img {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--glass-border);
  transform: skewX(-2deg);
  max-width: 960px;
}

.page-home .home-calendar__img > * {
  transform: skewX(2deg) scale(1.02);
}

.page-home .home-calendar__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
  transition: transform var(--speed-slow) var(--ease-out);
}

.page-home .home-calendar__img:hover img {
  transform: skewX(2deg) scale(1.07);
}

.page-home .home-review {
  padding: 90px 0;
}

.page-home .home-review__main {
  max-width: 720px;
  margin-bottom: 48px;
}

.page-home .home-review__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 46px;
}

.page-home .home-review__panel {
  background: rgba(30, 42, 56, 0.66);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: relative;
}

.page-home .home-review__panel--stats {
  border-top: 3px solid var(--color-orange);
}

.page-home .home-review__panel--comment {
  border-top: 3px solid var(--color-blue);
}

.page-home .home-review__panel-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 22px;
}

.page-home .home-review__statbar {
  margin-bottom: 20px;
}

.page-home .home-review__statbar-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.page-home .home-review__statbar-row span {
  color: var(--color-muted);
}

.page-home .home-review__statbar-row strong {
  color: var(--color-text);
  font-weight: 700;
}

.page-home .home-review__statbar-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.page-home .home-review__statbar-track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-orange), var(--color-blue));
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}

.page-home .home-review__comment {
  position: relative;
  padding: 12px 16px 12px 40px;
  border-left: 2px solid var(--color-blue);
  margin-bottom: 16px;
}

.page-home .home-review__comment:last-child {
  margin-bottom: 0;
}

.page-home .home-review__comment-quote {
  position: absolute;
  left: 12px;
  top: 2px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--color-orange);
}

.page-home .home-review__comment p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
  margin: 0;
}

.page-home .home-review__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--glass-border);
  position: relative;
}

.page-home .home-review__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 15, 24, 0.5), transparent 36%);
  pointer-events: none;
}

.page-home .home-review__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.page-home .home-help {
  padding: 90px 0;
  background:
    linear-gradient(120deg, rgba(11, 27, 43, 0.86), rgba(17, 24, 39, 0.9)),
    radial-gradient(circle at 16% 30%, var(--home-import-line-strong), transparent 45%);
  border-top: 1px solid var(--home-import-line);
  border-bottom: 1px solid var(--home-import-line);
}

.page-home .home-help__shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.page-home .home-help__steps {
  list-style: none;
  padding: 0;
  margin: 28px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .home-help__steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
}

.page-home .home-help__steps span {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--color-orange-soft);
  border: 1px solid rgba(255, 109, 0, 0.32);
  color: var(--color-orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

.page-home .home-help__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.page-home .home-help__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--glass-border);
}

.page-home .home-help__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.page-home .home-help__floatcard {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-help__floatcard strong {
  font-size: 15px;
  font-weight: 700;
}

.page-home .home-login {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.page-home .home-login__orange {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 78% 56%, rgba(255, 109, 0, 0.22), transparent 62%);
  pointer-events: none;
}

.page-home .home-login__shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.page-home .home-login__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-top: 18px;
}

.page-home .home-login__desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-muted);
  margin: 20px 0 28px;
  max-width: 560px;
}

.page-home .home-login__arrow {
  font-size: 20px;
  transition: transform var(--speed-fast) var(--ease-out);
}

.page-home .btn--login:hover .home-login__arrow,
.page-home .btn--login:focus-visible .home-login__arrow {
  transform: translateX(5px);
}

.page-home .home-login__aside {
  background: var(--color-glass);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  position: relative;
}

.page-home .home-login__aside::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.18), transparent 72%);
  pointer-events: none;
}

.page-home .home-login__aside-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-blue);
  display: block;
  margin-bottom: 20px;
}

.page-home .home-login__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-login__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
}

.page-home .home-login__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 22px;
  line-height: 1;
  color: var(--color-orange);
  font-weight: 700;
}

.page-home .home-context {
  padding: 80px 0 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.page-home .home-context__item {
  background: rgba(30, 42, 56, 0.52);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--speed-fast) var(--ease-out), box-shadow var(--speed-fast) var(--ease-out), transform var(--speed-fast) var(--ease-out);
}

.page-home .home-context__item:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.08);
  transform: translateY(-3px);
}

.page-home .home-context__item::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--home-import-line-strong), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--speed-base) var(--ease-out);
}

.page-home .home-context__item:hover::after {
  opacity: 0.7;
}

.page-home .home-context__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.page-home .home-context__item p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-muted);
  margin: 0;
}

.page-home .home-context__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-orange);
  text-decoration: none;
  padding-top: 10px;
}

.page-home .home-context__link::after {
  content: "→";
  font-size: 17px;
  transition: transform var(--speed-fast) var(--ease-out);
}

.page-home .home-context__link:hover::after,
.page-home .home-context__link:focus-visible::after {
  transform: translateX(5px);
}

.page-home .home-context__item .section-label {
  font-size: 11px;
}

.page-home [data-reveal] {
  opacity: 1;
  transform: none;
}

.page-home [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .page-home [data-reveal] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity var(--speed-base) var(--ease-out), transform var(--speed-base) var(--ease-out);
  }

  .page-home [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .page-home .home-hero__title[data-reveal] {
    transition-delay: 0.05s;
  }

  .page-home .home-hero__lead[data-reveal] {
    transition-delay: 0.12s;
  }

  .page-home .home-hero__actions[data-reveal] {
    transition-delay: 0.2s;
  }
}

@media (max-width: 900px) {
  .page-home .home-hero__shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .page-home .home-hero__timeline {
    max-width: 520px;
  }

  .page-home .home-calendar__head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-home .home-calendar__note {
    justify-self: start;
  }

  .page-home .home-calendar__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

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

  .page-home .home-help__shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-home .home-login__shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-home .home-context {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .page-home .container {
    width: min(100% - 24px, var(--container-w));
  }

  .page-home .home-hero {
    padding: 130px 0 70px;
    min-height: auto;
  }

  .page-home .home-hero__title {
    font-size: 28px;
  }

  .page-home .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-home .btn {
    width: 100%;
  }

  .page-home .btn-login__long {
    display: none;
  }

  .page-home .btn-login__short {
    display: inline;
  }

  .page-home .home-hero__timeline {
    padding-left: 22px;
    gap: 22px;
  }

  .page-home .home-hero__timeline-dot {
    left: -27px;
    width: 8px;
    height: 8px;
  }

  .page-home .home-hero__timeline-item strong {
    font-size: 14px;
  }

  .page-home .home-hero__stat {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
  }

  .page-home .home-hero__stat-num {
    font-size: 22px;
  }

  .page-home .home-hero__stat-label {
    font-size: 10px;
  }

  .page-home .home-match {
    padding: 60px 0;
  }

  .page-home .home-match__card {
    padding: 22px 16px;
  }

  .page-home .home-match__board {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-home .home-match__team {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .page-home .home-match__scorebox {
    justify-content: center;
  }

  .page-home .home-calendar,
  .page-home .home-review,
  .page-home .home-help,
  .page-home .home-login {
    padding: 56px 0;
  }

  .page-home .home-review__panel {
    padding: 24px 18px;
  }

  .page-home .home-calendar__img,
  .page-home .home-review__img {
    transform: none;
  }

  .page-home .home-calendar__img > *,
  .page-home .home-calendar__img:hover img {
    transform: none;
  }

  .page-home .home-context {
    padding: 56px 0 64px;
  }
}

@media (max-width: 380px) {
  .page-home .home-match__board-meta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .page-home .home-help__floatcard {
    left: 10px;
    bottom: 10px;
    padding: 10px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__speedlines span,
  .page-home .home-match__colon,
  .page-home .home-calendar__img,
  .page-home .home-calendar__img > *,
  .page-home .home-calendar__img:hover img {
    animation: none;
    transform: none;
    transition: none;
  }

  .page-home [data-reveal],
  .page-home [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-home .btn,
  .page-home .home-match__card,
  .page-home .home-calendar__col,
  .page-home .home-context__item {
    transition: none;
  }

  .page-home .btn:hover,
  .page-home .home-match__card:hover,
  .page-home .home-calendar__col:hover,
  .page-home .home-context__item:hover {
    transform: none;
  }
}
