/* [project]/app/globals.css [app-client] (css) */
:root {
  --ink: #17191f;
  --muted: #767b86;
  --line: #e7e8eb;
  --paper: #f5f5f3;
  --blue: #2879f3;
  --blue2: #0f5ed7;
  --dark: #111318;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--paper);
  min-height: 100%;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

button, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 8px;
}

.sidebar :focus-visible, .hero :focus-visible {
  outline-color: #cfe0ff;
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    transition: none !important;
    animation: none !important;
  }
}

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

.sidebar {
  color: #f7f7f8;
  background: #121419;
  flex-direction: column;
  gap: 25px;
  height: 100vh;
  padding: 25px 18px;
  display: flex;
  position: sticky;
  top: 0;
}

.brand {
  align-items: center;
  gap: 11px;
  padding: 0 8px;
  display: flex;
}

.brandMark {
  background: linear-gradient(145deg, #4996ff, #135ac9);
  border-radius: 12px;
  place-items: center;
  width: 39px;
  height: 39px;
  font-size: 22px;
  font-weight: 900;
  display: grid;
  box-shadow: 0 9px 28px #0007;
}

.brand strong {
  letter-spacing: .17em;
  font-size: 14px;
  display: block;
}

.brand span {
  color: #9096a3;
  font-size: 11px;
}

.newButton {
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 11px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  font-weight: 750;
  display: flex;
}

.nav {
  flex-direction: column;
  gap: 5px;
  display: flex;
}

.nav button, .sidebarBottom > button {
  color: #999eaa;
  text-align: left;
  background: none;
  border: 0;
  border-radius: 10px;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 11px 12px;
  display: flex;
}

.nav button:hover, .nav button.active {
  color: #fff;
  background: #242832;
}

.nav button.active {
  box-shadow: inset 3px 0 var(--blue);
}

.sidebarBottom {
  border-top: 1px solid #2b2e36;
  margin-top: auto;
  padding-top: 13px;
}

.profile {
  background: #1b1e25;
  border-radius: 12px;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  padding: 11px 8px;
  display: grid;
}

.profile .avatar {
  background: #363b47;
  border-radius: 10px;
  place-items: center;
  width: 35px;
  height: 35px;
  font-weight: 800;
  display: grid;
}

.profile strong, .profile span {
  font-size: 12px;
  display: block;
}

.profile span {
  color: #858b97;
  margin-top: 2px;
  font-size: 10px;
}

.content {
  padding: 31px 38px 55px;
  overflow: hidden;
}

.topbar {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  display: flex;
}

.eyebrow {
  color: #7a7f88;
  letter-spacing: .16em;
  margin: 0 0 5px;
  font-size: 10px;
  font-weight: 850;
}

h1 {
  letter-spacing: -.04em;
  margin: 0;
  font-size: 29px;
}

.topActions, .heroButtons {
  gap: 10px;
  display: flex;
}

.primary, .secondary, .lightButton, .ghostButton {
  border-radius: 10px;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  font-weight: 700;
  display: flex;
}

.primary {
  background: var(--blue);
  color: #fff;
  border: 0;
}

.secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  color: #fff;
  background: radial-gradient(circle at 78% 35%, #355c90 0, #0000 30%), linear-gradient(118deg, #10141d 0%, #182538 52%, #24446d 100%);
  border-radius: 23px;
  grid-template-columns: 1.18fr .82fr;
  min-height: 330px;
  padding: 48px 56px;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 19px 55px #18253822;
}

.hero:before {
  content: "";
  border: 1px solid #ffffff17;
  border-radius: 50%;
  width: 500px;
  height: 500px;
  position: absolute;
  top: -165px;
  right: -40px;
  box-shadow: 0 0 0 70px #ffffff08, 0 0 0 140px #ffffff05;
}

.heroCopy {
  z-index: 2;
  max-width: 620px;
  position: relative;
}

.pill {
  letter-spacing: .11em;
  background: #ffffff10;
  border: 1px solid #ffffff2f;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
}

.hero h2 {
  letter-spacing: -.055em;
  margin: 22px 0 12px;
  font-size: 49px;
  line-height: 1;
}

.hero p {
  color: #c3ccd8;
  max-width: 540px;
  margin: 0 0 26px;
  line-height: 1.6;
}

.lightButton {
  color: #141821;
  background: #fff;
  border: 0;
}

.ghostButton {
  color: #fff;
  background: #ffffff0a;
  border: 1px solid #ffffff34;
}

.heroImage {
  z-index: 1;
  background: #e9e9eb;
  border-radius: 50%;
  place-self: end center;
  width: 290px;
  height: 290px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 35px 70px #0008;
}

.heroImage img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.floatingCard {
  z-index: 3;
  color: #242831;
  background: #ffffffec;
  border-radius: 12px;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  display: flex;
  position: absolute;
  box-shadow: 0 13px 34px #0004;
}

.floatingCard svg {
  color: var(--blue);
}

.floatingCard b, .floatingCard span {
  font-size: 11px;
  display: block;
}

.floatingCard span {
  color: #7b8089;
  margin-top: 2px;
  font-size: 9px;
}

.fc1 {
  top: 35px;
  right: 24px;
}

.fc2 {
  bottom: 25px;
  right: 340px;
}

.stats {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 15px;
  grid-template-columns: repeat(3, 1fr);
  margin: 18px 0;
  display: grid;
  overflow: hidden;
}

.stats div {
  border-right: 1px solid var(--line);
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  display: flex;
}

.stats div:last-child {
  border-right: 0;
}

.stats svg {
  color: var(--blue);
  width: 19px;
}

.stats span {
  color: #80848d;
  font-size: 12px;
}

.stats b {
  color: var(--ink);
  margin-right: 7px;
  font-size: 17px;
}

.workspaceGrid {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  gap: 18px;
  display: grid;
}

.panel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 17px;
  padding: 23px;
  box-shadow: 0 6px 20px #1d29390a;
}

.panelHead {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 19px;
  display: flex;
}

.panel h3 {
  letter-spacing: -.025em;
  margin: 0;
  font-size: 18px;
}

.statusDot {
  color: #248957;
  background: #eaf8f0;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 750;
}

.formGrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  display: grid;
}

label {
  color: #616670;
  font-size: 11px;
  font-weight: 750;
}

select, textarea {
  color: #23262d;
  background: #fafafa;
  border: 1px solid #dfe1e5;
  border-radius: 9px;
  outline: none;
  width: 100%;
}

select {
  margin-top: 7px;
  padding: 11px;
}

textarea {
  resize: vertical;
  min-height: 102px;
  margin-top: 7px;
  padding: 12px;
  line-height: 1.5;
}

select:focus, textarea:focus {
  border-color: #6fa7fa;
  box-shadow: 0 0 0 3px #2879f31b;
}

.scriptLabel {
  margin-top: 15px;
  display: block;
}

.scriptLabel > span {
  text-align: right;
  color: #969aa2;
  margin-top: 5px;
  font-size: 9px;
  display: block;
}

.summary {
  background: #f4f6fa;
  border-radius: 12px;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
  padding: 12px;
  display: grid;
}

.summary img {
  object-fit: cover;
  border-radius: 11px;
}

.summary b, .summary span {
  font-size: 11px;
  display: block;
}

.summary span {
  color: #858a94;
  margin-top: 3px;
  font-size: 9px;
}

.summary button, .wideButton {
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 9px;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
}

.renderProgress {
  margin-top: 13px;
  padding: 11px 2px 0;
}

.renderProgress > div:first-child {
  color: #6d727c;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 10px;
  display: flex;
}

.track {
  background: #e8ebf0;
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}

.track i {
  background: var(--blue);
  height: 100%;
  transition: width .35s;
  display: block;
}

.iconButton, .textButton {
  color: #777c86;
  background: none;
  border: 0;
}

.bible {
  object-fit: cover;
  object-position: center;
  border: 1px solid #ececef;
  border-radius: 11px;
  width: 100%;
  height: 193px;
}

.tags {
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 10px;
  display: flex;
}

.tags span, .kind, .ready, .draft {
  color: #666c76;
  background: #eff2f6;
  border-radius: 999px;
  padding: 6px 8px;
  font-size: 9px;
  font-weight: 750;
}

.characterCard > p {
  color: #757a84;
  font-size: 11px;
  line-height: 1.55;
}

.wideButton {
  background: #171a20;
  justify-content: center;
  width: 100%;
  margin-top: 13px;
}

.recent {
  margin-top: 18px;
}

.assetRow {
  border-top: 1px solid #eceef1;
  grid-template-columns: 45px 1fr 80px 70px 28px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  display: grid;
}

.thumb {
  color: #5c6571;
  background: #eef0f3;
  border-radius: 9px;
  place-items: center;
  width: 42px;
  height: 42px;
  display: grid;
}

.thumb svg {
  width: 18px;
}

.assetName b, .assetName span {
  font-size: 11px;
  display: block;
}

.assetName span {
  color: #8b9099;
  margin-top: 3px;
  font-size: 9px;
}

.ready {
  color: #248957;
  text-align: center;
  background: #eaf8f0;
}

.draft {
  color: #a16b12;
  text-align: center;
  background: #fff4de;
}

.sectionIntro {
  color: #6c717b;
  max-width: 640px;
  margin: -8px 0 22px;
  font-size: 14px;
  line-height: 1.55;
}

.characterGrid {
  grid-template-columns: minmax(0, .75fr) minmax(0, .75fr);
  align-items: start;
  gap: 18px;
  display: grid;
}

.addCharacter {
  color: #8b909a;
  background: #fbfbfa;
  border: 1.5px dashed #cfd3da;
  border-radius: 17px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-height: 260px;
  display: flex;
}

.addCharacter b {
  color: #5b6270;
  font-size: 14px;
}

.addCharacter span {
  font-size: 11px;
}

.previewResult {
  background: #fbfcfe;
  border: 1px solid #e4e7ec;
  border-radius: 13px;
  grid-template-columns: 72px 1fr auto;
  align-items: start;
  gap: 13px;
  margin-top: 14px;
  padding: 12px;
  display: grid;
}

.previewMedia {
  width: 72px;
  height: 72px;
}

.previewResult img, .previewMedia video {
  object-fit: cover;
  background: #0d0f14;
  border-radius: 11px;
  width: 72px;
  height: 72px;
}

.hintLine {
  color: #a16b12;
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.4;
  display: block;
}

.previewAudio {
  width: 100%;
  height: 32px;
  margin-top: 8px;
  display: block;
}

.providerLine {
  color: #9aa0aa;
  font-variant-numeric: tabular-nums;
  margin-top: 7px;
  font-size: 10px;
  display: block;
}

.renderError {
  color: #b23640;
  background: #fdf1f1;
  border: 1px solid #f3c9cb;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.renderError svg {
  flex: none;
}

.previewMeta b {
  align-items: center;
  gap: 7px;
  font-size: 13px;
  display: flex;
}

.previewMeta span {
  color: #868b95;
  margin-top: 3px;
  font-size: 11px;
  display: block;
}

.mockTag {
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #a16b12;
  background: #fff4de;
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 800;
}

.previewActions {
  flex-direction: column;
  gap: 7px;
  display: flex;
}

.previewActions button {
  color: #3a3f48;
  background: #fff;
  border: 1px solid #d8dbe1;
  border-radius: 9px;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.previewActions .disabledBtn {
  color: #aab;
  background: #f4f5f7;
  border-color: #eaebef;
}

.emptyState {
  text-align: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 17px;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 70px 24px;
  display: flex;
}

.emptyState .emptyIcon {
  width: 58px;
  height: 58px;
  color: var(--blue);
  background: #eaf1ff;
  border-radius: 16px;
  place-items: center;
  display: grid;
}

.emptyState b {
  font-size: 16px;
}

.emptyState p {
  color: #7c818b;
  max-width: 400px;
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.55;
}

.emptyState .primary {
  margin-top: 4px;
}

.iconButton.light {
  color: #9096a3;
}

@media (max-width: 1050px) {
  .workspaceGrid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px;
  }

  .fc2 {
    display: none;
  }

  .characterGrid {
    grid-template-columns: 1fr;
  }
}

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

  .sidebar {
    height: auto;
    position: relative;
  }

  .nav {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }

  .sidebarBottom {
    display: none;
  }

  .content {
    padding: 22px 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 34px 25px;
  }

  .hero h2 {
    font-size: 38px;
  }

  .heroImage, .fc1 {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .formGrid {
    grid-template-columns: 1fr;
  }

  .summary {
    grid-template-columns: 44px 1fr;
  }

  .summary button {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .assetRow {
    grid-template-columns: 45px 1fr auto;
  }

  .kind, .topActions .secondary {
    display: none;
  }
}

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