.streaming-hero {
  position: relative;
  max-width: 100%;
  overflow-x: clip;
  padding-top: 72px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, var(--color-hero-top), var(--color-hero-bottom));
}

.streaming-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 56px;
}

.streaming-hero-copy {
  min-width: 0;
}

.streaming-hero-copy > .badge {
  margin-bottom: 20px;
}

.streaming-hero-copy h1 {
  max-width: 720px;
}

.streaming-lead {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--color-text-muted);
  font-size: 19px;
}

.streaming-lead strong {
  color: var(--color-text);
}

.streaming-facts {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.streaming-facts li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.streaming-facts svg {
  color: var(--color-danger);
}

.streaming-board {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-window);
  background: var(--color-paper);
  box-shadow: var(--shadow-window);
  transform: rotate(.35deg);
}

.streaming-board-bar {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(180deg, var(--color-paper), var(--color-hero-bottom));
}

.streaming-board-bar b {
  margin-left: 8px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.board-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: var(--color-paper-muted);
}

.streaming-board-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 18px;
  background: var(--color-line);
}

.media-tile {
  display: flex;
  min-width: 0;
  min-height: 108px;
  justify-content: center;
  flex-direction: column;
  padding: 18px;
  background: var(--color-paper);
}

.media-tile strong {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 19px;
}

.media-tile small {
  margin-top: 8px;
  color: var(--color-text-muted);
}

.media-tile-main {
  min-height: 138px;
  background: linear-gradient(145deg, rgba(var(--rgb-peach), .62), rgba(var(--rgb-apricot), .38));
}

.media-state {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 13px;
  padding: 3px 8px;
  border: 1px solid var(--color-danger);
  border-radius: var(--radius-xs);
  color: var(--color-danger);
  font-size: 10px;
  font-weight: 800;
}

.media-tile-wide {
  grid-column: 1 / -1;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 18px;
  color: var(--color-accent);
  background: rgba(var(--rgb-sage), .38);
  font-weight: 800;
}

.board-route {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.streaming-article {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.content-section {
  max-width: 980px;
  margin-inline: auto;
  padding-top: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--color-line);
}

.content-section:last-child {
  border-bottom: 0;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.streaming-article p {
  margin-bottom: 20px;
}

.streaming-article .text-link {
  color: var(--color-danger);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(var(--rgb-danger), .35);
  text-underline-offset: .2em;
}

.streaming-table td {
  min-width: 160px;
}

.streaming-table td:first-child {
  min-width: 150px;
}

.status-check {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 3px 9px;
  border: 1px solid var(--color-warning);
  border-radius: var(--radius-xs);
  color: var(--color-warning);
  background: var(--color-paper);
  font-size: 12px;
  font-weight: 800;
}

.table-note {
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.selection-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 38px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-line);
}

.selection-card {
  min-width: 0;
  padding: 24px;
  background: var(--color-paper);
}

.selection-card h3 {
  margin-top: 18px;
  font-size: 20px;
}

.selection-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 15px;
}

.selection-mark {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  color: var(--color-paper);
  background: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}

.term-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.term-compare article {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  box-shadow: var(--shadow-panel);
}

.term-compare h3 {
  margin-top: 18px;
}

.term-compare p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.quality-checklist {
  margin: 30px 0;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--color-paper), var(--color-paper-muted));
  box-shadow: var(--shadow-panel);
}

.quality-checklist ul {
  margin-bottom: 0;
}

.quality-checklist li + li {
  margin-top: 8px;
}

.error-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-line);
}

.error-card {
  min-width: 0;
  padding: 24px;
  background: var(--color-paper);
}

.error-card:nth-child(3n) {
  background: var(--color-hero-top);
}

.error-card h3 {
  font-size: 20px;
}

.error-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 15px;
}

.next-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--color-paper);
  background: linear-gradient(135deg, var(--color-accent-warm), var(--color-accent-deep));
  box-shadow: var(--shadow-window);
}

.next-links h2 {
  color: var(--color-paper);
}

.next-links p {
  margin-bottom: 0;
  color: var(--color-line);
}

.next-links .btn-primary {
  color: var(--color-accent);
  background: var(--color-paper);
  box-shadow: none;
}

.next-links .btn-secondary {
  color: var(--color-paper);
  border-color: var(--color-line);
  background: transparent;
  box-shadow: none;
}

@media (max-width: 980px) {
  .streaming-hero-grid {
    grid-template-columns: 1fr;
  }

  .streaming-hero-copy {
    max-width: 760px;
  }

  .streaming-board {
    width: 100%;
    transform: none;
  }

  .selection-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .streaming-hero {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .streaming-hero-grid {
    gap: 40px;
  }

  .streaming-lead {
    font-size: 17px;
  }

  .streaming-board-body {
    padding: 12px;
  }

  .term-compare,
  .error-grid {
    grid-template-columns: 1fr;
  }

  .next-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .streaming-hero {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .streaming-hero-grid {
    gap: 32px;
  }

  .streaming-board-body {
    grid-template-columns: 1fr;
  }

  .media-tile-wide {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .board-route {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .selection-card,
  .term-compare article,
  .quality-checklist,
  .error-card {
    padding: 20px;
  }

  .next-links {
    padding: 24px;
  }
}