/* LumenChat — editorial + redaction. Paper, ink, one orange. Bold sans headlines, mono metadata, black
   redaction bars as the signature element. Light by default; dark only when the visitor picks it. */
:root {
  --paper: #f6f4ee; --paper-2: #edeae2; --card: #fbfaf7; --ink: #101216; --ink-2: #3a3d45; --line: #d9d6cc; --rule: #101216; --muted: #6f737c; --sand: #e7e4db;
  --lumen: #ff4a1f; --lumen-soft: #ffe4d8; --violet: #6b5cff; --ok: #1f7a4d; --err: #c62828;
  --bar: #101216; --bar-ink: #f6f4ee;
  --user-bg: #f0ede4; --ai-bg: #fbfaf7; --tool-bg: #eeecf7;
  --shadow: 0 24px 60px -28px rgba(16,18,22,.35);
  --sans: "Instrument Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --wrap: 820px; --wide: 1140px;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --paper: #0d0f13; --paper-2: #13161c; --card: #12151b; --ink: #ebe8df; --ink-2: #c4c1b8; --line: #262a33; --rule: #ebe8df; --muted: #8a8e98; --sand: #1b1f27;
  --lumen-soft: #3a1d14; --bar: #ebe8df; --bar-ink: #0d0f13; --user-bg: #161a21; --ai-bg: #12151b; --tool-bg: #191a2b;
  --shadow: 0 24px 60px -28px rgba(0,0,0,.8);
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.55 var(--sans); }
.grain { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .55;
  background-image: radial-gradient(900px 420px at 85% -10%, color-mix(in srgb, var(--lumen) 12%, transparent), transparent 60%); }
.top, .wrap, .foot { position: relative; z-index: 1; }
a { color: inherit; text-decoration-color: color-mix(in srgb, var(--ink) 30%, transparent); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--lumen); }
h1, h2, h3 { font-family: var(--sans); font-weight: 700; letter-spacing: -.025em; }
h1 { font-size: clamp(30px, 4vw, 42px); line-height: 1.08; margin: .3em 0 .45em; }
h2 { font-size: 23px; line-height: 1.2; margin: 1.2em 0 .5em; }
h3 { font-size: 18px; margin: 1em 0 .4em; }
h1 em, h2 em { font-style: normal; color: var(--lumen); }
code, pre { font-family: var(--mono); font-size: 13.5px; }
code { background: var(--sand); padding: .1em .35em; border-radius: 4px; }
pre { background: var(--sand); padding: 12px 14px; border-radius: 6px; overflow: auto; }
pre code { background: none; padding: 0; }
.hidden { display: none !important; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 18px 20px 70px; }
.wrap.wide { max-width: var(--wide); }

/* ── redaction bar: the signature ─────────────────────────────────────────────── */
mark.ph { background: var(--bar); color: var(--bar-ink); font-family: var(--mono); font-size: .74em; letter-spacing: .08em; text-transform: uppercase; padding: .18em .5em .14em; border-radius: 2px; -webkit-box-decoration-break: clone; box-decoration-break: clone; white-space: nowrap; }
mark.ph.pop { animation: pop .5s cubic-bezier(.2,1.4,.4,1); }
@keyframes pop { 0% { transform: scale(.6); background: var(--lumen); } 100% { transform: scale(1); } }

/* header */
.top { display: flex; align-items: center; justify-content: space-between; max-width: var(--wide); margin: 0 auto; padding: 16px 20px 14px; gap: 14px; border-bottom: 1px solid var(--rule); }
.logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.logo .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--lumen); }
.wordmark { font-family: var(--sans); font-weight: 700; font-size: 19px; letter-spacing: -.02em; line-height: 1; }
.wordmark em { color: var(--lumen); font-style: normal; }
.logo.small .wordmark { font-size: 17px; }
.top nav { display: flex; align-items: center; gap: 16px; }
.nav-link { font-size: 14.5px; }
.nav-user { font-family: var(--mono); font-size: 13.5px; }
.theme-toggle { border: 1px solid var(--line); background: transparent; color: var(--ink); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 14px; display: grid; place-items: center; }
.theme-toggle .moon { display: none; } :root[data-theme="dark"] .theme-toggle .moon { display: inline; } :root[data-theme="dark"] .theme-toggle .sun { display: none; }
.search { flex: 1 1 240px; max-width: 380px; margin: 0 auto; }
.search input { width: 100%; margin: 0; padding: 8px 12px 8px 34px; border-radius: 4px; border: 1px solid var(--line); font-family: var(--sans); font-size: 14px; background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%236f737c' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E") 11px center no-repeat; color: var(--ink); }
.search input:focus { outline: none; border-color: var(--ink); }
@media (max-width: 680px) { .top { flex-wrap: wrap; } .search { order: 3; flex-basis: 100%; max-width: none; } }

/* footer */
.foot { max-width: var(--wide); margin: 0 auto; padding: 26px 20px 44px; color: var(--muted); font-size: 14px; border-top: 1px solid var(--rule); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
.foot p { margin: 8px 0 0; max-width: 440px; }
.foot-h { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; } }

/* buttons & forms */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border: 1px solid var(--ink); border-radius: 4px; background: transparent; color: var(--ink); text-decoration: none; font: inherit; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .12s ease, color .12s ease, transform .12s ease; }
.btn:hover { background: var(--ink); color: var(--paper); }
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.primary:hover { background: var(--lumen); border-color: var(--lumen); color: #fff; }
.btn.big { padding: 13px 22px; font-size: 16px; }
.btn.small { padding: 4px 10px; font-size: 13px; }
.btn.danger { color: var(--err); border-color: var(--err); } .btn.danger:hover { background: var(--err); color: #fff; }
.btn:disabled { opacity: .45; cursor: default; }
.textlink { font-size: 15px; text-decoration: underline; text-decoration-color: var(--lumen); text-underline-offset: 4px; }
button.link { background: none; border: 0; padding: 0; color: var(--muted); font: inherit; font-size: 13px; cursor: pointer; text-decoration: underline; }
form.inline { display: inline; }
label { display: block; margin: 12px 0; font-family: var(--mono); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
label.check { text-transform: none; letter-spacing: 0; font-family: var(--sans); font-size: 14px; color: var(--ink); }
input[type=text], input[type=email], input:not([type]), textarea, select { width: 100%; margin-top: 6px; padding: 11px 13px; font: 16px/1.4 var(--sans); color: var(--ink); background: var(--card); border: 1px solid var(--line); border-radius: 4px; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px color-mix(in srgb, var(--lumen) 25%, transparent); }
input[type=checkbox] { width: auto; margin-right: 6px; }
textarea { min-height: 120px; resize: vertical; font-family: var(--mono); font-size: 13.5px; }
select { width: auto; }
.row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 12px 0; }
.row label { flex: 1 1 160px; margin: 0; }
.stack { max-width: 460px; }
.flash { padding: 10px 14px; border-left: 3px solid var(--ok); background: var(--card); margin: 12px 0; font-size: 14px; }
.flash.err { border-color: var(--err); color: var(--err); }

/* ── masthead ─────────────────────────────────────────────────────────────────── */
.masthead { padding: 26px 0 8px; }
.dateline { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0 0 22px; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.dateline .ticker { margin-left: auto; color: var(--ink); }
.mast-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: center; }
.masthead h1 { font-size: clamp(40px, 5.8vw, 70px); line-height: 1.02; margin: 0 0 20px; letter-spacing: -.04em; }
.redact-word { display: inline-block; }
.redact-word .bar { display: inline-block; background: var(--bar); color: transparent; padding: 0 .14em; border-radius: 4px; line-height: 1.02; animation: unredact 7s ease-in-out infinite; }
@keyframes unredact { 0%, 55% { color: transparent; } 62%, 88% { color: var(--bar-ink); } 95%, 100% { color: transparent; } }
.lede { font-size: 19px; line-height: 1.5; color: var(--ink-2); max-width: 520px; margin: 0 0 22px; }
.lede em, .foot em, .try-head em { font-style: normal; font-weight: 600; }
.cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin: 0; }
.demo { background: var(--card); border: 1px solid var(--rule); position: relative; min-height: 240px; display: flex; flex-direction: column; box-shadow: 8px 8px 0 var(--sand); }
.demo-bar { display: flex; align-items: center; justify-content: space-between; padding: 9px 14px; border-bottom: 1px solid var(--rule); font-family: var(--mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.demo-live { display: inline-flex; align-items: center; gap: 6px; color: var(--lumen); }
.demo-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--lumen); animation: pulse 1.4s ease-in-out infinite; }
.demo-msg { display: flex; gap: 12px; padding: 18px 16px 12px; flex: 1; }
.demo-text { font-size: 15.5px; line-height: 1.6; word-break: break-word; min-height: 120px; }
.demo-foot { display: flex; align-items: center; gap: 10px; padding: 10px 16px 14px; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--ok); min-height: 40px; }
.scan { position: absolute; left: 0; right: 0; top: 40px; height: 2px; background: var(--lumen); opacity: 0; }
.scan.on { animation: sweep .9s ease-in-out; }
@keyframes sweep { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(190px); } }
@media (max-width: 860px) { .mast-grid { grid-template-columns: 1fr; gap: 24px; } .dateline .ticker { margin-left: 0; } }

/* try it */
.try { margin: 30px 0 34px; padding: 22px 0 0; border-top: 1px solid var(--rule); }
.try-head h2 { margin: 0 0 4px; }
.try-head p { margin: 0 0 14px; }
.try-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.try textarea { min-height: 150px; margin: 0; background: var(--card); }
.try-out { border: 1px dashed var(--line); padding: 10px 12px; background: var(--paper-2); min-height: 150px; }
.try-out-head { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }
.try-pre { background: none; padding: 0; margin: 0; white-space: pre-wrap; word-break: break-word; font-size: 13.5px; line-height: 1.7; }
.try-cta { margin: 14px 0 0; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
@media (max-width: 720px) { .try-grid { grid-template-columns: 1fr; } }

/* ── stream + rail (Twitter-shaped, newspaper-dressed) ────────────────────────── */
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 44px; align-items: start; }
.layout.single { grid-template-columns: minmax(0, 1fr); max-width: 780px; }
@media (max-width: 900px) { .layout { grid-template-columns: 1fr; gap: 20px; } }
.tabs { display: flex; gap: 22px; border-bottom: 1px solid var(--rule); margin: 4px 0 0; }
.tabs a { padding: 10px 0 9px; text-decoration: none; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }
.tabs a.on { color: var(--ink); border-color: var(--lumen); }
.tag-title { margin-top: 26px; }
.feed { display: block; }
.entry { padding: 22px 0 18px; border-bottom: 1px solid var(--line); position: relative; }
.entry-top { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.prov { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); }
.pdot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); }
.entry.claude .pdot, .av.ai.claude { background: #d97a3a; } .entry.chatgpt .pdot, .av.ai.chatgpt { background: #10a37f; } .entry.gemini .pdot, .av.ai.gemini { background: #4c7dff; } .entry.grok .pdot, .av.ai.grok { background: #555; } .entry.copilot .pdot, .av.ai.copilot { background: var(--violet); }
.entry-top .kind { display: inline-flex; align-items: center; gap: 5px; }
.entry-top .when::before { content: "—"; margin-right: 8px; color: var(--line); }
.shield { color: var(--ok); display: inline-flex; align-items: center; gap: 4px; margin-left: auto; }
.entry-title { font-size: clamp(19px, 2vw, 22px); line-height: 1.25; margin: 8px 0 10px; }
.entry-title a { text-decoration: none; }
.entry-title a:hover { text-decoration: underline; text-decoration-color: var(--lumen); text-decoration-thickness: 2px; }
.exchange { display: grid; gap: 6px; max-width: 700px; }
.exchange .line { margin: 0; font-size: 15px; line-height: 1.55; }
.exchange .line.u { color: var(--ink); padding-left: 18px; position: relative; }
.exchange .line.u::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; border-radius: 2px; background: var(--lumen); }
.exchange .line.a { color: var(--muted); font-size: 15px; padding-left: 18px; position: relative; }
.exchange .line.a::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; border-radius: 2px; background: var(--line); }
.entry-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-top: 12px; font-size: 13px; color: var(--muted); }
.entry-foot .by { font-family: var(--mono); font-size: 12.5px; }
.tag { text-decoration: none; color: var(--violet); }
.read { margin-left: 6px; text-decoration: none; color: var(--ink); font-weight: 500; }
.read:hover { color: var(--lumen); }
.more { text-align: center; margin: 22px 0; }
.empty { color: var(--muted); padding: 30px 0; text-align: center; }
.rail { position: sticky; top: 18px; }
.rail-box { padding: 18px 0; border-bottom: 1px solid var(--line); }
.rail-box:first-child { padding-top: 12px; }
.rail-box h3 { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.trend { list-style: none; margin: 0; padding: 0; }
.trend li { display: flex; justify-content: space-between; align-items: baseline; padding: 5px 0; border-bottom: 1px dotted var(--line); }
.trend a { text-decoration: none; color: var(--ink); font-weight: 500; }
.trend a.on, .trend a:hover { color: var(--lumen); }
.trend span { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.ledger { margin: 0; }
.ledger div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 5px 0; border-bottom: 1px dotted var(--line); }
.ledger dt { font-size: 13.5px; color: var(--ink-2); }
.ledger dd { margin: 0; font-family: var(--sans); font-weight: 700; font-size: 20px; line-height: 1; letter-spacing: -.02em; }
.rail-box.how ol { margin: 0 0 14px; padding-left: 18px; font-size: 14px; color: var(--ink-2); }
.rail-box.how li { margin: 6px 0; }

/* icons + actions */
.ic { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; vertical-align: -3px; flex: none; }
.kind .ic, .shield .ic { width: 14px; height: 14px; }
.btn .ic { width: 16px; height: 16px; }
.acts { display: inline-flex; gap: 2px; margin-left: auto; }
.act { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border-radius: 4px; border: 1px solid transparent; background: transparent; color: var(--muted); font: inherit; font-family: var(--mono); font-size: 12.5px; cursor: pointer; text-decoration: none; transition: color .12s ease, background .12s ease; }
.act:hover { color: var(--ink); background: var(--sand); }
.act.like:hover, .act.like[data-liked="1"] { color: var(--lumen); }
.act.like[data-liked="1"] .ic { fill: var(--lumen); stroke: var(--lumen); }
.act.bump .ic { animation: bump .4s cubic-bezier(.2,1.6,.4,1); }
@keyframes bump { 0% { transform: scale(.6); } 60% { transform: scale(1.25); } 100% { transform: scale(1); } }
.acts.big { margin-left: 0; }
.acts.big .act { border-color: var(--ink); padding: 8px 13px; font-size: 13.5px; }
.acts.big .act:hover { background: var(--ink); color: var(--paper); }
.acts.big .act.like[data-liked="1"] { background: var(--lumen); border-color: var(--lumen); color: #fff; }
.acts.big .act.like[data-liked="1"] .ic { fill: #fff; stroke: #fff; }

/* people (search) */
.people { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 0 0 8px; }
.people h2 { width: 100%; margin: 6px 0 0; font-size: 20px; }
.person { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px 5px 5px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-weight: 500; font-size: 14px; }
.results-h { margin: 12px 0 0; font-family: var(--mono); letter-spacing: .08em; text-transform: uppercase; }

/* ── post page ─────────────────────────────────────────────────────────────────── */
.post header h1 { font-size: clamp(28px, 3.8vw, 40px); }
.post header .meta { display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: center; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.badge { color: var(--ink); }
.badge.kind { color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 22px; padding: 14px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.messages { display: grid; gap: 14px; margin: 8px 0 24px; }
.msg { display: flex; gap: 14px; padding: 4px 0 14px; border-bottom: 1px dotted var(--line); }
.msg-main { min-width: 0; flex: 1; }
.av { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-family: var(--mono); font-weight: 600; font-size: 12px; background: var(--sand); color: var(--ink); }
.av.user { background: var(--lumen); color: #fff; }
.av.ai { color: #fff; }
.msg .who, .pm .who { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.msg.user .who { color: var(--lumen); }
.msg .body { font-size: 16.5px; line-height: 1.6; }
.msg .body > :first-child { margin-top: 0; } .msg .body > :last-child { margin-bottom: 0; }
.msg .body p { margin: .6em 0; }
.msg .body h3, .msg .body h4, .msg .body h5 { font-family: var(--sans); font-weight: 600; font-size: 16px; }
.msg .body blockquote { margin: .6em 0; padding-left: 12px; border-left: 3px solid var(--lumen); color: var(--ink-2); }
details.msg.tool { display: block; background: var(--tool-bg); padding: 10px 14px; border: 0; border-left: 3px solid var(--violet); }
details.msg.tool summary { cursor: pointer; font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; }
.tool-ic { margin-right: 6px; opacity: .7; }
details.msg.tool .body { margin-top: 8px; }
.comments { margin-top: 24px; border-top: 1px solid var(--rule); padding-top: 10px; }
.comment { padding: 12px 0; border-bottom: 1px dotted var(--line); }
.comment .who { font-family: var(--mono); font-size: 12.5px; display: flex; gap: 10px; align-items: baseline; }
.comment .body p { margin: .4em 0; }
.comment-form textarea { min-height: 80px; }
.comment-form { margin-top: 12px; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th, .table td { text-align: left; padding: 8px; border-bottom: 1px solid var(--line); vertical-align: top; }

/* ── publish flow ──────────────────────────────────────────────────────────────── */
.publish .step { border-top: 1px solid var(--rule); padding: 20px 0 10px; margin: 8px 0; }
.publish h2 { margin-top: 0; }
.publish #raw { min-height: 220px; }
.findings { list-style: none; padding: 0; margin: 10px 0; }
.findings li { padding: 9px 11px; border: 1px solid var(--line); margin: 6px 0; font-size: 14px; background: var(--card); }
.findings li.secret { border-left: 3px solid var(--err); }
.findings li label { margin: 0; text-transform: none; letter-spacing: 0; font-family: var(--sans); font-size: 14px; color: var(--ink); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.findings .lbl { font-weight: 600; }
.preview { margin: 12px 0; }
.preview summary { cursor: pointer; font-weight: 600; }
.pm { border-left: 3px solid var(--line); padding: 8px 12px; margin: 8px 0; }
.pm.user { border-color: var(--lumen); }
.pm pre { background: none; padding: 0; margin: 0; white-space: pre-wrap; word-break: break-word; line-height: 1.65; }
#picker select { width: 100%; margin: 8px 0; }
#done-delete { display: block; margin-top: 6px; word-break: break-all; }

/* ── sign-in waiting page ──────────────────────────────────────────────────────── */
.wait { text-align: center; max-width: 520px; margin: 40px auto; }
.wait-icon { position: relative; width: 84px; height: 84px; margin: 0 auto 10px; display: grid; place-items: center; font-size: 34px; border-radius: 50%; background: var(--card); border: 1px solid var(--rule); }
.wait-icon .ring { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--lumen); opacity: .5; animation: ring 2.2s ease-out infinite; }
@keyframes ring { 0% { transform: scale(.85); opacity: .6; } 100% { transform: scale(1.3); opacity: 0; } }
.wait-icon.ok { background: var(--ok); color: #fff; border-color: var(--ok); font-weight: 700; }
.wait-status { font-family: var(--mono); font-size: 13px; }
.pulse { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--lumen); margin-right: 6px; animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .2; } }

@media (prefers-reduced-motion: reduce) { .scan.on, mark.ph.pop, .wait-icon .ring, .pulse, .demo-live i, .redact-word .bar, .act.bump .ic { animation: none !important; } .redact-word .bar { color: var(--bar-ink); } }
