.page-home .score-tape {
  position: relative;
  background: var(--color-pitch);
  border-bottom: 1px solid rgba(192, 192, 192, .35);
  overflow: hidden;
}
.page-home .score-tape__inner {
  display: flex;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
}
.page-home .score-tape__caption {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex: 0 0 auto;
  padding: .65rem 1rem;
  background: var(--color-ember);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.page-home .score-tape__caption .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-white);
  animation: home-live-pulse 1.1s ease-in-out infinite alternate;
}
.page-home .score-tape__viewport {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.page-home .score-tape__viewport::before,
.page-home .score-tape__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  z-index: 2;
  pointer-events: none;
}
.page-home .score-tape__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-pitch), transparent);
}
.page-home .score-tape__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-pitch), transparent);
}
.page-home .score-tape__track {
  display: flex;
  width: max-content;
  animation: home-tape-scroll 40s linear infinite;
}
.page-home .score-tape:hover .score-tape__track,
.page-home .score-tape:focus-within .score-tape__track {
  animation-play-state: paused;
}
.page-home .score-tape__group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .65rem 1.5rem;
}
.page-home .score-tape__item {
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.page-home .score-tape__item b {
  color: var(--color-ember);
  font-family: var(--font-mono);
  font-size: .92rem;
  margin-left: .25rem;
}
.page-home .score-tape__item:hover {
  color: var(--color-white);
}

.page-home .home-hero {
  position: relative;
  color: var(--color-white);
  background: var(--color-pitch);
  overflow: hidden;
}
.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(200deg, rgba(11, 59, 46, .92) 0%, rgba(11, 59, 46, .55) 42%, rgba(0, 229, 255, .15) 100%);
  pointer-events: none;
}
.page-home .home-hero__container {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
.page-home .home-hero__top {
  max-width: 900px;
  margin-bottom: 1.5rem;
}
.page-home .home-hero__kicker {
  display: inline-block;
  margin: 0 0 .5rem;
  padding: .25rem .6rem;
  border: 1px solid rgba(0, 229, 255, .55);
  color: var(--color-bolt);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.page-home .home-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: .02em;
  text-wrap: balance;
}
.page-home .home-hero__lead {
  margin: .9rem 0 0;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
}
.page-home .home-hero__grid {
  display: grid;
  gap: 1.25rem;
}

.page-home .hero-window {
  position: relative;
  background: rgba(11, 59, 46, .72);
  border: 1px solid rgba(192, 192, 192, .5);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(4px);
}
.page-home .hero-window__chrome {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .9rem;
  border-bottom: 1px solid rgba(192, 192, 192, .4);
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .75);
}
.page-home .hero-window__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-ember);
  box-shadow: 0 0 0 0 rgba(255, 107, 53, .6);
  animation: home-ping 1.6s ease-out infinite;
}
.page-home .hero-window__label {
  margin-right: auto;
  text-transform: uppercase;
}
.page-home .hero-window__content {
  position: relative;
  text-align: center;
  padding: 2.4rem 1.25rem 2rem;
}
.page-home .hero-window__corner {
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 2;
  pointer-events: none;
}
.page-home .hero-window__corner--tl {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--color-bolt);
  border-left: 3px solid var(--color-bolt);
}
.page-home .hero-window__corner--tr {
  top: -1px;
  right: -1px;
  border-top: 3px solid var(--color-bolt);
  border-right: 3px solid var(--color-bolt);
}
.page-home .hero-window__corner--bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 3px solid var(--color-bolt);
  border-left: 3px solid var(--color-bolt);
}
.page-home .hero-window__corner--br {
  bottom: -1px;
  right: -1px;
  border-bottom: 3px solid var(--color-bolt);
  border-right: 3px solid var(--color-bolt);
}
.page-home .hero-window__score {
  margin-bottom: 1.25rem;
}
.page-home .hero-window__score-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(3.2rem, 12vw, 5.4rem);
  line-height: 1;
  font-weight: 900;
  color: var(--color-ember);
  text-shadow: 0 0 22px rgba(255, 107, 53, .4);
}
.page-home .hero-window__score-tag {
  margin-top: .6rem;
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .8);
}
.page-home .hero-window__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.page-home .hero-drawer__toggle {
  list-style: none;
  cursor: pointer;
}
.page-home .hero-drawer__toggle::-webkit-details-marker {
  display: none;
}
.page-home .hero-drawer__panel {
  width: 100%;
  margin-top: .8rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(192, 192, 192, .4);
  background: rgba(11, 59, 46, .35);
  text-align: left;
}
.page-home .hero-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}
.page-home .hero-drawer__list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  line-height: 1.55;
}
.page-home .hero-drawer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: 5px;
  height: 5px;
  background: var(--color-bolt);
}

.page-home .download-panel {
  background: rgba(244, 246, 245, .96);
  color: var(--color-ink);
  border: 1px solid var(--color-silver);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-md);
}
.page-home .download-panel__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  background: var(--color-ember);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-weight: 900;
  letter-spacing: .04em;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 100%);
}
.page-home .download-panel__title {
  margin: 0 0 .6rem;
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: var(--color-pitch);
}
.page-home .download-panel__desc {
  margin: 0 0 1rem;
  font-size: .85rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, .82);
}
.page-home .download-panel__points {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.page-home .download-panel__points li {
  position: relative;
  padding-left: 1rem;
  font-size: .82rem;
}
.page-home .download-panel__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  background: var(--color-bolt);
}
.page-home .download-panel__faq {
  display: inline-block;
  margin-top: .9rem;
  color: var(--color-pitch);
  font-size: .82rem;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-home .replay-section {
  padding: 3.5rem 0;
}
.page-home .section__header {
  margin-bottom: 1.5rem;
}
.page-home .section__index {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--color-ember);
  letter-spacing: .1em;
}
.page-home .section__title {
  margin: .3rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.15;
  color: var(--color-pitch);
}
.page-home .section__note {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--color-silver);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.page-home .section__more {
  color: var(--color-pitch);
  font-size: .82rem;
  text-decoration: none;
  border-bottom: 1px solid var(--color-silver);
}

.page-home .replay-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}
.page-home .replay-card {
  grid-column: 1 / -1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.35rem 1.25rem;
  background: var(--color-white);
  border: 1px solid rgba(192, 192, 192, .55);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.page-home .replay-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, transparent 50%, var(--color-bolt) 50%);
  opacity: .55;
  transition: opacity .18s var(--ease);
  pointer-events: none;
}
.page-home .replay-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 59, 46, .8);
}
.page-home .replay-card:hover::after {
  opacity: 1;
}
.page-home .replay-card--dark {
  background: var(--color-pitch);
  border-color: var(--color-pitch);
  color: var(--color-white);
}
.page-home .replay-card--dark h3 {
  color: var(--color-white);
}
.page-home .replay-card--dark p {
  color: rgba(255, 255, 255, .72);
}
.page-home .replay-card--feature {
  padding: 0;
  background: var(--color-pitch);
  border: 1px solid var(--color-pitch);
  color: var(--color-white);
}
.page-home .replay-card__media {
  margin: 0;
  border-radius: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--color-grass);
}
.page-home .replay-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .9;
}
.page-home .replay-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}
.page-home .replay-card__body h3 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.page-home .replay-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
}
.page-home .replay-card__link {
  margin-top: auto;
  color: var(--color-bolt);
  font-size: .85rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, .4);
}
.page-home .replay-card--wide {
  background: var(--color-white);
}
.page-home .data-value--bolt {
  font-family: var(--font-mono);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-bolt);
  font-weight: 900;
}
.page-home .replay-card__decoration {
  display: block;
  height: 4px;
  width: 64px;
  background: linear-gradient(90deg, var(--color-ember), transparent);
  margin-bottom: .25rem;
}
.page-home .replay-card--more {
  background: var(--color-neutral);
  border-style: dashed;
}

.page-home .score-section {
  background: var(--color-pitch);
  color: var(--color-white);
  padding: 3.5rem 0;
}
.page-home .score-section__grid {
  display: grid;
  gap: 1.5rem;
}
.page-home .score-section .section__index {
  color: var(--color-bolt);
}
.page-home .score-section__title {
  margin: .3rem 0 .8rem;
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--color-white);
}
.page-home .score-section__lead {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  line-height: 1.7;
}
.page-home .score-section__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.page-home .score-section__list li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
}
.page-home .score-section__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  background: var(--color-ember);
  transform: rotate(45deg);
}
.page-home .score-section__chart {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-neutral);
  border: 1px solid rgba(192, 192, 192, .35);
}
.page-home .score-section__chart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .subscribe-section {
  padding: 3.5rem 0;
}
.page-home .subscribe-steps {
  display: grid;
  gap: 1rem;
}
.page-home .subscribe-step {
  position: relative;
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(192, 192, 192, .5);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.page-home .subscribe-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: .8rem;
  background: var(--color-ember);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: .9rem;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 100%);
}
.page-home .subscribe-step h3 {
  margin: 0 0 .5rem;
  font-family: var(--font-display);
  color: var(--color-pitch);
  font-size: 1.15rem;
}
.page-home .subscribe-step p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, .78);
}

.page-home .volleyball-section {
  background: var(--color-neutral);
  padding: 3.5rem 0;
}
.page-home .volleyball-section__grid {
  display: grid;
  gap: 1.5rem;
}
.page-home .volleyball-section__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(192, 192, 192, .5);
}
.page-home .volleyball-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .volleyball-section__title {
  margin: .3rem 0 .8rem;
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--color-pitch);
}
.page-home .volleyball-section__lead {
  margin: 0 0 1rem;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, .82);
}
.page-home .volleyball-section__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.page-home .volleyball-section__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .85rem;
}
.page-home .volleyball-section__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  background: var(--color-bolt);
}

.page-home .platform-section {
  padding: 3.5rem 0;
}
.page-home .platform-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.page-home .platform-fact {
  padding: 1.4rem 1rem;
  text-align: center;
  border: 1px solid rgba(192, 192, 192, .55);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.page-home .platform-fact__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  line-height: 1.2;
  color: var(--color-pitch);
}
.page-home .platform-fact__label {
  display: block;
  margin-top: .4rem;
  font-size: .78rem;
  color: rgba(26, 26, 26, .7);
}

.page-home .cta-section {
  padding: 2rem 0 4rem;
}
.page-home .cta-section__inner {
  position: relative;
  background: var(--color-pitch);
  color: var(--color-white);
  padding: 2.8rem 1.5rem;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(192, 192, 192, .3);
  box-shadow: var(--shadow-lg);
}
.page-home .cta-section__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 229, 255, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, .08) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.page-home .cta-section__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  background: var(--color-ember);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 1.1rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 100%);
}
.page-home .cta-section__title {
  margin: 0 auto .8rem;
  max-width: 580px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  line-height: 1.2;
}
.page-home .cta-section__desc {
  margin: 0 auto 1.5rem;
  max-width: 560px;
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  line-height: 1.7;
}
.page-home .cta-section__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes home-live-pulse {
  from { opacity: .5; transform: scale(.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes home-ping {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, .6); }
  70% { box-shadow: 0 0 0 8px rgba(255, 107, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}
@keyframes home-tape-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .score-tape__track {
    animation: none;
  }
  .page-home .score-tape__caption .live-dot,
  .page-home .hero-window__dot {
    animation: none;
  }
}

@media (min-width: 768px) {
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, .9fr);
    align-items: stretch;
  }

  .page-home .replay-card {
    grid-column: span 4;
  }
  .page-home .replay-card--feature {
    grid-column: span 8;
  }
  .page-home .replay-card--wide {
    grid-column: span 8;
  }
  .page-home .replay-card--tall {
    grid-column: span 4;
  }

  .page-home .score-section__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-home .subscribe-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .volleyball-section__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-home .platform-facts {
    grid-template-columns: repeat(4, 1fr);
  }
}
