/* Station Brief — brief.css
   Day paper by default; the night edition follows prefers-color-scheme (or html[data-theme="night"]).
   Two faces: Playfair Display (display serif) and Inter (text sans), each with full system fallbacks. */

:root {
  --paper: #F4F2ED;
  --card: #FFFFFF;
  --ink: #16181d;
  --ink-2: #474a52;
  --ink-3: #767980;
  --hair: rgba(22, 24, 29, .16);
  --rule: #16181d;
  --amber: #FFB000;
  --on-amber: #16181d;
  --green: #2FBF71;
  --bad: #c8372d;
  --serif: "Playfair Display", Georgia, "Times New Roman", Times, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --w: 720px;
  --pad: 20px;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="day"]) {
    --paper: #0B0D10; --card: #12151A; --ink: #E8E6E1; --ink-2: #b8b6b0; --ink-3: #85847f;
    --hair: rgba(232, 230, 225, .14); --rule: #E8E6E1; --bad: #e06a5f;
  }
}
html[data-theme="night"] {
  --paper: #0B0D10; --card: #12151A; --ink: #E8E6E1; --ink-2: #b8b6b0; --ink-3: #85847f;
  --hair: rgba(232, 230, 225, .14); --rule: #E8E6E1; --bad: #e06a5f;
}

/* ── base ── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.55 var(--sans); font-feature-settings: "kern", "liga"; }
body.wide { --w: 1120px; }
a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }
img, svg { max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { font-weight: 700; }
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 var(--pad); }
main.wrap { padding-bottom: 24px; }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.mark { width: 18px; height: 18px; display: inline-block; vertical-align: -3px; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

/* ── top nav ── */
.top { border-bottom: 1px solid var(--hair); background: var(--paper); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 10px 16px; min-height: 54px; flex-wrap: wrap; padding-top: 6px; padding-bottom: 6px; }
.press { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.nav { display: flex; gap: 2px 16px; flex-wrap: wrap; align-items: center; font-size: 13.5px; font-weight: 500; }
.nav a { text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; color: var(--ink-2); white-space: nowrap; }
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--ink); }
.nav .count { display: inline-block; min-width: 18px; padding: 0 5px; border-radius: 9px; background: var(--ink); color: var(--paper); font-size: 11px; font-weight: 700; text-align: center; line-height: 18px; vertical-align: 1px; }
.nav .count[hidden] { display: none; }
.logout { display: inline; margin: 0; }
.linkish { background: none; border: 0; padding: 6px 0; color: var(--ink-3); cursor: pointer; font-size: 13px; }
.linkish:hover { color: var(--ink); }

/* ── type ── */
.page-title { font-family: var(--serif); font-size: clamp(30px, 6vw, 40px); line-height: 1.08; letter-spacing: -.015em; margin: 30px 0 10px; }
.page-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.lede { font-size: 18px; line-height: 1.5; color: var(--ink-2); max-width: 60ch; margin: 0 0 20px; }
.help { font-size: 13px; color: var(--ink-3); line-height: 1.5; }
.help a { color: inherit; }
.meta-dim { color: var(--ink-3); }
.sect { font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; border-top: 1px solid var(--rule); padding-top: 8px; margin: 34px 0 10px; color: var(--ink-2); }
.kicker-line { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.narrow { max-width: 560px; }

/* ── buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--ink); border-radius: 3px; background: transparent; color: var(--ink); font-weight: 600; font-size: 14px; letter-spacing: .01em; cursor: pointer; text-decoration: none; line-height: 1.2; }
.btn:hover { background: var(--ink); color: var(--paper); }
.btn-primary { background: var(--amber); border-color: var(--amber); color: var(--on-amber); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn-quiet { border-color: var(--hair); color: var(--ink-2); font-weight: 500; }
.btn-sm { padding: 6px 11px; font-size: 12.5px; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; cursor: not-allowed; }
.btn[disabled]:hover { background: transparent; color: var(--ink); }
.actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.status { font-size: 13px; color: var(--ink-2); min-height: 1.2em; }
.status.err { color: var(--bad); }

/* ── forms ── */
.field { margin: 0 0 14px; }
.field label { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field label.big { font-family: var(--serif); font-size: 24px; letter-spacing: -.01em; text-transform: none; color: var(--ink); font-weight: 700; margin-bottom: 10px; }
.input { width: 100%; background: var(--card); border: 1px solid var(--ink); border-radius: 3px; padding: 10px 12px; font-size: 16px; line-height: 1.45; color: var(--ink); }
.input::placeholder { color: var(--ink-3); }
textarea.input { min-height: 150px; resize: vertical; font-family: var(--serif); font-size: 18px; line-height: 1.5; }
select.input { appearance: none; -webkit-appearance: none; padding-right: 34px; background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.input.sel { width: auto; min-width: 170px; padding: 8px 34px 8px 10px; font-size: 14px; }
.two { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
@media (min-width: 560px) { .two { grid-template-columns: 1fr 1fr; } }
.check, .radio { display: flex; gap: 8px; align-items: center; font-size: 15px; text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--ink); }
.check input, .radio input { width: 17px; height: 17px; margin: 0; accent-color: var(--ink); }
.error { border: 1px solid var(--ink); padding: 10px 12px; margin: 0 0 16px; font-size: 14px; background: var(--card); }
.saved { border: 1px solid var(--green); color: var(--ink); padding: 8px 12px; margin: 0 0 16px; font-size: 14px; background: var(--card); }
.plain-form { margin: 0 0 8px; }

/* ── chips ── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 14px; }
.chip { border: 1px solid var(--hair); background: var(--card); border-radius: 999px; padding: 6px 12px; font-size: 13px; cursor: pointer; color: var(--ink-2); line-height: 1.2; }
.chip:hover, .chip[aria-pressed="true"] { border-color: var(--ink); color: var(--ink); }
.chip-static { cursor: default; display: inline-flex; gap: 6px; align-items: center; }
.unmute { background: none; border: 0; padding: 0 2px; color: var(--ink-3); cursor: pointer; font-size: 15px; line-height: 1; }
.unmute:hover { color: var(--ink); }

/* ── landing ── */
.hero { padding: 44px 0 22px; }
.hero h1 { font-family: var(--serif); font-weight: 900; font-size: clamp(40px, 8.4vw, 68px); line-height: 1.0; letter-spacing: -.025em; margin: 10px 0 18px; max-width: 14ch; }
.hero .lede { max-width: 62ch; }
.world-box { background: var(--card); border: 1px solid var(--ink); padding: 22px; margin: 18px 0 28px; }
.world-box textarea.input { min-height: 170px; }
.world-box .actions { margin-top: 10px; }
.how { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--hair); }
@media (min-width: 640px) { .how { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.how .n { font-family: var(--serif); font-size: 36px; font-weight: 900; line-height: 1; color: var(--ink-3); }
.how h3 { font-family: var(--serif); font-size: 20px; margin: 8px 0 6px; letter-spacing: -.01em; }
.how p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.sample { margin: 30px 0 8px; padding: 0; }
.sample svg { width: 100%; height: auto; display: block; border: 1px solid var(--hair); }
.sample figcaption { font-size: 13px; color: var(--ink-3); margin-top: 8px; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin: 22px 0; border-top: 1px solid var(--rule); }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 0 32px; } }
.why-row { padding: 18px 0; border-bottom: 1px solid var(--hair); }
.why-row h3 { font-family: var(--serif); font-size: 21px; margin: 0 0 6px; letter-spacing: -.01em; }
.why-row p { margin: 0; font-size: 15px; color: var(--ink-2); max-width: 48ch; }
.teaser { padding: 10px 0 20px; font-size: 16px; }
.teaser p { max-width: 60ch; }

/* ── pricing ── */
.tiers { display: grid; gap: 16px; grid-template-columns: 1fr; margin: 24px 0 12px; }
@media (min-width: 720px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier { border: 1px solid var(--hair); background: var(--card); padding: 22px 20px; display: flex; flex-direction: column; }
.tier.featured { border-color: var(--ink); }
.tier h3 { font-family: var(--serif); font-size: 22px; margin: 0 0 6px; }
.tier .price { font-family: var(--serif); font-size: 40px; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.tier .price small { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }
.tier ul { list-style: none; padding: 0; margin: 16px 0 20px; font-size: 14px; color: var(--ink-2); flex: 1; }
.tier li { padding: 6px 0; border-top: 1px solid var(--hair); }
.tier .btn { align-self: flex-start; }

/* ── masthead ── */
.masthead { text-align: center; padding: 26px 0 0; }
.masthead-press { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.masthead-title { font-family: var(--serif); font-weight: 900; font-size: clamp(30px, 8.4vw, 60px); line-height: 1; letter-spacing: .06em; text-transform: uppercase; margin: 10px 0 14px; }
.masthead-title a { text-decoration: none; }
.rule { height: 0; border-top: 1px solid var(--rule); }
.rule-double { border-top: 3px solid var(--rule); border-bottom: 1px solid var(--rule); height: 3px; }
.folio { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; padding: 8px 0; color: var(--ink-2); display: flex; justify-content: center; flex-wrap: wrap; gap: 2px 0; font-weight: 500; }
.folio span + span::before { content: "·"; padding: 0 .7em; color: var(--ink-3); }
.paper-tools { font-size: 12.5px; color: var(--ink-3); padding: 8px 0 0; display: flex; gap: 6px 10px; flex-wrap: wrap; justify-content: center; }
.paper-tools a { color: var(--ink-2); }

/* ── editor's note ── */
.ednote { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.5; padding: 18px 0; border-bottom: 1px solid var(--hair); max-width: 65ch; margin: 0 auto; }
.ednote b { font-style: normal; font-variant: small-caps; letter-spacing: .04em; }

/* ── items ── */
.front-page { padding: 26px 0 24px; border-bottom: 1px solid var(--rule); }
.item { padding: 24px 0; border-bottom: 1px solid var(--hair); }
.front-page .item { padding: 0; border: 0; }
.items > .item:last-child { border-bottom: 0; }
.item-head { display: flex; align-items: center; gap: 10px 12px; flex-wrap: wrap; font-size: 11px; }
.badge { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 3px 7px 2px; line-height: 1; border: 1px solid var(--ink); border-radius: 2px; }
.badge-act { background: var(--amber); border-color: var(--amber); color: var(--on-amber); }
.kicker { font-variant: small-caps; letter-spacing: .06em; font-size: 14.5px; font-weight: 600; color: var(--ink-2); line-height: 1; }
.tag-watch { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-2); }
.tag-src { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.hl { font-family: var(--serif); font-weight: 700; font-size: 22px; line-height: 1.2; letter-spacing: -.01em; margin: 8px 0 8px; }
.front .hl { font-size: clamp(28px, 5.4vw, 34px); line-height: 1.12; letter-spacing: -.018em; margin: 10px 0 12px; }
.sowhat { margin: 0 0 10px; max-width: 65ch; font-size: 16.5px; }
.front .sowhat { font-size: 18.5px; line-height: 1.55; }
.item.degraded .sowhat { border-left: 2px solid var(--hair); padding-left: 12px; font-style: italic; color: var(--ink-2); }
.act-row { display: flex; gap: 10px; align-items: flex-start; background: var(--card); border: 1px solid var(--hair); padding: 10px 12px; margin: 8px 0 10px; max-width: 65ch; flex-wrap: wrap; }
.act-row label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; flex: 1 1 240px; }
.act-check { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--amber); flex: none; }
.act-step b { font-weight: 600; }
.item.done .act-row { opacity: .6; }
.item.done .act-step { text-decoration: line-through; }
.correction { font-size: 14.5px; border-top: 1px dotted var(--ink-2); padding-top: 8px; margin: 10px 0; max-width: 65ch; color: var(--ink-2); }
.correction b { font-weight: 600; color: var(--ink); font-variant: small-caps; letter-spacing: .03em; }
.sources { font-size: 13.5px; color: var(--ink-2); max-width: 65ch; margin-top: 6px; }
.sources summary { cursor: pointer; list-style: none; display: inline-flex; gap: 6px; align-items: center; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--ink-2); padding: 4px 0; }
.sources summary::-webkit-details-marker { display: none; }
.sources summary::before { content: "+"; font-weight: 600; width: 1em; display: inline-block; }
.sources[open] summary::before { content: "–"; }
.sources .n { color: var(--ink-3); font-weight: 500; }
.sources ol { margin: 6px 0 0; padding-left: 1.4em; }
.sources li { margin: 5px 0; line-height: 1.45; }
.sources .outlet { font-weight: 600; color: var(--ink); }
.sources .when { color: var(--ink-3); font-size: 12px; margin-left: 4px; }
.sources .perma { display: inline-block; margin-top: 6px; font-size: 12.5px; }
.thumbs { display: flex; gap: 4px; align-items: center; margin-top: 10px; }
.thumb { background: none; border: 1px solid transparent; border-radius: 3px; padding: 5px; color: var(--ink-3); cursor: pointer; line-height: 0; }
.thumb:hover { color: var(--ink); border-color: var(--hair); }
.thumb[aria-pressed="true"] { color: var(--ink); border-color: var(--ink); }
.thumb svg { width: 14px; height: 14px; }
.thumbs .status { margin-left: 6px; }

/* ── carried-forward ── */
.carried-list { list-style: none; padding: 0; margin: 0; }
.carried-list li { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--hair); flex-wrap: wrap; }
.carried-list label { display: flex; gap: 10px; align-items: flex-start; flex: 1 1 260px; cursor: pointer; }
.carried-list .from { font-size: 12.5px; color: var(--ink-3); }

/* ── house placement ── */
.house { margin: 30px 0 0; border: 1px solid var(--ink); padding: 16px 18px; background: var(--card); }
.house-label { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; margin-bottom: 6px; display: flex; gap: 8px; align-items: center; }
.house-label .mark { width: 12px; height: 12px; }
.house h3 { font-family: var(--serif); font-size: 20px; margin: 2px 0 6px; letter-spacing: -.01em; }
.house p { margin: 0 0 10px; max-width: 65ch; font-size: 15px; }
.house .disclose { font-size: 12px; color: var(--ink-3); margin-top: 10px; }

/* ── the end ── */
.end { text-align: center; padding: 40px 0 24px; border-top: 1px solid var(--rule); margin-top: 30px; }
.end-mark { font-family: var(--serif); letter-spacing: .3em; font-size: 13px; color: var(--ink-3); margin-bottom: 10px; }
.end-line { font-family: var(--serif); font-size: clamp(26px, 5vw, 34px); font-weight: 700; letter-spacing: -.01em; margin: 0 0 18px; }
.end .status { margin-top: 8px; }
.streak { margin-top: 14px; font-size: 13px; color: var(--ink-2); letter-spacing: .08em; text-transform: uppercase; }
.streak .streak-n { font-family: var(--serif); font-size: 30px; display: block; color: var(--ink); letter-spacing: 0; text-transform: none; font-weight: 700; line-height: 1.1; }
.streak[hidden] { display: none; }

/* ── beat sheet ── */
.identity { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; font-size: 14.5px; padding: 12px 0 16px; border-bottom: 1px solid var(--hair); margin: 0; }
.identity dt { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; padding-top: 3px; }
.identity dd { margin: 0; }
.summary { font-family: var(--serif); font-size: 18px; line-height: 1.5; max-width: 62ch; margin: 18px 0 6px; }
.beat { display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; padding: 16px 0; border-bottom: 1px solid var(--hair); align-items: start; }
.beat h3 { font-family: var(--serif); font-size: 20px; margin: 0; letter-spacing: -.01em; }
.beat .why { font-size: 14px; color: var(--ink-2); margin: 3px 0 8px; max-width: 60ch; }
.beat.off { opacity: .5; }
.bar { height: 4px; background: var(--hair); position: relative; max-width: 220px; margin: 6px 0 8px; }
.bar i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--ink); }
.topics { display: flex; gap: 6px; flex-wrap: wrap; }
.topic, .topic-h { font-size: 11.5px; letter-spacing: .04em; border: 1px solid var(--hair); border-radius: 2px; padding: 2px 6px; color: var(--ink-2); }
.topic-h { border-style: dotted; }
.switch { position: relative; display: inline-block; width: 38px; height: 22px; margin-top: 3px; }
.switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.switch > span:first-of-type { position: absolute; inset: 0; background: var(--hair); border-radius: 22px; transition: background .15s; }
.switch > span:first-of-type::after { content: ""; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: var(--card); border-radius: 50%; transition: transform .15s; box-shadow: 0 1px 2px rgba(0, 0, 0, .25); }
.switch input:checked + span { background: var(--ink); }
.switch input:checked + span::after { transform: translateX(16px); }
.switch input:focus-visible + span { outline: 2px solid var(--amber); outline-offset: 2px; }
.diffbox { margin-top: 10px; border: 1px solid var(--hair); background: var(--card); padding: 10px 14px; font-size: 14px; }
.diffbox ul { margin: 0; padding-left: 1.2em; }
.history { list-style: none; padding: 0; margin: 0; }
.history li { padding: 12px 0; border-bottom: 1px solid var(--hair); font-size: 14px; }
.history .v { font-weight: 600; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.history .inst { font-family: var(--serif); font-style: italic; font-size: 16px; margin: 4px 0 2px; }
.history .diff { margin: 6px 0 0; padding-left: 1.2em; color: var(--ink-2); }

/* ── lists: archive, worlds ── */
.list { list-style: none; padding: 0; margin: 0; }
.list li { display: flex; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--hair); flex-wrap: wrap; }
.list .no { font-family: var(--serif); font-weight: 700; font-size: 20px; min-width: 4.2em; text-decoration: none; }
.list .date { text-decoration: none; font-weight: 500; }
.list .meta { font-size: 13px; color: var(--ink-3); margin-left: auto; white-space: nowrap; }
.tick { display: inline-flex; align-items: center; gap: 4px; color: var(--green); font-weight: 600; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; }
.tick svg { width: 13px; height: 13px; }
.worlds .radio { flex: 1; }

/* ── acts ── */
.acts { list-style: none; padding: 0; margin: 0; }
.act { display: grid; grid-template-columns: 1fr auto; gap: 8px 14px; padding: 14px 0; border-bottom: 1px solid var(--hair); align-items: start; }
.act .txt { font-size: 16.5px; }
.act .from { font-size: 12.5px; color: var(--ink-3); margin-top: 3px; }
.act .ctl { display: flex; gap: 6px; align-items: center; font-size: 13px; }
.act.done .txt, .act.dismissed .txt { text-decoration: line-through; color: var(--ink-3); }
.empty { padding: 10px 0; }

/* ── ask ── */
.answer { background: var(--card); border: 1px solid var(--ink); padding: 16px 18px; margin: 16px 0; font-size: 16px; line-height: 1.55; display: none; }
.answer[data-open] { display: block; }
.answer p { margin: 0 0 10px; white-space: pre-wrap; }
.cites { margin: 8px 0 0; padding-left: 1.2em; font-size: 13.5px; }
.cites .when { color: var(--ink-3); font-size: 12px; }
.qa { padding: 16px 0; border-bottom: 1px solid var(--hair); }
.qa .q { font-family: var(--serif); font-weight: 700; font-size: 19px; margin: 0 0 6px; letter-spacing: -.01em; }
.qa .a { margin: 0 0 6px; font-size: 15px; color: var(--ink-2); white-space: pre-wrap; }
.upsell { border: 1px solid var(--hair); background: var(--card); padding: 14px 16px; font-size: 15px; }
.upsell p { margin: 0; }

/* ── settings ── */
.plan { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; border: 1px solid var(--hair); background: var(--card); padding: 14px 16px; }

/* ── admin ── */
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-actions form { margin: 0; }
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 16px 0 8px; }
@media (min-width: 720px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .tiles { grid-template-columns: repeat(5, 1fr); } }
.tile { background: var(--card); border: 1px solid var(--hair); padding: 12px 14px; min-width: 0; }
.tile .k { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.tile .v { font-family: var(--serif); font-size: 26px; font-weight: 700; letter-spacing: -.01em; line-height: 1.1; margin-top: 5px; overflow-wrap: anywhere; }
.tile .s { font-size: 12px; color: var(--ink-3); margin-top: 3px; }
.tile .kv { display: block; font-family: var(--sans); font-size: 12px; font-weight: 400; letter-spacing: 0; }
.tile .kv i { font-style: normal; color: var(--ink-3); }
.scroll { overflow-x: auto; }
.tbl { width: 100%; border-collapse: collapse; font-size: 13px; margin: 8px 0 10px; }
.tbl th { text-align: left; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); border-bottom: 1px solid var(--ink); padding: 6px 10px 6px 0; font-weight: 600; white-space: nowrap; }
.tbl td { padding: 8px 10px 8px 0; border-bottom: 1px solid var(--hair); vertical-align: top; }
.tbl .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tbl .ctl { white-space: nowrap; }
.tbl .kv { display: inline-block; margin-right: 8px; font-size: 12px; }
.tbl .kv i { font-style: normal; color: var(--ink-3); }
.inline { display: inline; margin: 0; }
.ok { color: var(--green); font-weight: 600; }
.bad { color: var(--bad); }

/* ── public item ── */
.public-item { padding: 26px 0; }
.hl-public { font-family: var(--serif); font-size: clamp(28px, 5.4vw, 38px); line-height: 1.12; letter-spacing: -.018em; margin: 10px 0 14px; }
.synthesis { font-size: 18px; line-height: 1.55; }
.src-list { padding-left: 1.4em; max-width: 65ch; }
.src-list li { margin: 6px 0; }
.src-list .outlet { font-weight: 600; }
.src-list .when { color: var(--ink-3); font-size: 12.5px; }
.share-page { padding: 26px 0; }
.share-page .sample { margin: 0 0 18px; }

/* ── footer ── */
.foot { border-top: 1px solid var(--rule); margin-top: 48px; padding: 24px 0 44px; font-size: 12.5px; color: var(--ink-3); }
.foot .wrap { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; }
.foot a { color: inherit; }
.press-foot { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 11px; color: var(--ink-2); }
.foot .legal { max-width: 48ch; margin-top: 4px; }

/* ── print ── */
@media print {
  :root { --paper: #fff; --card: #fff; --ink: #000; --ink-2: #222; --ink-3: #444; --hair: #999; --rule: #000; }
  @page { size: letter; margin: .6in; }
  body { font-size: 10.5pt; background: #fff; color: #000; }
  .top, .foot, .thumbs, .paper-tools, .btn, .streak, .status, .logout, .carried, .no-print { display: none !important; }
  .wrap { max-width: none; padding: 0; }
  .masthead { padding-top: 0; }
  .masthead-title { font-size: 36pt; }
  .front-page { padding: 10pt 0; }
  .front .hl { font-size: 24pt; }
  .front .sowhat { font-size: 12pt; }
  .items { column-count: 2; column-gap: 22pt; column-rule: .5pt solid #000; }
  .item { break-inside: avoid; padding: 9pt 0; }
  .item .hl { font-size: 13.5pt; }
  .sowhat { font-size: 10.5pt; }
  .sources summary::before { display: none; }
  .sources summary { padding: 0; }
  .act-row { border-color: #000; }
  .house { break-inside: avoid; }
  .end { padding: 14pt 0 0; margin-top: 12pt; }
  .end-line { font-size: 20pt; }
  a { text-decoration: none; color: inherit; }
}
