@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #08080b;
  --surface: #111116;
  --surface-2: #17171d;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f5f2ee;
  --muted: #9d9ba4;
  --red: #ff3347;
  --purple: #8151ff;
  --sidebar: 230px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 68% -20%, rgba(103, 64, 211, 0.16), transparent 35rem),
    var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: flex;
  width: var(--sidebar);
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: rgba(7, 7, 9, 0.96);
  padding: 30px 24px 22px;
}

.brand {
  display: grid;
  justify-items: start;
  width: 145px;
  margin-bottom: 52px;
}

.brand svg { width: 118px; height: 72px; object-fit: contain; }
.brand span { margin: -8px 0 0 16px; color: #aaa8af; font-size: 9px; letter-spacing: .4em; }

.side-nav { display: grid; gap: 8px; }
.side-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 12px;
  color: #aaa8af;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
}

.side-nav a::before {
  content: "";
  position: absolute;
  left: -25px;
  width: 3px;
  height: 0;
  background: var(--red);
  box-shadow: 0 0 16px var(--red);
  transition: height .2s ease;
}

.side-nav a:hover, .side-nav a.is-current { color: var(--text); }
.side-nav a.is-current::before { height: 30px; }
.side-nav a.is-current .nav-icon { color: var(--red); }
.nav-icon { width: 22px; height: 22px; color: #777680; }

.member-mini {
  margin-top: auto;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.membership-label { display: flex; align-items: center; justify-content: space-between; }
.membership-label span:first-child { color: var(--muted); font-size: 10px; letter-spacing: .12em; }
.free-badge { border: 1px solid #55535b; padding: 3px 7px; color: #d1ced5; font-size: 9px; letter-spacing: .12em; }
.profile-link { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.avatar {
  display: grid; width: 32px; height: 32px; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; background: #1e1d23;
  color: #d8d4dc; font-weight: 700;
}
.profile-link i { margin-left: auto; color: var(--muted); font-style: normal; }

.page { margin-left: var(--sidebar); min-height: 100vh; }
.mobile-header, .bottom-nav { display: none; }
.main { width: min(1180px, calc(100% - 64px)); margin: 0 auto; padding: 42px 0 78px; }

.page-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 26px; }
.eyebrow { margin: 0 0 4px; color: var(--red); font-size: 10px; font-weight: 700; letter-spacing: .2em; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-family: "Bebas Neue", Impact, sans-serif; font-size: clamp(44px, 5vw, 66px); font-weight: 400; letter-spacing: .05em; line-height: .9; }
.welcome { margin-bottom: 3px; color: var(--muted); font-size: 12px; }

.important {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 51, 71, .07), rgba(255,255,255,.018));
  padding: 0 20px;
}
.important-label { color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.important-title { margin: 0; font-size: 13px; }
.new-badge { border: 1px solid currentColor; padding: 2px 5px; color: var(--red); font-size: 8px; font-weight: 700; letter-spacing: .08em; }
.arrow { color: #c2bec6; font-size: 18px; }

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr); gap: 16px; }
.featured {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #121116;
}
.featured img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: saturate(.65) contrast(1.08); }
.featured::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,8,11,.95) 0%, rgba(8,8,11,.62) 46%, rgba(8,8,11,.12) 76%), linear-gradient(0deg, rgba(8,8,11,.72), transparent 55%);
}
.featured-content { position: relative; z-index: 1; display: flex; min-height: 340px; width: 61%; flex-direction: column; justify-content: center; padding: 38px; }
.featured .eyebrow { color: #bda9ff; }
.featured h2 { margin-bottom: 13px; font-size: clamp(25px, 3vw, 39px); line-height: 1.25; }
.featured p:not(.eyebrow) { margin-bottom: 25px; color: #c4c0c7; font-size: 12px; line-height: 1.9; }
.outline-button { align-self: start; border: 1px solid rgba(255,255,255,.42); padding: 10px 18px; font-size: 11px; letter-spacing: .06em; transition: .2s ease; }
.outline-button:hover { border-color: #fff; background: #fff; color: #09090b; }

.join-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(141, 95, 255, .36);
  background:
    linear-gradient(180deg, rgba(20, 14, 34, .18), rgba(13, 9, 24, .96)),
    url("./design/assets/member-vocal-asakura-ren-002.png") center 22% / cover;
  padding: 28px;
}
.join-card .brand-word { font-family: "Bebas Neue", Impact, sans-serif; font-size: 31px; letter-spacing: .09em; }
.join-card h2 { margin: 9px 0 10px; font-size: 18px; line-height: 1.5; }
.join-card p { color: #b8b3bf; font-size: 11px; line-height: 1.8; }
.join-button { margin-top: 10px; background: linear-gradient(100deg, #6930e6, #923dce); padding: 13px 15px; text-align: center; font-size: 11px; font-weight: 700; }
.join-note { margin: 10px 0 0 !important; color: #777381 !important; font-size: 8px !important; }

.content-section { margin-top: 48px; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 16px; }
.section-title { margin-bottom: 0; font-family: "Bebas Neue", Impact, sans-serif; font-size: 32px; font-weight: 400; letter-spacing: .08em; }
.section-title small { margin-left: 10px; color: var(--muted); font-family: "Noto Sans JP", sans-serif; font-size: 10px; font-weight: 500; letter-spacing: .04em; }
.view-all { color: #aaa6af; font-size: 10px; letter-spacing: .08em; }
.view-all:hover { color: #fff; }

.card-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.content-card { min-width: 0; border: 1px solid var(--line); background: var(--surface); transition: transform .2s ease, border-color .2s ease; }
.content-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.27); }
.card-image { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #19191f; }
.card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.62) contrast(1.04); transition: transform .35s ease; }
.content-card:hover img { transform: scale(1.025); }
.card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,7,9,.72), transparent 58%); }
.card-tag { position: absolute; z-index: 2; top: 11px; left: 11px; background: rgba(6,6,8,.75); border: 1px solid rgba(255,255,255,.18); padding: 4px 7px; font-size: 8px; letter-spacing: .1em; }
.locked .card-image img { filter: blur(9px) brightness(.48); transform: scale(1.08); }
.lock { position: absolute; z-index: 3; inset: 0; display: grid; place-items: center; }
.lock::before {
  content: "";
  width: 18px;
  height: 14px;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(7,7,9,.36);
}
.lock::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 9px;
  margin-top: -16px;
  border: 1px solid rgba(255,255,255,.9);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}
.card-body { padding: 16px 17px 18px; }
.card-meta { display: flex; justify-content: space-between; margin-bottom: 7px; color: var(--muted); font-size: 9px; letter-spacing: .05em; }
.card-body h3 { margin-bottom: 8px; font-size: 14px; line-height: 1.55; }
.card-body p { margin-bottom: 0; color: #95919b; font-size: 10px; line-height: 1.75; }
.content-section.vocal { --section-accent: #8d68ff; }
.content-section.guitar { --section-accent: #f0525f; }
.content-section.bass { --section-accent: #c89264; }
.content-section.drums { --section-accent: #7396bd; }
.content-section .section-title::before { content: ""; display: inline-block; width: 3px; height: 22px; margin-right: 11px; background: var(--section-accent); vertical-align: -2px; box-shadow: 0 0 14px color-mix(in srgb, var(--section-accent) 70%, transparent); }

.announcements { margin-top: 54px; border-top: 1px solid var(--line); padding-top: 28px; }
.announcement-list { border: 1px solid var(--line); background: rgba(255,255,255,.018); }
.announcement-item { display: grid; grid-template-columns: 82px 1fr auto; gap: 18px; align-items: center; min-height: 58px; padding: 0 18px; border-bottom: 1px solid var(--line); font-size: 11px; }
.announcement-item:last-child { border-bottom: 0; }
.announcement-date { color: var(--muted); font-variant-numeric: tabular-nums; }

.bottom-nav svg { width: 20px; height: 20px; }

/* VOCAL bookshelf */
.vocal-page {
  background:
    radial-gradient(circle at 76% 4%, rgba(115, 72, 230, .2), transparent 27rem),
    var(--bg);
}
.vocal-page .eyebrow { color: #a986ff; }
.vocal-page .side-nav a.is-current::before { background: #8d68ff; box-shadow: 0 0 16px #8d68ff; }
.vocal-page .side-nav a.is-current .nav-icon { color: #9d7aff; }
.vocal-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; }
.vocal-heading h1 { font-size: clamp(58px, 6vw, 84px); }
.vocal-heading__copy { max-width: 400px; margin: 0 0 4px; color: #a6a1ad; font-size: 11px; line-height: 1.9; text-align: right; }
.episode-feature {
  position: relative;
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .72fr);
  overflow: hidden;
  border: 1px solid rgba(158, 121, 255, .38);
  background: #111017;
}
.episode-feature__photo { position: relative; overflow: hidden; }
.episode-feature__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: saturate(.7) contrast(1.08); }
.episode-feature__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 52%, #111017 100%), linear-gradient(0deg, rgba(8,8,11,.5), transparent 58%); }
.episode-feature__content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; margin-left: -42px; padding: 42px 44px 42px 0; }
.feature-label { margin-bottom: 18px; color: #b99cff; font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.episode-feature h2 { margin-bottom: 10px; font-family: "Noto Serif JP", "Yu Mincho", serif; font-size: clamp(29px, 3vw, 42px); font-weight: 500; letter-spacing: .07em; line-height: 1.5; }
.episode-release { margin-bottom: 17px; color: #a986ff; font-size: 13px; font-weight: 600; }
.episode-feature__content > p:not(.feature-label):not(.episode-release) { color: #aaa5b0; font-size: 11px; line-height: 2; }
.feature-progress { display: flex; align-items: center; gap: 12px; margin: 4px 0 22px; color: #8e8995; font-size: 9px; }
.feature-progress i { display: block; width: 90px; height: 2px; background: linear-gradient(90deg, #976cff 38%, #333039 38%); }
.purple-button { align-self: flex-start; border: 1px solid #8560e7; background: rgba(126, 78, 240, .12); padding: 11px 19px; color: #d7c9ff; font-size: 10px; font-weight: 600; letter-spacing: .06em; }
.purple-button:hover { background: #7650d9; color: #fff; }

.bookshelf { margin-top: 52px; }
.bookshelf-tools { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 19px; }
.bookshelf-tools h2 { margin-bottom: 0; font-family: "Bebas Neue", Impact, sans-serif; font-size: 36px; font-weight: 400; letter-spacing: .08em; }
.bookshelf-tools h2 small { margin-left: 10px; color: #77727e; font-family: "Noto Sans JP", sans-serif; font-size: 9px; font-weight: 500; }
.sort-control { display: flex; border: 1px solid var(--line); padding: 3px; }
.sort-control button { border: 0; background: transparent; padding: 7px 12px; color: #77737e; cursor: pointer; font-size: 9px; }
.sort-control button.is-active { background: #25212e; color: #d9cff3; }
.book-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.book-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #15141a;
  isolation: isolate;
  transition: border-color .2s ease, transform .2s ease;
}
.book-card:hover { transform: translateY(-3px); border-color: rgba(169, 134, 255, .48); }
.book-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; filter: saturate(.55) contrast(1.12); transition: transform .45s ease; }
.book-card:hover img { transform: scale(1.025); }
.book-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(7,6,10,.96), rgba(10,8,16,.05) 72%), linear-gradient(90deg, rgba(73,38,124,.22), transparent 70%); }
.book-card__content { position: absolute; inset: auto 0 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding: 27px; }
.book-title { margin: 0; font-family: "Noto Serif JP", "Yu Mincho", serif; font-size: clamp(22px, 2.6vw, 34px); font-weight: 500; letter-spacing: .1em; line-height: 1.5; }
.book-status { flex: none; border: 1px solid currentColor; padding: 4px 7px; color: #a986ff; font-size: 8px; letter-spacing: .1em; }
.book-status.is-complete { color: #e46a74; }
.book-index { position: absolute; top: 20px; right: 21px; color: rgba(255,255,255,.6); font-family: "Bebas Neue", sans-serif; font-size: 14px; letter-spacing: .12em; }
.book-card[data-cover="2"] img { object-position: 28% center; filter: grayscale(.7) brightness(.65) contrast(1.25); }
.book-card[data-cover="3"] img { object-position: 76% 48%; filter: hue-rotate(25deg) saturate(.6) brightness(.7); }
.book-card[data-cover="4"] img { object-position: center 14%; filter: grayscale(.85) brightness(.62) contrast(1.2); }
.bookshelf-note { margin: 19px 0 0; color: #66636d; font-size: 9px; line-height: 1.8; }

/* VOCAL story detail */
.story-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; color: #96919d; font-size: 10px; letter-spacing: .05em; }
.story-back:hover { color: #fff; }
.story-layout { display: grid; grid-template-columns: minmax(260px, .68fr) minmax(0, 1.25fr); gap: clamp(38px, 6vw, 82px); align-items: start; }
.story-cover { position: sticky; top: 34px; }
.story-cover__image { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid rgba(161,125,255,.4); background: #17131f; }
.story-cover__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: saturate(.62) contrast(1.1); }
.story-cover__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,6,10,.96), transparent 62%), linear-gradient(90deg, rgba(92,49,156,.16), transparent); }
.story-cover__title { position: absolute; z-index: 1; inset: auto 26px 27px; margin: 0; font-family: "Noto Serif JP", "Yu Mincho", serif; font-size: clamp(26px, 3vw, 40px); font-weight: 500; letter-spacing: .12em; line-height: 1.55; }
.story-cover__mark { position: absolute; z-index: 1; top: 20px; right: 20px; font-family: "Bebas Neue", sans-serif; font-size: 12px; letter-spacing: .14em; }
.story-share { display: flex; justify-content: space-between; margin-top: 13px; color: #77727f; font-size: 9px; }
.story-main { padding-top: 4px; }
.story-status { display: inline-block; margin-bottom: 16px; border: 1px solid #9d73ff; padding: 4px 8px; color: #b99cff; font-size: 9px; letter-spacing: .12em; }
.story-main h1 { margin-bottom: 13px; font-family: "Noto Serif JP", "Yu Mincho", serif; font-size: clamp(35px, 4.3vw, 58px); font-weight: 500; letter-spacing: .09em; line-height: 1.35; }
.story-author { margin-bottom: 33px; color: #a7a2ad; font-size: 11px; letter-spacing: .08em; }
.story-summary { border-top: 1px solid var(--line); padding-top: 28px; }
.detail-label { margin-bottom: 11px; color: #85808c; font-size: 9px; font-weight: 600; letter-spacing: .16em; }
.story-summary p:last-child { margin-bottom: 0; color: #c0bbc4; font-family: "Noto Serif JP", "Yu Mincho", serif; font-size: 14px; line-height: 2.15; }
.song-panel { margin-top: 34px; border: 1px solid var(--line); background: rgba(255,255,255,.018); padding: 20px; }
.song-name { margin-bottom: 15px; font-family: "Bebas Neue", sans-serif; font-size: 26px; letter-spacing: .12em; }
.song-services { display: flex; flex-wrap: wrap; gap: 7px; }
.song-services span { border: 1px solid var(--line); padding: 8px 11px; color: #a7a2ad; font-size: 9px; }
.reading-state { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 32px; }
.reading-state__copy { color: #8d8993; font-size: 10px; }
.reading-bar { flex: 1; height: 2px; background: linear-gradient(90deg, #976cff var(--reading-progress, 38%), #2a2830 var(--reading-progress, 38%)); }
.story-like { border: 0; background: transparent; color: #aaa5b0; cursor: pointer; font-size: 11px; }
.story-like span { color: #d25d73; font-size: 20px; vertical-align: -2px; }
.episode-block { margin-top: 42px; }
.episode-block h2 { margin-bottom: 15px; font-family: "Bebas Neue", sans-serif; font-size: 32px; font-weight: 400; letter-spacing: .09em; }
.episode-list { border: 1px solid var(--line); }
.episode-row { display: grid; width: 100%; min-height: 68px; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px; border: 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.015); padding: 0 19px; color: var(--text); text-align: left; cursor: pointer; }
.episode-row:last-child { border-bottom: 0; }
.episode-row:hover { background: rgba(151,108,255,.07); }
.episode-row__title { font-family: "Noto Serif JP", "Yu Mincho", serif; font-size: 14px; letter-spacing: .08em; }
.episode-row__meta { color: #88838e; font-size: 9px; }
.episode-row__access { min-width: 72px; color: #a986ff; font-size: 9px; text-align: right; }
.episode-row.is-locked { cursor: default; }
.episode-row.is-locked .episode-row__access { color: #8d8993; }
.mini-lock { position: relative; display: inline-block; width: 9px; height: 8px; margin-right: 6px; border: 1px solid currentColor; vertical-align: -1px; }
.mini-lock::before { content: ""; position: absolute; left: 1px; top: -6px; width: 5px; height: 5px; border: 1px solid currentColor; border-bottom: 0; border-radius: 5px 5px 0 0; }
.story-join { margin-top: 18px; border: 1px solid rgba(151,108,255,.35); background: linear-gradient(120deg, rgba(89,47,174,.2), rgba(255,255,255,.02)); padding: 24px; }
.story-join h3 { margin-bottom: 8px; font-size: 15px; }
.story-join p { color: #99949f; font-size: 10px; line-height: 1.8; }
.story-join .join-button { display: inline-block; margin-top: 6px; }
.prototype-toast { position: fixed; z-index: 50; right: 24px; bottom: 24px; max-width: 320px; border: 1px solid rgba(169,134,255,.5); background: #18141f; padding: 13px 16px; color: #d9d2e5; font-size: 10px; box-shadow: 0 12px 35px rgba(0,0,0,.4); }

@media (max-width: 1080px) {
  :root { --sidebar: 0px; }
  .sidebar { display: none; }
  .page { margin-left: 0; }
  .mobile-header {
    position: sticky; top: 0; z-index: 20; display: flex; height: 58px; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--line); background: rgba(8,8,11,.9); padding: 0 20px; backdrop-filter: blur(14px);
  }
  .mobile-brand { font-family: "Bebas Neue", Impact, sans-serif; font-size: 22px; letter-spacing: .12em; }
  .mobile-profile { display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 10px; font-weight: 700; }
  .main { width: min(100% - 40px, 720px); padding: 32px 0 100px; }
  .bottom-nav {
    position: fixed; z-index: 30; inset: auto 0 0; display: grid; grid-template-columns: repeat(5, 1fr);
    height: calc(65px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(8,8,11,.95);
    padding-bottom: env(safe-area-inset-bottom); backdrop-filter: blur(18px);
  }
  .bottom-nav a { display: grid; place-items: center; align-content: center; gap: 4px; color: #74727a; font-size: 8px; letter-spacing: .06em; }
  .bottom-nav a.is-current { color: var(--red); }
  .hero-grid { grid-template-columns: 1fr; }
  .join-card { min-height: 285px; }
  .episode-feature { grid-template-columns: 1fr; min-height: 580px; }
  .episode-feature__photo { position: absolute; inset: 0; }
  .episode-feature__photo::after { background: linear-gradient(0deg, #111017 3%, rgba(17,16,23,.25) 70%), linear-gradient(90deg, rgba(16,13,25,.4), transparent); }
  .episode-feature__content { justify-content: flex-end; min-height: 580px; margin: 0; padding: 35px; }
  .story-layout { grid-template-columns: minmax(220px, .6fr) minmax(0, 1fr); gap: 36px; }
}

@media (max-width: 620px) {
  .main { width: calc(100% - 32px); padding-top: 27px; }
  .page-head { align-items: start; margin-bottom: 21px; }
  .welcome { margin-top: 4px; max-width: 100px; text-align: right; font-size: 9px; line-height: 1.6; }
  h1 { font-size: 48px; }
  .important { grid-template-columns: auto 1fr auto; gap: 9px; min-height: 70px; padding: 10px 13px; }
  .important-label { font-size: 9px; }
  .important-title { display: -webkit-box; overflow: hidden; font-size: 10px; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .featured, .featured-content { min-height: 360px; }
  .featured img { object-position: 63% center; }
  .featured::after { background: linear-gradient(0deg, rgba(8,8,11,.97) 4%, rgba(8,8,11,.33) 72%), linear-gradient(90deg, rgba(8,8,11,.35), transparent); }
  .featured-content { justify-content: flex-end; width: 100%; padding: 25px 22px; }
  .featured h2 { font-size: 26px; }
  .featured p:not(.eyebrow) { max-width: 94%; margin-bottom: 19px; font-size: 10px; }
  .join-card { min-height: 310px; padding: 23px; background-position: center 18%; }
  .content-section { margin-top: 42px; }
  .section-title { font-size: 28px; }
  .section-title small { display: block; margin: 3px 0 0 14px; font-size: 8px; }
  .card-row { display: flex; width: calc(100% + 16px); gap: 11px; overflow-x: auto; padding-right: 16px; padding-bottom: 5px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .card-row::-webkit-scrollbar { display: none; }
  .content-card { flex: 0 0 78%; scroll-snap-align: start; }
  .card-body { padding: 14px 15px 16px; }
  .announcements { margin-top: 47px; }
  .announcement-item { grid-template-columns: 68px 1fr auto; gap: 8px; min-height: 66px; padding: 8px 12px; }
  .announcement-item .new-badge { display: none; }
  .announcement-date { font-size: 9px; }
  .vocal-heading { align-items: start; }
  .vocal-heading__copy { max-width: 140px; font-size: 9px; line-height: 1.7; }
  .episode-feature, .episode-feature__content { min-height: 510px; }
  .episode-feature__photo img { object-position: 53% 20%; }
  .episode-feature__content { padding: 25px 23px; }
  .episode-feature h2 { font-size: 29px; }
  .bookshelf { margin-top: 43px; }
  .bookshelf-tools { align-items: center; }
  .bookshelf-tools h2 { font-size: 31px; }
  .bookshelf-tools h2 small { display: block; margin: 1px 0 0; font-size: 8px; }
  .sort-control button { padding: 6px 8px; font-size: 8px; }
  .book-grid { gap: 10px; }
  .book-card { min-height: 270px; }
  .book-card__content { display: block; padding: 15px 13px; }
  .book-title { margin-bottom: 8px; font-size: 17px; line-height: 1.45; }
  .book-status { display: inline-block; padding: 3px 5px; font-size: 7px; }
  .book-index { top: 11px; right: 12px; font-size: 10px; }
  .story-back { margin-bottom: 18px; }
  .story-layout { display: block; }
  .story-cover { position: relative; top: auto; width: min(82%, 300px); margin: 0 auto 34px; }
  .story-cover__title { inset: auto 18px 19px; font-size: 25px; }
  .story-cover__mark { top: 14px; right: 14px; font-size: 10px; }
  .story-main h1 { font-size: 35px; }
  .story-author { margin-bottom: 25px; }
  .story-summary p:last-child { font-size: 13px; line-height: 2; }
  .song-panel { padding: 17px; }
  .song-services { display: grid; grid-template-columns: repeat(2, 1fr); }
  .song-services span { text-align: center; }
  .reading-state { flex-wrap: wrap; }
  .reading-bar { order: 3; flex-basis: 100%; }
  .episode-row { min-height: 66px; gap: 9px; padding: 0 13px; }
  .episode-row__title { font-size: 13px; }
  .episode-row__meta { display: none; }
  .story-join { padding: 20px; }
  .prototype-toast { right: 16px; bottom: 81px; left: 16px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

:focus-visible { outline: 2px solid #a987ff; outline-offset: 3px; }

/* Site-wide readability pass */
.brand span,.membership-label span:first-child,.free-badge,.eyebrow,.important-label,.new-badge,.section-title small,.view-all,.card-tag,.card-meta,.feature-label,.feature-progress,.bookshelf-tools h2 small,.book-status,.bookshelf-note,.story-back,.story-share,.story-status,.detail-label,.reading-state__copy,.episode-row__meta,.episode-row__access{font-size:12px}.welcome,.important-title,.featured p:not(.eyebrow),.join-card p,.card-body p,.announcement-item,.vocal-heading__copy,.episode-feature__content>p:not(.feature-label):not(.episode-release),.story-author,.story-join p{font-size:13px}.outline-button,.join-button,.purple-button,.sort-control button,.story-like,.prototype-toast{font-size:12px}.join-note{font-size:11px!important}.bottom-nav a{font-size:10px}
@media(max-width:700px){.welcome,.important-title,.featured p:not(.eyebrow),.vocal-heading__copy{font-size:12px}.section-title small,.bookshelf-tools h2 small,.sort-control button,.book-status{font-size:11px}}
