.archive-index-access { margin: 20px 0 0; }
.archive-index-access a { display: inline-flex; align-items: center; min-height: 44px; color: var(--soft); font-size: .875rem; text-decoration: none; border-bottom: 1px solid var(--edge); }
.archive-index-access a:hover { color: var(--ink); border-color: var(--accent); }
@font-face {
  font-family: "Big Shoulders";
  src: url("fonts/big-shoulders/BigShoulders-Variable-Latin.woff2")
    format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plex";
  src: url("fonts/ibm-plex-sans/IBMPlexSans-Variable-Latin.woff2")
    format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plex";
  src: url("fonts/ibm-plex-sans/IBMPlexSans-Italic-Latin.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #090e18;
  --surface: #111b2a;
  --raised: #1c2b40;
  --ink: #f2f1eb;
  --soft: #bdc8d9;
  --quiet: #99a9c0;
  --accent: #ffb294;
  --accent-solid: #f49c7d;
  --blue: #76a8ff;
  --edge: #314158;
  --focus: #b5d0ff;
  --font: "Plex", system-ui, sans-serif;
  --display: "Big Shoulders", "Arial Narrow", sans-serif;
  --site-width: 1384px;
  --site-gutter: 48px;
  --header-height: 66px;
  --navigation-height: 68px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-padding-top: calc(
    var(--header-height) + var(--navigation-height) + 24px
  );
}
body {
  margin: 0;
  background:
    radial-gradient(ellipse at 95% 0, #20395350, transparent 45rem), var(--bg);
  color: var(--ink);
  font: 400 16px/1.55 var(--font);
  -webkit-text-size-adjust: 100%;
  font-synthesis: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.42;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h1,
h2,
h3,
p,
a,
button {
  overflow-wrap: break-word;
}
svg {
  display: block;
  flex: none;
}
.icon {
  flex-shrink: 0;
  pointer-events: none;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
  border-radius: 3px;
}
main:focus,
h2[tabindex]:focus,
h1[tabindex]:focus {
  outline: none;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--accent-solid);
  color: var(--bg);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 18px;
  border-radius: 6px;
  transform: translateY(-200%);
}
.skip:focus {
  transform: none;
}
.site-header,
main,
.site-footer {
  width: min(var(--site-width), calc(100% - var(--site-gutter) * 2));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--edge);
  background: #090e18f5;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 calc(-1 * var(--site-gutter));
  background: #090e18f5;
  z-index: -1;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.005em;
}
.brand-mark {
  width: 16px;
  height: 19px;
  border-left: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  transform: skew(-18deg);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 3px;
  background: var(--accent);
}
.header-community {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--soft);
  font-size: 13px;
}
.header-community:hover {
  color: var(--accent);
}
.masthead {
  min-height: 280px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 26px 0 32px;
}
.masthead-copy {
  position: relative;
  z-index: 2;
}
.masthead-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--soft);
  font-size: 12px;
  letter-spacing: 0.035em;
  margin-bottom: 18px;
}
.masthead-label span {
  color: #758aa7;
}
.masthead h1 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.84;
  font-optical-sizing: auto;
}
.title-lead {
  display: block;
  font-size: clamp(42px, 4.8vw, 66px);
  color: #e6edf6;
  margin-bottom: 8px;
}
.title-main {
  display: block;
  font-size: clamp(120px, 13.5vw, 186px);
  color: var(--ink);
  letter-spacing: -0.035em;
}
.orbital-mark {
  position: absolute;
  z-index: 0;
  width: 58%;
  height: 100%;
  right: -3%;
  top: 0;
  pointer-events: none;
  isolation: isolate;
}
.orbital-body {
  position: absolute;
  width: clamp(245px, 32vw, 460px);
  aspect-ratio: 1;
  right: 12%;
  top: -38%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 29% 82%,
    #9abcd5 0%,
    #416783 17%,
    #28405b 32%,
    #172339 50%,
    #111825 64%,
    #0b101b 77%
  );
  box-shadow:
    inset 2px -3px 1px #bdd9e980,
    inset 9px -12px 40px #6e93b749,
    0 35px 70px #41628026;
}
.orbital-track {
  position: absolute;
  top: 21%;
  right: 0;
  width: 108%;
  height: 43%;
  border: 1px solid #768aab70;
  border-radius: 50%;
  transform: rotate(-27deg);
  box-shadow: 0 11px 0 -10px #d6e6ff30;
}
.orbital-track::after {
  content: "";
  position: absolute;
  inset: -12px -7px;
  border: 7px solid transparent;
  border-bottom-color: var(--accent-solid);
  border-right-color: #dd785e;
  border-radius: 50%;
  filter: drop-shadow(0 4px 12px #f49c7d25);
}
.orbital-cut {
  position: absolute;
  inset: auto -2% 0 3%;
  height: 29%;
  background: linear-gradient(0deg, var(--bg), #090e1800);
  z-index: 2;
}
.view-navigation {
  position: sticky;
  top: var(--header-height);
  z-index: 35;
  display: flex;
  align-items: stretch;
  gap: 12px;
  height: var(--navigation-height);
  background: #0d1523f7;
  border: 1px solid var(--edge);
  border-inline: 0;
  margin-bottom: 28px;
  box-shadow: 0 12px 25px #05081140;
}
.view-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  min-width: 142px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 500;
  transition:
    color 0.18s,
    background 0.18s;
}
.view-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 22px;
  right: 22px;
  height: 3px;
  background: var(--accent-solid);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s;
}
.view-link[aria-current="page"] {
  color: var(--ink);
  background: linear-gradient(0deg, #4b688622, transparent);
}
.view-link[aria-current="page"]::after {
  transform: scaleX(1);
}
.view-link[aria-current="page"] .icon {
  color: var(--accent);
}
.view-link:hover {
  background: #23334c80;
  color: var(--ink);
}
.view-link:focus-visible {
  outline-offset: -5px;
}
.navigation-author {
  margin-left: auto;
  align-self: center;
  padding-right: 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--quiet);
}
.workspace {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.35fr);
  gap: 40px;
  align-items: start;
}
.audio-player {
  position: sticky;
  top: calc(var(--header-height) + var(--navigation-height) + 22px);
  isolation: isolate;
  min-width: 0;
  padding: 27px 28px 23px;
  background:
    radial-gradient(ellipse at 0 0, #55799535, transparent 80%),
    linear-gradient(145deg, #1b2b40, #101a2a 75%);
  border: 1px solid #465a74;
  border-radius: 5px 5px 18px 5px;
  box-shadow:
    0 22px 70px #0003,
    inset 0 1px 0 #d2e3ff10;
}
.audio-player::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -1px;
  width: 54px;
  height: 3px;
  background: var(--accent-solid);
}
.player-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: var(--soft);
}
.section-label .icon {
  color: var(--accent);
}
.episode-count {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.episode-count > span {
  color: var(--quiet);
  font-size: 12px;
}
.selected-heading > p {
  font-size: 13px;
  color: var(--soft);
  margin-bottom: 9px;
}
.selected-heading h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(46px, 4.25vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 17ch;
  text-wrap: balance;
}
.episode-opening {
  font-size: 16px;
  color: #d2dbe6;
  max-width: 29ch;
  line-height: 1.6;
  margin-top: 18px;
}
.selected-meta {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--quiet);
  margin: 21px 0;
}
.meta-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #7586a0;
}
.player-mount {
  min-height: 200px;
  border: 1px solid #4d627e;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(130deg, #354d6735, #3148630a);
}
.player-intro {
  min-height: 198px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.listen-button {
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  gap: 17px;
  text-align: left;
  padding: 16px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  min-height: 90px;
}
.play-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-solid);
  color: #171c24;
  box-shadow: 0 0 0 7px #f49c7d0c;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.listen-button:hover .play-circle {
  transform: scale(1.05);
  box-shadow: 0 0 0 11px #f49c7d18;
}
.button-caption {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--soft);
  margin-top: 4px;
}
.player-mount iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
  background: #fff;
  color-scheme: light;
}
.player-privacy {
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.5;
  margin: 12px 0 14px;
  max-width: 48ch;
}
.player-privacy a {
  color: var(--soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.player-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.quiet-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  font-size: 13px;
  color: var(--soft);
  transition: color 0.18s;
}
.quiet-action:hover {
  color: var(--accent);
}
.episode-steppers {
  display: flex;
  gap: 7px;
}
.icon-button {
  border: 1px solid #5a6d87;
  background: transparent;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.icon-button:not(:disabled):hover {
  background: #263a54;
  border-color: var(--soft);
}
.player-feedback {
  font-size: 12px;
  color: var(--soft);
  margin-top: 10px;
}
.player-feedback:empty {
  display: none;
}
.audio-player noscript p {
  font-size: 13px;
  margin-top: 10px;
}
.view-stage {
  min-width: 0;
  padding-top: 4px;
}
.view-stage > section,
.view-stage > #home-content {
  min-width: 0;
}
.view-stage > section:not([hidden]) ~ section:not([hidden]) {
  margin-top: 40px;
}
.catalogue-head {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 0 7px 13px 0;
  border-bottom: 1px solid var(--edge);
  margin-bottom: 5px;
}
.catalogue-head h2 {
  font-family: var(--display);
  font-size: 33px;
  font-weight: 600;
  line-height: 1;
}
.catalogue-head > span {
  font-size: 12px;
  color: var(--quiet);
}
.episode-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 624px;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scrollbar-color: #607694 transparent;
  scrollbar-width: thin;
  scroll-padding: 8px;
}
.episode-list li {
  margin: 0 5px 0 0;
}
.episode-row {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto 28px;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 14px 12px;
  border-bottom: 1px solid #29384d;
  border-left: 2px solid transparent;
  transition:
    background 0.18s,
    color 0.18s;
}
.episode-row:hover {
  background: #1d304780;
}
.episode-row:focus-visible {
  outline-offset: -3px;
}
.episode-row.is-selected {
  background: linear-gradient(100deg, #324966a6, #1b293c90);
  border-left-color: var(--accent-solid);
}
.episode-index {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #8ea4c2;
  line-height: 1;
}
.is-selected .episode-index {
  color: var(--accent);
}
.episode-copy {
  min-width: 0;
  display: block;
}
.episode-series {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--quiet);
  margin-bottom: 3px;
}
.episode-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.episode-duration {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--quiet);
  white-space: nowrap;
}
.episode-action {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--soft);
  border: 1px solid #475d78;
  opacity: 0.6;
  transition:
    opacity 0.18s,
    background 0.18s;
}
.episode-row:hover .episode-action,
.episode-row:focus-visible .episode-action {
  opacity: 1;
}
.episode-row.is-selected .episode-action {
  background: var(--accent-solid);
  border-color: var(--accent-solid);
  color: #171c24;
  opacity: 1;
}
.panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 30px;
  padding: 0 0 25px;
  border-bottom: 1px solid var(--edge);
}
.panel-kicker {
  font-size: 12px;
  color: var(--quiet);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.panel-head h2 {
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.panel-head > .icon {
  width: 42px;
  height: 42px;
  color: var(--accent);
  margin-bottom: 4px;
}
.spoiler-note {
  font-size: 12px;
  color: var(--quiet);
  max-width: 15ch;
  text-align: right;
  line-height: 1.5;
}
.archive-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.62fr);
  gap: 12px;
  margin-bottom: 16px;
}
.search-field,
.email-field {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #556a84;
  border-radius: 5px;
  background: #121e2e;
  padding: 0 14px;
  min-height: 50px;
  color: var(--quiet);
}
.search-field:focus-within,
.email-field:focus-within {
  border-color: var(--focus);
  outline: 1px solid var(--focus);
}
.search-field input,
.email-field input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 16px;
  padding: 0;
}
.search-field input::placeholder,
.email-field input::placeholder {
  color: #a2b0c5;
  opacity: 1;
}
.search-field input:focus-visible,
.email-field input:focus-visible {
  outline: 0;
}
.filter-field {
  min-width: 0;
}
.filter-field select {
  min-height: 50px;
  width: 100%;
  min-width: 0;
  padding: 10px 30px 10px 12px;
  border: 1px solid #556a84;
  background: #121e2e;
  color: var(--ink);
  border-radius: 5px;
  font-size: 13px;
}
.archive-results-count {
  font-size: 12px;
  color: var(--quiet);
  margin-bottom: 10px;
  min-height: 19px;
}
.archive-results-count:empty {
  display: none;
}
.archive-list {
  border-top: 1px solid var(--edge);
}
.archive-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--edge);
  transition:
    background 0.18s,
    color 0.18s;
}
.archive-row strong {
  font-weight: 500;
  font-size: 23px;
}
.archive-row > span {
  color: var(--quiet);
  font-size: 13px;
}
.archive-row:hover {
  color: var(--accent);
}
.archive-browser .archive-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 20px;
  padding: 17px 14px;
  min-height: 87px;
}
.archive-browser .archive-row:hover {
  background: #1b2d454d;
}
.archive-browser .archive-kind {
  grid-column: 1;
  grid-row: 1;
  font-size: 12px;
  color: var(--quiet);
}
.archive-browser .archive-row strong {
  grid-column: 1;
  grid-row: 2;
  font-size: 21px;
  line-height: 1.3;
  min-width: 0;
}
.archive-browser .archive-row > .icon {
  grid-column: 2;
  grid-row: 1/3;
  width: 23px;
  height: 23px;
  color: #a2b8d4;
}
.archive-more {
  margin-top: 22px;
}
.fallback-link {
  margin-top: 18px;
  color: var(--accent);
  font-size: 14px;
}
.fallback-link a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid #69819f;
  border-radius: 5px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
.secondary-button:hover {
  background: #22364f;
  border-color: #9eb4d0;
}
.primary-button {
  background: var(--accent-solid);
  border-color: var(--accent-solid);
  color: #151b25;
}
.primary-button:not(:disabled):hover {
  background: #ffc2a5;
  border-color: #ffc2a5;
}
.subscription-area {
  max-width: 530px;
  padding: 6px 0 30px;
}
.subscription-area h3 {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 14px;
}
.subscription-description {
  font-size: 17px;
  line-height: 1.65;
  color: var(--soft);
  max-width: 43ch;
}
.novel-subscription {
  margin-top: 27px;
}
.field-label {
  display: block;
  font-size: 14px;
  margin-bottom: 9px;
  color: var(--soft);
}
.email-field {
  margin-bottom: 18px;
}
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--soft);
  margin-bottom: 24px;
}
.consent-field input {
  flex: none;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--accent-solid);
}
.consent-field a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink);
}
.subscription-status {
  font-size: 14px;
  color: var(--soft);
  margin-top: 17px;
  line-height: 1.6;
}
.subscription-status:empty {
  display: none;
}
.subscription-unavailable {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--edge);
}
.subscription-unavailable p {
  font-size: 14px;
  color: var(--soft);
  margin-bottom: 20px;
  line-height: 1.65;
}
.subscription-unavailable .secondary-button {
  justify-content: flex-start;
  text-align: left;
}
.community-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
  border-top: 1px solid var(--edge);
  padding: 25px 0;
}
.community-link,
.support-link {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 12px 0;
  min-height: 66px;
}
.community-strip a > .icon {
  color: var(--accent);
  transition: color 0.18s;
}
.community-strip a:hover > .icon {
  color: var(--ink);
}
.community-strip a strong {
  font-size: 16px;
  font-weight: 500;
  display: block;
}
.community-strip a span span {
  display: block;
  font-size: 12px;
  color: var(--quiet);
  margin-top: 3px;
}
.site-footer {
  border-top: 1px solid var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 15px 25px;
  color: var(--quiet);
  font-size: 12px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover {
  color: var(--accent);
}
.reader-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--edge);
  padding-bottom: 15px;
  font-size: 13px;
}
.reader-toolbar button,
.reader-toolbar a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--soft);
  text-align: left;
}
.reader-toolbar button:hover,
.reader-toolbar a:hover {
  color: var(--accent);
}
.reader-status {
  font-size: 14px;
  color: var(--soft);
  margin-top: 22px;
}
.reader-status:empty {
  display: none;
}
.reader-error {
  padding: 22px;
  border: 1px solid var(--edge);
  background: var(--surface);
  border-radius: 5px;
}
.reader-error p {
  margin-bottom: 14px;
}
.reader-error a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.archive-entry {
  max-width: 780px;
  margin: 30px auto 0;
}
.entry-meta {
  color: var(--quiet);
  font-size: 12px;
  margin-bottom: 10px;
}
.entry-head h1,
.entry-head h2 {
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.entry-body,
.entry-subtitle,
.entry-related {
  font: 400 18px/1.8 var(--font);
  color: #d6dfe9;
}
.entry-body p {
  margin: 0 0 1.25em;
}
.entry-body h2,
.entry-body h3 {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  margin: 1.8em 0 0.7em;
  color: var(--ink);
}
.entry-body a,
.entry-related a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.entry-body em {
  font-style: italic;
}
.entry-body strong {
  font-weight: 600;
}
.entry-body ul,
.entry-body ol {
  padding-left: 1.35em;
  margin: 1em 0;
}
.entry-body blockquote {
  margin: 1.7em 0;
  padding-left: 22px;
  border-left: 2px solid var(--accent-solid);
  color: var(--soft);
}
.entry-body img {
  max-width: 100%;
  height: auto;
}
.entry-body pre {
  overflow: auto;
}
.entry-body table {
  display: block;
  max-width: 100%;
  overflow: auto;
  border-collapse: collapse;
}
.entry-body td,
.entry-body th {
  border: 1px solid var(--edge);
  padding: 0.55em;
}
.entry-body hr {
  border: 0;
  border-top: 1px solid var(--edge);
  margin: 2rem 0;
}
.entry-related {
  border-top: 1px solid var(--edge);
  margin-top: 32px;
  padding-top: 26px;
}
.entry-related h2,
.entry-related h3 {
  font-size: 20px;
  font-weight: 500;
}
.spoiler-gate > summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 20px;
  border: 1px solid #596f8d;
  background: #17273a;
  border-radius: 5px;
  font-size: 14px;
  color: var(--accent);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.spoiler-gate > summary::-webkit-details-marker {
  display: none;
}
.spoiler-gate > summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  color: var(--soft);
}
.spoiler-gate[open] > summary {
  margin-bottom: 27px;
}
.spoiler-gate[open] > summary::after {
  content: "−";
}
.page-main {
  padding-top: 34px;
  min-height: 70vh;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}
.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 4px;
  color: var(--soft);
  font-size: 14px;
}
.site-nav a:hover {
  background: var(--raised);
  color: var(--ink);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 12px;
  color: var(--quiet);
}
.breadcrumbs a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.archive-index,
.legal-page {
  max-width: 900px;
  margin-inline: auto;
}
.archive-index .entry-head {
  margin-bottom: 32px;
}
.archive-groups {
  display: grid;
  gap: 34px;
}
.archive-group h2 {
  font-size: 18px;
  color: var(--soft);
  margin-bottom: 10px;
}
.page-main > .archive-entry {
  margin-top: 0;
}
.legal-page h1 {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
}
.legal-head > p {
  color: var(--soft);
  max-width: 65ch;
}
.legal-page .eyebrow {
  display: none;
}
.legal-grid {
  margin-top: 36px;
}
.legal-item {
  border-top: 1px solid var(--edge);
  margin-top: 24px;
  padding-top: 24px;
}
.legal-label {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 12px;
}
.legal-item p:not(.legal-label) {
  max-width: 72ch;
  color: var(--soft);
  margin-bottom: 14px;
}
.legal-item a {
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.player-recall,
.floating-close {
  display: none;
}
@media (min-width: 1600px) {
  .site-header::before {
    inset-inline: calc((1384px - 100vw) / 2);
  }
}
@media (max-width: 1180px) {
  :root {
    --site-gutter: 32px;
  }
  .workspace {
    grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
  }
  .audio-player {
    padding: 24px;
  }
  .audio-player::before {
    left: 24px;
  }
  .episode-row {
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 11px;
    padding-inline: 10px;
  }
  .episode-action {
    display: none;
  }
  .episode-title {
    font-size: 15px;
  }
  .selected-heading h2 {
    font-size: 52px;
  }
  .panel-head h2 {
    font-size: 58px;
  }
  .orbital-mark {
    right: -8%;
  }
  .navigation-author {
    padding-right: 15px;
  }
}
@media (max-width: 960px) {
  :root {
    --site-gutter: 24px;
  }
  .masthead {
    min-height: 258px;
  }
  .orbital-mark {
    width: 63%;
    right: -12%;
  }
  .title-lead {
    font-size: 48px;
  }
  .title-main {
    font-size: 138px;
  }
  .workspace {
    grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1fr);
    gap: 22px;
  }
  .audio-player {
    padding: 22px 20px;
  }
  .player-topline {
    gap: 10px;
  }
  .section-label {
    font-size: 11px;
  }
  .selected-heading h2 {
    font-size: 47px;
  }
  .selected-meta {
    gap: 8px;
    font-size: 11px;
  }
  .listen-button {
    font-size: 15px;
    gap: 12px;
    padding: 10px;
  }
  .play-circle {
    width: 50px;
    height: 50px;
  }
  .button-caption {
    font-size: 11px;
  }
  .player-bottom {
    flex-wrap: wrap;
  }
  .episode-steppers {
    margin-left: auto;
  }
  .episode-row {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 4px 10px;
    min-height: 91px;
  }
  .episode-index {
    grid-row: 1/3;
  }
  .episode-duration {
    grid-column: 2;
    margin-top: 1px;
    font-size: 11px;
  }
  .episode-series {
    font-size: 11px;
  }
  .episode-title {
    font-size: 15px;
  }
  .catalogue-head {
    align-items: center;
    gap: 10px;
  }
  .catalogue-head > span {
    font-size: 11px;
    text-align: right;
    max-width: 9ch;
  }
  .archive-tools {
    grid-template-columns: 1fr;
  }
  .panel-head {
    gap: 12px;
    align-items: flex-start;
  }
  .spoiler-note {
    font-size: 11px;
  }
  .panel-head h2 {
    font-size: 53px;
  }
  .reader-toolbar {
    font-size: 12px;
    gap: 10px;
  }
  .reader-toolbar a span {
    max-width: 8ch;
  }
  .entry-body,
  .entry-subtitle,
  .entry-related {
    font-size: 17px;
  }
  .navigation-author {
    display: none;
  }
}
@media (max-width: 740px) {
  :root {
    --site-gutter: 20px;
    --header-height: 60px;
    --navigation-height: 62px;
  }
  .site-header {
    gap: 15px;
  }
  .site-brand {
    font-size: 14px;
  }
  .header-community {
    font-size: 12px;
    gap: 7px;
  }
  .header-community .icon {
    width: 18px;
    height: 18px;
  }
  .masthead {
    min-height: 236px;
    padding: 26px 0 28px;
  }
  .masthead-label {
    font-size: 11px;
    gap: 9px;
    margin-bottom: 18px;
  }
  .title-lead {
    font-size: 42px;
  }
  .title-main {
    font-size: 122px;
  }
  .orbital-mark {
    width: 70%;
    right: -25%;
    opacity: 0.48;
  }
  .orbital-body {
    top: -19%;
    right: 17%;
    width: 285px;
  }
  .orbital-track {
    top: 29%;
    width: 123%;
    height: 37%;
  }
  .orbital-track::after {
    border-width: 5px;
  }
  .view-navigation {
    gap: 0;
    margin-bottom: 22px;
  }
  .view-link {
    min-width: 0;
    flex: 1;
    padding-inline: 12px;
    gap: 9px;
    font-size: 14px;
  }
  .view-link::after {
    left: 15px;
    right: 15px;
  }
  .view-link .icon {
    width: 18px;
    height: 18px;
  }
  .workspace {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .audio-player {
    position: relative;
    top: 0;
    padding: 24px;
    border-radius: 5px 5px 14px 5px;
  }
  .player-topline {
    margin-bottom: 21px;
  }
  .section-label {
    font-size: 12px;
  }
  .selected-heading h2 {
    font-size: clamp(46px, 7.7vw, 58px);
    max-width: 22ch;
  }
  .selected-heading > p {
    font-size: 13px;
  }
  .episode-opening {
    max-width: 36ch;
    margin-top: 14px;
  }
  .selected-meta {
    font-size: 12px;
    gap: 12px;
    margin: 18px 0;
  }
  .listen-button {
    font-size: 18px;
    gap: 18px;
  }
  .play-circle {
    width: 59px;
    height: 59px;
  }
  .button-caption {
    font-size: 12px;
  }
  .player-mount {
    min-height: 170px;
  }
  .player-intro {
    min-height: 168px;
  }
  .player-bottom {
    flex-wrap: nowrap;
  }
  .view-stage {
    min-height: 0;
    padding-top: 0;
  }
  .catalogue-head {
    min-height: 49px;
    align-items: baseline;
  }
  .catalogue-head h2 {
    font-size: 35px;
  }
  .catalogue-head > span {
    font-size: 12px;
    max-width: none;
  }
  .episode-list {
    max-height: none;
    overflow: visible;
    overscroll-behavior-y: auto;
  }
  .episode-list li {
    margin: 0;
  }
  .episode-row {
    grid-template-columns: 25px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 82px;
    padding: 14px 10px;
  }
  .episode-index {
    grid-row: auto;
    font-size: 26px;
  }
  .episode-duration {
    grid-column: auto;
    font-size: 11px;
    margin: 0;
  }
  .episode-title {
    font-size: 16px;
  }
  .episode-series {
    font-size: 12px;
  }
  .panel-head {
    align-items: flex-end;
    margin-bottom: 24px;
    padding-bottom: 23px;
  }
  .panel-head h2 {
    font-size: 59px;
  }
  .spoiler-note {
    font-size: 12px;
  }
  .archive-tools {
    grid-template-columns: minmax(0, 1fr) minmax(156px, 0.65fr);
  }
  .archive-browser .archive-row {
    padding: 17px 12px;
  }
  .subscription-area {
    padding-top: 0;
  }
  .community-strip {
    margin-top: 30px;
    padding-block: 20px;
    gap: 20px;
  }
  .community-link,
  .support-link {
    gap: 12px;
  }
  .community-strip a strong {
    font-size: 14px;
  }
  .community-strip a span span {
    font-size: 11px;
    max-width: 155px;
  }
  .community-strip a > .icon {
    width: 22px;
    height: 22px;
  }
  .site-footer {
    font-size: 11px;
    gap: 15px;
  }
  .footer-links {
    gap: 16px;
  }
  .reader-toolbar {
    font-size: 13px;
  }
  .reader-toolbar a span {
    max-width: none;
  }
  .workspace[data-view="archive"] .audio-player,
  .workspace[data-view="novel"] .audio-player {
    padding: 19px 22px;
  }
  .workspace[data-view="archive"] .player-topline,
  .workspace[data-view="novel"] .player-topline,
  .workspace[data-view="archive"] .episode-opening,
  .workspace[data-view="novel"] .episode-opening,
  .workspace[data-view="archive"] .selected-meta,
  .workspace[data-view="novel"] .selected-meta {
    display: none;
  }
  .workspace[data-view="archive"] .selected-heading,
  .workspace[data-view="novel"] .selected-heading {
    margin-bottom: 15px;
  }
  .workspace[data-view="archive"] .selected-heading h2,
  .workspace[data-view="novel"] .selected-heading h2 {
    font-family: var(--font);
    font-size: 19px;
    line-height: 1.4;
    max-width: none;
  }
  .workspace[data-view="archive"] .selected-heading > p,
  .workspace[data-view="novel"] .selected-heading > p {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .player-recall:not([hidden]) {
    display: flex;
    position: fixed;
    z-index: 50;
    bottom: max(18px, env(safe-area-inset-bottom));
    right: 20px;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    background: #253f61;
    color: var(--ink);
    border: 1px solid #98b2d4;
    border-radius: 30px;
    box-shadow: 0 8px 30px #0008;
    font-size: 13px;
    min-height: 46px;
  }
  .audio-player.is-floating {
    position: fixed;
    z-index: 55;
    top: auto;
    bottom: max(80px, calc(env(safe-area-inset-bottom) + 66px));
    left: 20px;
    right: 20px;
    max-height: calc(100dvh - 150px);
    overflow: auto;
    box-shadow: 0 20px 100px #000b;
    padding-top: 55px !important;
  }
  .floating-close:not([hidden]) {
    display: grid;
    position: absolute;
    top: 9px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
  .is-floating .player-topline,
  .is-floating .selected-meta,
  .is-floating .episode-opening {
    display: none;
  }
  .reading-view .site-footer {
    padding-bottom: 90px;
  }
  .page-main {
    padding-top: 27px;
  }
  .entry-head h1,
  .entry-head h2 {
    font-size: 59px;
  }
  .entry-body,
  .entry-subtitle,
  .entry-related {
    font-size: 17px;
    line-height: 1.75;
  }
  .entry-body h2,
  .entry-body h3 {
    font-size: 22px;
  }
  .legal-page h1 {
    font-size: 50px;
  }
  .site-nav {
    gap: 0;
  }
  .site-nav a {
    font-size: 12px;
    padding-inline: 7px;
  }
  .page-main .archive-row strong {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  :root {
    --site-gutter: 18px;
  }
  .site-brand {
    font-size: 13px;
    gap: 10px;
  }
  .brand-mark {
    width: 14px;
    height: 17px;
  }
  .brand-mark::after {
    top: 7px;
  }
  .masthead {
    min-height: 230px;
  }
  .masthead-label {
    font-size: 10px;
    gap: 8px;
  }
  .title-lead {
    font-size: 39px;
  }
  .title-main {
    font-size: 114px;
  }
  .orbital-mark {
    width: 79%;
    right: -47%;
    opacity: 0.4;
  }
  .orbital-body {
    right: 3%;
    width: 260px;
    top: -8%;
  }
  .orbital-track {
    top: 21%;
    height: 38%;
    right: -23%;
    width: 160%;
  }
  .orbital-cut {
    height: 30%;
  }
  .view-link {
    padding-inline: 7px;
    gap: 7px;
    font-size: 13px;
  }
  .view-link::after {
    left: 10px;
    right: 10px;
  }
  .view-link .icon {
    width: 17px;
    height: 17px;
  }
  .audio-player {
    padding: 22px;
  }
  .selected-heading h2 {
    font-size: 47px;
  }
  .episode-opening {
    font-size: 15px;
  }
  .listen-button {
    font-size: 17px;
    gap: 15px;
  }
  .player-privacy {
    font-size: 11px;
  }
  .episode-row {
    grid-template-columns: 23px minmax(0, 1fr);
    gap: 4px 11px;
    padding: 14px 9px;
  }
  .episode-index {
    grid-row: 1/3;
  }
  .episode-duration {
    grid-column: 2;
    margin-top: 1px;
  }
  .episode-title {
    font-size: 15px;
  }
  .episode-series {
    font-size: 11px;
  }
  .archive-tools {
    grid-template-columns: 1fr;
  }
  .panel-head h2 {
    font-size: 55px;
  }
  .panel-head > .icon {
    width: 34px;
    height: 34px;
  }
  .archive-browser .archive-row strong {
    font-size: 20px;
  }
  .subscription-area h3 {
    font-size: 21px;
  }
  .subscription-description {
    font-size: 16px;
  }
  .community-strip {
    align-items: flex-start;
  }
  .community-link,
  .support-link {
    gap: 10px;
  }
  .community-strip a strong {
    font-size: 13px;
  }
  .community-strip a span span {
    font-size: 11px;
    max-width: 138px;
  }
  .community-strip a > .icon {
    width: 19px;
    height: 19px;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding-bottom: 18px;
  }
  .footer-links {
    gap: 20px;
  }
  .reader-toolbar {
    font-size: 12px;
  }
  .reader-toolbar a span {
    max-width: 8ch;
  }
  .entry-head h1,
  .entry-head h2 {
    font-size: 53px;
  }
  .spoiler-gate > summary {
    font-size: 13px;
    padding: 15px;
  }
  .site-header:has(.site-nav) {
    flex-wrap: wrap;
    height: auto;
    min-height: var(--header-height);
    padding-block: 8px;
    gap: 0;
  }
  .site-header:has(.site-nav) .site-brand {
    width: 100%;
    min-height: 32px;
  }
  .site-header:has(.site-nav) .site-nav {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 360px) {
  :root {
    --site-gutter: 16px;
  }
  .site-brand {
    font-size: 12px;
  }
  .header-community {
    font-size: 11px;
    gap: 5px;
  }
  .masthead {
    min-height: 211px;
  }
  .masthead-label {
    font-size: 10px;
    gap: 7px;
  }
  .title-lead {
    font-size: 35px;
  }
  .title-main {
    font-size: 104px;
  }
  .view-link {
    font-size: 12px;
    gap: 6px;
  }
  .view-link .icon {
    width: 16px;
    height: 16px;
  }
  .audio-player {
    padding: 21px 18px;
  }
  .selected-heading h2 {
    font-size: 44px;
  }
  .section-label {
    font-size: 11px;
  }
  .selected-meta {
    font-size: 11px;
  }
  .quiet-action {
    font-size: 12px;
    gap: 6px;
  }
  .episode-steppers {
    gap: 5px;
  }
  .icon-button {
    width: 42px;
    height: 42px;
  }
  .play-circle {
    width: 52px;
    height: 52px;
  }
  .listen-button {
    font-size: 16px;
    gap: 12px;
  }
  .community-strip {
    flex-direction: column;
    gap: 0;
    padding-block: 13px;
  }
  .community-strip a strong {
    font-size: 14px;
  }
  .community-strip a span span {
    max-width: none;
  }
  .panel-head h2 {
    font-size: 49px;
  }
  .spoiler-note {
    font-size: 11px;
  }
  .reader-toolbar {
    gap: 12px;
  }
  .reader-toolbar a span {
    max-width: 8ch;
  }
}
.is-enhanced .view-stage > :not([hidden]) {
  animation: view-enter 0.2s ease-out;
}
@keyframes view-enter {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (forced-colors: active) {
  .audio-player,
  .episode-row.is-selected,
  .archive-row,
  .listen-button,
  .icon-button,
  .spoiler-gate > summary,
  .view-navigation,
  .search-field,
  .email-field,
  .primary-button,
  .secondary-button {
    border: 1px solid CanvasText;
  }
  .play-circle {
    background: ButtonFace;
    color: ButtonText;
    border: 1px solid ButtonText;
  }
  .orbital-mark,
  .audio-player::before {
    display: none;
  }
  .view-link[aria-current="page"] {
    outline: 2px solid CanvasText;
    outline-offset: -4px;
  }
}
@media print {
  :root {
    color-scheme: light;
    --bg: #fff;
    --ink: #111;
    --soft: #333;
    --quiet: #555;
    --accent: #222;
    --edge: #aaa;
  }
  body {
    background: #fff;
    color: #111;
  }
  .site-header,
  main,
  .site-footer {
    width: 100%;
  }
  .site-header,
  .view-navigation,
  .orbital-mark,
  .player-recall,
  .reader-toolbar,
  .audio-player,
  .community-strip,
  .site-footer,
  .archive-tools,
  .novel-subscription {
    display: none;
  }
  .workspace {
    display: block;
  }
  .masthead {
    min-height: 0;
    padding: 12px 0;
  }
  .title-lead {
    font-size: 22pt;
  }
  .title-main {
    font-size: 48pt;
  }
  .masthead-label {
    color: #444;
  }
  .episode-list {
    max-height: none;
    overflow: visible;
  }
  .episode-row {
    padding: 7px 0;
    min-height: 0;
    border: 0;
    background: none !important;
    box-shadow: none !important;
  }
  .episode-title {
    font-size: 11pt;
  }
  .episode-series,
  .episode-index,
  .episode-duration {
    color: #444;
  }
  .episode-action {
    display: none;
  }
  .entry-body {
    font-size: 12pt;
    color: #111;
  }
  .archive-entry {
    max-width: none;
  }
  .spoiler-gate > summary {
    display: none;
  }
  .spoiler-gate:not([open]) {
    display: none;
  }
  .view-stage {
    min-height: 0;
  }
}

.notice-page {
  max-width: 680px;
  margin: 35px auto 80px;
}
.notice-page h1 {
  font-family: var(--display);
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1.05;
  margin: 20px 0;
}
.notice-page > p:not(.section-label) {
  font-size: 18px;
  line-height: 1.7;
  color: var(--soft);
}
.notice-page form {
  margin: 24px 0;
}
.notice-submit {
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 5px;
  background: var(--accent-solid);
  color: var(--bg);
  font-weight: 600;
  cursor: pointer;
}
