.page-home {
  box-sizing: border-box;
  overflow-x: clip;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(circle at 8% 12%, rgba(0, 232, 143, 0.09), transparent 32%),
    radial-gradient(circle at 92% 18%, rgba(255, 122, 0, 0.07), transparent 30%);
  font-family: var(--font-body);
}
.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: inherit;
}

.page-home .home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 28px 18px 56px;
}
.page-home .breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.page-home .breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}
.page-home .breadcrumbs span {
  opacity: 0.7;
}
.page-home .home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 14px;
  padding: 4px 12px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  border: 1px solid rgba(255, 122, 0, 0.4);
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.08);
}
.page-home .home-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.8);
  flex-shrink: 0;
}
.page-home .home-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.01em;
  color: var(--text);
}
.page-home .home-title__version {
  display: inline-block;
  margin-top: 10px;
  padding: 2px 12px;
  font-family: var(--font-mono);
  font-size: 0.45em;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--transparent-cyan);
  border: 1px solid rgba(0, 232, 143, 0.4);
  border-radius: 8px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.page-home .home-lead {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.page-home .home-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.page-home .home-metric {
  padding: 14px 14px 12px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.page-home .home-metric__label {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--muted);
}
.page-home .home-metric__value {
  display: block;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent);
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}
.page-home .home-art {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 360 / 520;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(0, 232, 143, 0.3);
  background: var(--bg-card);
}

.page-home .home-hero__right {
  position: relative;
  border-radius: 24px;
  padding: 24px 18px;
  overflow: hidden;
  background: var(--bg-card);
  background-image:
    linear-gradient(rgba(0, 232, 143, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 232, 143, 0.05) 1px, transparent 1px),
    linear-gradient(150deg, rgba(19, 44, 69, 0.98), rgba(10, 26, 47, 0.92));
  background-size: 42px 42px, 42px 42px, auto;
  border: 1px solid rgba(0, 232, 143, 0.2);
}
.page-home .home-hero__right::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  background: var(--bg-deep);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: 2;
  pointer-events: none;
}
.page-home .home-dashboard {
  position: relative;
  z-index: 1;
}
.page-home .home-dashboard::before {
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.page-home .home-dashboard__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.page-home .home-dashboard__label {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.page-home .home-dashboard__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}
.page-home .home-dashboard .tag-live {
  margin-top: 2px;
}
.page-home .home-live-list {
  display: grid;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(140, 163, 192, 0.2);
  border-radius: 14px;
  background: rgba(10, 26, 47, 0.55);
}
.page-home .home-live-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(140, 163, 192, 0.12);
}
.page-home .home-live-row:last-child {
  border-bottom: 0;
}
.page-home .home-live-row__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}
.page-home .home-live-row__cat::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 232, 143, 0.9);
  flex-shrink: 0;
}
.page-home .home-live-row__status {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}
.page-home .home-live-row__status.status-live {
  color: var(--accent);
}
.page-home .home-live-row__status.status-upcoming {
  color: var(--warning);
}
.page-home .home-chart {
  margin-bottom: 14px;
  padding: 16px 14px 12px;
  border: 1px solid rgba(140, 163, 192, 0.16);
  border-radius: 16px;
  background: rgba(10, 26, 47, 0.75);
}
.page-home .home-chart__title {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 600;
}
.page-home .home-chart__desc {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--muted);
}
.page-home .home-chart__svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 120px;
}
.page-home .home-dashboard__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.page-home .home-dashboard__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: auto;
  max-height: 45%;
  object-fit: cover;
  opacity: 0.12;
  border-radius: 0;
  pointer-events: none;
}
.page-home .home-dashboard__head,
.page-home .home-live-list,
.page-home .home-chart,
.page-home .home-dashboard__meta {
  position: relative;
  z-index: 1;
}

.page-home .home-zc,
.page-home .home-steps,
.page-home .home-versions,
.page-home .home-trust {
  width: 100%;
  padding: 56px 18px;
}
.page-home .home-zc {
  background: linear-gradient(180deg, var(--bg-deep), rgba(19, 44, 69, 0.45));
}
.page-home .home-trust {
  border-top: 1px solid rgba(0, 232, 143, 0.16);
  background: linear-gradient(180deg, rgba(19, 44, 69, 0.3), var(--bg-deep));
}

.page-home .home-section-head,
.page-home .home-zc__grid,
.page-home .home-steps__grid,
.page-home .home-versions__grid,
.page-home .home-versions__cta,
.page-home .home-trust__grid,
.page-home .home-trust__statement,
.page-home .home-trust__links {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.page-home .home-section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.page-home .home-section-head .section-number {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 700;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--accent);
  opacity: 0.9;
}
.page-home .home-section-head .section-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
.page-home .home-section-head .section-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .home-zc__grid {
  display: grid;
  gap: 24px;
}
.page-home .home-zc__card {
  overflow: hidden;
  border: 1px solid rgba(0, 232, 143, 0.15);
  border-radius: 20px;
  background: var(--bg-card);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.page-home .home-zc__card:hover {
  border-color: rgba(0, 232, 143, 0.6);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}
.page-home .home-zc__card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 400 / 260;
  object-fit: cover;
}
.page-home .home-zc__card-body {
  padding: 20px;
}
.page-home .home-zc__card-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.page-home .home-zc__card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-home .home-zc__features {
  padding: 24px 20px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(140, 163, 192, 0.16);
}
.page-home .home-zc__features-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 20px;
}
.page-home .home-zc__list {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.page-home .home-zc__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.page-home .home-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 232, 143, 0.7);
  flex-shrink: 0;
}
.page-home .home-zc__features-meta {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 232, 143, 0.08);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.page-home .home-zc__features-actions {
  display: flex;
  gap: 10px;
}

.page-home .home-steps {
  background: transparent;
}
.page-home .home-steps__grid {
  display: grid;
  gap: 28px;
}
.page-home .home-steps__list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .home-step {
  position: relative;
  padding: 22px 18px 22px 68px;
  border: 1px solid rgba(140, 163, 192, 0.14);
  border-radius: 18px;
  background: var(--bg-card);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.page-home .home-step__num {
  position: absolute;
  top: 20px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(0, 232, 143, 0.3);
  border-radius: 10px;
  background: var(--transparent-cyan);
}
.page-home .home-step__title {
  margin: 0 0 6px;
  font-size: 18px;
}
.page-home .home-step__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.page-home .home-steps__visual {
  margin: 0;
}
.page-home .home-steps__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 480 / 320;
  object-fit: cover;
  border: 1px solid rgba(0, 232, 143, 0.22);
  border-radius: 20px;
}
.page-home .home-steps__visual figcaption {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  color: var(--muted);
}

.page-home .home-versions {
  background: linear-gradient(180deg, transparent, rgba(19, 44, 69, 0.35));
}
.page-home .home-versions__grid {
  display: grid;
  gap: 20px;
}
.page-home .home-version {
  position: relative;
  overflow: hidden;
  padding: 24px 20px 28px;
  border: 1px solid rgba(140, 163, 192, 0.16);
  border-radius: 20px;
  background: var(--bg-card);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.page-home .home-version:hover {
  border-color: rgba(0, 232, 143, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.page-home .home-version::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 232, 143, 0.1), transparent);
  transform: rotate(12deg);
  pointer-events: none;
}
.page-home .home-version .tag-version {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.page-home .home-version__title {
  position: relative;
  z-index: 1;
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.4;
}
.page-home .home-version__desc {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.page-home .home-version__meta {
  display: inline-block;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 232, 143, 0.08);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
}
.page-home .home-versions__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-home .home-trust__grid {
  display: grid;
  gap: 18px;
}
.page-home .home-trust__card {
  padding: 22px 20px;
  border: 1px solid rgba(140, 163, 192, 0.14);
  border-radius: 18px;
  background: var(--bg-card);
}
.page-home .home-trust__card-title {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--accent);
}
.page-home .home-trust__icp {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--text);
}
.page-home .home-trust__text {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--text);
}
.page-home .home-trust__note {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.page-home .home-trust__statement {
  margin-top: 32px;
  padding: 16px 18px;
  border-left: 4px solid var(--warning);
  border-radius: 16px;
  background: rgba(255, 209, 102, 0.07);
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.page-home .home-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-bottom: 8px;
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .home-live-row__cat::before {
    animation: leyu-home-pulse 2.4s ease-in-out infinite;
  }
}
@keyframes leyu-home-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(0, 232, 143, 0.8);
  }
  50% {
    opacity: 0.55;
    box-shadow: 0 0 2px rgba(0, 232, 143, 0.3);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 820px) {
  .page-home .home-trust__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (min-width: 900px) {
  .page-home .home-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
    padding: 48px 44px 72px;
  }
  .page-home .home-hero__left {
    padding-right: 20px;
    border-right: 1px solid rgba(140, 163, 192, 0.2);
  }
  .page-home .home-hero__right {
    padding: 32px;
  }
  .page-home .home-title {
    font-size: clamp(36px, 3.6vw, 52px);
  }
  .page-home .home-metric__value {
    font-size: 30px;
  }
  .page-home .home-art {
    max-width: 220px;
  }

  .page-home .home-zc,
  .page-home .home-steps,
  .page-home .home-versions,
  .page-home .home-trust {
    padding: 88px 44px;
  }

  .page-home .home-section-head {
    gap: 24px;
    margin-bottom: 40px;
  }
  .page-home .home-section-head .section-number {
    font-size: 64px;
  }
  .page-home .home-section-head .section-title {
    font-size: 32px;
  }
  .page-home .home-section-head .section-desc {
    font-size: 15px;
  }

  .page-home .home-zc__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 32px;
    align-items: stretch;
  }
  .page-home .home-zc__card-body {
    padding: 24px;
  }
  .page-home .home-zc__features {
    padding: 32px 28px;
  }
  .page-home .home-zc__list {
    gap: 14px;
  }
  .page-home .home-zc__features-meta {
    margin-bottom: 20px;
  }

  .page-home .home-steps__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
  }
  .page-home .home-step {
    padding: 24px 22px 24px 76px;
  }
  .page-home .home-step__num {
    top: 22px;
    left: 20px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .page-home .home-versions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .page-home .home-version {
    padding: 28px 24px 32px;
  }
  .page-home .home-versions__cta {
    margin-top: 40px;
  }

  .page-home .home-trust__card {
    padding: 26px 24px;
  }
  .page-home .home-trust__statement {
    margin-top: 40px;
    padding: 20px 24px;
  }
}
