/* [project]/app/globals.css [app-client] (css) */
@layer theme {
  :root, :host {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
      "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
      "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --shadow-sm: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
    --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

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

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring:where(:not(iframe)) {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible;
  }

  .fixed {
    position: fixed;
  }

  .static {
    position: static;
  }

  .block {
    display: block;
  }

  .contents {
    display: contents;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline {
    display: inline;
  }

  .table {
    display: table;
  }

  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
}

:root {
  --page: #f4f5f7;
  --card: #fff;
  --card-soft: #fafafa;
  --ink: #191c22;
  --ink-soft: #383e48;
  --muted: #69717e;
  --line: #e2e5e9;
  --line-strong: #cfd4da;
  --brand: #ec571f;
  --brand-hover: #d94915;
  --brand-soft: #fff1e9;
  --brand-ink: #a9350d;
  --sidebar: #171a20;
  --sidebar-soft: #22262e;
  --sidebar-ink: #f7f7f8;
  --sidebar-muted: #9da4b0;
  --ok-bg: #e9f8ef;
  --ok-ink: #187044;
  --stripe: #191c220b;
  --stack-stt: #5977c9;
  --stack-llm: #ec571f;
  --stack-tts: #15998f;
  --stack-fee: #8b929d;
  --shadow-sm: 0 1px 2px #10182808, 0 1px 3px #1018280a;
  --shadow-md: 0 12px 32px #14182012;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
}

body {
  background: var(--page);
  color: var(--ink);
  letter-spacing: -.008em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: Segoe UI Variable Text, Segoe UI, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

button, input, textarea, select {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--brand-ink);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand);
}

::selection {
  color: #4b1705;
  background: #ffd5c2;
}

.shell {
  grid-template-columns: 264px minmax(0, 1fr);
  min-height: 100vh;
  display: grid;
}

.sidebar {
  height: 100vh;
  color: var(--sidebar-ink);
  background: var(--sidebar);
  border-right: 1px solid #ffffff0a;
  flex-direction: column;
  padding: 26px 18px 20px;
  display: flex;
  position: sticky;
  top: 0;
  overflow-y: auto;
}

.brand {
  color: var(--sidebar-ink);
  letter-spacing: -.035em;
  align-items: center;
  gap: 11px;
  padding: 0 8px;
  font-size: 19px;
  font-weight: 760;
  display: flex;
}

.brand-mark {
  background: var(--brand);
  border-radius: 9px;
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  position: relative;
  box-shadow: inset 0 0 0 1px #ffffff2e, 0 6px 16px #ec571f3d;
}

.brand-mark:before, .brand-mark:after {
  content: "";
  background: #fff;
  border-radius: 99px;
  width: 3px;
  height: 15px;
  position: absolute;
  top: 8px;
}

.brand-mark:before {
  left: 9px;
  box-shadow: 5px -3px #ffffffc7;
}

.brand-mark:after {
  height: 9px;
  top: 11px;
  right: 8px;
}

.brand-accent {
  color: #ff8053;
}

.business-card {
  background: #ffffff09;
  border: 1px solid #ffffff14;
  border-radius: 13px;
  margin: 25px 3px 22px;
  padding: 12px 13px;
}

.business-card small {
  color: var(--sidebar-muted);
  letter-spacing: .075em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 650;
  display: block;
}

.business-card strong {
  color: #f4f5f7;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 620;
  display: block;
  overflow: hidden;
}

.nav-section-label {
  color: #747c89;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 3px 0 8px;
  padding: 0 11px;
  font-size: 10px;
  font-weight: 750;
}

.nav {
  gap: 3px;
  display: grid;
}

.nav + .nav-section-label {
  margin-top: 22px;
}

.nav a {
  min-height: 42px;
  color: var(--sidebar-muted);
  border-radius: 10px;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  font-size: 13.5px;
  font-weight: 550;
  text-decoration: none;
  transition: color .16s, background .16s, transform .16s;
  display: flex;
}

.nav a svg {
  color: #858d99;
  flex: none;
}

.nav a:hover {
  color: #fff;
  background: #ffffff0e;
  transform: translateX(1px);
}

.nav a:hover svg {
  color: #d8dbe0;
}

.nav a.active {
  color: #fff;
  background: var(--sidebar-soft);
  box-shadow: inset 3px 0 0 var(--brand);
}

.nav a.active svg {
  color: #ff7544;
}

.sidebar-footer {
  color: #69717e;
  margin-top: auto;
  padding: 18px 10px 0;
  font-size: 11px;
}

.main {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 42px 44px 64px;
}

.page-header, header:not(.top) {
  margin-bottom: 26px;
}

.top {
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 26px;
  display: flex;
}

.eyebrow {
  color: var(--brand);
  letter-spacing: .105em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 780;
}

h1, h2, h3 {
  color: var(--ink);
  letter-spacing: -.033em;
  line-height: 1.18;
}

h1 {
  margin: 6px 0 7px;
  font-size: clamp(30px, 3vw, 39px);
  font-weight: 730;
}

h2 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
}

h3 {
  margin: 22px 0 10px;
  font-size: 15px;
  font-weight: 700;
}

p {
  margin: 0 0 14px;
}

.muted {
  color: var(--muted);
}

header .muted, .top .muted {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 15px;
}

.grid {
  gap: 18px;
  display: grid;
}

.metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: 17px;
  padding: 22px;
}

.metric {
  min-height: 146px;
  position: relative;
  overflow: hidden;
}

.metric:after {
  content: "";
  border: 17px solid var(--brand-soft);
  opacity: .72;
  border-radius: 50%;
  width: 84px;
  height: 84px;
  position: absolute;
  bottom: -33px;
  right: -22px;
}

.metric > * {
  z-index: 1;
  position: relative;
}

.metric strong {
  color: var(--ink);
  letter-spacing: -.04em;
  margin: 10px 0 12px;
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 720;
  line-height: 1;
  display: block;
}

.metric small {
  color: #89909a;
  font-size: 11.5px;
  font-weight: 520;
}

.metric > .muted {
  font-size: 13px;
  font-weight: 620;
}

.btn {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  font-weight: 680;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  display: inline-flex;
  box-shadow: 0 1px 2px #00000017;
}

.btn:hover {
  color: #fff;
  background: #2c313a;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px #12151b21;
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: .55;
  cursor: wait;
  transform: none;
}

.btn.secondary {
  background: var(--card);
  color: var(--ink-soft);
  border-color: var(--line-strong);
  box-shadow: none;
}

.btn.secondary:hover {
  background: var(--card-soft);
  color: var(--ink);
}

.btn.danger {
  background: #b42318;
  border-color: #b42318;
}

.field {
  border: 1px solid var(--line-strong);
  background: var(--card);
  width: 100%;
  min-height: 43px;
  color: var(--ink);
  border-radius: 10px;
  outline: none;
  padding: 10px 12px;
  transition: border-color .16s, box-shadow .16s;
}

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

.field:hover {
  border-color: #aeb4bc;
}

.field:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px #ec571f21;
}

.field::placeholder {
  color: #9ba1aa;
}

label {
  color: var(--ink-soft);
  gap: 7px;
  font-size: 13px;
  font-weight: 650;
  display: grid;
}

.form {
  gap: 17px;
  display: grid;
}

.badge {
  background: var(--brand-soft);
  width: fit-content;
  color: var(--brand-ink);
  border: 1px solid #fbd2c0;
  border-radius: 999px;
  align-items: center;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.4;
  display: inline-flex;
}

.table {
  border-collapse: collapse;
  width: 100%;
}

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

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

.table thead th {
  color: #7b838f;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: 10.5px;
  font-weight: 760;
}

.table tbody tr {
  transition: background .14s;
}

.table tbody tr:hover {
  background: #fafbfc;
}

.table a {
  color: var(--ink);
  font-weight: 650;
  text-decoration-color: #c8cdd3;
}

.table a:hover {
  color: var(--brand-ink);
  -webkit-text-decoration-color: var(--brand);
  text-decoration-color: var(--brand);
}

code {
  overflow-wrap: anywhere;
  color: #3e4652;
  background: #f0f2f4;
  border-radius: 6px;
  max-width: 100%;
  padding: 3px 6px;
  font-family: Cascadia Code, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  display: inline-block;
}

.texture-stripes {
  background-color: var(--card);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 9px, var(--stripe) 9px, var(--stripe) 10px);
}

.empty {
  text-align: center;
  padding: 62px 24px;
}

.empty h2 {
  font-size: 21px;
}

.empty p {
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
}

.seg {
  border: 1px solid var(--line);
  background: #e9ebee;
  border-radius: 11px;
  gap: 3px;
  padding: 4px;
  display: inline-flex;
}

.seg a, .seg button {
  min-height: 34px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 650;
  text-decoration: none;
}

.seg a:first-child, .seg button.active {
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 1px 3px #10182817;
}

.timeline {
  gap: 12px;
  display: grid;
}

.bubble {
  border: 1px solid var(--line);
  background: var(--card-soft);
  border-radius: 15px 15px 15px 4px;
  max-width: 75%;
  padding: 12px 14px;
}

.bubble.agent {
  background: var(--brand-soft);
  border-color: #fac9b5;
  border-radius: 15px 15px 4px;
  margin-left: auto;
}

.row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.stackbar {
  background: var(--line);
  border-radius: 99px;
  gap: 2px;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.stackbar span {
  height: 100%;
}

.stackbar span:first-child {
  background: var(--stack-stt);
}

.stackbar span:nth-child(2) {
  background: var(--stack-llm);
}

.stackbar span:nth-child(3) {
  background: var(--stack-tts);
}

.stackbar span:nth-child(4) {
  background: var(--stack-fee);
}

.login-wrap {
  background: var(--card);
  grid-template-columns: minmax(360px, .92fr) minmax(520px, 1.08fr);
  min-height: 100vh;
  padding: 0;
  display: grid;
}

.login-aside {
  color: #fff;
  background: var(--sidebar);
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 42px 46px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login-aside:before {
  content: "";
  border: 88px solid #ec571ff2;
  border-radius: 50%;
  width: 520px;
  height: 520px;
  position: absolute;
  bottom: -210px;
  right: -170px;
}

.login-aside:after {
  content: "";
  border: 1px solid #ffffff1f;
  border-radius: 50%;
  width: 170px;
  height: 170px;
  position: absolute;
  bottom: 56px;
  right: 96px;
}

.login-aside .brand {
  z-index: 1;
  padding: 0;
  position: relative;
}

.login-copy {
  z-index: 1;
  max-width: 520px;
  padding: 60px 0;
  position: relative;
}

.login-copy .eyebrow {
  color: #ff8d65;
}

.login-copy h1 {
  color: #fff;
  max-width: 490px;
  margin-top: 13px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
}

.login-copy p {
  color: #b7bdc7;
  max-width: 440px;
  font-size: 17px;
  line-height: 1.6;
}

.login-note {
  z-index: 1;
  color: #6f7783;
  font-size: 12px;
  position: relative;
}

.login-panel {
  background: #f7f8fa;
  place-items: center;
  min-height: 100vh;
  padding: 40px;
  display: grid;
}

.login {
  width: min(440px, 100%);
  box-shadow: var(--shadow-md);
  border-radius: 20px;
  padding: 32px;
}

.login h2 {
  margin-bottom: 7px;
  font-size: 27px;
}

.login > .muted {
  margin-bottom: 24px;
}

.login .seg {
  width: 100%;
  margin-bottom: 22px;
}

.login .seg button {
  flex: 1;
}

.login .btn {
  background: var(--brand);
  border-color: var(--brand);
  width: 100%;
  margin-top: 3px;
}

.login .btn:hover {
  background: var(--brand-hover);
}

.form-error {
  color: #b42318;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1050px) {
  .shell {
    grid-template-columns: 228px minmax(0, 1fr);
  }

  .main {
    padding: 36px 28px 56px;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .login-wrap {
    grid-template-columns: .8fr 1fr;
  }

  .login-aside {
    padding: 36px 32px;
  }
}

@media (max-width: 760px) {
  .shell {
    display: block;
  }

  .sidebar {
    z-index: 20;
    height: auto;
    min-height: 0;
    padding: 13px 15px 10px;
    position: sticky;
    overflow: visible;
    box-shadow: 0 4px 15px #00000024;
  }

  .sidebar .brand {
    padding-left: 2px;
  }

  .brand-mark {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .brand-mark:before {
    top: 7px;
    left: 8px;
  }

  .brand-mark:after {
    top: 10px;
    right: 7px;
  }

  .business-card, .nav-section-label, .sidebar-footer {
    display: none;
  }

  .sidebar nav {
    scrollbar-width: none;
    gap: 3px;
    margin-top: 11px;
    display: flex;
    overflow-x: auto;
  }

  .sidebar nav::-webkit-scrollbar {
    display: none;
  }

  .nav {
    display: contents;
  }

  .nav a {
    flex: none;
    min-height: 37px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .nav a.active {
    box-shadow: inset 0 -2px 0 var(--brand);
  }

  .nav a:hover {
    transform: none;
  }

  .main {
    padding: 26px 17px 46px;
  }

  .top {
    display: block;
  }

  .top .seg {
    margin-top: 18px;
  }

  h1 {
    font-size: 31px;
  }

  .metrics, .two {
    grid-template-columns: 1fr;
  }

  .card {
    border-radius: 14px;
    padding: 18px;
  }

  .metric {
    min-height: 126px;
  }

  .table {
    white-space: nowrap;
    display: block;
    overflow-x: auto;
  }

  .login-wrap {
    background: #f7f8fa;
    display: block;
  }

  .login-aside {
    min-height: 300px;
    padding: 28px 24px;
  }

  .login-copy {
    padding: 45px 0 70px;
  }

  .login-copy h1 {
    font-size: 40px;
  }

  .login-copy p {
    font-size: 15px;
  }

  .login-note {
    display: none;
  }

  .login-panel {
    min-height: auto;
    padding: 28px 16px 42px;
  }

  .login {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

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