.page-home {
  --home-hero-panel-bg: rgba(11, 27, 59, 0.78);
  --home-hero-line: rgba(237, 242, 247, 0.14);
  --home-hero-text-muted: rgba(237, 242, 247, 0.74);
  --home-muted-blue: #8A9BB5;
  overflow-x: hidden;
}

.page-home .home-hero {
  position: relative;
  margin-top: calc(-1 * var(--header-space));
  padding: calc(var(--header-space) + 40px) 0 88px;
  background:
    radial-gradient(circle at 78% 18%, rgba(57, 255, 136, 0.12), transparent 36%),
    linear-gradient(128deg, var(--color-primary) 0%, var(--color-primary) 62%, rgba(57, 255, 136, 0.14) 62%, rgba(57, 255, 136, 0.05) 100%);
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background: linear-gradient(152deg, rgba(57, 255, 136, 0.26) 0%, rgba(57, 255, 136, 0.10) 40%, transparent 40%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: 56px;
  width: 240px;
  height: 70px;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.4), transparent);
  transform: skewX(-14deg);
  filter: blur(2px);
  pointer-events: none;
}

.page-home .home-hero__mesh {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    linear-gradient(rgba(237, 242, 247, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 242, 247, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.page-home .home-hero__pitch {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

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

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 60px;
  align-items: center;
}

.page-home .home-hero__copy {
  max-width: 640px;
}

.page-home .home-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.page-home .home-hero__kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-accent);
}

.page-home .home-hero h1 {
  margin: 0 0 20px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(28px, 6.5vw, 52px);
  line-height: 1.16;
}

.page-home .home-hero__desc {
  margin: 0 0 28px;
  color: var(--home-hero-text-muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 620px;
}

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

.page-home .home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--home-hero-line);
}

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

.page-home .home-hero__stat .data-num {
  font-family: var(--font-heading);
  font-size: clamp(22px, 5vw, 34px);
  line-height: 1.1;
  color: var(--color-accent);
}

.page-home .home-hero__stat .data-label {
  font-size: 12px;
  color: var(--home-hero-text-muted);
}

.page-home .home-hero__visual {
  position: relative;
  max-width: 560px;
}

.page-home .home-hero__panel {
  position: relative;
  z-index: 2;
  padding: 26px 24px 22px;
  background: var(--home-hero-panel-bg);
  border: 1px solid rgba(57, 255, 136, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(8px);
}

.page-home .home-hero__panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.page-home .home-hero__live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.page-home .home-hero__live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(57, 255, 136, 0.2);
}

.page-home .home-hero__count {
  display: block;
  color: var(--color-highlight);
  font-family: var(--font-heading);
  font-size: clamp(56px, 11vw, 92px);
  line-height: 1;
  letter-spacing: 0.01em;
}

.page-home .home-hero__edition {
  display: block;
  margin-top: 8px;
  color: rgba(237, 242, 247, 0.88);
  font-size: 14px;
}

.page-home .home-hero__edition em {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: normal;
  margin-right: 4px;
}

.page-home .home-hero__stream {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid var(--home-hero-line);
}

.page-home .home-hero__stream li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(237, 242, 247, 0.78);
  font-size: 13px;
}

.page-home .home-hero__stream b {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.page-home .home-hero__stream li:hover b {
  color: var(--color-accent-warm);
}

.page-home .home-hero__photo-wrap {
  position: relative;
  z-index: 1;
  width: 78%;
  max-width: 360px;
  margin: -24px 0 0 auto;
}

.page-home .home-hero__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lift);
}

.page-home .home-update {
  position: relative;
  overflow: hidden;
}

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

.page-home .home-update__path {
  padding: 24px 18px 18px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.page-home .home-update__path svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-update__path-old {
  fill: none;
  stroke: var(--home-muted-blue);
  stroke-width: 5;
  stroke-dasharray: 8 8;
  stroke-linecap: round;
}

.page-home .home-update__path-new {
  fill: none;
  stroke: var(--color-accent-deep);
  stroke-width: 7;
  stroke-linecap: round;
}

.page-home .home-update__path-dot {
  fill: var(--color-accent-warm);
}

.page-home .home-update__path-dot--muted {
  fill: var(--home-muted-blue);
}

.page-home .home-update__path-dot--now {
  fill: var(--color-accent-deep);
}

.page-home .home-update__path-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.page-home .home-update__legend {
  display: inline-block;
  width: 18px;
  height: 4px;
  border-radius: 99px;
  margin-right: 7px;
  vertical-align: middle;
}

.page-home .home-update__legend--old {
  background: var(--home-muted-blue);
}

.page-home .home-update__legend--new {
  background: var(--color-accent-deep);
}

.page-home .home-update__side {
  display: grid;
  gap: 26px;
}

.page-home .home-update__text .feature-list {
  margin-top: 12px;
}

.page-home .home-update__more {
  margin: 20px 0 0;
}

.page-home .home-update__more a {
  color: var(--color-accent-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 2px;
}

.page-home .home-update__img {
  margin: 0;
}

.page-home .home-update__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.page-home .home-update__img figcaption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.page-home .home-ten {
  position: relative;
  background:
    linear-gradient(rgba(237, 242, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 242, 247, 0.05) 1px, transparent 1px),
    var(--color-primary);
  background-size: 44px 44px, 44px 44px, auto;
}

.page-home .home-ten .section-heading__title,
.page-home .home-help .section-heading__title {
  color: #fff;
}

.page-home .home-ten .section-heading__desc,
.page-home .home-help .section-heading__desc {
  color: rgba(237, 242, 247, 0.78);
}

.page-home .home-ten .section-heading__kicker,
.page-home .home-help .section-heading__kicker {
  color: var(--color-accent);
}

.page-home .home-ten__timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-ten__step {
  position: relative;
  margin: 0;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(57, 255, 136, 0.16);
  border-radius: var(--radius);
}

.page-home .home-ten__time {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--color-accent);
}

.page-home .home-ten__time::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(57, 255, 136, 0.12);
}

.page-home .home-ten__step h3 {
  margin: 12px 0 8px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: #fff;
}

.page-home .home-ten__step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(237, 242, 247, 0.72);
}

.page-home .home-channel {
  position: relative;
  background:
    radial-gradient(circle at 92% 16%, rgba(57, 255, 136, 0.12), transparent 26%),
    #fff;
}

.page-home .home-channel__layout {
  display: grid;
  gap: 26px;
  align-items: center;
}

.page-home .home-channel__gate {
  padding: 24px 18px;
  text-align: center;
  background: linear-gradient(160deg, var(--color-primary-mid), var(--color-primary));
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.page-home .home-channel__gate-label {
  display: block;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.08em;
}

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

.page-home .home-channel__gate-hint {
  display: block;
  margin-top: 12px;
  color: rgba(237, 242, 247, 0.68);
  font-size: 12px;
}

.page-home .home-channel__line {
  position: relative;
  height: 4px;
  min-width: 60px;
  border-radius: 99px;
  background: repeating-linear-gradient(90deg, var(--color-accent) 0 10px, rgba(57, 255, 136, 0.18) 10px 20px);
}

.page-home .home-channel__line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--color-accent-warm);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.6);
}

.page-home .home-channel__screen {
  padding: 20px;
  background: var(--color-primary);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: #fff;
}

.page-home .home-channel__screen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(237, 242, 247, 0.86);
}

.page-home .home-channel__screen ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-channel__screen li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: rgba(237, 242, 247, 0.78);
}

.page-home .home-channel__screen li b {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

.page-home .home-channel__screen li:hover b {
  color: var(--color-accent-warm);
}

.page-home .home-channel__side {
  display: grid;
  gap: 12px;
}

.page-home .home-channel__side img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.page-home .home-channel__note {
  margin: 0;
  padding-left: 12px;
  border-left: 3px solid var(--color-accent);
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.page-home .home-channel__details {
  margin-top: 28px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.page-home .home-channel__details summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-text);
}

.page-home .home-channel__details summary::-webkit-details-marker {
  display: none;
}

.page-home .home-channel__details summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 16px;
  line-height: 1;
}

.page-home .home-channel__details[open] summary::before {
  content: "−";
}

.page-home .home-channel__stream {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-top: 1px solid var(--color-line);
}

.page-home .home-channel__line-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: var(--color-text);
}

.page-home .home-channel__line-row b {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-accent-deep);
}

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

.page-home .home-news__grid {
  row-gap: 20px;
}

.page-home .home-news__item {
  height: 100%;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.page-home .home-news__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.page-home .card__title {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.45;
}

.page-home .card__body p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.page-home .card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent-deep);
  text-decoration: none;
}

.page-home .card__link::after {
  content: "→";
  transition: transform var(--transition-fast);
}

.page-home .card__link:hover::after {
  transform: translateX(3px);
}

.page-home .home-help {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(57, 255, 136, 0.12), transparent 36%),
    linear-gradient(135deg, var(--color-primary), var(--color-primary-mid));
}

.page-home .home-help::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    linear-gradient(rgba(237, 242, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 242, 247, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

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

.page-home .home-help__panel {
  display: grid;
  gap: 34px;
}

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

.page-home .home-help__steps {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
  counter-reset: help-step;
}

.page-home .home-help__steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  counter-increment: help-step;
  font-size: 15px;
  color: rgba(237, 242, 247, 0.9);
}

.page-home .home-help__steps li::before {
  content: counter(help-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 14px;
}

.page-home .home-help__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .home-help__visual {
  display: grid;
  gap: 18px;
}

.page-home .home-help__time {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(72px, 14vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.page-home .home-help__time span {
  font-size: 0.38em;
  margin-left: 6px;
}

.page-home .home-help__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 13 / 9;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid rgba(57, 255, 136, 0.22);
  box-shadow: var(--shadow-lift);
}

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

.page-home .home-help__more {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(237, 242, 247, 0.14);
}

.page-home .home-help__more a {
  color: rgba(237, 242, 247, 0.8);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 136, 0.3);
  padding-bottom: 2px;
}

.page-home .home-help__more a:hover {
  color: var(--color-accent);
}

.page-home a:focus-visible,
.page-home summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (min-width: 640px) {
  .page-home .home-hero__stats {
    gap: 32px;
  }
}

@media (min-width: 860px) {
  .page-home .home-ten__timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-home .home-ten__step {
    padding: 18px 18px 4px 0;
    background: transparent;
    border: 0;
    border-top: 2px solid rgba(57, 255, 136, 0.4);
    border-radius: 0;
  }

  .page-home .home-ten__step::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
  }

  .page-home .home-help__visual {
    justify-items: end;
  }

  .page-home .home-help__visual img {
    max-width: 340px;
  }
}

@media (min-width: 900px) {
  .page-home .home-update__body {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .page-home .home-channel__layout {
    grid-template-columns: 190px minmax(70px, 1fr) minmax(280px, 1.1fr) 240px;
  }

  .page-home .home-help__panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    min-height: 640px;
    padding-bottom: 110px;
  }

  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .page-home .home-hero__kicker {
    font-size: 14px;
  }

  .page-home .home-hero h1 {
    font-size: clamp(40px, 4.6vw, 56px);
  }
}
