.create__lead {
  text-align: center;
  color: var(--text-secondary);
  font-size: var(--fs-13);
}

.create__preview {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-s);
  padding: var(--sp-l);
  border-radius: var(--r-lg);
  background: var(--bg-surface);
  border: 1px solid var(--line-soft);
}

.create__photoSlot,
.create__characterSlot {
  display: grid;
  place-items: center;
  gap: var(--sp-s);
  min-height: 180px;
  border-radius: var(--r-md);
  background: var(--bg-surface-2);
  color: var(--accent-primary);
  border: 1px dashed var(--line-soft);
}

.create__photoSlot img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--r-md);
}

.create__previewIcon {
  display: grid;
  place-items: center;
}

.create__previewLabel {
  color: var(--text-tertiary);
  font-size: var(--fs-12);
  font-weight: var(--fw-semibold);
}

.create__arrow {
  color: var(--text-tertiary);
  display: grid;
  place-items: center;
}

.create__section {
  font-size: var(--fs-13);
  font-weight: var(--fw-semibold);
  color: var(--text-secondary);
  margin-top: var(--sp-xs);
}

.pickerGrid {
  display: grid;
  gap: var(--sp-s);
}

.pickerGrid--src {
  grid-template-columns: repeat(5, 1fr);
}

.pickerGrid--style {
  grid-template-columns: repeat(4, 1fr);
}

.pickerTile {
  min-height: 80px;
  padding: var(--sp-s) var(--sp-xs);
  display: grid;
  place-items: center;
  gap: 6px;
  border-radius: var(--r-md);
  background: var(--bg-surface);
  border: 1.5px solid var(--line-soft);
  color: var(--text-secondary);
}

.pickerTile__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--bg-surface-2);
  color: var(--text-primary);
}

.pickerTile__label {
  font-size: var(--fs-11);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
}

.pickerTile.is-active {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--bg-surface-2);
}

.pickerTile.is-active .pickerTile__icon {
  background: var(--accent-primary);
  color: var(--text-on-accent);
}

.create__fileBtn {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--sp-s);
  padding: 12px var(--sp-l);
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-primary);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  min-height: 48px;
}

.create__fileBtn input[type="file"] {
  display: none;
}

.create__cta {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-s);
  min-height: 52px;
  font-size: var(--fs-15);
  border-radius: var(--r-pill);
}

.ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-primary);
  min-height: 44px;
  font-weight: var(--fw-semibold);
}

.ghost:hover,
.ghost:focus-visible {
  background: var(--bg-surface-2);
}

.meterBar {
  width: 100%;
  height: 8px;
  border-radius: var(--r-pill);
  background: var(--line-soft);
  overflow: hidden;
}

.meterBar > span {
  display: block;
  height: 100%;
  background: var(--accent-primary);
  border-radius: var(--r-pill);
}

.meterRow {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  font-size: var(--fs-13);
  color: var(--text-secondary);
}

.meterRow strong {
  color: var(--text-primary);
}

.ready__cta {
  width: 100%;
  min-height: 52px;
  border-radius: var(--r-pill);
}
