    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --blue-deep: #007AFE;
      --blue-primary: #007AFE;
      --blue-secondary: #02CAFF;
      --blue-light: #31AAFE;
      --orange: #F78220;
      --orange-dark: #d96910;
      --white: #fff;
      --off-white: #f4f7fc;
      --dark: #0d1b3e;
      --muted: #64748b;
      --font: 'Montserrat', sans-serif;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--font);
      color: var(--dark);
      overflow-x: hidden;
      background: var(--off-white);
    }

    .nav-links a.active {
      color: rgba(255, 255, 255, 0.96)
    }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -4px;
      height: 2px;
      background: var(--orange);
      border-radius: 999px;
    }

    /* ===== NAV ===== */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(0, 28, 88, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.3s;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block
    }

    .logo-text {
      color: #fff;
      font-family: var(--font);
      font-size: 1.1rem;
      font-weight: 500;
      letter-spacing: -0.4px;
      line-height: 1
    }

    .nav-links {
      display: flex;
      gap: 2vw;
      list-style: none
    }

    .nav-links a {
      position: relative;
      display: inline-block;
      padding-bottom: 7px;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: .85rem;
      font-weight: 500;
      transition: color .2s
    }

    .nav-links a:hover {
      color: #fff
    }

    .nav-btn {
      background: var(--orange);
      color: #fff;
      padding: .70em 1.30em;
      border-radius: 7px;
      font-family: var(--font);
      font-size: .75rem;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: .4px;
      transition: background .2s, transform .15s;
      border: none;
      cursor: pointer;
    }

    .nav-btn:hover {
      background: var(--orange-dark);
      transform: translateY(-1px)
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: none
    }

    .hamburger span {
      display: block;
      width: 23px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all .3s
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px)
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px)
    }

    .mob-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: rgba(0, 22, 72, 0.98);
      padding: 1.5rem 1.25rem;
      flex-direction: column;
      gap: 0;
      z-index: 899;
    }

    .mob-menu.open {
      display: flex
    }

    .mob-menu a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-size: .95rem;
      font-weight: 500;
      padding: .85rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      display: block;
      transition: color .2s;
    }

    .mob-menu a:hover {
      color: #fff
    }

    .mob-menu .mob-cta {
      margin-top: 1rem;
      text-align: center;
      border-bottom: none;
      background: var(--orange);
      color: #fff;
      border-radius: 7px;
      padding: 12px;
      font-weight: 700;
    }

    /* ===== HERO ===== */
    .hero--channels {
      position: relative;
      text-align: center;
      background:
        /* linear-gradient(180deg, rgba(0, 22, 72, 0.82) 0%, rgba(0, 47, 140, 0.6) 48%, rgba(0, 22, 72, 0.9) 100%), */
        url("../hero_bg/cable_channel_bg.png") center/cover no-repeat;
      overflow: hidden;
    }

    .hero--channels::before {
      content: none;
    }

    .hero--channels .hero__inner,
    .hero--channels .hero__content {
      position: relative;
      z-index: 1;
    }

    .section__tag {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: .8rem;
      display: block;
    }

    .hero--channels h1 {
      font-size: clamp(1.9rem, 3.4vw, 2.9rem);
      font-weight: 900;
      color: #fff;
      letter-spacing: 0;
      line-height: 1.12;
      margin-bottom: 1rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero--channels p {
      font-size: .95rem;
      color: rgba(255, 255, 255, .78);
      line-height: 1.75;
      max-width: 600px;
      margin: 0 auto;
    }

    /* ===== TIER TABS ===== */
    .tier-nav {
      position: sticky;
      top: 68px;
      z-index: 100;
      background: #fff;
      border-bottom: 1px solid rgba(0, 70, 176, .08);
      box-shadow: 0 2px 12px rgba(0, 70, 176, .05);
    }

    .tier-tabs {
      display: flex;
      justify-content: center;
      gap: .75rem;
      padding-block: 1rem;
      flex-wrap: wrap;
    }

    .tier-tab {
      background: none;
      border: 1.5px solid rgba(0, 70, 176, .15);
      color: var(--muted);
      font-family: var(--font);
      font-size: .8rem;
      font-weight: 700;
      padding: .6em 1.4em;
      border-radius: 30px;
      cursor: pointer;
      transition: all .2s;
      letter-spacing: .2px;
    }

    .tier-tab:hover {
      border-color: var(--blue-primary);
      color: var(--blue-primary);
    }

    .tier-tab.active {
      background: var(--blue-primary);
      border-color: var(--blue-primary);
      color: #fff;
    }

    .tier-tab.active[data-tier="premium"] {
      background: var(--orange);
      border-color: var(--orange);
    }

    /* ===== CHANNELS WRAPPER ===== */
    .channels-section {
      padding-block: 3.5rem 5rem;
    }

    .tier-section {
      display: none;
      animation: fadeIn .35s ease;
    }

    .tier-section.active {
      display: block;
    }

    .tier-categories {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 2.25rem 2.5rem;
      align-items: start;
    }

    .category-group {
      break-inside: avoid;
      -webkit-column-break-inside: avoid;
      display: block;
      width: 100%;
      margin-bottom: 0;
    }

    @media (max-width: 950px) {
      .tier-categories {
        grid-template-columns: 2fr;
        gap: 0;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(8px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .tier-intro {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 2.2rem;
      padding-bottom: 1.5rem;
      border-bottom: 3px solid var(--orange);
    }

    .tier-intro h2 {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--dark);
      letter-spacing: -.4px;
    }

    .tier-intro .tier-count {
      font-size: .8rem;
      color: var(--muted);
      font-weight: 600;
    }

    /* ===== CATEGORY GROUPS ===== */
    .category-group {
      margin-bottom: 2.4rem;
    }

    .category-label-row {
      display: flex;
      align-items: center;
      gap: .8rem;
      margin-bottom: 1rem;
    }

    /* .category-label-row::before,
    .category-label-row::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(0, 70, 176, .12);
    } */

    .category-label {
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-align: center;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--blue-primary);
      border-top: 4px solid var(--orange);
      padding: .65em 1em;
      border-radius: 6px;
      width: 100%;
      flex-shrink: 0;
    }

    .channel-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      width: 100%;
      margin-inline: auto;
    }

    .channel-card {
      display: flex;
      align-items: baseline;
      gap: .7rem;
      padding: .5rem .3rem;
      border-bottom: 1px solid rgba(0, 70, 176, .06);
      border-left: 3px solid transparent;
      transition: background .15s, border-color .15s;
    }

    .channel-card:hover {
      background: rgba(242, 100, 19, .05);
      border-left: 3px solid var(--orange);
    }

    .channel-card .ch-num {
      font-size: .8rem;
      color: var(--blue-primary);
      font-weight: 700;
      min-width: 34px;
      flex-shrink: 0;
    }

    .channel-card p {
      font-size: .82rem;
      font-weight: 600;
      color: var(--dark);
      line-height: 1.3;
      flex: 1;
    }

    .channel-card p a {
      color: inherit;
      text-decoration: none;
    }

    .channel-card p a:hover,
    .channel-card p a:focus-visible {
      color: var(--blue-primary);
      text-decoration: underline;
      text-underline-offset: .16em;
    }

    .channel-card.is-hidden-by-limit {
      display: none;
    }

    .channel-disclaimer {
      text-align: center;
      font-size: .75rem;
      color: var(--muted);
      line-height: 1.6;
      margin-top: var(--stack-sm);
      margin-bottom: var(--stack-xl);
      font-style: italic;
    }

    .category-see-more {
      margin-top: .35rem;
      padding: .15rem 0 0;
      border: 0;
      background: none;
      color: var(--orange);
      font-family: var(--font);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .8px;
      text-transform: uppercase;
      cursor: pointer;
      text-align: left;
    }

    .category-see-more:hover {
      color: var(--orange-dark);
    }

    .channel-card .addon-star {
      color: var(--orange);
      font-weight: 800;
    }

    .channel-card .addon-price {
      font-size: .82rem;
      font-weight: 800;
      color: var(--blue-deep);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .addon-heading {
      text-align: center;
      font-size: clamp(1.2rem, 2.2vw, 1.6rem);
      font-weight: 900;
      color: var(--dark);
      letter-spacing: -.4px;
      max-width: 680px;
      margin: 3rem auto 2rem;
      line-height: 1.3;
    }

    .addon-categories {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      max-width: 860px;
      margin: 0 auto;
      gap: 2rem 2.5rem;
    }

    .addon-categories .category-label {
      width: 100%;
    }

    .addon-only {
      display: none;
    }

    .addon-only.active {
      display: block;
    }

    @media (max-width: 760px) {
      .addon-categories {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }

    /* ===== CTA BAND ===== */
    .cta-band {
      background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
      border-radius: 16px;
      padding: 3rem 2rem;
      text-align: center;
      margin-top: 1rem;
    }

    .cta-band h3 {
      color: #fff;
      font-size: 1.5rem;
      font-weight: 900;
      margin-bottom: .7rem;
      letter-spacing: -.4px;
    }

    .cta-band p {
      color: rgba(255, 255, 255, .78);
      font-size: .9rem;
      margin-bottom: 1.6rem;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-band a {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: .9em 2.2em;
      border-radius: 8px;
      font-weight: 700;
      font-size: .85rem;
      text-decoration: none;
      letter-spacing: .4px;
      transition: background .2s, transform .15s;
    }

    .cta-band a:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .site-header {
        height: 60px;
      }

      .mob-menu {
        top: 60px;
      }

      .tier-nav {
        top: 60px;
      }

      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .tier-tabs {
        justify-content: center;
        overflow-x: visible;
        gap: .6rem;
        padding-block: .9rem;
      }

      .channel-grid {
        display: grid;
        grid-template-columns: 2fr;
        gap: 0;
        width: 100%;
        margin-inline: auto;
      }

      .category-label {
        width: 100%;
        font-size: .7rem;
      }
    }
  

/* The shared hero is start-aligned by default; channels is a centered page hero. */
body[data-page='channels'] .hero__inner {
  align-items: center;
  text-align: center;
}

body[data-page='channels'] .hero__content {
  margin-inline: auto;
  text-align: center;
}

body[data-page='channels'] .hero__actions {
  justify-content: center;
}


body[data-page='channels'] .hero--channels .breadcrumb { justify-content: center; }
@media (max-width: 600px) {


  body[data-page='channels'] .hero__inner {
    align-items: center;
    text-align: center !important;
  }

  body[data-page='channels'] .hero__content {
    margin-inline: auto !important;
    text-align: center !important;
  }

  body[data-page='channels'] .hero__actions {
    justify-content: center !important;
  }
}

/* Availability note below the channel categories. */
.channels-note {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  width: min(100%, 920px);
  margin: 2.25rem auto 0;
  padding: .9rem 1rem;
  border: 1px solid rgba(247, 130, 32, .28);
  border-left: 4px solid var(--orange);
  border-radius: .7rem;
  background: rgba(255, 255, 255, .78);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.6;
  box-shadow: 0 8px 22px rgba(24, 59, 110, .06);
}

.channels-note strong {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 1rem;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .channels-note {
    margin-top: 1.5rem;
    padding: .8rem .9rem;
    font-size: .78rem;
  }
}