:root {
  --bg: #f4f2f8;
  --panel: #ffffff;
  --side: #f7f6fb;
  --ink: #141418;
  --muted: #8b8a96;
  --line: #eceaf3;
  --lavender: #a78bfa;
  --lavender-2: #c4b5fd;
  --lavender-soft: #efe9ff;
  --black: #111113;
  --danger: #dc4b4b;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(40, 30, 70, 0.08);
}
* { box-sizing: border-box; }
html, body, #app { height: 100%; margin: 0; }
body {
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(167, 139, 250, 0.28), transparent 55%),
    radial-gradient(700px 380px at 0% 110%, rgba(196, 181, 253, 0.22), transparent 50%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
}
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3 { margin: 0; letter-spacing: -0.03em; }

.splash {
  min-height: 100%;
  display: grid;
  place-items: center;
  place-content: center;
  gap: 1rem;
  background: #ecdecb;
  position: relative;
  overflow: hidden;
}
.splash img {
  width: 132px;
  height: 132px;
  border-radius: 30px;
  box-shadow: 0 16px 40px rgba(58, 36, 20, .22);
  animation: splash-pop .9s cubic-bezier(.2, 1.2, .3, 1) both;
  position: relative;
  z-index: 1;
}
.splash strong {
  font-size: 1.7rem;
  letter-spacing: -.03em;
  color: #3a2414;
  animation: splash-name .7s .25s ease both;
  position: relative;
  z-index: 1;
}
.splash-ring {
  position: absolute;
  width: 168px; height: 168px;
  border: 1.2px solid rgba(58, 36, 20, .12);
  border-radius: 50%;
  animation: splash-ring 1.7s ease-out infinite;
}
.splash-ring.delay { animation-delay: .28s; width: 224px; height: 224px; }
.splash-ring.delay2 { animation-delay: .56s; width: 280px; height: 280px; }
@keyframes splash-pop {
  from { transform: scale(.68) rotate(-14deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes splash-name {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
@keyframes splash-ring {
  from { transform: scale(.78); opacity: .55; }
  to { transform: scale(1.18); opacity: 0; }
}
.login { min-height: 100%; display: grid; place-items: center; padding: 2rem; }
.login-card {
  width: min(420px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow);
}
.brand-mark { width: 40px; height: 40px; border-radius: 12px; object-fit: cover; }
.login h1 { margin: 1rem 0 .35rem; font-size: 1.8rem; }
.login p { color: var(--muted); margin: 0 0 1.3rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field span { font-size: .75rem; color: var(--muted); font-weight: 600; }
.field input, .field textarea, .field select {
  background: var(--side);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .75rem .9rem;
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--lavender); background: #fff; }
.btn {
  border: 0;
  border-radius: 14px;
  padding: .75rem 1.1rem;
  background: var(--black);
  color: #fff;
  font-weight: 600;
}
.btn:disabled { opacity: .45; cursor: wait; }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-lavender { background: var(--lavender-soft); color: #5b3fd6; }
.err { color: var(--danger); font-size: .9rem; }
.muted { color: var(--muted); }

.app-frame {
  height: 100%;
  padding: 14px;
}
.shell {
  height: 100%;
  display: grid;
  grid-template-columns: 268px 1fr;
  background: var(--panel);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.7);
}
.side {
  background: var(--side);
  padding: 1.1rem .9rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  border-right: 1px solid var(--line);
}
.side-brand { display: flex; align-items: center; gap: .65rem; padding: .15rem .25rem; }
.side-brand strong { font-size: 1.15rem; }
.btn-new {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
}
.search {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .55rem .7rem;
  color: var(--muted);
}
.search input { border: 0; outline: 0; background: transparent; width: 100%; }
.search kbd {
  font-size: .68rem;
  background: var(--side);
  border-radius: 6px;
  padding: .1rem .35rem;
}
.nav { display: flex; flex-direction: column; gap: .15rem; }
.nav button {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 12px;
  padding: .55rem .65rem;
  color: #5c5b66;
}
.nav button.active, .nav button:hover { background: #fff; color: var(--ink); }
.nav svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.nav-badge {
  margin-left: auto;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 .35rem;
  border-radius: 999px;
  background: var(--lavender);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.hist { flex: 1; min-height: 0; overflow: auto; }
.hist-label {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 600;
  padding: .55rem .4rem .25rem;
}
.hist button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: #5c5b66;
  padding: .4rem .5rem;
  border-radius: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .86rem;
}
.hist button:hover, .hist button.active { background: #fff; color: var(--ink); }
.user-card {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .55rem .6rem;
}
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #c4b5fd, #8b5cf6);
}
.user-card small { display: block; color: var(--muted); font-size: .72rem; }
.user-card-id {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  min-width: 0;
  flex: 1;
}
.user-card-id strong { display: block; }
.user-card .out { margin-left: auto; border: 0; background: transparent; color: var(--muted); padding: .3rem; }

.main { display: flex; flex-direction: column; min-width: 0; min-height: 0; overflow: hidden; background: #fff; }
.top {
  display: flex; justify-content: space-between; align-items: center;
  padding: .95rem 1.3rem;
}
.brand-mini { display: flex; align-items: center; gap: .5rem; font-weight: 700; }
.brand-mini img { width: 22px; height: 22px; border-radius: 6px; object-fit: cover; }
.top-actions { display: flex; align-items: center; gap: .5rem; }
.chip {
  font-size: .78rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: .4rem .7rem;
  border-radius: 999px;
  background: #fff;
}

.chat { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem 1.4rem;
  text-align: center;
}
.hello { color: var(--lavender); font-weight: 600; margin-bottom: .25rem; }
.hello em { font-style: normal; background: linear-gradient(90deg, #8b5cf6, #c4b5fd); -webkit-background-clip: text; color: transparent; }
.hero h1 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.today {
  width: min(720px, 100%);
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: .95rem 1.05rem;
  margin-bottom: .85rem;
}
.today-head { display: flex; flex-wrap: wrap; gap: .35rem 1rem; align-items: baseline; margin-bottom: .55rem; }
.today-head strong { font-size: 1.05rem; }
.today-head span { color: var(--muted); font-size: .88rem; }
.today-hint { color: var(--lavender); font-weight: 600; font-size: .88rem; margin: 0 0 .5rem; }
.today ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.today li { display: flex; gap: .55rem; align-items: flex-start; }
.today li button {
  border: 0; background: transparent; padding: 0; color: var(--lavender); font-size: 1.05rem; line-height: 1.2;
}
.today li small { color: var(--muted); }
.today-brief { margin-top: .7rem; padding-top: .65rem; border-top: 1px solid var(--line); }
.today-brief em { display: block; font-style: normal; color: var(--lavender); font-size: .75rem; font-weight: 700; margin-bottom: .35rem; }
.today-brief p { margin: .2rem 0; font-size: .92rem; }
.today-tension { margin: .4rem 0 0; color: var(--muted); font-size: .85rem; }
.capture {
  width: min(720px, 100%);
  display: flex;
  gap: .55rem;
  margin-bottom: .85rem;
}
.capture input {
  flex: 1;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: .75rem .9rem;
  outline: 0;
}
.capture input:focus { border-color: var(--lavender); }
.capture button {
  border: 0;
  background: var(--black);
  color: #fff;
  border-radius: 14px;
  padding: 0 1rem;
  font-weight: 600;
}
.capture button:disabled { opacity: .35; }

.ask {
  width: min(720px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(40, 30, 70, 0.05);
  text-align: left;
  overflow: hidden;
}
.ask textarea {
  width: 100%;
  border: 0;
  resize: none;
  outline: 0;
  min-height: 72px;
  padding: 1rem 1.1rem .4rem;
}
.ask-tools {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: 0 1rem .75rem;
}
.icon-btn {
  width: 34px; height: 34px; border-radius: 10px;
  border: 0; background: transparent; color: #6b6a75;
  display: grid; place-items: center;
}
.icon-btn:hover { background: var(--side); }
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.mic {
  width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: var(--lavender); color: #fff;
  display: grid; place-items: center; margin-left: auto;
}
.ask-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: .65rem 1rem;
  color: var(--muted);
  font-size: .85rem;
}
.ask-attach {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
}
.ask-attach:hover { color: var(--ink); }
.suggests {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: 1rem;
}
.suggest {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .85rem .9rem;
}
.suggest-ico {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  color: var(--lavender);
}
.suggest-ico svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.suggest strong { display: block; margin: .35rem 0 .2rem; font-size: .92rem; }
.suggest span { color: var(--muted); font-size: .8rem; line-height: 1.35; }

.msgs { flex: 1; overflow: auto; padding: 1.2rem 8%; display: flex; flex-direction: column; gap: .85rem; }
.bubble { max-width: 72%; padding: .95rem 1.05rem; border-radius: 18px; line-height: 1.55; white-space: pre-wrap; overflow-wrap: anywhere; }
.bubble.file { white-space: normal; max-width: 420px; }
.bubble.user { align-self: flex-end; background: var(--black); color: #fff; }
.bubble.assistant { align-self: flex-start; background: var(--side); }
.bubble .who { font-size: .7rem; color: var(--muted); margin-bottom: .3rem; font-weight: 600; }
.bubble.user .who { color: rgba(255,255,255,.65); }
.file-block {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .15rem 0;
}
.file-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--lavender);
  font-size: 1rem;
  flex-shrink: 0;
}
.file-block strong {
  display: block;
  font-size: .92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 280px;
}
.file-block small { color: var(--muted); font-size: .78rem; }
.composer-wrap { padding: 0 8% 1.2rem; }
.composer-wrap .ask { width: 100%; }

.grid { padding: 0 1.5rem 2rem; overflow: auto; display: grid; gap: 1rem; }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .85rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.05rem;
}
.card-open { cursor: pointer; }
.card-open:hover { border-color: var(--lavender); }
.sheet-bg {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 32, .4);
  display: grid;
  place-items: center;
  z-index: 30;
  padding: 1.2rem;
}
.sheet {
  width: min(720px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  background: #fff;
  border-radius: 22px;
  padding: 1.3rem 1.4rem 1.2rem;
  border: 1px solid var(--line);
}
.sheet-top { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; margin-bottom: .8rem; }
.sheet-top h2 { margin: .2rem 0 0; font-size: 1.25rem; }
.sheet-img { width: 100%; max-height: 280px; object-fit: contain; border-radius: 14px; background: var(--side); margin-bottom: .8rem; }
.sheet-body { white-space: pre-wrap; overflow-wrap: anywhere; line-height: 1.55; margin-bottom: 1rem; }
.reel-read { display: grid; gap: .85rem; margin-bottom: 1rem; }
.reel-info {
  font-size: .86rem;
  font-weight: 600;
  color: var(--lavender);
}
.reel-transcript {
  background: var(--lavender-soft);
  border: 1px solid #ddd4ff;
  border-radius: 14px;
  padding: .9rem 1rem;
}
.reel-transcript em, .reel-bit em {
  display: block;
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  color: var(--lavender);
  margin-bottom: .4rem;
}
.reel-transcript p, .reel-bit p {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-height: 1.55;
}
.card-speech { color: var(--ink); }
.mp4-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .22rem .65rem;
  letter-spacing: .01em;
}
.mp4-pill.ok { background: #e8f7ee; color: #1b6b3a; }
.mp4-pill.no { background: #fdeeee; color: #9a2c2c; }
.mp4-pill.wait { background: var(--lavender-soft); color: var(--lavender); }
.sheet-title, .sheet-edit {
  width: 100%;
  background: var(--side);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .7rem .85rem;
  outline: none;
}
.sheet-title { font-size: 1.2rem; font-weight: 700; margin-top: .25rem; }
.sheet-edit { min-height: 220px; resize: vertical; margin-bottom: 1rem; line-height: 1.5; }
.sheet-links { margin-bottom: 1rem; }
.sheet-links strong { display: block; margin-bottom: .35rem; }
.graph { display: grid; gap: .55rem; }
.graph-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: .45rem .7rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .7rem .85rem;
}
.graph-row button {
  background: none;
  border: 0;
  text-align: left;
  font-weight: 600;
  padding: 0;
}
.graph-row button:hover { color: #5b3fd6; }
.graph-kind {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #5b3fd6;
  background: var(--lavender-soft);
  border-radius: 99px;
  padding: .2rem .55rem;
}
.cmdk { width: min(560px, 100%); padding: 1rem; }
.cmdk input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--side);
  border-radius: 12px;
  padding: .85rem 1rem;
  outline: none;
  font-size: 1.02rem;
}
.cmdk-hits { margin-top: .7rem; display: grid; gap: .35rem; }
.cmdk-hits button {
  display: grid;
  gap: .15rem;
  text-align: left;
  background: var(--side);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: .7rem .8rem;
}
.cmdk-hits button:hover { border-color: var(--lavender); background: #fff; }
.cmdk-hits small { color: var(--muted); }
.card h3 { font-size: 1.02rem; margin: .2rem 0 .35rem; }
.theme-bar { height: 4px; border-radius: 99px; margin-bottom: .7rem; background: var(--lavender); }
.card-top { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.card-top .theme-bar { margin-bottom: 0; }
.heart {
  width: 34px; height: 34px; flex: 0 0 auto;
  border: 1px solid var(--line); border-radius: 50%;
  background: #fff; color: var(--muted); font-size: 1rem;
}
.heart:hover, .heart.on { color: #ef5b7a; border-color: #f8c4cf; background: #fff5f7; }
.row { display: flex; justify-content: space-between; gap: .8rem; align-items: center; }
.table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.table th, .table td { text-align: left; padding: .6rem .35rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { color: var(--muted); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.secret {
  background: var(--lavender-soft);
  border: 1px dashed var(--lavender);
  padding: .8rem 1rem;
  border-radius: 12px;
  font-family: ui-monospace, monospace;
  word-break: break-word;
  white-space: pre-wrap;
  font-size: .82rem;
  line-height: 1.45;
}
.pack {
  display: grid;
  gap: .7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.05rem;
}
.pack-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: .6rem;
  align-items: center;
}
.pack-row span { font-size: .75rem; color: var(--muted); font-weight: 600; }
.pack-row code { overflow-wrap: anywhere; font-size: .85rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.pane-switch {
  display: flex;
  gap: .4rem;
  background: var(--side);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .28rem;
  width: fit-content;
}
.pane-switch button {
  border: 0;
  background: transparent;
  padding: .45rem .9rem;
  border-radius: 10px;
  font-weight: 600;
}
.pane-switch button.on { background: #fff; box-shadow: 0 4px 12px rgba(40, 30, 70, .08); }
.theme-weights { display: grid; gap: .7rem; }
.task-box { display: grid; gap: .9rem; }
.task-list { display: grid; gap: .45rem; }
.task {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .75rem .9rem;
}
.task span { flex: 1; display: grid; gap: .15rem; }
.task .due { color: var(--lavender, #a78bfa); font-weight: 600; font-size: .78rem; }
.task.done span { color: var(--muted); text-decoration: line-through; }
.task em { font-style: normal; font-size: .75rem; color: var(--muted); }
.task .box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--lavender);
  border-radius: 6px;
  flex: 0 0 auto;
}
.task .box.on { background: var(--lavender); }
.weight {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .85rem 1rem;
}
.weight.on { border-color: var(--lavender); }
.weight strong { display: flex; align-items: center; gap: .45rem; }
.weight .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.weight .bar {
  display: block;
  height: 8px;
  background: var(--line);
  border-radius: 99px;
  margin: .45rem 0 .35rem;
  overflow: hidden;
}
.weight .bar i { display: block; height: 100%; border-radius: 99px; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: #111113;
  color: #fff;
  padding: .65rem 1.15rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: .92rem;
  z-index: 50;
  box-shadow: 0 12px 28px rgba(20, 16, 32, .22);
  animation: toast-in .22s ease;
}
@keyframes toast-in {
  from { transform: translateX(-50%) translateY(10px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.process-page { padding: 0 1.5rem 2rem; overflow: auto; display: grid; gap: 1.2rem; }
.process-head h2 { font-size: 1.35rem; }
.process-block { display: grid; gap: .7rem; }
.process-block h3 { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.process-card {
  background: var(--side);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.process-card.live { border-color: var(--lavender); background: var(--lavender-soft); }
.process-card.err { border-color: #f0c0c0; }
.process-top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  border: 0;
  background: transparent;
  padding: .95rem 1rem;
}
.process-top strong { display: block; margin-bottom: .2rem; }
.process-top small { color: var(--muted); display: block; }
.process-top .mp4-pill { margin-top: .45rem; }
.process-st {
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  white-space: nowrap;
}
.process-st.running { background: var(--lavender); color: #fff; }
.process-st.error { background: var(--danger); color: #fff; }
.process-body { padding: 0 1rem 1rem; display: grid; gap: .7rem; }
.process-bit em {
  display: block;
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  color: var(--lavender);
  margin-bottom: .25rem;
}
.process-bit p { margin: 0; white-space: pre-wrap; line-height: 1.45; }
.drop { position: fixed; inset: 0; background: rgba(20, 16, 32, .35); display: grid; place-items: center; z-index: 20; }
.drop-card {
  background: #fff;
  border: 1.5px dashed var(--lavender);
  padding: 2.2rem 2.6rem;
  border-radius: 24px;
  text-align: center;
}
@media (max-width: 860px) {
  .app-frame { padding: 0; }
  .shell { grid-template-columns: 1fr; border-radius: 0; }
  .side { display: none; }
  .suggests { grid-template-columns: 1fr; }
  .bubble { max-width: 92%; }
  .msgs, .composer-wrap { padding-left: 1rem; padding-right: 1rem; }
}
