
:root {
  color-scheme: light;
  --ink: #11161A;
  --ink-2: #5A646C;
  --paper: #F6F7F2;
  --card: #FFFFFC;
  --line: #DADFD7;
  --line-strong: #B7C0B5;
  --registry: #315A72;
  --registry-ink: #18384C;
  --registry-bg: #E8F0F4;
  --registry-line: #B8CBD6;
  --spruce: var(--registry);
  --spruce-ink: var(--registry-ink);
  --spruce-bg: var(--registry-bg);
  --violet: #6D48D7;
  --violet-bg: #F0ECFF;
  --amber: #935F16;
  --amber-bg: #FFF2D9;
  --slate: #67717A;
  --slate-bg: #EEF1F2;
  --danger: #B42318;
  --danger-bg: #FFF1EF;
  --focus: #F4C542;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Public Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --r-card: 8px;
  --r-button: 8px;
  --r-chip: 999px;
  --shadow: 0 1px 0 rgba(17, 22, 26, 0.04), 0 10px 28px -22px rgba(17, 22, 26, 0.32);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button,
input,
textarea,
select {
  font: inherit;
}
button { cursor: pointer; }
code,
.mono,
.code,
.when,
.product,
.metoo,
.duration,
.machine,
.token-row p {
  font-family: var(--font-mono);
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  box-shadow: 0 0 0 1px var(--ink);
}
.shell {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 247, 242, 0.94);
  backdrop-filter: blur(12px);
}
.topbar .shell {
  width: min(1240px, calc(100vw - 40px));
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-lockup-img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 164px;
  flex: 0 0 auto;
  object-fit: contain;
}
.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
}
.brand-mark-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}
.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
}
.logo-word {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.logo-word em {
  color: var(--registry);
  font-style: normal;
}
.tagline {
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.2;
}
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
}
.nav form { margin: 0; }
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--r-button);
  background: var(--card);
  padding: 3px;
}
.nav .lang-switcher button {
  min-height: 30px;
  border: 0;
  border-radius: 7px;
  padding: 0 9px;
  background: transparent;
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 11.5px;
}
.nav .lang-switcher button.active {
  background: var(--registry-bg);
  color: var(--registry-ink);
}
.button,
.nav a,
.nav button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-button);
  padding: 0 14px;
  background: var(--card);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.button.primary,
.nav .primary {
  border-color: var(--registry);
  background: var(--registry);
  color: #FFFFFF;
}
.button.danger {
  border-color: var(--danger);
  background: var(--danger-bg);
  color: var(--danger);
}
.button.primary:hover,
.nav .primary:hover { background: var(--registry-ink); }
.button:hover,
.nav a:hover,
.nav button:hover {
  border-color: var(--ink-2);
}
.button:disabled,
.nav button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.notification-link {
  position: relative;
}
.notification-badge {
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--amber);
  border-radius: 999px;
  background: var(--amber-bg);
  color: var(--amber);
  padding: 0 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
.flash {
  margin-top: 18px;
  border: 1px solid var(--registry-line);
  border-radius: 10px;
  background: var(--registry-bg);
  padding: 12px 14px;
  color: var(--registry-ink);
  font-size: 14px;
  font-weight: 600;
}
.copy-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  max-width: min(360px, calc(100vw - 44px));
  border: 1px solid var(--registry-line);
  border-radius: 10px;
  background: var(--registry-bg);
  padding: 11px 13px;
  color: var(--registry-ink);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.copy-toast.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
  padding: 88px 0 72px;
}
.hero > *,
.ledger-row > *,
.yet-row > *,
.workspace > *,
.profile-hero > *,
.profile-stat,
.capture,
.panel,
.connect,
.row-title,
.row-meta,
.meta {
  min-width: 0;
}
.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}
.hero .yet {
  position: relative;
  display: inline-block;
  color: var(--registry);
  white-space: nowrap;
}
.hero .yet::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.02em;
  height: 0.18em;
  z-index: -1;
  border-radius: 3px;
  background: var(--registry);
  opacity: 0.28;
  animation: ink-sweep 0.7s ease-out 0.2s both;
  transform-origin: left center;
}
.lede {
  max-width: 44ch;
  margin: 22px 0 30px;
  color: var(--ink-2);
  font-size: 18px;
  overflow-wrap: anywhere;
}
.hero-actions,
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.login-hero {
  align-items: start;
}
.login-hero h1 {
  max-width: 100%;
  font-size: 56px;
}
.about-page {
  display: grid;
  gap: 36px;
  padding: 64px 0 72px;
}
.about-hero {
  max-width: 760px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--registry-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--card);
  overflow: hidden;
}
.about-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: 22px;
}
.about-card:last-child { border-right: 0; }
.about-card h2,
.about-band h2 {
  margin: 16px 0 8px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0;
}
.about-card p,
.about-band p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
}
.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.about-band h2 {
  margin-top: 0;
  font-size: 26px;
}
.legal-page {
  display: grid;
  gap: 28px;
  padding: 54px 0 78px;
}
.legal-hero {
  max-width: 820px;
}
.legal-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}
.legal-hero .lede {
  margin-top: 18px;
}
.legal-document {
  max-width: 880px;
  border-top: 1px solid var(--line);
}
.legal-section {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.legal-section h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}
.legal-section p {
  max-width: 82ch;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.72;
}
.legal-section p + p {
  margin-top: 12px;
}
.auth-panel {
  padding: 26px;
}
.auth-options {
  display: grid;
  gap: 12px;
}
.auth-options .button {
  width: 100%;
  min-height: 46px;
}
.auth-note {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 13px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.registration-page {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: start;
  padding: 72px 0;
}
.registration-copy h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1.03;
  letter-spacing: 0;
}
.registration-panel {
  overflow: hidden;
}
.input-prefix {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  overflow: hidden;
}
.input-prefix > span {
  padding-left: 12px;
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 14px;
}
.input-prefix input {
  border: 0;
  border-radius: 0;
  padding-left: 4px;
  font-family: var(--font-mono);
}
.input-prefix:focus-within {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-color: var(--registry);
}
.field-hint,
.form-error {
  margin: -4px 0 0;
  font-size: 13px;
}
.field-hint {
  color: var(--ink-2);
}
.form-error {
  color: var(--danger);
  font-weight: 650;
}
.provider-google {
  border-color: var(--registry);
  background: var(--registry);
  color: #FFFFFF;
}
.provider-google:hover {
  background: var(--registry-ink);
}
.hero-foot {
  margin: 26px 0 0;
  color: var(--ink-2);
  font-size: 13px;
  overflow-wrap: anywhere;
}
.hero-foot code {
  display: inline-block;
  margin-left: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--card);
  padding: 3px 8px;
  color: var(--ink);
  font-size: 12.5px;
}
.capture,
.panel,
.yetcard {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--card);
  box-shadow: var(--shadow);
}
.capture {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}
.capture-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  width: 100%;
  min-width: 0;
}
.capture-row > * {
  min-width: 0;
}
.capture-row.align-end .bubble {
  justify-self: end;
}
.capture-no {
  padding-top: 10px;
  color: #8B9993;
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1;
  text-align: right;
}
.capture .label {
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bubble {
  max-width: 88%;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.bubble.user {
  align-self: flex-end;
  border: 1px solid var(--line);
  border-bottom-right-radius: 4px;
  background: var(--paper);
}
.toolcall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 8px 12px;
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 12.5px;
  overflow-wrap: anywhere;
}
.toolcall .dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--registry);
  animation: pulse 1.6s infinite;
}
.saved {
  align-self: flex-start;
  border: 1px solid var(--registry-line);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  background: var(--registry-bg);
  padding: 12px 14px;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.capture-row .toolcall,
.capture-row .saved {
  justify-self: start;
  max-width: min(32ch, 100%);
}
.saved .mono {
  display: block;
  margin-top: 4px;
  color: var(--registry-ink);
  font-size: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.section {
  border-top: 1px solid var(--line);
  padding: 56px 0;
}
.section h2,
.list-tools h1,
.panel-header h1,
.panel-header h2,
.connect h2,
.token-list h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}
.section h2 {
  margin-bottom: 6px;
  font-size: 26px;
  line-height: 1.15;
}
.section .sub {
  margin: 0 0 28px;
  color: var(--ink-2);
  font-size: 14.5px;
}
.ledger,
.yet-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--card);
}
.ledger-row,
.yet-head,
.yet-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 210px;
  gap: 24px;
  align-items: start;
}
.ledger-row,
.yet-row {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.ledger-row:last-child,
.yet-row:last-child { border-bottom: 0; }
.yet-head {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.when {
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.7;
}
.when b {
  color: var(--ink);
  font-weight: 500;
}
.row-title,
.yet-row h2 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.yet-row h2 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.yet-row p {
  margin: 0 0 12px;
  color: var(--ink-2);
}
.struck-update {
  color: var(--ink-2);
  text-decoration: line-through;
  text-decoration-color: var(--violet);
  text-decoration-thickness: 2px;
}
.struck-person {
  color: var(--ink-2);
  text-decoration: line-through;
  text-decoration-color: var(--registry);
  text-decoration-thickness: 2px;
}
.struck-update,
.struck-person {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.product {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  vertical-align: 2px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 7px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 500;
}
.exec-context {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: 8px;
  vertical-align: middle;
}
.mono-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  padding: 2px 6px;
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 11.5px;
}
.meta,
.row-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: 12.5px;
}
.author-pill {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--registry-ink);
  font-weight: 700;
}
.author-pill:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.avatar-xs {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--card);
  color: var(--registry-ink);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  object-fit: cover;
}
.avatar-xs.fallback {
  background: var(--registry-bg);
}
.ledger-author {
  margin-top: 7px;
}
.handle-link {
  color: var(--registry-ink);
  font-weight: 700;
}
.handle-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.row-meta {
  justify-content: flex-end;
}
.evidence-grid {
  width: min(520px, 100%);
  display: grid;
  gap: 2px;
  margin: 12px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--line);
  aspect-ratio: 16 / 9;
}
.evidence-count-1 { grid-template-columns: 1fr; }
.evidence-count-2 { grid-template-columns: repeat(2, 1fr); }
.evidence-count-3,
.evidence-count-4 { grid-template-columns: repeat(2, 1fr); }
.evidence-count-3 .evidence-cell:first-child {
  grid-row: span 2;
}
.evidence-cell {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--paper);
}
.evidence-cell img,
.evidence-detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.evidence-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(17, 22, 26, 0.58);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
}
.chip {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: var(--r-chip);
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.chip-open { background: var(--amber-bg); color: var(--amber); }
.chip-solved-person { background: var(--registry-bg); color: var(--registry-ink); }
.chip-solved-update { background: var(--violet-bg); color: var(--violet); }
.chip-solution {
  border: 1px solid var(--registry-line);
  background: var(--registry-bg);
  color: var(--registry-ink);
}
.chip-not-impossible,
.chip-duplicate,
.chip-private,
.chip-unlisted,
.chip-public { background: var(--slate-bg); color: var(--slate); }
.workspace {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0 72px;
}
.workspace-single {
  grid-template-columns: minmax(0, 1fr);
}
.settings-workspace {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}
.yet-detail-page {
  display: grid;
  gap: 20px;
  padding: 34px 0 72px;
}
.detail-card {
  padding: 22px;
}
.detail-card h1 {
  margin: 12px 0 4px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.12;
}
.yet-explainer {
  max-width: 62ch;
  margin: 0 0 14px;
  color: var(--ink-2);
  font-size: 14px;
}
.yet-explainer a {
  color: var(--registry-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.publish-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px -22px 20px;
  border-top: 1px solid var(--registry-line);
  border-bottom: 1px solid var(--registry-line);
  background: var(--registry-bg);
  padding: 15px 22px;
}
.publish-cta strong {
  display: block;
  color: var(--registry-ink);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
}
.publish-cta p {
  max-width: 62ch;
  margin: 4px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.45;
}
.publish-cta .button {
  flex: 0 0 auto;
}
.detail-card .byline {
  margin: 0 0 20px;
  color: var(--ink-2);
  font-size: 13px;
}
.field {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.field .k {
  margin-bottom: 5px;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field .v {
  overflow-wrap: anywhere;
}
.evidence-body {
  display: grid;
  gap: 18px;
  padding: 18px 22px 22px;
}
.evidence-detail-grid {
  display: grid;
  gap: 14px;
}
.evidence-detail-card {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper);
  padding: 12px;
}
.evidence-detail-media {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--card);
  aspect-ratio: 4 / 3;
}
.evidence-zoom-trigger {
  cursor: zoom-in;
}
.evidence-zoom-trigger:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--registry) 42%, transparent);
  outline-offset: 3px;
}
.evidence-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 22px;
}
.evidence-lightbox:target {
  display: grid;
}
.evidence-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 22, 26, 0.82);
  cursor: zoom-out;
}
.evidence-lightbox-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 1180px);
  max-height: calc(100dvh - 44px);
  margin: 0;
}
.evidence-lightbox-frame img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 44px);
  border: 1px solid rgba(255, 255, 252, 0.18);
  border-radius: 10px;
  background: var(--paper);
  object-fit: contain;
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.32);
}
.evidence-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 252, 0.28);
  border-radius: 999px;
  background: rgba(17, 22, 26, 0.72);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
}
.evidence-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--ink-2);
  font-size: 13px;
  text-align: center;
}
.evidence-detail-body,
.flag-form,
.report-form,
.evidence-upload-form {
  display: grid;
  gap: 12px;
}
.flag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.flag-fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 12px;
}
.flag-fieldset legend {
  padding: 0 6px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}
.check-row {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  grid-template-columns: auto;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--r-chip);
  background: var(--card);
  padding: 6px 10px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}
.check-row input {
  width: auto;
  margin: 0;
  padding: 0;
}
.report-details summary {
  cursor: pointer;
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
}
.community-note {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper);
  padding: 14px;
}
.community-note p {
  margin: 8px 0 0;
}
.yet-owner-tools .form,
.comments-body {
  display: grid;
  gap: 16px;
  padding: 18px 22px 22px;
}
.form-subsection,
.edit-yet-form,
.comment-form {
  display: grid;
  gap: 12px;
}
.edit-yet-details {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.edit-yet-details summary {
  cursor: pointer;
  font-weight: 700;
}
.comment-item {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.comment-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.comment-item.addendum {
  border: 1px solid var(--registry-line);
  border-radius: 10px;
  background: var(--registry-bg);
  padding: 14px;
}
.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--ink-2);
  font-size: 12px;
}
.comment-item p {
  margin: 8px 0 0;
}
.inline-action {
  margin: 0;
}
.metoo-button.active {
  border-color: var(--registry-line);
  background: var(--registry-bg);
  color: var(--registry-ink);
}
.bookmark-button.active {
  border-color: var(--amber);
  background: var(--amber-bg);
  color: var(--amber);
}
.addenda-list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.side-stack {
  display: grid;
  gap: 18px;
  align-self: start;
}
.panel-header {
  border-bottom: 1px solid var(--line);
  padding: 20px 22px 12px;
}
.panel-header h1,
.panel-header h2 {
  font-size: 19px;
  line-height: 1.2;
}
.panel-header p {
  margin: 6px 0 0;
  color: var(--ink-2);
  font-size: 13px;
}
.form {
  display: grid;
  gap: 16px;
  padding: 20px 22px 22px;
}
.setup-row {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
}
.setup-row strong {
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
}
.setup-row p,
.connect p,
.empty {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}
.step {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--registry-line);
  border-radius: 8px;
  background: var(--registry-bg);
  color: var(--registry-ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
}
.connect {
  border: 1px solid var(--registry-line);
  border-radius: var(--r-card);
  background: var(--registry-bg);
  padding: 18px;
}
.connect h2 {
  margin-bottom: 8px;
  font-size: 17px;
}
.code {
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 12px;
  color: var(--ink);
  font-size: 12.5px;
  line-height: 1.55;
}
.code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  margin-top: 12px;
}
.connect-page,
.oauth-consent {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: start;
  padding: 54px 0 72px;
}
.connect-intro h1,
.oauth-consent h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}
.connect-guides {
  display: grid;
  gap: 12px;
}
.client-guide {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--card);
}
.client-guide summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.client-guide summary .machine {
  border: 1px solid var(--registry-line);
  border-radius: var(--r-chip);
  background: var(--registry-bg);
  padding: 3px 9px;
  color: var(--registry-ink);
  font-size: 11px;
  font-weight: 500;
}
.guide-steps {
  display: grid;
  border-top: 1px solid var(--line);
}
.guide-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 18px;
}
.guide-step:last-child {
  border-bottom: 0;
}
.guide-step h2 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
}
.guide-step p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}
.step-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 11px;
}
.chat-icon {
  border-color: var(--registry-line);
  background: var(--registry-bg);
  color: var(--registry-ink);
}
.copy-field {
  margin-top: 12px;
}
.copy-field .label {
  display: inline-block;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pat-fallback {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.pat-fallback summary,
.command-reference summary {
  cursor: pointer;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}
.command-reference {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.fallback-body {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.fallback-step {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.fallback-step h3 {
  margin: 0 0 8px;
  font-size: 13px;
}
.inline-token-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}
.info-note {
  margin: 0;
  border: 1px solid var(--registry-line);
  border-radius: 8px;
  background: var(--registry-bg);
  padding: 9px 11px;
  color: var(--registry-ink);
  font-size: 13px;
  font-weight: 650;
}
.pat-warning {
  margin: 8px 0 0;
  color: var(--amber);
  font-size: 12.5px;
}
.chat-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}
.connection-status {
  border: 1px solid var(--registry-line);
  border-radius: var(--r-card);
  background: var(--registry-bg);
  padding: 14px 16px;
  color: var(--registry-ink);
  font-size: 14px;
  font-weight: 700;
}
.reconnect-hint {
  margin: -2px 0 0;
  color: var(--ink-2);
  font-size: 13px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  color: var(--ink);
  padding: 11px 12px;
  font-size: 14px;
}
textarea {
  min-height: 94px;
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-color: var(--registry);
}
.list-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.feed-main .public-feed {
  border-top: 0;
  padding-top: 34px;
}
.feed-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.feed-header h2 {
  margin-bottom: 6px;
}
.feed-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.feed-tabs {
  display: inline-flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--r-button);
  background: var(--card);
  padding: 4px;
}
.feed-tabs a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  padding: 0 12px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}
.feed-tabs a.active {
  background: var(--registry-bg);
  color: var(--registry-ink);
}
.social-page {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(260px, 340px);
  gap: 28px;
  align-items: start;
  padding: 34px 0 72px;
}
.social-main {
  min-width: 0;
  display: grid;
  gap: 18px;
}
.social-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--card);
  padding: 20px 22px;
}
.social-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: 0;
}
.social-header .lede {
  max-width: 52ch;
  margin: 8px 0 0;
  font-size: 14.5px;
}
.social-aside {
  position: sticky;
  top: 78px;
  display: grid;
  gap: 14px;
}
.side-panel,
.social-aside .filter-panel {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--card);
  padding: 16px;
}
.side-panel {
  display: grid;
  gap: 10px;
}
.side-panel h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
}
.side-panel p {
  margin: 0;
  color: var(--ink-2);
  font-size: 13px;
}
.social-aside .filter-panel {
  gap: 14px;
}
.social-aside .filter-search {
  grid-template-columns: 1fr;
}
.social-aside .active-filters {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.social-main .yet-table,
.social-main .timeline {
  border-radius: var(--r-card);
}
.social-main .yet-row {
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
}
.social-main .yet-row .row-meta {
  grid-column: 2;
  justify-content: flex-start;
}
.social-main .yet-head {
  grid-template-columns: 108px minmax(0, 1fr);
}
.social-main .yet-head span:last-child {
  display: none;
}
.explore-page {
  display: grid;
  gap: 24px;
  padding: 46px 0 72px;
}
.explore-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.explore-header h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.03;
  letter-spacing: 0;
}
.filter-panel {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0 22px;
}
.filter-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}
.filter-search label span {
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.filter-group {
  display: grid;
  gap: 8px;
}
.filter-group h2 {
  margin: 0;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.filter-chips,
.active-filters,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.active-filters {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.active-filters > span {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}
.filter-chip,
.tag-chip {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--r-chip);
  background: var(--card);
  padding: 0 11px;
  color: var(--ink-2);
  font-size: 12.5px;
  font-weight: 650;
}
.filter-chip span {
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 11px;
}
.filter-chip.active {
  border-color: var(--registry-line);
  background: var(--registry-bg);
  color: var(--registry-ink);
}
.filter-chip.active span {
  color: var(--registry-ink);
}
.tag-list {
  gap: 5px;
}
.tag-chip {
  min-height: 24px;
  padding: 0 8px;
  background: var(--paper);
  font-size: 11.5px;
}
.explore-results {
  display: grid;
  gap: 12px;
}
.profile-social-page .social-main {
  gap: 12px;
}
.profile-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--card);
}
.profile-cover {
  height: 132px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(49, 90, 114, 0.22), rgba(255, 255, 252, 0.1)),
    repeating-linear-gradient(90deg, rgba(17, 22, 26, 0.08) 0 1px, transparent 1px 34px),
    var(--registry-bg);
}
.profile-card-body {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 0 20px 18px;
}
.profile-avatar-wrap {
  margin-top: -48px;
}
.profile-card h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.profile-handle-line {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.account-badges {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.account-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 9px;
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}
.account-badge.premium {
  border-color: rgba(122, 69, 0, 0.28);
  background: #fff4c8;
  color: #704500;
}
.account-badge.pro {
  border-color: rgba(25, 70, 118, 0.25);
  background: #dcecff;
  color: #194676;
}
.side-panel > .account-badges {
  margin: 8px 0 2px;
}
.profile-mainline .eyebrow {
  margin-bottom: 6px;
}
.profile-bio {
  max-width: 68ch;
  margin: 10px 0 0;
  color: var(--ink);
  line-height: 1.5;
  white-space: pre-wrap;
}
.profile-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 8px;
  color: var(--ink-2);
  font-size: 13px;
}
.profile-detail-row a {
  color: var(--link);
  font-weight: 750;
}
.profile-right {
  display: grid;
  justify-items: end;
  gap: 12px;
  align-self: center;
}
.profile-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.profile-tabs a {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  border-bottom: 3px solid transparent;
  color: var(--ink-2);
  font-weight: 750;
}
.profile-tabs a.active {
  border-bottom-color: var(--registry);
  color: var(--ink);
}
.profile-tabs a:hover {
  background: var(--paper);
}
.profile-tabs .machine {
  color: var(--ink-2);
  font-size: 12px;
}
.profile-timeline {
  border-radius: var(--r-card);
}
.profile-timeline.yet-table .yet-row:first-child {
  border-top: 0;
}
.profile-aside .profile-side-stats {
  grid-template-columns: 1fr;
  padding: 12px;
}
.profile-aside .profile-stat {
  min-width: 0;
}
.profile-page {
  display: grid;
  gap: 28px;
  padding: 46px 0 72px;
}
.profile-hero {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.profile-avatar {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 4px solid var(--card);
  border-radius: 50%;
  background: var(--card);
  color: var(--registry-ink);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line);
}
.profile-avatar.fallback {
  background: var(--registry-bg);
}
.profile-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.profile-name,
.profile-joined {
  margin: 6px 0 0;
  color: var(--ink-2);
  font-size: 14px;
}
.profile-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.profile-stats.compact {
  align-self: center;
}
.profile-stats.compact .profile-stat {
  min-width: 90px;
  padding: 10px 12px;
}
.profile-stats.compact .profile-stat strong {
  font-size: 17px;
}
.profile-stats.compact .profile-stat span {
  font-size: 11.5px;
}
.profile-stat {
  min-width: 112px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  padding: 12px 14px;
}
.profile-stat strong,
.profile-stat span {
  display: block;
}
.profile-stat strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}
.profile-stat span {
  margin-top: 4px;
  color: var(--ink-2);
  font-size: 12px;
}
.profile-section {
  display: grid;
  gap: 12px;
}
.profile-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.feed-header.compact {
  margin-bottom: 12px;
}
.user-comment-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--card);
}
.user-comment-row {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}
.user-comment-row:last-child {
  border-bottom: 0;
}
.user-comment-row.solution {
  border-left: 3px solid var(--registry);
}
.user-comment-row p {
  margin: 9px 0 0;
  overflow-wrap: anywhere;
}
.comment-target {
  color: var(--ink-2);
  font-size: 13px;
}
.comment-target a {
  color: var(--ink);
  font-weight: 700;
}
.comment-target a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.timeline-page {
  display: grid;
  gap: 24px;
  padding: 46px 0 72px;
}
.timeline-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.timeline-header h1 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1.03;
  letter-spacing: 0;
}
.timeline-header .lede {
  max-width: 620px;
  margin-bottom: 0;
}
.timeline {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--card);
}
.timeline-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}
.timeline-item:last-child {
  border-bottom: 0;
}
.timeline-item.unread {
  background: var(--registry-bg);
}
.timeline-rail {
  display: grid;
  justify-items: center;
  align-content: start;
  padding-top: 9px;
}
.activity-dot {
  width: 13px;
  height: 13px;
  border: 2px solid var(--card);
  border-radius: 999px;
  background: var(--registry);
  box-shadow: 0 0 0 1px var(--registry-line);
}
.activity-me_too_added {
  background: var(--amber);
  box-shadow: 0 0 0 1px rgba(147, 95, 22, 0.35);
}
.activity-comment_created {
  background: var(--slate);
  box-shadow: 0 0 0 1px rgba(103, 113, 122, 0.35);
}
.activity-yet_edited {
  background: var(--violet);
  box-shadow: 0 0 0 1px rgba(109, 72, 215, 0.35);
}
.timeline-copy {
  min-width: 0;
  display: grid;
  gap: 9px;
}
.timeline-kicker {
  margin: 0 0 -2px;
}
.timeline-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid var(--registry-line);
  border-radius: var(--r-chip);
  background: var(--registry-bg);
  padding: 0 9px;
  color: var(--registry-ink);
  font-size: 11.5px;
  font-weight: 850;
  letter-spacing: 0.02em;
}
.timeline-me_too_added .timeline-kicker span {
  border-color: rgba(147, 95, 22, 0.28);
  background: var(--amber-bg);
  color: #704500;
}
.timeline-yet_edited .timeline-kicker span {
  border-color: rgba(109, 72, 215, 0.28);
  background: var(--violet-bg);
  color: var(--violet);
}
.timeline-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.35;
}
.timeline-title {
  color: var(--ink);
  font-weight: 750;
  overflow-wrap: anywhere;
}
.timeline-title:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.timeline-yet-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: linear-gradient(180deg, var(--card), rgba(232, 240, 244, 0.42));
  padding: 13px 14px;
}
.timeline-yet-card:hover {
  border-color: var(--registry-line);
  background: var(--registry-bg);
}
.timeline-yet-card strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.timeline-yet-card div {
  display: grid;
  gap: 5px;
}
.timeline-yet-card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.timeline-yet-card p span {
  display: block;
  margin-bottom: 1px;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.timeline-body {
  margin: 0;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.timeline-body.muted {
  color: var(--ink-2);
  font-size: 14px;
}
.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 12.5px;
}
.unread-pill {
  border: 1px solid var(--amber);
  border-radius: var(--r-chip);
  background: var(--amber-bg);
  padding: 2px 8px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}
.notification-actions {
  margin: 0;
}
.pager {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.list-tools h1 {
  font-size: 30px;
  line-height: 1.15;
}
.list-tools input { max-width: 330px; }
.empty-state {
  padding: 22px;
}
.token-list {
  border-top: 1px solid var(--line);
  padding: 18px 22px 22px;
}
.token-list h2 {
  margin-bottom: 12px;
  font-size: 17px;
}
.profile-edit-form {
  display: grid;
  gap: 12px;
  max-width: 680px;
}
.profile-upload-field {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 16px;
  align-items: center;
}
.profile-upload-field .empty {
  grid-column: 2;
  margin: 0;
}
.profile-upload-preview {
  width: 72px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  object-fit: cover;
}
.profile-upload-preview.fallback {
  display: grid;
  place-items: center;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 24px;
}
.profile-edit-form textarea {
  min-height: 94px;
  resize: vertical;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.token-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.token-row:first-of-type { border-top: 0; }
.token-row p {
  margin: 3px 0 0;
  color: var(--ink-2);
  font-size: 12.5px;
}
.identity-list {
  border-top: 1px solid var(--line);
}
.identity-add {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.identity-add h3 {
  margin: 0;
  font-size: 14px;
}
.identity-add .auth-options {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.token-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: 13px;
}
.error {
  border: 1px solid #F2C6C2;
  border-radius: 8px;
  background: var(--danger-bg);
  padding: 12px 14px;
  color: var(--danger);
}
.token-output {
  display: grid;
  gap: 8px;
}
.yetcard {
  max-width: 760px;
  padding: 30px 34px;
}
.yetcard .head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.yetcard h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}
.yetcard .byline {
  margin: 0 0 24px;
  color: var(--ink-2);
  font-size: 13px;
}
.field { margin-top: 18px; }
.field .k {
  margin-bottom: 6px;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field .v {
  max-width: 62ch;
  font-size: 15px;
}
.field code {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  padding: 2px 6px;
  font-size: 13px;
}
.yetfoot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.duration {
  margin-left: auto;
  color: var(--ink-2);
  font-size: 12.5px;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--ink-2);
  font-size: 13px;
}
.footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.footer-links a {
  color: var(--ink-2);
}
.footer-links a:hover {
  color: var(--registry-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@keyframes ink-sweep {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1); }
}
@media (max-width: 1320px) {
  .tagline { display: none; }
}
@media (max-width: 880px) {
  .shell { width: min(100% - 28px, 1120px); }
  .topbar .shell {
    min-height: 64px;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 10px 0;
  }
  .nav {
    gap: 7px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a,
  .nav button { flex: 0 0 auto; }
  .hero,
  .workspace,
  .about-grid,
  .about-band,
  .social-page,
  .profile-hero,
  .profile-columns,
  .registration-page,
  .connect-page,
  .oauth-consent {
    grid-template-columns: 1fr;
  }
  .about-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-card:last-child { border-bottom: 0; }
  .about-band {
    align-items: stretch;
  }
  .hero {
    gap: 36px;
    padding: 56px 0 48px;
  }
  .hero h1 { font-size: 56px; }
  .ledger-row,
  .yet-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .evidence-detail-card {
    grid-template-columns: 1fr;
  }
  .row-meta { justify-content: flex-start; }
  .yet-head { display: none; }
  .list-tools {
    align-items: stretch;
    flex-direction: column;
  }
  .feed-header {
    align-items: stretch;
    flex-direction: column;
  }
  .timeline-header {
    align-items: stretch;
    flex-direction: column;
  }
  .feed-actions,
  .explore-header {
    align-items: stretch;
    flex-direction: column;
  }
  .publish-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .publish-cta .button {
    width: 100%;
  }
  .feed-tabs {
    width: max-content;
    max-width: 100%;
  }
  .profile-stats {
    justify-content: flex-start;
  }
  .profile-card-body {
    grid-template-columns: 104px minmax(0, 1fr);
  }
  .profile-right {
    grid-column: 1 / -1;
    justify-items: start;
  }
  .profile-stats.compact {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .social-aside {
    position: static;
  }
  .social-header {
    align-items: stretch;
    flex-direction: column;
  }
  .filter-search {
    grid-template-columns: 1fr;
  }
  .list-tools input { max-width: none; }
  .tagline { display: none; }
}
@media (max-width: 620px) {
  .nav {
    flex-wrap: wrap;
    overflow-x: visible;
  }
  .hero h1 { font-size: 42px; }
  .social-header h1 { font-size: 36px; }
  .timeline-header h1 { font-size: 42px; }
  .about-page {
    gap: 28px;
    padding: 44px 0 56px;
  }
  .about-hero h1 {
    max-width: 12ch;
    font-size: 42px;
  }
  .legal-page {
    padding: 44px 0 56px;
  }
  .legal-hero h1 {
    max-width: 12ch;
    font-size: 42px;
  }
  .explore-page {
    padding: 34px 0 56px;
  }
  .profile-page {
    padding: 34px 0 56px;
  }
  .registration-page {
    gap: 28px;
    padding: 44px 0 56px;
  }
  .explore-header h1 {
    max-width: 12ch;
    font-size: 42px;
  }
  .registration-copy h1 {
    max-width: 12ch;
    font-size: 42px;
  }
  .profile-upload-field {
    grid-template-columns: 1fr;
  }
  .profile-upload-field .empty {
    grid-column: auto;
  }
  .profile-hero h1 {
    font-size: 38px;
  }
  .profile-cover {
    height: 108px;
  }
  .profile-card-body {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }
  .profile-avatar-wrap {
    margin-top: -42px;
  }
  .profile-card h1 {
    font-size: 34px;
  }
  .profile-tabs a {
    min-height: 44px;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
  }
  .profile-avatar {
    width: 88px;
    height: 88px;
  }
  .login-hero h1 {
    max-width: 12ch;
    font-size: 40px;
  }
  .hero {
    display: block;
    padding-top: 44px;
  }
  .shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }
  .hero section,
  .panel,
  .capture,
  .ledger,
  .yet-table,
  .user-comment-list,
  .yetcard {
    width: 100%;
    max-width: 100%;
  }
  .capture {
    display: block;
    inline-size: calc(100vw - 56px);
    max-inline-size: calc(100vw - 56px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 36px;
    overflow: hidden;
    padding: 18px 16px;
  }
  .hero .auth-panel {
    width: min(300px, 100%);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 22px 18px;
    overflow: hidden;
  }
  .auth-options .button {
    width: 100%;
    max-width: 100%;
  }
  .capture > * + * {
    margin-top: 12px;
  }
  .capture-row {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    width: 100%;
    min-width: 0;
  }
  .ledger-row,
  .yet-row {
    display: block;
  }
  .social-main .yet-row {
    display: block;
  }
  .social-main .yet-row .row-meta {
    margin-top: 10px;
  }
  .evidence-grid {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .evidence-body {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ledger-row > * + *,
  .yet-row > * + * {
    margin-top: 10px;
  }
  .shell.hero {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }
  .bubble,
  .bubble.user,
  .toolcall,
  .saved {
    align-self: stretch;
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .capture-row.align-end .bubble {
    justify-self: stretch;
  }
  .capture-row .bubble,
  .capture-row .toolcall,
  .capture-row .saved {
    inline-size: 100%;
    max-inline-size: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .struck-update,
  .struck-person {
    display: inline-block;
    max-width: 100%;
  }
  .lede,
  .section .sub,
  .bubble,
  .toolcall,
  .saved,
  .row-title,
  .yet-row h2,
  .field .v {
    white-space: normal;
    word-break: break-word;
  }
  .lede,
  .section .sub {
    max-width: 31ch;
  }
  .bubble,
  .toolcall,
  .saved,
  .row-title {
    max-width: min(28ch, 100%);
  }
  .capture-row .bubble,
  .capture-row .toolcall,
  .capture-row .saved {
    max-width: min(24ch, 100%);
  }
  .product {
    margin: 6px 0 0;
  }
  .hero-foot code { margin: 8px 0 0; }
  .panel-header,
  .form,
  .connect,
  .token-list,
  .user-comment-row,
  .yetcard {
    padding-left: 16px;
    padding-right: 16px;
  }
  .profile-stat {
    flex: 1 1 100px;
  }
  .code-row,
  .chat-copy,
  .inline-token-form,
  .token-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .token-actions { justify-content: space-between; }
  .yetfoot {
    align-items: stretch;
    flex-direction: column;
  }
  .duration { margin-left: 0; }
  .footer .shell { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero .yet::after,
  .toolcall .dot { animation: none; }
}
