:root {
  --bg: #000000;
  --surface: #212121;
  --surface-2: #2f2f2f;
  --hover: #3a3a3a;
  --text: #ececec;
  --muted: #8e8e8e;
  --faint: #5a5a5a;
  --user: #2f2f2f;
  --send: #ffffff;
  --send-ink: #0d0d0d;
  --danger: #ef4444;
  --green: #4ade80;
  --radius: 28px;
  --font: "Figtree", "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 var(--font);
  -webkit-font-smoothing: antialiased;
}

button, textarea, input { font: inherit; color: inherit; }

/* ---- loader ---- */

.loader {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
}

.loader[hidden] { display: none; }

.loader-card {
  width: min(280px, 70%);
}

.bar {
  height: 3px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0%;
  background: var(--text);
  transition: width 0.15s ease-out;
}

.loader-error {
  margin: 14px 0 0;
  color: var(--danger);
  font-size: 13px;
  text-align: center;
}

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

/* ---- app shell ---- */

.app {
  height: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
}

.app[hidden] { display: none; }

.app-main {
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ---- chats drawer ---- */

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 40;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.sidebar-backdrop[hidden] { display: none; }

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(300px, 86vw);
  z-index: 50;
  display: flex;
  flex-direction: column;
  background: #141414;
  border-right: 1px solid #262626;
  transform: translateX(-105%);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.sidebar.open {
  transform: translateX(0);
  pointer-events: auto;
}

.sidebar-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px 10px;
  flex-shrink: 0;
}

.new-chat-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  background: #1c1c1c;
  color: var(--text);
  font-size: 14px;
  font-weight: 550;
  cursor: pointer;
}

.new-chat-btn:hover {
  background: #242424;
  border-color: #3a3a3a;
}

.sidebar-icon-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
}

.sidebar-icon-btn:hover {
  background: var(--surface-2);
  color: var(--text);
}

.chat-list {
  flex: 1;
  overflow-y: auto;
  padding: 6px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
  min-height: 0;
}

.sidebar-foot {
  flex-shrink: 0;
  padding: 10px 12px 14px;
  border-top: 1px solid #262626;
}

.sidebar-legal-btn {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--faint);
  font-size: 12.5px;
  font-weight: 500;
  text-align: left;
  padding: 10px 10px;
  cursor: pointer;
}

.sidebar-legal-btn:hover {
  background: var(--surface-2);
  color: var(--muted);
}

.chat-list-empty {
  margin: 18px 10px;
  color: var(--faint);
  font-size: 13px;
  text-align: center;
}

.chat-item {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.chat-item:hover,
.chat-item.active {
  background: #222;
}

.chat-item-main {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  padding: 10px 10px;
  cursor: pointer;
  font: inherit;
}

.chat-item-title {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-item-meta {
  display: block;
  margin-top: 2px;
  color: var(--faint);
  font-size: 11.5px;
}

.chat-item-del {
  width: 32px;
  height: 32px;
  margin-right: 6px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--faint);
  cursor: pointer;
  opacity: 0;
  flex-shrink: 0;
}

.chat-item:hover .chat-item-del,
.chat-item:focus-within .chat-item-del {
  opacity: 1;
}

.chat-item-del:hover {
  background: #2a2a2a;
  color: var(--danger);
}

.topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 4px;
  flex-shrink: 0;
}

.chat-title {
  min-width: 0;
  font-size: 14px;
  font-weight: 550;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thread {
  flex: 1;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.empty {
  min-height: calc(100vh - 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  transition: opacity 0.2s ease;
}

.empty[hidden] { display: none; }

.empty h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.empty-sub {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.messages {
  width: min(740px, 100%);
  margin: 0 auto;
  padding: 28px 20px 12px;
}

.msg {
  display: flex;
  justify-content: stretch;
  padding: 10px 0;
}

.msg.user {
  justify-content: flex-end;
}

.content { min-width: 0; max-width: 100%; }

.msg.user .content {
  max-width: min(640px, 92%);
}

.bubble {
  font-size: 16px;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

.msg.user .bubble {
  color: var(--text);
  background: #2a2a2a;
  border: 1px solid #363636;
  border-radius: 18px;
  padding: 12px 16px;
}

.msg.assistant .bubble {
  background: transparent;
  border: 0;
  padding: 4px 0;
}

.bubble.md {
  white-space: normal;
}

.bubble.md > :first-child { margin-top: 0; }
.bubble.md > :last-child { margin-bottom: 0; }

.bubble.md p { margin: 0.7em 0; }
.bubble.md h1, .bubble.md h2, .bubble.md h3, .bubble.md h4 {
  margin: 1.15em 0 0.45em;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.bubble.md h1 { font-size: 1.35em; }
.bubble.md h2 { font-size: 1.2em; }
.bubble.md h3 { font-size: 1.08em; }
.bubble.md h4 { font-size: 1em; color: #cfcfcf; }

.bubble.md ul, .bubble.md ol {
  margin: 0.6em 0;
  padding-left: 1.4em;
}
.bubble.md li { margin: 0.25em 0; }

.bubble.md code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: var(--surface-2);
  border-radius: 5px;
  padding: 0.12em 0.4em;
}

.bubble.md .code-block {
  margin: 0.9em 0;
  background: #181818;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
}

.bubble.md .code-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px 8px 14px;
  border-bottom: 1px solid #242424;
}

.bubble.md .code-lang {
  color: var(--faint);
  font-size: 11.5px;
  text-transform: lowercase;
}

.bubble.md pre {
  margin: 0;
  padding: 14px 16px;
  overflow-x: auto;
}

.bubble.md pre code {
  display: block;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #e8e8e8;
  white-space: pre;
}

.copy-btn {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.copy-btn:hover { background: var(--hover); color: var(--text); }
.copy-btn.copied { color: var(--green); }

.msg-actions {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.msg-actions[hidden] { display: none; }

.msg-actions .copy-btn {
  color: var(--faint);
}

.bubble.md a { color: #8ab4ff; text-decoration: none; }
.bubble.md a:hover { text-decoration: underline; }

.thinking-placeholder {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  animation: thinking-pulse 1.2s ease-in-out infinite;
}

/* Kept on the bubble itself so a cleared innerHTML cannot hide the label. */
.bubble.is-thinking::before {
  content: "Thinking…";
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  animation: thinking-pulse 1.2s ease-in-out infinite;
}

@keyframes thinking-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.think {
  margin: 0.2em 0 1.1em;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  background: #121212;
  overflow: hidden;
}

.think summary {
  cursor: pointer;
  padding: 10px 14px;
  color: #bdbdbd;
  font-size: 13.5px;
  font-weight: 550;
  user-select: none;
  list-style: none;
}

.think summary::-webkit-details-marker { display: none; }

.think summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 8px;
  color: var(--muted);
  transition: transform 0.15s ease;
}

.think[open] summary::before { transform: rotate(90deg); }

.think-body {
  padding: 0 14px 14px;
  color: #9a9a9a;
  font-size: 13.5px;
  line-height: 1.55;
  border-top: 1px solid #222;
  padding-top: 12px;
  max-height: min(280px, 40vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #3a3a3a transparent;
}

.think-body::-webkit-scrollbar { width: 8px; }
.think-body::-webkit-scrollbar-thumb {
  background: #3a3a3a;
  border-radius: 999px;
}

/* highlight.js sits inside our code blocks; keep our chrome, use its tokens. */
.bubble.md .code-block .hljs {
  background: transparent;
  padding: 0;
}

.cursor {
  display: inline-block;
  width: 7px;
  height: 1.05em;
  margin-left: 2px;
  background: var(--text);
  vertical-align: text-bottom;
  animation: blink 1.05s steps(2, start) infinite;
}

@keyframes blink { to { visibility: hidden; } }

.meta {
  margin-top: 10px;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- composer ---- */

.composer-wrap {
  position: sticky;
  bottom: 0;
  padding: 0 16px 14px;
  background: linear-gradient(to top, var(--bg) 70%, transparent);
}

.composer {
  width: min(740px, 100%);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 12px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s ease;
}

.composer:focus-within { border-color: #444; }

.prompt-shell {
  position: relative;
  width: 100%;
}

.prompt-ghost {
  position: absolute;
  inset: 0;
  padding: 4px 6px;
  font-size: 16px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
  overflow: hidden;
  pointer-events: none;
  color: transparent;
  z-index: 0;
}

.prompt-ghost .ghost-typed {
  color: transparent;
}

.prompt-ghost .ghost-suffix {
  color: #8e8e8e;
}

#prompt {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 0;
  outline: none;
  resize: none;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  max-height: 200px;
  padding: 4px 6px;
  field-sizing: content;
}

#prompt::placeholder { color: var(--muted); }

.cfg-toggle {
  cursor: pointer;
}

.cfg-check {
  width: 18px;
  height: 18px;
  accent-color: var(--text);
  cursor: pointer;
}

.composer-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 2px;
}

.cfg-wrap {
  position: relative;
}

.cfg-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.cfg-btn:hover,
.cfg-btn[aria-expanded="true"] {
  background: var(--surface-2);
  color: var(--text);
}

.cfg-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  width: 280px;
  padding: 8px;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: cfg-up 0.14s ease-out;
}

.cfg-menu[hidden] { display: none; }

@keyframes cfg-up {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.cfg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  cursor: default;
}

.cfg-row:hover { background: #222; }

.cfg-label {
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
}

.cfg-row input {
  width: 5.2em;
  border: 0;
  outline: none;
  background: #1f1f1f;
  color: var(--text);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  text-align: right;
  border-radius: 8px;
  padding: 6px 8px;
  -moz-appearance: textfield;
}

.cfg-row input:focus {
  background: #242424;
  box-shadow: inset 0 0 0 1px #3a3a3a;
}

.cfg-row input::-webkit-outer-spin-button,
.cfg-row input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cfg-select {
  max-width: 14em;
  min-width: 0;
  border: 0;
  outline: none;
  background: #1f1f1f;
  color: var(--text);
  font: inherit;
  font-size: 12.5px;
  border-radius: 8px;
  /* Extra right padding so the native chevron does not cover the label. */
  padding: 6px 28px 6px 8px;
  cursor: pointer;
  text-overflow: ellipsis;
}

.cfg-select:focus {
  background: #242424;
  box-shadow: inset 0 0 0 1px #3a3a3a;
}

.status {
  flex: 1;
  min-width: 0;
  margin-left: auto;
  color: var(--faint);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  background: var(--send);
  color: var(--send-ink);
}

.icon-btn:hover { background: #e5e5e5; }
.icon-btn:disabled { opacity: 0.35; cursor: default; }

.icon-btn .icon-stop { display: none; }
.icon-btn.running .icon-send { display: none; }
.icon-btn.running .icon-stop { display: block; }

.disclaimer {
  width: min(740px, 100%);
  margin: 10px auto 0;
  text-align: center;
  color: var(--faint);
  font-size: 12px;
}

@media (max-width: 560px) {
  .empty h1 { font-size: 26px; }
}

/* ---- waitlist ---- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar .waitlist-chip {
  margin-left: auto;
}

.waitlist-chip {
  border: 0;
  background: var(--surface-2);
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}

.waitlist-chip:hover { background: var(--hover); }

.waitlist {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: waitlist-fade 0.28s ease-out;
}

.waitlist[hidden] { display: none; }

.waitlist-panel {
  position: relative;
  width: min(440px, 100%);
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  animation: waitlist-rise 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.waitlist-x {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
}

.waitlist-x:hover { background: rgba(0, 0, 0, 0.65); }

.waitlist-media {
  aspect-ratio: 16 / 10;
  background: #050505;
  overflow: hidden;
}

.waitlist-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.waitlist-body {
  padding: 22px 22px 18px;
}

.waitlist-kicker {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.waitlist-body h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.waitlist-copy {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.waitlist-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.waitlist-field {
  flex: 1;
  min-width: 0;
}

.waitlist-field input {
  width: 100%;
  border: 0;
  outline: none;
  background: #1c1c1c;
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

.waitlist-field input:focus {
  box-shadow: inset 0 0 0 1px #3f3f3f;
}

.waitlist-field input::placeholder { color: var(--faint); }

.waitlist-submit {
  position: relative;
  min-width: 7.5rem;
  border: 0;
  border-radius: 12px;
  background: var(--send);
  color: var(--send-ink);
  font-size: 14px;
  font-weight: 650;
  padding: 0 16px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.waitlist-submit:hover { background: #e5e5e5; }
.waitlist-submit:disabled:not(.is-success) { opacity: 0.45; cursor: default; }

.waitlist-submit-check {
  display: none;
}

.waitlist-submit.is-success {
  background: var(--green);
  color: #fff;
  cursor: default;
  transform: scale(1.02);
}

.waitlist-submit.is-success .waitlist-submit-label { display: none; }
.waitlist-submit.is-success .waitlist-submit-check { display: block; }
.waitlist-submit.is-success:hover { background: var(--green); }

.waitlist-status[hidden] { display: none; }

.waitlist-status {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.waitlist-status[data-kind="error"] { color: var(--danger); }

.waitlist-dismiss {
  display: block;
  width: 100%;
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--faint);
  font-size: 13px;
  cursor: pointer;
  padding: 6px;
}

.waitlist-dismiss:hover { color: var(--muted); }

body.waitlist-open { overflow: hidden; }

@keyframes waitlist-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes waitlist-rise {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 560px) {
  .waitlist-form { flex-direction: column; }
  .waitlist-submit { height: 44px; }
  .waitlist-body h2 { font-size: 22px; }
}

/* ---- disclaimer / terms modal ---- */

.disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: waitlist-fade 0.22s ease-out;
}

.disclaimer-modal[hidden] { display: none; }

.disclaimer-panel {
  width: min(560px, 100%);
  max-height: min(86vh, 720px);
  display: flex;
  flex-direction: column;
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  animation: waitlist-rise 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.disclaimer-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid #262626;
  flex-shrink: 0;
}

.disclaimer-head h2 {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.disclaimer-x {
  position: static;
  flex-shrink: 0;
  background: #1c1c1c;
}

.disclaimer-x:hover { background: #2a2a2a; }

.disclaimer-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 18px 8px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

.disclaimer-lead {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 14px;
}

.disclaimer-scroll h3 {
  margin: 18px 0 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.disclaimer-scroll p { margin: 0 0 8px; }

.disclaimer-scroll ul {
  margin: 0 0 8px;
  padding-left: 1.15em;
}

.disclaimer-scroll li { margin: 0 0 6px; }

.disclaimer-end {
  margin: 18px 0 8px !important;
  color: var(--faint);
  font-size: 12.5px;
}

.disclaimer-actions {
  flex-shrink: 0;
  padding: 12px 18px 16px;
  border-top: 1px solid #262626;
}

.disclaimer-accept {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: var(--send);
  color: var(--send-ink);
  font-size: 14px;
  font-weight: 650;
  padding: 12px 16px;
  cursor: pointer;
}

.disclaimer-accept:hover { background: #e5e5e5; }

body.disclaimer-open { overflow: hidden; }
