:root {
  /* @instrou avatar #711811 over/under banner siding #bfbdbd / #e0e3ec */
  --crimson: 4.4 73.8% 25.5%;
  --hoodie: 351 25% 39%;
  --background: 30 10% 88%;
  --foreground: 4 38% 12%;
  --card: 30 14% 94%;
  --card-foreground: 4 38% 12%;
  --popover: 30 14% 94%;
  --popover-foreground: 4 38% 12%;
  --primary: 4.4 73.8% 25.5%;
  --primary-foreground: 30 20% 96%;
  --secondary: 30 8% 82%;
  --secondary-foreground: 4.4 73.8% 22%;
  --muted: 30 8% 82%;
  --muted-foreground: 4 18% 32%;
  --accent: 4 28% 90%;
  --accent-foreground: 4.4 73.8% 22%;
  --destructive: 4 74% 32%;
  --border: 4 12% 70%;
  --input: 4 12% 70%;
  --ring: 4.4 73.8% 25.5%;
  --gold: 4.4 73.8% 25.5%;
  --radius: 0.5rem;
  --header-h: 3.5rem;
}

.dark {
  --background: 20 8% 12%;
  --foreground: 30 18% 94%;
  --card: 20 9% 16%;
  --card-foreground: 30 18% 94%;
  --popover: 20 9% 16%;
  --popover-foreground: 30 18% 94%;
  --primary: 4.4 73.8% 32%;
  --primary-foreground: 30 20% 96%;
  --secondary: 20 8% 18%;
  --secondary-foreground: 30 18% 94%;
  --muted: 20 7% 18%;
  --muted-foreground: 30 8% 70%;
  --accent: 4 28% 18%;
  --accent-foreground: 30 18% 94%;
  --destructive: 4 62% 38%;
  --border: 4 18% 24%;
  --input: 4 18% 24%;
  --ring: 4.4 60% 62%;
  --gold: 4.4 73.8% 42%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #e4e0da; }
html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: #e4e0da;
  background-image: linear-gradient(180deg, #ece8e2 0%, #ddd9d3 48%, #d2cec8 100%);
  background-attachment: fixed;
}
.dark body {
  background-color: #2a2422;
  background-image: linear-gradient(180deg, #3a3432 0%, #241e1c 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
code, kbd, .mono { font-family: "Geist Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace; }

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 8px 12px;
  border-radius: calc(var(--radius) - 2px);
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  border-bottom: 1px solid hsl(var(--border));
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--background));
}
.banner a {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
}
.banner a:hover { text-decoration: underline; }

.ll-beam {
  display: flex;
  align-items: stretch;
  height: 2.5rem;
  overflow: hidden;
  background: #d8d4ce;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}
.ll-L, .ll-l {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  background: #711811;
  color: #e6e2dc;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}
.ll-l { font-weight: 500; font-size: 1.65rem; }
.ll-zeros {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.2em;
  color: #711811;
  opacity: 0.42;
  font-size: 1.15rem;
  line-height: 2.5rem;
  padding: 0 6px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-bottom: 1px solid rgba(113, 24, 17, 0.2);
  background-color: #e6e2dc;
  color: #711811;
}
.header .brand,
.header .nav a,
.header .icon-btn { color: #711811; }
.header .nav a:hover,
.header .nav a[aria-current="page"] {
  color: #4a100c;
  background: rgba(113, 24, 17, 0.1);
}
.header .icon-btn:hover { background: rgba(113, 24, 17, 0.1); }
.header-inner {
  height: var(--header-h);
  width: min(1400px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.dark .header {
  background-color: #2c2624;
  color: #e8c8c4;
}
.dark .header .brand,
.dark .header .nav a,
.dark .header .icon-btn { color: #e8c8c4; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand img { width: 22px; height: 22px; border-radius: 5px; }
.nav {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}
.nav a {
  text-decoration: none;
  color: hsl(var(--foreground) / 0.8);
  font-size: 0.875rem;
  padding: 6px 10px;
  border-radius: calc(var(--radius) - 2px);
}
.nav a:hover, .nav a[aria-current="page"] {
  color: hsl(var(--foreground));
  background: hsl(var(--muted) / 0.6);
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  color: hsl(var(--foreground));
}
.icon-btn:hover { background: hsl(var(--muted)); }
.icon-btn svg { width: 16px; height: 16px; }

.container {
  width: min(1400px, calc(100% - 2rem));
  margin: 0 auto;
}
.narrow { width: min(760px, calc(100% - 2rem)); margin: 0 auto; }

.hero {
  padding: 4.5rem 0 2.5rem;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 18ch;
}
.hero p.lede {
  margin: 0 0 1.6rem;
  max-width: 42rem;
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: calc(var(--radius) - 2px);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn:hover { opacity: 0.92; }
.btn.is-off, .btn:disabled { opacity: 0.45; pointer-events: none; }
.btn-outline {
  background: transparent;
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}
.btn-outline:hover { background: hsl(var(--muted)); opacity: 1; }
.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
}
.btn-sm { height: 32px; padding: 0 12px; font-size: 0.8rem; }

.showcase {
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: hsl(var(--card) / 0.92);
  box-shadow:
    0 0 0 1px hsl(var(--border) / 0.4),
    0 18px 40px rgba(113, 24, 17, 0.18);
}
.showcase-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.35);
}
.dots { display: flex; gap: 6px; padding: 0 4px; }
.dots span {
  width: 10px; height: 10px; border-radius: 99px;
  background: hsl(var(--border));
}
.showcase-toolbar .title {
  font-size: 0.78rem;
  color: hsl(var(--muted-foreground));
  margin-left: 4px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 260px;
  min-height: 520px;
}
.panel {
  padding: 14px;
  border-right: 1px solid hsl(var(--border));
}
.panel:last-child { border-right: 0; border-left: 1px solid hsl(var(--border)); }
.panel h2 {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  font-weight: 600;
}
.field { margin: 0 0 12px; }
.field label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 6px;
}
.field input[type="range"] { width: 100%; accent-color: hsl(var(--foreground)); }
.field input[type="url"], .field input[type="text"] {
  width: 100%;
  height: 36px;
  border: 1px solid hsl(var(--input));
  background: hsl(var(--background));
  border-radius: calc(var(--radius) - 2px);
  padding: 0 10px;
  font-size: 0.8rem;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.chip.on {
  color: hsl(var(--foreground));
  background: hsl(var(--muted));
}

.stage {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    radial-gradient(800px 280px at 50% 0%, hsl(var(--muted) / 0.55), transparent 70%),
    hsl(var(--background));
}
.screen {
  flex: 1;
  min-height: 280px;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: #0b0b0d;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.screen img {
  width: min(72%, 520px);
  height: auto;
  filter: brightness(var(--f-bright, 1)) contrast(var(--f-contrast, 1)) saturate(var(--f-saturate, 1));
  transition: filter 120ms linear;
}
.leaf {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 0.72rem;
  color: #cfc6b8;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}
.controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.riffle {
  flex: 1;
  accent-color: hsl(var(--foreground));
}
.kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border: 1px solid hsl(var(--border));
  border-bottom-width: 2px;
  border-radius: 4px;
  font-size: 0.7rem;
  color: hsl(var(--muted-foreground));
}

.stat {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 10px 12px;
  margin-bottom: 8px;
}
.stat b { display: block; font-size: 1.05rem; letter-spacing: -0.02em; }
.stat span { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

.keys { display: grid; gap: 6px; font-size: 0.8rem; color: hsl(var(--muted-foreground)); }
.keys div { display: flex; justify-content: space-between; gap: 8px; }

.section {
  padding: 4.5rem 0;
}
.section h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}
.section .sub {
  color: hsl(var(--muted-foreground));
  margin: 0 0 1.6rem;
  max-width: 40rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.card {
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 2px);
  padding: 18px;
  background: hsl(var(--card));
}
.card h3 { margin: 0 0 6px; font-size: 1rem; letter-spacing: -0.02em; }
.card p { margin: 0; color: hsl(var(--muted-foreground)); font-size: 0.9rem; }

.codebox {
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: hsl(var(--card));
}
.codebox header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid hsl(var(--border));
  font-size: 0.78rem;
  color: hsl(var(--muted-foreground));
}
.codebox pre {
  margin: 0;
  padding: 16px 18px;
  font-size: 0.82rem;
  overflow: auto;
  line-height: 1.7;
}
.copy-ok { color: hsl(142 70% 45%); }

.docs h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.6rem;
}
.docs p { color: hsl(var(--muted-foreground)); }
.docs h2 { margin: 2rem 0 0.5rem; font-size: 1.25rem; letter-spacing: -0.02em; color: hsl(var(--foreground)); }
.docs ul { color: hsl(var(--muted-foreground)); padding-left: 1.1rem; }
.docs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 0.8rem 0 1.4rem;
}
.docs th, .docs td {
  text-align: left;
  border-bottom: 1px solid hsl(var(--border));
  padding: 8px 6px;
}
.docs th { color: hsl(var(--muted-foreground)); font-weight: 500; }

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-top: 1px solid rgba(113, 24, 17, 0.2);
  padding: 0;
  color: #4a342e;
  font-size: 0.8rem;
  background-color: #e6e2dc;
}
.site-footer a { color: #711811; }
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 1.2rem 16px 1.4rem;
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.hub-tabs {
  display: flex;
  gap: 4px;
  margin: 0 0 12px;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 2px);
  padding: 4px;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  background: hsl(var(--muted) / 0.35);
}
.hub-tabs button {
  appearance: none;
  border: 0;
  background: transparent;
  color: hsl(var(--muted-foreground));
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
}
.hub-tabs button[aria-selected="true"] {
  background: #711811;
  color: #f4ece8;
  box-shadow: 0 0 0 1px rgba(113, 24, 17, 0.4);
}
.hub-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  padding: 22px;
  align-items: center;
}
.hub-preview img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: #0b0b0d;
}
.hub-preview h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}
.hub-preview p {
  margin: 0 0 14px;
  color: hsl(var(--muted-foreground));
}
@media (max-width: 860px) {
  .hub-preview { grid-template-columns: 1fr; }
}

.mew-hero { padding: 3rem 0 1.4rem; }
.mew-hero h1 { margin: 0 0 0.5rem; font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.04em; }
.ticker { font-family: "IBM Plex Mono", ui-monospace, monospace; color: hsl(var(--muted-foreground)); font-size: 0.85rem; }
.mew-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 1.2rem 0 1.4rem;
}
.mew-stats .stat { margin: 0; }
.up { color: #22c55e; }
.down { color: #ef4444; }
.chart-frame {
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: hsl(var(--card));
  min-height: 380px;
}
.chart-frame iframe { display: block; width: 100%; height: 420px; border: 0; }
.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.6rem 0;
}
.pay-card {
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 2px);
  padding: 18px;
  background: hsl(var(--card));
}
.pay-card h2 { margin: 0 0 8px; font-size: 1.05rem; letter-spacing: -0.02em; }
.pay-card p { margin: 0 0 12px; color: hsl(var(--muted-foreground)); font-size: 0.9rem; }
.qr-wrap {
  display: grid;
  place-items: center;
  padding: 8px;
  background: #ece8e2;
  border-radius: 6px;
  margin: 0 auto;
  width: 188px;
  height: 188px;
  box-shadow:
    0 0 0 3px #711811,
    0 0 0 6px #c4a46a,
    0 8px 20px rgba(113, 24, 17, 0.35);
}
.qr-wrap canvas, .qr-wrap img { width: 172px; height: 172px; }

.one-mew-grid { align-items: start; }
.one-mew-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.one-mew {
  --gold: #c4a46a;
  position: relative;
  display: block;
  width: min(100%, 360px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  border: 10px solid #c4a46a;
  box-shadow:
    inset 0 0 0 3px #ece8e2,
    inset 0 0 0 6px #711811,
    0 0 0 2px #4a100c,
    0 24px 48px rgba(113, 24, 17, 0.4);
  background: #0b1c28;
  cursor: pointer;
}
.one-mew:hover,
.one-mew:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 3px #ece8e2,
    inset 0 0 0 6px #711811,
    0 0 0 2px #4a100c,
    0 28px 56px rgba(113, 24, 17, 0.5);
}
.one-mew-gif {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  pointer-events: none;
}
.one-mew-shine {
  pointer-events: none;
  position: absolute;
  inset: -50%;
  z-index: 1;
  background: linear-gradient(120deg, transparent 35%, rgba(236,232,226,0.55) 48%, rgba(196,164,106,0.45) 50%, rgba(113,24,17,0.2) 52%, transparent 65%);
  animation: one-mew-foil 6.5s linear infinite;
  mix-blend-mode: overlay;
}
@keyframes one-mew-foil {
  from { transform: translateX(-25%) rotate(12deg); }
  to { transform: translateX(25%) rotate(12deg); }
}
.one-mew-stamp {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(236, 232, 226, 0.88);
  border: 1px solid #c4a46a;
  font-family: Cinzel, serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: #711811;
}
.one-mew-slot .addr {
  width: min(100%, 360px);
  color: #4a342e;
  background: rgba(236, 232, 226, 0.82);
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #c4a46a;
}
.one-mew-mint {
  font-size: 0.78rem;
  color: #711811;
}
.addr {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  word-break: break-all;
  color: hsl(var(--muted-foreground));
  margin: 0 0 10px;
}
.pay-card input[type="text"] {
  width: 100%;
  height: 36px;
  border: 1px solid hsl(var(--input));
  background: hsl(var(--background));
  border-radius: calc(var(--radius) - 2px);
  padding: 0 10px;
  font-size: 0.8rem;
  margin: 6px 0 0;
}
.onchain-canvas {
  width: 100%;
  height: 180px;
  display: block;
}
.chain-note { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin: 8px 0 0; }
.rh-steps {
  margin: 0 0 14px;
  padding-left: 1.2rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}
.rh-steps li { margin: 0.35rem 0; }
.rh-steps b { color: hsl(var(--foreground)); font-weight: 600; }
@media (max-width: 860px) {
  .mew-stats, .pay-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .mew-stats, .pay-grid { grid-template-columns: 1fr; }
  .chart-frame iframe { height: 320px; }
  .one-mew { width: min(100%, 320px); }
}

@media (max-width: 980px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .panel { border-right: 0; border-bottom: 1px solid hsl(var(--border)); }
  .panel:last-child { border-left: 0; }
  .cards { grid-template-columns: 1fr; }
  .header { height: auto; }
  .header-inner { flex-wrap: wrap; padding: 8px 0; }
  .nav { display: flex; flex-wrap: wrap; width: 100%; order: 3; }
}
@media (max-width: 640px) {
  .hero { padding: 2.4rem 0 1.4rem; }
  .hero h1 { max-width: none; }
}

.bot-desk {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 12px;
  margin: 0 0 3rem;
  align-items: start;
}
.bot-roster { display: grid; gap: 8px; }
.bot-card {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card) / 0.92);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.bot-card b { display: block; font-size: 0.95rem; letter-spacing: -0.02em; }
.bot-card span {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}
.bot-card.busy {
  border-color: #711811;
  box-shadow: 0 0 0 1px rgba(113, 24, 17, 0.25);
}
.bot-card.busy span { color: #711811; }
.bot-stage {
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: hsl(var(--card) / 0.92);
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.bot-pulse {
  margin-left: auto;
  font-size: 0.75rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: hsl(var(--muted-foreground));
}
.bot-thread {
  flex: 1;
  min-height: 280px;
  max-height: 520px;
  overflow: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bot-msg p { margin: 4px 0 0; font-size: 0.92rem; }
.bot-msg a {
  display: inline-block;
  margin: 8px 10px 0 0;
  font-size: 0.8rem;
  color: #711811;
  font-weight: 500;
}
.bot-meta {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.bot-meta b { color: #711811; font-weight: 700; }
.bot-msg.you .bot-meta b { color: hsl(var(--foreground)); }
.bot-jobs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.35);
}
.bot-jobs button {
  appearance: none;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}
.bot-jobs button:hover,
.bot-jobs button[aria-pressed="true"] {
  background: #711811;
  color: #f4ece8;
  border-color: #711811;
}
.bot-composer {
  display: flex;
  gap: 8px;
  padding: 10px 12px 12px;
  border-top: 1px solid hsl(var(--border));
}
.bot-composer input {
  flex: 1;
  height: 40px;
  border: 1px solid hsl(var(--input));
  background: hsl(var(--background));
  border-radius: calc(var(--radius) - 2px);
  padding: 0 12px;
  font-size: 0.9rem;
}
@media (max-width: 860px) {
  .bot-desk { grid-template-columns: 1fr; }
  .bot-roster { grid-template-columns: 1fr 1fr; }
}
