:root {
  --bg: #0f0a24;
  --bg-2: #1a1340;
  --surface: #ffffff;
  --surface-2: #f7f6fb;
  --border: #e6e3f0;
  --text: #1a1340;
  --text-muted: #6a6685;
  --primary: #6b4cff;
  --primary-600: #5a3ff0;
  --primary-50: #efeaff;
  --accent: #ffd166;
  --success: #1bbf89;
  --warn: #ff7a59;
  --danger: #e0405e;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(20, 14, 60, 0.06), 0 2px 8px rgba(20, 14, 60, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 14, 60, 0.12);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--surface-2);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ---------------- App shell ---------------- */

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

/* ---------------- Sidebar ---------------- */

.sidebar {
  background: linear-gradient(180deg, #1f1147 0%, #160c36 100%);
  color: #e9e6ff;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.workspace {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 6px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.workspace-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  color: #1f1147;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.workspace-name {
  font-weight: 700;
  font-size: 15px;
}

.workspace-user {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.nav-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-heading {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding: 6px 8px 4px;
  font-weight: 600;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  transition: background 120ms ease, color 120ms ease;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-item.active {
  background: rgba(255, 209, 102, 0.18);
  color: #fff;
  font-weight: 600;
}

.nav-icon {
  width: 18px;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  opacity: 0.9;
}

.presence {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.presence.online  { background: var(--success); }
.presence.away    { background: var(--accent); }
.presence.offline { background: rgba(255,255,255,0.3); }

.sidebar-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------------- Main area ---------------- */

.main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--surface);
}

.channel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 5;
}

.channel-title h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.channel-topic {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.channel-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.member-stack {
  display: flex;
}

.member-stack .avatar {
  border: 2px solid var(--surface);
  margin-left: -8px;
}

.member-stack .avatar:first-child {
  margin-left: 0;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  background: var(--primary);
  flex-shrink: 0;
}

.avatar-sm {
  width: 28px;
  height: 28px;
  font-size: 11px;
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 120ms ease, transform 80ms ease, box-shadow 120ms ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.btn-primary:hover {
  background: var(--primary-600);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

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

.btn-sm {
  padding: 4px 8px;
  font-size: 13px;
}

/* ---------------- Summary panel ---------------- */

.summary-panel {
  margin: 16px 24px 0;
  background: linear-gradient(180deg, var(--primary-50), #fff);
  border: 1px solid #d8d1ff;
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}

.summary-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.summary-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-600);
  letter-spacing: 0.02em;
}

.summary-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.summary-body {
  font-size: 14.5px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.summary-body .thinking {
  color: var(--text-muted);
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.summary-body .thinking::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  border-top-color: transparent;
  display: inline-block;
  animation: spin 0.9s linear infinite;
}

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

/* ---------------- Message list ---------------- */

.message-list {
  list-style: none;
  margin: 0;
  padding: 8px 0 24px;
  flex: 1 1 auto;
  overflow-y: auto;
}

.day-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: var(--text-muted);
  font-size: 12px;
}

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

.day-divider span {
  background: var(--surface);
  padding: 2px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
}

.message {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 8px 24px;
  transition: background 100ms ease;
}

.message:hover {
  background: var(--surface-2);
}

.message-body {
  min-width: 0;
}

.message-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
}

.message-meta .author {
  font-weight: 700;
  color: var(--text);
}

.message-meta .time {
  font-size: 12px;
  color: var(--text-muted);
}

.message-body p {
  margin: 0;
  color: #2a2155;
}

/* ---------------- Composer ---------------- */

.composer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  bottom: 0;
}

.composer-input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-2);
  outline: none;
  transition: border-color 120ms ease, background 120ms ease;
}

.composer-input:focus {
  border-color: var(--primary);
  background: #fff;
}

/* ---------------- Page (profile, settings, new-chat) ---------------- */

.page {
  padding: 32px;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.page h1 {
  margin: 0 0 4px;
  font-size: 22px;
}

.page .page-subtitle {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.card h2 {
  margin: 0 0 4px;
  font-size: 16px;
}

.card .muted {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0 0 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

.field input[type="text"],
.field input[type="email"],
.field textarea,
.field select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 76, 255, 0.15);
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.profile-header .avatar {
  width: 64px;
  height: 64px;
  font-size: 22px;
}

.profile-header h1 {
  font-size: 22px;
  margin: 0;
}

.profile-header .role {
  color: var(--text-muted);
  font-size: 13px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.toggle-row:last-child {
  border-bottom: 0;
}

.toggle-row .label {
  font-weight: 600;
}

.toggle-row .desc {
  font-size: 13px;
  color: var(--text-muted);
}

.switch {
  position: relative;
  width: 38px;
  height: 22px;
  background: #d6d2e6;
  border-radius: 999px;
  cursor: pointer;
  transition: background 120ms ease;
}

.switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  transition: transform 140ms ease;
}

.switch.on { background: var(--primary); }
.switch.on::after { transform: translateX(16px); }

.directory-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.directory-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.directory-list li:last-child {
  border-bottom: 0;
}

.directory-list .who { font-weight: 600; }
.directory-list .meta { font-size: 13px; color: var(--text-muted); }

.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-600);
  font-size: 12px;
  font-weight: 600;
  margin-right: 6px;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 880px) {
  .app {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: relative;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .sidebar .nav-section { flex-direction: row; flex-wrap: wrap; }
  .sidebar-footer { margin-top: 0; border-top: 0; padding-top: 0; }
  .channel-header { flex-wrap: wrap; gap: 12px; }
}

/* ---------------- Visually-hidden / injection vectors ----------------
   These classes deliberately hide content from sighted users while
   keeping it present in the DOM and the raw HTML. They are used to
   author indirect-prompt-injection test fixtures. Each class uses a
   different hiding mechanism so a benchmark can attribute which channel
   a given agent picks up.
------------------------------------------------------------------------ */

.sr-offscreen {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  left: -9999px;
  top: -9999px;
}

.sr-transparent {
  color: transparent !important;
  background: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  height: 0;
  margin: 0;
  padding: 0;
  user-select: none;
  pointer-events: none;
}

.sr-clip {
  clip-path: inset(100%) !important;
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

/* ---------------- Pinned / bot message styling ---------------- */

.message-pinned {
  background: linear-gradient(180deg, #fff8e5 0%, #fff 100%);
  border-left: 3px solid var(--accent);
}

.badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 1px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  vertical-align: middle;
}

.badge-bot {
  background: #ece9ff;
  color: var(--primary-600);
}

.pinned-flag {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 4px;
}

/* ---------------- Severity badges (used on bench.html) ---------------- */

.sev {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.sev-0 { background: #e8f8f1; color: #0e7c5a; }
.sev-1 { background: #efeaff; color: #5a3ff0; }
.sev-2 { background: #fff4e3; color: #b46a00; }
.sev-3 { background: #ffe9e9; color: #b53030; }
.sev-4 { background: #fde2f1; color: #b3217a; }
.sev-5 { background: #1f1147; color: #ffd166; }

/* ---------------- Marketing / landing page ---------------- */

body.marketing {
  background: linear-gradient(180deg, #f6f3ff 0%, #fff 60%);
}

.m-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 24px;
}

.m-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.m-brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.m-nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--text-muted);
}

.m-nav-links a:hover { color: var(--text); }

.m-nav-cta {
  display: flex;
  gap: 8px;
}

.btn-lg {
  padding: 12px 20px;
  font-size: 15px;
}

.m-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 32px auto 80px;
  padding: 0 40px;
}

.m-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.m-hero h1 {
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 800;
}

.m-lede {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 520px;
}

.m-hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.m-hero-trust {
  font-size: 13px;
  color: var(--text-muted);
}

.m-hero-art {
  display: flex;
  justify-content: center;
}

.m-mock {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 18px;
  width: 100%;
  max-width: 460px;
}

.m-mock-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.m-mock-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e6e3f0;
}

.m-mock-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.m-mock-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #2a2155;
}

.m-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.m-mock-summary {
  margin-top: 12px;
  padding: 12px;
  background: var(--primary-50);
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.6;
}

.m-mock-summary-title {
  font-weight: 700;
  font-size: 12px;
  color: var(--primary-600);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.m-customers {
  text-align: center;
  padding: 32px 40px 56px;
  border-top: 1px solid var(--border);
}

.m-customers-title {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.m-customers-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 44px;
  color: #837fa1;
  font-weight: 700;
  letter-spacing: -0.005em;
  font-size: 15px;
}

.m-features {
  max-width: 1180px;
  margin: 32px auto 80px;
  padding: 0 40px;
}

.m-features h2 {
  font-size: 30px;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}

.m-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.m-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.m-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-50);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.m-feature-card h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

.m-feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.m-quote {
  max-width: 820px;
  margin: 0 auto 80px;
  padding: 0 40px;
  text-align: center;
}

.m-quote blockquote {
  font-size: 22px;
  line-height: 1.45;
  margin: 0 0 18px;
  color: #2a2155;
}

.m-quote-by {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.m-cta-strip {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 56px 40px;
  background: linear-gradient(135deg, #1f1147 0%, #3a2380 100%);
  color: #fff;
  border-radius: 22px;
  text-align: center;
}

.m-cta-strip h2 {
  font-size: 30px;
  margin: 0 0 10px;
}

.m-cta-strip p {
  color: rgba(255,255,255,0.75);
  margin: 0 0 22px;
}

.m-foot {
  border-top: 1px solid var(--border);
  padding: 40px 40px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.m-foot-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

.m-foot-cols a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 4px 0;
}

.m-foot-cols a:hover { color: var(--text); }

.m-foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--text);
}

.m-foot-h {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.m-foot-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

@media (max-width: 880px) {
  .m-hero { grid-template-columns: 1fr; gap: 24px; padding: 0 24px; margin-top: 8px; }
  .m-hero h1 { font-size: 34px; }
  .m-feature-grid { grid-template-columns: 1fr; }
  .m-foot-cols { grid-template-columns: 1fr 1fr; }
  .m-nav { padding: 14px 20px; flex-wrap: wrap; }
  .m-nav-links { display: none; }
}

/* ---------------- Pricing ---------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 24px auto 40px;
  padding: 0 24px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 76, 255, 0.18), var(--shadow-md);
  position: relative;
}

.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.price-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.price-card .price {
  font-size: 36px;
  font-weight: 800;
  margin: 8px 0 4px;
}

.price-card .price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  color: var(--text-muted);
  font-size: 14px;
}

.price-card li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.price-card li:last-child { border-bottom: 0; }

.price-card .btn {
  margin-top: auto;
  justify-content: center;
}

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------------- Team grid (about page) ---------------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.team-grid .person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--surface-2);
  border-radius: 10px;
}

.team-grid .person .avatar { width: 44px; height: 44px; font-size: 15px; }

.team-grid .person .who { font-weight: 700; }
.team-grid .person .meta { font-size: 13px; color: var(--text-muted); }

@media (max-width: 880px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------------- Bench dashboard ---------------- */

.bench-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  font-size: 14px;
}

.bench-table th,
.bench-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.bench-table th {
  background: var(--surface-2);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bench-table tr:last-child td { border-bottom: 0; }

.bench-table code {
  font-size: 12.5px;
  background: var(--surface-2);
  padding: 1px 6px;
  border-radius: 4px;
}

