:root {
  --text: #9ca3af;
  --text-h: #f3f4f6;
  --bg: #0b0f17;
  --border: #273244;
  --code-bg: #0f172a;
  --accent: #c084fc;
  --accent-bg: rgba(192, 132, 252, 0.14);
  --accent-border: rgba(192, 132, 252, 0.45);
  --social-bg: rgba(17, 24, 39, 0.6);
  --shadow:
    rgba(0, 0, 0, 0.4) 0 10px 15px -3px, rgba(0, 0, 0, 0.25) 0 4px 6px -2px;

  --sans: system-ui, 'Segoe UI', Roboto, sans-serif;
  --heading: system-ui, 'Segoe UI', Roboto, sans-serif;
  --mono: ui-monospace, Consolas, monospace;

  font: 14px/145% var(--sans);
  letter-spacing: 0.14px;
  color-scheme: dark;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-color-scheme: light) {
  :root {
    --text: #4b5563;
    --text-h: #0f172a;
    --bg: #f8fafc;
    --border: #e2e8f0;
    --code-bg: #ffffff;
    --accent: #7c3aed;
    --accent-bg: rgba(124, 58, 237, 0.12);
    --accent-border: rgba(124, 58, 237, 0.35);
    --social-bg: rgba(255, 255, 255, 0.7);
    --shadow:
      rgba(15, 23, 42, 0.08) 0 10px 15px -3px, rgba(15, 23, 42, 0.05) 0 4px 6px -2px;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

h1,
h2 {
  font-family: var(--heading);
  font-weight: 500;
  color: var(--text-h);
}

h1 {
  font-size: 56px;
  letter-spacing: -1.68px;
  margin: 32px 0;
  @media (max-width: 1024px) {
    font-size: 36px;
    margin: 20px 0;
  }
}
h2 {
  font-size: 24px;
  line-height: 118%;
  letter-spacing: -0.24px;
  margin: 0 0 8px;
  @media (max-width: 1024px) {
    font-size: 20px;
  }
}
p {
  margin: 0;
}

code,
.counter {
  font-family: var(--mono);
  display: inline-flex;
  border-radius: 4px;
  color: var(--text-h);
}

code {
  font-size: 15px;
  line-height: 135%;
  padding: 4px 8px;
  background: var(--code-bg);
}

.counter {
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--accent);
  background: var(--accent-bg);
  border: 2px solid transparent;
  transition: border-color 0.3s;
  margin-bottom: 24px;

  &:hover {
    border-color: var(--accent-border);
  }
  &:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
}

.hero {
  position: relative;

  .base,
  .framework,
  .vite {
    inset-inline: 0;
    margin: 0 auto;
  }

  .base {
    width: 170px;
    position: relative;
    z-index: 0;
  }

  .framework,
  .vite {
    position: absolute;
  }

  .framework {
    z-index: 1;
    top: 34px;
    height: 28px;
    transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
      scale(1.4);
  }

  .vite {
    z-index: 0;
    top: 107px;
    height: 26px;
    width: auto;
    transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
      scale(0.8);
  }
}

#app {
  width: 100%;
  margin: 0;
  min-height: 100svh;
  display: block;
  box-sizing: border-box;
}

.page {
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.btn {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  color: var(--text-h);
  padding: 0 12px;
  border-radius: 10px;
  cursor: pointer;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #0b0f17;
}

.input {
  background: var(--code-bg);
  border: 1px solid var(--border);
  color: var(--text-h);
  padding: 0 12px;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
  height: 36px;
  font-size: 14px;
}

#center {
  display: flex;
  flex-direction: column;
  gap: 25px;
  place-content: center;
  place-items: center;
  flex-grow: 1;

  @media (max-width: 1024px) {
    padding: 32px 20px 24px;
    gap: 18px;
  }
}

#next-steps {
  display: flex;
  border-top: 1px solid var(--border);
  text-align: left;

  & > div {
    flex: 1 1 0;
    padding: 32px;
    @media (max-width: 1024px) {
      padding: 24px 20px;
    }
  }

  .icon {
    margin-bottom: 16px;
    width: 22px;
    height: 22px;
  }

  @media (max-width: 1024px) {
    flex-direction: column;
    text-align: center;
  }
}

#docs {
  border-right: 1px solid var(--border);

  @media (max-width: 1024px) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

#next-steps ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
  margin: 32px 0 0;

  .logo {
    height: 18px;
  }

  a {
    color: var(--text-h);
    font-size: 16px;
    border-radius: 6px;
    background: var(--social-bg);
    display: flex;
    padding: 6px 12px;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: box-shadow 0.3s;

    &:hover {
      box-shadow: var(--shadow);
    }
    .button-icon {
      height: 18px;
      width: 18px;
    }
  }

  @media (max-width: 1024px) {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;

    li {
      flex: 1 1 calc(50% - 8px);
    }

    a {
      width: 100%;
      justify-content: center;
      box-sizing: border-box;
    }
  }
}

#spacer {
  height: 88px;
  border-top: 1px solid var(--border);
  @media (max-width: 1024px) {
    height: 48px;
  }
}

.ticks {
  position: relative;
  width: 100%;

  &::before,
  &::after {
    content: '';
    position: absolute;
    top: -4.5px;
    border: 5px solid transparent;
  }

  &::before {
    left: 0;
    border-left-color: var(--border);
  }
  &::after {
    right: 0;
    border-right-color: var(--border);
  }
}

.auth-bg[data-v-8d414eb0] {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(99, 102, 241, 0.35), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(16, 185, 129, 0.18), transparent 55%),
    radial-gradient(1000px 600px at 60% 100%, rgba(59, 130, 246, 0.18), transparent 60%),
    linear-gradient(180deg, #0b1020 0%, #070a12 100%);
}
.auth-bg[data-v-8d414eb0]::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.35;
  mask-image: radial-gradient(900px 520px at 50% 30%, rgba(0, 0, 0, 1), transparent 70%);
}
.auth-wrap[data-v-8d414eb0] {
  width: min(520px, 100%);
  display: grid;
  place-items: center;
}
.auth-card[data-v-8d414eb0] {
  backdrop-filter: blur(10px);
  background-color: rgba(17, 24, 39, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.auth-bg[data-v-936a9530] {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(99, 102, 241, 0.35), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(16, 185, 129, 0.18), transparent 55%),
    radial-gradient(1000px 600px at 60% 100%, rgba(59, 130, 246, 0.18), transparent 60%),
    linear-gradient(180deg, #0b1020 0%, #070a12 100%);
}
.auth-bg[data-v-936a9530]::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.35;
  mask-image: radial-gradient(900px 520px at 50% 30%, rgba(0, 0, 0, 1), transparent 70%);
}
.auth-wrap[data-v-936a9530] {
  width: min(520px, 100%);
  display: grid;
  place-items: center;
}
.auth-card[data-v-936a9530] {
  backdrop-filter: blur(10px);
  background-color: rgba(17, 24, 39, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.page[data-v-6fa0b44c] {
  width: 100%;
}

.sidebar[data-v-e53323aa] {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #111;
  border-right: 1px solid #333;
  height: 100%;
  color: #fff;
  --text: #fff;
  --border: #333;
  --surface: #111;
}
.sidebar-header[data-v-e53323aa] {
  padding: 16px;
  border-bottom: 1px solid #333;
}
.variant-list[data-v-e53323aa] {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: grid;
  gap: 12px;
  align-content: start;
}
.variant-item[data-v-e53323aa] {
  border: 1px solid #333;
  border-radius: 8px;
  background: #1a1a1a;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s;
}
.variant-item.active[data-v-e53323aa] {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.3) inset;
}
.variant-item[data-v-e53323aa]:hover:not(.active) {
  border-color: #555;
  background: #222;
}
.variant-thumb[data-v-e53323aa] {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.variant-thumb-empty[data-v-e53323aa] {
  color: #aaa;
  font-size: 12px;
}
.variant-meta[data-v-e53323aa] {
  padding: 12px;
  display: grid;
  gap: 8px;
}
.variant-model[data-v-e53323aa] {
  font-size: 12px;
  color: #fff;
  font-family: var(--mono);
}
.variant-empty[data-v-e53323aa] {
  text-align: center;
  color: #aaa;
  font-size: 13px;
  padding: 24px 0;
}

.main-player-panel[data-v-f63dca76] {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #000;
  border-right: 1px solid #333;
  min-width: 0;
  height: 100%;
  overflow-y: auto;
  color: #fff;
  --text: #fff;
  --surface: #111;
  --border: #333;
}
.variant-header[data-v-f63dca76] {
  margin-bottom: 16px;
}
.main-video[data-v-f63dca76] {
  width: 100%;
  max-height: calc(100vh - 300px);
  background: #000;
  border-radius: 8px;
  outline: none;
}
.main-video-placeholder[data-v-f63dca76] {
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 8px;
  border: 1px dashed #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.main-video-placeholder.error[data-v-f63dca76] {
  border-color: #ef4444;
  color: #ef4444;
}
.empty-state[data-v-f63dca76] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-carousel[data-v-b17af4ab] {
  width: 100%;
  overflow-x: auto;
  padding: 16px;
  background: #111;
  border-top: 1px solid #333;
  color: #fff;
  --text: #fff;
  --border: #333;
  --surface: #111;
}
.timeline-track[data-v-b17af4ab] {
  display: flex;
  gap: 12px;
}
.timeline-card[data-v-b17af4ab] {
  width: 160px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 2px solid transparent;
  background: #1a1a1a;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s;
}
.timeline-card.active[data-v-b17af4ab] {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
}
.timeline-card[data-v-b17af4ab]:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.2);
}
.timeline-card-thumb[data-v-b17af4ab] {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.timeline-card-video-thumb[data-v-b17af4ab] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.timeline-card-placeholder[data-v-b17af4ab] {
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  font-weight: bold;
}
.timeline-card-meta[data-v-b17af4ab] {
  padding: 8px;
  text-align: center;
}
.timeline-card-shot-num[data-v-b17af4ab] {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workbench-page[data-v-8c903e8e] {
  max-width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #000;
  color: #fff;
  --text: #fff;
  --surface: #111;
  --border: #333;
}
.workbench-header[data-v-8c903e8e] {
  flex-shrink: 0;
  padding: 12px 24px;
  background: #111;
  border-bottom: 1px solid #333;
  z-index: 10;
}
[data-v-8c903e8e] .n-page-header__title {
  color: #fff !important;
}
[data-v-8c903e8e] .n-form-item-label {
  color: #fff !important;
}
[data-v-8c903e8e] .n-radio-button {
  background: #111;
  color: #fff;
  border-color: #333;
}
[data-v-8c903e8e] .n-radio-button.n-radio-button--checked {
  background: #222;
  color: #38bdf8;
  border-color: #38bdf8;
}
[data-v-8c903e8e] .n-input {
  background-color: #111;
  color: #fff;
  border-color: #333;
}
[data-v-8c903e8e] .n-input__input-el {
  color: #fff;
}
[data-v-8c903e8e] .n-input__textarea-el {
  color: #fff;
}
[data-v-8c903e8e] .n-select .n-base-selection {
  background-color: #111;
  border-color: #333;
}
[data-v-8c903e8e] .n-select .n-base-selection-input {
  color: #fff;
}
.layout-main[data-v-8c903e8e] {
  flex: 1;
  display: flex;
  min-height: 0;
  overflow: hidden;
}
.column-left[data-v-8c903e8e] {
  width: 280px;
  flex-shrink: 0;
  background: #111;
  border-right: 1px solid #333;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.column-center[data-v-8c903e8e] {
  flex: 1;
  background: #000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  position: relative;
}
.column-right[data-v-8c903e8e] {
  width: 480px;
  flex-shrink: 0;
  background: #111;
  border-left: 1px solid #333;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.layout-bottom[data-v-8c903e8e] {
  height: 160px;
  flex-shrink: 0;
  background: #111;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.picked-grid[data-v-8c903e8e] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.picked-tile[data-v-8c903e8e] {
  border: 1px solid #333;
  border-radius: 10px;
  padding: 8px;
  display: grid;
  gap: 6px;
  width: 120px;
  background: #1a1a1a;
}
.picked-thumb[data-v-8c903e8e] {
  width: 100%;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333;
  background: #222;
}
.picked-thumb img[data-v-8c903e8e] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.picked-thumb-empty[data-v-8c903e8e] {
  width: 100%;
  height: 100%;
  background: #222;
}
.picked-meta[data-v-8c903e8e] {
  font-family: var(--mono);
  font-size: 12px;
  color: #fff;
}
.variant-preview[data-v-8c903e8e] {
  border: 1px solid #333;
  border-radius: 10px;
  padding: 10px;
  background: #1a1a1a;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.variant-preview-img[data-v-8c903e8e] {
  width: 100%;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #333;
  background: #000;
}
.variant-preview-img img[data-v-8c903e8e] {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.variant-preview-empty[data-v-8c903e8e] {
  color: #aaa;
  font-size: 12px;
}
.variant-grid[data-v-8c903e8e] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-height: 320px;
  overflow: auto;
  padding-right: 6px;
}
.variant-tile[data-v-8c903e8e] {
  border: 1px solid #333;
  border-radius: 10px;
  padding: 8px;
  display: grid;
  gap: 8px;
  cursor: pointer;
  background: #1a1a1a;
}
.variant-tile[data-selected='true'][data-v-8c903e8e] {
  border-color: #c084fc;
  box-shadow: 0 0 0 1px rgba(192, 132, 252, 0.45) inset;
}
.variant-thumb[data-v-8c903e8e] {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}
.variant-thumb img[data-v-8c903e8e] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.variant-thumb-empty[data-v-8c903e8e] {
  color: #aaa;
  font-size: 12px;
}
.variant-meta[data-v-8c903e8e] {
  font-family: var(--mono);
  font-size: 12px;
  color: #fff;
}
.mention-panel[data-v-8c903e8e] {
  position: fixed;
  z-index: 2500;
  width: 340px;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
  border: 1px solid #333;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(8px);
  /* overflow: hidden; Removed to allow dropdowns to overflow */
  display: flex;
  flex-direction: column;
}
.mention-panel-head[data-v-8c903e8e] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid #333;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.mention-panel-body[data-v-8c903e8e] {
  padding: 10px;
  overflow: auto;
  max-height: 360px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.mention-panel-empty[data-v-8c903e8e] {
  color: #aaa;
  font-size: 12px;
  line-height: 1.5;
}
.mention-grid[data-v-8c903e8e] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.mention-item[data-v-8c903e8e] {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid #333;
  border-radius: 10px;
  cursor: pointer;
  background: #1a1a1a;
}
.mention-item[data-v-8c903e8e]:hover {
  border-color: #38bdf8;
}
.mention-thumb[data-v-8c903e8e] {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333;
  background: #222;
  flex-shrink: 0;
}
.mention-thumb img[data-v-8c903e8e] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mention-thumb-empty[data-v-8c903e8e] {
  width: 100%;
  height: 100%;
  background: #222;
}
.mention-meta[data-v-8c903e8e] {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.mention-meta-top[data-v-8c903e8e] {
  color: #fff;
  font-size: 12px;
  opacity: 0.9;
}
.mention-meta-id[data-v-8c903e8e] {
  color: #aaa;
  font-size: 12px;
  font-family: var(--mono);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mention-chip[data-v-8c903e8e] {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: 10px;
  padding: 6px 8px;
  background: rgba(56, 189, 248, 0.08);
  width: auto;
  max-width: 420px;
  flex: none;
}
.mention-chip-list[data-v-8c903e8e] {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mention-chip-main[data-v-8c903e8e] {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex: none;
  max-width: 320px;
}
.mention-chip-thumb[data-v-8c903e8e] {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333;
  background: #222;
  flex: none;
}
.mention-chip-thumb img[data-v-8c903e8e] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mention-chip-thumb-empty[data-v-8c903e8e] {
  width: 100%;
  height: 100%;
}
.mention-chip-text[data-v-8c903e8e] {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.mention-chip-name[data-v-8c903e8e] {
  color: #38bdf8;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mention-chip-type[data-v-8c903e8e] {
  color: #aaa;
  font-size: 12px;
  opacity: 0.85;
}
.prompt-editor[data-v-8c903e8e] {
  position: relative;
  width: 100%;
}
.prompt-editor-content[data-v-8c903e8e] {
  width: 100%;
  min-height: 148px;
  max-height: 320px;
  overflow: auto;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff !important;
  caret-color: #fff;
  font-size: 13px;
  line-height: 1.6;
  font-family: inherit;
  font-weight: 400;
  letter-spacing: inherit;
  white-space: pre-wrap;
  word-break: break-all;
  overflow-wrap: anywhere;
  outline: none;
}
.prompt-editor-content[data-v-8c903e8e]:focus {
  border-color: rgba(56, 189, 248, 0.7);
}
.prompt-editor-content[data-v-8c903e8e]:empty:before {
  content: attr(data-placeholder);
  color: rgba(255, 255, 255, 0.6) !important;
}
[data-v-8c903e8e] .prompt-token {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.32);
  border: 1px solid rgba(56, 189, 248, 0.72);
  color: #e0f2fe;
  padding: 0 8px;
  margin: 0 2px;
  cursor: pointer;
  user-select: none;
  vertical-align: baseline;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.18) inset;
}
[data-v-8c903e8e] .prompt-token::before {
  content: 'IMG';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 16px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #e0f2fe;
  background: rgba(14, 116, 144, 0.55);
}
[data-v-8c903e8e] .prompt-token[data-type='AUDIO'] {
  background: rgba(129, 140, 248, 0.34);
  border-color: rgba(129, 140, 248, 0.72);
  color: #e0e7ff;
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.2) inset;
}
[data-v-8c903e8e] .prompt-token[data-type='AUDIO']::before {
  content: 'AUD';
  color: #e0e7ff;
  background: rgba(79, 70, 229, 0.55);
}
[data-v-8c903e8e] .prompt-token[data-type='IMAGE']::before,[data-v-8c903e8e] .prompt-token[data-type='CHARACTER']::before,[data-v-8c903e8e] .prompt-token[data-type='SCENE']::before,[data-v-8c903e8e] .prompt-token[data-type='PROP']::before {
  content: 'IMG';
}
[data-v-8c903e8e] .prompt-token:hover {
  filter: brightness(1.08);
}
[data-v-8c903e8e] .prompt-token:focus-visible {
  outline: 1px solid rgba(56, 189, 248, 0.7);
  outline-offset: 1px;
}
[data-v-8c903e8e] .prompt-editor-content[data-mode='START_END'] .prompt-token {
  opacity: 0.45;
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.35);
  color: rgba(226, 232, 240, 0.75);
  box-shadow: none;
}
[data-v-8c903e8e] .prompt-editor-content[data-mode='START_END'] .prompt-token::before {
  opacity: 0.7;
  background: rgba(148, 163, 184, 0.22);
  color: rgba(226, 232, 240, 0.85);
}
.prompt-mode-hint[data-v-8c903e8e] {
  color: rgba(226, 232, 240, 0.72);
  font-size: 12px;
  line-height: 1.5;
}
[data-v-8c903e8e] .n-card {
  background: #111;
  color: #fff;
  border-color: #333;
}
[data-v-8c903e8e] .n-card-header__main {
  color: #fff !important;
}
[data-v-8c903e8e] .n-card-header__close {
  color: #aaa !important;
}
[data-v-8c903e8e] .n-card-header__close:hover {
  color: #fff !important;
}
[data-v-8c903e8e] .n-dialog__title {
  color: #fff !important;
}
[data-v-8c903e8e] .n-dialog__content {
  color: #fff !important;
}

.page[data-v-6b9e7b02] {
  height: calc(100svh - 56px);
  background: #f7f8fa;
  padding: 12px;
  box-sizing: border-box;
  font-family: Inter, system-ui, 'Segoe UI', Roboto, sans-serif;
  color: #1d2129;
  overflow: auto;
  color-scheme: light;
  scrollbar-color: rgba(22, 93, 255, 0.35) transparent;
  scrollbar-width: thin;
}
.page[data-v-6b9e7b02]::-webkit-scrollbar,
.browser-body[data-v-6b9e7b02]::-webkit-scrollbar,
.inspector-card .card-body[data-v-6b9e7b02]::-webkit-scrollbar,
.timeline-scroll[data-v-6b9e7b02]::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.page[data-v-6b9e7b02]::-webkit-scrollbar-track,
.browser-body[data-v-6b9e7b02]::-webkit-scrollbar-track,
.inspector-card .card-body[data-v-6b9e7b02]::-webkit-scrollbar-track,
.timeline-scroll[data-v-6b9e7b02]::-webkit-scrollbar-track {
  background: transparent;
}
.page[data-v-6b9e7b02]::-webkit-scrollbar-thumb,
.browser-body[data-v-6b9e7b02]::-webkit-scrollbar-thumb,
.inspector-card .card-body[data-v-6b9e7b02]::-webkit-scrollbar-thumb,
.timeline-scroll[data-v-6b9e7b02]::-webkit-scrollbar-thumb {
  background: rgba(22, 93, 255, 0.25);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
.page[data-v-6b9e7b02]::-webkit-scrollbar-thumb:hover,
.browser-body[data-v-6b9e7b02]::-webkit-scrollbar-thumb:hover,
.inspector-card .card-body[data-v-6b9e7b02]::-webkit-scrollbar-thumb:hover,
.timeline-scroll[data-v-6b9e7b02]::-webkit-scrollbar-thumb:hover {
  background: rgba(22, 93, 255, 0.38);
  border: 3px solid transparent;
  background-clip: padding-box;
}
.page-wrap[data-v-6b9e7b02] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.first-screen[data-v-6b9e7b02] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}
.page-title[data-v-6b9e7b02] {
  font-size: 24px;
  font-weight: 600;
}
.card[data-v-6b9e7b02] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.card-pad[data-v-6b9e7b02] {
  padding: 12px;
  border-bottom: 1px solid #e5e6eb;
}
.card-body[data-v-6b9e7b02] {
  padding: 12px;
}
.browser-card[data-v-6b9e7b02],
.preview-card[data-v-6b9e7b02],
.inspector-card[data-v-6b9e7b02] {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.browser-card .card-body[data-v-6b9e7b02],
.inspector-card .card-body[data-v-6b9e7b02] {
  flex: 1;
  min-height: 0;
}
.inspector-card .card-body[data-v-6b9e7b02] {
  overflow: auto;
  max-height: calc(100svh - 56px - 320px);
}
.card-title[data-v-6b9e7b02] {
  font-size: 14px;
  font-weight: 600;
}
.header-card[data-v-6b9e7b02] {
  padding: 12px;
}
.header-line1[data-v-6b9e7b02] {
  font-size: 14px;
  color: #4e5969;
}
.header-line2[data-v-6b9e7b02] {
  margin-top: 4px;
  font-size: 24px;
  font-weight: 600;
}
.header-actions[data-v-6b9e7b02] {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.header-stats[data-v-6b9e7b02],
.header-ops[data-v-6b9e7b02] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ui-btn[data-v-6b9e7b02] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
  color: #1d2129;
}
.ui-btn[data-v-6b9e7b02]:hover {
  background: #e5e5e5;
}
.ui-ico[data-v-6b9e7b02] {
  width: 16px;
  height: 16px;
  color: #165dff;
}
.grid3[data-v-6b9e7b02] {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  flex: 1;
  min-height: 0;
}
.right-stage[data-v-6b9e7b02] {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) 280px;
  gap: 12px;
  min-width: 0;
  min-height: 0;
}
@media (max-width: 1280px) {
.grid3[data-v-6b9e7b02],
  .right-stage[data-v-6b9e7b02] {
    grid-template-columns: 1fr;
}
}
.tabs[data-v-6b9e7b02] {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}
.tab[data-v-6b9e7b02] {
  border: 0;
  background: transparent;
  padding: 0 0 8px;
  cursor: pointer;
  font-size: 14px;
  color: #86909c;
  border-bottom: 2px solid transparent;
}
.tab[data-active='true'][data-v-6b9e7b02] {
  color: #165dff;
  border-bottom-color: #165dff;
}
.list[data-v-6b9e7b02] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.browser-body[data-v-6b9e7b02] {
  overflow: auto;
  height: 100%;
  flex: 1;
  min-height: 0;
  max-height: calc(100svh - 56px - 320px);
}
.list-item[data-v-6b9e7b02] {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.list-item[data-active='true'][data-v-6b9e7b02] {
  background: #f9f9f9;
}
.li-row1[data-v-6b9e7b02] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.li-left[data-v-6b9e7b02] {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.bubble[data-v-6b9e7b02] {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #165dff;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  flex: none;
}
.status-dot[data-v-6b9e7b02] {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #c9cdd4;
  flex: none;
}
.status-dot[data-ok='true'][data-v-6b9e7b02] {
  background: #00b42a;
}
.status-ico[data-v-6b9e7b02] {
  width: 14px;
  height: 14px;
  color: #fff;
}
.li-title[data-v-6b9e7b02] {
  font-weight: 500;
  color: #1d2129;
  font-size: 14px;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.li-right[data-v-6b9e7b02] {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}
.li-time[data-v-6b9e7b02] {
  font-size: 14px;
  color: #4e5969;
}
.chev[data-v-6b9e7b02] {
  width: 16px;
  height: 16px;
  color: #86909c;
  transition: transform 0.15s ease;
}
.chev[data-open='true'][data-v-6b9e7b02] {
  transform: rotate(180deg);
}
.li-row2[data-v-6b9e7b02] {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.li-thumb[data-v-6b9e7b02] {
  flex: none;
  width: 100%;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  background: #0b1220;
  margin-top: 10px;
}
.li-thumb-media[data-v-6b9e7b02] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.li-quote[data-v-6b9e7b02] {
  font-size: 14px;
  color: #86909c;
  line-height: 1.5;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.li-tag[data-v-6b9e7b02] {
  flex: none;
  border-radius: 6px;
  background: #f5f5f5;
  padding: 4px 8px;
  font-size: 12px;
  color: #4e5969;
}
.preview-box[data-v-6b9e7b02] {
  margin-top: 10px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #0b1220;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.preview-media[data-v-6b9e7b02] {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.preview-center[data-v-6b9e7b02] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.spinner[data-v-6b9e7b02] {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.9);
  animation: spin-6b9e7b02 1s linear infinite;
}
@keyframes spin-6b9e7b02 {
to {
    transform: rotate(360deg);
}
}
.preview-desc[data-v-6b9e7b02] {
  color: #86909c;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
}
.preview-desc-wrap[data-v-6b9e7b02] {
  padding: 16px 12px 16px;
  flex: 1;
  min-height: 0;
  overflow: auto;
}
.timeline-card[data-v-6b9e7b02] {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 620px;
  margin-bottom: 14px;
  padding-bottom: 14px;
}
.timeline-head[data-v-6b9e7b02] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #e5e6eb;
}
.timeline-title[data-v-6b9e7b02] {
  font-size: 14px;
  font-weight: 600;
}
.timeline-tools[data-v-6b9e7b02] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.timeline-scroll[data-v-6b9e7b02] {
  overflow: auto;
  background: #fff;
  flex: 1;
  min-height: 0;
}
.timeline-grid[data-v-6b9e7b02] {
  display: grid;
  width: max-content;
  min-width: 100%;
}
.timeline-label[data-v-6b9e7b02] {
  position: sticky;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #4e5969;
  background: #fff;
  border-right: 1px solid #e5e6eb;
  border-bottom: 1px solid #e5e6eb;
}
.timeline-cell[data-v-6b9e7b02] {
  border-bottom: 1px solid #e5e6eb;
  border-right: 1px solid #e5e6eb;
  padding: 10px 12px;
  min-height: 52px;
  background: #fff;
  box-sizing: border-box;
}
.timeline-cell-top[data-v-6b9e7b02] {
  display: flex;
  align-items: center;
}
.timeline-time[data-v-6b9e7b02] {
  font-size: 12px;
  color: #86909c;
}
.timeline-cell-btn[data-v-6b9e7b02] {
  text-align: left;
  cursor: pointer;
  border: 0;
}
.timeline-cell-btn[data-v-6b9e7b02]:hover {
  background: #f9f9f9;
}
.timeline-cell-btn[data-active='true'][data-v-6b9e7b02] {
  background: #f9f9f9;
}
.cell-head[data-v-6b9e7b02] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cell-spacer[data-v-6b9e7b02] {
  flex: 1;
}
.cell-meta[data-v-6b9e7b02] {
  font-size: 12px;
  color: #86909c;
}
.chip[data-v-6b9e7b02] {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #4e5969;
  font-size: 12px;
}
.cell-text[data-v-6b9e7b02] {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #4e5969;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cell-text-muted[data-v-6b9e7b02] {
  color: #86909c;
}
.video-thumb[data-v-6b9e7b02] {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: #0b1220;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  overflow: hidden;
}
.video-thumb-media[data-v-6b9e7b02] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.video-inner[data-v-6b9e7b02] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge[data-v-6b9e7b02] {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
  background: #f5f5f5;
  color: #4e5969;
}
.badge[data-ok='true'][data-v-6b9e7b02] {
  background: rgba(0, 180, 42, 0.12);
  color: #00b42a;
}
.badge-warn[data-v-6b9e7b02] {
  margin-top: 8px;
  background: rgba(255, 125, 0, 0.12);
  color: #ff7d00;
}
.timeline-footer[data-v-6b9e7b02] {
  padding: 12px;
  display: flex;
  justify-content: center;
}
.timeline-gen[data-v-6b9e7b02] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #4e5969;
  font-size: 14px;
}
.module[data-v-6b9e7b02] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.module-title[data-v-6b9e7b02] {
  font-size: 14px;
  font-weight: 600;
}
.module-meta[data-v-6b9e7b02] {
  color: #86909c;
  font-size: 14px;
}
.module-text[data-v-6b9e7b02] {
  color: #4e5969;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
}
.tags[data-v-6b9e7b02] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag[data-v-6b9e7b02] {
  border-radius: 6px;
  background: #f5f5f5;
  padding: 4px 8px;
  font-size: 12px;
  color: #4e5969;
}
.btn-row[data-v-6b9e7b02] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.divider[data-v-6b9e7b02] {
  margin: 16px 0;
  height: 1px;
  background: #e5e6eb;
}
.ok-tag[data-v-6b9e7b02] {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 6px;
  background: #00b42a;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
}
.audio[data-v-6b9e7b02] {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.audio-empty[data-v-6b9e7b02] {
  font-size: 13px;
  color: #86909c;
}
.asset[data-v-6b9e7b02] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.asset-group[data-v-6b9e7b02] {
  border-radius: 12px;
  background: #fff;
}
.asset-head[data-v-6b9e7b02] {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
}
.asset-head[data-v-6b9e7b02]:hover {
  background: #f9f9f9;
}
.asset-left[data-v-6b9e7b02] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.asset-title[data-v-6b9e7b02] {
  font-weight: 500;
  color: #1d2129;
  font-size: 14px;
}
.asset-count[data-v-6b9e7b02],
.asset-toggle[data-v-6b9e7b02] {
  color: #86909c;
  font-size: 14px;
}
.asset-children[data-v-6b9e7b02] {
  padding: 0 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.asset-empty[data-v-6b9e7b02] {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f7f8fa;
  color: #86909c;
  font-size: 13px;
}
.asset-grid[data-v-6b9e7b02] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.asset-card[data-v-6b9e7b02] {
  border-radius: 12px;
  background: #f7f8fa;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.asset-card-media[data-v-6b9e7b02] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.asset-card-empty[data-v-6b9e7b02] {
  color: #86909c;
  font-size: 13px;
}

.jm-root[data-v-d6b2c029] {
  --jm-bg: oklch(0.985 0.006 260);
  --jm-surface: oklch(0.997 0.004 260);
  --jm-ink: oklch(0.22 0.02 260);
  --jm-muted: oklch(0.55 0.015 260);
  --jm-border: oklch(0.9 0.01 260);
  --jm-border2: oklch(0.86 0.01 260);
  --jm-accent: oklch(0.62 0.16 258);
  --jm-accentSoft: color-mix(in oklch, var(--jm-accent) 12%, transparent);
  height: calc(100svh - 56px);
  overflow: hidden;
  background: var(--jm-bg);
  color: var(--jm-ink);
}
.jm-shell[data-v-d6b2c029] {
  height: 100%;
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 272px 1fr;
  border-top: 1px solid var(--jm-border);
}
.jm-side[data-v-d6b2c029] {
  height: 100%;
  background: var(--jm-surface);
  border-right: 1px solid var(--jm-border);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 14px;
}
.jm-brand[data-v-d6b2c029] {
  display: flex;
  gap: 10px;
  align-items: center;
}
.jm-logo[data-v-d6b2c029] {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: color-mix(in oklch, var(--jm-accent) 18%, var(--jm-surface));
  color: color-mix(in oklch, var(--jm-accent) 80%, black);
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--jm-accent) 22%, var(--jm-border));
}
.jm-brandTitle[data-v-d6b2c029] {
  font-weight: 680;
  letter-spacing: -0.01em;
}
.jm-brandSub[data-v-d6b2c029] {
  margin-top: 2px;
  font-size: 12px;
  color: var(--jm-muted);
}
.jm-sideMain[data-v-d6b2c029] {
  padding-top: 12px;
  display: grid;
  gap: 12px;
}
.jm-ico[data-v-d6b2c029] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: color-mix(in oklch, var(--jm-ink) 72%, var(--jm-muted));
}
.jm-sideSection[data-v-d6b2c029] {
  margin-top: 6px;
}
.jm-sideSectionTitle[data-v-d6b2c029] {
  font-size: 12px;
  color: var(--jm-muted);
  font-weight: 650;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.jm-history[data-v-d6b2c029] {
  display: grid;
  gap: 6px;
  max-height: calc(100svh - 230px);
  overflow: auto;
  padding-right: 2px;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in oklch, var(--jm-ink) 22%, transparent) transparent;
}
.jm-history[data-v-d6b2c029]::-webkit-scrollbar {
  width: 10px;
}
.jm-history[data-v-d6b2c029]::-webkit-scrollbar-track {
  background: transparent;
}
.jm-history[data-v-d6b2c029]::-webkit-scrollbar-thumb {
  background: color-mix(in oklch, var(--jm-ink) 14%, transparent);
  border: 3px solid transparent;
  background-clip: content-box;
  border-radius: 999px;
}
.jm-history[data-v-d6b2c029]::-webkit-scrollbar-thumb:hover {
  background: color-mix(in oklch, var(--jm-ink) 22%, transparent);
  background-clip: content-box;
}
.jm-historyItem[data-v-d6b2c029] {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--jm-ink);
  cursor: pointer;
  text-align: left;
  position: relative;
}
.jm-historyItem--new[data-v-d6b2c029] {
  border-color: var(--jm-border2);
  background: white;
  font-weight: 720;
}
.jm-historyItem--new .jm-historyText[data-v-d6b2c029] {
  color: color-mix(in oklch, var(--jm-ink) 92%, var(--jm-muted));
}
.jm-historyItem[data-v-d6b2c029]:hover {
  background: color-mix(in oklch, var(--jm-accent) 6%, white);
  border-color: color-mix(in oklch, var(--jm-accent) 14%, var(--jm-border2));
}
.jm-historyItem.is-active[data-v-d6b2c029] {
  background: var(--jm-accentSoft);
  border-color: color-mix(in oklch, var(--jm-accent) 20%, var(--jm-border2));
}
.jm-historyDot[data-v-d6b2c029] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--jm-border2);
  background: white;
}
.jm-historyText[data-v-d6b2c029] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  color: color-mix(in oklch, var(--jm-ink) 86%, var(--jm-muted));
}
.jm-renameInput[data-v-d6b2c029] {
  min-width: 0;
  flex: 1;
  border: 1px solid color-mix(in oklch, var(--jm-accent) 22%, var(--jm-border2));
  border-radius: 10px;
  padding: 6px 8px;
  outline: none;
  font-weight: 650;
  font-size: 13px;
  background: white;
}
.jm-rowActions[data-v-d6b2c029] {
  margin-left: auto;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}
.jm-historyItem:hover .jm-rowActions[data-v-d6b2c029],
.jm-historyItem.is-active .jm-rowActions[data-v-d6b2c029] {
  opacity: 1;
  pointer-events: auto;
}
.jm-rowIcon[data-v-d6b2c029] {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid var(--jm-border2);
  background: white;
  display: grid;
  place-items: center;
  color: color-mix(in oklch, var(--jm-ink) 64%, var(--jm-muted));
  cursor: pointer;
}
.jm-rowIcon[data-v-d6b2c029]:hover {
  border-color: color-mix(in oklch, var(--jm-accent) 18%, var(--jm-border2));
  background: color-mix(in oklch, var(--jm-accent) 6%, white);
  color: color-mix(in oklch, var(--jm-ink) 78%, var(--jm-muted));
}
.jm-sideBottom[data-v-d6b2c029] {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  padding-top: 10px;
  border-top: 1px solid var(--jm-border);
}
.jm-mini[data-v-d6b2c029] {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--jm-border2);
  background: white;
  cursor: pointer;
  color: color-mix(in oklch, var(--jm-ink) 70%, var(--jm-muted));
  display: grid;
  place-items: center;
}
.jm-mini[data-v-d6b2c029]:hover {
  border-color: color-mix(in oklch, var(--jm-accent) 16%, var(--jm-border2));
  background: color-mix(in oklch, var(--jm-accent) 6%, white);
}
.jm-main[data-v-d6b2c029] {
  height: 100%;
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.jm-topbar[data-v-d6b2c029] {
  padding: 16px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.jm-date[data-v-d6b2c029] {
  font-weight: 720;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.jm-tools[data-v-d6b2c029] {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.jm-search[data-v-d6b2c029] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--jm-border2);
  background: white;
}
.jm-searchInput[data-v-d6b2c029] {
  width: 180px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--jm-ink);
  font-weight: 600;
  font-size: 13px;
}
.jm-pillSelect[data-v-d6b2c029] {
  appearance: none;
  border: 1px solid var(--jm-border2);
  background: white;
  border-radius: 999px;
  padding: 8px 30px 8px 12px;
  font-weight: 650;
  font-size: 13px;
  color: color-mix(in oklch, var(--jm-ink) 82%, var(--jm-muted));
  cursor: pointer;
  line-height: 1;
  background-image: linear-gradient(45deg, transparent 50%, color-mix(in oklch, var(--jm-muted) 80%, white) 50%),
    linear-gradient(135deg, color-mix(in oklch, var(--jm-muted) 80%, white) 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 9px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.jm-pillSelect[data-v-d6b2c029]:hover {
  border-color: color-mix(in oklch, var(--jm-accent) 16%, var(--jm-border2));
}
.jm-toolBtn[data-v-d6b2c029] {
  border: 1px solid var(--jm-border2);
  background: white;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 680;
  font-size: 13px;
  cursor: pointer;
  color: color-mix(in oklch, var(--jm-ink) 80%, var(--jm-muted));
}
.jm-toolBtn[data-v-d6b2c029]:hover {
  border-color: color-mix(in oklch, var(--jm-accent) 16%, var(--jm-border2));
  background: color-mix(in oklch, var(--jm-accent) 6%, white);
}
.jm-feed[data-v-d6b2c029] {
  min-height: 0;
  overflow: auto;
  padding: 6px 18px 18px;
  display: grid;
  gap: 14px;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in oklch, var(--jm-ink) 22%, transparent) transparent;
}
.jm-feed[data-v-d6b2c029]::-webkit-scrollbar {
  width: 10px;
}
.jm-feed[data-v-d6b2c029]::-webkit-scrollbar-track {
  background: transparent;
}
.jm-feed[data-v-d6b2c029]::-webkit-scrollbar-thumb {
  background: color-mix(in oklch, var(--jm-ink) 14%, transparent);
  border: 3px solid transparent;
  background-clip: content-box;
  border-radius: 999px;
}
.jm-feed[data-v-d6b2c029]::-webkit-scrollbar-thumb:hover {
  background: color-mix(in oklch, var(--jm-ink) 22%, transparent);
  background-clip: content-box;
}
.jm-card[data-v-d6b2c029] {
  background: var(--jm-surface);
  border: 1px solid var(--jm-border);
  border-radius: 18px;
  box-shadow: 0 18px 40px color-mix(in oklch, black 6%, transparent);
}
.jm-cardHead[data-v-d6b2c029] {
  padding: 14px 14px 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.jm-refs[data-v-d6b2c029] {
  display: flex;
  gap: 6px;
  padding-top: 2px;
}
.jm-refThumb[data-v-d6b2c029] {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--jm-border2);
  background: white;
}
.jm-refThumb img[data-v-d6b2c029] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jm-headText[data-v-d6b2c029] {
  min-width: 0;
}
.jm-prompt[data-v-d6b2c029] {
  font-weight: 650;
  font-size: 13px;
  line-height: 1.45;
  color: color-mix(in oklch, var(--jm-ink) 92%, var(--jm-muted));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jm-meta[data-v-d6b2c029] {
  margin-top: 6px;
  font-size: 12px;
  color: var(--jm-muted);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.jm-error[data-v-d6b2c029] {
  margin-top: 6px;
  font-size: 12px;
  color: oklch(0.58 0.2 25);
}
.jm-cardBody[data-v-d6b2c029] {
  padding: 0 14px 12px;
}
.jm-media[data-v-d6b2c029] {
  width: min(720px, 100%);
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--jm-border);
  background: color-mix(in oklch, var(--jm-ink) 2%, white);
  overflow: hidden;
  box-shadow: 0 12px 28px color-mix(in oklch, black 10%, transparent);
  position: relative;
  max-height: 52vh;
}
.jm-video[data-v-d6b2c029] {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: black;
}
.jm-mediaStage[data-v-d6b2c029] {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(80% 120% at 50% 30%, color-mix(in oklch, white 8%, black) 0%, black 60%),
    linear-gradient(to bottom, color-mix(in oklch, black 85%, var(--jm-accent) 15%), black);
}
.jm-mediaStage[data-v-d6b2c029]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in oklch, white 2%, transparent),
    color-mix(in oklch, white 0%, transparent) 45%,
    color-mix(in oklch, black 55%, transparent)
  );
  pointer-events: none;
}
.jm-stageCenter[data-v-d6b2c029] {
  position: relative;
  width: min(360px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid color-mix(in oklch, white 14%, transparent);
  background: color-mix(in oklch, black 55%, transparent);
  backdrop-filter: blur(10px);
  text-align: center;
  color: white;
}
.jm-spinner[data-v-d6b2c029] {
  width: 18px;
  height: 18px;
  margin: 2px auto 10px;
  border-radius: 999px;
  border: 2px solid color-mix(in oklch, white 25%, transparent);
  border-top-color: color-mix(in oklch, white 86%, transparent);
  animation: jmSpin-d6b2c029 1s linear infinite;
}
.jm-mediaStage.is-failed .jm-spinner[data-v-d6b2c029] {
  display: none;
}
.jm-stageTitle[data-v-d6b2c029] {
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
}
.jm-stageSub[data-v-d6b2c029] {
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.86;
}
@keyframes jmSpin-d6b2c029 {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}
.jm-cardFoot[data-v-d6b2c029] {
  padding: 0 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.jm-actions[data-v-d6b2c029] {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.jm-btn[data-v-d6b2c029] {
  border: 1px solid var(--jm-border2);
  background: white;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 680;
  font-size: 13px;
  cursor: pointer;
  color: color-mix(in oklch, var(--jm-ink) 84%, var(--jm-muted));
}
.jm-btn[data-v-d6b2c029]:hover {
  border-color: color-mix(in oklch, var(--jm-accent) 16%, var(--jm-border2));
  background: color-mix(in oklch, var(--jm-accent) 6%, white);
}
.jm-btnPrimary[data-v-d6b2c029] {
  border-color: color-mix(in oklch, var(--jm-accent) 25%, var(--jm-border2));
  background: color-mix(in oklch, var(--jm-accent) 12%, white);
  color: color-mix(in oklch, var(--jm-accent) 70%, black);
}
.jm-btn[data-v-d6b2c029]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.jm-btnIcon[data-v-d6b2c029] {
  width: 40px;
  height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
}
.jm-dots[data-v-d6b2c029] {
  width: 16px;
  height: 16px;
  display: inline-block;
  background:
    radial-gradient(circle, currentColor 2px, transparent 3px) 2px 50% / 6px 6px no-repeat,
    radial-gradient(circle, currentColor 2px, transparent 3px) 8px 50% / 6px 6px no-repeat,
    radial-gradient(circle, currentColor 2px, transparent 3px) 14px 50% / 6px 6px no-repeat;
  color: color-mix(in oklch, var(--jm-ink) 60%, var(--jm-muted));
}
.jm-link[data-v-d6b2c029] {
  border: 0;
  background: transparent;
  color: color-mix(in oklch, var(--jm-accent) 72%, black);
  font-weight: 750;
  cursor: pointer;
  padding: 8px 8px;
  border-radius: 10px;
}
.jm-link[data-v-d6b2c029]:hover {
  background: var(--jm-accentSoft);
}
.jm-console[data-v-d6b2c029] {
  padding: 0 18px 18px;
}
.jm-consoleInner[data-v-d6b2c029] {
  background: var(--jm-surface);
  border: 1px solid var(--jm-border);
  border-radius: 20px;
  box-shadow: 0 24px 60px color-mix(in oklch, black 10%, transparent);
  padding: 12px;
}
.jm-fileInput[data-v-d6b2c029] {
  display: none;
}
.jm-refPanel[data-v-d6b2c029] {
  display: grid;
  gap: 10px;
  padding: 2px 2px 10px;
}
.jm-refHint[data-v-d6b2c029] {
  font-size: 12px;
  color: color-mix(in oklch, var(--jm-ink) 70%, var(--jm-muted));
  font-weight: 650;
}
.jm-refSlot[data-v-d6b2c029] {
  width: 98px;
  height: 64px;
  border-radius: 14px;
  border: 1px dashed color-mix(in oklch, var(--jm-ink) 18%, var(--jm-border2));
  background: white;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.jm-refSlot--small[data-v-d6b2c029] {
  width: 64px;
  height: 64px;
}
.jm-refSlot[data-v-d6b2c029]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.jm-refLabel[data-v-d6b2c029] {
  position: absolute;
  top: 6px;
  left: 8px;
  font-size: 11px;
  font-weight: 700;
  color: color-mix(in oklch, var(--jm-ink) 70%, var(--jm-muted));
  background: color-mix(in oklch, white 80%, transparent);
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklch, var(--jm-border2) 60%, transparent);
}
.jm-refImg[data-v-d6b2c029] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jm-refEmpty[data-v-d6b2c029] {
  font-size: 18px;
  font-weight: 800;
  color: color-mix(in oklch, var(--jm-ink) 40%, var(--jm-muted));
}
.jm-refRemove[data-v-d6b2c029] {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--jm-border2);
  background: white;
  color: color-mix(in oklch, var(--jm-ink) 70%, var(--jm-muted));
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
}
.jm-refRemove[data-v-d6b2c029]:hover {
  border-color: color-mix(in oklch, var(--jm-accent) 18%, var(--jm-border2));
  background: color-mix(in oklch, var(--jm-accent) 6%, white);
}
.jm-refChip[data-v-d6b2c029] {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid var(--jm-border2);
  background: white;
  position: relative;
  overflow: hidden;
}
.jm-refStack[data-v-d6b2c029] {
  height: 64px;
  position: relative;
}
.jm-refCard[data-v-d6b2c029] {
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid var(--jm-border2);
  background: white;
  overflow: hidden;
  cursor: pointer;
  transform: translateX(calc(var(--i) * -8px)) rotate(calc(var(--i) * -2deg));
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 160ms ease, box-shadow 220ms ease;
  box-shadow: 0 10px 24px color-mix(in oklch, black 8%, transparent);
}
.jm-refStack:hover .jm-refCard[data-v-d6b2c029] {
  transform: translateX(calc(var(--i) * 62px)) rotate(calc(var(--i) * -1deg));
}
.jm-refCard[data-v-d6b2c029]:hover {
  border-color: color-mix(in oklch, var(--jm-accent) 20%, var(--jm-border2));
  box-shadow: 0 16px 34px color-mix(in oklch, black 12%, transparent);
}
.jm-refCard--add[data-v-d6b2c029] {
  border-style: dashed;
  border-color: color-mix(in oklch, var(--jm-ink) 18%, var(--jm-border2));
  box-shadow: none;
}
.jm-refCard--add[data-v-d6b2c029]:hover {
  background: color-mix(in oklch, var(--jm-accent) 6%, white);
}
.jm-refAdd[data-v-d6b2c029] {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 4px;
  color: color-mix(in oklch, var(--jm-ink) 56%, var(--jm-muted));
  font-weight: 750;
}
.jm-refAddText[data-v-d6b2c029] {
  font-size: 11px;
  letter-spacing: 0.02em;
}
.jm-refRemove--stack[data-v-d6b2c029] {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid var(--jm-border2);
  background: white;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
}
.jm-refCard:hover .jm-refRemove--stack[data-v-d6b2c029] {
  opacity: 1;
  pointer-events: auto;
}
.jm-inputWrap[data-v-d6b2c029] {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid var(--jm-border);
  background: white;
}
.jm-attach[data-v-d6b2c029] {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--jm-border2);
  background: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: color-mix(in oklch, var(--jm-ink) 72%, var(--jm-muted));
}
.jm-attach[data-v-d6b2c029]:hover {
  border-color: color-mix(in oklch, var(--jm-accent) 16%, var(--jm-border2));
  background: color-mix(in oklch, var(--jm-accent) 6%, white);
}
.jm-attach[data-v-d6b2c029]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.jm-input[data-v-d6b2c029] {
  width: 100%;
  resize: none;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 620;
  color: var(--jm-ink);
}
.jm-send[data-v-d6b2c029] {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklch, var(--jm-accent) 24%, var(--jm-border2));
  background: color-mix(in oklch, var(--jm-accent) 14%, white);
  color: color-mix(in oklch, var(--jm-accent) 72%, black);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.jm-send[data-v-d6b2c029]:hover {
  background: color-mix(in oklch, var(--jm-accent) 18%, white);
  border-color: color-mix(in oklch, var(--jm-accent) 34%, var(--jm-border2));
}
.jm-send[data-v-d6b2c029]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.jm-pills[data-v-d6b2c029] {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
@media (max-width: 980px) {
.jm-shell[data-v-d6b2c029] {
    grid-template-columns: 1fr;
}
.jm-side[data-v-d6b2c029] {
    display: none;
}
}
