@charset "UTF-8";
:root {
  --bg: #f6f5f1;
  --paper: #fff;
  --ink: #26272c;
  --muted: #7d7c87;
  --line: #e5e3e8;
  --accent: #7461c5;
  --pale: #eeebf7;
  --font: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button,
select {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 9px 14px;
}
button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
a:hover {
  color: var(--accent);
}
:focus-visible {
  outline: 3px solid #9b8bdc;
  outline-offset: 4px;
}
input {
  min-width: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.4;
}
h1 {
  font-weight: 750;
  letter-spacing: -1.7px;
}
h2 {
  font-size: 24px;
  letter-spacing: -0.6px;
}
h3 {
  font-size: 17px;
}
small {
  font-size: 12px;
}
.header {
  height: 94px;
  max-width: 1440px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 750;
  white-space: nowrap;
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 1.8px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}
.brand-icon {
  position: relative;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  font-size: 23px;
}
.brand-icon span {
  position: absolute;
  font-size: 16px;
  right: 1px;
  top: -6px;
  color: #d7ceff;
}
.header nav {
  display: flex;
  align-self: stretch;
  gap: 34px;
  align-items: stretch;
}
.header nav a {
  display: flex;
  align-items: center;
  color: var(--muted);
  position: relative;
  font-weight: 600;
}
.header nav a.active {
  color: var(--ink);
}
.header nav a.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}
.header-end {
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 8px 16px;
  white-space: nowrap;
}
.header-end span {
  margin-left: 10px;
}
main {
  min-height: calc(100vh - 200px);
  outline: none;
}
main > * {
  max-width: 1184px;
  margin-left: auto;
  margin-right: auto;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 94px;
  padding: 68px 0 56px;
}
.eyebrow {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 2px;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--pale);
}
.hero h1 {
  font-size: 46px;
  line-height: 1.42;
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--accent);
}
.hero-copy > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 28px;
}
.search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 8px 7px 19px;
  background: var(--paper);
  border: 1px solid #ddd9e6;
  border-radius: 12px;
  box-shadow: 0 5px 15px #30234505;
  max-width: 665px;
}
.search > span {
  font-size: 30px;
  font-family: Arial;
  color: #797582;
  line-height: 1;
}
.search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
  padding: 9px 0;
}
.search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #7461c512;
}
.search kbd {
  font-family: var(--font);
  color: #aaa5b2;
  border: 1px solid var(--line);
  padding: 0 6px;
  border-radius: 4px;
  font-size: 11px;
}
.search button {
  border: 0;
  background: var(--accent);
  color: white;
  padding: 10px 17px;
  border-radius: 7px;
  white-space: nowrap;
  font-size: 12px;
}
.search button:hover {
  background: #6250b2;
}
.search button span {
  padding-left: 10px;
}
.suggestions {
  display: flex;
  gap: 13px;
  margin-top: 16px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
}
.suggestions button {
  background: none;
  border: 0;
  padding: 0;
  font-size: 11px;
  color: #686473;
}
.suggestions button:hover {
  color: var(--accent);
}
.hero-aside {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #efedf5, #f6f5f1 68%);
  padding: 27px 27px 23px;
  border-radius: 16px;
  align-self: start;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}
.hero-aside:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid #d9d3e8;
  border-radius: 50%;
  right: -90px;
  top: 15px;
}
.archive-label {
  letter-spacing: 1.5px;
  font-size: 9px;
  display: flex;
  justify-content: space-between;
  color: #898095;
}
.archive-label span {
  font-size: 17px;
}
.archive-number {
  font-size: 65px;
  line-height: 1.05;
  letter-spacing: -4px;
  margin: 24px 0 20px;
  font-weight: 350;
}
.archive-number small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3px;
  margin-top: 11px;
  color: var(--muted);
}
.archive-divider {
  height: 1px;
  background: #ded9e7;
}
.aside-stats {
  display: flex;
  gap: 34px;
  margin: 18px 0 23px;
  color: var(--muted);
  font-size: 10px;
}
.aside-stats b {
  font-size: 22px;
  display: block;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.aside-note {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.9;
}
.aside-note strong {
  font-weight: 500;
  color: #55505f;
  display: block;
  letter-spacing: 0.2px;
}
.aside-note > span {
  font-size: 9px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0 0 27px;
}
.section-head .eyebrow {
  margin-bottom: 7px;
  font-size: 9px;
}
.section-head h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-head h2 > span {
  font-size: 11px;
  background: #e9e6ee;
  color: var(--accent);
  padding: 1px 9px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0;
}
.filters {
  display: flex;
  gap: 8px;
}
.filters select {
  font-size: 11px;
  background: transparent;
  padding: 8px 12px;
  border-color: #dedbe4;
}
.anime-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 23px;
}
.anime-card {
  display: block;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 10px 0;
  border-radius: 13px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.anime-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px #3222420d;
  color: var(--ink);
  border-color: #c9bfdc;
}
.cover {
  width: 100%;
  height: 213px;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  background: var(--cover-color);
  display: grid;
  place-items: center;
}
.cover:after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px #00000004;
  border-radius: inherit;
  pointer-events: none;
}
.cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 27%;
  transition: transform 0.4s;
}
.anime-card:hover img {
  transform: scale(1.035);
}
.cover-fallback {
  font-size: 46px;
  letter-spacing: 9px;
  color: #ffffffb0;
  font-weight: 300;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: var(--muted);
  padding: 14px 6px 0;
}
.card-arrow {
  font-size: 18px;
  line-height: 1;
  color: #97909e;
}
.anime-card h3 {
  margin: 6px 6px 4px;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-original {
  margin: 0 6px 15px;
  font-size: 10px;
  color: #a09aa5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  border-top: 1px solid #efedf1;
  padding: 12px 6px;
  font-size: 9px;
  color: #95909d;
}
.card-bottom b {
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
}
.card-bottom > span:first-child {
  color: #696171;
}
.coverage-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
  margin: 26px 0 35px;
}
.recent-strip {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 20px;
  padding: 23px 0;
  margin-top: 36px;
  font-size: 11px;
}
.recent-strip > a:nth-child(2) {
  flex: 1;
  color: var(--muted);
}
.recent-strip strong {
  color: var(--ink);
  margin-left: 12px;
  font-size: 12px;
  font-weight: 500;
}
.recent-strip > a:last-child {
  font-size: 11px;
}
.pill {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 9px;
  font-size: 10px;
  border-radius: 5px;
  color: var(--accent);
  background: var(--pale);
  font-weight: 500;
}
.pill.muted {
  background: #f0eee9;
  color: #94816a;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1312px;
  margin: 70px auto 0;
  padding: 28px 0;
  color: #9b96a1;
  font-size: 10px;
  border-top: 1px solid var(--line);
}
footer strong {
  color: #77717e;
  font-weight: 600;
}
footer a {
  white-space: nowrap;
}
.page-wrap {
  padding: 38px 0 30px;
}
.back {
  display: inline-block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 38px;
}
.subject-hero {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 58px;
  max-width: 950px;
}
.detail-cover {
  height: 267px;
  border-radius: 10px;
}
.detail-cover img {
  object-position: top;
}
.subject-hero h1 {
  font-size: 36px;
  margin: 8px 0;
}
.subject-hero .eyebrow {
  margin: 6px 0;
}
.original {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 20px;
}
.subject-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 16px 0 20px;
}
.subject-meta a {
  font-size: 11px;
  color: var(--muted);
}
.summary {
  font-size: 13px;
  color: #777280;
  line-height: 1.9;
  max-width: 730px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.subject-numbers {
  font-size: 12px;
  color: var(--muted);
  margin-top: 24px;
}
.subject-numbers strong {
  font-size: 26px;
  color: var(--accent);
  font-weight: 500;
  margin-right: 5px;
}
.subject-numbers span {
  margin-left: 17px;
}
.preroll {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}
input[type="checkbox"] {
  accent-color: var(--accent);
}
.subtle {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}
.timeline {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 13px;
  overflow: hidden;
  margin-top: 24px;
}
.segment {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  padding: 28px 25px;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 25px;
}
.segment:last-child {
  border: 0;
}
.segment-time {
  border-right: 1px solid #eeebf1;
  padding-right: 22px;
  color: var(--accent);
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.segment-time small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}
.segment-tags {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.reviewed {
  font-size: 9px;
  color: #8f9990;
}
.segment h3 {
  font-size: 15px;
  margin: 0 0 7px;
}
.source-video {
  font-size: 11px;
  color: var(--muted);
}
.segment-source {
  font-size: 10px;
  color: #a099a6;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.segment-source > a:last-child {
  margin-left: 10px;
}
.segment-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: stretch;
  justify-content: center;
  min-width: 98px;
}
.play {
  font-size: 11px;
  border: 1px solid #e5e0ed;
  border-radius: 7px;
  padding: 8px 12px;
  color: #8d829b;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.play.primary {
  color: var(--accent);
  background: #f1eef9;
  border-color: #e6e0f4;
}
.play:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.subject-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--accent);
  font-size: 11px;
  margin-top: 11px;
}
.page-title {
  margin: 26px 0 42px;
  max-width: 950px;
}
.page-title h1 {
  font-size: 36px;
  line-height: 1.5;
}
.page-title p {
  color: var(--muted);
  font-size: 13px;
}
.text-link {
  font-size: 12px;
  color: var(--accent);
}
.video-list {
  border-top: 1px solid var(--line);
}
.video-row {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 32px 14px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.video-row:hover {
  background: #eeebf355;
}
.video-index {
  font-size: 32px;
  color: #c5bdcf;
  font-weight: 300;
  min-width: 52px;
}
.video-row > div {
  flex: 1;
}
.video-row .eyebrow {
  font-size: 10px;
  margin: 0 0 7px;
}
.video-row h2 {
  font-size: 20px;
  margin: 0 0 10px;
}
.video-row p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.round-arrow {
  display: grid;
  place-items: center;
  border: 1px solid #ddd6e7;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 18px;
  color: var(--accent);
}
.prose {
  max-width: 800px;
  padding-top: 65px;
}
.prose h1 {
  font-size: 42px;
}
.prose .lead {
  font-size: 16px;
  color: #797180;
  line-height: 2;
}
.prose h2 {
  font-size: 21px;
  margin-top: 40px;
}
.prose p {
  font-size: 14px;
  line-height: 2;
  color: #797380;
}
.prose a {
  color: var(--accent);
}
.credit-box {
  background: var(--pale);
  border-radius: 12px;
  padding: 24px;
}
.credit-box p {
  font-size: 12px;
  margin: 10px 0 0;
}
.review-toolbar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  font-size: 12px;
}
.review-toolbar button {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.review-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.review-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.review-card h2 {
  font-size: 17px;
  margin-bottom: 10px;
}
.review-card .eyebrow {
  font-size: 9px;
  margin-bottom: 10px;
}
.review-card > p {
  font-size: 11px;
  color: var(--accent);
}
.review-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 13px;
}
.review-card input {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  width: 100%;
  font-size: 12px;
}
.review-card select {
  width: 100%;
  font-size: 11px;
}
.review-fields {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}
.review-card > button {
  font-size: 11px;
  color: var(--accent);
  background: var(--pale);
  border: 0;
}
.status {
  color: var(--accent);
  font-size: 12px;
  min-height: 20px;
  margin: 15px 0;
}
.empty {
  grid-column: 1/-1;
  text-align: center;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--muted);
  gap: 6px;
  padding: 40px 20px;
}
.empty > span {
  font-size: 45px;
  color: #b4a8ca;
}
.empty h3 {
  color: var(--ink);
  margin: 5px 0;
}
.empty p {
  font-size: 13px;
}
.empty a {
  color: var(--accent);
}
.loading {
  text-align: center;
  padding: 150px;
  color: var(--muted);
}
.skip {
  position: fixed;
  top: -100px;
  left: 15px;
  background: var(--accent);
  color: white;
  padding: 10px;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}
button:disabled {
  opacity: 0.5;
}
@media (min-width: 1441px) {
  .header {
    max-width: 1440px;
  }
  .hero {
    padding-top: 80px;
  }
  .cover {
    height: 245px;
  }
}
@media (max-width: 1300px) {
  .header {
    padding: 0 40px;
  }
  main > * {
    margin-left: 40px;
    margin-right: 40px;
  }
  footer {
    margin-left: 40px;
    margin-right: 40px;
  }
  .hero {
    gap: 55px;
  }
  .prose {
    margin-left: auto;
    margin-right: auto;
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (max-width: 1000px) {
  .header {
    padding: 0 28px;
  }
  .header nav {
    gap: 22px;
  }
  .header-end {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 230px;
    gap: 35px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-aside {
    padding: 22px;
  }
  .anime-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cover {
    height: 220px;
  }
  .hero {
    padding-top: 48px;
  }
  .segment {
    gap: 18px;
    grid-template-columns: 98px 1fr auto;
  }
  .review-list {
    grid-template-columns: 1fr;
  }
  .recent-strip {
    flex-wrap: wrap;
  }
  footer {
    flex-wrap: wrap;
  }
  .subject-hero {
    gap: 30px;
    grid-template-columns: 165px 1fr;
  }
  .detail-cover {
    height: 235px;
  }
}
@media (max-width: 700px) {
  .header {
    height: 78px;
    padding: 0 20px;
    gap: 12px;
  }
  .brand {
    font-size: 14px;
    gap: 8px;
  }
  .brand-icon {
    width: 34px;
    height: 34px;
    font-size: 19px;
    border-radius: 9px;
  }
  .brand small {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .header nav {
    gap: 16px;
    font-size: 11px;
  }
  .header nav a:last-child {
    display: none;
  }
  main > * {
    margin-left: 20px;
    margin-right: 20px;
  }
  .hero {
    display: block;
    padding: 36px 0 34px;
  }
  .hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .hero-copy > p {
    font-size: 12px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero-aside {
    display: none;
  }
  .search {
    padding-left: 12px;
    gap: 8px;
  }
  .search input {
    font-size: 11px;
  }
  .search kbd {
    display: none;
  }
  .search button {
    font-size: 11px;
    padding: 10px 12px;
  }
  .suggestions {
    gap: 12px;
    font-size: 10px;
  }
  .suggestions button {
    font-size: 10px;
  }
  .section-head {
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 12px;
  }
  .section-head h2 {
    font-size: 20px;
    white-space: nowrap;
  }
  .section-head .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .filters {
    gap: 5px;
    align-self: flex-end;
  }
  .filters select {
    max-width: 116px;
    padding: 6px;
    font-size: 10px;
  }
  .anime-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }
  .anime-card {
    padding: 7px 7px 0;
    border-radius: 10px;
  }
  .cover {
    height: 190px;
    border-radius: 5px;
  }
  .card-top {
    padding: 9px 3px 0;
    font-size: 8px;
  }
  .anime-card h3 {
    font-size: 12px;
    margin: 4px 3px;
  }
  .card-original {
    font-size: 8px;
    margin: 0 3px 10px;
  }
  .card-bottom {
    font-size: 8px;
    padding: 10px 3px;
    flex-wrap: wrap;
  }
  .card-bottom b {
    font-size: 10px;
  }
  .coverage-note {
    font-size: 10px;
    margin: 22px 0;
  }
  .recent-strip {
    gap: 12px;
    margin-top: 24px;
    padding: 20px 0;
    font-size: 10px;
  }
  .recent-strip > a:nth-child(2) {
    min-width: 70%;
    font-size: 10px;
  }
  .recent-strip strong {
    display: block;
    margin: 5px 0 0;
    font-size: 11px;
  }
  .recent-strip > a:last-child {
    margin-left: auto;
  }
  footer {
    margin: 38px 20px 0;
    padding: 22px 0;
    gap: 9px;
    font-size: 9px;
  }
  footer > span:nth-child(2) {
    width: 100%;
    order: 3;
  }
  .page-wrap {
    padding: 25px 0;
  }
  .back {
    font-size: 11px;
    margin-bottom: 25px;
  }
  .subject-hero {
    grid-template-columns: 105px 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }
  .detail-cover {
    height: 156px;
  }
  .subject-hero h1 {
    font-size: 23px;
    letter-spacing: -0.7px;
  }
  .subject-hero .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
    margin: 0;
  }
  .original {
    font-size: 10px;
    margin-bottom: 12px;
  }
  .subject-meta {
    margin: 10px 0;
    gap: 6px;
    flex-wrap: wrap;
  }
  .subject-meta a {
    font-size: 9px;
  }
  .summary {
    display: none;
  }
  .subject-numbers {
    font-size: 10px;
    margin-top: 13px;
  }
  .subject-numbers strong {
    font-size: 21px;
  }
  .subject-numbers span {
    display: block;
    margin-left: 0;
  }
  .pill {
    font-size: 8px;
    padding: 2px 7px;
  }
  .preroll {
    font-size: 9px;
  }
  .subtle {
    font-size: 10px;
  }
  .segment {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 19px 16px;
  }
  .segment-time {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    border: 0;
    padding: 0;
    gap: 14px;
    font-size: 15px;
  }
  .segment-time small {
    margin: 0;
    font-size: 9px;
  }
  .segment-body {
    min-width: 0;
  }
  .segment h3 {
    font-size: 13px;
  }
  .segment-tags {
    gap: 5px;
  }
  .reviewed {
    font-size: 8px;
  }
  .segment-actions {
    min-width: 78px;
    align-self: start;
    padding-top: 20px;
  }
  .play {
    font-size: 10px;
    padding: 7px 9px;
    gap: 5px;
  }
  .segment-source {
    font-size: 9px;
    gap: 6px;
    margin-top: 12px;
  }
  .source-video {
    font-size: 10px;
  }
  .subject-links {
    font-size: 10px;
  }
  .page-title {
    margin: 17px 0 28px;
  }
  .page-title h1 {
    font-size: 27px;
    letter-spacing: -0.7px;
  }
  .page-title p {
    font-size: 11px;
  }
  .video-row {
    gap: 16px;
    padding: 24px 0;
  }
  .video-index {
    font-size: 23px;
    min-width: 30px;
  }
  .video-row h2 {
    font-size: 15px;
  }
  .video-row .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .video-row p {
    font-size: 10px;
  }
  .round-arrow {
    width: 29px;
    height: 29px;
    font-size: 14px;
    flex-shrink: 0;
  }
  .prose {
    padding: 35px 0;
  }
  .prose h1 {
    font-size: 33px;
  }
  .prose .lead {
    font-size: 14px;
  }
  .prose p {
    font-size: 12px;
  }
  .prose h2 {
    font-size: 18px;
  }
  .review-card {
    padding: 20px;
  }
  .review-fields {
    grid-template-columns: 1fr;
  }
  .review-card h2 {
    font-size: 15px;
  }
  .review-toolbar {
    gap: 12px;
    font-size: 11px;
  }
  .review-toolbar button {
    font-size: 10px;
  }
  .empty {
    min-height: 230px;
  }
  .loading {
    padding: 100px 20px;
  }
}
@media (max-width: 380px) {
  .header nav {
    gap: 10px;
  }
  .brand small {
    display: none;
  }
  .hero h1 {
    font-size: 30px;
  }
  .cover {
    height: 165px;
  }
  .filters {
    flex-direction: column;
  }
  .section-head {
    align-items: center;
  }
  .search button span {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.patch-output {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin: 20px 0;
}
.patch-output textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  font: 12px/1.6 monospace;
  resize: vertical;
}
.review-card > button + button {
  margin-left: 8px;
}
