:root {
  --bg: #f7f5f0;
  --surface: rgba(255, 253, 249, .9);
  --surface-strong: #fffdf9;
  --ink: #252a28;
  --muted: #69716d;
  --line: #e7e0d6;
  --primary: #214b43;
  --primary-soft: #e0ebe6;
  --accent: #c87950;
  --success: #2d7158;
  --danger: #ac4e42;
  --danger-soft: #f9e8e4;
  --shadow: 0 18px 48px rgba(38, 41, 37, .065);
  --radius: 22px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, #ecdfd1 0, transparent 28%),
    radial-gradient(circle at 86% 4%, #dfebe5 0, transparent 30%),
    var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p { margin: 0; }

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: 1.08;
}

h2 {
  font-size: 1.22rem;
  font-weight: 620;
  letter-spacing: -.035em;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .69rem;
  font-weight: 650;
  letter-spacing: .17em;
}

.mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  border-radius: 18px;
  color: #fffdf8;
  background: var(--primary);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-style: italic;
}

.mark.small {
  width: 39px;
  height: 39px;
  margin: 0;
  border-radius: 13px;
  font-size: 1.45rem;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(360px, 470px);
  min-height: 100vh;
  padding: 34px;
  gap: 28px;
}

.brand-panel, .form-panel {
  border: 1px solid rgba(231, 224, 214, .85);
  border-radius: 30px;
  animation: arrive .65s var(--ease) both;
}

.brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 8vw, 92px);
  background: linear-gradient(145deg, rgba(255,253,249,.64), rgba(237,231,221,.46));
}

.brand-panel .lead {
  max-width: 490px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.agent-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 46px;
}

.agent-pills span {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,249,.8);
  color: var(--muted);
  font-size: .85rem;
}

.form-panel {
  align-self: center;
  padding: clamp(34px, 6vw, 52px);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  animation-delay: .08s;
}

.form-panel h2 {
  margin-bottom: 30px;
  font-size: 1.82rem;
}

.email-panel h2 { margin-bottom: 18px; }

.email-steps {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.email-steps span {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 10px 12px;
  color: var(--muted);
  background: #faf7f1;
  font-size: .82rem;
}

.email-card {
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}

.email-card + .email-card { margin-top: 18px; }

.stack, .task-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #505854;
  font-size: .84rem;
  font-weight: 540;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdfa;
  font: inherit;
  font-weight: 450;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #84a49a;
  background: white;
  box-shadow: 0 0 0 4px rgba(33, 75, 67, .08);
}

textarea {
  min-height: 86px;
  resize: vertical;
}

.button {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px 18px;
  color: var(--ink);
  background: #fffdf9;
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-1px); box-shadow: 0 7px 22px rgba(36,45,41,.08); }
.button:active { transform: translateY(0); }
.button.primary { border-color: var(--primary); color: white; background: var(--primary); }
.button.compact { padding: 10px 13px; background: var(--primary-soft); border-color: transparent; color: var(--primary); }
.button.danger { color: var(--danger); background: var(--danger-soft); border-color: transparent; }
.button:disabled { cursor: wait; opacity: .72; transform: none; }

.button-spinner, .loader-dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  animation: spin .72s linear infinite;
}

.page-loader {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(33,75,67,.13);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--primary);
  background: rgba(255,253,249,.95);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.page-loader.is-visible {
  opacity: 1;
  transform: none;
}

.page-loader .loader-dot {
  margin-right: 0;
}

.live-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 31;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  color: var(--success);
  background: rgba(255,253,249,.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease;
  font-size: .85rem;
  font-weight: 620;
}

.live-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.stack .button { margin-top: 10px; }

.alert {
  margin: 0 0 20px;
  padding: 13px 15px;
  border-radius: 13px;
  font-size: .88rem;
  line-height: 1.45;
}

.alert.error { color: var(--danger); background: var(--danger-soft); }
.alert.success { color: var(--success); background: #e2efe8; }

.app-shell {
  display: grid;
  grid-template-columns: 254px 1fr;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 26px 20px 20px;
  border-right: 1px solid var(--line);
  background: rgba(250, 247, 241, .67);
  backdrop-filter: blur(10px);
}

.identity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 49px;
}

.identity strong {
  display: block;
  letter-spacing: -.035em;
  font-size: 1.1rem;
}

.identity small {
  color: var(--muted);
  font-size: .75rem;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  transition: color .18s ease, background .18s ease;
}

nav a:hover, nav a.active {
  color: var(--primary);
  background: var(--primary-soft);
}

.user-chip {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  margin-bottom: 15px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}

.user-chip strong { font-size: .91rem; }
.user-chip span { color: var(--muted); font-size: .75rem; line-height: 1.45; }

.quiet {
  width: 100%;
  border: 0;
  padding: 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.workspace {
  width: min(1240px, calc(100% - 68px));
  margin: 0 auto;
  padding: 42px 0 48px;
}

.page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 32px;
  animation: lift .52s var(--ease) both;
}

.subtitle {
  max-width: 610px;
  margin-top: 12px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.58;
}

.agents {
  display: flex;
  gap: 9px;
}

.agents span {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  background: var(--surface);
  font-size: .8rem;
}

.agents b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bbb4aa;
}

.agents .online b {
  background: #51a474;
  box-shadow: 0 0 0 5px rgba(81, 164, 116, .12);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.workspace-tabs {
  display: inline-flex;
  gap: 8px;
  margin: -8px 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255,253,249,.7);
}

.tab-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: .86rem;
  font-weight: 650;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.tab-button span {
  margin-left: 6px;
  color: inherit;
  opacity: .72;
}

.tab-button.is-active {
  color: var(--primary);
  background: var(--primary-soft);
  box-shadow: 0 6px 16px rgba(33,75,67,.07);
}

.tab-panel[hidden] {
  display: none !important;
}

.stats article, .panel {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stats article {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 18px;
  padding: 18px 20px;
  animation: lift .55s var(--ease) both;
}

.stats article:nth-child(2) { animation-delay: .04s; }
.stats article:nth-child(3) { animation-delay: .08s; }
.stats article:nth-child(4) { animation-delay: .12s; }
.stats small { color: var(--muted); font-size: .78rem; }
.stats strong { font-size: 2rem; font-weight: 620; letter-spacing: -.05em; }
.stats span { color: var(--muted); font-size: .8rem; }
.stats .danger strong { color: var(--danger); }
.stats .calm strong { color: var(--success); }

.grid {
  display: grid;
  grid-template-columns: minmax(430px, 1.45fr) minmax(295px, .82fr);
  gap: 18px;
  align-items: start;
}

.panel {
  border-radius: var(--radius);
  padding: 22px;
  animation: lift .6s var(--ease) both;
}

.side .panel { position: sticky; top: 26px; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-head .eyebrow { margin-bottom: 7px; }

.count {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: #f0ede7;
  font-size: .82rem;
}

.section-copy {
  margin: -8px 0 18px;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.55;
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.task {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 16px;
  align-items: center;
  border: 1px solid #eee8de;
  border-left: 3px solid #a9aca7;
  border-radius: 15px;
  padding: 15px 14px 15px 17px;
  background: #fffdf9;
  transition: transform .2s ease, border-color .2s ease;
}

.task:hover { transform: translateY(-1px); border-color: #dcd2c5; }
.task.urgent { border-left-color: var(--danger); }
.task.high { border-left-color: var(--accent); }
.task.medium { border-left-color: #c8b780; }
.task.low { border-left-color: #8ea59c; }
.task.lead-task {
  grid-template-columns: 1fr 150px;
  align-items: start;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.badge, .tag {
  border-radius: 999px;
  padding: 4px 8px;
  background: #f1ede7;
  color: var(--muted);
  font-size: .69rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.badge.completed { color: var(--success); background: #e5f1eb; }
.badge.blocked { color: var(--danger); background: var(--danger-soft); }
.task h3 {
  margin-bottom: 6px;
  font-size: .98rem;
  font-weight: 610;
}

.task p {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}

.task-owner {
  margin: 0 0 7px;
  color: #59625d;
  font-size: .78rem;
}

.task-owner strong {
  color: var(--primary);
  font-weight: 620;
}

.revision-note {
  margin-top: 10px;
  border: 1px solid #ead6c9;
  border-radius: 13px;
  padding: 11px 12px;
  background: #fff5ee;
}

.revision-note strong {
  display: block;
  margin-bottom: 5px;
  color: #9a5838;
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.revision-note p {
  color: #5f4b42;
}

.task footer {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  color: #7b817c;
  font-size: .74rem;
}

.status-form select {
  padding: 10px;
  background: #f8f5ef;
  font-size: .8rem;
}

.status-readonly {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  background: #f8f5ef;
}

.status-readonly small {
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.35;
}

.status-readonly strong {
  color: var(--primary);
  font-size: .82rem;
  font-weight: 580;
  text-transform: capitalize;
}

.planning-details, .review-details {
  grid-column: 1 / -1;
  margin-top: 5px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

.planning-details summary, .review-details summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--primary);
  background: var(--primary-soft);
  cursor: pointer;
  font-size: .8rem;
  font-weight: 650;
  list-style: none;
  transition: transform .16s ease, box-shadow .2s ease;
}

.planning-details summary::-webkit-details-marker,
.review-details summary::-webkit-details-marker { display: none; }
.planning-details summary:hover,
.review-details summary:hover { transform: translateY(-1px); box-shadow: 0 7px 18px rgba(33,75,67,.08); }
.planning-details summary small,
.review-details summary small {
  color: #5f756f;
  font-size: .72rem;
  font-weight: 520;
}

.planning-form {
  margin-top: 14px;
}

.planning-title {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 620;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.planning-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 9px;
  margin-bottom: 9px;
}

.planning-main label { font-size: .74rem; }
.planning-main input,
.planning-main textarea {
  padding: 9px 10px;
  font-size: .78rem;
}

.planning-main textarea {
  min-height: 42px;
  resize: vertical;
}

.planning-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr .9fr .9fr;
  gap: 9px;
  margin-bottom: 11px;
}

.planning-grid label { font-size: .74rem; }
.planning-grid input, .planning-grid select { padding: 9px 10px; font-size: .78rem; }

.planning-closed {
  grid-column: 1 / -1;
  margin-top: 6px;
  border-top: 1px dashed var(--line);
  padding-top: 13px;
  color: var(--muted);
  font-size: .78rem;
}

.review-actions {
  display: grid;
  grid-template-columns: .75fr 1.5fr;
  gap: 12px;
  margin-top: 14px;
  align-items: start;
}

.inline-action {
  display: flex;
}

.revision-form {
  display: grid;
  gap: 10px;
}

.revision-form textarea {
  min-height: 64px;
  font-size: .82rem;
}

.archive-panel {
  margin-top: 18px;
}

.archive-list {
  display: grid;
  gap: 10px;
}

.archive-card {
  border: 1px solid #eee8de;
  border-radius: 15px;
  background: #fffdf9;
}

.archive-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 15px;
  cursor: pointer;
  list-style: none;
}

.archive-card summary::-webkit-details-marker { display: none; }
.archive-card summary strong {
  display: block;
  margin-bottom: 4px;
  font-size: .92rem;
}

.archive-card summary small,
.archive-card summary em {
  color: var(--muted);
  font-size: .76rem;
  font-style: normal;
}

.archive-body {
  border-top: 1px dashed var(--line);
  padding: 14px 15px 16px;
}

.archive-body > p {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
  color: #7b817c;
  font-size: .74rem;
}

.timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  border-left: 2px solid var(--primary-soft);
  padding-left: 12px;
}

.timeline strong {
  display: block;
  color: var(--primary);
  font-size: .82rem;
}

.timeline span {
  display: block;
  margin: 3px 0 4px;
  color: var(--muted);
  font-size: .72rem;
}

.timeline p {
  color: var(--ink);
  font-size: .8rem;
  line-height: 1.45;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(45, 113, 88, .25);
  animation: pulse 2.3s infinite;
}

.assistant-empty, .advice {
  min-height: 104px;
  margin-bottom: 18px;
  border-radius: 14px;
  padding: 16px;
  color: var(--muted);
  background: #f5f1e9;
  font-size: .88rem;
  line-height: 1.6;
}

.advice {
  color: var(--ink);
  background: var(--primary-soft);
}

.flow-thread {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: 445px;
  margin-bottom: 18px;
  overflow-y: auto;
}

.flow-bubble {
  border-radius: 14px;
  padding: 12px 13px;
  font-size: .84rem;
  line-height: 1.55;
}

.flow-bubble small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.flow-bubble p { color: var(--ink); }
.flow-bubble.from-flow { background: var(--primary-soft); }
.flow-bubble.from-user {
  margin-left: 24px;
  border: 1px solid var(--line);
  background: #fffdf9;
}

.flow-bubble p {
  white-space: pre-wrap;
}

.flow-bubble.is-thinking {
  color: var(--muted);
  background: #f0ede7;
}

.thinking-dots {
  display: inline-flex;
  gap: 4px;
  margin-left: 5px;
  vertical-align: middle;
}

.thinking-dots i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #80928c;
  animation: thinking 1s ease-in-out infinite;
}

.thinking-dots i:nth-child(2) { animation-delay: .14s; }
.thinking-dots i:nth-child(3) { animation-delay: .28s; }

.assistant-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assistant-form textarea { min-height: 75px; }
.assistant-form button:disabled,
.assistant-form textarea:disabled {
  cursor: wait;
  opacity: .7;
}

.management {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, .78fr);
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}

.management.has-access {
  grid-template-columns: 1.1fr 1fr .86fr;
}

.management.single-panel {
  grid-template-columns: minmax(360px, 1fr);
}

.lead-tools {
  display: grid;
  gap: 18px;
}

.form-hint {
  margin: -5px 0 17px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}

.candidate-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.candidate {
  border-radius: 14px;
  padding: 14px;
  background: #fffdf9;
  border: 1px solid #eee8de;
}

.candidate strong {
  display: block;
  margin-bottom: 5px;
  font-size: .91rem;
}

.candidate span {
  display: block;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: .77rem;
}

.candidate form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.candidate input, .candidate select { padding: 10px; font-size: .78rem; }
.candidate form .button { grid-column: 1 / -1; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.empty {
  display: grid;
  place-items: center;
  min-height: 170px;
  border: 1px dashed #dbd2c7;
  border-radius: 15px;
  color: var(--muted);
  font-size: .9rem;
}

.empty.small { min-height: 92px; }

@keyframes arrive {
  from { opacity: 0; transform: translateY(12px) scale(.99); }
  to { opacity: 1; transform: none; }
}

@keyframes lift {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45, 113, 88, .24); }
  65%, 100% { box-shadow: 0 0 0 12px rgba(45, 113, 88, 0); }
}

@keyframes thinking {
  0%, 80%, 100% { opacity: .38; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1120px) {
  .management { grid-template-columns: 1fr 1fr; }
  .management.has-access .panel:first-child { grid-column: span 2; }
  .planning-grid, .planning-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .auth-shell { grid-template-columns: 1fr; padding: 18px; }
  .brand-panel { min-height: 360px; padding: 42px; }
  .app-shell { display: block; }
  .sidebar { position: static; height: auto; flex-direction: row; align-items: center; gap: 20px; padding: 16px; }
  .identity { margin: 0 auto 0 0; }
  .sidebar nav { display: none; }
  .user-chip { margin: 0; }
  .quiet { width: auto; }
  .workspace { width: min(100% - 32px, 680px); padding-top: 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid, .management { grid-template-columns: 1fr; }
  .management.has-access .panel:first-child { grid-column: auto; }
  .side .panel { position: static; }
}

@media (max-width: 590px) {
  .page-head { display: block; }
  .agents { margin-top: 24px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .task { grid-template-columns: 1fr; }
  .task.lead-task, .planning-grid, .planning-main { grid-template-columns: 1fr; }
  .review-actions { grid-template-columns: 1fr; }
  .candidate form, .form-row { grid-template-columns: 1fr; }
  .user-chip { display: none; }
}

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