@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');:root {
  color-scheme: dark;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.vc-loading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #050507;
  color: #f5f7fb;
}

.vc-loading-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.08);
  border-top-color: #4f8bff;
  animation: vc-spin 1s linear infinite;
}

.vc-loading-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes vc-spin {
  to {
    transform: rotate(360deg);
  }
}

.vc-app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: radial-gradient(circle at top, #111217 0%, #050507 40%, #010103 100%);
  color: #f5f7fb;
}

.vc-header {
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

.vc-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.vc-header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vc-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vc-header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vc-nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

button.vc-nav-link {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
}

.vc-nav-link:hover {
  color: #fff;
  border-color: rgba(79, 139, 255, 0.6);
  box-shadow: 0 0 0 2px rgba(79, 139, 255, 0.2);
}

.vc-nav-link--active {
  color: #fff;
  background: rgba(79, 139, 255, 0.18);
  border-color: rgba(79, 139, 255, 0.45);
}

.vc-header-icon {
  width: 28px;
  height: 28px;
  color: #4f8bff;
}

.vc-header-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.vc-parse-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.vc-parse-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  flex: 1 1 auto;
}

.vc-parse-controls .vc-upload-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.vc-parse-input {
  flex: 1 1 auto;
  min-width: 220px;
}

.vc-parse-controls .vc-parse-button {
  flex: 0 0 auto;
}

.vc-channel-strip {
  display: flex;
  flex-wrap: nowrap; /* keep to one row */
  gap: 0; /* overlap pills instead of spacing */
  width: 100%;
  max-width: 860px; /* align with parse bar width */
  margin: 0 auto;
  justify-content: center;
  overflow: hidden; /* clip any overflow to one row */
}

.vc-transcribe-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 860px;
  margin: -4px auto 0;
}

.vc-transcribe-input {
  flex: 1 1 auto;
}

.vc-transcribe-button {
  flex: 0 0 auto;
  min-width: 180px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.vc-transcribe-upload {
  flex: 0 0 auto;
  min-width: 150px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.vc-channel-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; /* smaller pills */
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  position: relative;
}

/* overlap subsequent avatars */
.vc-channel-pill + .vc-channel-pill {
  margin-left: -8px;
}

.vc-channel-pill:hover {
  z-index: 2;
}

.vc-channel-pill__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background: rgba(0, 0, 0, 0.4);
}

.vc-user-menu {
  position: relative;
  flex: 0 0 auto;
}

.vc-user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  color: inherit;
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease;
}

.vc-user-trigger:hover,
.vc-user-trigger:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
}

.vc-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.vc-user-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.vc-user-name {
  font-size: 14px;
  font-weight: 600;
}

.vc-user-email {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.vc-user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: rgba(9, 10, 16, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  width: 280px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  padding: 16px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  z-index: 50;
}

.vc-dropdown-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 10px;
}

.vc-channel-dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 240px;
  overflow-y: auto;
}

.vc-channel-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  transition: border 0.2s ease, background 0.2s ease;
}

.vc-channel-dropdown-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.vc-channel-dropdown-item.is-active {
  border-color: rgba(79, 139, 255, 0.9);
  background: rgba(79, 139, 255, 0.12);
}

.vc-channel-dropdown-avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.vc-channel-dropdown-name {
  font-size: 14px;
  font-weight: 600;
}

.vc-channel-dropdown-platform {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.vc-dropdown-empty {
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.vc-dropdown-footer {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  text-align: right;
}

.vc-dropdown-footer a {
  font-size: 13px;
  color: #7c9bff;
}

.vc-input {
  flex: 1 1 auto;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: inherit;
  padding: 12px 16px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.vc-input--small {
  padding: 10px 12px;
  font-size: 14px;
  width: 100%;
}

.vc-input--timestamp {
  font-family: "IBM Plex Mono", "Menlo", monospace;
  text-transform: uppercase;
  width: 100%;
}

.vc-input:focus {
  outline: none;
  border-color: #4f8bff;
  box-shadow: 0 0 0 3px rgba(79, 139, 255, 0.2);
}

.vc-primary,
.vc-secondary,
.vc-ghost {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.vc-primary {
  background: linear-gradient(135deg, #4f8bff, #6f5bff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.vc-primary--compact {
  padding: 10px 14px;
  min-width: 0;
}

.vc-primary:disabled {
  opacity: 0.6;
  cursor: progress;
}

.vc-primary:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(79, 139, 255, 0.35);
}

/* Inline spinner for buttons */
.vc-button-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  animation: vc-spin 0.8s linear infinite;
  display: inline-block;
}

/* Loading state styling for primary button */
.vc-primary.is-loading {
  opacity: 0.9;
  cursor: progress;
}

.vc-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #f6f6f9;
}

.vc-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.vc-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 12px;
}

.vc-clip-block__controls .vc-ghost {
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.vc-clip-block__controls .vc-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.vc-ghost:hover {
  color: #fff;
}

.vc-ghost--compact {
  padding: 6px 10px;
  border-radius: 10px;
}

.vc-ghost--danger {
  color: rgba(255, 155, 155, 0.95);
}

.vc-ghost--danger:hover {
  color: #fff;
  background: rgba(255, 90, 90, 0.18);
}

.vc-button-icon {
  width: 16px;
  height: 16px;
}

.vc-clip-block__controls .vc-button-icon {
  font-size: 12px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
}

/* Check mark indicating uploaded YouTube video */
.vc-check {
  color: #4ade80; /* green */
  font-weight: 700;
  margin-right: 6px;
}

.vc-project-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 6px;
  vertical-align: middle;
  background: #fbbf24;
  box-shadow: 0 0 6px rgba(251, 191, 36, 0.6);
}

.vc-project-unread {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  margin-right: 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #04121f;
  background: #38bdf8;
  box-shadow: 0 0 6px rgba(56, 189, 248, 0.6);
}

.vc-status {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(79, 139, 255, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(79, 139, 255, 0.3);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.vc-status--error {
  background: rgba(255, 86, 86, 0.12);
  border-color: rgba(255, 86, 86, 0.3);
}

.vc-body {
  display: grid;
  grid-template-columns: 360px 12px 1fr;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.vc-projects {
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: radial-gradient(circle at 0% 0%, rgba(79, 139, 255, 0.15), transparent 48%),
    linear-gradient(180deg, rgba(12, 13, 18, 0.98), rgba(6, 7, 9, 0.98));
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  min-width: 0;
}

.vc-resize-handle {
  width: 12px;
  cursor: col-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease;
}

.vc-resize-handle::after {
  content: '';
  width: 2px;
  height: 48px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.vc-resize-handle:hover,
.vc-resize-handle:focus-visible {
  background: rgba(79, 139, 255, 0.12);
  outline: none;
}

.vc-resize-handle:hover::after,
.vc-resize-handle:focus-visible::after {
  background: rgba(79, 139, 255, 0.8);
}

.vc-projects--collapsed {
  padding: 18px 12px;
  gap: 16px;
  align-items: center;
  border-right: none;
}

.vc-projects--collapsed .vc-panel-heading,
.vc-projects--collapsed .vc-panel-actions {
  display: none;
}

.vc-create-button--icon {
  padding: 12px;
  border-radius: 50%;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.08);
}

.vc-project-mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.vc-project-mini {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease;
}

.vc-project-mini:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.vc-project-mini--active {
  background: linear-gradient(135deg, rgba(91, 111, 255, 0.35), rgba(149, 96, 255, 0.2));
  border-color: rgba(91, 111, 255, 0.8);
  color: #fff;
}

.vc-panel-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vc-panel-heading__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.vc-projects-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  margin-top: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 18px rgba(5, 5, 10, 0.35);
}

.vc-projects-row__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vc-channel-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vc-channel-heading--link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.vc-channel-heading--link:hover,
.vc-channel-heading--link:focus-visible {
  opacity: 0.85;
}

.vc-channel-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vc-channel-avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.vc-channel-name {
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.vc-panel-heading h2 {
  font-size: 22px;
  margin: 4px 0 2px;
  letter-spacing: -0.01em;
}

.vc-panel-eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
}

.vc-panel-subtitle {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.vc-create-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(120deg, #5a7dff, #7d5bff);
  box-shadow: 0 12px 28px rgba(91, 111, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vc-create-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(91, 111, 255, 0.45);
}

.vc-panel-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vc-panel-actions .vc-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 13px;
}

.vc-panel-actions .vc-ghost:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.vc-project-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
  margin-right: -6px;
}

.vc-select-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.vc-select-all input {
  width: 16px;
  height: 16px;
  accent-color: #4f8bff;
  margin: 0;
}

.vc-count {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.vc-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.vc-project-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vc-project-item {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2px;
  border: 1px solid transparent;
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vc-project-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.vc-project-item--active {
  border-color: rgba(91, 111, 255, 0.8);
  box-shadow: 0 14px 28px rgba(77, 103, 255, 0.25);
  background: linear-gradient(120deg, rgba(91, 111, 255, 0.12), rgba(149, 96, 255, 0.08));
}

.vc-project-list--compact .vc-project-item {
  padding: 0;
}

.vc-project-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  gap: 8px;
  padding: 14px 16px;
  cursor: pointer;
  border: none;
  background: transparent;
}

.vc-project-row input[type='checkbox'] {
  width: 14px;
  height: 14px;
  accent-color: #6f85ff;
  margin: 0 4px 0 0;
  cursor: pointer;
}

.vc-project-row__button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
}

.vc-project-row__button:focus-visible {
  outline: 2px solid rgba(79, 139, 255, 0.7);
  outline-offset: 2px;
  border-radius: 8px;
}

.vc-project-row__number {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.vc-project-row__title {
  display: block;
  max-width: 18ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 600;
}

.vc-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 48px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.vc-empty-state--compact {
  padding: 16px 8px;
  gap: 4px;
  font-size: 12px;
}

.vc-empty-state span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.vc-empty-icon {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.35);
}

.vc-empty-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
}

.vc-empty-panel h3 {
  margin: 0;
  font-size: 20px;
  color: #f5f7fb;
}

.vc-empty-panel-icon {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.3);
}

.vc-content {
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  gap: 24px;
  overflow: hidden;
}

.vc-project-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-project-title-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.vc-project-title-main {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-project-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vc-zip-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.vc-zip-status--ready {
  border-color: rgba(80, 214, 135, 0.45);
  background: rgba(80, 214, 135, 0.16);
  color: rgba(212, 255, 231, 0.95);
}

.vc-zip-status--preparing {
  border-color: rgba(255, 199, 0, 0.45);
  background: rgba(255, 199, 0, 0.16);
  color: rgba(255, 237, 175, 0.98);
}

.vc-project-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.vc-meta-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 200px;
}

.vc-status-pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.vc-status-pill--ready {
  background: rgba(46, 204, 113, 0.12);
  color: #4ade80;
}

.vc-status-pill--processing {
  background: rgba(79, 139, 255, 0.12);
  color: #60a5fa;
}

.vc-status-pill--ingested,
.vc-status-pill--new {
  background: rgba(79, 139, 255, 0.12);
  color: #93c5fd;
}

.vc-status-pill--pending {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.vc-status-pill--failed {
  background: rgba(255, 86, 86, 0.12);
  color: #f87171;
}

.vc-inline-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

.vc-hint--inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vc-title-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #f5f7fb;
  font-size: 28px;
  font-weight: 600;
}

.vc-title-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.vc-title-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.vc-title-input:focus {
  outline: none;
}

.vc-source-url {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  word-break: break-all;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.vc-source-url__text {
  word-break: break-all;
}

.vc-copy-url-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.vc-copy-url-button:hover,
.vc-copy-url-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.vc-copy-url-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(79, 139, 255, 0.4);
}

.vc-copy-url-button.is-copied {
  background: rgba(79, 139, 255, 0.2);
  border-color: rgba(79, 139, 255, 0.6);
}

.vc-copy-url-button__icon {
  width: 14px;
  height: 14px;
}

.vc-tabs {
  display: flex;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  align-items: center;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
}

.vc-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  font-size: 13px;
  font-weight: 600;
}

.vc-tab--active {
  background: linear-gradient(135deg, rgba(79, 139, 255, 0.5), rgba(111, 91, 255, 0.5));
  border-color: rgba(124, 153, 255, 0.6);
  box-shadow: 0 10px 24px rgba(79, 139, 255, 0.2);
  color: #fff;
}

.vc-tab-icon {
  width: 16px;
  height: 16px;
  opacity: 0.9;
}

.vc-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.vc-tab--active .vc-tab-icon {
  opacity: 1;
}

.vc-tab-menu {
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.vc-tab-menu__trigger {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vc-tab-menu__trigger:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.12);
}

.vc-tab-menu__trigger.is-open {
  background: rgba(79, 139, 255, 0.25);
  box-shadow: 0 8px 18px rgba(79, 139, 255, 0.2);
}

.vc-tab-menu__panel {
  position: fixed;
  min-width: 200px;
  background: rgba(16, 18, 26, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  z-index: 1500;
  max-height: min(60vh, 360px);
  overflow-y: auto;
}

.vc-tab-menu__title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.vc-tab-menu__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.vc-tab-menu__item input {
  width: 14px;
  height: 14px;
  accent-color: #4f8bff;
  margin: 0;
}

.vc-tab-panel {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 24px;
  overflow-y: auto;
  min-height: 320px;
}

.vc-publish-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.vc-publish-preview {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-publish-details {
  flex: 2 1 520px;
  display: flex;
  flex-direction: column;
}

.vc-publish-card {
  padding: 24px;
  border-radius: 18px;
  background: rgba(11, 15, 27, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.vc-publish-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

/* Add a subtle divider under the Metadata header */
.vc-publish-card__header--divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 10px;
}

.vc-publish-card__header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vc-publish-card__header h3 {
  margin: 0;
  font-size: 16px;
}

.vc-publish-player iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: 16px;
  background: #000;
}

.vc-publish-player .vc-publish-video {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: 16px;
  background: #000;
}

.vc-publish-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.vc-publish-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px;
}

.vc-publish-meta {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 8px 16px;
  font-size: 14px;
  margin: 0;
}

.vc-publish-meta dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.vc-publish-meta dd {
  margin: 0;
  color: #f5f7fb;
}

.vc-publish-meta--compact {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.vc-publish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.vc-tag-pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
}

.vc-publish-thumbnail {
  width: 100%;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 220px;
  background: #0f1324;
}

.vc-publish-thumbnail-prompt {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.vc-publish-thumbnail-prompt__label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vc-publish-thumbnail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.vc-publish-thumbnail-versions {
  margin-top: 14px;
}

.vc-publish-thumb-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.vc-thumb-card.is-selected .vc-thumb-media {
  border-color: rgba(79, 139, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(79, 139, 255, 0.25);
}

.vc-publish-thumb-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.vc-publish-thumb-header h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.vc-thumb-selected-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(79, 139, 255, 0.18);
  border: 1px solid rgba(79, 139, 255, 0.5);
  color: rgba(214, 226, 255, 0.95);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vc-publish-thumb-grid .vc-thumb-media {
  aspect-ratio: 16 / 9;
}

.vc-publish-thumb-grid .vc-thumb-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vc-thumb-media--clickable:focus-visible {
  outline: 2px solid rgba(79, 139, 255, 0.8);
  outline-offset: 2px;
}

.vc-thumb-media--clickable:hover {
  border-color: rgba(79, 139, 255, 0.5);
}

.vc-hint--error {
  color: #f87171;
}

.vc-publish-image-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.vc-publish-chapter-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.vc-publish-chapter-list li {
  background: rgba(31, 41, 55, 0.7);
  border-radius: 8px;
  padding: 6px 10px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  word-break: break-word;
}

.vc-video-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 18px;
  overflow: hidden;
}

.vc-video-preview iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.vc-video-preview--compact {
  flex: 0 0 220px;
  max-width: 220px;
  min-width: 180px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
}

.vc-video-expand {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 11, 19, 0.72);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.vc-video-expand:hover {
  transform: translateY(-1px);
  background: rgba(79, 139, 255, 0.8);
}

.vc-video-expand__icon {
  width: 18px;
  height: 18px;
}

.vc-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 10, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1200;
}

.vc-video-modal__content {
  width: min(90vw, 960px);
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.vc-video-modal__content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.vc-video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background: rgba(9, 11, 19, 0.72);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.vc-video-modal__close:hover {
  transform: translateY(-1px);
  background: rgba(79, 139, 255, 0.8);
}

.vc-video-modal__close-icon {
  width: 20px;
  height: 20px;
}

.vc-tab-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vc-section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-section-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.vc-section-header p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.vc-section-header--with-action {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.vc-section-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.vc-storyboard-header {
  align-items: flex-start;
}

.vc-section-actions--stack {
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.vc-storyboard-source {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 320px;
  max-width: 520px;
  width: min(520px, 100%);
}

.vc-storyboard-source__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.vc-storyboard-source__textarea {
  min-height: 120px;
}

.vc-storyboard-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

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

.vc-style-toggle,
.vc-ratio-toggle {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.vc-toggle-group {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(5, 6, 12, 0.55);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.vc-toggle-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  margin-right: 6px;
}

@media (max-width: 960px) {
  .vc-storyboard-header {
    flex-direction: column;
    align-items: stretch;
  }

  .vc-section-actions--stack {
    align-items: stretch;
  }

  .vc-storyboard-source {
    max-width: none;
    width: 100%;
  }

  .vc-storyboard-action-row {
    justify-content: flex-start;
  }
}

.vc-action-button {
  padding: 10px 18px;
}

.vc-action-button--compact {
  padding: 6px 12px;
  font-size: 13px;
}

.vc-textarea {
  width: 100%;
  min-height: 280px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  color: inherit;
  resize: vertical;
  line-height: 1.5;
}

.vc-textarea--large {
  height: calc(100vh - 340px);
  min-height: 320px;
}

.vc-textarea--compact {
  min-height: 120px;
  resize: vertical;
}

.vc-textarea:focus {
  outline: none;
  border-color: #4f8bff;
  box-shadow: 0 0 0 3px rgba(79, 139, 255, 0.18);
}

.vc-textarea-wrapper {
  position: relative;
  overflow: visible;
}

.vc-textarea--with-icon {
  padding-right: 44px;
}

.vc-textarea-wrapper .vc-copy-button {
  top: 10px;
  right: 10px;
}

.vc-copy-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 2;
}

.vc-copy-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.vc-copy-button svg {
  width: 16px;
  height: 16px;
}

.vc-empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.vc-actions {
  display: flex;
  justify-content: flex-end;
}

.vc-editor {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 32px;
  background: rgba(8, 9, 12, 0.92);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.vc-transcript-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

/* Equal-width variant (used by Rewrite tab for English/Chinese panels) */
.vc-transcript-layout.vc-transcript-layout--equal {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

/* Make right-side comment panel match left height and allow textarea to fill */
.vc-transcript-layout.vc-transcript-layout--equal .vc-comments-column {
  max-height: none;
}
.vc-transcript-layout.vc-transcript-layout--equal .vc-voiceover-column {
  max-height: none;
  overflow: visible;
}
.vc-comments-column .vc-textarea {
  flex: 1;
  min-height: 0;
}

.vc-transcript-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-comments-column {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  max-height: calc(100vh - 320px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-comments-column h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.vc-comments-column .vc-textarea {
  min-height: 260px;
}

.vc-voiceover-column {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  max-height: calc(100vh - 320px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-voiceover-column .vc-textarea {
  min-height: 260px;
}

.vc-column-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.vc-column-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-column-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.vc-column-field label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.vc-audio-preview {
  display: flex;
  gap: 12px;
  align-items: center;
}

.vc-audio-preview audio {
  flex: 1;
  min-width: 160px;
}

.vc-secondary--compact {
  padding: 8px 12px;
}

/* Simple modal for in-tab integrations */
.vc-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.vc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.vc-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1000px, 92vw);
  height: min(720px, 84vh);
  background: rgba(11, 15, 27, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vc-modal__header,
.vc-modal__footer {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-modal__footer {
  border-bottom: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-modal__iframe {
  width: 100%;
  border: none;
  flex: 1 1 auto;
  background: #0b0f1b;
}

.vc-top-comments {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  flex: 1;
}

.vc-top-comments__item {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-top-comments__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.vc-top-comments__author {
  font-weight: 600;
}

.vc-top-comments__timestamp {
  opacity: 0.75;
}

.vc-top-comments__likes {
  font-variant-numeric: tabular-nums;
}

.vc-top-comments__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.vc-top-comments__empty {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.vc-subheading {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.vc-manuscript-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-manuscript-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.vc-manuscript-progress {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-manuscript-progress__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.vc-manuscript-progress__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vc-manuscript-result__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.vc-manuscript-steps {
  display: grid;
  gap: 8px;
}

.vc-manuscript-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  font-size: 13px;
}

.vc-manuscript-step__label {
  color: rgba(255, 255, 255, 0.85);
}

.vc-manuscript-chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
}

.vc-manuscript-chat__history {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  flex: 1;
  padding-right: 4px;
}

.vc-manuscript-chat__message {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  font-size: 13px;
}

.vc-manuscript-chat__message--assistant {
  align-self: flex-start;
  border-color: rgba(79, 139, 255, 0.3);
  background: rgba(79, 139, 255, 0.12);
}

.vc-manuscript-chat__message--user {
  align-self: flex-end;
}

.vc-manuscript-chat__role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

.vc-manuscript-chat__message p {
  margin: 0;
  white-space: pre-wrap;
}

.vc-manuscript-chat__input {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.vc-manuscript-chat__input .vc-textarea {
  flex: 1;
}

.vc-copy-steps__message {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(79, 139, 255, 0.12);
  border: 1px solid rgba(79, 139, 255, 0.4);
  font-size: 13px;
}

.vc-copy-steps__message--error {
  background: rgba(255, 99, 99, 0.15);
  border-color: rgba(255, 99, 99, 0.5);
}

.vc-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.vc-modal {
  width: min(520px, 92vw);
  background: #0f1320;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}

.vc-modal__header,
.vc-modal__footer {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vc-modal__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
}

.vc-modal__body {
  padding: 16px;
  max-height: 60vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-template-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-template-item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.vc-template-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.vc-template-item__title {
  font-weight: 600;
}

.vc-template-item__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.vc-template-item__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vc-step-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 26, 38, 0.55);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.vc-step-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: -20px -20px 12px;
  padding: 14px 18px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, rgba(38, 48, 70, 0.7), rgba(18, 22, 34, 0.7));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vc-step-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}

.vc-step-card__header--clickable {
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.vc-step-card__header--clickable:hover {
  background: linear-gradient(135deg, rgba(58, 72, 108, 0.75), rgba(24, 30, 46, 0.75));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.vc-step-card__header--clickable:focus-visible {
  outline: 2px solid rgba(79, 139, 255, 0.6);
  outline-offset: 2px;
}

.vc-step-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.vc-step-card.is-collapsed .vc-step-toggle {
  transform: rotate(-90deg);
}

.vc-step-card.is-collapsed .vc-step-card__header {
  background: rgba(255, 255, 255, 0.07);
}

.vc-step-index {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(98, 149, 255, 0.22);
  border: none;
  font-size: 12px;
  font-weight: 600;
}

.vc-step-title-input {
  min-width: 200px;
  max-width: 320px;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  box-shadow: none;
}

.vc-step-card__meta {
  display: none;
}

.vc-step-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.vc-step-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vc-step-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.vc-step-section__header h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.vc-step-section__header p {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.vc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-field label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.vc-step-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vc-step-row--inline {
  flex-wrap: nowrap;
  align-items: center;
}

.vc-step-row--inline select,
.vc-step-row--inline .vc-input {
  flex: 1 1 0;
  min-width: 0;
}

.vc-step-row--inline > .vc-primary {
  flex: 1 1 0;
  white-space: nowrap;
}

.vc-step-row--split {
  justify-content: space-between;
}

.vc-step-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.vc-step-actions--two {
  flex-wrap: nowrap;
  gap: 10px;
}

.vc-step-actions--two .vc-secondary {
  flex: 1 1 0;
}

.vc-source-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-source-slot {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vc-source-slot__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vc-source-slot__actions {
  display: inline-flex;
  gap: 6px;
}

.vc-source-preview {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.vc-icon-button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease;
}

.vc-icon-button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.vc-icon-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.vc-icon-button--danger {
  border: 1px solid rgba(255, 112, 112, 0.4);
  background: rgba(255, 112, 112, 0.14);
  color: #ff9d9d;
}

.vc-icon-button--danger:hover {
  background: rgba(255, 112, 112, 0.2);
  color: #ffc8c8;
}

.vc-version-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.vc-dirty {
  color: #ffcf6d;
  font-weight: 600;
}

.vc-history-panel {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
}

.vc-history-panel__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vc-history-panel__item {
  text-align: left;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
}

.vc-history-panel__item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.vc-step-textarea {
  min-height: 220px;
  resize: none;
  overflow: hidden;
  height: auto;
  padding-right: 56px;
}

.vc-step-textarea--output {
  min-height: 260px;
  resize: none;
  overflow: hidden;
  height: auto;
  padding-right: 56px;
}

.vc-step-card__footer {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .vc-step-grid {
    grid-template-columns: 1fr;
  }

  .vc-step-title-input {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .vc-transcript-layout {
    grid-template-columns: 1fr;
  }

  .vc-comments-column {
    max-height: none;
  }

  .vc-voiceover-column {
    max-height: none;
  }
}

.vc-meta-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-editor-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 2;
  min-width: 320px;
}

.vc-editor-preview-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-editor-thumbnail {
  width: 60%;
  max-width: 200px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  background: rgba(12, 13, 18, 0.8);
  align-self: center;
}

.vc-editor-thumbnail--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.vc-editor-controls {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-sora-prompt {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.vc-sora-prompt h4 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.vc-clips {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-clip-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  align-items: flex-start;
}

.vc-clip-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
}

.vc-clip-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.vc-label--wide {
  width: 100%;
}

.vc-clip-timing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.vc-delete {
  color: rgba(255, 255, 255, 0.45);
}

.vc-delete:hover {
  color: rgba(255, 86, 86, 0.85);
}

.vc-storyboard-grid {
  display: flex;
  gap: 20px;
  width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  padding: 16px 8px 16px 16px;
}

.vc-ai-video {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-member-tab-panel,
.vc-member-source-list > li,
.vc-ai-video {
  min-width: 0;
  max-width: 100%;
}

.vc-ai-video .vc-ai-video-input,
.vc-ai-video .vc-ai-video-scenes,
.vc-ai-video .vc-storyboard-grid {
  min-width: 0;
  max-width: 100%;
}

.vc-ai-video-input {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.vc-ai-video-scenes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-ai-video-source-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.vc-ai-video-source-row > * {
  min-width: 0;
}

.vc-ai-video-source-main,
.vc-ai-video-model {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-ai-video-source-main .vc-textarea--compact {
  min-height: 240px;
}

.vc-ai-video-source-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vc-ai-video-source-header .vc-member-script-toggle {
  flex-shrink: 0;
}

.vc-ai-video-select {
  width: 100%;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  color: inherit;
  font-size: 14px;
}

.vc-ai-video-select:focus {
  outline: none;
  border-color: #4f8bff;
  box-shadow: 0 0 0 3px rgba(79, 139, 255, 0.18);
}

.vc-ai-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.vc-ai-video-input .vc-action-button {
  align-self: flex-start;
}

.vc-ai-video-model .vc-ai-video-actions {
  flex-direction: column;
  align-items: stretch;
  margin-top: 8px;
}

.vc-ai-video-model .vc-action-button {
  width: 100%;
  align-self: stretch;
  white-space: normal;
  text-align: center;
}

.vc-ai-video-subtitle-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-ai-video .vc-member-script-textarea {
  width: 100%;
  min-height: 180px;
  padding: 12px;
}

.vc-ai-video .vc-member-script-textarea--subtitles {
  min-height: 140px;
}

.vc-ai-video .vc-member-subtitle-header h3 {
  font-size: 14px;
}

.vc-ai-video-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.vc-ai-video-select-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.vc-ai-video-select-toggle input {
  width: 16px;
  height: 16px;
  accent-color: #4f8bff;
  margin: 0;
}

.vc-ai-video-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  white-space: pre-wrap;
}

.vc-ai-video-sentence-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  color: inherit;
  font-size: 13px;
  line-height: 1.4;
  resize: vertical;
}

.vc-ai-video-sentence-input:focus {
  outline: none;
  border-color: #4f8bff;
  box-shadow: 0 0 0 3px rgba(79, 139, 255, 0.18);
}

.vc-ai-video-preview,
.vc-ai-video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-ai-video-preview {
  position: relative;
}

.vc-ai-video-preview .vc-ai-video-placeholder {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  margin: 0;
  background: transparent;
}

.vc-ai-video-player {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  background: #000;
}

.vc-ai-video-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.vc-ai-video-placeholder[hidden],
.vc-ai-video-player[hidden],
.vc-ai-video-download[hidden],
.vc-ai-video-next[hidden] {
  display: none;
}

.vc-ai-video-download {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vc-ai-video-next {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  pointer-events: auto;
}

.vc-ai-video-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.vc-scene-image-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.vc-scene-image-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
}

.vc-image-model-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 8px;
}

.vc-ai-video-select--compact {
  min-width: 0;
}

.vc-ai-image-preview {
  width: 100%;
  border-radius: 12px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 200px;
}

.vc-ai-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  background: #000;
}

.vc-ai-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.vc-ai-image-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  gap: 8px;
  z-index: 3;
}

.vc-ai-image-actions .vc-icon-button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.vc-image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.vc-image-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-image-modal__content img {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.vc-image-modal__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vc-ai-image-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.vc-frame-video-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.vc-frame-images {
  display: grid;
  grid-template-columns: repeat(2, 92px);
  gap: 8px;
  align-items: center;
}

.vc-frame-image {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: visible;
  width: 96px;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
}

.vc-frame-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.vc-frame-image--tail {
  border-style: dashed;
  border-width: 1px;
  transform: rotate(5deg);
}

.vc-frame-image--tail.is-uploading {
  opacity: 0.7;
}

.vc-frame-image--head {
  transform: rotate(-5deg);
}

.vc-frame-placeholder {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-frame-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.vc-frame-tail-delete {
  position: absolute;
  top: 10px;
  right: 10px;
}

.vc-frame-video-prompt {
  width: 100%;
  min-height: 78px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: #f5f7fb;
  resize: vertical;
}

.vc-frame-tail-menu {
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translate(-50%, 8px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  z-index: 20;
  pointer-events: auto;
}

.vc-frame-video-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.vc-frame-video-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.vc-tail-preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-tail-preview__img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  background: #000;
  flex-shrink: 0;
}

.vc-tail-preview__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.vc-ai-video .vc-storyboard-grid .vc-scene-card {
  flex: 0 0 min(320px, 85vw);
  min-width: min(320px, 85vw);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  transform-origin: center top;
}

.vc-ai-image-next {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  pointer-events: auto;
}

.vc-ai-image-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.vc-scene-card.is-active {
  transform: scale(1.1);
  z-index: 5;
  border-color: rgba(79, 139, 255, 0.6);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1100px) {
  .vc-ai-video-source-row {
    grid-template-columns: 1fr;
  }
}

.vc-character-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-environment-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-character-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.vc-character-header p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.vc-toggle-header {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-toggle-header .vc-toggle-caret {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 6px;
}

.vc-environment-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vc-character-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.vc-character-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
  min-width: 260px;
  max-width: 280px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.vc-character-card.is-expanded {
  flex: 0 0 25vw !important;
  min-width: 25vw;
  max-width: 25vw;
  box-shadow: 0 12px 32px rgba(4, 6, 15, 0.45);
}

.vc-character-avatar {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vc-character-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vc-character-placeholder {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.3);
}

.vc-character-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

.vc-character-card.is-expanded {
  box-shadow: 0 12px 28px rgba(3, 5, 12, 0.45);
}

.vc-card-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-card-summary strong {
  font-size: 15px;
}

.vc-card-summary p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.vc-card-tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vc-card-toggle-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 6px;
}

.vc-chip-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  cursor: pointer;
}

.vc-chip-button:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.vc-character-name-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.vc-character-actions {
  display: flex;
  justify-content: flex-end;
}

.vc-scene-card {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vc-scene-card.is-expanded {
  flex: 0 0 25vw !important;
  min-width: 25vw;
  max-width: 25vw;
  box-shadow: 0 18px 45px rgba(4, 6, 15, 0.55);
}

.vc-scene-thumb {
  position: relative;
}

.vc-scene-thumb__button {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: block;
  cursor: pointer;
  position: relative;
}

.vc-scene-card.is-expanded .vc-scene-thumb__button {
  aspect-ratio: 21 / 9;
}

.vc-scene-thumb__button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.vc-scene-expand,
.vc-card-expand {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vc-scene-expand:hover,
.vc-card-expand:hover {
  background: rgba(0, 0, 0, 0.75);
}
.vc-card-expand {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.vc-card-expand img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vc-card-expand__icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.vc-scene-placeholder {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.25);
}

.vc-scene-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-scene-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.vc-scene-meta-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vc-scene-meta-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vc-icon-button {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.vc-icon-button:hover {
  background: rgba(79, 139, 255, 0.12);
  border-color: rgba(79, 139, 255, 0.4);
}

.vc-icon-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.vc-icon-button--danger:hover {
  background: rgba(255, 86, 86, 0.14);
  border-color: rgba(255, 86, 86, 0.5);
}

.vc-scene-index {
  font-family: "IBM Plex Mono", "Menlo", monospace;
}

.vc-add-scene {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-radius: 10px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-add-scene:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.vc-scene-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.vc-scene-timestamp {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.vc-scene-prompts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
}

.vc-scene-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.vc-scene-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.vc-scene-input-row {
  display: flex;
  gap: 12px;
}

.vc-scene-prompt {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  white-space: pre-wrap;
}

.vc-scene-description {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.vc-empty-state--panel {
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 48px 16px;
}

.vc-tab-panel > .vc-empty-state {
  padding: 64px 16px;
}

@media (max-width: 1100px) {
  .vc-body {
    grid-template-columns: 280px 12px 1fr;
  }

  .vc-editor {
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .vc-body {
    grid-template-columns: 1fr;
  }

  .vc-resize-handle {
    display: none;
  }

  .vc-projects {
    flex-direction: column;
    max-height: none;
    padding: 18px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(5, 6, 10, 0.92);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  }

  .vc-panel-heading,
  .vc-panel-heading__content {
    flex-direction: column;
    align-items: stretch;
  }

  .vc-panel-actions {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .vc-projects-row {
    width: 100%;
    padding: 10px 14px;
  }

  .vc-project-scroll {
    overflow-x: auto;
    margin: 0 -4px;
    padding-bottom: 10px;
  }

  .vc-project-list {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .vc-project-item {
    min-width: 240px;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .vc-header,
  .vc-content,
  .vc-editor {
    padding: 20px;
  }

  .vc-parse-bar {
    flex-direction: column;
    max-width: 100%;
  }

  .vc-parse-bar .vc-input {
    max-width: 100%;
  }

  .vc-editor {
    flex-direction: column;
  }

  .vc-editor-controls {
    width: 100%;
    justify-content: center;
  }
}
.vc-ratio-button {
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 999px;
}

.vc-ratio-button.is-active {
  background: rgba(79, 139, 255, 0.15);
  border-color: #4f8bff;
  color: #fff;
}

/* --- Final Cut-like Clips Layout --- */
.vc-clips-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-clips-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  /* Control preview/left-browser height relationship */
  --vc-preview-h: 380px;
  align-items: start;
}

.vc-media-browser {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  /* Limit left panel height to 2x preview height */
  max-height: calc(var(--vc-preview-h) * 2);
  overflow-y: auto;
}

.vc-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.vc-thumb-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vc-thumb-media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b0c12;
  padding: 0;
}
.vc-thumb-media--clickable {
  cursor: pointer;
}
.vc-thumb-media video,
.vc-thumb-media img {
  display: block;
  width: 100%;
  height: 96px;
  -o-object-fit: cover;
     object-fit: cover;
}
.vc-thumb-placeholder {
  width: 100%;
  height: 120px;
  background: rgba(255, 255, 255, 0.04);
}
.vc-thumb-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 12px;
  padding: 4px 6px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 6px;
}
.vc-thumb-overlay {
  position: absolute;
  top: 6px;
  left: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 2;
}
.vc-thumb-overlay .vc-action-button {
  background: rgba(13, 16, 24, 0.35);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  padding: 4px;
}
.vc-thumb-overlay .vc-action-button:hover,
.vc-thumb-overlay .vc-action-button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.vc-preview-player {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px;
  height: var(--vc-preview-h);
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vc-preview-media {
  width: 90%;
  height: 100%;
  max-width: 100%;
  border: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.vc-empty-preview {
  text-align: center;
  color: #fff9;
}

.vc-timeline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 0 10px 0;
}
.vc-timeline-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: #ffffffb3;
}
.vc-timeline-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 6px;
  justify-content: flex-start;
  position: relative;
}
.vc-timeline-track--vertical-cards {
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  padding: 0 8px 6px;
  overflow-x: auto;
}
.vc-timeline-track--vertical-cards .vc-clip-block {
  width: 180px;
  max-width: 280px;
  border-radius: 8px;
  padding: 8px;
}
.vc-timeline-track--vertical-cards .vc-clip-thumb {
  height: 72px;
  border-radius: 6px;
}
.vc-clip-block {
  flex: 0 0 auto;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 6px 0;
  min-height: unset;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vc-clip-block[draggable="true"] {
  cursor: grab;
}
.vc-clip-block.is-dragging {
  opacity: 0.7;
}
.vc-clip-block.is-drag-over {
  outline: 1px dashed rgba(255, 255, 255, 0.7);
}
.vc-timeline-playhead {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 0, 0, 0.7);
  cursor: ew-resize;
}
.vc-timeline-playhead::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid rgba(255, 0, 0, 0.9);
}
.vc-clip-block.is-selected {
  border-color: rgba(79, 139, 255, 0.9);
}
.vc-clip-thumb-label-top {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding: 0;
}
.vc-clip-thumb-label-top__scene {
  font-weight: 600;
  opacity: 0.9;
}
.vc-clip-thumb-label-top__title {
  font-size: 8px;
  opacity: 0.85;
  width: 60px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vc-clip-thumb {
  width: 100%;
  height: 40px;
  border-radius: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0;
  padding: 0;
}
.vc-clip-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.vc-clip-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vc-clip-block__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vc-clip-block__title {
  font-size: 13px;
}
.vc-clip-block__time {
  font-size: 12px;
  color: #fff9;
}
.vc-clip-block__controls {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.vc-clip-block__controls--timeline {
  justify-content: space-between;
}

.vc-vo-audio {
  padding: 4px 0;
}
.vc-vo-audio__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vc-vo-audio__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}
.vc-vo-audio__player {
  width: 0;
  height: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  margin: 0;
}
.vc-vo-audio__empty {
  font-size: 11px;
  color: #fff9;
}

.vc-vo-audio__bar {
  position: relative;
  width: 100%;
  height: 16px;
  background: #1f2933;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  cursor: pointer;
}
.vc-vo-audio__bar-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #30496b, #1f2933);
}
.vc-vo-audio__bar-fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: rgba(79, 139, 255, 0.9);
}
.vc-vo-audio__thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f97373;
  border: 1px solid #fff;
  cursor: grab;
}
.vc-vo-audio__thumb:active {
  cursor: grabbing;
}
.vc-vo-audio__controls {
  margin-top: 4px;
}

.vc-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vc-select-wrap {
  min-width: 180px;
}
.vc-empty-timeline {
  color: #fff9;
  padding: 12px;
}

.vc-indextts2 {
  background: #f8f9fb;
  border: 1px solid #e4e7ee;
  border-radius: 18px;
  padding: 20px;
  color: #111827;
  font-family: "Inter", "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
}

.vc-indextts2 .indextts2-banner {
  text-align: center;
  padding: 6px 12px 0;
}

.vc-indextts2 .indextts2-banner h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.vc-indextts2 .indextts2-banner-links {
  margin-top: 8px;
}

.vc-indextts2 .indextts2-banner img {
  height: 20px;
}

.vc-indextts2 .indextts2-tabs {
  display: flex;
  gap: 8px;
  padding: 8px 4px 0;
}

.vc-indextts2 .indextts2-server {
  background: #ffffff;
  border: 1px solid #e2e6ec;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vc-indextts2 .indextts2-server-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vc-indextts2 .indextts2-server-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-indextts2 .indextts2-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #9ca3af;
  flex-shrink: 0;
}

.vc-indextts2 .indextts2-status-dot--running {
  background: #16a34a;
}

.vc-indextts2 .indextts2-status-dot--starting {
  background: #f59e0b;
}

.vc-indextts2 .indextts2-status-dot--error,
.vc-indextts2 .indextts2-status-dot--missing_env {
  background: #ef4444;
}

.vc-indextts2 .indextts2-primary--compact {
  padding: 8px 12px;
  font-size: 12px;
}

.vc-indextts2 .indextts2-tab {
  background: #ffffff;
  border: 1px solid #d9dde3;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.vc-indextts2 .indextts2-tab--active {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.vc-indextts2 .indextts2-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-indextts2 .indextts2-row {
  display: grid;
  gap: 16px;
}

.vc-indextts2 .indextts2-row--top {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
}

.vc-indextts2 .indextts2-card {
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-indextts2 .indextts2-card--text {
  gap: 8px;
}

.vc-indextts2 .indextts2-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.vc-indextts2 .indextts2-label-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vc-indextts2 .indextts2-word-count {
  font-size: 12px;
  color: #6b7280;
}

.vc-indextts2 .indextts2-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d6dc;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
}

.vc-indextts2 .indextts2-icon-button:hover {
  background: #f3f4f6;
}

.vc-indextts2 .indextts2-icon-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.vc-indextts2 .indextts2-icon-button svg {
  width: 16px;
  height: 16px;
}

.vc-indextts2 .indextts2-label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.vc-indextts2 .indextts2-input,
.vc-indextts2 select,
.vc-indextts2 textarea,
.vc-indextts2 input[type="number"] {
  background: #fff;
  border: 1px solid #d2d6dc;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  color: #111827;
}

.vc-indextts2 .indextts2-textarea {
  min-height: 920px;
  resize: vertical;
}

.vc-indextts2 .indextts2-primary {
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.vc-indextts2 .indextts2-primary--stop {
  background: #dc2626;
}

.vc-indextts2 .indextts2-primary:disabled {
  opacity: 0.6;
  cursor: progress;
}

.vc-indextts2 .indextts2-audio {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vc-indextts2 audio {
  width: 100%;
}

.vc-indextts2 .indextts2-audio-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vc-indextts2 .indextts2-examples-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.vc-indextts2 .indextts2-examples-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.vc-indextts2 .indextts2-examples-actions .indextts2-input {
  min-width: 160px;
}

.vc-indextts2 .indextts2-button {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.vc-indextts2 .indextts2-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vc-indextts2 .indextts2-button--action {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.vc-indextts2 .indextts2-button input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.vc-indextts2 .indextts2-file-name {
  font-size: 12px;
  color: #4b5563;
}

.vc-indextts2 .indextts2-placeholder {
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  padding: 12px;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

.vc-indextts2 .indextts2-history {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.vc-indextts2 .indextts2-history-title {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.vc-indextts2 .indextts2-history-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.vc-indextts2 .indextts2-history-meta {
  font-size: 11px;
  color: #6b7280;
}

.vc-indextts2 .indextts2-history-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  margin-right: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #111827;
  font-size: 11px;
  font-weight: 600;
}

.vc-indextts2 .indextts2-history-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.vc-indextts2 .indextts2-text-button {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
  cursor: pointer;
  color: #111827;
}

.vc-indextts2 .indextts2-text-button:hover {
  background: #f3f4f6;
}

.vc-indextts2 .indextts2-history-text {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 8px;
  font-size: 12px;
  color: #374151;
  white-space: pre-wrap;
}

.vc-indextts2 .indextts2-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #111827;
}

.vc-indextts2 .indextts2-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #111827;
}

.vc-indextts2 .indextts2-checkbox--inline {
  margin-top: 6px;
}

.vc-indextts2 .indextts2-accordion {
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 12px;
  padding: 8px 12px;
}

.vc-indextts2 .indextts2-accordion summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  list-style: none;
}

.vc-indextts2 .indextts2-accordion summary::-webkit-details-marker {
  display: none;
}

.vc-indextts2 .indextts2-accordion-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 4px 6px;
}

.vc-indextts2 .indextts2-accordion--nested {
  margin-top: 8px;
  padding: 6px 10px;
}

.vc-indextts2 .indextts2-radio-group {
  display: grid;
  gap: 8px;
}

.vc-indextts2 .indextts2-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.vc-indextts2 .indextts2-radio input[type="radio"] {
  accent-color: #111827;
}

.vc-indextts2 .indextts2-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.vc-indextts2 .indextts2-slider input[type="range"] {
  width: 100%;
}

.vc-indextts2 .indextts2-slider-value {
  min-width: 42px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: #374151;
}

.vc-indextts2 .indextts2-vector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vc-indextts2 .indextts2-warning {
  background: #ffa87d;
  color: #000;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.vc-indextts2 .indextts2-log {
  background: #f9fafb;
  border: 1px solid #e2e6ec;
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  color: #111827;
  white-space: pre-wrap;
  max-height: 220px;
  overflow: auto;
}

.vc-indextts2 .indextts2-info {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.vc-indextts2 .indextts2-advanced-row {
  display: grid;
  gap: 12px;
  align-items: end;
}

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

.vc-indextts2 .indextts2-advanced-row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vc-indextts2 .indextts2-advanced-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 12px 4px;
}

.vc-indextts2 .indextts2-advanced-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-indextts2 .indextts2-advanced-title {
  font-weight: 600;
  font-size: 13px;
}

.vc-indextts2 .indextts2-advanced-note {
  font-size: 12px;
  color: #6b7280;
}

.vc-indextts2 .indextts2-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vc-indextts2 .indextts2-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vc-indextts2 .indextts2-table-wrapper {
  overflow-x: auto;
  border: 1px solid #e2e6ec;
  border-radius: 10px;
}

.vc-indextts2 .indextts2-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.vc-indextts2 .indextts2-table th,
.vc-indextts2 .indextts2-table td {
  border-bottom: 1px solid #eef0f4;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.vc-indextts2 .indextts2-table th {
  background: #f3f4f6;
  font-weight: 600;
}

.vc-indextts2 .indextts2-empty {
  text-align: center;
  color: #6b7280;
  padding: 16px;
}

.vc-indextts2 .indextts2-examples {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vc-indextts2 .indextts2-examples-title {
  font-size: 13px;
  font-weight: 600;
}

.vc-indextts2 .indextts2-table--examples th,
.vc-indextts2 .indextts2-table--examples td {
  white-space: nowrap;
}

.vc-indextts2 .indextts2-example-row {
  cursor: pointer;
}

.vc-indextts2 .indextts2-example-row:hover {
  background: #f9fafb;
}

.vc-indextts2 .indextts2-example-row:focus-visible {
  outline: 2px solid #111827;
  outline-offset: -2px;
}

@media (max-width: 1100px) {
  .vc-indextts2 .indextts2-server {
    flex-direction: column;
    align-items: flex-start;
  }

  .vc-indextts2 .indextts2-row--top {
    grid-template-columns: 1fr;
  }

  .vc-indextts2 .indextts2-advanced-grid {
    grid-template-columns: 1fr;
  }

  .vc-indextts2 .indextts2-advanced-row--two,
  .vc-indextts2 .indextts2-advanced-row--three {
    grid-template-columns: 1fr;
  }

  .vc-indextts2 .indextts2-vector-grid {
    grid-template-columns: 1fr;
  }
}

.vc-distribute-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.vc-distribute-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.vc-distribute-card__header h4 {
  margin: 0;
  font-size: 16px;
}

.vc-distribute-eyebrow {
  margin: 0 0 4px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

.vc-distribute-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.vc-distribute-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.vc-distribute-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-distribute-meta span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.vc-distribute-meta strong {
  font-size: 14px;
  font-weight: 600;
}

.vc-distribute-path {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-distribute-path input {
  flex: 1;
}

.vc-distribute-hint {
  margin: 8px 0 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.vc-distribute-versions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-distribute-versions__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.vc-distribute-versions__header h5 {
  margin: 0;
  font-size: 14px;
}

.vc-distribute-versions__count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.vc-distribute-versions__list {
  display: grid;
  gap: 12px;
}

.vc-distribute-versions__item {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-distribute-versions__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-distribute-versions__id {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.vc-distribute-versions__info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.vc-distribute-versions__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.vc-distribute-versions__body p {
  margin: 0;
  flex: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.vc-distribute-versions__empty {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 960px) {
  .vc-distribute-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vc-distribute-path {
    flex-direction: column;
    align-items: stretch;
  }

  .vc-distribute-versions__body {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Team + member pages */
.vc-team-shell,
.vc-member-shell {
  min-height: 100vh;
  padding: 32px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, #141726 0%, #050507 55%, #010103 100%);
}

.vc-team-shell::before,
.vc-member-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(79, 139, 255, 0.18), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.vc-team-shell::after,
.vc-member-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.12;
  pointer-events: none;
}

.vc-team-shell > *,
.vc-member-shell > * {
  position: relative;
  z-index: 1;
}

.vc-team-header,
.vc-member-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.vc-team-brand,
.vc-member-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vc-team-logo,
.vc-member-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79, 139, 255, 0.9), rgba(111, 91, 255, 0.9));
  box-shadow: 0 10px 20px rgba(79, 139, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.vc-team-eyebrow,
.vc-member-eyebrow {
  margin: 0 0 4px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}

.vc-team-title,
.vc-member-title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
}

.vc-team-nav,
.vc-member-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vc-team-hero,
.vc-member-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(10, 12, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  margin-bottom: 24px;
}

.vc-team-muted,
.vc-member-muted {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.vc-team-metrics,
.vc-member-queue {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.vc-team-metric,
.vc-member-queue__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-team-metric__label,
.vc-member-queue__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.vc-team-metric__value,
.vc-member-queue__value {
  font-size: 20px;
  font-weight: 600;
}

.vc-team-alert,
.vc-member-alert {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(79, 139, 255, 0.35);
  background: rgba(79, 139, 255, 0.12);
}

.vc-team-alert--error {
  border-color: rgba(248, 113, 113, 0.6);
  background: rgba(248, 113, 113, 0.12);
}

.vc-member-alert--error {
  border-color: rgba(248, 113, 113, 0.6);
  background: rgba(248, 113, 113, 0.12);
}

.vc-team-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
  gap: 24px;
}

.vc-team-panel,
.vc-member-panel {
  background: rgba(8, 10, 18, 0.88);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.vc-team-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.vc-team-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.vc-team-roster-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.vc-team-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: vc-fade-up 0.6s ease;
}

.vc-team-card__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.vc-team-card__top .vc-pill {
  margin-left: auto;
}

.vc-team-card__name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.vc-team-card__name a {
  color: #fff;
}

.vc-team-card__role {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vc-team-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.vc-team-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vc-team-card__stats--inline {
  display: flex;
  gap: 10px;
}

.vc-team-card__stats--inline .vc-team-card__stat {
  padding: 8px 10px;
}

.vc-team-card__stats--inline .vc-team-card__stat-label {
  font-size: 10px;
}

.vc-team-card__stats--inline .vc-team-card__stat-value {
  font-size: 14px;
}

.vc-team-card__stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-team-card__stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.vc-team-card__stat-value {
  font-size: 16px;
  font-weight: 600;
}

.vc-team-card__footer {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.vc-team-status-form {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vc-team-empty,
.vc-member-empty {
  padding: 40px 24px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.vc-chat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 18, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 90;
}

.vc-chat-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.vc-chat-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.98), rgba(10, 14, 22, 0.98));
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.vc-chat-panel.is-open {
  transform: translateX(0);
}

.vc-chat-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-chat-panel__header h2 {
  margin: 0;
  font-size: 18px;
}

.vc-chat-panel__eyebrow {
  margin: 0 0 6px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
}

.vc-chat-panel__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 12px;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
}

.vc-chat-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-chat-message {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.8);
  align-self: flex-start;
  max-width: min(320px, 84%);
}

.vc-chat-message p {
  margin: 0;
}

.vc-chat-message__author {
  margin: 0 0 6px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.vc-chat-message--system {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.3);
  color: #d9f9ff;
  align-self: center;
  text-align: center;
}

.vc-chat-message--outgoing {
  align-self: flex-end;
  margin-left: auto;
  background: rgba(79, 139, 255, 0.16);
  border-color: rgba(79, 139, 255, 0.35);
  color: #e7f0ff;
}

.vc-chat-message--incoming {
  align-self: flex-start;
  margin-right: auto;
}

.vc-chat-panel__input {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 20, 0.95);
}

.vc-chat-panel__input input {
  flex: 1;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 10px 12px;
}

.vc-chat-panel__input button {
  border-radius: 12px;
  border: none;
  background: rgba(34, 211, 238, 0.2);
  color: #e6fcff;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.vc-member-topbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.vc-member-project-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 16px;
}

.vc-member-project-main {
  display: flex;
  align-items: baseline;
  gap: 24px;
  min-width: 0;
}

.vc-member-project-id {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-member-project-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.vc-member-project-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.vc-member-project-title-value {
  font-size: 16px;
  font-weight: 600;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 520px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vc-member-project-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin-left: auto;
  align-self: flex-start;
}

.vc-member-project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}

.vc-member-project-badges .vc-pill,
.vc-member-project-badges .vc-zip-status {
  font-size: 10px;
  padding: 3px 8px;
  letter-spacing: 0.06em;
}

.vc-member-project-badges .vc-zip-status {
  font-weight: 600;
}

.vc-member-project-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.vc-member-project-value {
  font-size: 18px;
  font-weight: 600;
}

.vc-member-project-muted {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.vc-member-task-frame {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
}

.vc-member-info-card,
.vc-member-action-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 120px;
}

.vc-member-info-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.vc-member-info-value {
  font-size: 16px;
  font-weight: 600;
}

.vc-member-info-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.vc-member-info-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-member-download-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  align-self: flex-end;
}

.vc-member-action-card {
  justify-content: space-between;
}

.vc-member-action-card button {
  width: 100%;
}

.vc-primary--compact {
  padding: 10px 14px;
  font-size: 14px;
}

.vc-member-action-card--submit {
  grid-column: 1 / -1;
  justify-content: flex-start;
  gap: 16px;
}

@media (max-width: 640px) {
  .vc-member-project-bar {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .vc-member-project-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .vc-member-project-actions {
    width: 100%;
    align-items: flex-end;
  }

  .vc-member-project-title-value {
    max-width: 100%;
    white-space: normal;
  }

  .vc-member-project-title-row {
    flex-wrap: wrap;
  }
}

.vc-member-submit-grid {
  display: grid;
  gap: 14px;
}

.vc-member-submit-option {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-member-submit-option h4 {
  margin: 0;
  font-size: 15px;
}

.vc-upload-zone {
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.vc-upload-zone input {
  display: none;
}

.vc-upload-progress {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.vc-upload-progress__track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.vc-upload-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255, 199, 0, 0.9), rgba(255, 120, 0, 0.9));
  transition: width 0.2s ease;
}

.vc-upload-progress__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.vc-upload-illustration {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.vc-upload-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 900px) {
  .vc-member-submit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.vc-member-content {
  display: grid;
  gap: 20px;
}

.vc-member-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: none;
  padding: 10px 12px 0;
  background: var(--vc-member-tab-surface);
}

.vc-member-tab {
  padding: 16px 22px 18px;
  border-radius: 16px 16px 0 0;
  background: transparent;
  border: none;
  border-right: none;
  color: var(--vc-member-tab-text);
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.vc-member-tab.is-active {
  background: var(--vc-member-tab-active-bg);
  color: #eaffff;
  font-weight: 600;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1px var(--vc-member-tab-active-border),
    0 12px 24px rgba(34, 211, 238, 0.25);
}

.vc-member-tab.is-active::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -2px;
  height: 6px;
  background: var(--vc-member-tab-active-bg);
  border-left: 1px solid var(--vc-member-tab-active-border);
  border-right: 1px solid var(--vc-member-tab-active-border);
}

.vc-member-tab:last-child {
  border-right: none;
}

.vc-member-tab:hover {
  background: rgba(34, 211, 238, 0.08);
  color: #e6fcff;
}

.vc-member-tab-card {
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.12), transparent 55%),
    var(--vc-member-tab-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  --vc-member-tab-surface: rgba(11, 18, 28, 0.96);
  --vc-member-tab-accent: #22d3ee;
  --vc-member-tab-accent-soft: rgba(34, 211, 238, 0.18);
  --vc-member-tab-text: rgba(226, 232, 240, 0.7);
  --vc-member-tab-active-bg: linear-gradient(180deg, rgba(34, 211, 238, 0.25), rgba(34, 211, 238, 0.12));
  --vc-member-tab-active-border: rgba(125, 255, 242, 0.65);
}

.vc-member-tab-panels {
  display: grid;
  gap: 0;
}

.vc-member-tab-panel {
  display: none;
  background: var(--vc-member-tab-surface);
}

.vc-member-tab-panel.is-active {
  display: block;
  padding: 24px 22px 26px;
  background: var(--vc-member-tab-active-bg);
  border: 1px solid var(--vc-member-tab-active-border);
  border-radius: 0 0 22px 22px;
}

.vc-member-tab-panel .vc-member-block {
  background: transparent;
  border: none;
  padding: 0;
}

.vc-member-tab-panel[data-tab-panel="submit"] .vc-member-action-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.vc-member-tab-panel[data-tab-panel="submit"] .vc-member-submit-option {
  border: none;
  padding: 0;
  background: transparent;
}

.vc-member-block {
  background: rgba(8, 10, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
}

.vc-member-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
}

.vc-member-summary::-webkit-details-marker {
  display: none;
}

.vc-member-summary::after {
  content: "+";
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.vc-member-block[open] .vc-member-summary::after {
  content: "–";
}

.vc-member-block > *:not(summary) {
  margin-top: 12px;
}

.vc-member-block h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
}

.vc-member-script {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  white-space: pre-wrap;
  line-height: 1.6;
  max-height: 320px;
  overflow: auto;
}

.vc-member-script-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.vc-member-script-toggle {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.vc-member-script-toggle button {
  border: none;
  background: transparent;
  color: rgba(226, 232, 240, 0.75);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.vc-member-script-toggle button.is-active {
  background: rgba(34, 211, 238, 0.25);
  color: #e6fcff;
  box-shadow: 0 0 0 1px rgba(125, 255, 242, 0.45);
}

.vc-member-script-textarea {
  width: 50%;
  min-height: 320px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  padding: 16px;
  line-height: 1.7;
  resize: vertical;
  caret-color: transparent;
}

.vc-member-script-textarea::-moz-placeholder {
  color: rgba(226, 232, 240, 0.45);
}

.vc-member-script-textarea::placeholder {
  color: rgba(226, 232, 240, 0.45);
}

.vc-member-script-textarea--subtitles {
  min-height: 220px;
}

.vc-member-script-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.vc-member-script-main {
  display: grid;
  gap: 18px;
}

.vc-member-subtitle-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.vc-member-subtitle-header h3 {
  margin: 0;
}

.vc-member-subtitle-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vc-member-subtitle-list li {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 960px) {
  .vc-member-script-grid {
    grid-template-columns: 1fr;
  }

  .vc-member-script-textarea {
    width: 100%;
  }
}

.vc-member-assets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.vc-member-source-list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.vc-member-source-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-member-source-title {
  font-size: 14px;
  font-weight: 600;
}

.vc-member-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-member-link-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.vc-member-assets ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.vc-member-assets li {
  display: flex;
  align-items: center;
  gap: 6px;
  word-break: break-word;
}

.vc-member-assets a {
  color: #93c5fd;
  text-decoration: underline;
}

.vc-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vc-pill--active,
.vc-pill--approved,
.vc-pill--paid {
  background: rgba(34, 197, 94, 0.16);
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.4);
}

.vc-pill--paused,
.vc-pill--pending,
.vc-pill--assigned {
  background: rgba(79, 139, 255, 0.16);
  color: #93c5fd;
  border-color: rgba(96, 165, 250, 0.4);
}

.vc-pill--offboarded,
.vc-pill--cancelled,
.vc-pill--disputed {
  background: rgba(248, 113, 113, 0.16);
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.4);
}

.vc-pill--draft,
.vc-pill--unbilled {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.vc-pill--in_progress {
  background: rgba(139, 92, 246, 0.16);
  color: #c4b5fd;
  border-color: rgba(167, 139, 250, 0.45);
}

.vc-pill--revision_needed,
.vc-pill--submitted {
  background: rgba(251, 191, 36, 0.16);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.4);
}

.vc-benchmark-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.vc-benchmark-form .vc-textarea {
  min-height: 96px;
}

.vc-benchmark-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.vc-benchmark-toggle input {
  accent-color: #4f8bff;
}

.vc-benchmark-form .vc-label {
  flex: 1 1 360px;
}

.vc-benchmark-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-benchmark-card {
  background: rgba(10, 14, 23, 0.95);
  border: 1px solid rgba(84, 96, 125, 0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}

.vc-benchmark-card[open] {
  border-color: rgba(111, 129, 255, 0.55);
  box-shadow: 0 24px 40px rgba(33, 55, 110, 0.45);
}

.vc-benchmark-card__summary {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px 18px;
  cursor: pointer;
}

.vc-benchmark-card__summary::-webkit-details-marker {
  display: none;
}

.vc-benchmark-card__identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.vc-benchmark-card__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(120, 140, 180, 0.25);
  background: #0f1524;
}

.vc-benchmark-card__logo--empty {
  background: linear-gradient(135deg, rgba(79, 139, 255, 0.3), rgba(14, 18, 30, 0.9));
}

.vc-benchmark-card__summary h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.vc-benchmark-card__subtitle {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.vc-benchmark-card__metrics {
  display: flex;
  gap: 12px;
  margin-left: auto;
  flex-wrap: wrap;
}

.vc-benchmark-card__metrics div {
  background: rgba(79, 139, 255, 0.12);
  border: 1px solid rgba(79, 139, 255, 0.25);
  border-radius: 12px;
  padding: 8px 12px;
  min-width: 86px;
}

.vc-benchmark-card__metrics span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.vc-benchmark-card__metrics strong {
  font-size: 14px;
}

.vc-benchmark-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vc-benchmark-card__body {
  padding: 16px 18px 20px;
  border-top: 1px solid rgba(84, 96, 125, 0.35);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-benchmark-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.vc-benchmark-grid h5 {
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.vc-benchmark-grid p {
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.vc-benchmark-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vc-benchmark-meta span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.vc-benchmark-meta strong {
  font-size: 13px;
}

.vc-benchmark-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(143, 179, 255, 0.95);
  font-weight: 600;
  text-decoration: none;
}

.vc-benchmark-link:hover {
  color: #fff;
}

.vc-benchmark-videos h5 {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.vc-benchmark-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.vc-benchmark-video {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(84, 96, 125, 0.35);
  background: rgba(15, 20, 32, 0.9);
}

.vc-benchmark-video img {
  width: 96px;
  height: 56px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.vc-benchmark-video__placeholder {
  width: 96px;
  height: 56px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.vc-benchmark-video p {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.3;
}

.vc-benchmark-video span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes vc-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .vc-team-hero,
  .vc-member-hero {
    grid-template-columns: 1fr;
  }

  .vc-team-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .vc-header-top {
    flex-wrap: wrap;
  }

  .vc-header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .vc-team-shell,
  .vc-member-shell {
    padding: 22px;
  }

  .vc-team-header,
  .vc-member-header {
    flex-direction: column;
    align-items: flex-start;
  }
}


.vc-licensor-hero {
  display: grid;
  gap: 24px;
  padding: 26px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.35), rgba(15, 23, 42, 0.85));
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.vc-licensor-hero h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
  margin-bottom: 10px;
}

.vc-licensor-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.vc-licensor-cta .vc-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vc-licensor-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.vc-licensor-card {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.45);
}

.vc-licensor-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.vc-licensor-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(226, 232, 240, 0.9);
  display: grid;
  gap: 8px;
}

.vc-licensor-contact {
  display: grid;
  gap: 8px;
  font-size: 15px;
}

.vc-licensor-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.12);
  color: rgba(94, 234, 212, 1);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vc-licensor-contact-panel {
  scroll-margin-top: 80px;
}

@media (max-width: 960px) {
  .vc-licensor-hero {
    grid-template-columns: 1fr;
  }
}

.vc-licensor-shell .vc-team-logo {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.vc-licensor-card__title {
  font-weight: 700;
  font-size: 16px;
}

.vc-licensor-card__meta {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.7);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vc-licensor-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vc-licensor-meta {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.35);
}

.vc-licensor-meta__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-licensor-meta__row + .vc-licensor-meta__row {
  margin-top: 12px;
}

.vc-licensor-mono {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  word-break: break-all;
}

.vc-licensor-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-chat-unread {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ff6a3d;
  color: #0b0f1c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.vc-icon-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vc-icon-label svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.vc-licensor-upload-note {
  margin-top: 12px;
}

.vc-licensor-upload-id {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  word-break: break-all;
}

.vc-licensor-file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.4);
}

.vc-licensor-file-row svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: rgba(226, 232, 240, 0.9);
}

.vc-licensor-file-row .vc-input[type="file"] {
  height: 56px;
  padding: 12px;
}

.vc-payment-hint {
  margin-top: 10px;
}

.vc-profile-hint {
  margin-top: 10px;
}

.vc-profile-avatar {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.4);
}

.vc-profile-avatar-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vc-profile-avatar-button {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.vc-profile-avatar-wrapper {
  position: relative;
  display: inline-flex;
}

.vc-profile-avatar-icon {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(226, 232, 240, 0.95);
}

.vc-profile-avatar-icon svg {
  width: 14px;
  height: 14px;
}

.vc-profile-avatar-button:focus-visible {
  outline: 2px solid rgba(94, 234, 212, 0.9);
  outline-offset: 2px;
  border-radius: 999px;
}

/* Licensor evaluation */
.vc-eval-shell .vc-team-hero {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
}

.vc-eval-meta {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.vc-eval-meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-eval-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.vc-eval-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-eval-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(79, 139, 255, 0.35);
  background: rgba(79, 139, 255, 0.15);
  font-size: 12px;
}

.vc-eval-main {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.vc-eval-panel {
  background: rgba(8, 10, 18, 0.88);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.vc-eval-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.vc-eval-row {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-eval-metric {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.vc-eval-metric h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
}

.vc-eval-pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vc-eval-pill--risk {
  background: rgba(248, 113, 113, 0.18);
  border-color: rgba(248, 113, 113, 0.45);
}

.vc-eval-pill--upside {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.45);
}

.vc-eval-updated {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}

.vc-eval-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.vc-eval-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-eval-field label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.vc-eval-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.vc-eval-field--wide {
  grid-column: span 2;
}

.vc-eval-errors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(248, 113, 113, 0.9);
}

.vc-eval-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 24px;
}

.vc-eval-summary-card {
  background: rgba(8, 10, 18, 0.88);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}

.vc-eval-summary-card h3 {
  margin: 0 0 12px 0;
}

.vc-eval-summary-tier {
  font-size: 28px;
  font-weight: 700;
}

.vc-eval-summary-scores {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.vc-eval-summary-scores div {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vc-eval-summary-scores span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.vc-eval-summary-meta {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.vc-eval-summary-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.75);
}

.vc-eval-summary-card li {
  margin-bottom: 6px;
}

.vc-eval-actions {
  display: grid;
  gap: 12px;
}

.vc-eval-history {
  margin-top: 28px;
  background: rgba(8, 10, 18, 0.88);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.vc-eval-history-list {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.vc-eval-history-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-eval-history-item strong {
  margin-right: 12px;
}

.vc-eval-history-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.vc-eval-history-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.vc-eval-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: rgba(79, 139, 255, 0.2);
  border: 1px solid rgba(79, 139, 255, 0.45);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  z-index: 200;
}

@media (max-width: 980px) {
  .vc-eval-main {
    grid-template-columns: 1fr;
  }

  .vc-eval-summary {
    position: static;
  }

  .vc-eval-field--wide {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .vc-eval-shell .vc-team-hero {
    grid-template-columns: 1fr;
  }
}


*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*
! tailwindcss v3.4.13 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

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

/*
Remove the default font size and weight for headings.
*/

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

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

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

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

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

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

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

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

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

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none{
  pointer-events: none;
}

.visible{
  visibility: visible;
}

.collapse{
  visibility: collapse;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.sticky{
  position: sticky;
}

.inset-0{
  inset: 0px;
}

.-bottom-24{
  bottom: -6rem;
}

.-left-24{
  left: -6rem;
}

.-left-4{
  left: -1rem;
}

.-right-24{
  right: -6rem;
}

.-top-24{
  top: -6rem;
}

.-top-4{
  top: -1rem;
}

.left-1\/2{
  left: 50%;
}

.left-3{
  left: 0.75rem;
}

.right-1\/2{
  right: 50%;
}

.top-0{
  top: 0px;
}

.top-1\/2{
  top: 50%;
}

.z-10{
  z-index: 10;
}

.z-50{
  z-index: 50;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.-ml-\[50vw\]{
  margin-left: -50vw;
}

.-mr-\[50vw\]{
  margin-right: -50vw;
}

.mb-12{
  margin-bottom: 3rem;
}

.mb-16{
  margin-bottom: 4rem;
}

.mb-2{
  margin-bottom: 0.5rem;
}

.mb-3{
  margin-bottom: 0.75rem;
}

.mb-4{
  margin-bottom: 1rem;
}

.mb-5{
  margin-bottom: 1.25rem;
}

.mb-6{
  margin-bottom: 1.5rem;
}

.mb-8{
  margin-bottom: 2rem;
}

.ml-8{
  margin-left: 2rem;
}

.mt-0\.5{
  margin-top: 0.125rem;
}

.mt-1{
  margin-top: 0.25rem;
}

.mt-10{
  margin-top: 2.5rem;
}

.mt-12{
  margin-top: 3rem;
}

.mt-2{
  margin-top: 0.5rem;
}

.mt-3{
  margin-top: 0.75rem;
}

.mt-4{
  margin-top: 1rem;
}

.mt-6{
  margin-top: 1.5rem;
}

.mt-8{
  margin-top: 2rem;
}

.block{
  display: block;
}

.flex{
  display: flex;
}

.inline-flex{
  display: inline-flex;
}

.table{
  display: table;
}

.grid{
  display: grid;
}

.hidden{
  display: none;
}

.h-10{
  height: 2.5rem;
}

.h-12{
  height: 3rem;
}

.h-14{
  height: 3.5rem;
}

.h-16{
  height: 4rem;
}

.h-2{
  height: 0.5rem;
}

.h-56{
  height: 14rem;
}

.h-6{
  height: 1.5rem;
}

.h-7{
  height: 1.75rem;
}

.h-8{
  height: 2rem;
}

.h-9{
  height: 2.25rem;
}

.h-full{
  height: 100%;
}

.h-px{
  height: 1px;
}

.max-h-\[90vh\]{
  max-height: 90vh;
}

.min-h-\[520px\]{
  min-height: 520px;
}

.min-h-screen{
  min-height: 100vh;
}

.w-10{
  width: 2.5rem;
}

.w-12{
  width: 3rem;
}

.w-14{
  width: 3.5rem;
}

.w-2{
  width: 0.5rem;
}

.w-56{
  width: 14rem;
}

.w-6{
  width: 1.5rem;
}

.w-7{
  width: 1.75rem;
}

.w-8{
  width: 2rem;
}

.w-9{
  width: 2.25rem;
}

.w-auto{
  width: auto;
}

.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}

.w-full{
  width: 100%;
}

.w-screen{
  width: 100vw;
}

.min-w-full{
  min-width: 100%;
}

.max-w-2xl{
  max-width: 42rem;
}

.max-w-3xl{
  max-width: 48rem;
}

.max-w-5xl{
  max-width: 64rem;
}

.max-w-6xl{
  max-width: 72rem;
}

.max-w-7xl{
  max-width: 80rem;
}

.max-w-md{
  max-width: 28rem;
}

.max-w-none{
  max-width: none;
}

.flex-1{
  flex: 1 1 0%;
}

.flex-shrink-0{
  flex-shrink: 0;
}

.shrink-0{
  flex-shrink: 0;
}

.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes spin{

  to{
    transform: rotate(360deg);
  }
}

.animate-spin{
  animation: spin 1s linear infinite;
}

.resize-none{
  resize: none;
}

.resize{
  resize: both;
}

.scroll-mt-20{
  scroll-margin-top: 5rem;
}

.list-disc{
  list-style-type: disc;
}

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

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

.flex-col{
  flex-direction: column;
}

.flex-wrap{
  flex-wrap: wrap;
}

.items-start{
  align-items: flex-start;
}

.items-center{
  align-items: center;
}

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

.justify-between{
  justify-content: space-between;
}

.gap-1{
  gap: 0.25rem;
}

.gap-10{
  gap: 2.5rem;
}

.gap-12{
  gap: 3rem;
}

.gap-2{
  gap: 0.5rem;
}

.gap-3{
  gap: 0.75rem;
}

.gap-4{
  gap: 1rem;
}

.gap-6{
  gap: 1.5rem;
}

.gap-8{
  gap: 2rem;
}

.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}

.space-y-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.overflow-hidden{
  overflow: hidden;
}

.overflow-x-auto{
  overflow-x: auto;
}

.overflow-y-auto{
  overflow-y: auto;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-2xl{
  border-radius: 1rem;
}

.rounded-3xl{
  border-radius: 1.5rem;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.rounded-xl{
  border-radius: 0.75rem;
}

.border{
  border-width: 1px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-t{
  border-top-width: 1px;
}

.border-blue-400\/40{
  border-color: rgb(96 165 250 / 0.4);
}

.border-blue-400\/50{
  border-color: rgb(96 165 250 / 0.5);
}

.border-blue-500\/30{
  border-color: rgb(59 130 246 / 0.3);
}

.border-blue-800\/30{
  border-color: rgb(30 64 175 / 0.3);
}

.border-blue-800\/40{
  border-color: rgb(30 64 175 / 0.4);
}

.border-blue-900\/20{
  border-color: rgb(30 58 138 / 0.2);
}

.border-blue-900\/30{
  border-color: rgb(30 58 138 / 0.3);
}

.border-emerald-500\/30{
  border-color: rgb(16 185 129 / 0.3);
}

.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}

.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

.border-gray-700{
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity));
}

.border-gray-800{
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity));
}

.border-gray-800\/60{
  border-color: rgb(31 41 55 / 0.6);
}

.border-green-200{
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity));
}

.border-green-700{
  --tw-border-opacity: 1;
  border-color: rgb(21 128 61 / var(--tw-border-opacity));
}

.border-red-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity));
}

.border-red-500\/30{
  border-color: rgb(239 68 68 / 0.3);
}

.border-red-700{
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity));
}

.border-slate-700{
  --tw-border-opacity: 1;
  border-color: rgb(51 65 85 / var(--tw-border-opacity));
}

.border-slate-700\/50{
  border-color: rgb(51 65 85 / 0.5);
}

.border-slate-700\/60{
  border-color: rgb(51 65 85 / 0.6);
}

.border-slate-800\/60{
  border-color: rgb(30 41 59 / 0.6);
}

.border-white\/10{
  border-color: rgb(255 255 255 / 0.1);
}

.border-white\/30{
  border-color: rgb(255 255 255 / 0.3);
}

.bg-\[\#050506\]{
  --tw-bg-opacity: 1;
  background-color: rgb(5 5 6 / var(--tw-bg-opacity));
}

.bg-\[\#0b0d12\]{
  --tw-bg-opacity: 1;
  background-color: rgb(11 13 18 / var(--tw-bg-opacity));
}

.bg-black\/50{
  background-color: rgb(0 0 0 / 0.5);
}

.bg-black\/70{
  background-color: rgb(0 0 0 / 0.7);
}

.bg-blue-400{
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity));
}

.bg-blue-500\/20{
  background-color: rgb(59 130 246 / 0.2);
}

.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}

.bg-blue-600\/10{
  background-color: rgb(37 99 235 / 0.1);
}

.bg-blue-600\/90{
  background-color: rgb(37 99 235 / 0.9);
}

.bg-blue-900\/40{
  background-color: rgb(30 58 138 / 0.4);
}

.bg-blue-950\/20{
  background-color: rgb(23 37 84 / 0.2);
}

.bg-blue-950\/30{
  background-color: rgb(23 37 84 / 0.3);
}

.bg-blue-950\/40{
  background-color: rgb(23 37 84 / 0.4);
}

.bg-blue-950\/60{
  background-color: rgb(23 37 84 / 0.6);
}

.bg-cyan-500\/10{
  background-color: rgb(6 182 212 / 0.1);
}

.bg-emerald-500\/10{
  background-color: rgb(16 185 129 / 0.1);
}

.bg-emerald-500\/20{
  background-color: rgb(16 185 129 / 0.2);
}

.bg-emerald-600\/90{
  background-color: rgb(5 150 105 / 0.9);
}

.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}

.bg-gray-800\/30{
  background-color: rgb(31 41 55 / 0.3);
}

.bg-gray-800\/50{
  background-color: rgb(31 41 55 / 0.5);
}

.bg-gray-800\/80{
  background-color: rgb(31 41 55 / 0.8);
}

.bg-gray-900{
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity));
}

.bg-gray-900\/60{
  background-color: rgb(17 24 39 / 0.6);
}

.bg-gray-900\/80{
  background-color: rgb(17 24 39 / 0.8);
}

.bg-gray-950\/40{
  background-color: rgb(3 7 18 / 0.4);
}

.bg-gray-950\/50{
  background-color: rgb(3 7 18 / 0.5);
}

.bg-gray-950\/80{
  background-color: rgb(3 7 18 / 0.8);
}

.bg-green-400{
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity));
}

.bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity));
}

.bg-green-900\/30{
  background-color: rgb(20 83 45 / 0.3);
}

.bg-green-950\/40{
  background-color: rgb(5 46 22 / 0.4);
}

.bg-orange-500\/20{
  background-color: rgb(249 115 22 / 0.2);
}

.bg-orange-600\/90{
  background-color: rgb(234 88 12 / 0.9);
}

.bg-purple-950\/40{
  background-color: rgb(59 7 100 / 0.4);
}

.bg-red-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity));
}

.bg-red-500\/10{
  background-color: rgb(239 68 68 / 0.1);
}

.bg-red-900\/30{
  background-color: rgb(127 29 29 / 0.3);
}

.bg-red-950\/40{
  background-color: rgb(69 10 10 / 0.4);
}

.bg-slate-800{
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity));
}

.bg-slate-900{
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity));
}

.bg-slate-900\/80{
  background-color: rgb(15 23 42 / 0.8);
}

.bg-slate-950{
  --tw-bg-opacity: 1;
  background-color: rgb(2 6 23 / var(--tw-bg-opacity));
}

.bg-teal-600\/90{
  background-color: rgb(13 148 136 / 0.9);
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-white\/0{
  background-color: rgb(255 255 255 / 0);
}

.bg-white\/10{
  background-color: rgb(255 255 255 / 0.1);
}

.bg-white\/20{
  background-color: rgb(255 255 255 / 0.2);
}

.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-black\/60{
  --tw-gradient-from: rgb(0 0 0 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-blue-600{
  --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-blue-950\/20{
  --tw-gradient-from: rgb(23 37 84 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(23 37 84 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-blue-950\/30{
  --tw-gradient-from: rgb(23 37 84 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(23 37 84 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-blue-950\/40{
  --tw-gradient-from: rgb(23 37 84 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(23 37 84 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-gray-800{
  --tw-gradient-from: #1f2937 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(31 41 55 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-gray-900{
  --tw-gradient-from: #111827 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-gray-900\/80{
  --tw-gradient-from: rgb(17 24 39 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-gray-950{
  --tw-gradient-from: #030712 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(3 7 18 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-gray-950\/0{
  --tw-gradient-from: rgb(3 7 18 / 0) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(3 7 18 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-gray-950\/90{
  --tw-gradient-from: rgb(3 7 18 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(3 7 18 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-gray-950\/95{
  --tw-gradient-from: rgb(3 7 18 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(3 7 18 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-slate-900\/90{
  --tw-gradient-from: rgb(15 23 42 / 0.9) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(15 23 42 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-white\/15{
  --tw-gradient-from: rgb(255 255 255 / 0.15) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-black\/35{
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.35) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-gray-900{
  --tw-gradient-to: rgb(17 24 39 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #111827 var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-gray-900\/70{
  --tw-gradient-to: rgb(17 24 39 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(17 24 39 / 0.7) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-gray-900\/75{
  --tw-gradient-to: rgb(17 24 39 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(17 24 39 / 0.75) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-gray-900\/80{
  --tw-gradient-to: rgb(17 24 39 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(17 24 39 / 0.8) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-gray-900\/85{
  --tw-gradient-to: rgb(17 24 39 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(17 24 39 / 0.85) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-gray-950\/40{
  --tw-gradient-to: rgb(3 7 18 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(3 7 18 / 0.4) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-transparent{
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.to-black\/10{
  --tw-gradient-to: rgb(0 0 0 / 0.1) var(--tw-gradient-to-position);
}

.to-black\/40{
  --tw-gradient-to: rgb(0 0 0 / 0.4) var(--tw-gradient-to-position);
}

.to-blue-700{
  --tw-gradient-to: #1d4ed8 var(--tw-gradient-to-position);
}

.to-gray-900{
  --tw-gradient-to: #111827 var(--tw-gradient-to-position);
}

.to-gray-900\/30{
  --tw-gradient-to: rgb(17 24 39 / 0.3) var(--tw-gradient-to-position);
}

.to-gray-900\/40{
  --tw-gradient-to: rgb(17 24 39 / 0.4) var(--tw-gradient-to-position);
}

.to-gray-900\/60{
  --tw-gradient-to: rgb(17 24 39 / 0.6) var(--tw-gradient-to-position);
}

.to-gray-950{
  --tw-gradient-to: #030712 var(--tw-gradient-to-position);
}

.to-gray-950\/10{
  --tw-gradient-to: rgb(3 7 18 / 0.1) var(--tw-gradient-to-position);
}

.to-gray-950\/80{
  --tw-gradient-to: rgb(3 7 18 / 0.8) var(--tw-gradient-to-position);
}

.to-slate-800\/80{
  --tw-gradient-to: rgb(30 41 59 / 0.8) var(--tw-gradient-to-position);
}

.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}

.p-2{
  padding: 0.5rem;
}

.p-4{
  padding: 1rem;
}

.p-5{
  padding: 1.25rem;
}

.p-6{
  padding: 1.5rem;
}

.p-7{
  padding: 1.75rem;
}

.p-8{
  padding: 2rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-14{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pb-2{
  padding-bottom: 0.5rem;
}

.pb-3{
  padding-bottom: 0.75rem;
}

.pb-4{
  padding-bottom: 1rem;
}

.pb-6{
  padding-bottom: 1.5rem;
}

.pl-10{
  padding-left: 2.5rem;
}

.pl-5{
  padding-left: 1.25rem;
}

.pr-3{
  padding-right: 0.75rem;
}

.pt-2{
  padding-top: 0.5rem;
}

.pt-4{
  padding-top: 1rem;
}

.text-left{
  text-align: left;
}

.text-center{
  text-align: center;
}

.text-right{
  text-align: right;
}

.font-serif{
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl{
  font-size: 3rem;
  line-height: 1;
}

.text-\[7px\]{
  font-size: 7px;
}

.text-\[9px\]{
  font-size: 9px;
}

.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold{
  font-weight: 700;
}

.font-medium{
  font-weight: 500;
}

.font-semibold{
  font-weight: 600;
}

.uppercase{
  text-transform: uppercase;
}

.leading-relaxed{
  line-height: 1.625;
}

.leading-snug{
  line-height: 1.375;
}

.leading-tight{
  line-height: 1.25;
}

.tracking-\[0\.28em\]{
  letter-spacing: 0.28em;
}

.tracking-\[0\.32em\]{
  letter-spacing: 0.32em;
}

.tracking-wide{
  letter-spacing: 0.025em;
}

.tracking-wider{
  letter-spacing: 0.05em;
}

.text-blue-100{
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity));
}

.text-blue-200{
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity));
}

.text-blue-300{
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity));
}

.text-blue-300\/70{
  color: rgb(147 197 253 / 0.7);
}

.text-blue-300\/80{
  color: rgb(147 197 253 / 0.8);
}

.text-blue-400{
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity));
}

.text-blue-400\/20{
  color: rgb(96 165 250 / 0.2);
}

.text-emerald-200{
  --tw-text-opacity: 1;
  color: rgb(167 243 208 / var(--tw-text-opacity));
}

.text-emerald-300{
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / var(--tw-text-opacity));
}

.text-gray-200{
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}

.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}

.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}

.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}

.text-green-300{
  --tw-text-opacity: 1;
  color: rgb(134 239 172 / var(--tw-text-opacity));
}

.text-green-400{
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity));
}

.text-green-700{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity));
}

.text-orange-300{
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity));
}

.text-purple-400{
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity));
}

.text-red-200{
  --tw-text-opacity: 1;
  color: rgb(254 202 202 / var(--tw-text-opacity));
}

.text-red-300{
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity));
}

.text-red-400{
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity));
}

.text-red-700{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity));
}

.text-slate-100{
  --tw-text-opacity: 1;
  color: rgb(241 245 249 / var(--tw-text-opacity));
}

.text-slate-200{
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity));
}

.text-slate-300{
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity));
}

.text-slate-400{
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity));
}

.text-slate-500{
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity));
}

.text-teal-300{
  --tw-text-opacity: 1;
  color: rgb(94 234 212 / var(--tw-text-opacity));
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-white\/80{
  color: rgb(255 255 255 / 0.8);
}

.text-white\/90{
  color: rgb(255 255 255 / 0.9);
}

.text-yellow-400{
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity));
}

.underline{
  text-decoration-line: underline;
}

.no-underline{
  text-decoration-line: none;
}

.underline-offset-4{
  text-underline-offset: 4px;
}

.placeholder-slate-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(100 116 139 / var(--tw-placeholder-opacity));
}

.placeholder-slate-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(100 116 139 / var(--tw-placeholder-opacity));
}

.opacity-10{
  opacity: 0.1;
}

.opacity-20{
  opacity: 0.2;
}

.opacity-25{
  opacity: 0.25;
}

.shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-black\/20{
  --tw-shadow-color: rgb(0 0 0 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-black\/30{
  --tw-shadow-color: rgb(0 0 0 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-900\/30{
  --tw-shadow-color: rgb(30 58 138 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-blue-950\/20{
  --tw-shadow-color: rgb(23 37 84 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.blur-3xl{
  --tw-blur: blur(64px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur{
  --tw-backdrop-blur: blur(8px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-lg{
  --tw-backdrop-blur: blur(16px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-sm{
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-xl{
  --tw-backdrop-blur: blur(24px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-shadow{
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #050507;
  color: #f5f7fb;
  font-family: "Space Grotesk", "Avenir Next", "Gill Sans", sans-serif;
}

.licensor-font {
  font-family: "Inter", "Segoe UI", sans-serif;
}

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

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

.placeholder\:text-gray-500::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.placeholder\:text-gray-500::placeholder{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.hover\:border-blue-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity));
}

.hover\:border-gray-600:hover{
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity));
}

.hover\:bg-blue-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity));
}

.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}

.hover\:bg-gray-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
}

.hover\:bg-gray-950\/20:hover{
  background-color: rgb(3 7 18 / 0.2);
}

.hover\:bg-slate-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(51 65 85 / var(--tw-bg-opacity));
}

.hover\:from-blue-500:hover{
  --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.hover\:to-blue-600:hover{
  --tw-gradient-to: #2563eb var(--tw-gradient-to-position);
}

.hover\:text-blue-200:hover{
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity));
}

.hover\:text-blue-300:hover{
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity));
}

.hover\:text-gray-200:hover{
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}

.hover\:text-gray-900:hover{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}

.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hover\:shadow-xl:hover{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:border-transparent:focus{
  border-color: transparent;
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity));
}

.focus\:ring-blue-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
}

.focus\:ring-blue-600\/40:focus{
  --tw-ring-color: rgb(37 99 235 / 0.4);
}

.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed;
}

.disabled\:opacity-50:disabled{
  opacity: 0.5;
}

@media (min-width: 640px){

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

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

  .sm\:flex-row{
    flex-direction: row;
  }

  .sm\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .sm\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sm\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }

  .sm\:text-\[8px\]{
    font-size: 8px;
  }

  .sm\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .sm\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .sm\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 768px){

  .md\:mb-0{
    margin-bottom: 0px;
  }

  .md\:flex{
    display: flex;
  }

  .md\:hidden{
    display: none;
  }

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

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

  .md\:flex-row{
    flex-direction: row;
  }

  .md\:items-end{
    align-items: flex-end;
  }

  .md\:items-center{
    align-items: center;
  }

  .md\:justify-between{
    justify-content: space-between;
  }

  .md\:text-right{
    text-align: right;
  }
}

@media (min-width: 1024px){

  .lg\:sticky{
    position: sticky;
  }

  .lg\:top-24{
    top: 6rem;
  }

  .lg\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .lg\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .lg\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .lg\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

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

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

  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-\[1\.1fr_1fr\]{
    grid-template-columns: 1.1fr 1fr;
  }

  .lg\:p-12{
    padding: 3rem;
  }

  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .lg\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:py-28{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .lg\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1280px){

  .xl\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .xl\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
}
