:root {
  color-scheme: dark light;
  --bg: #080c12;
  --bg-elevated: #0e141c;
  --surface: #121a24;
  --surface-2: #1a2430;
  --surface-3: #243040;
  --text: #eef2f7;
  --text-muted: #8fa3b8;
  --text-subtle: #5c6f82;
  --border: #2a3a4d;
  --border-strong: #3d5168;
  --focus: #3b82f6;
  --focus-glow: color-mix(in srgb, var(--focus) 35%, transparent);
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --danger: #ef4444;
  --danger-hover: #dc2626;
  --danger-text: #fff;
  --ok: #22c55e;
  --ok-dim: #14532d;
  --warn: #f59e0b;
  --warn-dim: #78350f;
  --idle: #64748b;
  --user-msg: #1e3a5f;
  --user-msg-border: #2563eb;
  --assistant-msg: #1a2e24;
  --assistant-msg-border: #22c55e;
  --bot-msg: #2a1f3d;
  --bot-msg-border: #a855f7;
  --system-msg: #1c2128;
  --system-msg-border: #475569;
  --mono: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --touch: 44px;
  --transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.45);
  --header-h: 3.5rem;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f0f4f8;
    --bg-elevated: #e8edf3;
    --surface: #ffffff;
    --surface-2: #f1f5f9;
    --surface-3: #e2e8f0;
    --text: #0f172a;
    --text-muted: #475569;
    --text-subtle: #94a3b8;
    --border: #cbd5e1;
    --border-strong: #94a3b8;
    --focus: #2563eb;
    --focus-glow: color-mix(in srgb, var(--focus) 25%, transparent);
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --danger: #dc2626;
    --danger-hover: #b91c1c;
    --danger-text: #ffffff;
    --ok: #16a34a;
    --ok-dim: #dcfce7;
    --warn: #d97706;
    --warn-dim: #fef3c7;
    --idle: #64748b;
    --user-msg: #dbeafe;
    --user-msg-border: #3b82f6;
    --assistant-msg: #dcfce7;
    --assistant-msg-border: #22c55e;
    --bot-msg: #f3e8ff;
    --bot-msg-border: #a855f7;
    --system-msg: #f1f5f9;
    --system-msg-border: #94a3b8;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, color-mix(in srgb, var(--primary) 12%, transparent), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, color-mix(in srgb, var(--bot-msg-border) 8%, transparent), transparent),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Status bar ───────────────────────────────────────────── */

.status-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
  padding: 0.625rem 1.25rem;
  min-height: var(--header-h);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 20;
}

.status-bar__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-right: 0.5rem;
  padding-right: 1rem;
  border-right: 1px solid var(--border);
}

.status-bar__logo {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.status-bar__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.status-bar__group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: var(--touch);
}

.status-bar__group--grow {
  flex: 1 1 12rem;
  min-width: 0;
}

.status-bar__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.status-bar__value {
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-muted);
}

.status-bar__logout {
  margin-left: auto;
  min-height: 2.25rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
}

@media (max-width: 719px) {
  .status-bar {
    gap: 0.375rem 0.75rem;
    padding: 0.5rem 0.875rem;
  }

  .status-bar__group--meta {
    display: none;
  }

  .status-bar__brand {
    margin-right: 0.25rem;
    padding-right: 0.625rem;
  }

  .status-bar__title {
    font-size: 0.9375rem;
  }
}

.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 1.75rem;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.status-badge::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.85;
}

.status-badge[data-state="IDLE"] {
  background: color-mix(in srgb, var(--text-subtle) 12%, var(--surface-2));
  color: var(--text-subtle);
  border-color: var(--border);
}

.status-badge[data-state="CONNECTING"] {
  background: color-mix(in srgb, var(--idle) 25%, var(--surface-2));
  color: var(--text-muted);
  border-color: var(--border);
}

@media (prefers-reduced-motion: no-preference) {
  .status-badge[data-state="CONNECTING"]::before {
    animation: pulse-dot 1.4s ease-in-out infinite;
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.status-badge[data-state="SYNCING"] {
  background: color-mix(in srgb, var(--warn) 22%, var(--surface-2));
  color: var(--warn);
  border-color: color-mix(in srgb, var(--warn) 40%, var(--border));
}

.status-badge[data-state="LIVE"] {
  background: color-mix(in srgb, var(--ok) 18%, var(--surface-2));
  color: var(--ok);
  border-color: color-mix(in srgb, var(--ok) 45%, var(--border));
  box-shadow: 0 0 12px color-mix(in srgb, var(--ok) 25%, transparent);
}

/* ── Global alerts ────────────────────────────────────────── */

.global-status {
  margin: 0.75rem 1.25rem 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

.global-status[data-level="error"] {
  border-color: color-mix(in srgb, var(--danger) 50%, var(--border));
  background: color-mix(in srgb, var(--danger) 10%, var(--surface));
}

.global-status[data-level="info"] {
  border-color: color-mix(in srgb, var(--focus) 50%, var(--border));
  background: color-mix(in srgb, var(--focus) 8%, var(--surface));
}

.global-status[data-level="warn"] {
  border-color: color-mix(in srgb, var(--warn) 50%, var(--border));
  background: color-mix(in srgb, var(--warn) 10%, var(--surface));
}

/* ── Layout ───────────────────────────────────────────────── */

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

body.is-signed-out .layout {
  max-width: 26rem;
  padding-top: clamp(1.5rem, 8vh, 4rem);
}

body.is-signed-out .pane--conversations,
body.is-signed-out .pane--chat {
  display: none;
}

@media (min-width: 960px) {
  body.is-signed-in .layout {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.7fr);
    align-items: start;
    gap: 1.25rem;
    padding-top: 1.25rem;
  }

  .pane--chat {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    max-height: calc(100dvh - var(--header-h) - 2.5rem);
    display: flex;
    flex-direction: column;
  }
}

/* ── Panes ────────────────────────────────────────────────── */

.pane {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  min-width: 0;
  box-shadow: var(--shadow-md);
}

.pane__header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.pane__heading-block {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.pane__subtitle {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-subtle);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pane__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  opacity: 0.9;
}

.pane h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.auth-lede {
  margin: -0.25rem 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.25rem 0 1rem;
  color: var(--text-subtle);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.field-hint {
  margin: -0.15rem 0 0.15rem;
  font-size: 0.75rem;
  color: var(--text-subtle);
  line-height: 1.4;
}

.pane-subheading {
  margin: 0.75rem 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stack:last-child {
  margin-bottom: 0;
}

.inline-form {
  display: grid;
  gap: 0.5rem;
}

/* ── Forms ────────────────────────────────────────────────── */

label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

input,
textarea,
select {
  width: 100%;
  min-height: var(--touch);
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--text);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

input:hover:not(:disabled),
textarea:hover:not(:disabled),
select:hover:not(:disabled) {
  border-color: var(--border-strong);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px var(--focus-glow);
  outline: none;
}

textarea {
  min-height: 4.5rem;
  resize: vertical;
  line-height: 1.45;
}

select {
  cursor: pointer;
  appearance: none;
  padding-right: 2.25rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 1.125rem) calc(50% - 2px),
    calc(100% - 0.75rem) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

button {
  min-height: var(--touch);
  min-width: var(--touch);
  padding: 0.5rem 1.125rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
  box-shadow: var(--shadow-sm);
}

button:hover:not(:disabled) {
  background: var(--primary-hover);
  box-shadow: var(--shadow-md);
}

button:active:not(:disabled) {
  transform: scale(0.98);
}

button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  box-shadow: none;
}

button.secondary {
  background: var(--surface-3);
  color: var(--text);
  border-color: var(--border);
}

button.secondary:hover:not(:disabled) {
  background: color-mix(in srgb, var(--surface-3) 80%, var(--text-muted));
  border-color: var(--border-strong);
}

button.danger {
  background: var(--danger);
  color: var(--danger-text);
  border-color: var(--danger);
}

button.danger:hover:not(:disabled) {
  background: var(--danger-hover);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: var(--touch);
  cursor: pointer;
}

.checkbox-row input {
  width: 1.125rem;
  height: 1.125rem;
  min-height: auto;
  accent-color: var(--primary);
  cursor: pointer;
}

.hint {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-subtle);
  line-height: 1.45;
}

/* ── Conversation list ────────────────────────────────────── */

.conv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.conv-list__btn,
.conv-list button {
  width: 100%;
  text-align: left;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.conv-list__title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conv-list__meta {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-subtle);
}

.conv-list button:hover:not(:disabled) {
  background: var(--surface-3);
  border-color: var(--border-strong);
}

.conv-list button[aria-current="true"] {
  background: color-mix(in srgb, var(--primary) 12%, var(--surface-2));
  border-color: var(--primary);
  box-shadow: inset 3px 0 0 var(--primary);
  color: var(--text);
}

.conv-list button[aria-current="true"] .conv-list__meta {
  color: color-mix(in srgb, var(--primary) 70%, var(--text-muted));
}

.empty-state {
  display: grid;
  gap: 0.35rem;
  place-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  min-height: 12rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-2) 70%, transparent);
}

.empty-state--inline {
  min-height: 0;
  padding: 1rem 0.875rem;
  margin-top: 0.25rem;
}

.empty-state__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
}

.empty-state__body {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-subtle);
  line-height: 1.45;
}

/* ── Chat pane ────────────────────────────────────────────── */

.chat-toolbar {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.chat-toolbar h2 {
  margin: 0;
}

.breaker-panel {
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  border: 1px dashed color-mix(in srgb, var(--warn) 35%, var(--border));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--warn) 4%, var(--surface-2));
}

.breaker-panel[open] {
  padding: 0.75rem 1rem 1rem;
}

.breaker-panel__summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-height: var(--touch);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

.breaker-panel__summary::-webkit-details-marker {
  display: none;
}

.breaker-panel__summary::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.breaker-panel[open] > .breaker-panel__summary::before {
  transform: rotate(45deg);
}

.breaker-panel__intro {
  margin: 0.75rem 0;
}

.breaker-grid {
  display: grid;
  gap: 0.625rem;
}

@media (min-width: 600px) {
  .breaker-grid {
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 0.625rem;
  }
}

.breaker-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.breaker-btn {
  width: 100%;
  min-height: var(--touch);
  text-align: left;
  font-size: 0.875rem;
}

.breaker-hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-subtle);
  line-height: 1.4;
}

.breaker-hint code {
  font-family: var(--mono);
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  background: var(--bg-elevated);
  border-radius: 4px;
  color: color-mix(in srgb, var(--warn) 70%, var(--text));
}

/* ── Message feed ─────────────────────────────────────────── */

.message-feed {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1 1 auto;
  min-height: 14rem;
  max-height: min(50vh, 28rem);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box,
    linear-gradient(180deg, var(--border) 0%, transparent 100%) border-box;
  scroll-behavior: smooth;
}

@media (min-width: 960px) {
  .message-feed {
    max-height: none;
    min-height: 10rem;
  }
}

.feed-empty {
  display: block;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-subtle);
  line-height: 1.5;
}

.feed-empty[hidden] {
  display: none;
}

.message-feed::-webkit-scrollbar {
  width: 6px;
}

.message-feed::-webkit-scrollbar-track {
  background: transparent;
}

.message-feed::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: var(--radius-pill);
}

.message {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.75rem;
  padding: 0.75rem 0.875rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left-width: 3px;
  transition:
    background-color var(--transition),
    transform var(--transition);
  animation: message-in 220ms ease-out;
}

@keyframes message-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message[data-role="user"] {
  background: var(--user-msg);
  border-left-color: var(--user-msg-border);
  margin-left: 1.5rem;
}

.message[data-role="assistant"] {
  background: var(--assistant-msg);
  border-left-color: var(--assistant-msg-border);
  margin-right: 1.5rem;
}

.message[data-role="bot"] {
  background: var(--bot-msg);
  border-left-color: var(--bot-msg-border);
  margin-right: 1.5rem;
}

.message[data-role="system"] {
  background: var(--system-msg);
  border-left-color: var(--system-msg-border);
  margin-inline: 2rem;
  font-size: 0.9rem;
}

.message__seq {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: var(--text-subtle);
  align-self: start;
}

.message__meta {
  grid-column: 2;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: capitalize;
}

.message__content {
  grid-column: 1 / -1;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.5;
  padding-top: 0.125rem;
}

/* ── Composer ─────────────────────────────────────────────── */

.composer {
  display: grid;
  gap: 0.5rem;
  padding: 0.875rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.composer[aria-busy="true"] textarea,
.composer[aria-busy="true"] button {
  opacity: 0.55;
}

.composer textarea {
  min-height: 3.5rem;
  max-height: 10rem;
}

.composer__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.composer__hint {
  margin: 0;
  flex: 1;
  min-width: 0;
}

.composer__footer button[type="submit"] {
  flex-shrink: 0;
  min-width: 6rem;
}

.composer__keys {
  margin: 0;
  font-size: 0.75rem;
}
