/* [project]/src/app/workspace.module.css [app-client] (css) */
.workspace-module__QEgtbG__workspace {
  color: #0f172a;
  background: none;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  display: flex;
  overflow: hidden;
}

.workspace-module__QEgtbG__topBar {
  z-index: 2;
  background: none;
  border-bottom: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  min-height: 52px;
  padding: .55rem 1rem;
  display: flex;
  position: relative;
}

.workspace-module__QEgtbG__modeSwitcher {
  border: 1px solid hsl(var(--border));
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  background: #ffffffb8;
  border-radius: 999px;
  gap: .15rem;
  padding: .2rem;
  display: inline-flex;
  position: relative;
  box-shadow: 0 4px 14px #0f172a0d;
}

.workspace-module__QEgtbG__modeSwitcher button {
  color: hsl(var(--muted-foreground));
  font: inherit;
  font-size: var(--text-sm);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 999px;
  align-items: center;
  gap: .4rem;
  padding: .48rem .95rem;
  font-weight: 600;
  transition: color .15s, background .15s, box-shadow .15s;
  display: inline-flex;
}

.workspace-module__QEgtbG__modeSwitcher button:hover {
  color: hsl(var(--foreground));
}

.workspace-module__QEgtbG__modeSwitcher .workspace-module__QEgtbG__modeActive {
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  box-shadow: 0 1px 3px #0f172a14;
}

.workspace-module__QEgtbG__modeSwitcher .workspace-module__QEgtbG__modeActive svg {
  color: inherit;
}

.workspace-module__QEgtbG__threadTitle {
  color: #64748b;
  max-width: min(36vw, 280px);
  font-size: var(--text-xs);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  position: absolute;
  left: 1rem;
  overflow: hidden;
}

.workspace-module__QEgtbG__stage {
  flex-direction: column;
  flex: 1;
  min-height: 0;
  display: flex;
}

.workspace-module__QEgtbG__stageLanding {
  justify-content: center;
}

.workspace-module__QEgtbG__stageThread {
  justify-content: flex-start;
}

.workspace-module__QEgtbG__fadeIn {
  animation: .22s workspace-module__QEgtbG__fadeSlide;
}

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

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

.workspace-module__QEgtbG__landing {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: min(720px, 100% - 2rem);
  margin: 0 auto;
  padding: 1.5rem 0 .5rem;
  display: flex;
}

.workspace-module__QEgtbG__landing h1 {
  color: #0f172a;
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  letter-spacing: -.03em;
  margin: 0 0 .5rem;
  font-weight: 600;
  line-height: 1.25;
}

.workspace-module__QEgtbG__landing p {
  color: #64748b;
  max-width: 32rem;
  font-size: var(--text-sm);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.workspace-module__QEgtbG__suggestionRow {
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem;
  width: 100%;
  margin-bottom: .5rem;
  display: flex;
}

.workspace-module__QEgtbG__suggestionRow button {
  color: #475569;
  max-width: 100%;
  font: inherit;
  font-size: var(--text-xs);
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px solid #0f172a14;
  border-radius: 999px;
  padding: .5rem .8rem;
  line-height: 1.4;
  transition: all .14s;
}

.workspace-module__QEgtbG__suggestionRow button:hover {
  color: #4f46e5;
  background: #fff;
  border-color: #4f46e547;
}

.workspace-module__QEgtbG__messagesArea {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  flex: 1;
  min-height: 0;
  padding: 1.25rem 1rem .5rem;
  overflow-y: auto;
}

.workspace-module__QEgtbG__messagesArea::-webkit-scrollbar {
  width: 6px;
}

.workspace-module__QEgtbG__messagesArea::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.workspace-module__QEgtbG__messagesArea::-webkit-scrollbar-track {
  background: none;
}

.workspace-module__QEgtbG__messagesArea:has(.workspace-module__QEgtbG__chatThreadHost) {
  flex-direction: column;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.workspace-module__QEgtbG__chatThreadHost {
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-height: 0;
  display: flex;
  overflow: hidden;
}

.workspace-module__QEgtbG__emptyThread {
  color: #94a3b8;
  max-width: 720px;
  font-size: var(--text-sm);
  text-align: center;
  margin: 2rem auto;
}

.workspace-module__QEgtbG__messageStack, .workspace-module__QEgtbG__workRequestGroup {
  flex-direction: column;
  gap: 1.35rem;
  width: min(760px, 100%);
  margin: 0 auto;
  display: flex;
}

.workspace-module__QEgtbG__workRequestGroup {
  gap: 1.15rem;
}

.workspace-module__QEgtbG__messageRow {
  align-items: flex-start;
  gap: .75rem;
  width: 100%;
  display: flex;
}

.workspace-module__QEgtbG__userRow {
  justify-content: flex-end;
}

.workspace-module__QEgtbG__assistantRow {
  justify-content: flex-start;
}

.workspace-module__QEgtbG__avatar {
  border-radius: 50%;
  flex-shrink: 0;
  place-items: center;
  width: 32px;
  height: 32px;
  line-height: 0;
  display: grid;
}

.workspace-module__QEgtbG__userAvatar {
  color: #334155;
  background: #e2e8f0;
  border: 1px solid #0f172a0f;
}

.workspace-module__QEgtbG__assistantAvatar {
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #4f46e5);
  box-shadow: 0 4px 10px #4f46e538;
}

.workspace-module__QEgtbG__avatar svg {
  display: block;
}

.workspace-module__QEgtbG__bubbleGroup {
  gap: .4rem;
  min-width: 0;
  max-width: min(100%, 620px);
  padding-top: .15rem;
  display: grid;
}

.workspace-module__QEgtbG__userRow .workspace-module__QEgtbG__bubbleGroup {
  max-width: min(100%, 560px);
}

.workspace-module__QEgtbG__bubble {
  font-size: var(--text-base);
  color: #0f172a;
  border: 0;
  border-radius: 0;
  padding: 0;
  line-height: 1.7;
}

.workspace-module__QEgtbG__userBubble {
  color: #0f172a;
  background: #f1f5f9;
  border-radius: 1.15rem 1.15rem .35rem;
  padding: .7rem .95rem;
}

.workspace-module__QEgtbG__assistantBubble {
  color: #0f172a;
  background: none;
  padding: .2rem 0 .1rem;
}

.workspace-module__QEgtbG__messageText {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.workspace-module__QEgtbG__messageText p, .workspace-module__QEgtbG__messageText h1, .workspace-module__QEgtbG__messageText h2, .workspace-module__QEgtbG__messageText h3, .workspace-module__QEgtbG__messageText ul, .workspace-module__QEgtbG__messageText ol, .workspace-module__QEgtbG__messageText blockquote {
  white-space: normal;
}

.workspace-module__QEgtbG__messageText p {
  margin: .35rem 0;
}

.workspace-module__QEgtbG__messageText p:first-child {
  margin-top: 0;
}

.workspace-module__QEgtbG__messageText p:last-child {
  margin-bottom: 0;
}

.workspace-module__QEgtbG__messageText h1, .workspace-module__QEgtbG__messageText h2, .workspace-module__QEgtbG__messageText h3 {
  color: #172033;
  margin: .9rem 0 .35rem;
  line-height: 1.35;
}

.workspace-module__QEgtbG__messageText h1 {
  font-size: var(--text-lg);
}

.workspace-module__QEgtbG__messageText h2, .workspace-module__QEgtbG__messageText h3 {
  font-size: var(--text-base);
}

.workspace-module__QEgtbG__messageText ul, .workspace-module__QEgtbG__messageText ol {
  margin: .45rem 0;
  padding-left: 1.35rem;
}

.workspace-module__QEgtbG__messageText li + li {
  margin-top: .2rem;
}

.workspace-module__QEgtbG__messageText blockquote {
  color: #64748b;
  border-left: 3px solid #4f46e53d;
  margin: .55rem 0;
  padding: .1rem 0 .1rem .8rem;
}

.workspace-module__QEgtbG__messageText a {
  color: #4f46e5;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
  word-break: break-all;
  text-decoration: underline;
}

.workspace-module__QEgtbG__citationMark {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: inherit;
  cursor: text;
  border-bottom: 1px dashed #17654e7a;
  padding-bottom: 1px;
  display: inline;
}

.workspace-module__QEgtbG__citationSupGroup {
  vertical-align: super;
  align-items: flex-start;
  gap: 1px;
  margin-left: 2px;
  font-size: .72em;
  line-height: 1;
  display: inline-flex;
  position: relative;
  top: -.15em;
}

.workspace-module__QEgtbG__citationRef, .workspace-module__QEgtbG__citationRefStatic {
  min-width: 0;
  font-size: inherit;
  letter-spacing: .01em;
  vertical-align: baseline;
  -webkit-tap-highlight-color: transparent;
  background: none;
  border: 0;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 1px;
  font-weight: 700;
  line-height: 1.1;
  display: inline-flex;
}

.workspace-module__QEgtbG__citationRef {
  color: #17654e;
  cursor: pointer;
  font: inherit;
  font-size: inherit;
  font-weight: 700;
  text-decoration: none;
}

.workspace-module__QEgtbG__citationRef:hover {
  color: #0f4f3c;
  text-underline-offset: 2px;
  text-decoration: underline;
}

.workspace-module__QEgtbG__citationRef:focus-visible {
  outline-offset: 2px;
  border-radius: 3px;
  outline: 2px solid #17654e52;
}

.workspace-module__QEgtbG__citationRefStatic {
  color: #5b6b64;
}

.workspace-module__QEgtbG__inlineCode {
  color: #4338ca;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  background: #eef2ff;
  border-radius: 5px;
  padding: .12rem .32rem;
}

.workspace-module__QEgtbG__codeBlock {
  background: #0f172a;
  border-radius: 10px;
  margin: .65rem 0 0;
  overflow: hidden;
}

.workspace-module__QEgtbG__codeHeader {
  color: #94a3b8;
  min-height: 30px;
  font-size: var(--text-xs);
  border-bottom: 1px solid #e2e8f01f;
  justify-content: space-between;
  align-items: center;
  padding: .2rem .45rem .2rem .75rem;
  display: flex;
}

.workspace-module__QEgtbG__codeBlock pre {
  color: #e2e8f0;
  font-size: var(--text-xs);
  margin: 0;
  padding: .75rem .85rem;
  line-height: 1.55;
  overflow-x: auto;
}

.workspace-module__QEgtbG__tableScroll {
  max-width: 100%;
  margin: .6rem 0;
  overflow-x: auto;
}

.workspace-module__QEgtbG__messageText table {
  border-collapse: collapse;
  width: 100%;
  min-width: 360px;
  font-size: var(--text-sm);
  white-space: normal;
}

.workspace-module__QEgtbG__messageText th, .workspace-module__QEgtbG__messageText td {
  text-align: left;
  vertical-align: top;
  border: 1px solid #e2e8f0;
  padding: .45rem .55rem;
}

.workspace-module__QEgtbG__messageText th {
  color: #334155;
  background: #f8fafc;
  font-weight: 700;
}

.workspace-module__QEgtbG__messageActions {
  color: #94a3b8;
  flex-wrap: wrap;
  align-items: center;
  gap: .15rem;
  min-height: 24px;
  display: flex;
}

.workspace-module__QEgtbG__messageAction {
  min-height: 24px;
  color: inherit;
  font: inherit;
  font-size: var(--text-xs);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 6px;
  align-items: center;
  gap: .22rem;
  padding: .2rem .35rem;
  transition: all .14s;
  display: inline-flex;
}

.workspace-module__QEgtbG__messageAction:hover, .workspace-module__QEgtbG__messageActionActive {
  color: #475569;
  background: #f1f5f9;
}

.workspace-module__QEgtbG__messageAttachments {
  color: #64748b;
  font-size: var(--text-xs);
  border-top: 1px solid #0f172a14;
  align-items: center;
  gap: .3rem;
  margin-top: .45rem;
  padding-top: .4rem;
  display: inline-flex;
}

.workspace-module__QEgtbG__emptyThreadContent {
  gap: .5rem;
  width: min(760px, 100%);
  margin: 2rem auto;
  display: grid;
}

.workspace-module__QEgtbG__suggestionBlock {
  gap: .35rem;
  width: min(760px, 100%);
  margin: 0 auto .6rem;
  display: grid;
}

.workspace-module__QEgtbG__suggestionLabel {
  color: #94a3b8;
  font-size: var(--text-xs);
  text-align: center;
}

.workspace-module__QEgtbG__suggestionBlock .workspace-module__QEgtbG__suggestionRow {
  margin-bottom: 0;
}

.workspace-module__QEgtbG__scrollToBottom {
  color: #64748b;
  font: inherit;
  font-size: var(--text-xs);
  cursor: pointer;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  align-items: center;
  gap: .25rem;
  margin: .1rem auto .5rem;
  padding: .35rem .6rem;
  display: inline-flex;
}

.workspace-module__QEgtbG__scrollToBottom:hover {
  color: #4f46e5;
  border-color: #c7d2fe;
}

.workspace-module__QEgtbG__agentRecommendation {
  gap: .45rem;
  padding: .7rem .8rem;
  display: grid;
}

.workspace-module__QEgtbG__agentRecommendationHeader {
  align-items: center;
  gap: .45rem;
  color: #4f46e5 !important;
  display: flex !important;
}

.workspace-module__QEgtbG__agentRecommendationIcon {
  background: #eef2ff;
  border-radius: 8px;
  flex-shrink: 0;
  place-items: center;
  width: 27px;
  height: 27px;
  display: grid !important;
}

.workspace-module__QEgtbG__agentRecommendationCopy {
  gap: .08rem;
  min-width: 0;
  display: grid !important;
}

.workspace-module__QEgtbG__agentRecommendationCopy strong {
  font-size: var(--text-xs);
}

.workspace-module__QEgtbG__agentRecommendationCopy small {
  color: #64748b;
  font-size: var(--text-xs);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.workspace-module__QEgtbG__agentRecommendationDone {
  color: #059669;
  margin-left: auto;
}

.workspace-module__QEgtbG__agentRecommendationNote, .workspace-module__QEgtbG__agentRecommendationMissing {
  color: #64748b;
  font-size: var(--text-xs);
  margin: 0;
  line-height: 1.45;
}

.workspace-module__QEgtbG__agentRecommendationMissing {
  color: #475569;
  background: #f8fafc;
  border-radius: 6px;
  padding: .35rem .45rem;
}

.workspace-module__QEgtbG__agentRecommendation > a {
  color: #4f46e5;
  font-size: var(--text-xs);
  justify-self: start;
  align-items: center;
  gap: .2rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.workspace-module__QEgtbG__composerDropzone {
  border-radius: 1.15rem;
  transition: background .14s;
}

.workspace-module__QEgtbG__composerDropzoneActive {
  background: #4f46e50f;
}

.workspace-module__QEgtbG__fileQueueItem {
  color: #475569;
  max-width: min(100%, 300px);
  min-height: 30px;
  font-size: var(--text-xs);
  background: #fff;
  border: 1px solid #0f172a14;
  border-radius: 9px;
  align-items: center;
  gap: .3rem;
  padding: .28rem .42rem .28rem .52rem;
  display: inline-flex;
}

.workspace-module__QEgtbG__fileQueueItem > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.workspace-module__QEgtbG__fileQueueItemError {
  color: #b42318;
  border-color: #dc26263d;
}

.workspace-module__QEgtbG__fileRetry, .workspace-module__QEgtbG__fileRemove {
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  flex-shrink: 0;
}

.workspace-module__QEgtbG__fileRetry {
  font-size: var(--text-xs);
  font-weight: 600;
}

.workspace-module__QEgtbG__fileRemove {
  border-radius: 50%;
  place-items: center;
  width: 19px;
  height: 19px;
  display: grid;
}

.workspace-module__QEgtbG__fileRemove:hover {
  background: #f1f5f9;
}

.workspace-module__QEgtbG__uploadStatus {
  color: #94a3b8;
  font-size: var(--text-xs);
}

.workspace-module__QEgtbG__stopGlyph {
  background: currentColor;
  border-radius: 2px;
  width: 10px;
  height: 10px;
}

.workspace-module__QEgtbG__messageText pre {
  color: #e2e8f0;
  font-size: var(--text-xs);
  background: #0f172a;
  border-radius: 10px;
  margin: .65rem 0 0;
  padding: .75rem .85rem;
  line-height: 1.55;
  overflow-x: auto;
}

.workspace-module__QEgtbG__messageText pre:first-child {
  margin-top: 0;
}

.workspace-module__QEgtbG__agentRecommendation {
  background: #fff;
  border: 1px solid #0f172a14;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: .6rem .75rem;
  display: flex;
}

.workspace-module__QEgtbG__agentRecommendation > div {
  color: #4f46e5;
  align-items: center;
  gap: .45rem;
  display: flex;
}

.workspace-module__QEgtbG__agentRecommendation span {
  gap: .1rem;
  display: grid;
}

.workspace-module__QEgtbG__agentRecommendation strong {
  font-size: var(--text-xs);
  color: #0f172a !important;
}

.workspace-module__QEgtbG__agentRecommendation small {
  color: #64748b;
  font-size: var(--text-xs);
}

.workspace-module__QEgtbG__agentRecommendation a {
  color: #4f46e5;
  font-size: var(--text-xs);
  white-space: nowrap;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.workspace-module__QEgtbG__requestMeta {
  color: #94a3b8;
  font-size: var(--text-xs);
}

.workspace-module__QEgtbG__workTimeline {
  color: #64748b;
  font-size: var(--text-xs);
  background: #f8fafc;
  border-left: 2px solid #cbd5e1;
  border-radius: 0 .4rem .4rem 0;
  gap: .35rem;
  margin-top: .45rem;
  padding: .45rem .6rem .5rem;
  display: grid;
}

.workspace-module__QEgtbG__workTimelineToggle {
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  gap: .3rem;
  margin: 0;
  padding: .1rem 0;
  display: flex;
}

.workspace-module__QEgtbG__workTimelineToggle:hover .workspace-module__QEgtbG__workTimelineHeader {
  color: #334155;
}

.workspace-module__QEgtbG__workTimelineToggle:focus-visible {
  outline-offset: 2px;
  border-radius: .25rem;
  outline: 2px solid #94a3b8;
}

.workspace-module__QEgtbG__workTimelineHeader {
  color: #64748b;
  font-size: var(--text-2xs);
  letter-spacing: .02em;
  text-transform: none;
  font-weight: 600;
}

.workspace-module__QEgtbG__workTimelineSummary {
  color: #94a3b8;
  font-size: var(--text-2xs);
  margin-left: auto;
  font-weight: 500;
}

.workspace-module__QEgtbG__workTimelineBody {
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  gap: .35rem;
  max-height: min(14rem, 36vh);
  padding-right: .15rem;
  display: grid;
  overflow: hidden auto;
}

.workspace-module__QEgtbG__workTimelineBody::-webkit-scrollbar {
  width: 6px;
}

.workspace-module__QEgtbG__workTimelineBody::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.workspace-module__QEgtbG__workTimelineBody::-webkit-scrollbar-track {
  background: none;
}

.workspace-module__QEgtbG__workTimelineItem {
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: .45rem;
  min-width: 0;
  line-height: 1.45;
  display: grid;
}

.workspace-module__QEgtbG__workTimelineItem span {
  color: #64748b;
  flex-shrink: 0;
  font-weight: 600;
}

.workspace-module__QEgtbG__workTimelineItem strong {
  color: #334155;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  overflow: hidden;
}

.workspace-module__QEgtbG__workTimelineReasoning strong {
  color: #64748b;
  white-space: normal;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
}

.workspace-module__QEgtbG__workTimelineError span, .workspace-module__QEgtbG__workTimelineError strong {
  color: #b91c1c;
}

.workspace-module__QEgtbG__workTimelineItemActive {
  background: #635bff0d;
  border-radius: 4px;
  margin: -.15rem -.35rem;
  padding: .15rem .35rem;
}

.workspace-module__QEgtbG__workTimelineItemActive span {
  color: #6366f1;
  font-weight: 700;
}

.workspace-module__QEgtbG__workTimelineItemActive strong {
  color: #1e1b4b;
  align-items: center;
  gap: .35rem;
  font-weight: 600;
  display: inline-flex;
}

.workspace-module__QEgtbG__workTimelinePulse {
  background: #6366f1;
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  animation: 1.4s ease-in-out infinite workspace-module__QEgtbG__liveDotPulse;
  display: inline-block;
  box-shadow: 0 0 #635bff66;
}

@keyframes workspace-module__QEgtbG__liveDotPulse {
  0% {
    transform: scale(.9);
    box-shadow: 0 0 #635bff99;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px #635bff00;
  }

  100% {
    transform: scale(.9);
    box-shadow: 0 0 #635bff00;
  }
}

.workspace-module__QEgtbG__workBilling {
  color: #64748b;
  font-size: var(--text-xs);
  margin-top: .35rem;
  display: block;
}

.workspace-module__QEgtbG__failedText {
  color: #dc2626;
}

.workspace-module__QEgtbG__workRequestRunning {
  scroll-margin-bottom: 1.5rem;
}

.workspace-module__QEgtbG__assistantBubbleLive {
  border-color: #635bff38;
  box-shadow: 0 0 0 1px #635bff0f;
}

.workspace-module__QEgtbG__workThinking {
  color: #475569;
  align-items: flex-start;
  gap: .65rem;
  min-height: 2.4rem;
  display: flex;
}

.workspace-module__QEgtbG__workThinkingContent {
  flex: 1;
  min-width: 0;
}

.workspace-module__QEgtbG__workThinking strong {
  color: #1e293b;
  font-size: var(--text-sm);
  font-weight: 700;
  display: block;
}

.workspace-module__QEgtbG__workThinking span {
  color: #64748b;
  font-size: var(--text-xs);
  margin-top: .15rem;
  line-height: 1.45;
  display: block;
}

.workspace-module__QEgtbG__workThinkingDetail {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 32rem;
  animation: .3s ease-in-out workspace-module__QEgtbG__fadeInSoft;
  overflow: hidden;
}

@keyframes workspace-module__QEgtbG__fadeInSoft {
  from {
    opacity: .6;
    transform: translateY(1px);
  }

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

.workspace-module__QEgtbG__requestMetaLive {
  color: #6366f1;
  font-weight: 600;
}

.workspace-module__QEgtbG__liveTypingHint {
  color: #6366f1;
  font-size: var(--text-xs);
  border-top: 1px dashed #635bff33;
  align-items: center;
  gap: .4rem;
  margin-top: .55rem;
  padding-top: .45rem;
  font-weight: 600;
  display: inline-flex;
}

.workspace-module__QEgtbG__typingDots {
  align-items: center;
  gap: 3px;
  display: inline-flex;
}

.workspace-module__QEgtbG__typingDots i {
  background: #818cf8;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  animation: 1s ease-in-out infinite workspace-module__QEgtbG__typingBounce;
}

.workspace-module__QEgtbG__typingDots i:nth-child(2) {
  animation-delay: .15s;
}

.workspace-module__QEgtbG__typingDots i:nth-child(3) {
  animation-delay: .3s;
}

@keyframes workspace-module__QEgtbG__typingBounce {
  0%, 80%, 100% {
    opacity: .35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.workspace-module__QEgtbG__workProgressPlaceholder {
  color: #64748b;
  font-size: var(--text-xs);
  align-items: center;
  gap: .35rem;
  margin-top: .4rem;
  font-weight: 600;
  display: inline-flex;
}

.workspace-module__QEgtbG__workRunningBanner {
  color: #4f46e5;
  background: #635bff14;
  border-radius: 10px;
  margin: .35rem 0 .15rem;
  padding: .45rem .65rem;
  font-weight: 600;
}

.workspace-module__QEgtbG__loadingLine, .workspace-module__QEgtbG__thinkingLine {
  color: #94a3b8;
  width: min(760px, 100%);
  font-size: var(--text-xs);
  align-items: center;
  gap: .45rem;
  margin: .5rem auto 0;
  padding-left: 2.5rem;
  display: flex;
}

.workspace-module__QEgtbG__thinkingDots {
  gap: 3px;
  display: inline-flex;
}

.workspace-module__QEgtbG__thinkingDots i {
  background: #94a3b8;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  animation: 1.1s ease-in-out infinite workspace-module__QEgtbG__pulse;
}

.workspace-module__QEgtbG__thinkingDots i:nth-child(2) {
  animation-delay: .15s;
}

.workspace-module__QEgtbG__thinkingDots i:nth-child(3) {
  animation-delay: .3s;
}

.workspace-module__QEgtbG__spin {
  animation: .9s linear infinite workspace-module__QEgtbG__spin;
}

.workspace-module__QEgtbG__composerWrap {
  flex-shrink: 0;
  width: min(720px, 100% - 1.5rem);
  margin: 0 auto;
  padding: .55rem 0 1rem;
}

.workspace-module__QEgtbG__composerLanding {
  width: min(720px, 100% - 2rem);
  padding-top: 1rem;
}

.workspace-module__QEgtbG__fileQueue {
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .4rem;
  display: flex;
}

.workspace-module__QEgtbG__fileQueue span {
  color: #475569;
  max-width: 220px;
  font-size: var(--text-xs);
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #0f172a14;
  border-radius: 999px;
  align-items: center;
  gap: .3rem;
  padding: .3rem .5rem;
  display: inline-flex;
  overflow: hidden;
}

.workspace-module__QEgtbG__fileQueue button {
  color: #94a3b8;
  cursor: pointer;
  background: none;
  border: 0;
  place-items: center;
  display: inline-grid;
}

.workspace-module__QEgtbG__composer {
  background: #fff;
  border: 1px solid #0f172a1a;
  border-radius: 1.15rem;
  flex-direction: column;
  gap: .35rem;
  padding: .65rem .75rem .5rem;
  transition: border-color .14s, box-shadow .14s;
  display: flex;
  box-shadow: 0 8px 24px #0f172a0d;
}

.workspace-module__QEgtbG__composer:focus-within {
  border-color: #0f172a2e;
  box-shadow: 0 10px 28px #0f172a12;
}

.workspace-module__QEgtbG__composer textarea {
  resize: none;
  color: #0f172a;
  width: 100%;
  min-height: 28px;
  max-height: 180px;
  font: inherit;
  font-size: var(--text-base);
  background: none;
  border: 0;
  outline: 0;
  padding: .2rem .25rem;
  line-height: 1.55;
}

.workspace-module__QEgtbG__composer textarea::placeholder {
  color: #94a3b8;
}

.workspace-module__QEgtbG__composerToolbar {
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.workspace-module__QEgtbG__composerTools, .workspace-module__QEgtbG__composerActions {
  align-items: center;
  gap: .25rem;
  display: flex;
}

.workspace-module__QEgtbG__composerIcon, .workspace-module__QEgtbG__stopButton, .workspace-module__QEgtbG__sendButton {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  place-items: center;
  width: 34px;
  height: 34px;
  transition: all .14s;
  display: grid;
}

.workspace-module__QEgtbG__composerIcon {
  color: #64748b;
  background: none;
}

.workspace-module__QEgtbG__composerIcon:hover:not(:disabled) {
  color: #0f172a;
  background: #f1f5f9;
}

.workspace-module__QEgtbG__composerIcon:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.workspace-module__QEgtbG__stopButton {
  color: #dc2626;
  background: #fee2e2;
}

.workspace-module__QEgtbG__sendButton {
  color: #fff;
  background: #0f172a;
}

.workspace-module__QEgtbG__sendButton:hover:not(:disabled) {
  background: #1e293b;
}

.workspace-module__QEgtbG__sendButton:disabled {
  opacity: .3;
  cursor: not-allowed;
}

.workspace-module__QEgtbG__errorLine {
  color: #dc2626;
  font-size: var(--text-xs);
  justify-content: space-between;
  gap: .7rem;
  padding: .45rem .2rem 0;
  display: flex;
}

.workspace-module__QEgtbG__errorLine button {
  color: #4f46e5;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  font-weight: 600;
}

.workspace-module__QEgtbG__buildActionBar {
  color: #059669;
  width: min(720px, 100% - 1.5rem);
  font-size: var(--text-xs);
  background: #ecfdf5;
  border: 1px solid #05966929;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin: 0 auto .35rem;
  padding: .65rem .85rem;
  display: flex;
}

.workspace-module__QEgtbG__buildActionBar > div {
  align-items: center;
  gap: .4rem;
  display: flex;
}

.workspace-module__QEgtbG__buildActionBar button {
  color: #fff;
  font: inherit;
  font-size: var(--text-xs);
  cursor: pointer;
  white-space: nowrap;
  background: #059669;
  border: 0;
  border-radius: 999px;
  padding: .4rem .7rem;
  font-weight: 600;
}

.workspace-module__QEgtbG__buildActionBar button:disabled {
  opacity: .6;
  cursor: wait;
}

.workspace-module__QEgtbG__buildStatus {
  font-size: var(--text-xs);
  background: #0596691a;
  border-radius: 999px;
  padding: .3rem .55rem;
  font-weight: 600;
}

.workspace-module__QEgtbG__buildPanel {
  background: #f8fafcf2;
  border: 1px solid #0f172a14;
  border-radius: 10px;
  width: min(760px, 100% - 1.5rem);
  margin: 0 auto .4rem;
  padding: .55rem .75rem;
}

.workspace-module__QEgtbG__buildPanelCompact {
  box-shadow: none;
}

.workspace-module__QEgtbG__bubbleActions {
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .35rem;
  display: flex;
}

.workspace-module__QEgtbG__bubbleActionGhost {
  color: #475569;
  font: inherit;
  font-size: var(--text-xs);
  cursor: pointer;
  background: #fff;
  border: 1px solid #0f172a1f;
  border-radius: 999px;
  padding: .28rem .55rem;
  font-weight: 600;
  transition: background .14s, border-color .14s, color .14s;
}

.workspace-module__QEgtbG__bubbleActionGhost:hover:not(:disabled) {
  color: #4f46e5;
  background: #635bff0f;
  border-color: #635bff59;
}

.workspace-module__QEgtbG__bubbleActionGhost:disabled {
  cursor: wait;
  opacity: .65;
}

.workspace-module__QEgtbG__buildStatus {
  font-size: var(--text-2xs);
  white-space: nowrap;
  border-radius: 999px;
  flex-shrink: 0;
  align-items: center;
  gap: .25rem;
  padding: .15rem .45rem;
  font-weight: 700;
  display: inline-flex;
}

.workspace-module__QEgtbG__buildStatus_ready {
  color: #475569;
  background: #0f172a0f;
}

.workspace-module__QEgtbG__buildPanelHeader, .workspace-module__QEgtbG__buildPanelActions {
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.workspace-module__QEgtbG__buildPanelToggle {
  width: 100%;
  min-width: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  flex: 1;
  align-items: flex-start;
  gap: .55rem;
  padding: 0;
  display: flex;
}

.workspace-module__QEgtbG__buildPanelToggle:focus-visible {
  outline-offset: 4px;
  border-radius: 6px;
  outline: 2px solid #635bff;
}

.workspace-module__QEgtbG__buildPanelToggleContent {
  gap: .18rem;
  min-width: 0;
  display: grid;
}

.workspace-module__QEgtbG__buildPanelChevron {
  color: #94a3b8;
  flex-shrink: 0;
  margin-top: .15rem;
  transition: transform .16s;
}

.workspace-module__QEgtbG__buildPanelChevronOpen {
  transform: rotate(180deg);
}

.workspace-module__QEgtbG__buildEyebrow {
  color: #64748b;
  font-size: var(--text-2xs);
  letter-spacing: .02em;
  font-weight: 700;
}

.workspace-module__QEgtbG__buildPanelHeader strong {
  font-size: var(--text-xs);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #2f3b4b !important;
}

.workspace-module__QEgtbG__buildStatus_requested {
  color: #a56a00;
  background: #f59e0b1f;
}

.workspace-module__QEgtbG__buildStatus_processing {
  color: #5d51c7;
  background: #635bff1f;
}

.workspace-module__QEgtbG__buildStatus_completed {
  color: #087f5b;
  background: #0596691a;
}

.workspace-module__QEgtbG__buildStatus_failed {
  color: #b42318;
  background: #dc26261a;
}

.workspace-module__QEgtbG__buildTimeline {
  color: #98a2b3;
  font-size: var(--text-xs);
  align-items: center;
  gap: .4rem;
  margin-top: .8rem;
  display: flex;
}

.workspace-module__QEgtbG__buildTimeline:before, .workspace-module__QEgtbG__buildTimeline:after {
  content: "";
  background: #1822301f;
  flex: 1;
  height: 1px;
}

.workspace-module__QEgtbG__buildTimeline span {
  white-space: nowrap;
  align-items: center;
  gap: .22rem;
  display: inline-flex;
}

.workspace-module__QEgtbG__buildStepDone {
  color: #087f5b;
}

.workspace-module__QEgtbG__buildStepCurrent {
  color: #635bff;
  font-weight: 700;
}

.workspace-module__QEgtbG__buildStepFailed {
  color: #b42318;
  font-weight: 700;
}

.workspace-module__QEgtbG__buildStepPending {
  color: #98a2b3;
}

.workspace-module__QEgtbG__buildDescription {
  color: #7b8796;
  font-size: var(--text-xs);
  margin: .65rem 0 0;
  line-height: 1.5;
}

.workspace-module__QEgtbG__outputKindChooser {
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .7rem;
  display: flex;
}

.workspace-module__QEgtbG__outputKind, .workspace-module__QEgtbG__outputKindActive {
  color: #64748b;
  font: inherit;
  font-size: var(--text-xs);
  cursor: pointer;
  background: #fff;
  border: 1px solid #0f172a1a;
  border-radius: 999px;
  align-items: center;
  gap: .3rem;
  padding: .38rem .65rem;
  font-weight: 700;
  display: inline-flex;
}

.workspace-module__QEgtbG__outputKindActive {
  color: #4338ca;
  background: #4f46e514;
  border-color: #4f46e559;
}

:is(.workspace-module__QEgtbG__outputKind:focus-visible, .workspace-module__QEgtbG__outputKindActive:focus-visible) {
  outline-offset: 2px;
  outline: 2px solid #635bff;
}

.workspace-module__QEgtbG__outputKind svg, .workspace-module__QEgtbG__outputKindActive svg {
  flex-shrink: 0;
}

.workspace-module__QEgtbG__buildPanelActions {
  justify-content: flex-start;
  margin-top: .65rem;
}

.workspace-module__QEgtbG__buildPrimaryAction {
  color: #fff;
  font: inherit;
  font-size: var(--text-xs);
  cursor: pointer;
  background: #1d2735;
  border: 0;
  border-radius: 8px;
  padding: .42rem .68rem;
  font-weight: 700;
}

.workspace-module__QEgtbG__buildPrimaryAction:disabled {
  cursor: wait;
  opacity: .6;
}

.workspace-module__QEgtbG__buildLink {
  color: #635bff;
  font-size: var(--text-xs);
  align-items: center;
  gap: .25rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

@keyframes workspace-module__QEgtbG__pulse {
  0%, 100% {
    opacity: .35;
  }

  50% {
    opacity: 1;
  }
}

@keyframes workspace-module__QEgtbG__spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .workspace-module__QEgtbG__threadTitle {
    display: none;
  }

  .workspace-module__QEgtbG__modeSwitcher button {
    padding: .48rem .75rem;
  }

  .workspace-module__QEgtbG__landing h1 {
    font-size: var(--text-2xl);
  }

  .workspace-module__QEgtbG__suggestionRow {
    flex-direction: column;
    align-items: stretch;
  }

  .workspace-module__QEgtbG__buildPanel {
    width: calc(100% - 1rem);
  }

  .workspace-module__QEgtbG__buildPanelHeader, .workspace-module__QEgtbG__buildPanelActions {
    flex-direction: column;
    align-items: flex-start;
  }

  .workspace-module__QEgtbG__buildPanelToggle {
    flex: none;
  }

  .workspace-module__QEgtbG__buildTimeline {
    flex-direction: column;
    align-items: flex-start;
  }

  .workspace-module__QEgtbG__buildTimeline:before, .workspace-module__QEgtbG__buildTimeline:after {
    display: none;
  }
}

.workspace-module__QEgtbG__sharedChatThread {
  flex: 1;
  height: 100%;
  min-height: 0;
}

.workspace-module__QEgtbG__sharedChatThread [class*="messageList"] {
  padding-bottom: 56px;
}

.workspace-module__QEgtbG__sharedChatThread [class*="viewport"] {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.workspace-module__QEgtbG__sharedChatThread [class*="viewport"]::-webkit-scrollbar {
  width: 6px;
}

.workspace-module__QEgtbG__sharedChatThread [class*="viewport"]::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.workspace-module__QEgtbG__sharedChatThread [class*="viewport"]::-webkit-scrollbar-track {
  background: none;
}

.workspace-module__QEgtbG__sharedComposerDock {
  z-index: 4;
  background: linear-gradient(#f8fbfab8, #f8fbfa 26%);
  border-top: 1px solid #16392f14;
  flex: none;
  padding: 8px 20px 18px;
  position: relative;
}

.workspace-module__QEgtbG__sharedRuntimeError {
  color: #8b3528;
  width: min(100% - 32px, 820px);
  font-size: var(--text-sm);
  background: #fff6f3;
  border: 1px solid #b143312e;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0 auto 8px;
  padding: 9px 12px;
  display: flex;
}

.workspace-module__QEgtbG__sharedRuntimeError button {
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  flex: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.workspace-module__QEgtbG__sharedAttachmentSend {
  color: #17654e;
  cursor: pointer;
  font-size: var(--text-xs);
  background: none;
  border: 0;
  margin: 8px auto 0;
  font-weight: 600;
  display: block;
}

.workspace-module__QEgtbG__sharedAttachmentSend:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.workspace-module__QEgtbG__sharedEmptyState {
  color: #6a7672;
  text-align: center;
  place-content: center;
  gap: 7px;
  min-height: 48vh;
  padding: 32px;
  display: grid;
}

.workspace-module__QEgtbG__sharedEmptyState span {
  color: #17654e;
  font-size: var(--text-2xs);
  letter-spacing: .15em;
  font-weight: 700;
}

.workspace-module__QEgtbG__sharedEmptyState strong {
  color: #17201d;
  font-family: ui-serif, Noto Serif SC, Songti SC, serif;
  font-size: clamp(var(--text-2xl), 4vw, 2rem);
}

.workspace-module__QEgtbG__sharedEmptyState p {
  font-size: var(--text-sm);
  margin: 0;
}

@media (max-width: 767px) {
  .workspace-module__QEgtbG__messagesArea {
    overscroll-behavior-y: contain;
    padding: .85rem .75rem .35rem;
  }

  .workspace-module__QEgtbG__workRequestGroup {
    gap: 1rem;
  }

  .workspace-module__QEgtbG__composerWrap {
    width: 100%;
    padding: .5rem .75rem max(.75rem, env(safe-area-inset-bottom));
  }

  .workspace-module__QEgtbG__composer {
    border-radius: 20px;
  }

  .workspace-module__QEgtbG__composerIcon, .workspace-module__QEgtbG__stopButton, .workspace-module__QEgtbG__sendButton {
    width: 44px;
    height: 44px;
  }

  .workspace-module__QEgtbG__sharedComposerDock {
    padding: 7px 12px max(12px, env(safe-area-inset-bottom));
  }

  .workspace-module__QEgtbG__sharedChatThread [class*="messageList"] {
    padding: 20px 14px 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workspace-module__QEgtbG__fadeIn, .workspace-module__QEgtbG__spin, .workspace-module__QEgtbG__thinkingDots i, .workspace-module__QEgtbG__typingDots i {
    animation: none;
  }
}

/* [project]/src/components/chat-runtime/chat-runtime.module.css [app-client] (css) */
.chat-runtime-module__aE_StG__thread {
  --chat-ink: #17201d;
  --chat-muted: #67736f;
  --chat-line: #23483c24;
  --chat-accent: #17654e;
  --chat-accent-strong: #0f4c3a;
  --chat-surface: #fbfdfc;
  --chat-user: #e2f1eb;
  height: 100%;
  min-height: 0;
  color: var(--chat-ink);
  flex-direction: column;
  flex: 1;
  display: flex;
  position: relative;
}

.chat-runtime-module__aE_StG__viewport {
  overscroll-behavior-y: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  position: relative;
  overflow: hidden auto;
}

.chat-runtime-module__aE_StG__viewport::-webkit-scrollbar {
  width: 6px;
}

.chat-runtime-module__aE_StG__viewport::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.chat-runtime-module__aE_StG__viewport::-webkit-scrollbar-track {
  background: none;
}

.chat-runtime-module__aE_StG__messageList {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 32px 24px 28px;
}

.chat-runtime-module__aE_StG__message {
  width: 100%;
  margin: 0 0 22px;
  display: flex;
}

.chat-runtime-module__aE_StG__userMessage {
  justify-content: flex-end;
}

.chat-runtime-module__aE_StG__assistantMessage, .chat-runtime-module__aE_StG__systemMessage {
  justify-content: flex-start;
}

.chat-runtime-module__aE_StG__messageBody {
  min-width: 0;
  max-width: min(88%, 720px);
}

.chat-runtime-module__aE_StG__userMessage .chat-runtime-module__aE_StG__messageBody {
  background: var(--chat-user);
  border-radius: 20px 20px 6px;
  padding: 12px 16px;
  box-shadow: 0 1px #17654e14;
}

.chat-runtime-module__aE_StG__assistantMessage .chat-runtime-module__aE_StG__messageBody {
  width: 100%;
}

.chat-runtime-module__aE_StG__systemMessage .chat-runtime-module__aE_StG__messageBody {
  color: var(--chat-muted);
  font-size: var(--text-sm);
}

.chat-runtime-module__aE_StG__messageText {
  overflow-wrap: anywhere;
  font-size: var(--text-base);
  white-space: pre-wrap;
  line-height: 1.75;
}

.chat-runtime-module__aE_StG__emptyState {
  width: min(100% - 40px, 560px);
  min-height: 56vh;
  color: var(--chat-muted);
  text-align: center;
  place-items: center;
  margin: 0 auto;
  display: grid;
}

.chat-runtime-module__aE_StG__emptyState h2 {
  color: var(--chat-ink);
  font-family: ui-serif, Noto Serif SC, Songti SC, serif;
  font-size: clamp(var(--text-2xl), 4vw, 2.125rem);
  letter-spacing: -.025em;
  margin: 10px 0 6px;
  font-weight: 600;
}

.chat-runtime-module__aE_StG__emptyState p {
  max-width: 440px;
  font-size: var(--text-sm);
  margin: 0;
  line-height: 1.7;
}

.chat-runtime-module__aE_StG__emptyEyebrow {
  color: var(--chat-accent);
  font-size: var(--text-2xs);
  letter-spacing: .18em;
  font-weight: 700;
}

.chat-runtime-module__aE_StG__composer {
  border: 1px solid var(--chat-line, #23483c24);
  background: linear-gradient(#ffffffeb, #fffffff5),
    var(--chat-surface, #fbfdfc);
  border-radius: 22px;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: end;
  gap: 8px;
  width: min(100% - 32px, 820px);
  margin: 0 auto;
  padding: 8px 8px 8px 16px;
  transition: border-color .16s, box-shadow .16s;
  display: grid;
  box-shadow: 0 18px 42px #1430281c, 0 2px 8px #1430280f;
}

.chat-runtime-module__aE_StG__composerWithAttachment {
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  padding-left: 8px;
}

.chat-runtime-module__aE_StG__composer:focus-within {
  border-color: #17654e6b;
  box-shadow: 0 20px 46px #14302824, 0 0 0 3px #17654e14;
}

.chat-runtime-module__aE_StG__composerInput {
  resize: none;
  width: 100%;
  min-height: 36px;
  max-height: 190px;
  color: var(--chat-ink, #17201d);
  font: inherit;
  font-size: var(--text-base);
  background: none;
  border: 0;
  outline: 0;
  line-height: 1.55;
}

.chat-runtime-module__aE_StG__composerInput::placeholder {
  color: #8a9692;
}

.chat-runtime-module__aE_StG__composerAction {
  cursor: pointer;
  border: 0;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  transition: color .15s, background .15s, transform .15s;
  display: inline-flex;
}

.chat-runtime-module__aE_StG__composerAction:focus-visible {
  outline-offset: 2px;
  outline: 3px solid #17654e3d;
}

.chat-runtime-module__aE_StG__composerAction:active {
  transform: scale(.96);
}

.chat-runtime-module__aE_StG__sendAction {
  background: var(--chat-accent, #17654e);
  color: #fff;
}

.chat-runtime-module__aE_StG__sendAction:hover:not(:disabled) {
  background: var(--chat-accent-strong, #0f4c3a);
}

.chat-runtime-module__aE_StG__sendAction:disabled {
  cursor: not-allowed;
  color: #919d99;
  background: #dce3e0;
}

.chat-runtime-module__aE_StG__cancelAction {
  color: #963a2d;
  background: #f6e8e5;
}

.chat-runtime-module__aE_StG__cancelAction:hover {
  background: #f0d6d1;
}

.chat-runtime-module__aE_StG__attachmentAction {
  color: #66736e;
  background: none;
}

.chat-runtime-module__aE_StG__attachmentAction:hover:not(:disabled) {
  color: var(--chat-accent, #17654e);
  background: #edf3f0;
}

.chat-runtime-module__aE_StG__attachmentAction:disabled {
  cursor: not-allowed;
  color: #adb6b2;
}

.chat-runtime-module__aE_StG__mobileComposer {
  border-radius: 20px;
  width: 100%;
}

.chat-runtime-module__aE_StG__attachmentPart, .chat-runtime-module__aE_StG__statusPart, .chat-runtime-module__aE_StG__errorPart, .chat-runtime-module__aE_StG__unsupportedPart {
  border: 1px solid var(--chat-line);
  background: var(--chat-surface);
  border-radius: 12px;
  margin: 6px 0;
}

.chat-runtime-module__aE_StG__attachmentRemove:focus-visible {
  outline-offset: 2px;
  outline: 3px solid #17654e33;
}

.chat-runtime-module__aE_StG__partLabel {
  color: var(--chat-accent);
  font-size: var(--text-2xs);
  letter-spacing: .06em;
  font-weight: 700;
}

.chat-runtime-module__aE_StG__attachmentPart {
  border: 1px solid var(--chat-line, #23483c24);
  max-width: min(100%, 360px);
  min-height: 40px;
  color: var(--chat-muted, #67736f);
  font-size: var(--text-sm);
  vertical-align: top;
  background: #ffffffeb;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
  padding: 6px 10px 6px 6px;
  display: inline-flex;
}

.chat-runtime-module__aE_StG__attachmentPart[data-status="failed"] {
  background: #fff9f7;
  border-color: #963a2d3d;
}

.chat-runtime-module__aE_StG__attachmentPart[data-status="uploading"], .chat-runtime-module__aE_StG__attachmentPart[data-status="parsing"] {
  border-style: dashed;
}

.chat-runtime-module__aE_StG__statusPart, .chat-runtime-module__aE_StG__errorPart {
  min-height: 44px;
  color: var(--chat-muted);
  font-size: var(--text-sm);
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  display: flex;
}

.chat-runtime-module__aE_StG__attachmentPart .chat-runtime-module__aE_StG__attachmentName {
  min-width: 0;
  color: var(--chat-ink, #17201d);
  font-size: var(--text-sm);
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  font-weight: 600;
  overflow: hidden;
}

.chat-runtime-module__aE_StG__attachmentPart .chat-runtime-module__aE_StG__attachmentStatus {
  color: var(--chat-muted, #67736f);
  font-size: var(--text-xs);
  white-space: nowrap;
  flex-shrink: 0;
}

.chat-runtime-module__aE_StG__attachmentPart .chat-runtime-module__aE_StG__attachmentIcon {
  flex-shrink: 0;
}

.chat-runtime-module__aE_StG__statusPart {
  border-style: dashed;
}

.chat-runtime-module__aE_StG__statusPart span:nth-child(2) {
  flex: 1;
}

.chat-runtime-module__aE_StG__statusDot {
  background: var(--chat-accent);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px #17654e1a;
}

.chat-runtime-module__aE_StG__errorPart {
  color: #7a443d;
  background: #fff9f7;
  border-color: #963a2d33;
  flex-direction: column;
  align-items: flex-start;
}

.chat-runtime-module__aE_StG__errorPart strong {
  color: #963a2d;
}

.chat-runtime-module__aE_StG__unsupportedPart {
  color: var(--chat-muted);
  font-size: var(--text-sm);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  display: flex;
}

.chat-runtime-module__aE_StG__unsupportedPart small {
  font-family: var(--font-mono);
}

.chat-runtime-module__aE_StG__attachmentQueue {
  scrollbar-width: thin;
  gap: 8px;
  width: min(100% - 32px, 820px);
  margin: 0 auto 8px;
  padding: 0;
  list-style: none;
  display: flex;
  overflow-x: auto;
}

.chat-runtime-module__aE_StG__attachmentQueueItem {
  border: 1px solid var(--chat-line, #23483c24);
  min-width: min(320px, 100vw - 40px);
  min-height: 52px;
  color: var(--chat-muted, #67736f);
  font-size: var(--text-xs);
  background: #fffffff0;
  border-radius: 14px;
  grid-template-columns: 28px minmax(100px, 1fr) auto auto 28px;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  display: grid;
}

.chat-runtime-module__aE_StG__attachmentQueueItem[data-status="failed"] {
  background: #fff9f7;
  border-color: #963a2d3d;
}

.chat-runtime-module__aE_StG__attachmentIcon {
  width: 28px;
  height: 28px;
  color: var(--chat-accent, #17654e);
  background: #edf3f0;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.chat-runtime-module__aE_StG__attachmentName {
  color: var(--chat-ink, #17201d);
  font-size: var(--text-sm);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  overflow: hidden;
}

.chat-runtime-module__aE_StG__attachmentStatus {
  white-space: nowrap;
}

.chat-runtime-module__aE_StG__attachmentRemove {
  color: #7f8a86;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: inline-flex;
}

.chat-runtime-module__aE_StG__attachmentRemove:hover {
  color: #31453e;
  background: #edf3f0;
}

.chat-runtime-module__aE_StG__attachmentRetry {
  min-height: 28px;
  color: var(--chat-accent, #17654e);
  cursor: pointer;
  font: inherit;
  background: #edf6f2;
  border: 1px solid #17654e2e;
  border-radius: 9px;
  padding: 0 9px;
  font-weight: 600;
}

.chat-runtime-module__aE_StG__attachmentRetry:hover {
  background: #e0f0e9;
}

.chat-runtime-module__aE_StG__runStatus {
  min-height: 28px;
  color: var(--chat-muted, #67736f);
  font-size: var(--text-xs);
  align-items: center;
  gap: 8px;
  display: flex;
}

.chat-runtime-module__aE_StG__runStatus[data-status="failed"] {
  color: #963a2d;
}

.chat-runtime-module__aE_StG__spin {
  animation: .9s linear infinite chat-runtime-module__aE_StG__chat-runtime-spin;
}

@keyframes chat-runtime-module__aE_StG__chat-runtime-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  .chat-runtime-module__aE_StG__messageList {
    padding: 22px 16px 20px;
  }

  .chat-runtime-module__aE_StG__message {
    margin-bottom: 18px;
  }

  .chat-runtime-module__aE_StG__messageBody {
    max-width: 92%;
  }

  .chat-runtime-module__aE_StG__messageText {
    line-height: 1.68;
  }

  .chat-runtime-module__aE_StG__composer {
    width: calc(100% - 24px);
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    border-radius: 20px;
  }

  .chat-runtime-module__aE_StG__composer.chat-runtime-module__aE_StG__composerAboveMobileTabs {
    padding-bottom: 8px;
  }

  .chat-runtime-module__aE_StG__attachmentQueue {
    width: calc(100% - 24px);
  }

  .chat-runtime-module__aE_StG__emptyState {
    min-height: 48vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-runtime-module__aE_StG__composer, .chat-runtime-module__aE_StG__composerAction {
    transition: none;
  }

  .chat-runtime-module__aE_StG__spin {
    animation: none;
  }
}

/* [project]/src/app/home.module.css [app-client] (css) */
.home-module__Hx0lNG__homeContainer {
  background: none;
  flex-direction: column;
  height: 100%;
  display: flex;
  position: relative;
}

.home-module__Hx0lNG__topModes {
  z-index: 40;
  pointer-events: none;
  background: none;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  display: flex;
  position: absolute;
  top: .85rem;
  left: 0;
  right: 0;
}

.home-module__Hx0lNG__modeSwitcher {
  border: 1px solid hsl(var(--border));
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  pointer-events: auto;
  background: #ffffffb8;
  border-radius: 999px;
  gap: .15rem;
  padding: .2rem;
  display: inline-flex;
  position: relative;
  box-shadow: 0 4px 14px #0f172a0d;
}

.home-module__Hx0lNG__modeSwitcher button {
  color: hsl(var(--muted-foreground));
  font: inherit;
  font-size: var(--text-sm);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 999px;
  align-items: center;
  gap: .4rem;
  padding: .48rem .95rem;
  font-weight: 600;
  transition: color .15s, background .15s, box-shadow .15s;
  display: inline-flex;
}

.home-module__Hx0lNG__modeSwitcher button:hover {
  color: hsl(var(--foreground));
}

.home-module__Hx0lNG__modeSwitcher .home-module__Hx0lNG__modeActive {
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  box-shadow: 0 1px 3px #0f172a14;
}

.home-module__Hx0lNG__modeSwitcher .home-module__Hx0lNG__modeActive svg {
  color: inherit;
}

.home-module__Hx0lNG__heroSection {
  text-align: center;
  background: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-height: 0;
  padding: 3.25rem 2rem 2rem;
  display: flex;
}

.home-module__Hx0lNG__heroContent {
  width: 100%;
  max-width: 800px;
  transform: translateY(-1.25rem);
}

.home-module__Hx0lNG__badge {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: var(--text-sm);
  color: #64748b;
  background: #fffc;
  border: 1px solid #0000000d;
  border-radius: 9999px;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.75rem;
  padding: .5rem 1rem;
  font-weight: 500;
  display: inline-flex;
}

.home-module__Hx0lNG__heroTitle {
  color: #0f172a;
  margin: 0 0 1.5rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-module__Hx0lNG__heroTitle span {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.home-module__Hx0lNG__heroSubtitle {
  font-size: var(--text-xl);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.home-module__Hx0lNG__buildHint {
  color: #64748b;
  font-size: var(--text-xs);
  align-items: center;
  gap: .35rem;
  margin: -1.35rem auto 1.25rem;
  display: inline-flex;
}

.home-module__Hx0lNG__buildHint svg {
  color: #059669;
}

.home-module__Hx0lNG__chatInputWrapper {
  background: #fff;
  border: 1px solid #0000000d;
  border-radius: 1.35rem;
  align-items: center;
  gap: .35rem;
  width: min(760px, 100%);
  max-width: 760px;
  margin: 0 auto 1.5rem;
  padding: .55rem .55rem .55rem .35rem;
  display: flex;
  position: relative;
  box-shadow: 0 10px 25px -5px #0000000d, 0 8px 10px -6px #0000000d;
}

.home-module__Hx0lNG__chatInputWrapper:focus-within {
  border-color: #3b82f647;
  box-shadow: 0 0 0 4px #3b82f614, 0 10px 25px -5px #0000000d;
}

.home-module__Hx0lNG__chatInput {
  min-width: 0;
  font-size: var(--text-base);
  color: #0f172a;
  font: inherit;
  resize: none;
  field-sizing: content;
  background: none;
  border: none;
  outline: none;
  flex: 1;
  min-height: 2.75rem;
  max-height: 7.5rem;
  padding: .85rem 1rem .85rem 1.25rem;
  line-height: 1.55;
}

.home-module__Hx0lNG__chatInput::placeholder {
  color: #94a3b8;
}

.home-module__Hx0lNG__sendButton {
  color: #fff;
  height: 2.75rem;
  min-height: 2.75rem;
  max-height: 2.75rem;
  font: inherit;
  font-size: var(--text-sm);
  cursor: pointer;
  white-space: nowrap;
  background: #0f172a;
  border: none;
  border-radius: .95rem;
  flex-shrink: 0;
  justify-content: center;
  align-self: center;
  align-items: center;
  gap: .4rem;
  padding: 0 1.15rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.home-module__Hx0lNG__sendButton:hover:not(:disabled) {
  background: #1e293b;
  transform: translateY(-1px);
}

.home-module__Hx0lNG__sendButton:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.home-module__Hx0lNG__fileQueue {
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem;
  max-width: 760px;
  margin: 0 auto .75rem;
  display: flex;
}

.home-module__Hx0lNG__fileQueue span {
  color: #475569;
  max-width: 220px;
  font-size: var(--text-xs);
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #ffffffe6;
  border: 1px solid #0000000f;
  border-radius: 999px;
  align-items: center;
  gap: .3rem;
  padding: .3rem .55rem;
  display: inline-flex;
  overflow: hidden;
}

.home-module__Hx0lNG__fileQueue button {
  color: #94a3b8;
  cursor: pointer;
  background: none;
  border: 0;
  place-items: center;
  display: inline-grid;
}

.home-module__Hx0lNG__errorLine {
  color: #dc2626;
  font-size: var(--text-sm);
  margin-top: .75rem;
}

@media (max-width: 768px) {
  .home-module__Hx0lNG__heroTitle {
    font-size: var(--text-4xl);
  }

  .home-module__Hx0lNG__heroSection {
    padding: 2rem 1.25rem 3rem;
  }

  .home-module__Hx0lNG__heroContent {
    transform: none;
  }

  .home-module__Hx0lNG__chatInputWrapper {
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: none;
  }

  .home-module__Hx0lNG__chatInput {
    font-size: var(--text-base);
    padding: .75rem .65rem .75rem .9rem;
  }

  .home-module__Hx0lNG__sendButton {
    height: 2.6rem;
    min-height: 2.6rem;
    max-height: 2.6rem;
    padding: 0 .85rem;
  }

  .home-module__Hx0lNG__sendButton span {
    display: none;
  }
}

.home-module__Hx0lNG__sharedLandingChat {
  gap: 10px;
  width: min(100%, 860px);
  margin: 0 auto;
  display: grid;
}

.home-module__Hx0lNG__sharedLandingChat > [class*="composer"] {
  width: 100%;
}

/*# sourceMappingURL=src_0rqw4r3._.css.map*/