@charset "UTF-8";

/* 作者：搭客佬
官网：https://www.mhdpro.cn/ */

:root {
  --ink: #07101e;
  --ink-soft: #111c2f;
  --paper: #f7f1e7;
  --paper-deep: #ede4d6;
  --coral: #ff4e48;
  --coral-dark: #d93c43;
  --violet: #7659c7;
  --blue: #547fc2;
  --cream: #fffaf2;
  --muted: #9fa9ba;
  --line: rgba(255, 250, 242, 0.14);
  --dark-line: rgba(7, 16, 30, 0.14);
  --content: 1200px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
figure,
ol,
ul {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(7, 16, 30, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.section-inner,
.hero-grid,
.footer-inner {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--cream);
}

.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.site-nav ul,
.footer-nav ul {
  display: flex;
  align-items: center;
}

.site-nav ul {
  gap: 36px;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 27px 0 24px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-download {
  padding: 10px 15px;
  color: var(--cream);
  background: var(--coral);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(255, 250, 242, 0.5);
  cursor: pointer;
}

.icon-menu,
.icon-download,
.icon-top {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-menu {
  width: 22px;
  height: 22px;
  background-image: url("../icons/menu.svg");
}

.icon-download {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  background-image: url("../icons/download.svg");
  vertical-align: -3px;
}

.icon-top {
  width: 20px;
  height: 20px;
  background-image: url("../icons/top.svg");
}

.hero {
  position: relative;
  color: var(--cream);
  background:
    linear-gradient(rgba(255, 78, 72, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 78, 72, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 85% 32%, rgba(118, 89, 199, 0.22), transparent 26%),
    var(--ink);
  background-size: 38px 38px, 38px 38px, auto, auto;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 18px;
  width: 10px;
  background: repeating-linear-gradient(to bottom, var(--coral) 0 2px, transparent 2px 13px);
  opacity: 0.55;
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 64px;
  align-items: center;
  padding-block: 76px;
}

.hero-copy {
  max-width: 570px;
}

.eyebrow {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  font-family: Georgia, "Microsoft YaHei", serif;
  font-size: clamp(76px, 7vw, 112px);
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
  text-shadow: 4px 4px 0 rgba(255, 78, 72, 0.22);
}

.hero-slogan {
  margin-top: 24px;
  color: var(--coral);
  font-size: 26px;
  font-weight: 800;
}

.hero-intro {
  max-width: 540px;
  margin-top: 20px;
  color: #c7cfdb;
  font-size: 15px;
}

.primary-link {
  display: inline-flex;
  min-width: 196px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 15px 24px;
  color: #fff;
  background: var(--coral);
  border: 1px solid var(--coral);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 8px 8px 0 rgba(255, 78, 72, 0.16);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  color: var(--ink);
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--coral);
}

.primary-link:hover .icon-download,
.primary-link:focus-visible .icon-download {
  filter: brightness(0);
}

.age-label {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
}

.hero-tags {
  display: flex;
  gap: 0;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-tags span {
  flex: 1;
  color: #d5dbe5;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid var(--line);
}

.hero-tags span:first-child {
  text-align: left;
}

.hero-tags span:last-child {
  text-align: right;
  border-right: 0;
}

.screening-console {
  width: 100%;
  padding: 22px;
  background: linear-gradient(150deg, rgba(22, 31, 49, 0.96), rgba(7, 16, 30, 0.98));
  border: 1px solid rgba(255, 250, 242, 0.28);
  box-shadow: 18px 18px 0 rgba(255, 78, 72, 0.08);
}

.console-head,
.console-foot {
  display: flex;
  align-items: center;
}

.console-head {
  gap: 13px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.reel-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 3px dotted var(--coral);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px rgba(255, 78, 72, 0.12);
}

.console-head p {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.console-head strong {
  font-size: 20px;
}

.console-head p span,
.console-code,
.console-foot {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.console-code {
  margin-left: auto;
  color: var(--coral);
}

.console-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-block: 14px;
}

.console-select,
.status-list,
.progress-dial {
  min-width: 0;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

.console-select {
  padding: 12px 14px;
}

.console-select span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.console-select strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
}

.status-list {
  padding: 13px 14px;
}

.status-list p {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 9px;
  font-size: 12px;
}

.status-list p:last-child {
  margin-bottom: 0;
}

.status-list span {
  color: var(--muted);
}

.status-list strong {
  font-size: 12px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot.coral {
  background: var(--coral);
}

.dot.violet {
  background: var(--violet);
}

.dot.blue {
  background: var(--blue);
}

.progress-dial {
  display: grid;
  place-items: center;
  padding: 13px;
}

.progress-dial span,
.progress-dial small {
  color: var(--muted);
  font-size: 12px;
}

.progress-dial strong {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-block: 4px;
  color: var(--coral);
  border: 7px solid rgba(255, 78, 72, 0.18);
  border-top-color: var(--coral);
  border-right-color: var(--coral);
  border-radius: 50%;
  font-size: 22px;
}

.tonight-list {
  padding: 14px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid var(--line);
}

.list-label {
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.tonight-list li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 12px;
}

.tonight-list li:last-child {
  border-bottom: 0;
}

.tonight-list li span {
  color: var(--coral);
}

.tonight-list li em {
  color: var(--muted);
  font-style: normal;
}

.console-foot {
  justify-content: space-between;
  padding-top: 16px;
}

.player-control {
  color: var(--coral);
}

.channel-section,
.playlist-section,
.guide-section {
  background: var(--paper);
}

.screens-section,
.voices-section {
  color: var(--cream);
  background: var(--ink);
}

.section-inner {
  padding-block: 90px;
}

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

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading h2 {
  margin-top: 10px;
  font-family: Georgia, "Microsoft YaHei", serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-heading > p {
  max-width: 480px;
  padding-bottom: 7px;
  color: #5f6877;
  font-size: 14px;
}

.screens-section .section-heading > p,
.voices-section .section-heading > p {
  color: var(--muted);
}

.channel-track {
  position: relative;
  padding-top: 38px;
  border-top: 1px solid var(--ink);
}

.time-scale {
  position: absolute;
  top: -13px;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: #6a7180;
  font-size: 12px;
  text-align: center;
}

.time-scale span {
  display: inline-block;
  justify-self: center;
  padding: 0 8px;
  background: var(--paper);
}

.channel-programs {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.channel-programs article {
  position: relative;
  min-height: 240px;
  padding: 38px 24px 26px;
  background: var(--cream);
  border: 1px solid var(--dark-line);
  overflow: hidden;
}

.channel-programs article:nth-child(1) {
  grid-column: 1 / span 3;
}

.channel-programs article:nth-child(2) {
  grid-column: 4 / span 4;
  transform: translateY(18px);
}

.channel-programs article:nth-child(3) {
  grid-column: 8 / span 3;
}

.channel-programs article:nth-child(4) {
  grid-column: 11 / span 2;
  transform: translateY(18px);
}

.channel-programs article::after {
  content: attr(data-title);
  position: absolute;
  right: -6px;
  bottom: -22px;
  color: rgba(7, 16, 30, 0.045);
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 800;
}

.program-no {
  position: absolute;
  top: -1px;
  left: -1px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--coral);
  font-size: 14px;
  font-weight: 800;
}

.program-time {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.channel-programs h3 {
  margin-top: 22px;
  font-size: 24px;
}

.channel-programs article > p:last-child {
  margin-top: 16px;
  color: #616978;
  font-size: 13px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.screen-grid figure {
  min-width: 0;
  background: var(--cream);
  border: 1px solid rgba(255, 250, 242, 0.22);
}

.screen-media {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #171e2a;
  overflow: hidden;
}

.screen-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen-grid figcaption {
  min-height: 104px;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 10px;
  align-content: center;
  padding: 18px;
  color: var(--ink);
}

.screen-grid figcaption span {
  grid-row: 1 / span 2;
  color: var(--coral-dark);
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 800;
}

.screen-grid figcaption strong {
  font-size: 17px;
}

.screen-grid figcaption small {
  color: #6c7480;
  font-size: 12px;
}

.playlist-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 24px;
}

.playlist-track::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--violet), var(--blue), #df9b67);
}

.playlist-track article {
  position: relative;
  min-height: 220px;
  padding: 34px 26px 24px;
  background: var(--cream);
  border: 1px solid var(--dark-line);
  border-right: 0;
}

.playlist-track article:last-child {
  border-right: 1px solid var(--dark-line);
}

.track-dot {
  position: absolute;
  top: -27px;
  left: 22px;
  width: 18px;
  height: 18px;
  background: var(--paper);
  border: 4px solid var(--coral);
  border-radius: 50%;
}

.playlist-track article:nth-child(2) .track-dot {
  border-color: var(--violet);
}

.playlist-track article:nth-child(3) .track-dot {
  border-color: var(--blue);
}

.playlist-track article:nth-child(4) .track-dot {
  border-color: #df9b67;
}

.playlist-track article > p {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.playlist-track h3 {
  margin-top: 14px;
  font-size: 23px;
}

.playlist-track article > span:last-child {
  display: block;
  margin-top: 18px;
  color: #616978;
  font-size: 13px;
}

.guide-section {
  border-top: 1px solid var(--dark-line);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details,
.official-site {
  background: var(--cream);
  border-bottom: 1px solid var(--dark-line);
}

details summary {
  cursor: pointer;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

.faq-list summary,
.official-site summary {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 30px;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 18px 24px;
}

.faq-list summary span,
.official-site summary span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
}

.faq-list summary strong,
.official-site summary strong {
  font-size: 16px;
}

.faq-list summary i,
.official-site summary i {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: end;
}

.faq-list summary i::before,
.faq-list summary i::after,
.official-site summary i::before,
.official-site summary i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: var(--ink);
}

.faq-list summary i::after,
.official-site summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after,
.official-site[open] summary i::after {
  transform: rotate(0deg);
}

.faq-list details > p,
.official-site > p {
  padding: 0 80px 24px 92px;
  color: #616978;
  font-size: 14px;
}

.official-site {
  margin-top: 28px;
  border: 1px solid var(--ink);
}

.official-site > p a {
  color: var(--coral-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.voice-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-top: 3px solid var(--coral);
}

.voice-grid article:nth-child(2n) {
  border-top-color: var(--violet);
}

.voice-meta {
  display: grid;
  grid-template-columns: 38px auto 1fr;
  gap: 10px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--cream);
  background: var(--coral-dark);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.voice-meta strong {
  font-size: 14px;
  white-space: nowrap;
}

.voice-meta time {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.voice-grid article > p {
  margin-top: 20px;
  color: #d0d6df;
  font-size: 13px;
}

.download-section {
  color: var(--cream);
  background: #0b111c;
  border-top: 1px solid rgba(255, 78, 72, 0.46);
}

.download-section .section-inner {
  padding-block: 64px;
}

.download-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) minmax(280px, 0.8fr) 210px;
  align-items: stretch;
  border: 1px solid rgba(255, 250, 242, 0.22);
  box-shadow: 0 0 38px rgba(255, 78, 72, 0.12);
  overflow: hidden;
}

.download-copy {
  padding: 36px;
}

.download-copy h2 {
  margin-top: 9px;
  font-family: Georgia, "Microsoft YaHei", serif;
  font-size: 31px;
  line-height: 1.25;
}

.download-copy > p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.projection-line {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 36px;
}

.projection-line::before {
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--violet), var(--coral));
  box-shadow: 0 0 14px var(--coral);
}

.projection-line span,
.projection-line i {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  background: #0b111c;
  border: 4px solid var(--coral);
  border-radius: 50%;
  transform: translateY(-50%);
}

.projection-line span {
  left: 28px;
}

.projection-line i {
  right: 28px;
  border-style: dotted;
}

.download-stage > a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--coral);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.download-stage > a:hover,
.download-stage > a:focus-visible {
  color: var(--ink);
  background: var(--cream);
}

.download-stage > a:hover .icon-download,
.download-stage > a:focus-visible .icon-download {
  filter: brightness(0);
}

.site-footer {
  color: var(--cream);
  background: var(--ink);
}

.footer-inner {
  padding-block: 42px 28px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.footer-nav ul {
  gap: 24px;
}

.footer-nav a {
  color: #d2d8e1;
  font-size: 12px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--coral);
}

.footer-bottom {
  padding-top: 22px;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: var(--coral);
  border: 1px solid var(--cream);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-top:hover,
.back-top:focus-visible {
  background: var(--coral-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 36px;
  }

  .hero h1 {
    font-size: 82px;
  }

  .channel-programs article:nth-child(n) {
    grid-column: span 6;
    min-height: 210px;
    transform: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  body {
    padding-top: var(--header-height);
  }

  .header-inner,
  .section-inner,
  .hero-grid,
  .footer-inner {
    width: min(calc(100% - 28px), var(--content));
  }

  .site-header {
    height: var(--header-height);
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy span {
    max-width: none;
    margin-top: 3px;
    overflow: visible;
    font-size: 12px;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-actions {
    display: flex;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    padding: 14px;
    background: var(--ink);
    border-top: 1px solid var(--line);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: block;
  }

  .site-nav li + li {
    border-top: 1px solid var(--line);
  }

  .site-nav a {
    padding: 14px 8px;
    font-size: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 64px;
  }

  .hero-copy {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(62px, 19vw, 92px);
    white-space: normal;
  }

  .hero-slogan {
    font-size: 23px;
  }

  .hero-intro {
    margin-inline: auto;
  }

  .primary-link {
    margin-inline: auto;
  }

  .hero-tags span:first-child,
  .hero-tags span:last-child {
    text-align: center;
  }

  .screening-console {
    max-width: 570px;
    margin-inline: auto;
  }

  .section-inner {
    padding-block: 68px;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

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

  .section-heading h2 {
    font-size: 44px;
  }

  .section-heading > p {
    padding-bottom: 0;
  }

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

  .playlist-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 0;
  }

  .playlist-track::before {
    display: none;
  }

  .playlist-track article,
  .playlist-track article:last-child {
    min-height: 190px;
    border: 1px solid var(--dark-line);
  }

  .track-dot {
    top: 18px;
  }

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

  .download-stage {
    grid-template-columns: 1fr 150px;
  }

  .projection-line {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .hero-grid,
  .footer-inner {
    width: min(calc(100% - 24px), var(--content));
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy span {
    font-size: 12px;
  }

  .mobile-download {
    padding-inline: 10px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    padding-block: 50px;
  }

  .hero h1 {
    margin-top: 15px;
    font-size: clamp(58px, 22vw, 82px);
  }

  .hero-slogan {
    margin-top: 18px;
    font-size: 21px;
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-tags {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
  }

  .hero-tags span {
    flex: 0 0 auto;
    padding-right: 18px;
  }

  .hero-tags span:last-child {
    padding-right: 0;
  }

  .screening-console {
    padding: 14px;
  }

  .console-grid {
    grid-template-columns: 1fr;
  }

  .progress-dial {
    padding-block: 18px;
  }

  .section-inner {
    padding-block: 54px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .channel-track {
    padding-top: 22px;
  }

  .time-scale {
    display: none;
  }

  .channel-programs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .channel-programs article:nth-child(n) {
    grid-column: auto;
    min-height: 180px;
    padding-top: 34px;
  }

  .screen-grid {
    gap: 10px;
  }

  .screen-grid figcaption {
    min-height: 92px;
    grid-template-columns: 28px 1fr;
    column-gap: 6px;
    padding: 12px 10px;
  }

  .screen-grid figcaption span {
    font-size: 17px;
  }

  .screen-grid figcaption strong {
    font-size: 14px;
  }

  .screen-grid figcaption small {
    font-size: 12px;
    line-height: 1.4;
  }

  .playlist-track {
    grid-template-columns: 1fr;
  }

  .playlist-track article {
    min-height: 170px;
  }

  .faq-list summary,
  .official-site summary {
    grid-template-columns: 36px 1fr 22px;
    min-height: 68px;
    padding: 16px 14px;
  }

  .faq-list summary strong,
  .official-site summary strong {
    font-size: 14px;
  }

  .faq-list details > p,
  .official-site > p {
    padding: 0 18px 20px 50px;
    font-size: 13px;
  }

  .voice-grid {
    grid-template-columns: 1fr;
  }

  .voice-grid article {
    min-height: auto;
  }

  .voice-meta {
    grid-template-columns: 36px auto 1fr;
    gap: 8px;
  }

  .voice-meta time {
    justify-self: end;
    font-size: 12px;
  }

  .download-stage {
    grid-template-columns: 1fr;
  }

  .download-copy {
    padding: 28px 22px;
    text-align: center;
  }

  .download-copy h2 {
    font-size: 26px;
  }

  .download-stage > a {
    min-height: 64px;
  }

  .footer-main {
    flex-direction: column;
    gap: 26px;
    text-align: center;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .back-top {
    right: 12px;
    bottom: 12px;
    width: 46px;
    height: 46px;
  }

  a,
  button,
  summary {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 365px) {
  .header-inner {
    width: calc(100% - 16px);
  }

  .brand {
    gap: 6px;
  }

  .brand img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .mobile-download {
    padding: 8px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .voice-meta {
    grid-template-columns: 34px auto 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
