/* =========================
   СТРАНИЦА ОГБИ — ОБЩИЙ КАРКАС
   Одна плоскость (поле с люменом) на весь экран, всё остальное —
   floating-панели НАД ней (как в Figma: канва + инструменты сверху).
========================= */

.employee-body {
  overflow: hidden;
}

.employee-page {
  position: relative;

  height: 100vh;
  height: 100svh;
  height: 100dvh;

  overflow: hidden;

  background:
    radial-gradient(circle at 18% 30%, rgba(115, 45, 221, .22), transparent 32%),
    radial-gradient(circle at 84% 8%, rgba(129, 216, 208, .07), transparent 30%),
    linear-gradient(125deg, #11031f 0%, #090012 48%, #1a1530 100%);
}

/* Обёртка больше не задаёт раскладку — просто группирует поле и панель,
   обе позиционируются абсолютно относительно .employee-page. */
.employee-layout {
  display: contents;
}

/* =========================
   ШАПКА — плавает над полем
========================= */

.employee-header {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 20;

  display: flex;
  align-items: center;
  gap: 22px;

  padding: 20px clamp(16px, 4vw, 48px) 0;

  pointer-events: none;
}

.employee-header > * {
  pointer-events: auto;
}

.employee-logo {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  color: var(--cream);
}

.employee-logo span {
  font-family: "Days", sans-serif;
  font-size: 22px;
  letter-spacing: .02em;
}

/* Разделы сидят на одном общем "подфоне" (как сегмент-контрол) и
   начинаются сразу за "ОГБИ" — выбранный раздел всегда первый, поэтому
   получается читаться как "ОГБИ Идеи", "ОГБИ Документы" и т.д. */
.employee-modes {
  flex-shrink: 1;
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 4px;

  padding: 4px;

  border-radius: 999px;

  background: rgba(20, 8, 38, .5);

  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);

  overflow-x: auto;
  scrollbar-width: none;
}

.employee-modes::-webkit-scrollbar {
  display: none;
}

.employee-mode {
  flex-shrink: 0;

  border: none;
  cursor: pointer;

  padding: 10px 18px;

  border-radius: 999px;

  font-family: "Sora", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;

  color: rgba(240, 238, 233, .82);
  background: transparent;

  transition: background .2s ease, color .2s ease;
}

.employee-mode:hover {
  background: rgba(240, 238, 233, .1);
}

.employee-mode[aria-current="true"] {
  background: var(--tiffany);
  color: #1a2a28;
}

/* =========================
   ЛЕВАЯ ПАНЕЛЬ — floating-карточки над полем
========================= */

/* Посередине слева, а не у верхнего края — поле тезисов растёт
   симметрично вокруг центра, по мере накопления собственной коллекции */
.employee-panel {
  position: absolute;
  left: clamp(16px, 4vw, 48px);
  top: 50%;
  z-index: 20;

  width: min(320px, 30vw);
  min-width: 270px;
  max-height: calc(100% - 160px);

  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 14px;

  pointer-events: none;
}

.employee-panel > * {
  pointer-events: auto;
}

.upload-row {
  flex-shrink: 0;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.upload-block {
  position: relative;

  min-height: 100px;

  padding: 18px 18px 16px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: none;
  border-radius: 26px;
  cursor: pointer;

  text-align: left;
  color: var(--cream);

  background:
    linear-gradient(180deg, rgba(40, 18, 78, .78) 0%, rgba(22, 7, 45, .92) 100%);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, .34),
    0 0 30px rgba(115, 45, 221, .14),
    inset 0 12px 22px rgba(255, 255, 255, .03),
    inset 0 -16px 28px rgba(0, 0, 0, .26);

  transition: transform .2s ease, box-shadow .2s ease;
}

.upload-block:hover {
  transform: translateY(-2px);
}

.upload-block__title {
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
}

.upload-block__dot {
  align-self: flex-end;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  background: var(--cream);
  opacity: .92;

  transition: background .25s ease, box-shadow .25s ease;
}

.upload-block.is-filled .upload-block__dot {
  background: var(--mov);
  box-shadow: 0 0 14px rgba(115, 45, 221, .7);
}

.request-panel {
  min-height: 0;

  display: flex;
  flex-direction: column;

  padding: 20px 20px 16px;

  border-radius: 26px;

  background:
    linear-gradient(180deg, rgba(35, 11, 68, .72) 0%, rgba(23, 4, 45, .9) 100%);

  box-shadow:
    0 18px 44px rgba(0, 0, 0, .32),
    0 0 30px rgba(115, 45, 221, .10),
    inset 0 10px 20px rgba(255, 255, 255, .02),
    inset 0 -14px 26px rgba(0, 0, 0, .24);
}

.request-panel__title {
  margin: 0;

  font-family: "Sora", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.request-panel__hint {
  margin: 4px 0 16px;

  color: rgba(240, 238, 233, .6);
  font-size: 12.5px;
  text-align: center;
}

/* "Буфер" подсказок — плашки по левому краю, шириной по тексту, в одну
   строку каждая, переносятся блоками (как облако тегов). Растёт вместе
   с коллекцией тезисов, до разумного предела, дальше — скролл. */
.chip-list {
  flex-shrink: 1;
  min-height: 0;
  max-height: 50vh;

  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  gap: 8px;

  overflow-y: auto;

  margin-bottom: 14px;
}

.chip {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  gap: 8px;

  max-width: 100%;

  padding: 9px 8px 9px 16px;

  border: none;
  border-radius: 999px;
  cursor: grab;
  touch-action: none;

  background: rgba(240, 238, 233, .92);
  color: #2a2a30;

  font-family: "Sora", system-ui, sans-serif;
  font-size: 13px;
  text-align: left;

  transition: transform .2s ease, box-shadow .2s ease;
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}

/* Оригинальный чип тускнеет, пока его "призрак" летит за курсором */
.chip.is-dragging-source {
  opacity: .35;
}

/* "Призрак" чипа, который тащится по экрану поверх всего */
.chip--ghost {
  z-index: 999;
  pointer-events: none;

  opacity: .96;
  transform: scale(1.05);

  box-shadow: 0 24px 50px rgba(0, 0, 0, .42);
}

.chip--ghost.chip--over-lumen {
  box-shadow:
    0 0 0 3px var(--tiffany),
    0 24px 50px rgba(0, 0, 0, .42);
}

.chip:active {
  cursor: grabbing;
}

.chip__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Превью картинки прямо в плашке буфера */
.chip__thumb {
  flex-shrink: 0;

  width: 26px;
  height: 26px;

  border-radius: 8px;
  object-fit: cover;
}

/* Крестик удаления — у тела плашки тащить, у крестика только удалять */
.chip__delete {
  flex-shrink: 0;

  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  cursor: pointer;

  color: rgba(42, 42, 48, .55);
  font-size: 16px;
  line-height: 1;

  transition: background .2s ease, color .2s ease;
}

.chip__delete:hover {
  background: rgba(42, 42, 48, .12);
  color: #2a2a30;
}

/* Строка ввода — всегда внизу фона инструментария */
.request-input-row {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 4px 4px 4px 18px;

  border-radius: 999px;

  background: rgba(240, 238, 233, .92);
}

.request-input {
  flex: 1;
  min-width: 0;

  border: none;
  background: transparent;
  outline: none;

  font-family: "Sora", system-ui, sans-serif;
  font-size: 13.5px;
  color: #2a2a30;
}

.request-input::placeholder {
  color: rgba(42, 42, 48, .5);
}

.request-input__send {
  flex-shrink: 0;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;
  cursor: pointer;

  background: linear-gradient(160deg, var(--mov) 0%, var(--mov-dark) 100%);

  transition: transform .2s ease;
}

.request-input__send:hover {
  transform: scale(1.06);
}

.request-input__send img {
  width: 28px;
  height: auto;

  filter: brightness(0) invert(1);
}

/* =========================
   МОБИЛЬНЫЙ ИНСТРУМЕНТАРИЙ — одна строка внизу
   Подсказок здесь нет: всё отправленное сразу появляется тезисом
   на поле (см. employee.js). Скрыт на десктопе.
========================= */

.mobile-toolkit {
  display: none;
}

/* =========================
   ПОЛЕ С ЛЮМЕНОМ — единая плоскость на весь экран
========================= */

.employee-field {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.field-viewport {
  position: absolute;
  inset: 0;

  overflow: hidden;

  cursor: grab;

  /* Иначе мобильный браузер перехватывает жест себе (зум всей страницы,
     рывками отдаёт пан) — пан/зум поля полностью отдаём своему JS */
  touch-action: none;

  /* При перетаскивании курсор не должен случайно выделять текст блоков */
  user-select: none;
  -webkit-user-select: none;

  /* Едва заметные точки — дают понять, что поле можно двигать, как фон */
  background-image: radial-gradient(rgba(240, 238, 233, .14) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
}

.field-viewport.is-panning {
  cursor: grabbing;
}

.field-content {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 0;
  height: 0;

  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.lumen-canvas--field {
  z-index: 1;

  /* Люмен здесь — главный элемент интерфейса, краски выкручены на максимум.
     --lumen-blur выставляется из JS пропорционально реальному размеру
     люмена на экране (см. resize() в lumen-engine.js). */
  -webkit-filter: blur(var(--lumen-blur, 20px)) saturate(2) brightness(1.18) contrast(1.06);
  filter: blur(var(--lumen-blur, 20px)) saturate(2) brightness(1.18) contrast(1.06);

  /* Большой размытый canvas иначе может тайлиться на отдельные слои
     композитинга — на стыке тайлов (часто ровно по центру экрана)
     видна "разрезающая" артефакт-линия. Принудительно держим его одним
     цельным слоем. */
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* Появляется, когда поле подвинули далеко от люмена, — иначе его легко
   потерять и сложно найти дорогу обратно */
.return-to-lumen {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 25;

  transform: translateX(-50%);

  border: none;
  border-radius: 999px;
  cursor: pointer;
  padding: 11px 20px;

  white-space: nowrap;

  background: rgba(20, 8, 38, .88);
  color: var(--cream);

  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);

  font-family: "Sora", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13.5px;

  box-shadow: 0 14px 32px rgba(0, 0, 0, .4);

  transition: transform .2s ease, background .2s ease;
}

.return-to-lumen:hover {
  background: rgba(115, 45, 221, .9);
  transform: translateX(-50%) translateY(-2px);
}

.return-to-lumen[hidden] {
  display: none;
}

/* По центру люмена, будто светится изнутри него — тёмная подложка
   только под самим текстом (не прямоугольник), чтобы оставаться
   читаемым на ярком фоне, но не выглядеть отдельной плашкой */
.lumen-status {
  position: absolute;
  left: 50%;
  top: 50%;

  width: min(220px, 46vw);

  margin: 0;
  transform: translate(-50%, -50%);

  z-index: 2;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;

  text-align: center;

  font-family: "Days", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: .01em;

  color: #ffffff;

  text-shadow:
    0 1px 2px rgba(0, 0, 0, .55),
    0 0 12px rgba(0, 0, 0, .5),
    0 0 26px rgba(0, 0, 0, .4);

  transition: opacity .25s ease;
}

/* Кнопка появляется под надписью после первого поглощённого тезиса */
.lumen-launch {
  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, 84px);

  z-index: 2;

  border: none;
  border-radius: 999px;
  cursor: pointer;
  padding: 10px 22px;

  white-space: nowrap;
  width: max-content;

  background: var(--tiffany);
  color: #1a2a28;

  font-family: "Sora", system-ui, sans-serif;
  font-weight: 600;
  font-size: 13.5px;

  box-shadow: 0 14px 30px rgba(0, 0, 0, .35);

  transition: transform .2s ease, opacity .2s ease;
}

.lumen-launch:hover {
  transform: translate(-50%, 82px) scale(1.04);
}

.lumen-launch[hidden] {
  display: none;
}

/* =========================
   ПЛАВАЮЩИЕ БЛОКИ НА ПОЛЕ (создаются JS)
========================= */

.field-block {
  position: absolute;

  /* #fieldContent специально 0×0 (это просто якорь центрирования), но
     из-за этого браузер считает доступную ширину блока как
     "ширина контейнера минус left" — при положительном left уходит в
     минус, и блок схлопывается, переламывая текст на много строк.
     width:max-content считает размер только по контенту, не завязываясь
     на (всегда нулевую) ширину контейнера. */
  width: max-content;
  max-width: 260px;

  padding: 18px 20px;

  border-radius: 22px;
  cursor: grab;
  touch-action: none;

  background: rgba(240, 238, 233, .96);
  color: #202228;

  font-family: "Sora", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.4;

  box-shadow:
    0 22px 50px rgba(0, 0, 0, .38),
    0 0 1px rgba(0, 0, 0, .06);

  z-index: 3;
}

.field-block.is-dragging {
  cursor: grabbing;
  z-index: 4;

  /* Свой слой композитинга на время драга — не даёт блоку "ломаться"
     при пересечении границы слоя люмена под ним */
  transform: translateZ(0);
}

/* Стартовые подсказки-стикеры — слегка отличаются, чтобы не путаться
   с настоящими тезисами/результатами; текст в них сменим позже */
.field-block.is-instruction {
  background: rgba(255, 247, 214, .92);
  border: 1px dashed rgba(0, 0, 0, .14);
  font-size: 13px;
  color: #4a4422;
}

/* Заметки — без скругления, с подогнутым уголком, как настоящий
   бумажный листок (применяется и к стикерам-инструкциям, и к "Добавить
   заметку") */
.field-block--note {
  border-radius: 0;
}

.field-block--note::before {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;

  width: 0;
  height: 0;

  border-style: solid;
  border-width: 0 0 16px 16px;
  border-color: transparent transparent rgba(0, 0, 0, .16) transparent;
}

/* Крестик удаления — есть у любого блока на поле */
.field-block__close {
  position: absolute;
  top: -8px;
  right: -8px;

  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  cursor: pointer;

  background: #2a2a30;
  color: #f0eee9;

  font-size: 14px;
  line-height: 1;

  box-shadow: 0 4px 10px rgba(0, 0, 0, .3);

  z-index: 1;
}

.field-block__close:hover {
  background: var(--mov);
}

/* Превью картинки — без внутренних отступов под текст */
.field-block--image {
  padding: 0;
  overflow: hidden;

  line-height: 0;
}

.field-block--image img {
  display: block;

  width: 220px;
  height: auto;

  border-radius: inherit;
}

/* Фрейм — просто контур с минимальной заливкой, группирует файлы/
   картинки визуально. Не белый, не карточка с текстом. Можно менять
   размер за правый нижний угол (нативный resize). */
.field-block--frame {
  width: 320px;
  height: 220px;
  max-width: none;
  min-width: 160px;
  min-height: 120px;

  resize: both;
  overflow: hidden;

  padding: 0;

  background: rgba(115, 45, 221, .05);
  border: 2px solid rgba(115, 45, 221, .55);
  border-radius: 14px;

  color: transparent;
  font-size: 12px;
}

/* Название фрейма — у фрейма overflow:hidden (нужен для resize и для
   реального обрезания содержимого), поэтому всё, что должно быть видно,
   держим ВНУТРИ его границ, а не за пределами (иначе обрежется) */
.field-block__frame-title {
  position: absolute;
  left: 8px;
  top: 6px;
  z-index: 2;

  /* Название фрейма редактируется, в отличие от остального поля */
  user-select: text;
  -webkit-user-select: text;

  max-width: calc(100% - 40px);

  border: none;
  outline: none;
  cursor: text;

  padding: 2px 8px;
  border-radius: 8px;
  background: rgba(20, 8, 38, .6);

  color: rgba(240, 238, 233, .9);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Крестик у фрейма — тоже внутри границ (снаружи бы обрезался) */
.field-block--frame .field-block__close {
  top: 6px;
  right: 6px;
  z-index: 2;
}

.field-block.is-pending {
  background: rgba(240, 238, 233, .94);
}

.field-block--frame.is-pending {
  background: rgba(115, 45, 221, .05);
}

.field-block.is-result {
  background: #eceae5;
}

/* Вопрос люмена — нужен только подтолкнуть к ответу-тезису, своей
   оценки не требует, растворяется сам при следующем запуске.
   Специфичность выше, чем у .field-block.is-result — иначе серый фон
   результата по умолчанию перебивает цвет вопроса/идеи. */
.field-block.is-result.field-block--question {
  background: #ffffff;
  color: #26262c;
}

.field-block--question::before {
  content: "Вопрос";

  display: block;
  margin-bottom: 4px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .45;
}

/* Предложение люмена — можно оценить: 🙂 закрепляет его как тезис,
   🙁 растворяет сразу же */
.field-block.is-result.field-block--suggestion {
  background: var(--mov);
  color: #ffffff;
}

.field-block--suggestion::before {
  content: "Идея";

  display: block;
  margin-bottom: 4px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .65;
}

.field-block--suggestion .field-block__rating button {
  background: rgba(255, 255, 255, .16);
  color: #ffffff;
}

.field-block--suggestion .field-block__rating button.is-selected {
  background: #ffffff;
  color: var(--mov);
}

/* Плавное "поглощение" — элемент стягивается и уменьшается к центру
   люмена, а не просто пропадает */
.field-block.is-absorbing {
  transition:
    left .6s cubic-bezier(.6, 0, .85, .35),
    top .6s cubic-bezier(.6, 0, .85, .35),
    transform .6s cubic-bezier(.6, 0, .85, .35),
    opacity .55s ease .15s;

  opacity: 0;
}

/* Просто убрать блок (отклонённое предложение, устаревший вопрос) —
   без полёта в люмен, лёгкое затухание на месте */
.field-block.is-dismissing {
  transition: opacity .35s ease, transform .35s ease;
  opacity: 0;
  transform: scale(.85);
}

/* Результат люмена появляется на своём месте сразу размытым пятном,
   собранным из частиц, и затем проявляется в чёткий блок */
.field-block--emerging {
  transition:
    filter .55s ease,
    opacity .45s ease,
    transform .55s cubic-bezier(.18, .8, .2, 1);
}

/* Холст для частиц (материализация/распад блоков) — поверх поля,
   не мешает кликам и драгу */
.particle-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.field-block__title {
  margin: 0 0 6px;
  font-weight: 700;
}

.field-block__action {
  margin-top: 10px;

  display: inline-flex;

  border: none;
  background: none;
  cursor: pointer;
  padding: 0;

  color: #5a5a62;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 13px;
  text-decoration: underline;
}

.field-block__rating {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.field-block__rating button {
  border: none;
  background: rgba(0, 0, 0, .06);
  border-radius: 999px;
  cursor: pointer;
  padding: 6px 12px;
  font-size: 13px;
}

.field-block__rating button.is-selected {
  background: var(--mov);
  color: #fff;
}

/* =========================
   МОБИЛЬНАЯ ВЕРСИЯ
   Весь десктопный инструментарий (загрузка + буфер подсказок) скрыт.
   Вместо него — одна тонкая строка внизу: вложение, текст, отправка.
   Всё отправленное тезисом сразу появляется на поле, а не в списке.
========================= */

@media (max-width: 900px) {
  .employee-header {
    padding: 14px 14px 0;
    gap: 12px;
  }

  .employee-mode {
    padding: 9px 16px;
    font-size: 12.5px;
  }

  .employee-panel {
    display: none;
  }

  /* Поднимаем выше — снизу уже мобильный инструментарий */
  .return-to-lumen {
    bottom: 168px;
  }

  /* Без подложки — плашки и строка ввода парят прямо над полем,
     ничего их не объединяет в общую карточку */
  .mobile-toolkit {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 20;

    display: flex;
    flex-direction: column;
    gap: 10px;

    pointer-events: none;
  }

  .mobile-toolkit > * {
    pointer-events: auto;
  }

  /* Лента плашек уходит за края экрана — это видно по обрезанным
     крайним плашкам, явный намёк, что её можно прокручивать */
  .mobile-toolkit__row {
    display: flex;
    gap: 8px;

    padding: 0 14px;

    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-toolkit__row::-webkit-scrollbar {
    display: none;
  }

  /* Тот же непрозрачный стиль карточек, что и на десктопе (.upload-block) —
     каждая плашка со своей тенью, будто парит сама по себе */
  .mobile-toolkit__tile {
    flex: 1 0 auto;

    min-width: 84px;

    padding: 10px 12px;

    border: none;
    border-radius: 14px;
    cursor: pointer;

    background:
      linear-gradient(180deg, rgba(40, 18, 78, .98) 0%, rgba(22, 7, 45, 1) 100%);
    color: var(--cream);

    box-shadow:
      0 14px 30px rgba(0, 0, 0, .4),
      0 0 22px rgba(115, 45, 221, .16),
      inset 0 10px 18px rgba(255, 255, 255, .04),
      inset 0 -12px 22px rgba(0, 0, 0, .3);

    font-family: "Sora", system-ui, sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.25;
    text-align: left;
  }

  .mobile-toolkit__input-row {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0 14px;
    padding: 4px 4px 4px 16px;

    border-radius: 999px;

    background: linear-gradient(160deg, rgba(115, 45, 221, .96) 0%, rgba(34, 11, 68, 1) 100%);

    box-shadow:
      0 18px 40px rgba(0, 0, 0, .4),
      0 0 22px rgba(115, 45, 221, .16),
      inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  .mobile-toolkit__input {
    flex: 1;
    min-width: 0;

    border: none;
    background: transparent;
    outline: none;

    font-family: "Sora", system-ui, sans-serif;
    font-size: 14px;
    color: var(--cream);
  }

  .mobile-toolkit__input::placeholder {
    color: rgba(240, 238, 233, .55);
  }

  .mobile-toolkit__send {
    flex-shrink: 0;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;
    cursor: pointer;

    background: linear-gradient(160deg, var(--mov) 0%, var(--mov-dark) 100%);
  }

  .mobile-toolkit__send img {
    width: 24px;
    height: auto;

    filter: brightness(0) invert(1);
  }
}
