.page-home {
  --home-black: #071528;
  --home-orange: #FF6B00;
  --home-blue: #0A1E3D;
  --home-green: #39FF14;
  --home-white: #F5F5F5;
  background-color: var(--home-white);
  color: var(--home-blue);
  overflow-x: hidden;
}

.page-home .home-hero {
  position: relative;
  background: linear-gradient(120deg, rgba(10, 30, 61, 0.98) 0%, rgba(16, 24, 32, 0.96) 70%), var(--home-blue);
  color: #fff;
  padding: 60px 0 0;
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 55%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 18px);
  pointer-events: none;
}

.page-home .home-hero__inner {
  display: grid;
  gap: 34px;
  align-items: center;
  padding-bottom: 36px;
}

.page-home .home-hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 8px 16px;
  background: rgba(255, 107, 0, 0.95);
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.page-home .home-hero__kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-green);
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.28);
}

.page-home .home-hero__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: clamp(46px, 11vw, 112px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 18px 0 22px;
}

.page-home .home-hero__title-accent {
  display: inline-block;
  font-size: 0.46em;
  line-height: 1;
  color: var(--home-orange);
  padding-top: 6px;
  border-top: 4px solid var(--home-green);
  width: max-content;
  max-width: 100%;
}

.page-home .home-hero__lead {
  max-width: 52ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #c6d0e0;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 34px;
}

.page-home .home-hero__actions .btn {
  padding: 14px 28px;
  font-weight: 700;
}

.page-home .home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(540px, 100%);
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.page-home .home-hero__stats div {
  display: flex;
  flex-direction: column;
}

.page-home .home-hero__stats dt {
  order: 2;
  color: #a9b6cc;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.page-home .home-hero__stats dd {
  order: 1;
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1;
  color: #fff;
}

.page-home .home-hero__stats dd::after {
  content: "";
  display: block;
  width: 24px;
  height: 4px;
  margin-top: 8px;
  background: var(--home-green);
}

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

.page-home .home-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.page-home .home-hero__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 107, 0, 0.28) 0%, rgba(57, 255, 20, 0.06) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  pointer-events: none;
}

.page-home .home-hero__badge {
  position: absolute;
  bottom: 20px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-left: 4px solid var(--home-green);
  border-radius: var(--radius-sm);
  background: rgba(7, 21, 40, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-float);
}

.page-home .home-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-green);
  animation: homePulse 1.6s ease-in-out infinite;
}

@keyframes homePulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.6);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 7px rgba(57, 255, 20, 0);
  }
}

.page-home .home-quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
  padding-bottom: 32px;
}

.page-home .home-quick a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-home .home-quick a span {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--home-orange);
}

@media (hover: hover) {
  .page-home .home-quick a:hover {
    background: var(--home-orange);
    transform: translateY(-3px);
  }
  .page-home .home-quick a:hover span {
    color: #fff;
  }
}

.page-home .home-live {
  position: relative;
  padding: 64px 0 76px;
  background: linear-gradient(180deg, var(--home-white) 0%, #ffffff 100%);
}

.page-home .home-live::before {
  content: "";
  position: absolute;
  left: 0;
  top: -30px;
  width: 32%;
  height: 130%;
  background: var(--home-orange);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  opacity: 0.06;
  pointer-events: none;
}

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

.page-home .home-head .coord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-orange);
}

.page-home .home-head .coord::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.page-home .home-head h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 66px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--home-blue);
}

.page-home .home-lead {
  max-width: 640px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #47526b;
}

.page-home .home-head--lite .coord {
  color: var(--home-green);
}

.page-home .home-head--lite h2 {
  color: #fff;
}

.page-home .home-head--lite .home-lead {
  color: #c6d0e0;
}

.page-home .home-live__stream {
  margin-bottom: 26px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
}

.page-home .home-live__stream img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-home .home-live__timeline {
  position: relative;
  margin-bottom: 30px;
  padding-left: 22px;
}

.page-home .home-live__timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--home-orange) 0%, var(--home-blue) 65%, var(--home-green) 100%);
}

.page-home .home-live__row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: baseline;
  margin-bottom: 10px;
  padding: 16px 14px;
  background: #fff;
  border: 1px solid #e4e8f0;
  border-left: 4px solid transparent;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-home .home-live__dot {
  position: absolute;
  left: -21px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--home-orange);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--home-orange);
}

.page-home .home-live__row--live .home-live__dot {
  background: var(--home-green);
  box-shadow: 0 0 0 2px var(--home-green);
  animation: homePulse 1.6s ease-in-out infinite;
}

.page-home .home-live__time {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--home-blue);
}

.page-home .home-live__league {
  width: max-content;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 0, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-orange);
}

.page-home .home-live__text {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #3a445c;
}

.page-home .home-live__flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-green);
}

.page-home .home-live__flag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.page-home .home-live__row--live {
  border-left-color: var(--home-green);
}

.page-home .home-live__row:not(.home-live__row--live) .home-live__flag {
  color: #7a879c;
}

.page-home .home-live__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-home .home-live__footer a:not(.btn) {
  color: var(--home-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-home .home-subscribe {
  position: relative;
  padding: 70px 0 80px;
  background: radial-gradient(1200px 420px at 82% 0%, rgba(30, 58, 110, 0.86) 0%, rgba(10, 30, 61, 0.99) 58%), var(--home-blue);
  color: #fff;
  overflow: hidden;
}

.page-home .home-subscribe::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 36%;
  padding-bottom: 36%;
  border: 3px solid rgba(57, 255, 20, 0.25);
  border-radius: 24px;
  transform: rotate(20deg);
  pointer-events: none;
}

.page-home .home-subscribe__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .home-subscribe__crest img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), 0 100%);
}

.page-home .home-subscribe__panel {
  padding: 26px 22px 28px;
  background: rgba(7, 21, 40, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

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

.page-home .badge {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.28);
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.page-home .badge--a {
  background: linear-gradient(135deg, var(--home-orange), #c43e00);
  color: #fff;
}

.page-home .badge--b {
  background: linear-gradient(135deg, #1e3a6e, #0a1e3d);
  color: #fff;
}

.page-home .badge--c {
  background: var(--home-green);
  color: #0a1e3d;
  border-color: rgba(10, 30, 61, 0.35);
}

.page-home .badge--plus {
  background: transparent;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.8);
  font-size: 28px;
}

.page-home .home-subscribe__steps ol {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.page-home .home-subscribe__steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #e0e6f0;
  font-size: 15px;
}

.page-home .home-subscribe__steps li span {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  height: 32px;
  background: var(--home-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.page-home .home-screen {
  position: relative;
  padding: 80px 0 88px;
  background: linear-gradient(135deg, #ffffff 0%, var(--home-white) 100%);
}

.page-home .home-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8%;
  width: 116%;
  height: 22px;
  background: linear-gradient(90deg, var(--home-orange) 0%, var(--home-blue) 72%, var(--home-green) 100%);
  transform: rotate(-2deg);
  pointer-events: none;
}

.page-home .home-screen__grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.page-home .home-screen__media {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 16px 100%, 0 calc(100% - 16px));
}

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

.page-home .home-screen__panels {
  display: grid;
  gap: 16px;
  align-content: center;
}

.page-home .screen-card {
  position: relative;
  padding: 26px 24px 24px 30px;
  background: #fff;
  border: 1px solid #e7eaf2;
  border-left: 6px solid var(--home-orange);
  box-shadow: var(--shadow-card);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

@media (hover: hover) {
  .page-home .screen-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-float);
  }
}

.page-home .screen-card__num {
  position: absolute;
  top: 6px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 58px;
  line-height: 1;
  color: rgba(10, 30, 61, 0.08);
}

.page-home .screen-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--home-blue);
}

.page-home .screen-card p {
  max-width: 42ch;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5368;
}

.page-home .screen-card--home {
  border-left-color: var(--home-green);
}

.page-home .screen-card--mobile {
  border-left-color: var(--home-blue);
}

.page-home .home-help {
  position: relative;
  padding: 78px 0 88px;
  background: var(--home-black);
  color: #fff;
  overflow: hidden;
}

.page-home .home-help::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 8px;
  background: var(--gradient-live);
}

.page-home .home-help__grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.page-home .home-help__steps ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: helpStep;
}

.page-home .home-help__steps li {
  counter-increment: helpStep;
  position: relative;
  margin-bottom: 14px;
  padding: 16px 16px 16px 70px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #dce3ef;
  font-size: 15px;
  line-height: 1.6;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.page-home .home-help__steps li::before {
  content: counter(helpStep, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 14px;
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--home-orange);
}

.page-home .home-help__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 26px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.55);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), 22px 100%, 0 calc(100% - 22px));
}

.page-home .home-help__cta h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-home .home-help__cta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #c6d0e0;
}

@media (min-width: 760px) {
  .page-home .home-live__row {
    grid-template-columns: 130px 160px 1fr auto;
    gap: 8px 18px;
    align-items: center;
    padding: 18px 20px;
  }

  .page-home .home-live__text {
    grid-column: auto;
  }

  .page-home .home-subscribe__panel {
    padding: 36px 34px;
  }

  .page-home .home-subscribe__steps li {
    font-size: 16px;
  }

  .page-home .home-screen__panels {
    gap: 18px;
  }

  .page-home .screen-card p {
    font-size: 15px;
  }
}

@media (min-width: 900px) {
  .page-home .home-hero {
    padding-top: 48px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    min-height: calc(100vh - 160px);
    padding-bottom: 70px;
  }

  .page-home .home-hero__lead {
    font-size: 18px;
  }

  .page-home .home-quick {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-bottom: 40px;
  }

  .page-home .home-live {
    padding: 84px 0 96px;
  }

  .page-home .home-live__stream img {
    height: 220px;
  }

  .page-home .home-lead {
    font-size: 18px;
  }

  .page-home .home-subscribe {
    padding: 88px 0 96px;
  }

  .page-home .home-subscribe__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 44px;
  }

  .page-home .home-screen {
    padding: 96px 0 104px;
  }

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

  .page-home .home-screen__media {
    align-self: center;
  }

  .page-home .home-help {
    padding: 96px 0 104px;
  }

  .page-home .home-help__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 44px;
  }

  .page-home .home-help__steps li {
    font-size: 16px;
  }
}
