.page-home .hp-ticker {
  background: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}

.page-home .hp-ticker__inner {
  display: flex;
  align-items: center;
  gap: var(--sp2);
  min-height: 48px;
}

.page-home .hp-ticker__badge {
  display: none;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  margin: 0;
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--c-cyan);
  white-space: nowrap;
}

.page-home .hp-ticker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-cyan);
  animation: hp-pulse 1.6s ease-in-out infinite;
}

@keyframes hp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.72); }
}

.page-home .hp-ticker__viewport {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.page-home .hp-ticker__viewport::before,
.page-home .hp-ticker__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  z-index: 2;
  pointer-events: none;
}

.page-home .hp-ticker__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--c-ink), rgba(7, 20, 16, 0));
}

.page-home .hp-ticker__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--c-ink), rgba(7, 20, 16, 0));
}

.page-home .hp-ticker__track {
  display: flex;
  width: max-content;
  animation: hp-marquee 48s linear infinite;
}

.page-home .hp-ticker:hover .hp-ticker__track,
.page-home .hp-ticker:focus-within .hp-ticker__track {
  animation-play-state: paused;
}

@keyframes hp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.page-home .hp-ticker__group {
  display: flex;
  align-items: center;
}

.page-home .hp-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  margin-right: 10px;
  padding: 5px 11px;
  border: 1px solid var(--c-line-soft);
  background: rgba(245, 240, 230, .04);
  border-radius: 2px;
  white-space: nowrap;
}

.page-home .hp-chip--live {
  border-color: rgba(69, 227, 210, .42);
}

.page-home .hp-chip__round {
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--c-dim);
}

.page-home .hp-chip__team {
  font-size: 13px;
  color: var(--c-paper-86);
}

.page-home .hp-chip__score {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--c-cyan);
}

.page-home .hp-chip__state {
  padding-left: 7px;
  border-left: 1px solid var(--c-line-soft);
  font-size: 11px;
  color: var(--c-dim);
}

.page-home .hp-chip--live .hp-chip__state {
  color: var(--c-cyan);
}

.page-home .hp-ticker__more {
  flex: 0 0 auto;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--c-line);
  font-size: 13px;
  color: var(--c-gold);
  white-space: nowrap;
}

.page-home .hp-ticker__more:hover {
  color: var(--c-paper);
}

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

.page-home .anchor-rail__link {
  font-size: 12px;
  color: var(--c-dim);
  padding: 4px 9px;
  border-right: 2px solid transparent;
  transition: color var(--dur) ease, border-color var(--dur) ease;
}

.page-home .anchor-rail__link:hover,
.page-home .anchor-rail__link.is-active {
  color: var(--c-gold);
  border-right-color: var(--c-gold);
}

.page-home .hp-hero {
  padding: var(--sp4) 0 var(--sp3);
}

.page-home .hp-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.page-home .hp-cell {
  position: relative;
  padding: 18px;
  background: var(--c-moss);
  border: 1px solid var(--c-line-soft);
  border-radius: 2px;
}

.page-home .hp-cell--focus {
  display: flex;
  align-items: flex-end;
  min-height: 400px;
  padding: clamp(20px, 4vw, 42px);
  overflow: hidden;
  background: var(--c-ink);
  border-color: var(--c-line);
}

.page-home .hp-cell__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.15) brightness(.5);
  z-index: 0;
}

.page-home .hp-cell--focus::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 20, 16, .3) 0%, rgba(7, 20, 16, .9) 76%);
}

.page-home .hp-cell__body {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.page-home .hp-hero__kicker {
  display: inline-block;
  margin: 0 0 var(--sp3);
  padding: 5px 16px 5px 10px;
  background: var(--c-gold);
  color: var(--c-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
}

.page-home .hp-hero__title {
  margin: 0 0 var(--sp2);
  font-size: clamp(26px, 5.4vw, 46px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--c-paper);
}

.page-home .hp-hero__lede {
  margin: 0 0 var(--sp3);
  max-width: 34em;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.8;
  color: var(--c-paper-86);
}

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

.page-home .hp-cell__k {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--c-gold);
}

.page-home .hp-cell__lead {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--c-paper);
}

.page-home .hp-cell__note {
  margin: 0 0 var(--sp2);
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-paper-70);
}

.page-home .hp-cell__big {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 8px;
}

.page-home .hp-cell__big .num {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--c-gold);
}

.page-home .hp-cell__bigunit {
  font-size: 14px;
  color: var(--c-paper-70);
}

.page-home .hp-cell__link {
  display: inline-block;
  font-size: 13px;
  color: var(--c-cyan);
  border-bottom: 1px solid rgba(69, 227, 210, .4);
  padding-bottom: 1px;
}

.page-home .hp-cell__link:hover {
  color: var(--c-paper);
  border-bottom-color: var(--c-paper);
}

.page-home .hp-cell--live {
  background: linear-gradient(160deg, rgba(69, 227, 210, .14), rgba(30, 70, 58, .9) 62%);
  border-color: rgba(69, 227, 210, .28);
}

.page-home .hp-cell--map {
  background: linear-gradient(160deg, rgba(217, 164, 65, .16), rgba(11, 42, 34, .95) 64%);
  border-color: var(--c-line);
}

.page-home .hp-section {
  padding: var(--sp5) 0;
}

.page-home .hp-section--reports {
  background: linear-gradient(180deg, rgba(30, 70, 58, .45), rgba(11, 42, 34, 0) 70%);
}

.page-home .hp-sec-head {
  max-width: 680px;
  margin-bottom: var(--sp4);
}

.page-home .hp-h2 {
  margin: 0 0 var(--sp2);
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -.01em;
  color: var(--c-paper);
}

.page-home .hp-quad {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .hp-quad__item {
  position: relative;
  padding: 22px 20px;
  border-radius: 2px;
  overflow: hidden;
}

.page-home .hp-quad__item--rounds {
  background: var(--c-moss);
  border-left: 3px solid var(--c-cyan);
}

.page-home .hp-quad__item--spot {
  background: var(--c-ink);
  border-left: 3px solid var(--c-coral);
}

.page-home .hp-quad__item--squad {
  padding: 0;
  background: rgba(255, 106, 85, .08);
  border: 1px solid rgba(255, 106, 85, .3);
}

.page-home .hp-quad__item--stands {
  padding: 0;
  background: rgba(185, 106, 75, .14);
  border: 1px solid rgba(185, 106, 75, .4);
}

.page-home .hp-quad__media {
  margin: 0;
  height: 168px;
  overflow: hidden;
}

.page-home .hp-quad__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.12) brightness(.62);
}

.page-home .hp-quad__body {
  padding: 20px;
}

.page-home .hp-quad__title {
  margin: 12px 0 10px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--c-paper);
}

.page-home .hp-quad__text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-paper-86);
}

.page-home .hp-quad__mini {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--c-line-soft);
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-paper-70);
}

.page-home .hp-band {
  height: clamp(88px, 11vw, 136px);
  overflow: hidden;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.page-home .hp-band__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.2) brightness(.55);
}

.page-home .hp-ring-wrap {
  display: flex;
  justify-content: center;
  padding: clamp(48px, 7vw, 76px) 0 clamp(36px, 5vw, 56px);
}

.page-home .hp-ring {
  position: relative;
  width: clamp(258px, 78vw, 540px);
  aspect-ratio: 1 / 1;
}

.page-home .hp-ring__orbit {
  position: absolute;
  inset: 10%;
  border: 1px dashed var(--c-line);
  border-radius: 50%;
}

.page-home .hp-ring__orbit::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(69, 227, 210, .16);
  border-radius: 50%;
}

.page-home .hp-ring__core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  text-align: center;
}

.page-home .hp-ring__core-num {
  display: block;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(46px, 13vw, 84px);
  line-height: 1;
  color: var(--c-gold);
}

.page-home .hp-ring__core-label {
  margin: 6px 0 0;
  font-size: 13px;
  letter-spacing: .28em;
  color: var(--c-paper-70);
}

.page-home .hp-ring__core-sub {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--c-cyan);
}

.page-home .hp-dot {
  position: absolute;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  background: var(--c-night);
  color: var(--c-paper-70);
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--dur) ease, border-color var(--dur) ease, background-color var(--dur) ease, color var(--dur) ease;
}

.page-home .hp-dot:hover,
.page-home .hp-dot:focus {
  z-index: 5;
  border-color: var(--c-gold);
  background: var(--c-moss);
  color: var(--c-paper);
  transform: scale(1.28);
  outline: none;
}

.page-home .hp-dot__tip {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, -8px);
  width: max-content;
  max-width: min(180px, 56vw);
  padding: 6px 10px;
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  border-radius: 2px;
  box-shadow: var(--shadow-paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur) ease, transform var(--dur) ease, visibility var(--dur) ease;
  z-index: 6;
}

.page-home .hp-dot:hover .hp-dot__tip,
.page-home .hp-dot:focus .hp-dot__tip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -14px);
}

.page-home .hp-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: var(--sp5);
}

.page-home .hp-flow__step {
  position: relative;
  padding: 26px 0 0;
}

.page-home .hp-flow__step::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c-line);
}

.page-home .hp-flow__step::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-gold);
}

.page-home .hp-flow__n {
  margin: 0 0 4px;
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--c-gold);
}

.page-home .hp-flow__t {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--c-paper);
}

.page-home .hp-flow__d {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-paper-70);
}

.page-home .hp-feed {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--c-line-soft);
}

.page-home .hp-feed__item {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line-soft);
}

.page-home .hp-feed__meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--c-dim);
}

.page-home .hp-feed__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.page-home .hp-feed__title a {
  color: var(--c-paper);
  transition: color var(--dur) ease;
}

.page-home .hp-feed__title a:hover {
  color: var(--c-gold);
}

.page-home .hp-feed__tags {
  margin: 0;
}

.page-home .hp-section--trust {
  padding-bottom: var(--sp6);
}

.page-home .hp-trust {
  display: grid;
  gap: var(--sp4);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--c-line);
  border-radius: 2px;
  background: linear-gradient(135deg, var(--c-moss), var(--c-night) 62%);
}

.page-home .hp-trust__text {
  margin: 0 0 var(--sp3);
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-paper-86);
}

.page-home .hp-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
}

.page-home .hp-trust__link {
  font-size: 13px;
  color: var(--c-gold);
  border-bottom: 1px solid rgba(217, 164, 65, .35);
  padding-bottom: 1px;
}

.page-home .hp-trust__link:hover {
  color: var(--c-paper);
  border-bottom-color: var(--c-paper);
}

.page-home .hp-trust__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 12px;
}

.page-home .hp-trust__stats .stat__num {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(30px, 6vw, 42px);
  line-height: 1;
  color: var(--c-paper);
}

.page-home .hp-trust__stats .stat--gold .stat__num {
  color: var(--c-gold);
}

.page-home .hp-trust__stats .stat--coral .stat__num {
  color: var(--c-coral);
}

.page-home .hp-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--c-line);
  border-radius: 2px;
  background: var(--c-ink);
  color: var(--c-gold);
  font-size: 17px;
  line-height: 1;
}

.page-home .hp-top:hover {
  background: var(--c-moss);
  color: var(--c-paper);
}

@media (min-width: 640px) {
  .page-home .hp-ticker__badge {
    display: inline-flex;
  }

  .page-home .hp-trust__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

  .page-home .hp-quad {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
  }

  .page-home .hp-quad__item--rounds {
    grid-column: 1 / 8;
  }

  .page-home .hp-quad__item--spot {
    grid-column: 8 / 13;
  }

  .page-home .hp-quad__item--squad {
    grid-column: 1 / 6;
  }

  .page-home .hp-quad__item--stands {
    grid-column: 6 / 13;
  }

  .page-home .hp-feed__item {
    grid-template-columns: 176px minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 18px;
  }
}

@media (min-width: 960px) {
  .page-home .hp-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: minmax(140px, auto);
    gap: 14px;
  }

  .page-home .hp-cell--focus {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
  }

  .page-home .hp-cell--live {
    grid-column: 5 / 7;
    grid-row: 1 / 3;
  }

  .page-home .hp-cell--map {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .page-home .hp-cell--app {
    grid-column: 3 / 5;
    grid-row: 3;
  }

  .page-home .hp-cell--help {
    grid-column: 5 / 7;
    grid-row: 3;
  }

  .page-home .hp-trust {
    grid-template-columns: 5fr 7fr;
    align-items: start;
  }

  .page-home .hp-ring {
    width: clamp(360px, 46vw, 540px);
  }
}

@media (min-width: 1200px) {
  .page-home .anchor-rail {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 30;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hp-ticker__track {
    animation: none;
  }

  .page-home .hp-ticker__dot {
    animation: none;
  }

  .page-home .hp-dot,
  .page-home .hp-dot__tip {
    transition: none;
  }
}
