.page-home {
  --home-section-gap: clamp(4rem, 8vw, 6.5rem);
  --home-hero-gap: clamp(2.5rem, 5vw, 4rem);
  --home-radius: 28px;
  background: var(--color-navy-deep);
  color: var(--color-cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-home figure {
  margin: 0;
}

.page-home a,
.page-home button {
  font-family: inherit;
}

.page-home a:focus-visible,
.page-home button:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

.page-home .home-breadcrumb {
  max-width: var(--ak-container);
  margin: 0 auto;
  padding: 1.25rem var(--ak-gutter) 0;
}

.page-home .home-breadcrumb__list {
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--ak-text--muted);
}

.page-home .home-breadcrumb__list a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .home-breadcrumb__list a:hover {
  color: var(--color-yellow);
}

.page-home .home-breadcrumb__list li:not(:last-child)::after {
  content: " / ";
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
}

.page-home .home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.page-home .home-kicker::before {
  content: "//";
  color: var(--color-orange);
  font-weight: 800;
}

.page-home .home-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-hero-gap);
  max-width: var(--ak-container);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--ak-gutter) 0;
  scroll-margin-top: 90px;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: 0;
  width: 24rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent 68%);
  pointer-events: none;
}

.page-home .home-hero > * {
  position: relative;
  z-index: 1;
}

.page-home .home-hero__track {
  display: block;
}

.page-home .home-hero__track-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.page-home .home-hero__toc {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.page-home .home-hero__toc a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ak-text--invert);
  text-decoration: none;
  transition: background 0.2s ease;
}

.page-home .home-hero__toc a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.page-home .home-hero__main h1 {
  margin: 1rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.page-home .home-hero__lead {
  max-width: 42rem;
  margin-bottom: 1.75rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.page-home .home-hero__note {
  position: relative;
  padding: 1.5rem 1.25rem;
  border-radius: var(--ak-radius-md);
  background: linear-gradient(135deg, rgba(28, 58, 94, 0.72), rgba(10, 37, 64, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .home-hero__note::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(-45deg, transparent 0 12px, rgba(255, 255, 255, 0.035) 12px 13px);
  pointer-events: none;
}

.page-home .home-hero__note > * {
  position: relative;
  z-index: 1;
}

.page-home .home-hero__note-title {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.page-home .home-hero__note-text {
  margin: 0 0 1rem;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.page-home .home-hero__note a {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-home .home-hero__note a:hover {
  color: var(--color-yellow);
}

.page-home .home-hero__media {
  position: relative;
  margin: 0;
  border-radius: var(--ak-radius-lg);
  box-shadow: var(--ak-shadow);
}

.page-home .home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--ak-radius-lg);
}

.page-home .home-hero__media::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-orange);
  border: 4px solid var(--color-navy-deep);
  pointer-events: none;
}

.page-home .home-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: var(--ak-container);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--ak-gutter) 0;
}

.page-home .home-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.page-home .home-pill:hover {
  transform: translateY(-2px) scale(1.01);
  background: rgba(255, 255, 255, 0.1);
}

.page-home .home-pill__num {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-orange);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
}

.page-home .home-pill:nth-child(2) .home-pill__num {
  background: var(--color-navy-blue);
}

.page-home .home-pill:nth-child(3) .home-pill__num {
  background: var(--color-yellow);
  color: var(--color-navy-deep);
}

.page-home .home-pill:nth-child(4) .home-pill__num {
  background: #FFFFFF;
  color: var(--color-navy-deep);
}

.page-home .home-section {
  position: relative;
  scroll-margin-top: calc(var(--ak-header-h) + 1.5rem);
}

.page-home .home-replays {
  max-width: var(--ak-container);
  margin: 0 auto;
  padding: var(--home-section-gap) var(--ak-gutter) 0;
}

.page-home .home-replays__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 52rem;
}

.page-home .home-replays h2,
.page-home .home-guide h2,
.page-home .home-index h2 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.page-home .home-replays__desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .home-replays__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 2.25rem 0 0;
}

.page-home .home-stat {
  padding: 1.5rem 1.25rem;
  border-radius: var(--ak-radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .home-stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.page-home .home-stat--orange .home-stat__num {
  color: var(--color-orange);
}

.page-home .home-stat--yellow .home-stat__num {
  color: var(--color-yellow);
}

.page-home .home-stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
}

.page-home .home-sports {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.9rem 0 0;
  padding: 0;
}

.page-home .home-sports li {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 213, 194, 0.12);
  border: 1px solid rgba(255, 213, 194, 0.22);
  color: var(--color-peach);
  font-size: 14px;
  font-weight: 500;
}

.page-home .home-replays__trust {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .home-channels {
  padding: var(--home-section-gap) 0 0;
}

.page-home .home-channels__inner {
  max-width: var(--ak-container);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) var(--ak-gutter);
  background: var(--color-cream);
  color: var(--color-ink);
  border-radius: var(--ak-radius-lg);
}

.page-home .home-channels__inner .home-kicker {
  color: var(--color-navy-blue);
}

.page-home .home-channels__inner .home-kicker::before {
  color: var(--color-orange);
}

.page-home .home-channels__intro {
  max-width: 42rem;
}

.page-home .home-channels__intro h2,
.page-home .home-audiences__intro h2 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-navy-deep);
}

.page-home .home-channels__desc,
.page-home .home-audiences__desc {
  margin: 1rem 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(10, 37, 64, 0.76);
}

.page-home .home-channels__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.page-home .home-channels__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--ak-radius-lg);
  background: var(--color-navy-deep);
}

.page-home .home-channels__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--ak-radius-lg);
}

.page-home .channel-browser {
  display: grid;
  gap: 1rem;
}

.page-home .channel-browser__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-home .channel-tab {
  appearance: none;
  border: 1px solid rgba(10, 37, 64, 0.16);
  background: transparent;
  color: var(--color-navy-blue);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-home .channel-tab:hover {
  background: rgba(10, 37, 64, 0.06);
}

.page-home .channel-tab--active,
.page-home .channel-tab.is-active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #FFFFFF;
}

.page-home .channel-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.page-home .channel-item {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  border-radius: var(--ak-radius-md);
  background: #FFFFFF;
  border: 1px solid var(--color-mist);
  box-shadow: 0 6px 16px rgba(10, 37, 64, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .channel-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.1);
}

.page-home .channel-item__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy-deep);
}

.page-home .channel-item__spec {
  font-size: 13px;
  color: rgba(26, 26, 26, 0.65);
}

.page-home .channel-item__source {
  justify-self: start;
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.07);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-navy-blue);
}

.page-home .home-guide {
  max-width: var(--ak-container);
  margin: 0 auto;
  padding: var(--home-section-gap) var(--ak-gutter) 0;
}

.page-home .home-guide__intro {
  max-width: 50rem;
}

.page-home .home-guide__desc {
  margin: 1rem 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .home-guide__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.25rem;
}

.page-home .home-guide__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--ak-radius-lg);
}

.page-home .home-guide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--ak-radius-lg);
}

.page-home .home-guide__media figcaption {
  padding: 0.85rem 1rem 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}

.page-home .guide-steps {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.page-home .guide-step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--ak-radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .guide-step__num {
  flex: 0 0 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-orange);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1rem;
}

.page-home .guide-step__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #FFFFFF;
}

.page-home .guide-step__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-subscribe {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--ak-radius-lg);
  background: rgba(255, 213, 194, 0.1);
  border: 1px solid rgba(255, 213, 194, 0.18);
}

.page-home .home-subscribe__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--ak-radius-md);
}

.page-home .home-subscribe__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--ak-radius-md);
}

.page-home .home-subscribe__badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-navy-deep);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-home .home-subscribe__body h3 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  color: #FFFFFF;
}

.page-home .home-subscribe__body p {
  margin: 0 0 1rem;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .home-audiences {
  padding: var(--home-section-gap) 0 0;
}

.page-home .home-audiences__inner {
  max-width: var(--ak-container);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) var(--ak-gutter);
  background: linear-gradient(135deg, var(--color-peach), var(--color-cream));
  color: var(--color-ink);
  border-radius: var(--ak-radius-lg);
}

.page-home .home-audiences__inner .home-kicker {
  color: var(--color-navy-blue);
}

.page-home .home-audiences__inner .home-kicker::before {
  color: var(--color-orange);
}

.page-home .home-audiences__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}

.page-home .home-audience {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  border-radius: var(--ak-radius-lg);
  background: #FFFFFF;
  border: 1px solid rgba(255, 107, 53, 0.12);
  border-top: 4px solid var(--color-orange);
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .home-audience:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(10, 37, 64, 0.12);
}

.page-home .home-audience--multi {
  border-top-color: var(--color-navy-blue);
}

.page-home .home-audience--missed {
  border-top-color: var(--color-yellow);
}

.page-home .home-audience--devices {
  border-top-color: var(--color-navy-blue);
}

.page-home .home-audience__tag {
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--color-orange);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
}

.page-home .home-audience h3 {
  margin: 1.1rem 0 0.6rem;
  font-size: 1.15rem;
  color: var(--color-navy-deep);
}

.page-home .home-audience p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.72);
}

.page-home .home-audience__index {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: rgba(10, 37, 64, 0.1);
}

.page-home .home-audiences__cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--color-navy-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-home .home-audiences__cta:hover {
  color: var(--color-orange);
}

.page-home .home-index {
  max-width: var(--ak-container);
  margin: 0 auto;
  padding: var(--home-section-gap) var(--ak-gutter);
}

.page-home .home-index__head {
  margin-bottom: 1.5rem;
}

.page-home .home-index__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.page-home .home-index__card {
  position: relative;
  display: block;
  padding: 1.75rem 1.25rem;
  border-radius: var(--ak-radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.page-home .home-index__card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.page-home .home-index__num {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
}

.page-home .home-index__card-title {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.page-home .home-index__card-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

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

@media (min-width: 560px) {
  .page-home .channel-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-subscribe {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    align-items: center;
  }
}

@media (min-width: 720px) {
  .page-home .home-audiences__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .page-home .home-hero {
    grid-template-columns: 7rem minmax(0, 1fr) minmax(15rem, 18rem);
    grid-template-areas:
      "track main note"
      "track media note";
    column-gap: 2rem;
    align-items: start;
  }

  .page-home .home-hero__track {
    grid-area: track;
    position: sticky;
    top: calc(var(--ak-header-h) + 2rem);
    align-self: start;
  }

  .page-home .home-hero__track-label {
    margin-bottom: 1.5rem;
  }

  .page-home .home-hero__toc {
    display: block;
  }

  .page-home .home-hero__toc li + li {
    margin-top: 0.35rem;
  }

  .page-home .home-hero__toc a {
    display: block;
    padding: 0.55rem 0.4rem;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .page-home .home-hero__main {
    grid-area: main;
  }

  .page-home .home-hero__note {
    grid-area: note;
  }

  .page-home .home-hero__media {
    grid-area: media;
  }

  .page-home .home-pills {
    grid-template-columns: 1.1fr 0.8fr 1fr 0.9fr;
    align-items: center;
  }

  .page-home .home-replays__intro {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: end;
    max-width: none;
  }

  .page-home .home-channels__layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
  }

  .page-home .home-guide__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    grid-template-areas:
      "media steps"
      "subscribe steps";
    align-items: start;
  }

  .page-home .home-guide__media {
    grid-area: media;
  }

  .page-home .guide-steps {
    grid-area: steps;
  }

  .page-home .home-subscribe {
    grid-area: subscribe;
  }

  .page-home .home-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .page-home * {
    transition: none !important;
    animation: none !important;
  }
}
