@font-face { font-family: "NeueMontreal"; src: url("https://reality.design/_next/static/media/7ea4fad17578d667-s.p.woff2") format("woff2"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "NeueMontreal"; src: url("https://reality.design/_next/static/media/2083ff70ac450b74-s.p.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "NeueMontreal"; src: url("https://reality.design/_next/static/media/26526ac531e30f7a-s.p.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "NeueMontreal"; src: url("https://reality.design/_next/static/media/d35191c5da15b061-s.p.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "NeueMontreal"; src: url("https://reality.design/_next/static/media/c8be08e29f82f2cc-s.p.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

/* NeueMontreal is loaded from reality.design (licensed there; not redistributed in this repo). */
/* Reality Design Lab palette: white / #ededed / greys / black, orange accent #ff5b1a */
:root {
  --bg: #0a0a0a;
  --bg-2: #171717;
  --ink: #f4f4f4;
  --muted: #9b9b9b;
  --line: #272727;
  --accent: #ff5b1a;
  --accent-text: #ff6a2e;
  --accent-ink: #000;
  --card: #111;
  --shadow: 0 30px 80px rgba(0, 0, 0, .6);
  --serif: "NeueMontreal", "Helvetica Neue", Arial, "PingFang SC", "Noto Sans SC", sans-serif;
  --sans: "NeueMontreal", "Helvetica Neue", Arial, "PingFang SC", "Noto Sans SC", sans-serif;
  --mono: "Space Grotesk", "Helvetica Neue", Arial, "PingFang SC", sans-serif;
  color-scheme: dark;
}
:root[data-theme="light"] {
  --bg: #fff;
  --bg-2: #ededed;
  --ink: #000;
  --muted: #6b6b6b;
  --line: #e4e4e4;
  --accent: #ff5b1a;
  --accent-text: #d9430b;
  --accent-ink: #000;
  --card: #fff;
  --shadow: 0 30px 80px rgba(0, 0, 0, .12);
  color-scheme: light;
}
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: #fff; --bg-2: #ededed; --ink: #000; --muted: #6b6b6b; --line: #e4e4e4;
    --accent: #ff5b1a; --accent-text: #d9430b; --accent-ink: #000; --card: #fff; --shadow: 0 30px 80px rgba(0, 0, 0, .12);
    color-scheme: light;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 15px/1.5 var(--sans); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.mono { font-family: var(--mono); letter-spacing: .02em; }
.zh { font-family: "PingFang SC", "Noto Sans SC", var(--sans); }
[hidden] { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; }


/* ---------- masthead ---------- */
.masthead { padding: 28px clamp(16px, 4vw, 56px) 20px; border-bottom: 1px solid var(--line); }
.masthead__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.tag-line { font-size: 11px; color: var(--muted); }
.theme-toggle { background: none; border: 1px solid var(--line); border-radius: 99px; width: 34px; height: 34px; }
.title {
  font: 400 clamp(46px, 9vw, 128px)/.92 var(--serif); letter-spacing: -.045em;
  margin: 36px 0 18px; max-width: 12ch;
  animation: rise .9s cubic-bezier(.2, .7, .1, 1) both;
}
.title em { color: var(--accent); font-style: normal; }
.lede { max-width: 62ch; color: var(--muted); margin: 0 0 22px; animation: rise .9s .12s cubic-bezier(.2, .7, .1, 1) both; }
.lede .zh { display: inline-block; margin-top: 6px; font-size: 14px; }
.stats { display: flex; flex-wrap: wrap; gap: 8px 36px; margin: 0; animation: rise .9s .22s both; }
.stats div { display: flex; flex-direction: column; }
.stats dt { font-size: 10px; color: var(--muted); text-transform: uppercase; }
.stats dd { margin: 0; font: 400 34px/1 var(--serif); }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- tabs + filters ---------- */
.tabs { display: flex; gap: 4px; padding: 0 clamp(16px, 4vw, 56px); border-bottom: 1px solid var(--line); overflow-x: auto; }
.tab {
  background: none; border: 0; padding: 16px 14px 14px; font-size: 15px; color: var(--muted);
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.tab .zh { font-size: 12px; margin-left: 4px; }
.tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--accent); }

.filters {
  position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 12px clamp(16px, 4vw, 56px); border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.filters__row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.search { flex: 1 1 240px; min-width: 0; }
.search input {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink);
  border-radius: 8px; padding: 9px 12px; font: 14px var(--sans); outline: none;
}
.search input:focus { border-color: var(--accent); }
select, .clear {
  background: var(--bg-2); border: 1px solid var(--line); color: var(--ink);
  border-radius: 8px; padding: 8px 10px; font-size: 12px;
}
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chips--interaction { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
.chip {
  border: 1px solid var(--line); background: transparent; border-radius: 99px;
  padding: 5px 11px; font: 12px var(--mono); white-space: nowrap; color: var(--ink);
  transition: background .15s, border-color .15s;
}
.chip small { color: var(--muted); margin-left: 4px; }
.chip .zh { font-size: 11px; color: var(--muted); margin-left: 4px; }
.chip:hover { border-color: var(--muted); }
.chip[aria-pressed="true"] { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.chip[aria-pressed="true"] small, .chip[aria-pressed="true"] .zh { color: var(--accent-ink); opacity: .75; }
.active-creator { font-size: 12px; display: flex; gap: 8px; align-items: center; }
.active-creator button { background: none; border: 1px solid var(--line); border-radius: 99px; padding: 2px 9px; }

/* ---------- works grid ---------- */
main { padding: 22px clamp(16px, 4vw, 56px) 60px; min-height: 60vh; }
.view { display: none; }
.view.is-on { display: block; }
.count { color: var(--muted); font-size: 12px; margin: 0 0 16px; }
.grid { align-items: start; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr)); gap: 28px 20px; }
.card { background: none; border: 0; padding: 0; text-align: left; display: flex; flex-direction: column; justify-content: flex-start; align-self: start; width: 100%; }
.card__media { position: relative; aspect-ratio: 16 / 10; background: var(--bg-2); overflow: hidden; border-radius: 3px; }
.card__media img, .card__media video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2, .7, .1, 1), filter .4s; filter: saturate(.85); }
.card:hover .card__media img, .card:hover .card__media video, .card:focus-visible .card__media img { transform: scale(1.045); filter: saturate(1.1); }
.ph { position: absolute; inset: 0; display: grid; place-items: center; padding: 18px; text-align: center; font: italic 20px/1.2 var(--serif); color: var(--muted); background: radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%), var(--bg-2); }

/* AR tracking brackets: lock on at hover */
.br { position: absolute; width: 18px; height: 18px; border: 1.5px solid var(--accent); opacity: 0; transition: all .35s cubic-bezier(.2, .7, .1, 1); pointer-events: none; }
.br--tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.br--tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.br--bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.br--br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.card:hover .br, .card:focus-visible .br { opacity: 1; }
.card:hover .br--tl, .card:focus-visible .br--tl { top: 8px; left: 8px; }
.card:hover .br--tr, .card:focus-visible .br--tr { top: 8px; right: 8px; }
.card:hover .br--bl, .card:focus-visible .br--bl { bottom: 8px; left: 8px; }
.card:hover .br--br, .card:focus-visible .br--br { bottom: 8px; right: 8px; }
.card__src { position: absolute; top: 10px; right: 12px; font: 10px var(--mono); color: #fff; background: rgba(0, 0, 0, .55); padding: 2px 6px; border-radius: 3px; text-transform: uppercase; }
.card__year { position: absolute; left: 12px; bottom: 10px; font: 11px var(--mono); color: #fff; background: rgba(0, 0, 0, .55); padding: 2px 6px; border-radius: 3px; }
.card:focus-visible { outline: none; }
.card:focus-visible .card__media { outline: 2px solid var(--accent); outline-offset: 3px; }
.card__title { font: 400 22px/1.12 var(--serif); letter-spacing: -.02em; margin: 12px 0 4px; }
.card__meta { font: 12px var(--mono); color: var(--muted); }
.card__idea { font-size: 13px; color: var(--muted); margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.tag { font: 10px var(--mono); color: var(--muted); border: 1px solid var(--line); border-radius: 3px; padding: 1px 6px; text-transform: uppercase; }

/* ---------- creators ---------- */
.creator { border-top: 1px solid var(--line); padding: 28px 0; display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: 28px; }
.creator__name { font: 400 38px/1 var(--serif); letter-spacing: -.02em; margin: 0 0 8px; }
.creator__name button { background: none; border: 0; padding: 0; text-align: left; font: inherit; }
.creator__name button:hover { color: var(--accent); }
.creator__role { font: 12px var(--mono); color: var(--muted); margin: 0 0 12px; }
.creator__bio { margin: 0 0 8px; font-size: 14px; }
.creator__why { margin: 0 0 12px; font-size: 14px; color: var(--muted); font-style: italic; }
.links { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.links a { font: 11px var(--mono); text-decoration: none; border: 1px solid var(--line); padding: 2px 8px; border-radius: 99px; }
.links a:hover { border-color: var(--accent); color: var(--accent); }
.web { font: 11px var(--mono); color: var(--muted); }
.web button { background: none; border: 0; padding: 0; text-decoration: underline; text-underline-offset: 2px; color: var(--ink); font: inherit; margin-right: 6px; }
.web button:hover { color: var(--accent); }
.strip { align-items: flex-start; display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; scrollbar-width: thin; }
.strip .cardwrap { flex: 0 0 min(240px, 70vw); scroll-snap-align: start; }
.strip .card__title { font-size: 18px; }

/* ---------- modules ---------- */
.module { border-top: 1px solid var(--line); padding: 30px 0; }
.module__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px; margin-bottom: 6px; }
.module__num { font: 12px var(--mono); color: var(--accent-text); }
.module__title { font: 400 40px/1 var(--serif); letter-spacing: -.02em; margin: 0; }
.module__zh { font-size: 18px; color: var(--muted); }
.module__desc { color: var(--muted); max-width: 70ch; margin: 4px 0 16px; font-size: 14px; }
.module__all { font: 12px var(--mono); background: none; border: 1px solid var(--line); border-radius: 99px; padding: 3px 10px; margin-left: auto; }
.module__all:hover { border-color: var(--accent); color: var(--accent); }

.empty { text-align: center; color: var(--muted); font: italic 26px var(--serif); padding: 60px 0; }
.foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 24px clamp(16px, 4vw, 56px); border-top: 1px solid var(--line); font-size: 11px; color: var(--muted); }

/* ---------- player dialog ---------- */
.player { padding: 0; border: 0; background: transparent; max-width: none; max-height: none; width: 100vw; height: 100vh; margin: 0; }
.player::backdrop { background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(10px); }
.player__inner {
  position: relative; margin: 4vh auto; width: min(1280px, 94vw); max-height: 92vh;
  display: grid; grid-template-columns: minmax(0, 1fr) 360px; background: var(--card);
  border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 6px; overflow: hidden;
  animation: rise .35s cubic-bezier(.2, .7, .1, 1);
}
.player__media { background: #000; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.player__media .frame { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
.player__media .frame--tweet { aspect-ratio: auto; width: min(550px, 100%); height: min(84vh, 780px); background: transparent; color-scheme: normal; }
.player__media:has(.frame--tweet) { background: var(--bg-2); }
.player__media video { width: 100%; max-height: 92vh; display: block; }
.offsite { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; color: #fff; text-decoration: none; background: #000; }
.offsite img { width: 100%; height: 100%; object-fit: cover; opacity: .55; display: block; }
.offsite__btn { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: var(--accent); color: var(--accent-ink); padding: 12px 20px; border-radius: 99px; font-size: 14px; white-space: nowrap; }
.offsite__note { position: absolute; left: 0; right: 0; bottom: 14px; text-align: center; font-size: 11px; opacity: .8; }
.offsite:hover .offsite__btn { filter: brightness(1.1); }
.player__info { padding: 26px 24px 24px; overflow-y: auto; max-height: 92vh; border-left: 1px solid var(--line); }
.player__info h2 { font: 400 32px/1.05 var(--serif); letter-spacing: -.02em; margin: 18px 0 8px; }
.player__info .meta { font: 12px var(--mono); color: var(--muted); }
.player__info p { font-size: 14px; }
.who { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.who button { background: none; border: 1px solid var(--line); border-radius: 99px; padding: 3px 10px; font: 12px var(--mono); }
.who button:hover { border-color: var(--accent); color: var(--accent); }
.note { border-left: 2px solid var(--accent); padding: 8px 12px; margin: 14px 0; background: var(--bg-2); }
.note b { display: block; font: 10px var(--mono); color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.note p { margin: 0; }
.player__close { position: absolute; top: 10px; right: 12px; z-index: 3; background: var(--bg-2); border: 1px solid var(--line); border-radius: 99px; padding: 4px 10px; font-size: 11px; }
.player__nav { position: absolute; bottom: 12px; z-index: 3; width: 36px; height: 36px; border-radius: 99px; background: var(--bg-2); border: 1px solid var(--line); }
.player__nav--prev { right: 60px; }
.player__nav--next { right: 16px; }
.watch { display: inline-block; margin-top: 12px; margin-right: 8px; font: 12px var(--mono); color: var(--accent-text); }

@media (max-width: 860px) {
  .creator { grid-template-columns: 1fr; gap: 14px; }
  .player__inner { grid-template-columns: 1fr; margin: 0; width: 100vw; max-height: 100vh; height: 100vh; border-radius: 0; overflow-y: auto; }
  .player__info { max-height: none; border-left: 0; border-top: 1px solid var(--line); padding-bottom: 70px; }
  .player__media .frame--tweet { height: 70vh; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Key Creators ---------- */
.keys__lede { color: var(--muted); max-width: 62ch; margin: 0 0 8px; font-size: 15px; }
.kgroup { border-top: 1px solid var(--line); padding: 30px 0 10px; }
.kgroup__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; }
.kgroup__title { font: 400 40px/1 var(--serif); letter-spacing: -.02em; margin: 0; text-wrap: balance; }
.kgroup__zh { font-size: 18px; color: var(--muted); }
.kgroup__desc { color: var(--muted); max-width: 62ch; margin: 6px 0 20px; font-size: 14px; }
.kgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 28px 22px; align-items: start; }
.kc { background: none; border: 0; padding: 0; text-align: left; display: flex; flex-direction: column; width: 100%; }
.kc__collage { position: relative; display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; aspect-ratio: 16 / 9; max-width: 100%; overflow: hidden; border-radius: 3px; background: var(--bg-2); }
.kc__shot { position: relative; overflow: hidden; background: var(--bg-2); }
.kc__shot--a { grid-row: 1 / 3; }
.kc__shot img, .kc__shot video { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.85); transition: transform .6s cubic-bezier(.2, .7, .1, 1), filter .4s; }
.kc__shot .ph { font-size: 14px; padding: 8px; }
.kc:hover .kc__shot img, .kc:focus-visible .kc__shot img { transform: scale(1.05); filter: saturate(1.1); }
.kc:hover .br, .kc:focus-visible .br { opacity: 1; }
.kc:hover .br--tl, .kc:focus-visible .br--tl { top: 8px; left: 8px; }
.kc:hover .br--tr, .kc:focus-visible .br--tr { top: 8px; right: 8px; }
.kc:hover .br--bl, .kc:focus-visible .br--bl { bottom: 8px; left: 8px; }
.kc:hover .br--br, .kc:focus-visible .br--br { bottom: 8px; right: 8px; }
.kc:focus-visible { outline: none; }
.kc:focus-visible .kc__collage { outline: 2px solid var(--accent); outline-offset: 3px; }
.kc__body { padding-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.kc__name { font: 400 28px/1.05 var(--serif); letter-spacing: -.02em; text-wrap: balance; }
.kc__tag { margin: 0; font-size: 14px; color: var(--ink); }
.kc__meta { font-size: 11px; color: var(--accent-text); }
.key-badge { display: inline-block; margin: 0 0 12px; background: none; border: 1px solid var(--accent); color: var(--accent-text); border-radius: 99px; padding: 3px 10px; font-size: 11px; }
.key-badge:hover { background: var(--accent); color: var(--accent-ink); }
.chip--key[aria-pressed="true"] { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* tour dialog */
.tour { padding: 0; border: 0; background: transparent; max-width: none; max-height: none; width: 100vw; height: 100vh; margin: 0; }
.tour::backdrop { background: color-mix(in srgb, var(--bg) 80%, transparent); backdrop-filter: blur(10px); }
.tour__inner {
  position: relative; margin: 4vh auto; width: min(1180px, 94vw); max-height: 92vh; overflow-y: auto;
  background: var(--card); border: 1px solid var(--line); border-radius: 6px; box-shadow: var(--shadow);
  padding: 34px clamp(18px, 3vw, 40px) 40px; animation: rise .35s cubic-bezier(.2, .7, .1, 1);
}
.tour__eyebrow { font-size: 11px; color: var(--accent-text); letter-spacing: .06em; }
.tour__name { font: 400 clamp(40px, 6vw, 72px)/.95 var(--serif); margin: 12px 0 10px; text-wrap: balance; }
.tour__tag { font-size: 18px; margin: 0 0 8px; max-width: 48ch; }
.tour__meta { font-size: 11px; color: var(--muted); }
.tour__cols { display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: 36px; margin-top: 28px; }
.tour__text p { font-size: 14px; line-height: 1.75; margin: 0 0 14px; }
.tour__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tour__start { background: var(--accent); color: var(--accent-ink); border: 0; border-radius: 99px; padding: 10px 18px; font-size: 13px; }
.tour__start:hover { filter: brightness(1.08); }
.tour__all { background: none; border: 1px solid var(--line); border-radius: 99px; padding: 9px 14px; font-size: 12px; }
.tour__all:hover { border-color: var(--accent); color: var(--accent); }
.stops { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.stop {
  width: 100%; background: none; border: 0; border-top: 1px solid var(--line); padding: 16px 0; text-align: left;
  display: grid; grid-template-columns: 34px minmax(0, 200px) minmax(0, 1fr); gap: 16px; align-items: start;
}
.stop:hover .stop__title { color: var(--accent); }
.stop:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.stop__n { font-size: 13px; color: var(--accent-text); padding-top: 2px; }
.stop__media { position: relative; display: block; aspect-ratio: 16 / 10; max-width: 100%; overflow: hidden; border-radius: 3px; background: var(--bg-2); }
.stop__media img, .stop__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.stop__media .ph { font-size: 14px; }
.stop__body { display: flex; flex-direction: column; gap: 5px; }
.stop__title { font: 400 24px/1.1 var(--serif); letter-spacing: -.02em; transition: color .15s; }
.stop__meta { font-size: 11px; color: var(--muted); }
.stop__note { font-size: 14px; line-height: 1.7; color: var(--ink); }
.tour-bar { font-size: 11px; color: var(--accent-ink); background: var(--accent); display: inline-block; padding: 3px 9px; border-radius: 3px; margin-bottom: 4px; }
.note--curator { border-left-color: var(--ink); }
.player { z-index: 2; }

@media (max-width: 860px) {
  .tour__inner { margin: 0; width: 100vw; max-height: 100vh; height: 100vh; border-radius: 0; }
  .tour__cols { grid-template-columns: 1fr; gap: 20px; }
  .stop { grid-template-columns: 28px minmax(0, 1fr); }
  .stop__media { grid-column: 2; }
  .stop__body { grid-column: 2; }
}

/* ---------- language toggle, stars, starred view, toast ---------- */
.masthead__tools { display: flex; gap: 8px; align-items: center; }
.lang-toggle { background: none; border: 1px solid var(--line); border-radius: 99px; height: 34px; padding: 0 14px; font-size: 12px; }
.lang-toggle:hover, .theme-toggle:hover { border-color: var(--ink); }
.tag-line { text-decoration: none; }
.tag-line:hover { color: var(--ink); }
.tab__count { font-size: 11px; color: var(--accent-text); }
.cardwrap { position: relative; }
.star {
  position: absolute; top: 8px; left: 8px; z-index: 2; width: 32px; height: 32px; border-radius: 99px; border: 0;
  background: rgba(0, 0, 0, .55); color: #fff; font-size: 16px; line-height: 1; opacity: 0; transition: opacity .15s, background .15s;
}
.cardwrap:hover .star, .star:focus-visible, .star[aria-pressed="true"] { opacity: 1; }
.star[aria-pressed="true"] { background: var(--accent); color: #000; }
.star:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (hover: none) { .star { opacity: 1; } }
.star-inline { display: inline-block; background: none; border: 1px solid var(--line); border-radius: 99px; padding: 4px 12px; font-size: 12px; margin: 2px 0 6px; }
.star-inline[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #000; }
.starred__head { max-width: 70ch; margin-bottom: 24px; }
.starred__title { font: 400 40px/1 var(--serif); letter-spacing: -.02em; margin: 0 0 10px; }
.starred__lede { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0 0 16px; }
.starred__empty { font-size: 15px; }
.starred__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.btn { background: none; border: 1px solid var(--line); border-radius: 99px; padding: 9px 16px; font-size: 12px; }
.btn:hover { border-color: var(--ink); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #000; }
.btn--accent:hover { filter: brightness(1.06); border-color: var(--accent); }
.btn--quiet { color: var(--muted); }
.toast {
  position: fixed; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); transform: translateX(-50%); z-index: 50;
  background: var(--ink); color: var(--bg); padding: 10px 18px; border-radius: 99px; font-size: 12px; box-shadow: var(--shadow);
}
.foot a { color: var(--ink); }
.card__idea { font-size: 13px; color: var(--muted); margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- salient ---------- */
.salient-mark { color: var(--accent-text); margin-right: 6px; font-size: .8em; vertical-align: .08em; }
.note--salient { border-left-color: var(--accent); }
.scat-chips { margin: 0 0 8px; }
.scat { border-top: 1px solid var(--line); padding: 26px 0 8px; }
.scat__head { display: flex; align-items: baseline; gap: 12px; }
.scat__title { font: 400 30px/1.05 var(--serif); letter-spacing: -.02em; margin: 0; }
.scat__n { font-size: 12px; color: var(--accent-text); }
.scat__desc { color: var(--muted); font-size: 14px; margin: 6px 0 18px; max-width: 62ch; }
.watch--muted { color: var(--muted); }
