.page-home {
  --home-space: 64px;
  --home-gutter: 16px;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--color-void);
  color: var(--color-gray);
  font-family: var(--font-body);
  isolation: isolate;
}

.page-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 560px;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse at 18% 6%, rgba(57,255,20,.08), transparent 44%),
    radial-gradient(ellipse at 86% 14%, rgba(255,67,10,.07), transparent 38%),
    linear-gradient(180deg, rgba(57,255,20,.05), transparent 68%);
}

.page-home .home-breadcrumbs {
  margin: 20px auto 0;
  max-width: 1360px;
  padding-inline: 20px;
}

.page-home .home-dir,
.page-home .home-live,
.page-home .home-matrix,
.page-home .home-stream,
.page-home .home-replay,
.page-home .home-tracker,
.page-home .home-app,
.page-home .home-news,
.page-home .home-contact {
  position: relative;
  z-index: 1;
}

.page-home .home-dir {
  padding: 40px 0 68px;
}

.page-home .home-dir__title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2em 0.45em;
}

.page-home .home-dir__sub {
  color: var(--color-neon);
  position: relative;
  white-space: nowrap;
}

.page-home .home-dir__sub::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.18em;
  background: var(--color-neon-soft);
  z-index: -1;
  border-radius: var(--radius-pill);
}

.page-home .home-dir__intro {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray);
}

.page-home .home-dir__board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 34px;
}

@media (min-width: 640px) {
  .page-home .home-dir__board {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .page-home .home-dir__board {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-home .home-dir__cell {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  padding: 20px 18px;
  background: var(--color-panel);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--speed) var(--ease),
    transform var(--speed) var(--ease),
    background var(--speed) var(--ease);
}

.page-home .home-dir__cell::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--color-neon);
  opacity: 0;
  transition: opacity var(--speed) var(--ease);
}

.page-home .home-dir__cell:hover,
.page-home .home-dir__cell:focus-visible {
  border-color: var(--color-neon-soft);
  transform: translateY(-3px);
  background: #20252F;
}

.page-home .home-dir__cell:hover::after,
.page-home .home-dir__cell:focus-visible::after {
  opacity: 1;
}

.page-home .home-dir__no {
  grid-row: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-neon);
}

.page-home .home-dir__label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.96rem;
  color: var(--color-white);
}

.page-home .home-dir__tag {
  font-size: 0.76rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.page-home .section-cue {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

@media (max-width: 640px) {
  .page-home .section-cue {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.page-home .section-cue__title {
  margin: 6px 0 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.page-home .section-cue__aside {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.page-home .section-cue__aside--link {
  color: var(--color-neon);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-neon-soft);
  transition: border-color var(--speed) var(--ease);
}

.page-home .section-cue__aside--link:hover {
  border-color: var(--color-neon);
}

.page-home .home-live,
.page-home .home-matrix,
.page-home .home-stream,
.page-home .home-replay,
.page-home .home-tracker,
.page-home .home-app,
.page-home .home-news,
.page-home .home-contact {
  padding: var(--home-space) 20px;
}

.page-home .home-live__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 1040px) {
  .page-home .home-live__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.page-home .home-live__board,
.page-home .home-live__possession {
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
}

.page-home .home-live__boardhead,
.page-home .home-live__boardfoot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.page-home .home-live__channel {
  font-family: var(--font-mono);
  color: var(--color-gray);
}

.page-home .home-live__scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 26px 0 22px;
}

.page-home .home-live__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.page-home .home-live__team--away {
  order: 3;
}

.page-home .home-live__badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-neon);
  box-shadow: 0 0 22px rgba(57,255,20,.28);
}

.page-home .home-live__badge--away {
  background: var(--grad-flame);
  box-shadow: 0 0 22px rgba(255,67,10,.22);
}

.page-home .home-live__name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}

.page-home .home-live__score {
  font-family: var(--font-mono);
  font-size: clamp(2.7rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  animation: page-home-score 3.4s infinite;
}

@keyframes page-home-score {
  0%, 86%, 100% {
    color: var(--color-white);
    text-shadow: none;
  }
  92% {
    color: var(--color-neon);
    text-shadow: 0 0 18px rgba(57,255,20,.65);
  }
}

.page-home .home-live__clock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border: 1px dashed var(--color-neon-soft);
  border-radius: var(--radius-pill);
  background: rgba(57,255,20,.04);
}

.page-home .home-live__time {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.page-home .home-live__refresh {
  font-size: 0.68rem;
  color: var(--color-neon);
  letter-spacing: 0.08em;
  white-space: nowrap;
  animation: page-home-sync 2.2s infinite;
}

@keyframes page-home-sync {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(57,255,20,.7);
  }
}

.page-home .home-live__events {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--color-neon-soft);
  display: grid;
  gap: 10px;
}

.page-home .home-live__event {
  display: grid;
  grid-template-columns: 5em 1fr auto;
  align-items: baseline;
  gap: 8px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.page-home .home-live__event time {
  font-family: var(--font-mono);
  color: var(--color-muted);
}

.page-home .home-live__event b {
  color: var(--color-flame);
  background: var(--color-flame-soft);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.page-home .home-live__boardfoot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.page-home .home-live__boardfoot a {
  color: var(--color-white);
  font-size: 0.8rem;
  text-decoration: none;
  border-bottom: 1px solid var(--color-neon-soft);
  transition: border-color var(--speed) var(--ease);
}

.page-home .home-live__boardfoot a:hover {
  border-color: var(--color-neon);
}

.page-home .home-live__possession-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-home .home-live__possession-title h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
}

.page-home .home-live__possession-badge {
  color: var(--color-neon);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  border: 1px solid var(--color-neon-soft);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  white-space: nowrap;
}

.page-home .home-live__bars {
  display: grid;
  gap: 18px;
  margin: 24px 0 16px;
}

.page-home .home-live__bar-row {
  display: grid;
  grid-template-columns: 6.5em 1fr 3.5em;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--color-gray);
}

.page-home .home-live__track {
  height: 10px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.page-home .home-live__track i {
  display: block;
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--grad-neon);
}

.page-home .home-live__track--away i {
  background: var(--grad-flame);
}

.page-home .home-live__bar-row var {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 500;
  color: var(--color-white);
  text-align: right;
}

.page-home .home-live__note {
  margin: 0 0 18px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.page-home .home-live__chart {
  margin-top: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.page-home .home-matrix__hero {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 22px 0 18px;
}

.page-home .home-matrix__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.page-home .home-matrix__hero:hover .home-matrix__img {
  transform: scale(1.02);
}

.page-home .home-matrix__intro {
  max-width: 780px;
  margin: 0 0 26px;
  line-height: 1.7;
}

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

.page-home .home-matrix__tab {
  background: var(--color-panel);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 4px 20px;
  transition: border-color var(--speed) var(--ease);
}

.page-home .home-matrix__tab[open] {
  border-color: var(--color-neon-soft);
}

.page-home .home-matrix__tab summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  color: var(--color-white);
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 0.98rem;
}

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

.page-home .home-matrix__tab summary::after {
  content: "+";
  color: var(--color-neon);
  font-family: var(--font-mono);
  font-size: 1.15rem;
  transition: transform var(--speed) var(--ease);
}

.page-home .home-matrix__tab[open] summary::after {
  transform: rotate(45deg);
}

.page-home .home-matrix__count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-muted);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}

.page-home .home-matrix__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 2px 0 18px;
}

.page-home .home-matrix__tag {
  display: inline-block;
  color: var(--color-gray);
  font-size: 0.8rem;
  text-decoration: none;
  border: 1px solid var(--color-neon-soft);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  transition:
    color var(--speed) var(--ease),
    background var(--speed) var(--ease),
    border-color var(--speed) var(--ease);
}

.page-home .home-matrix__tag:hover {
  color: var(--color-white);
  background: rgba(57,255,20,.07);
  border-color: var(--color-neon);
}

.page-home .home-stream {
  margin-inline: 20px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(57,255,20,.08), transparent 55%),
    var(--color-panel);
  border: 1px solid rgba(255,255,255,.05);
}

.page-home .home-stream__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px 22px;
}

@media (min-width: 900px) {
  .page-home .home-stream__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    padding: 38px 36px;
  }
}

.page-home .home-stream__slogan {
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
}

.page-home .home-stream p {
  margin: 0;
  line-height: 1.75;
  font-size: 0.92rem;
  color: var(--color-gray);
}

.page-home .home-stream__img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-neon-soft);
}

@media (min-width: 900px) {
  .page-home .home-stream__img {
    height: 300px;
  }
}

.page-home .home-replay__list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

@media (min-width: 900px) {
  .page-home .home-replay__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-home .home-replay__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-top: 3px solid var(--color-neon);
  border-radius: var(--radius-md);
}

.page-home .home-replay__item--feature {
  border-top-color: var(--color-flame);
}

.page-home .home-replay__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-family: var(--font-mono);
  color: var(--color-muted);
}

.page-home .home-replay__headline {
  margin: 0;
  color: var(--color-white);
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 800;
}

.page-home .home-replay__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-home .home-replay__tags span {
  font-size: 0.72rem;
  color: var(--color-neon);
  background: rgba(57,255,20,.08);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

.page-home .home-replay__foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 14px;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.page-home .home-replay__foot a {
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 1px solid var(--color-neon-soft);
  transition: border-color var(--speed) var(--ease);
}

.page-home .home-replay__foot a:hover {
  border-color: var(--color-neon);
}

.page-home .home-tracker__console {
  margin-top: 26px;
  padding: 18px 20px 20px;
  border-radius: var(--radius-lg);
}

.page-home .home-tracker__consolehead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--color-flame-soft);
  padding-bottom: 14px;
  font-weight: 800;
  color: var(--color-white);
  font-size: 0.95rem;
}

.page-home .home-tracker__switch {
  color: var(--color-flame);
  font-size: 0.8rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,67,10,.35);
  transition: border-color var(--speed) var(--ease);
}

.page-home .home-tracker__switch:hover {
  border-color: var(--color-flame);
}

.page-home .home-tracker__row {
  display: grid;
  grid-template-columns: 4.2em 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 0.88rem;
  color: var(--color-gray);
}

.page-home .home-tracker__row--live {
  margin-top: 10px;
  border-radius: var(--radius-md);
  background: rgba(57,255,20,.07);
  border-left: 3px solid var(--color-neon);
  border-bottom-color: transparent;
  padding: 15px 12px;
}

.page-home .home-tracker__clock {
  font-family: var(--font-mono);
  color: var(--color-muted);
}

.page-home .home-tracker__row--live .home-tracker__clock {
  color: var(--color-neon);
  font-weight: 500;
}

.page-home .home-tracker__flag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-neon);
  background: rgba(57,255,20,.08);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  white-space: nowrap;
}

.page-home .home-tracker__fold {
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.page-home .home-tracker__fold summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--color-gray);
  padding: 14px 8px;
  transition: color var(--speed) var(--ease);
}

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

.page-home .home-tracker__fold summary::before {
  content: "▸ ";
  color: var(--color-neon);
}

.page-home .home-tracker__fold[open] summary::before {
  content: "▾ ";
}

.page-home .home-tracker__fold summary:hover {
  color: var(--color-white);
}

.page-home .home-tracker__row--old {
  opacity: 0.6;
}

.page-home .home-tracker__consolefoot {
  padding-top: 16px;
  text-align: right;
  font-size: 0.76rem;
  color: var(--color-muted);
}

.page-home .home-app__grid {
  display: grid;
  gap: 32px;
  margin-top: 28px;
  place-items: center;
}

@media (min-width: 860px) {
  .page-home .home-app__grid {
    grid-template-columns: minmax(230px, 280px) 1fr;
    align-items: center;
    gap: 44px;
  }
}

.page-home .home-app__figure {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 12px;
}

.page-home .home-app__screen {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 1 / 2;
  object-fit: cover;
  justify-self: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-neon-soft);
  box-shadow: 0 24px 56px rgba(0,0,0,.45);
}

.page-home .home-app__caption {
  text-align: center;
  font-size: 0.76rem;
  color: var(--color-muted);
}

.page-home .home-app__panel {
  width: 100%;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.page-home .home-app__panel-title {
  margin: 0 0 16px;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 800;
}

.page-home .home-app__features {
  margin: 0 0 20px;
  padding-left: 1.2em;
  display: grid;
  gap: 10px;
  line-height: 1.65;
  color: var(--color-gray);
}

.page-home .home-app__features li::marker {
  color: var(--color-neon);
}

.page-home .home-app__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-app__note {
  margin: 18px 0 0;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.page-home .home-news__grid {
  margin-top: 26px;
}

.page-home .home-news__item {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: var(--radius-md);
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.page-home .home-news__item:hover {
  transform: translateY(-3px);
  border-color: var(--color-neon-soft);
}

.page-home .home-news__title {
  margin: 0;
  color: var(--color-white);
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 800;
}

.page-home .home-news__excerpt {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--color-gray);
}

.page-home .home-news__more {
  margin-top: auto;
  color: var(--color-neon);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--speed) var(--ease);
}

.page-home .home-news__more:hover {
  border-color: var(--color-neon);
}

.page-home .home-contact__grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

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

.page-home .home-contact__card {
  padding: 28px 22px;
  border-radius: var(--radius-md);
  text-align: center;
}

.page-home .home-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  border: 1px solid var(--color-neon-soft);
  background: rgba(57,255,20,.05);
  color: var(--color-neon);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .home-contact__card h3 {
  margin: 0 0 8px;
  color: var(--color-white);
  font-size: 1.02rem;
  font-weight: 800;
}

.page-home .home-contact__card p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 1.02rem;
  color: var(--color-gray);
  word-break: break-word;
}

.page-home .home-contact__card .btn {
  margin-top: 14px;
}

.page-home .home-contact__meta {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: var(--color-muted);
}

.page-home .home-contact__address {
  margin: 24px 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.page-home .home-rail {
  display: none;
}

@media (min-width: 1280px) {
  .page-home .home-rail {
    display: flex;
    position: fixed;
    top: calc(var(--header-h, 64px) + 40px);
    left: calc(var(--rail-width, 272px) - 16px);
    transform: translateX(-50%);
    z-index: 15;
    flex-direction: column;
    align-items: center;
    gap: 9px;
  }
}

.page-home .home-rail::before {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--color-neon-soft), transparent);
}

.page-home .home-rail__node {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--color-muted);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.1);
  transition:
    color var(--speed) var(--ease),
    border-color var(--speed) var(--ease),
    background var(--speed) var(--ease);
}

.page-home .home-rail__node:hover {
  color: var(--color-neon);
  border-color: var(--color-neon);
}

.page-home .home-rail__node--active {
  color: var(--color-void);
  background: var(--color-neon);
  border-color: var(--color-neon);
  font-weight: 700;
}

.page-home .home-rail__caption {
  writing-mode: vertical-rl;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--color-muted);
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
