@charset "UTF-8";

/* 作者：搭客佬
   链接：https://www.yiqikans.cn/ */

@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.woff2") format("woff2"),
       url("../fonts/fontawesome-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #111111;
  --ink: #171717;
  --red: #ff343d;
  --red-dark: #d91f29;
  --ivory: #f6f1e8;
  --paper: #fffdfa;
  --line: #d9d1c5;
  --muted: #726b63;
  --green: #27c77a;
  --header-height: 76px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--ivory);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  touch-action: manipulation;
}

button {
  color: inherit;
}

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

a:active,
button:active {
  opacity: 1;
  filter: none;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.screen-reader-text {
  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(255, 253, 250, 0.98);
  border-bottom: 1px solid var(--line);
  transform: translateZ(0);
  backface-visibility: hidden;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  gap: 12px;
}

.brand > img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
}

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

.brand-copy strong {
  font-size: 21px;
  white-space: nowrap;
}

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

.main-nav {
  height: 100%;
}

.main-nav ul {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 38px;
}

.main-nav li {
  height: 100%;
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
}

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

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

.mobile-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--red);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--black);
  cursor: pointer;
}

.icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-menu { background-image: url("../icons/menu.svg"); }
.icon-list { background-image: url("../icons/list.svg"); }
.icon-sync { background-image: url("../icons/sync.svg"); }
.icon-users { background-image: url("../icons/users.svg"); }
.icon-download { background-image: url("../icons/download.svg"); }
.icon-user { background-image: url("../icons/user.svg"); }
.icon-play { background-image: url("../icons/play.svg"); }
.icon-link { background-image: url("../icons/link.svg"); }
.icon-globe { background-image: url("../icons/globe.svg"); }
.icon-top { background-image: url("../icons/top.svg"); }
.icon-review-avatar { background-image: url("../icons/avatar.svg"); }

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  background-color: #f4eee5;
  background-image: linear-gradient(#e8dfd2 1px, transparent 1px),
                    linear-gradient(90deg, #e8dfd2 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: 0.65;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  min-height: 680px;
}

.hero-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 74px 64px 70px 0;
}

.eyebrow,
.section-index {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin-top: 16px;
  font-size: clamp(72px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hero-copy > h2 {
  margin-top: 28px;
  font-size: 36px;
  line-height: 1.25;
}

.hero-description {
  max-width: 650px;
  margin-top: 20px;
  color: #575048;
  font-size: 17px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 10px;
}

.hero-features > span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--black);
  font-size: 14px;
  font-weight: 700;
  gap: 9px;
}

.hero-features .icon {
  width: 18px;
  height: 18px;
}

.hero-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 60px;
  margin-top: 30px;
  color: #ffffff;
  background: var(--red);
  font-size: 18px;
  font-weight: 800;
  gap: 12px;
}

.hero-download:hover {
  background: var(--red-dark);
}

.hero-download .icon,
.broadcast-action .icon {
  filter: brightness(0) invert(1);
}

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

.phone-stage {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  padding: 36px 0 36px 34px;
}

.phone-shell {
  width: 306px;
  padding: 12px;
  background: #141414;
  border: 1px solid #000000;
  border-radius: 42px;
}

.phone-screen {
  position: relative;
  min-height: 574px;
  overflow: hidden;
  color: #ffffff;
  background: #0d0d0d;
  border-radius: 31px;
}

.phone-screen::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 98px;
  height: 24px;
  background: #141414;
  border-radius: 0 0 18px 18px;
  content: "";
  transform: translateX(-50%);
}

.phone-status,
.phone-toolbar,
.phone-progress,
.phone-members,
.phone-actions,
.phone-nav {
  display: flex;
  align-items: center;
}

.phone-status {
  justify-content: space-between;
  height: 38px;
  padding: 4px 16px 0;
  font-size: 12px;
  font-weight: 700;
}

.status-symbols {
  font-size: 10px;
  letter-spacing: 2px;
}

.phone-toolbar {
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #282828;
}

.phone-toolbar strong {
  font-size: 15px;
}

.phone-toolbar button {
  width: 30px;
  height: 30px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  font-size: 22px;
  cursor: pointer;
}

.phone-film {
  display: grid;
  grid-template-columns: 86px 1fr;
  padding: 14px;
  gap: 12px;
}

.phone-film img {
  width: 86px;
  height: 112px;
  object-fit: contain;
  background: #171717;
}

.phone-film div {
  min-width: 0;
}

.phone-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.phone-film h3 {
  margin-top: 5px;
  font-size: 20px;
}

.phone-film p {
  margin-top: 3px;
  color: #a7a7a7;
  font-size: 12px;
}

.phone-film strong {
  display: block;
  margin-top: 10px;
  color: #ffbf23;
  font-size: 22px;
}

.phone-progress {
  padding: 0 14px;
  color: #a9a9a9;
  font-size: 12px;
  gap: 8px;
}

.phone-progress-track {
  position: relative;
  flex: 1;
  height: 3px;
  background: #4c4c4c;
}

.phone-progress-track i {
  display: block;
  width: 36%;
  height: 100%;
  background: var(--red);
}

.phone-members {
  justify-content: space-between;
  padding: 16px 14px 12px;
}

.phone-members > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 44px;
}

.phone-members .icon,
.member-line .icon {
  width: 34px;
  height: 34px;
  padding: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

.phone-members span {
  margin-top: 3px;
  font-size: 12px;
}

.phone-members small {
  color: var(--green);
  font-size: 12px;
  line-height: 1.2;
}

.phone-members > button,
.member-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 1px solid #6b6b6b;
  border-radius: 50%;
  cursor: pointer;
}

.phone-chat {
  min-height: 98px;
  margin: 0 14px;
  padding: 10px;
  background: #171717;
}

.phone-chat p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 6px;
  font-size: 12px;
  gap: 6px;
}

.phone-chat p:last-child {
  margin-bottom: 0;
}

.phone-chat b {
  color: #ff737a;
  white-space: nowrap;
}

.phone-chat span {
  color: #dadada;
}

.phone-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  margin: 10px 14px;
  padding: 0 12px;
  color: #7d7d7d;
  background: #171717;
  border: 1px solid #333333;
  border-radius: 18px;
  font-size: 12px;
}

.phone-actions {
  padding: 0 14px 12px;
  gap: 8px;
}

.phone-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 40px;
  color: #ffffff;
  background: transparent;
  border: 1px solid #595959;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  gap: 6px;
}

.phone-actions button:first-child {
  background: var(--red);
  border-color: var(--red);
}

.phone-actions .icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.phone-nav {
  justify-content: space-around;
  min-height: 48px;
  color: #777777;
  background: #151515;
  border-top: 1px solid #292929;
  font-size: 12px;
}

.phone-nav .is-active {
  color: var(--red);
  font-weight: 700;
}

.section-block {
  padding: 92px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 38px;
  gap: 48px;
}

.section-heading h2 {
  margin-top: 6px;
  font-size: 48px;
  line-height: 1.15;
}

.section-heading > p {
  max-width: 520px;
  padding-bottom: 6px;
  color: var(--muted);
  text-align: right;
}

.watchlist {
  background: var(--ivory);
}

.watch-board {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 222px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.day-tabs {
  display: flex;
  flex-direction: column;
  background: #eee8de;
  border-right: 1px solid var(--line);
}

.day-tabs button {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  min-height: 76px;
  padding: 10px 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.day-tabs button:last-child {
  border-bottom: 0;
}

.day-tabs strong {
  font-size: 15px;
}

.day-tabs span {
  color: var(--muted);
  font-size: 12px;
}

.day-tabs button.is-active {
  color: #ffffff;
  background: var(--red);
}

.day-tabs button.is-active span {
  color: #ffffff;
}

.watch-table-wrap {
  min-width: 0;
  padding: 20px;
}

.schedule-note {
  display: none;
  margin-bottom: 12px;
  font-weight: 700;
}

.watch-table {
  width: 100%;
}

.watch-row {
  display: grid;
  align-items: center;
  grid-template-columns: 42px minmax(150px, 1.35fr) minmax(100px, 0.85fr) 72px minmax(92px, 0.9fr) 88px;
  min-height: 66px;
  border-bottom: 1px solid #e8e1d8;
  font-size: 13px;
  gap: 10px;
}

.watch-row:last-child {
  border-bottom: 0;
}

.watch-row-head {
  min-height: 34px;
  color: var(--muted);
  font-size: 12px;
}

.film-title {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.film-title img {
  width: 38px;
  height: 48px;
  object-fit: contain;
  background: #eee8de;
}

.film-title strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row-number {
  font-weight: 700;
}

.available::before,
.updating::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.updating::before {
  background: #ff9f1c;
}

.add-list {
  min-height: 34px;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.add-list.is-added {
  color: #ffffff;
  background: var(--black);
  border-color: var(--black);
}

.week-queue {
  padding: 24px 20px;
  background: #f1ebe2;
  border-left: 1px solid var(--line);
}

.queue-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.queue-head h3 {
  font-size: 19px;
}

.queue-progress {
  height: 8px;
  margin: 18px 0 22px;
  overflow: hidden;
  background: #d7d0c6;
  border-radius: 8px;
}

.queue-progress i {
  display: block;
  width: 37.5%;
  height: 100%;
  background: var(--red);
}

.week-queue li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}

.week-queue li:last-child {
  margin-bottom: 0;
}

.week-queue img {
  width: 42px;
  height: 54px;
  object-fit: contain;
  background: #ffffff;
}

.week-queue li span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.week-queue strong {
  font-size: 14px;
}

.week-queue small {
  color: var(--muted);
  font-size: 12px;
}

.together {
  padding: 78px 0;
  color: #ffffff;
  background: var(--black);
}

.section-heading-dark {
  margin-bottom: 32px;
}

.section-heading-dark > p {
  color: #aaaaaa;
}

.sync-console {
  display: grid;
  align-items: stretch;
  grid-template-columns: 250px minmax(0, 1fr) 230px;
  border: 1px solid #3b3b3b;
}

.sync-film,
.sync-center,
.sync-state {
  min-width: 0;
  padding: 24px;
}

.sync-film {
  display: grid;
  align-items: center;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
}

.sync-film img {
  width: 76px;
  height: 104px;
  object-fit: contain;
  background: #242424;
}

.sync-film span {
  color: #aaaaaa;
  font-size: 12px;
}

.sync-film h3 {
  margin-top: 4px;
  font-size: 21px;
}

.sync-film p {
  color: #aaaaaa;
  font-size: 12px;
}

.sync-center {
  border-right: 1px solid #3b3b3b;
  border-left: 1px solid #3b3b3b;
}

.member-line {
  display: flex;
  align-items: center;
  gap: 22px;
}

.member-line > span {
  display: grid;
  align-items: center;
  grid-template-columns: 34px auto;
  font-size: 12px;
  font-weight: 700;
  column-gap: 8px;
}

.member-line small {
  grid-column: 2;
  color: var(--green);
  font-size: 12px;
  font-weight: 400;
}

.sync-range {
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin-top: 20px;
  color: #aaaaaa;
  font-size: 12px;
  gap: 10px;
}

.sync-range input {
  width: 100%;
  accent-color: var(--red);
}

.sync-tools {
  display: flex;
  margin-top: 18px;
  gap: 8px;
}

.sync-tools button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #ffffff;
  background: transparent;
  border: 1px solid #5d5d5d;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  gap: 7px;
}

.sync-tools button:first-child {
  background: var(--red);
  border-color: var(--red);
}

.sync-tools .icon {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}

.sync-state {
  display: flex;
  align-items: center;
  gap: 14px;
}

.state-dot {
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
}

.sync-state strong {
  color: var(--green);
  font-size: 21px;
}

.sync-state p {
  margin-top: 3px;
  color: #aaaaaa;
  font-size: 12px;
}

.screens {
  background: var(--paper);
}

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

.screen-grid figure {
  min-width: 0;
  background: #ffffff;
  border: 1px solid var(--line);
}

.screen-viewport {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #f8f6f2;
}

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

.screen-grid figcaption {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  min-height: 92px;
  padding: 18px;
  border-top: 1px solid var(--line);
  column-gap: 12px;
}

.screen-grid figcaption span {
  grid-row: 1 / span 2;
  color: var(--red);
  font-size: 16px;
  font-weight: 800;
}

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

.screen-grid figcaption small {
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  background: var(--ivory);
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  display: grid;
  align-items: center;
  grid-template-columns: 64px minmax(0, 1fr) 36px;
  width: 100%;
  min-height: 70px;
  padding: 0 18px 0 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-item > button span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.faq-item > button strong {
  font-size: 16px;
}

.faq-item > button i {
  font-size: 24px;
  font-style: normal;
  text-align: right;
}

.faq-answer {
  display: none;
  padding: 0 70px 24px 64px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.official-site {
  width: 100%;
  margin-top: 28px;
  background: var(--paper);
  border: 1px solid var(--black);
}

.official-site summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.official-site summary::-webkit-details-marker {
  display: none;
}

.official-site summary > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.summary-state::before {
  font-size: 24px;
  font-style: normal;
  content: "+";
}

.official-site[open] .summary-state::before {
  content: "−";
}

.official-site > div {
  padding: 0 24px 24px 56px;
}

.official-site > div a {
  color: var(--red-dark);
  word-break: break-all;
}

.reviews {
  background: #efe9df;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 24px;
  background: var(--paper);
  border-top: 4px solid var(--red);
}

.review-card:nth-child(even) {
  border-top-color: var(--black);
}

.review-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}

.review-person {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.review-person .icon {
  width: 38px;
  height: 38px;
  padding: 8px;
  background-color: #f3ede5;
  border-radius: 50%;
}

.review-person strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-rating {
  display: inline-flex;
  color: var(--red);
  white-space: nowrap;
  gap: 2px;
}

.aiarticle-comment-rating-icon {
  font-family: "FontAwesome";
  font-size: 14px;
  font-style: normal;
}

.fa-star::before {
  content: "\f005";
}

.fa-star-o::before {
  content: "\f006";
}

.review-card > p {
  margin-top: 18px;
  line-height: 1.9;
}

.review-card time {
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.download-section {
  padding: 62px 0;
  color: #ffffff;
  background: var(--black);
}

.broadcast-download {
  display: grid;
  align-items: center;
  grid-template-columns: 8px 150px minmax(0, 1fr) 230px;
  min-height: 132px;
  border: 1px solid #454545;
}

.signal-marker {
  width: 8px;
  height: 72px;
  background: var(--red);
}

.broadcast-label {
  padding: 0 24px;
  color: #d4d4d4;
  font-size: 12px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.broadcast-copy {
  padding: 0 42px;
  border-left: 1px solid #4c4c4c;
}

.broadcast-copy h2 {
  font-size: 28px;
  line-height: 1.25;
  white-space: nowrap;
}

.broadcast-copy p {
  margin-top: 8px;
  color: #aaaaaa;
  font-size: 13px;
}

.broadcast-action {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  color: #ffffff;
  background: var(--red);
  font-size: 18px;
  font-weight: 800;
  gap: 12px;
  white-space: nowrap;
}

.broadcast-action:hover {
  background: var(--red-dark);
}

.site-footer {
  color: #ffffff;
  background: #0a0a0a;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  gap: 30px;
}

.footer-brand .brand-copy span {
  color: #9d9d9d;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.footer-nav a {
  color: #d4d4d4;
  font-size: 13px;
}

.footer-nav a:hover {
  color: #ffffff;
}

.copyright {
  padding: 18px 0 24px;
  color: #979797;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
  text-align: center;
}

.back-top {
  position: fixed;
  z-index: 800;
  right: 24px;
  bottom: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  color: #ffffff;
  background: var(--red);
  border: 1px solid var(--black);
  cursor: pointer;
}

.back-top.is-visible {
  display: inline-flex;
}

.back-top .icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 1080px) {
  .main-nav ul {
    gap: 24px;
  }

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

  .hero-copy > h2 {
    font-size: 31px;
  }

  .watch-board {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .week-queue {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .week-queue ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .sync-console {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .sync-state {
    grid-column: 1 / -1;
    border-top: 1px solid #3b3b3b;
  }

  .broadcast-download {
    grid-template-columns: 8px 120px minmax(0, 1fr) 200px;
  }

  .broadcast-copy {
    padding: 0 26px;
  }

  .broadcast-copy h2 {
    font-size: 24px;
  }
}

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

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

  .mobile-actions {
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    height: auto;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: var(--paper);
    border-bottom: 1px solid var(--black);
  }

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

  .main-nav ul {
    display: block;
    width: min(calc(100% - 28px), var(--container));
    height: auto;
    margin: 0 auto;
  }

  .main-nav li {
    height: auto;
    border-bottom: 1px solid var(--line);
  }

  .main-nav li:last-child {
    border-bottom: 0;
  }

  .main-nav a {
    height: 54px;
  }

  .main-nav a::after {
    top: 50%;
    right: auto;
    bottom: auto;
    left: -14px;
    width: 4px;
    height: 22px;
    transform: translateY(-50%) scaleY(0);
  }

  .main-nav a.is-active::after,
  .main-nav a:hover::after {
    transform: translateY(-50%) scaleY(1);
  }

  .brand {
    gap: 8px;
  }

  .brand > img {
    width: 42px;
    height: 42px;
  }

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

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

  .hero::before {
    top: auto;
    width: 100%;
    height: 48%;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    align-items: center;
    padding: 72px 0 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(64px, 20vw, 96px);
    white-space: normal;
  }

  .hero-copy > h2 {
    margin-top: 20px;
    font-size: 30px;
  }

  .hero-description {
    max-width: 620px;
  }

  .hero-features {
    justify-content: center;
  }

  .phone-stage {
    justify-content: center;
    padding: 28px 0 56px;
  }

  .phone-shell {
    width: min(306px, 88vw);
  }

  .section-block,
  .together {
    padding: 68px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
    gap: 12px;
  }

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

  .section-heading > p {
    max-width: 100%;
    padding: 0;
    text-align: left;
  }

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

  .day-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(88px, 1fr));
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .day-tabs button {
    min-height: 66px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .watch-table-wrap {
    overflow-x: auto;
  }

  .watch-table {
    min-width: 720px;
  }

  .week-queue ul {
    grid-template-columns: 1fr;
  }

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

  .sync-film {
    border-bottom: 1px solid #3b3b3b;
  }

  .sync-center {
    border-right: 0;
    border-left: 0;
  }

  .member-line {
    flex-wrap: wrap;
  }

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

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

  .broadcast-download {
    grid-template-columns: 8px 1fr 190px;
  }

  .broadcast-label {
    grid-column: 2;
    padding: 22px 26px 0;
  }

  .broadcast-copy {
    grid-column: 2;
    padding: 10px 26px 24px;
    border-left: 0;
  }

  .broadcast-action {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

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

  .footer-nav ul {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .header-inner {
    gap: 8px;
  }

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

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

  .mobile-download {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

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

  .hero-copy {
    padding-top: 54px;
  }

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

  .hero-copy > h2 {
    font-size: 25px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-features > span {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

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

  .watch-table-wrap {
    padding: 14px;
  }

  .sync-film,
  .sync-center,
  .sync-state {
    padding: 18px;
  }

  .member-line {
    gap: 14px;
  }

  .sync-tools {
    display: grid;
    grid-template-columns: 1fr;
  }

  .screen-grid {
    gap: 10px;
  }

  .screen-grid figcaption {
    grid-template-columns: auto 1fr;
    min-height: 88px;
    padding: 12px 10px;
    column-gap: 8px;
  }

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

  .faq-item > button {
    grid-template-columns: 40px minmax(0, 1fr) 28px;
    min-height: 64px;
    padding-right: 8px;
  }

  .faq-item > button strong {
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 36px 20px 40px;
    font-size: 14px;
  }

  .official-site summary {
    padding: 0 14px;
    font-size: 14px;
  }

  .official-site > div {
    padding: 0 14px 20px 46px;
  }

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

  .review-card {
    min-height: 0;
  }

  .broadcast-download {
    grid-template-columns: 8px minmax(0, 1fr);
    padding: 22px 18px 22px 0;
  }

  .signal-marker {
    grid-row: 1 / span 3;
    align-self: stretch;
    height: auto;
  }

  .broadcast-label,
  .broadcast-copy,
  .broadcast-action {
    grid-column: 2;
  }

  .broadcast-label {
    grid-row: 1;
    padding: 0 18px;
  }

  .broadcast-copy {
    grid-row: 2;
    padding: 12px 18px 22px;
  }

  .broadcast-copy h2 {
    font-size: 22px;
    white-space: normal;
  }

  .broadcast-action {
    grid-row: 3;
    min-height: 56px;
    margin-left: 18px;
  }

  .footer-nav ul {
    gap: 14px 18px;
  }

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

@media (max-width: 380px) {
  .container,
  .header-inner,
  .hero-inner {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand > img {
    width: 38px;
    height: 38px;
  }

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

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

  .mobile-download {
    padding: 0 8px;
  }

  .hero-features {
    gap: 6px;
  }

  .hero-features > span {
    padding: 0 9px;
  }

  .phone-shell {
    width: 292px;
  }

  .screen-grid figcaption span {
    display: none;
  }

  .screen-grid figcaption {
    grid-template-columns: 1fr;
  }
}
