.page-home {
  overflow-x: clip;
  color: var(--c-white);
  background: var(--c-bg);
}
.page-home img {
  max-width: 100%;
  height: auto;
}
.page-home .home-hero {
  position: relative;
  padding: 40px 0 36px;
  background:
    radial-gradient(circle at 86% 8%, rgba(0, 255, 157, 0.16), transparent 28%),
    radial-gradient(circle at 14% 72%, rgba(0, 229, 255, 0.12), transparent 36%),
    var(--c-bg);
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(242, 246, 255, 0.16) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 78%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 78%);
}
.page-home .home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}
.page-home .home-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-home .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-gray);
  font-family: var(--font-mono);
  margin-bottom: 18px;
}
.page-home .breadcrumb__sep {
  color: var(--c-green);
}
.page-home .home-hero__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--c-blue);
  text-transform: uppercase;
}
.page-home .home-hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-size: clamp(2rem, 6.2vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-white);
}
.page-home .home-hero h1 span {
  display: inline-block;
  color: var(--c-green);
}
.page-home .home-hero__lead {
  margin: 0 0 24px;
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-gray);
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-hero__panel {
  position: relative;
  z-index: 1;
  background: var(--c-card);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.page-home .home-hero__media {
  border-bottom: 1px solid var(--c-line);
}
.page-home .home-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .home-panel-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-home .home-panel-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.page-home .home-panel-card__status {
  font-size: 0.82rem;
  color: var(--c-green);
  font-family: var(--font-mono);
}
.page-home .home-panel-card__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-white);
}
.page-home .home-panel-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.page-home .home-panel-card__stat {
  padding: 14px;
  background: var(--c-card-2);
  border: 1px solid var(--c-line);
  border-radius: 10px;
}
.page-home .home-panel-card__count {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--c-green);
}
.page-home .home-panel-card__label {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--c-gray);
}
.page-home .home-panel-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .home-panel-card__badges span {
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--c-blue);
  background: var(--c-blue-glass);
  border: 1px solid var(--c-line);
  border-radius: 6px;
}
.page-home .home-hero__ticker {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 22px 0 0;
  border-top: 1px solid var(--c-line);
}
.page-home .home-hero__ticker-label {
  margin-right: 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--c-blue);
  text-transform: uppercase;
}
.page-home .home-hero__ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  color: var(--c-white);
  text-decoration: none;
  font-size: 0.88rem;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.page-home .home-hero__ticker-item:hover {
  border-color: var(--c-line-strong);
  background: var(--c-green-glass);
  transform: translateY(-2px);
}
.page-home .home-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 64px;
  padding: 14px;
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  background: rgba(11, 16, 38, 0.78);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 20;
}
.page-home .home-index a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--c-white);
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color var(--ease), background var(--ease), color var(--ease);
}
.page-home .home-index a:hover {
  border-color: var(--c-line-strong);
  background: var(--c-green-glass);
  color: var(--c-green);
}
.page-home .home-index a span {
  font-family: var(--font-mono);
  color: var(--c-green);
}
.page-home .home-updates,
.page-home .home-archive,
.page-home .home-sitemap,
.page-home .home-promise {
  padding: 64px 0;
}
.page-home .section-head {
  margin-bottom: 32px;
}
.page-home .section-title {
  margin-top: 6px;
}
.page-home .section-head__lede {
  margin: 10px 0 0;
  max-width: 560px;
  color: var(--c-gray);
  line-height: 1.7;
}
.page-home .home-updates {
  border-bottom: 1px solid var(--c-line);
}
.page-home .home-updates__grid {
  display: grid;
  gap: 28px;
  align-items: start;
}
.page-home .home-updates__featured {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--c-card);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.page-home .home-updates__featured::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 24px;
  height: 24px;
  background: var(--c-red);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.page-home .home-updates__featured h3 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
  line-height: 1.4;
}
.page-home .home-updates__featured p {
  margin: 0 0 16px;
  color: var(--c-gray);
  line-height: 1.8;
}
.page-home .home-updates__featured ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.page-home .home-updates__featured li {
  position: relative;
  padding-left: 16px;
  color: var(--c-white);
  font-size: 0.92rem;
}
.page-home .home-updates__featured li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--c-blue);
  transform: rotate(45deg);
}
.page-home .home-updates__timeline {
  padding-left: 22px;
  border-left: 1px solid var(--c-line-strong);
}
.page-home .home-version {
  position: relative;
  padding: 0 0 32px 22px;
}
.page-home .home-version::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 4px var(--c-green-glass);
}
.page-home .home-version__num {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--c-green);
}
.page-home .home-version__body h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.4;
}
.page-home .home-version__body p {
  margin: 0;
  color: var(--c-gray);
  line-height: 1.7;
}
.page-home .home-updates__more {
  margin-top: 36px;
}
.page-home .home-match {
  padding: 64px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background:
    linear-gradient(120deg, rgba(0, 229, 255, 0.08), transparent 42%),
    var(--c-bg-deep);
}
.page-home .home-match__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.page-home .home-match__content .section-head {
  margin-bottom: 18px;
}
.page-home .home-match__content > p {
  margin: 0 0 18px;
  color: var(--c-gray);
  line-height: 1.8;
}
.page-home .home-match__list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.page-home .home-match__list li {
  position: relative;
  padding-left: 20px;
  color: var(--c-white);
  line-height: 1.7;
}
.page-home .home-match__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--c-green);
  border-right: 2px solid var(--c-green);
  transform: rotate(45deg);
}
.page-home .home-match__card {
  position: relative;
}
.page-home .home-countdown {
  position: relative;
  overflow: hidden;
  padding: 36px 24px;
  text-align: center;
  background: var(--c-card);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.page-home .home-countdown::before {
  content: "";
  position: absolute;
  top: -46px;
  right: -46px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--c-red-bg);
  filter: blur(40px);
}
.page-home .home-countdown__label {
  display: block;
  font-size: 0.9rem;
  color: var(--c-gray);
  letter-spacing: 0.1em;
}
.page-home .home-countdown__value {
  position: relative;
  display: block;
  margin: 8px 0 4px;
  font-family: var(--font-mono);
  font-size: clamp(2.8rem, 8vw, 4.2rem);
  line-height: 1;
  color: var(--c-green);
}
.page-home .home-countdown__meta {
  display: block;
  font-size: 0.88rem;
  color: var(--c-white);
}
.page-home .home-countdown__spot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--c-red);
}
.page-home .home-countdown__spot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-red);
  animation: homePulse 1.6s ease-in-out infinite;
}
@keyframes homePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .page-home .home-countdown__spot::before {
    animation: none;
  }
}
.page-home .home-match__visual {
  margin-top: 28px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.page-home .home-match__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .home-archive {
  background:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    var(--c-bg);
  background-size: 48px 48px;
}
.page-home .home-archive__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.page-home .home-stat {
  position: relative;
  overflow: hidden;
  padding: 24px 20px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
}
.page-home .home-stat::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 10px;
  height: 10px;
  background: var(--c-green);
  transform: rotate(45deg);
}
.page-home .home-stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 4.6vw, 2.4rem);
  line-height: 1.2;
  color: var(--c-green);
}
.page-home .home-stat__label {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--c-gray);
}
.page-home .home-archive__chart {
  margin-top: 24px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.page-home .home-archive__chart img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .home-archive__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--c-blue-glass);
  border: 1px dashed var(--c-line-strong);
  border-radius: var(--radius);
}
.page-home .home-archive__note p {
  margin: 0;
  color: var(--c-gray);
  line-height: 1.7;
}
.page-home .home-sitemap {
  border-top: 1px solid var(--c-line);
}
.page-home .home-sitemap__grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}
.page-home .home-sitemap__card {
  display: grid;
  gap: 8px;
  padding: 24px 22px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-white);
  text-decoration: none;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}
.page-home .home-sitemap__card:hover {
  transform: translateY(-4px);
  background: var(--c-card-2);
  border-color: var(--c-line-strong);
}
.page-home .home-sitemap__path {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--c-blue);
}
.page-home .home-sitemap__card strong {
  font-size: 1.2rem;
  font-family: var(--font-head);
}
.page-home .home-sitemap__card p {
  margin: 0;
  color: var(--c-gray);
  line-height: 1.7;
}
.page-home .home-promise {
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 255, 157, 0.1), transparent 32%),
    radial-gradient(circle at 82% 100%, rgba(0, 229, 255, 0.08), transparent 30%),
    var(--c-bg);
}
.page-home .home-promise__inner {
  max-width: 940px;
}
.page-home .home-promise h2 {
  margin: 18px 0 14px;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.page-home .home-promise p {
  margin: 0 0 24px;
  max-width: 780px;
  color: var(--c-gray);
  line-height: 1.8;
}
.page-home .home-promise__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-home .home-promise__badges span {
  padding: 8px 14px;
  background: var(--c-blue-glass);
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  color: var(--c-blue);
  font-size: 0.88rem;
}
.page-home .home-promise__banner {
  margin-top: 48px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.page-home .home-promise__banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 64px 0 48px;
  }
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 40px;
    align-items: center;
  }
  .page-home .home-hero__panel {
    margin-top: 56px;
  }
  .page-home .home-updates,
  .page-home .home-archive,
  .page-home .home-sitemap,
  .page-home .home-promise {
    padding: 96px 0;
  }
  .page-home .home-updates__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
  }
  .page-home .home-match {
    padding: 96px 0;
  }
  .page-home .home-match__grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
    gap: 40px;
  }
  .page-home .home-match__visual {
    margin-left: 32%;
    max-width: min(68%, 980px);
    margin-top: 40px;
  }
  .page-home .home-archive__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  .page-home .home-sitemap__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .page-home .home-sitemap__card--wide {
    grid-column: 1 / -1;
  }
  .page-home .home-index {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .page-home .home-index {
    position: sticky;
    top: calc(var(--header-h) + 16px);
  }
  .page-home .home-hero__panel {
    transform: rotate(0.5deg);
  }
  .page-home .home-sitemap__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-home .home-sitemap__card--wide {
    grid-column: span 2;
  }
  .page-home .home-sitemap__grid .home-sitemap__card:last-child {
    grid-column: 1 / -1;
  }
}
