:root {
  --ink: #14212b;
  --ink-soft: #435460;
  --paper: #edf2f3;
  --paper-high: #f8faf9;
  --mineral: #d7e0e1;
  --blue: #2c6eaa;
  --blue-deep: #1f4f7a;
  --brass: #a47b52;
  --clay: #b6533e;
  --line: rgba(20, 33, 43, 0.16);
  --shadow: 0 22px 70px rgba(20, 33, 43, 0.12);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --utility: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(115deg, rgba(44, 110, 170, 0.06), transparent 42%),
    var(--paper);
}

a,
button,
input {
  font: inherit;
}

a {
  color: inherit;
}

button,
.primary-link {
  min-height: 44px;
}

:focus-visible {
  outline: 3px solid rgba(44, 110, 170, 0.45);
  outline-offset: 4px;
}

.landing-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(220px, 0.65fr) minmax(360px, 1.35fr) minmax(230px, 0.6fr);
  padding: clamp(28px, 5vw, 76px);
  gap: clamp(36px, 7vw, 112px);
  align-items: center;
}

.landing-mark {
  align-self: start;
  display: grid;
  width: min-content;
  gap: 10px;
}

.wordmark {
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.7rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.065em;
}

.wordmark-small {
  font-size: 2.6rem;
}

.wordmark-rule {
  width: 46px;
  height: 3px;
  background: var(--brass);
}

.wordmark-sub,
.tenant-label,
.eyebrow,
.count-badge,
.object-card-header span,
.object-identity {
  font-family: var(--utility);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordmark-sub {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.landing-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

.landing-copy h1,
.auth-card h1,
.workspace-intro h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.landing-copy h1 {
  max-width: 800px;
  font-size: clamp(4rem, 9vw, 9rem);
}

.lede {
  max-width: 560px;
  margin: 38px 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 14px 18px;
  border-bottom: 2px solid var(--blue);
  color: var(--blue-deep);
  font-weight: 700;
  text-decoration: none;
}

.primary-link span {
  transition: transform 180ms ease;
}

.primary-link:hover span {
  transform: translateX(5px);
}

.landing-spine {
  position: relative;
  display: grid;
  gap: 46px;
  padding-left: 34px;
}

.landing-spine::before,
.causal-spine::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 6px;
  width: 2px;
  content: "";
  background: linear-gradient(var(--blue), var(--brass));
}

.landing-spine div {
  position: relative;
  display: grid;
  gap: 5px;
}

.landing-spine div::before,
.causal-spine li::before {
  position: absolute;
  top: 5px;
  left: -34px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
  content: "";
}

.landing-spine strong {
  font-family: var(--display);
  font-size: 1.35rem;
}

.landing-spine span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.auth-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(24px, 5vw, 70px);
  place-items: center;
}

.quiet-link {
  position: absolute;
  top: 30px;
  left: 32px;
  color: var(--ink-soft);
  text-decoration: none;
}

.auth-card {
  width: min(100%, 520px);
  padding: clamp(34px, 6vw, 72px);
  border-top: 5px solid var(--brass);
  background: var(--paper-high);
  box-shadow: var(--shadow);
}

.auth-card h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.auth-copy {
  margin: 24px 0 36px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.auth-card form {
  display: grid;
  gap: 12px;
}

.auth-card label {
  font-size: 0.85rem;
  font-weight: 700;
}

.auth-card input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: white;
  color: var(--ink);
}

.auth-card button {
  margin-top: 8px;
  padding: 13px 18px;
  border: 0;
  border-radius: 2px;
  background: var(--blue-deep);
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.form-error {
  padding: 12px 14px;
  border-left: 4px solid var(--clay);
  background: rgba(182, 83, 62, 0.08);
  color: #783527;
}

.workspace-shell {
  min-height: 100vh;
}

.workspace-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 249, 0.82);
  backdrop-filter: blur(14px);
}

.tenant-label {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.text-button {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}

.workspace-main {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 96px) clamp(24px, 5vw, 76px);
}

.workspace-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}

.workspace-intro h1 {
  font-size: clamp(3.7rem, 8vw, 8.4rem);
}

.coverage-dial {
  display: grid;
  min-width: 180px;
  padding: 20px 0 8px;
  border-top: 4px solid var(--blue);
  text-align: right;
}

.coverage-dial span {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
}

.coverage-dial small {
  margin-top: 6px;
  color: var(--ink-soft);
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.55fr);
  gap: clamp(28px, 5vw, 80px);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  margin: 0;
  font-size: 1rem;
}

.count-badge {
  color: var(--blue-deep);
  font-size: 0.72rem;
}

.objects-list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.object-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brass);
  background: var(--paper-high);
  box-shadow: 0 8px 26px rgba(20, 33, 43, 0.05);
}

.object-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.object-card-header h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 500;
}

.object-card-header span,
.object-identity {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.object-identity {
  overflow-wrap: anywhere;
}

.object-state {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) 1fr;
  gap: 10px 28px;
  margin: 28px 0 0;
}

.object-state dt {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.object-state dd {
  margin: 0;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.causal-panel {
  min-width: 0;
}

.causal-spine {
  position: relative;
  display: grid;
  gap: 38px;
  margin: 28px 0 0;
  padding: 0 0 0 40px;
  list-style: none;
}

.causal-spine::before {
  left: 8px;
}

.causal-spine li {
  position: relative;
  display: grid;
  gap: 3px;
}

.causal-spine li::before {
  left: -39px;
}

.causal-spine span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.causal-spine strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
}

.causal-spine small {
  color: var(--ink-soft);
}

.loading-state,
.empty-state {
  padding: 48px 20px;
  border: 1px dashed var(--line);
  color: var(--ink-soft);
  text-align: center;
}

.workspace-error {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 4px solid var(--clay);
  background: rgba(182, 83, 62, 0.08);
}

.workspace-error[hidden] {
  display: none;
}

.member-shell {
  min-height: 100vh;
}

.member-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(22px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 249, 0.92);
  backdrop-filter: blur(16px);
}

.member-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.member-brand .tenant-label {
  margin: 0 0 5px;
}

.member-connection {
  color: var(--brass);
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-connection.connected {
  color: var(--blue-deep);
}

.member-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quiet-action,
.primary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  text-decoration: none;
}

.quiet-action {
  background: transparent;
  color: var(--ink-soft);
}

.primary-action {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  color: white;
  font-weight: 700;
}

.member-main {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 104px) clamp(22px, 5vw, 76px);
}

.member-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(38px, 6vw, 76px);
}

.member-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 8vw, 8.3rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.member-hero .lede {
  margin-bottom: 0;
}

.member-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.member-metrics article {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 249, 0.78);
}

.member-metrics small,
.proof-grid small {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-metrics strong {
  display: block;
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 500;
  text-overflow: ellipsis;
}

.member-error {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--clay);
  background: rgba(182, 83, 62, 0.08);
}

.member-error[hidden] {
  display: none;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 48px);
  margin-top: clamp(22px, 4vw, 48px);
}

.member-card {
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
  border-top: 4px solid var(--brass);
  background: var(--paper-high);
  box-shadow: 0 12px 42px rgba(20, 33, 43, 0.07);
}

.member-card:nth-child(even) {
  border-top-color: var(--blue);
}

.member-register {
  border-top-color: var(--blue);
}

.member-register-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.member-register-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.member-register-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.55fr);
  gap: clamp(28px, 5vw, 80px);
}

.member-register .section-heading h3 {
  margin: 0;
  font-size: 1rem;
}

.member-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.step-number {
  margin: 0 0 10px;
  color: var(--brass);
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.card-copy {
  margin: 16px 0 28px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.member-card form {
  display: grid;
  gap: 16px;
}

.member-card label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.member-card input,
.member-card textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.member-card textarea {
  min-height: 112px;
  resize: vertical;
}

.form-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-action-row button {
  padding: 12px 17px;
  border: 0;
  background: var(--blue-deep);
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.form-action-row span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.member-steps {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.member-steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.member-steps li > span {
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-steps .step-complete > span {
  color: var(--blue-deep);
}

.member-steps .step-next > span {
  color: var(--clay);
}

.member-steps li div {
  display: grid;
  gap: 5px;
}

.member-steps small {
  color: var(--ink-soft);
  line-height: 1.45;
}

.member-output {
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--blue);
  background: rgba(44, 110, 170, 0.06);
}

.member-output[hidden] {
  display: none;
}

.member-output p:last-child {
  margin-bottom: 0;
  line-height: 1.6;
  white-space: pre-wrap;
}

.member-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.member-list-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.member-list-row:last-child {
  border-bottom: 0;
}

.member-list-row strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
}

.member-list-row p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
  white-space: pre-wrap;
}

.member-proof {
  margin-top: clamp(28px, 5vw, 64px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(248, 250, 249, 0.72);
}

.member-proof summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.proof-grid div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
}

.proof-grid strong {
  display: block;
  overflow-wrap: anywhere;
}

.member-proof > p {
  max-width: 780px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .landing-shell {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .landing-mark {
    align-self: auto;
  }

  .landing-spine {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
  }

  .landing-spine::before,
  .landing-spine div::before {
    display: none;
  }

  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .causal-panel {
    margin-top: 20px;
  }

  .member-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .member-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .member-hero,
  .member-grid,
  .member-register-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .landing-shell {
    padding: 28px 22px 44px;
  }

  .landing-copy h1 {
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }

  .landing-spine {
    grid-template-columns: 1fr;
  }

  .workspace-intro {
    align-items: start;
    flex-direction: column;
  }

  .coverage-dial {
    width: 100%;
    text-align: left;
  }

  .object-state {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .object-state dd {
    margin-bottom: 14px;
  }

  .workspace-error {
    flex-direction: column;
  }

  .member-actions a {
    flex: 1 1 100%;
  }

  .member-main {
    padding-top: 38px;
  }

  .member-hero h1 {
    font-size: clamp(3.35rem, 17vw, 5.2rem);
  }

  .member-metrics,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .member-error {
    grid-template-columns: 1fr;
  }

  .member-register-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .member-card {
    padding: 24px 20px;
  }
}

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

/* ---- 2026-08-25: chat-first member workspace layout ---- */
.member-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 860px) {
  .member-layout { grid-template-columns: 1fr; }
  .member-record { order: 2; }
  .member-chat-pane { order: 1; }
}
.member-chat-pane {
  background: var(--card, #12161c);
  border: 1px solid var(--line, #28313b);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 12rem);
  overflow: hidden;
}
.chat-pane-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid var(--line, #28313b);
  flex-wrap: wrap;
}
.chat-pane-head h1 { margin: 0 0 0.25rem; font-size: 1.35rem; }
.chat-pane-head .lede { margin: 0; font-size: 0.9rem; }
.chat-metrics { display: flex; gap: 0.6rem; align-self: center; }
.chat-metrics article {
  border: 1px solid var(--line, #28313b);
  border-radius: 12px;
  padding: 0.5rem 0.9rem;
  min-width: 5.5rem;
}
.chat-metrics small { display: block; color: var(--muted, #96a3b3); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; }
.chat-metrics strong { font-size: 1.05rem; }
.member-thread {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-height: calc(100vh - 22rem);
  min-height: 16rem;
}
.chat-bubble {
  max-width: 82%;
  border: 1px solid var(--line, #28313b);
  border-radius: 14px;
  padding: 0.7rem 0.95rem;
  background: var(--card, #12161c);
}
.chat-user { align-self: flex-end; border-color: var(--accent, #6ee7b7); }
.chat-meta { display: flex; gap: 0.6rem; align-items: baseline; margin-bottom: 0.3rem; }
.chat-meta strong { font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted, #96a3b3); }
.chat-user .chat-meta strong { color: var(--accent, #6ee7b7); }
.chat-meta time { font-size: 0.72rem; color: var(--muted, #96a3b3); }
.chat-body p { margin: 0; line-height: 1.5; white-space: pre-wrap; }
.chat-actions { margin-top: 0.55rem; }
.save-reply { font-size: 0.78rem; padding: 0.25rem 0.6rem; }
.member-composer {
  border-top: 1px solid var(--line, #28313b);
  padding: 0.9rem 1.5rem 1.1rem;
  background: var(--bg, #0b0d10);
}
.member-composer textarea {
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 2.6rem;
  background: var(--card, #12161c);
  border: 1px solid var(--line, #28313b);
  border-radius: 12px;
  color: inherit;
  font: inherit;
  padding: 0.7rem 0.9rem;
}
.member-composer textarea:focus { outline: none; border-color: var(--accent, #6ee7b7); }
.composer-row { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; margin-top: 0.55rem; }
.composer-status { font-size: 0.82rem; color: var(--muted, #96a3b3); }
.composer-row button[type="submit"]:disabled { opacity: 0.55; cursor: not-allowed; }
.member-record { display: flex; flex-direction: column; gap: 1rem; }
.record-grid { margin: 0; display: grid; gap: 0.55rem; }
.record-grid div { display: flex; justify-content: space-between; gap: 0.75rem; }
.record-grid dt { color: var(--muted, #96a3b3); font-size: 0.82rem; }
.record-grid dd { margin: 0; font-weight: 700; font-size: 0.9rem; text-align: right; }
.done-marker {
  color: #00130c;
  background: var(--accent, #6ee7b7);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.member-intake-card.is-done form { opacity: 0.55; pointer-events: none; }
.material-row { border-top: 1px solid var(--line, #28313b); padding: 0.65rem 0; }
.material-row:first-child { border-top: 0; }
.material-row strong { display: block; font-size: 0.85rem; margin-bottom: 0.2rem; }
.material-row p { margin: 0; font-size: 0.8rem; color: var(--muted, #96a3b3); }
.proof-note { margin-top: 1rem; font-size: 0.75rem; color: var(--muted, #96a3b3); line-height: 1.5; }
.empty-state { color: var(--muted, #96a3b3); font-size: 0.85rem; line-height: 1.5; margin: 0.4rem 0; }
