:root {
  --bg: #0a0a0a;
  --panel: #111;
  --panel-2: #151515;
  --text: #f7f7f7;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.08);
  --teal: #1D9E75;
  --purple: #8b5cf6;
  --mono: 'SF Mono', 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}
a { color: inherit; }
.landing-header {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  z-index: 50;
  width: min(1120px, calc(100% - 1.5rem));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.75rem;
  background: rgba(13,13,13,0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.26);
}
.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 40px;
  padding: 0 0.55rem;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.landing-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.landing-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}
.landing-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.055);
}
.landing-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.landing-menu-toggle span {
  width: 17px;
  height: 1.5px;
  background: rgba(255,255,255,0.78);
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.landing-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.landing-menu-toggle.open span:nth-child(2) { opacity: 0; }
.landing-menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 8.5rem 1.5rem 4rem;
  text-align: center;
}
.hero > div { width: min(100%, 760px); }
.logo-mark { margin: 0 auto 2rem; display: block; }
h1 { margin: 0; font-size: clamp(3rem, 8vw, 5.8rem); font-weight: 300; letter-spacing: -0.07em; }
h2 { margin: 0 0 1rem; font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 300; letter-spacing: -0.05em; }
h3 { margin: 0 0 0.65rem; font-weight: 500; }
p { color: var(--muted); line-height: 1.7; }
.subhead { margin: 1rem 0 2rem; font-size: 1.25rem; }
.cta-row { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-row.left { justify-content: flex-start; margin-bottom: 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: #111;
  cursor: pointer;
  font: inherit;
}
.button.primary { background: var(--teal); border-color: var(--teal); color: #04110d; font-weight: 500; }
.small-button { min-height: 34px; padding: 0 0.8rem; font-size: 0.82rem; }
.button.ghost {
  background: #111;
  color: rgba(255,255,255,0.74);
  border-color: rgba(255,255,255,0.12);
}
.button.ghost:hover { border-color: rgba(255,255,255,0.22); }
.code, pre {
  max-width: 100%;
  margin: 0;
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: rgba(255,255,255,0.82);
  font-family: var(--mono);
  font-size: 0.84rem;
  line-height: 1.7;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
  text-align: left;
}
.copy-wrap { position: relative; margin: 0; }
.copy-wrap pre { padding-right: 6.5rem; }
.copy-button {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  min-height: 30px;
  padding: 0 0.7rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font: 0.74rem var(--mono);
}
.copy-button:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.hero-code { max-width: 620px; margin: 0 auto; position: relative; }
.hero-code::after, .cursor::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 4px;
  background: var(--teal);
  animation: blink 1s steps(1) infinite;
  vertical-align: -0.15em;
}
@keyframes blink { 50% { opacity: 0; } }
.mastercurl {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  background: #111;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  text-decoration: none;
  color: var(--muted);
}
.section { width: 100%; max-width: 1120px; margin: 0 auto; padding: 7rem 1.5rem; min-width: 0; overflow: hidden; }
.grid-3, .grid-2 { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.how-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  padding: 0 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.how-grid .card {
  flex: 0 0 min(360px, 86vw);
  min-width: 0;
  scroll-snap-align: start;
}
.card {
  min-width: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.4rem;
}
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.use-case-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.use-case-card pre {
  margin-top: auto;
}
.wide-card {
  grid-column: span 3;
}
.messaging-section {
  max-width: 980px;
}
.messaging-hero-card {
  background:
    radial-gradient(circle at top left, rgba(29,158,117,0.2), transparent 34rem),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
}
.messaging-curl-grid {
  margin-top: 1.5rem;
}
.messaging-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}
.compact-form {
  margin: 1rem 0 0;
}
.message-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}
.message-room {
  margin-top: 1rem;
}
.message-room textarea {
  resize: vertical;
}
.messenger-shell {
  height: 100vh;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(29,158,117,0.08), transparent 34rem),
    var(--bg);
}
.messenger-sidebar {
  min-height: 0;
  overflow-y: auto;
  padding: 1rem;
  border-right: 1px solid var(--line);
  background: rgba(12,12,12,0.96);
}
.messenger-brand {
  padding: 0.35rem 0.25rem 1rem;
}
.messenger-brand h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
}
.messenger-brand p {
  margin-bottom: 0;
}
.messenger-compose-card {
  padding: 0.9rem;
  margin-bottom: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
}
.messenger-compose-card h2 {
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 0.65rem;
}
.messenger-compose-card .compact-form {
  display: grid;
  gap: 0.55rem;
}
.messenger-tabs {
  margin: 1.15rem 0 0.55rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.conversation-list {
  display: grid;
  gap: 0.5rem;
}
.conversation-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  color: var(--text);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  font: inherit;
}
.conversation-item:hover,
.conversation-item:focus-visible {
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
}
.conversation-avatar {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #04110d;
  background: var(--teal);
  font-weight: 600;
}
.conversation-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}
.conversation-copy strong,
.conversation-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.conversation-copy small,
.conversation-item time,
.empty-list-note {
  color: var(--muted);
  font-size: 0.82rem;
}
.messenger-main {
  min-width: 0;
  min-height: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}
.messenger-room-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(14px);
}
.messenger-room-header h2 {
  margin: 0.4rem 0 0.15rem;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}
.messenger-room-header p {
  margin: 0;
}
.message-thread {
  min-height: 0;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.message-bubble {
  max-width: min(680px, 78%);
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
}
.message-bubble.mine {
  align-self: flex-end;
  background: rgba(29,158,117,0.18);
  border-color: rgba(29,158,117,0.3);
}
.message-bubble.theirs {
  align-self: flex-start;
}
.message-bubble p {
  margin: 0.35rem 0 0;
  color: rgba(255,255,255,0.86);
  white-space: pre-wrap;
}
.message-bubble-meta {
  color: var(--muted);
  font-size: 0.72rem;
  font-family: var(--mono);
}
.empty-message-state {
  margin: auto;
  max-width: 420px;
  text-align: center;
  color: var(--muted);
}
.messenger-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
  background: rgba(12,12,12,0.92);
}
.messenger-composer textarea {
  resize: none;
  min-height: 50px;
  max-height: 130px;
}
.step-num { color: var(--teal); font-family: var(--mono); font-size: 0.75rem; }
.terminal-window { max-width: 640px; margin: 2.5rem auto 0; min-height: 330px; }
.terminal-window .event { color: var(--teal); }
.terminal-window .data { color: rgba(255,255,255,0.68); }
.accent-teal { border-top: 2px solid var(--teal); }
.accent-purple { border-top: 2px solid var(--purple); }
.pill-row { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 1rem; }
.pill { border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.7rem; font-size: 0.82rem; color: var(--muted); }
.pill.teal { color: var(--teal); }
.pill.purple { color: #c4b5fd; }
.footer { padding: 3rem 1.5rem; text-align: center; color: var(--muted); border-top: 1px solid var(--line); }
.footer a { display: inline-flex; min-height: 34px; align-items: center; margin: 0 0.5rem; color: var(--muted); text-decoration: none; }

.app-shell { height: 100vh; min-height: 100vh; display: grid; grid-template-columns: 240px minmax(0, 1fr) 280px; overflow: hidden; }
.side, .context { border-right: 1px solid var(--line); padding: 1.25rem; background: #0c0c0c; }
.side { display: flex; flex-direction: column; gap: 1rem; height: 100vh; overflow: hidden; }
.side-main { flex: 1; min-height: 0; overflow: auto; }
.context { border-right: 0; border-left: 1px solid var(--line); }
.feed { padding: 1.25rem; max-width: 860px; width: 100%; min-height: 0; height: 100vh; margin: 0 auto; display: flex; flex-direction: column; overflow: hidden; }
.feed-top,
.feed-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 0 0 auto;
}
.feed-bottom {
  justify-content: center;
  padding-top: 0.9rem;
}
.feed-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.25rem;
}
.brand { display: flex; gap: 0.7rem; align-items: center; margin-bottom: 1.2rem; }
.nav-list a { display: block; color: var(--muted); text-decoration: none; padding: 0.45rem 0; }
.my-token-card {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem;
  margin: 0 0 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
}
.my-token-card span {
  color: var(--muted);
  font-size: 0.78rem;
}
.my-token-card code {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}
.logout-button {
  width: 100%;
  margin-top: auto;
  color: rgba(255,255,255,0.72);
}
.status { display: inline-flex; gap: 0.5rem; align-items: center; color: var(--muted); margin-bottom: 1rem; }
.feed-top .status { margin-bottom: 0; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; }
.dot.on { background: #22c55e; }
.feed-card { margin-bottom: 0.9rem; }
.badge { border-radius: 999px; padding: 0.18rem 0.55rem; font-size: 0.72rem; font-family: var(--mono); }
.badge.world { background: rgba(29,158,117,0.16); color: var(--teal); }
.badge.circle { background: rgba(139,92,246,0.18); color: #c4b5fd; }
.badge.message { background: rgba(59,130,246,0.18); color: #93c5fd; }
.form { max-width: 680px; margin: 2rem auto 0; display: grid; gap: 1rem; }
label { display: grid; gap: 0.45rem; color: var(--muted); }
input, textarea, select {
  width: 100%;
  background: #101010;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  font: inherit;
}
.check-row {
  grid-template-columns: auto 1fr;
  align-items: center;
}
.check-row input { width: auto; }
.token-page { max-width: 760px; }
.token-card { margin-left: 0; margin-right: 0; }
.token-result { margin-top: 2rem; }
.token-box {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0d0d0d;
  margin: 1rem 0;
}
.token-box code { color: var(--teal); overflow-wrap: anywhere; }
.radio-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.radio-row label { display: inline-flex; align-items: center; gap: 0.4rem; }
.radio-row input { width: auto; }
.owner-page { max-width: 1240px; }
.owner-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.owner-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.owner-channel-list {
  display: grid;
  gap: 0.8rem;
}
.owner-channel-card {
  width: 100%;
  text-align: left;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  cursor: pointer;
  font: inherit;
}
.owner-channel-card.active {
  border-color: rgba(29,158,117,0.5);
  box-shadow: 0 0 0 1px rgba(29,158,117,0.12) inset;
}
.owner-channel-card p { margin: 0.35rem 0 0.75rem; }
.owner-stats {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.78rem;
}
.owner-stats span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
}
.owner-detail {
  min-width: 0;
}
.owner-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.owner-panel {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}
.settings-grid,
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}
.settings-grid p,
.analytics-grid div {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem;
  min-width: 0;
}
.analytics-grid strong {
  display: block;
  color: var(--teal);
  font-size: 1.6rem;
  font-weight: 500;
}
.analytics-grid span { color: var(--muted); font-size: 0.82rem; }
.owner-curl {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #0d0d0d;
}
.owner-curl-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--line);
}
.owner-curl pre {
  border: 0;
  border-radius: 0;
}
.inline-copy {
  position: static;
  min-height: 30px;
}
.detail-page { max-width: 860px; }
.detail-card { overflow: hidden; }
.post-body {
  color: rgba(255,255,255,0.82);
  white-space: pre-wrap;
}

@media (max-width: 1080px) {
  .landing-header {
    width: calc(100% - 1rem);
  }
  .landing-nav a {
    padding: 0 0.65rem;
    font-size: 0.86rem;
  }
  .grid-3:not(.how-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wide-card {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .grid-3:not(.how-grid), .grid-2, .app-shell, .owner-layout, .settings-grid, .analytics-grid, .use-case-grid, .messaging-layout { grid-template-columns: 1fr; }
  .wide-card {
    grid-column: span 1;
  }
  .landing-header {
    top: 0.5rem;
    border-radius: 24px;
  }
  .landing-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }
  .landing-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.55rem;
    background: rgba(13,13,13,0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.42);
  }
  .landing-nav.open {
    display: flex;
  }
  .landing-nav a {
    justify-content: space-between;
    min-height: 44px;
    padding: 0 0.9rem;
    font-size: 0.95rem;
  }
  .hero {
    min-height: 92vh;
    padding: 7.5rem 1rem 3rem;
  }
  .logo-mark {
    width: 68px;
    height: auto;
    margin-bottom: 1.5rem;
  }
  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    letter-spacing: -0.06em;
  }
  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .subhead {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }
  .cta-row {
    gap: 0.65rem;
  }
  .button {
    min-height: 46px;
  }
  .section {
    padding: 5rem 1rem;
  }
  .how-grid {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    scroll-padding-left: 1rem;
  }
  .card {
    border-radius: 18px;
    padding: 1.1rem;
  }
  .terminal-window {
    min-height: 280px;
    font-size: 0.78rem;
  }
  .context { display: none; }
  .app-shell { height: auto; min-height: 100vh; overflow: visible; }
  .side { height: auto; max-height: 45vh; border-right: 0; border-bottom: 1px solid var(--line); }
  .feed { height: 55vh; }
  .owner-top, .owner-detail-head { display: block; }
  .messenger-shell {
    height: auto;
    min-height: 100vh;
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .messenger-sidebar {
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .messenger-main {
    height: 70vh;
  }
  .message-bubble {
    max-width: 88%;
  }
}

@media (max-width: 560px) {
  .landing-header {
    width: calc(100% - 0.75rem);
    padding: 0.45rem;
  }
  .landing-brand span {
    font-size: 0.98rem;
  }
  .hero {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }
  .cta-row .button {
    width: 100%;
  }
  .hero-code,
  .copy-wrap {
    width: 100%;
  }
  .copy-wrap pre {
    padding-top: 3rem;
    padding-right: 1rem;
  }
  .copy-button {
    left: 0.75rem;
    right: auto;
  }
  pre {
    font-size: 0.74rem;
    line-height: 1.6;
  }
  .mastercurl {
    padding: 0 1rem;
    text-align: center;
  }
  .section {
    padding: 4.25rem 0.75rem;
  }
  .how-grid {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    scroll-padding-left: 0.75rem;
  }
  .how-grid .card {
    flex-basis: 88vw;
  }
  .footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.5rem;
    padding: 2.25rem 0.75rem;
  }
  .footer a {
    margin: 0;
  }
  .messenger-room-header,
  .messenger-composer {
    padding: 0.85rem;
  }
  .messenger-composer {
    grid-template-columns: 1fr;
  }
  .message-thread {
    padding: 0.85rem;
  }
  .message-bubble {
    max-width: 94%;
  }
}
