/* [project]/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
}

html, body {
  color: #0b0b0b;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
}

.page {
  flex-direction: column;
  min-height: 100dvh;
  display: flex;
}

.header {
  padding: 28px 32px;
}

.logo {
  align-items: center;
  gap: 12px;
  display: inline-flex;
}

.logo-mark {
  width: auto;
  height: 34px;
  display: block;
}

.logo-word-img {
  width: auto;
  height: 30px;
  display: block;
}

.stage {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding: 0 24px 12vh;
  display: flex;
}

.gate {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 0 24px 12vh;
  display: flex;
}

.gate-input {
  color: #0b0b0b;
  text-align: center;
  letter-spacing: .12em;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  outline: none;
  width: min(280px, 80vw);
  padding: 13px 20px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color .2s;
}

.gate-input:focus {
  border-color: #0b0b0b;
}

.gate-input:disabled {
  opacity: .5;
}

.orb {
  width: min(340px, 76vw);
  height: min(340px, 76vw);
  display: block;
}

.status {
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9b9b9b;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  transition: color .24s;
}

.status-live {
  color: #3d3d3d;
}

.picker {
  display: inline-flex;
  position: relative;
}

.picker-trigger {
  appearance: none;
  color: #6b6b6b;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 88px;
  height: 48px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  transition: color .2s, border-color .2s, opacity .2s;
  display: inline-flex;
}

.picker-trigger:hover:not(:disabled) {
  color: #0b0b0b;
  border-color: #b5b5b5;
}

.picker-trigger:disabled {
  cursor: default;
  opacity: .45;
}

.picker-trigger svg {
  transition: transform .2s;
}

.picker-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.picker-menu {
  z-index: 5;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 12px;
  min-width: 100%;
  margin: 0;
  padding: 4px;
  list-style: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  box-shadow: 0 8px 24px #0b0b0b1a;
}

.picker-choice {
  appearance: none;
  text-align: left;
  white-space: nowrap;
  color: #6b6b6b;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 9px 14px;
  font-family: inherit;
  font-size: 13px;
  transition: background .16s, color .16s;
  display: block;
}

.picker-choice:hover {
  color: #0b0b0b;
  background: #f6f6f6;
}

.picker-choice-on {
  color: #0b0b0b;
  font-weight: 600;
}

.served-model {
  letter-spacing: .04em;
  color: #bdbdbd;
  align-items: center;
  min-height: 14px;
  margin: 0;
  font-size: 11px;
  display: flex;
}

.served-sep {
  opacity: .6;
  background: currentColor;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  margin: 0 9px;
}

.endpoints {
  color: #e0e0e0;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  grid-template-columns: auto auto auto;
  gap: 1px 8px;
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  line-height: 1.35;
  display: grid;
  position: fixed;
  bottom: 8px;
  right: 10px;
}

.endpoint {
  display: contents;
}

.endpoint dt {
  color: #ededed;
}

.endpoint dd {
  margin: 0;
}

.endpoint-region {
  color: #c4c4c4;
}

.endpoint-host {
  color: #ededed;
  text-align: right;
}

.latency {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  line-height: 1.35;
  display: flex;
  position: fixed;
  bottom: 62px;
  right: 10px;
}

.latency-hotspot {
  z-index: 9;
  width: 180px;
  height: 90px;
  position: fixed;
  bottom: 0;
  right: 0;
}

.latency-peek {
  z-index: 11;
  pointer-events: auto;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 12px;
  padding: 10px 12px;
  animation: .2s notice-in;
  bottom: 16px;
  right: 14px;
  box-shadow: 0 10px 30px #0b0b0b1c;
}

.latency-turn {
  color: #bdbdbd;
  letter-spacing: .04em;
}

.latency-grid {
  color: #6b6b6b;
  grid-template-columns: auto auto auto;
  gap: 1px 8px;
  margin: 0;
  display: grid;
}

.latency-row {
  display: contents;
}

.latency-row dd {
  font-variant-numeric: tabular-nums;
  text-align: right;
  margin: 0;
}

.latency-unit {
  color: #bdbdbd;
}

.latency-e2e dt, .latency-e2e dd {
  color: #0b0b0b;
  font-weight: 600;
}

.toast {
  z-index: 10;
  color: #3d3d3d;
  text-align: center;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 14px;
  flex-direction: column;
  gap: 6px;
  max-width: min(480px, 90vw);
  padding: 13px 20px;
  font-size: 13px;
  line-height: 1.5;
  animation: .24s toast-in;
  display: flex;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 24px #0b0b0b1a;
}

.toast-detail {
  color: #bdbdbd;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translate(-50%, -8px);
  }

  to {
    opacity: 1;
    transform: translate(-50%);
  }
}

.notices {
  z-index: 10;
  pointer-events: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  display: flex;
  position: fixed;
  top: 16px;
  right: 16px;
}

.notice {
  letter-spacing: -.01em;
  color: #0b0b0b;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 16px;
  align-items: flex-start;
  gap: 12px;
  width: min(380px, 84vw);
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.4;
  animation: .26s cubic-bezier(.22, 1, .36, 1) notice-in;
  display: flex;
  box-shadow: 0 10px 30px #0b0b0b1c;
}

.notice-icon {
  color: #bdbdbd;
  margin-top: 1px;
  display: inline-flex;
}

.notice-text {
  flex-direction: column;
  gap: 3px;
  display: flex;
}

.notice-title {
  font-weight: 550;
}

.notice-detail {
  color: #8a8a8a;
  font-size: 13px;
  line-height: 1.45;
}

.notice-submitted .notice-icon {
  color: #1f9d55;
}

@keyframes notice-in {
  from {
    opacity: 0;
    transform: translateY(-10px)scale(.97);
  }

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

.transcript-hotspot {
  z-index: 9;
  width: 180px;
  height: 90px;
  position: fixed;
  bottom: 0;
  left: 0;
}

.transcript {
  text-align: left;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 14px;
  flex-direction: column;
  gap: 10px;
  width: min(420px, 38vw);
  max-height: 62vh;
  padding: 0 16px 14px;
  display: flex;
  position: fixed;
  bottom: 16px;
  left: 16px;
  overflow-y: auto;
}

.transcript-peek {
  z-index: 11;
  animation: .2s notice-in;
  box-shadow: 0 10px 30px #0b0b0b1c;
}

.transcript-header {
  z-index: 1;
  background: #fff;
  justify-content: flex-end;
  margin: 0 -16px;
  padding: 12px 16px 8px;
  display: flex;
  position: sticky;
  top: 0;
}

.transcript-copy {
  appearance: none;
  color: #6b6b6b;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  display: inline-flex;
  position: relative;
}

.transcript-copy:after {
  content: attr(data-hint);
  color: #fff;
  letter-spacing: .04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  background: #0b0b0b;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
  transition: opacity .12s;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
}

.transcript-copy:hover:not(:disabled):after, .transcript-copy:focus-visible:after {
  opacity: 1;
}

.transcript-copy:hover:not(:disabled) {
  color: #0b0b0b;
  border-color: #0b0b0b;
}

.transcript-copy:disabled {
  color: #bdbdbd;
  cursor: default;
}

.transcript-line {
  color: #3d3d3d;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.transcript-agent {
  color: #0b0b0b;
}

.transcript-dropped {
  color: #d99a94;
  cursor: help;
}

.transcript-dropped .transcript-role {
  color: inherit;
}

.transcript-tool {
  background: #f6f6f6;
  border-radius: 8px;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  display: flex;
}

.transcript-tool code {
  color: #6b6b6b;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  line-height: 1.45;
}

.transcript-tool-out {
  white-space: pre-wrap;
  color: #0b0b0b !important;
}

.transcript-tool-error {
  background: #fdf0ef;
}

.transcript-empty {
  letter-spacing: .06em;
  color: #bdbdbd;
  margin: 0;
  font-size: 11px;
}

.transcript-role {
  letter-spacing: .18em;
  color: #bdbdbd;
  font-size: 9px;
  font-weight: 700;
  display: block;
}

.control-stack {
  flex-direction: column;
  align-items: center;
  gap: 14px;
  display: flex;
}

.controls {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  display: flex;
}

.voice-field {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  max-width: 92vw;
  height: 38px;
  padding: 0 5px 0 16px;
  transition: border-color .2s, opacity .2s;
  display: inline-flex;
}

.voice-field:focus-within {
  border-color: #b5b5b5;
}

.voice-field-invalid {
  border-color: #e10500;
}

.voice-field:has(.voice-input:disabled) {
  opacity: .45;
}

.voice-label {
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #bdbdbd;
  -webkit-user-select: none;
  user-select: none;
  font-size: 9px;
  font-weight: 700;
}

.voice-input {
  letter-spacing: .02em;
  color: #3d3d3d;
  background: none;
  border: none;
  outline: none;
  width: 268px;
  max-width: 46vw;
  padding: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.voice-input::placeholder {
  color: #e0e0e0;
}

.voice-reset {
  appearance: none;
  color: #bdbdbd;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 999px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  transition: color .16s, background .16s;
  display: inline-flex;
  position: relative;
}

.voice-reset:hover:not(:disabled) {
  color: #0b0b0b;
  background: #f6f6f6;
}

.voice-reset:disabled {
  color: #ededed;
  cursor: default;
}

.voice-reset:after {
  content: attr(data-hint);
  color: #fff;
  letter-spacing: .04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  background: #0b0b0b;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
  transition: opacity .12s;
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
}

.voice-reset:hover:not(:disabled):after, .voice-reset:focus-visible:after {
  opacity: 1;
}

.cta {
  appearance: none;
  color: #fff;
  cursor: pointer;
  background: #0b0b0b;
  border: 1px solid #0b0b0b;
  border-radius: 999px;
  padding: 14px 30px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  transition: transform .16s, background .2s, color .2s, opacity .2s;
}

.cta:hover:not(:disabled) {
  transform: translateY(-1px)scale(1.02);
}

.cta:active:not(:disabled) {
  transform: translateY(0)scale(.99);
}

.cta:disabled {
  opacity: .45;
  cursor: default;
}

.cta-stop {
  color: #0b0b0b;
  background: #fff;
  border-color: #e0e0e0;
}

.cta-stop:hover:not(:disabled) {
  color: #e10500;
  border-color: #e10500;
}

.cta-ghost {
  color: #6b6b6b;
  background: #fff;
  border-color: #e0e0e0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  display: inline-flex;
}

.cta-ghost:hover:not(:disabled) {
  color: #0b0b0b;
  border-color: #b5b5b5;
}

.cta-ghost-on {
  color: #fff;
  background: #0b0b0b;
  border-color: #0b0b0b;
}

.cta-ghost-on:hover:not(:disabled) {
  color: #fff;
  border-color: #0b0b0b;
}

.error {
  text-align: center;
  color: #e10500;
  max-width: 420px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }

  .toast {
    animation: none;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/